/* --- VARIABLES DARK MODE --- */
        :root {
            --bg-body: #050505;
            --bg-card: #121212;
            --bg-card-hover: #1a1a1a;
            --text-main: #ffffff;
            --text-muted: #94a3b8;
            --border-color: #333333;

            --bronze-color: #F97316;
            --bronze-glow: rgba(249, 115, 22, 0.4);

            --silver-color: #38BDF8;
            --silver-glow: rgba(56, 189, 248, 0.4);

            --gold-color: #FACC15;
            --gold-glow: rgba(250, 204, 21, 0.4);

            --wa-color: #25D366;

            --radius: 16px;
            --container-width: 1200px;
            --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-body);
            color: var(--text-main);
            line-height: 1.6;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 1rem;
            transition: all 0.4s var(--transition-smooth);
        }

        /* --- HEADER --- */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(5, 5, 5, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
            transition: border-color 0.3s ease;
        }

        .site-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .site-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            letter-spacing: -0.5px;
            cursor: pointer;
        }

        .site-logo__text strong { color: var(--silver-color); }
        .site-logo:hover { transform: translateY(-1px); }

        .site-nav__links { display: flex; gap: 32px; }

        .site-nav__links a {
            font-weight: 500;
            color: var(--text-muted);
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .site-nav__links a:hover,
		.site-nav__links a[aria-current="page"] { color: white; }

        .site-nav__links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: var(--silver-color);
            transition: width 0.3s ease;
        }
        .site-nav__links a:hover::after,
		.site-nav__links a[aria-current="page"]::after { width: 100%; }

        /* --- HERO SECTION (avec fond image) --- */
        .hero {
            padding-top: 180px;
            padding-bottom: 100px;
            text-align: center;
            position: relative;
			isolation: isolate;
            background:
				radial-gradient(circle at 18% 18%, rgba(56, 189, 248, 0.18), transparent 30%),
				radial-gradient(circle at 82% 36%, rgba(249, 115, 22, 0.11), transparent 26%),
				linear-gradient(rgba(5, 5, 5, 0.58), rgba(5, 5, 5, 0.96)),
				repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 64px),
				repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 64px);
        }

		.hero::before {
			position: absolute;
			inset: 0;
			z-index: 0;
			background-image: url('../images/devpro-office.jpg');
			background-image: image-set(
				url('../images/devpro-office-2048.webp') type('image/webp'),
				url('../images/devpro-office.jpg') type('image/jpeg')
			);
			background-position: center 58%;
			background-size: cover;
			background-repeat: no-repeat;
			content: '';
			filter: saturate(0.72) contrast(0.92);
			opacity: 0.24;
			pointer-events: none;
		}

		.hero > .container {
			position: relative;
			z-index: 1;
		}

        .hero h1 {
			max-width: 980px;
			margin-left: auto;
			margin-right: auto;
            font-size: 3.5rem;
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 24px;
            letter-spacing: -1px;
            background: linear-gradient(to right, #fff, #94a3b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.25rem;
			color: #cbd5e1;
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .services-tags {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .tag {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-main);
            border: 1px solid var(--border-color);
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

		.tag::before {
			width: 7px;
			height: 7px;
			border-radius: 50%;
			background: var(--silver-color);
			box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
			content: '';
		}

        .tag:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
            border-color: var(--text-muted);
        }

        .btn-hero {
            background: white;
            color: black;
            font-weight: 700;
        }

        .btn-hero:hover {
            background-color: #f8fafc;
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
        }

        .hero-actions {
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-whatsapp {
            background: var(--wa-color);
            color: #fff;
            font-weight: 700;
            gap: 10px;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
        }

        .btn-whatsapp svg {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
        }

        .btn-whatsapp:hover {
            filter: brightness(1.08);
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
        }

        .btn-text {
            color: white;
            font-weight: 500;
            opacity: 0.8;
            position: relative;
            padding-bottom: 4px;
            transition: all 0.3s ease;
        }

        .btn-text:hover { opacity: 1; color: var(--wa-color); }

        .btn-text span { display: inline-block; transition: transform 0.3s ease; }
        .btn-text:hover span { transform: translateX(5px); }

		@media (max-width: 600px) {
			.hero::before {
				background-image: url('../images/devpro-office.jpg');
				background-image: image-set(
					url('../images/devpro-office-960.webp') type('image/webp'),
					url('../images/devpro-office.jpg') type('image/jpeg')
				);
				background-position: 62% center;
			}
		}

        /* --- PRICING SECTION --- */
        .pricing-section {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            padding: 80px 0;
            border-block: 1px solid rgba(125, 211, 252, 0.12);
            background:
                radial-gradient(circle at 18% 8%, rgba(56, 189, 248, 0.2), transparent 31%),
                radial-gradient(circle at 82% 42%, rgba(45, 212, 191, 0.13), transparent 26%),
                linear-gradient(180deg, #07243a 0%, #04304a 28%, #031827 67%, #020c15 100%);
            box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px rgba(0, 0, 0, 0.4);
        }

        .pricing-section > .container {
            position: relative;
            z-index: 2;
        }

        .pricing-aquarium {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
            user-select: none;
        }

        .pricing-aquarium::before {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(112deg, transparent 8%, rgba(255, 255, 255, 0.09) 21%, transparent 35%),
                linear-gradient(102deg, transparent 42%, rgba(125, 211, 252, 0.08) 55%, transparent 68%),
                radial-gradient(ellipse at 50% -10%, rgba(224, 242, 254, 0.18), transparent 58%);
            content: '';
            mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.72) 42%, transparent 78%);
            opacity: 0.78;
        }

        .pricing-aquarium::after {
            position: absolute;
            right: -4%;
            bottom: -42px;
            left: -4%;
            height: 118px;
            border-radius: 50% 50% 0 0 / 35% 35% 0 0;
            background:
                radial-gradient(circle at 8% 30%, rgba(148, 163, 184, 0.2) 0 10px, transparent 11px),
                radial-gradient(circle at 21% 20%, rgba(71, 85, 105, 0.28) 0 17px, transparent 18px),
                radial-gradient(circle at 72% 22%, rgba(100, 116, 139, 0.2) 0 14px, transparent 15px),
                radial-gradient(circle at 90% 29%, rgba(71, 85, 105, 0.25) 0 20px, transparent 21px),
                linear-gradient(180deg, rgba(25, 54, 61, 0.78), rgba(5, 20, 27, 0.96));
            box-shadow: 0 -12px 36px rgba(45, 212, 191, 0.08);
            content: '';
            opacity: 0.82;
        }

        .pricing-aquarium__fish {
            position: absolute;
            top: var(--fish-y);
            left: 0;
            width: var(--fish-size);
            color: var(--fish-color);
            opacity: var(--fish-opacity, 0.42);
            animation: devpro-aquarium-swim-right var(--fish-duration) linear var(--fish-delay) infinite;
            filter: drop-shadow(0 7px 10px rgba(0, 0, 0, 0.25));
            will-change: transform;
        }

        .pricing-aquarium__fish-art {
            display: block;
            width: 100%;
            height: auto;
            overflow: visible;
        }

        .pricing-aquarium__body,
        .pricing-aquarium__tail {
            fill: currentColor;
        }

        .pricing-aquarium__tail {
            opacity: 0.78;
            transform-box: fill-box;
            transform-origin: right center;
            animation: devpro-aquarium-tail 0.78s ease-in-out infinite alternate;
        }

        .pricing-aquarium__highlight,
        .pricing-aquarium__fin {
            fill: #ffffff;
            opacity: 0.18;
        }

        .pricing-aquarium__gill {
            fill: none;
            stroke: rgba(255, 255, 255, 0.36);
            stroke-linecap: round;
            stroke-width: 2;
        }

        .pricing-aquarium__eye { fill: #ffffff; }
        .pricing-aquarium__pupil { fill: #04111c; }

        .pricing-aquarium__fish--one {
            --fish-y: 29%;
            --fish-size: 112px;
            --fish-color: #38bdf8;
            --fish-opacity: 0.48;
            --fish-duration: 27s;
            --fish-delay: -14s;
            --fish-rest-x: 13%;
        }

        .pricing-aquarium__fish--two {
            --fish-y: 51%;
            --fish-size: 78px;
            --fish-color: #f97316;
            --fish-opacity: 0.43;
            --fish-duration: 31s;
            --fish-delay: -7s;
            --fish-rest-x: 69%;
            animation-name: devpro-aquarium-swim-left;
        }

        .pricing-aquarium__fish--two .pricing-aquarium__fish-art,
        .pricing-aquarium__fish--four .pricing-aquarium__fish-art {
            transform: scaleX(-1);
        }

        .pricing-aquarium__fish--three {
            --fish-y: 74%;
            --fish-size: 138px;
            --fish-color: #facc15;
            --fish-opacity: 0.34;
            --fish-duration: 37s;
            --fish-delay: -22s;
            --fish-rest-x: 34%;
        }

        .pricing-aquarium__fish--four {
            --fish-y: 17%;
            --fish-size: 64px;
            --fish-color: #2dd4bf;
            --fish-opacity: 0.44;
            --fish-duration: 24s;
            --fish-delay: -16s;
            --fish-rest-x: 82%;
            animation-name: devpro-aquarium-swim-left;
        }

        .pricing-aquarium__bubble {
            position: absolute;
            top: var(--bubble-y);
            left: var(--bubble-x);
            width: var(--bubble-size);
            height: var(--bubble-size);
            border: 1px solid rgba(224, 242, 254, 0.45);
            border-radius: 50%;
            background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.58) 0 8%, rgba(186, 230, 253, 0.12) 24%, transparent 68%);
            box-shadow: inset -2px -2px 5px rgba(14, 165, 233, 0.13), 0 0 9px rgba(125, 211, 252, 0.08);
            opacity: 0;
            animation: devpro-aquarium-bubble var(--bubble-duration) ease-in var(--bubble-delay) infinite;
            will-change: transform, opacity;
        }

        .pricing-aquarium__bubble--one { --bubble-x: 7%; --bubble-y: 72%; --bubble-size: 11px; --bubble-duration: 8s; --bubble-delay: -2s; }
        .pricing-aquarium__bubble--two { --bubble-x: 17%; --bubble-y: 47%; --bubble-size: 7px; --bubble-duration: 7s; --bubble-delay: -5s; }
        .pricing-aquarium__bubble--three { --bubble-x: 31%; --bubble-y: 83%; --bubble-size: 15px; --bubble-duration: 10s; --bubble-delay: -7s; }
        .pricing-aquarium__bubble--four { --bubble-x: 46%; --bubble-y: 62%; --bubble-size: 8px; --bubble-duration: 8.5s; --bubble-delay: -3s; }
        .pricing-aquarium__bubble--five { --bubble-x: 61%; --bubble-y: 39%; --bubble-size: 12px; --bubble-duration: 9s; --bubble-delay: -6s; }
        .pricing-aquarium__bubble--six { --bubble-x: 73%; --bubble-y: 79%; --bubble-size: 6px; --bubble-duration: 7.5s; --bubble-delay: -1s; }
        .pricing-aquarium__bubble--seven { --bubble-x: 86%; --bubble-y: 55%; --bubble-size: 14px; --bubble-duration: 11s; --bubble-delay: -8s; }
        .pricing-aquarium__bubble--eight { --bubble-x: 94%; --bubble-y: 88%; --bubble-size: 9px; --bubble-duration: 8s; --bubble-delay: -4s; }

        .pricing-aquarium__plant {
            position: absolute;
            bottom: 24px;
            left: var(--plant-x);
            width: 11px;
            height: var(--plant-height);
            border-radius: 100% 10% 85% 15%;
            background: linear-gradient(90deg, rgba(13, 148, 136, 0.28), rgba(45, 212, 191, 0.65));
            box-shadow: 0 0 16px rgba(45, 212, 191, 0.08);
            opacity: 0.62;
            transform-origin: 50% 100%;
            animation: devpro-aquarium-plant 4.6s ease-in-out var(--plant-delay) infinite;
        }

        .pricing-aquarium__plant::before,
        .pricing-aquarium__plant::after {
            position: absolute;
            bottom: 1px;
            width: 8px;
            border-radius: 100% 12% 90% 10%;
            background: inherit;
            content: '';
            transform-origin: 50% 100%;
        }

        .pricing-aquarium__plant::before {
            left: -7px;
            height: 72%;
            transform: rotate(-24deg);
        }

        .pricing-aquarium__plant::after {
            right: -8px;
            height: 56%;
            transform: rotate(28deg);
        }

        .pricing-aquarium__plant--one { --plant-x: 6%; --plant-height: 78px; --plant-delay: -1.8s; }
        .pricing-aquarium__plant--two { --plant-x: 15%; --plant-height: 54px; --plant-delay: -3.2s; }
        .pricing-aquarium__plant--three { --plant-x: 91%; --plant-height: 88px; --plant-delay: -0.7s; }

        .pricing-section .card {
            background: rgba(7, 17, 27, 0.93);
            box-shadow: 0 18px 44px rgba(0, 4, 10, 0.28);
        }

        .pricing-section .card:hover {
            background: rgba(9, 23, 36, 0.97);
        }

        .pricing-section .card-silver {
            background: linear-gradient(180deg, rgba(13, 37, 55, 0.95) 0%, rgba(6, 18, 30, 0.95) 100%);
        }

        .pricing-aquarium-toggle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 44px;
            margin-top: 18px;
            border: 1px solid rgba(125, 211, 252, 0.25);
            border-radius: 999px;
            background: rgba(2, 18, 31, 0.62);
            color: #cbd5e1;
            padding: 8px 15px;
            font: inherit;
            font-size: 0.78rem;
            font-weight: 700;
            cursor: pointer;
            transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
        }

        .pricing-aquarium-toggle:hover {
            border-color: rgba(125, 211, 252, 0.55);
            background: rgba(8, 47, 73, 0.76);
            color: #ffffff;
            transform: translateY(-1px);
        }

        .pricing-aquarium-toggle:active { transform: translateY(1px); }

        .pricing-aquarium-toggle:focus-visible {
            outline: 3px solid rgba(56, 189, 248, 0.72);
            outline-offset: 3px;
        }

        .pricing-aquarium-toggle__icon,
        .pricing-aquarium-toggle__icon svg {
            display: block;
            width: 16px;
            height: 16px;
            flex: 0 0 16px;
        }

        .pricing-aquarium-toggle__icon svg { fill: currentColor; }
        .pricing-aquarium-toggle__play { display: none !important; }
        .pricing-aquarium-toggle[aria-pressed='true'] .pricing-aquarium-toggle__pause { display: none; }
        .pricing-aquarium-toggle[aria-pressed='true'] .pricing-aquarium-toggle__play { display: block !important; }

        .pricing-section.is-aquarium-paused .pricing-aquarium__fish,
        .pricing-section.is-aquarium-paused .pricing-aquarium__tail,
        .pricing-section.is-aquarium-paused .pricing-aquarium__bubble,
        .pricing-section.is-aquarium-paused .pricing-aquarium__plant {
            animation-play-state: paused !important;
        }

        @keyframes devpro-aquarium-swim-right {
            0% { transform: translate3d(-14vw, 0, 0); }
            24% { transform: translate3d(18vw, -12px, 0); }
            49% { transform: translate3d(50vw, 7px, 0); }
            74% { transform: translate3d(83vw, -8px, 0); }
            100% { transform: translate3d(114vw, 4px, 0); }
        }

        @keyframes devpro-aquarium-swim-left {
            0% { transform: translate3d(114vw, 0, 0); }
            24% { transform: translate3d(83vw, -10px, 0); }
            49% { transform: translate3d(50vw, 8px, 0); }
            74% { transform: translate3d(18vw, -7px, 0); }
            100% { transform: translate3d(-14vw, 3px, 0); }
        }

        @keyframes devpro-aquarium-tail {
            from { transform: rotate(-6deg); }
            to { transform: rotate(6deg); }
        }

        @keyframes devpro-aquarium-bubble {
            0% { opacity: 0; transform: translate3d(0, 48px, 0) scale(0.72); }
            16% { opacity: 0.48; }
            72% { opacity: 0.32; }
            100% { opacity: 0; transform: translate3d(18px, -170px, 0) scale(1.08); }
        }

        @keyframes devpro-aquarium-plant {
            0%, 100% { transform: rotate(-4deg); }
            50% { transform: rotate(5deg); }
        }

        html[data-color-theme="light"] .pricing-section {
            border-color: rgba(2, 132, 199, 0.16);
            background:
                radial-gradient(circle at 18% 8%, rgba(14, 165, 233, 0.16), transparent 31%),
                radial-gradient(circle at 82% 42%, rgba(20, 184, 166, 0.12), transparent 26%),
                linear-gradient(180deg, #eefaff 0%, #d8f2f8 42%, #cce9ef 100%);
            box-shadow: inset 0 1px rgba(255, 255, 255, 0.85), inset 0 -1px rgba(2, 132, 199, 0.08);
        }

        html[data-color-theme="light"] .pricing-aquarium::after {
            background:
                radial-gradient(circle at 8% 30%, rgba(100, 116, 139, 0.13) 0 10px, transparent 11px),
                radial-gradient(circle at 21% 20%, rgba(71, 85, 105, 0.16) 0 17px, transparent 18px),
                radial-gradient(circle at 72% 22%, rgba(100, 116, 139, 0.12) 0 14px, transparent 15px),
                radial-gradient(circle at 90% 29%, rgba(71, 85, 105, 0.15) 0 20px, transparent 21px),
                linear-gradient(180deg, rgba(96, 165, 150, 0.34), rgba(58, 101, 102, 0.42));
            opacity: 0.68;
        }

        html[data-color-theme="light"] .pricing-aquarium__fish { filter: drop-shadow(0 6px 9px rgba(15, 23, 42, 0.13)); }

        html[data-color-theme="light"] .pricing-section .card {
            background: rgba(255, 255, 255, 0.94);
            box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
        }

        html[data-color-theme="light"] .pricing-section .card:hover { background: rgba(255, 255, 255, 0.99); }

        html[data-color-theme="light"] .pricing-section .card-silver {
            background: linear-gradient(180deg, rgba(240, 249, 255, 0.97) 0%, rgba(255, 255, 255, 0.96) 100%);
        }

        html[data-color-theme="light"] .pricing-aquarium-toggle {
            border-color: rgba(2, 132, 199, 0.24);
            background: rgba(255, 255, 255, 0.7);
            color: #075985;
        }

        html[data-color-theme="light"] .pricing-aquarium-toggle:hover {
            border-color: rgba(2, 132, 199, 0.48);
            background: rgba(255, 255, 255, 0.94);
            color: #0c4a6e;
        }

        @media (max-width: 900px) {
            .pricing-aquarium__fish--four { display: none; }
            .pricing-aquarium__fish--one { --fish-size: 92px; }
            .pricing-aquarium__fish--three { --fish-size: 112px; }
        }

        @media (max-width: 600px) {
            .pricing-aquarium__fish--three,
            .pricing-aquarium__bubble--six,
            .pricing-aquarium__bubble--seven,
            .pricing-aquarium__bubble--eight,
            .pricing-aquarium__plant--two {
                display: none;
            }

            .pricing-aquarium__fish--one {
                --fish-y: 20%;
                --fish-size: 72px;
                --fish-opacity: 0.38;
                --fish-duration: 30s;
            }

            .pricing-aquarium__fish--two {
                --fish-y: 66%;
                --fish-size: 58px;
                --fish-opacity: 0.34;
                --fish-duration: 34s;
            }

            .pricing-aquarium__plant { opacity: 0.46; }
            .pricing-aquarium-toggle { margin-top: 14px; }
        }

        @media (prefers-reduced-motion: reduce) {
            .pricing-aquarium__fish {
                left: var(--fish-rest-x);
                animation: none !important;
                transform: none;
                will-change: auto;
            }

            .pricing-aquarium__tail,
            .pricing-aquarium__plant {
                animation: none !important;
                will-change: auto;
            }

            .pricing-aquarium__bubble,
            .pricing-aquarium-toggle {
                display: none;
            }
        }

        .section-header { text-align: center; margin-bottom: 60px; }
		.section-intro { color: var(--text-muted); }
		.recommended-badge {
			display: inline-block;
			margin: 0 auto 20px;
			border-radius: 999px;
			background: var(--silver-color);
			color: #0f172a;
			padding: 4px 12px;
			font-size: 0.75rem;
			font-weight: 700;
		}

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: white;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
            gap: 30px;
            align-items: start;
        }

        /* --- CARD --- */
        .card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 40px 30px;
            transition: all 0.4s var(--transition-smooth);
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .card:hover { transform: translateY(-10px); background: var(--bg-card-hover); }

        .card-top {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--border-color);
        }

        .plan-name {
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block;
        }

        .price { font-size: 2.5rem; font-weight: 800; color: white; }

        .currency {
            font-size: 1rem;
            vertical-align: super;
            font-weight: 500;
            color: var(--text-muted);
        }

        .offer-note {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 8px;
            font-style: italic;
        }

        .features-list { margin-bottom: 40px; flex-grow: 1; }

        .list-group-title {
            font-size: 0.75rem;
            text-transform: uppercase;
            color: var(--text-muted);
            font-weight: 700;
            margin-bottom: 12px;
            margin-top: 20px;
            letter-spacing: 1px;
        }
        .list-group-title:first-child { margin-top: 0; }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 14px;
            font-size: 0.95rem;
            color: #e2e8f0;
            transition: transform 0.2s ease;
        }

        .feature-item:hover { transform: translateX(5px); color: white; }

        .icon-box { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }

        .text-excluded { color: #52525b; text-decoration: line-through; opacity: 0.7; }

        .card-footer { margin-top: auto; }

        .btn-card {
            width: 100%;
            padding: 16px;
            border-radius: 50px;
            font-weight: 700;
            text-align: center;
            display: block;
            font-size: 1rem;
            transition: all 0.3s var(--transition-smooth);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            font-family: inherit;
        }

        /* CARD 1: BRONZE */
        .card-bronze { border-top: 4px solid var(--bronze-color); }
        .card-bronze:hover { box-shadow: 0 20px 40px -10px var(--bronze-glow); border-color: var(--bronze-color); }
        .card-bronze .plan-name { color: var(--bronze-color); }
        .card-bronze .btn-card {
            background-color: transparent;
            border: 2px solid var(--bronze-color);
            color: var(--bronze-color);
        }
        .card-bronze .btn-card:hover {
            background-color: var(--bronze-color);
            color: black;
            box-shadow: 0 0 20px var(--bronze-glow);
            transform: translateY(-3px);
        }

        /* CARD 2: SILVER */
        .card-silver {
            border-top: 4px solid var(--silver-color);
            background: linear-gradient(180deg, #151e26 0%, #121212 100%);
        }
        .card-silver:hover { box-shadow: 0 20px 40px -10px var(--silver-glow); border-color: var(--silver-color); }
        .card-silver .plan-name { color: var(--silver-color); }
        .card-silver .btn-card { background-color: var(--silver-color); color: #0f172a; border: none; }
        .card-silver .btn-card:hover {
            background-color: #7dd3fc;
            box-shadow: 0 0 30px var(--silver-glow);
            transform: translateY(-3px);
        }

        /* CARD 3: GOLD */
        .card-gold { border-top: 4px solid var(--gold-color); }
        .card-gold:hover { box-shadow: 0 20px 40px -10px var(--gold-glow); border-color: var(--gold-color); }
        .card-gold .plan-name { color: var(--gold-color); }
        .card-gold .btn-card {
            background: linear-gradient(45deg, var(--gold-color), #eab308);
            color: black;
            border: none;
        }
        .card-gold .btn-card:hover {
            filter: brightness(1.1);
            box-shadow: 0 0 30px var(--gold-glow);
            transform: translateY(-3px);
        }

        /* --- CONTACT --- */
        .contact-section {
            padding: 100px 0;
            text-align: center;
            background: #0a0a0a;
            border-top: 1px solid var(--border-color);
        }

        .contact-box {
            background: #111;
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 60px 20px;
            max-width: 800px;
            margin: 0 auto;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-box:hover { border-color: #444; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5); }
		.contact-box__intro { margin-top: 10px; color: var(--text-muted); }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .contact-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }

        .contact-item a { font-weight: 600; color: white; transition: color 0.3s ease; }
        .contact-item a:hover { text-shadow: 0 0 10px rgba(255,255,255,0.5); }

        .contact-icon { font-size: 24px; margin-bottom: 5px; transition: transform 0.3s ease; }
        .contact-item:hover .contact-icon { transform: scale(1.2); }

        .site-footer {
            background-color: black;
            padding: 40px 0;
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-muted);
            border-top: 1px solid var(--border-color);
        }

        /* --- BOUTON WHATSAPP FLOTTANT (en bas) --- */
        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--wa-color);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
            z-index: 1500;
            transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s ease;
            animation: waPulse 2.5s infinite;
        }
        .whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37, 211, 102, 0.75); }
        .whatsapp-float svg { width: 34px; height: 34px; }
        @keyframes waPulse {
            0%   { box-shadow: 0 6px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.5); }
            70%  { box-shadow: 0 6px 20px rgba(37,211,102,0.5), 0 0 0 16px rgba(37,211,102,0); }
            100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0); }
        }

        /* ========================= */
        /* MODAL FORMULAIRE PREMIUM  */
        /* ========================= */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.78);
            backdrop-filter: blur(10px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            padding: 24px;
        }

        .modal-overlay.active { display: flex; }

        .modal {
            width: 100%;
            max-width: 720px;
            max-height: 90vh;
            overflow-y: auto;
            background:
                linear-gradient(180deg, rgba(21, 30, 38, 0.98), rgba(12, 12, 12, 0.98));
            border: 1px solid rgba(56, 189, 248, 0.35);
            border-top: 4px solid var(--silver-color);
            border-radius: 28px;
            padding: 36px;
            position: relative;
            box-shadow:
                0 25px 80px rgba(0, 0, 0, 0.65),
                0 0 45px rgba(56, 189, 248, 0.18);
            animation: modalIn 0.35s var(--transition-smooth);
        }

        .modal::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 28px;
            background: radial-gradient(circle at top, rgba(56, 189, 248, 0.12), transparent 42%);
            pointer-events: none;
        }

        @keyframes modalIn {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: none; }
        }

        .modal h3 {
            position: relative;
            font-size: 1.7rem;
            font-weight: 800;
            text-align: center;
            color: #ffffff;
            margin-bottom: 8px;
            letter-spacing: -0.4px;
        }

        .modal .modal-pack {
            position: relative;
            display: table;
            margin: 0 auto 28px;
            padding: 7px 16px;
            border-radius: 999px;
            background: rgba(56, 189, 248, 0.14);
            border: 1px solid rgba(56, 189, 248, 0.35);
            color: var(--silver-color);
            font-size: 0.9rem;
            font-weight: 700;
        }

        .modal-close {
            position: absolute;
            top: 18px;
            right: 20px;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid rgba(148, 163, 184, 0.35);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1;
            cursor: pointer;
            transition: all 0.25s ease;
            z-index: 2;
        }

        .modal-close:hover {
            color: #ffffff;
            border-color: var(--silver-color);
            background: rgba(56, 189, 248, 0.12);
            transform: rotate(90deg);
        }

        .form-group { margin-bottom: 16px; text-align: left; }
        .form-group label {
            display: block;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 6px;
            font-weight: 600;
        }
        .form-group input {
            width: 100%;
            padding: 13px 14px;
            border-radius: 10px;
            background: #0a0a0a;
            border: 1px solid var(--border-color);
            color: #fff;
            font-family: inherit;
            font-size: 0.95rem;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .form-group input::placeholder { color: #52525b; }
        .form-group input:focus {
            outline: none;
            border-color: var(--silver-color);
            box-shadow: 0 0 0 3px var(--silver-glow);
        }

        .btn-submit {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 50px;
            background-color: var(--silver-color);
            color: #0f172a;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            font-size: 1rem;
            font-family: inherit;
            margin-top: 10px;
            transition: all 0.3s var(--transition-smooth);
        }
        .btn-submit:hover {
            background-color: #7dd3fc;
            box-shadow: 0 0 30px var(--silver-glow);
            transform: translateY(-3px);
        }

        /* --- PAGE DE REMERCIEMENT --- */
        .thankyou-page {
            position: fixed;
            inset: 0;
            background: radial-gradient(circle at 50% 30%, #102016 0%, #050505 70%);
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 3000;
            padding: 24px;
        }
        .thankyou-page.active { display: flex; animation: modalIn 0.4s var(--transition-smooth); }

        .thankyou-icon {
            width: 92px;
            height: 92px;
            border-radius: 50%;
            background: rgba(37, 211, 102, 0.15);
            border: 2px solid var(--wa-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 26px;
        }
        .thankyou-icon svg { width: 46px; height: 46px; stroke: var(--wa-color); }

        .thankyou-page h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
        .thankyou-page p { color: var(--text-muted); max-width: 480px; margin-bottom: 32px; font-size: 1.05rem; }

        .thankyou-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
        .btn-wa-thanks {
            background: var(--wa-color);
            color: #fff;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s var(--transition-smooth);
        }
        .btn-wa-thanks:hover { filter: brightness(1.08); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,211,102,0.5); }

        .btn-back {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-muted);
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .btn-back:hover { color: white; border-color: var(--text-muted); }

        /* RESPONSIVE */
        @media (max-width: 900px) {
            .hero h1 { font-size: 2.5rem; }
            .pricing-grid { padding: 0 10px; }
        }

        @media (max-width: 600px) {
			.has-devpro-site .site-nav__desktop { display: none; }
			.pricing-grid { grid-template-columns: 1fr; padding: 0; }
            .hero h1 { font-size: 2rem; }
            .hero-actions { flex-direction: column; }
            .hero-actions .btn { width: 100%; max-width: 280px; }
            .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
            .whatsapp-float svg { width: 30px; height: 30px; }
        }

        /* ===================================================================== */
        /* DESIGN PREMIUM DU FORMULAIRE SUREFORMS                                  */
        /* ===================================================================== */

        /* Conteneurs SureForms : suppression des fonds par défaut */
        #orderModal form,
        #orderModal [class*="srfm-form"],
        #orderModal [class*="srfm"][class*="container"],
        #orderModal [class*="srfm-fields"],
        #orderModal [class*="srfm-form-content"] {
            background: transparent !important;
            box-shadow: none !important;
            color: #fff !important;
        }

        /* Formulaire en deux colonnes sur desktop */
        #orderModal form {
            position: relative;
            display: grid !important;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px !important;
            z-index: 1;
        }

        #orderModal form > * { margin: 0 !important; }

        /* Les grands champs et le bouton prennent toute la largeur */
        #orderModal textarea,
        #orderModal [class*="textarea"],
        #orderModal [class*="message"],
        #orderModal [class*="details"],
        #orderModal [class*="srfm-submit"],
        #orderModal button[type="submit"] {
            grid-column: 1 / -1;
        }

        /* Libellés */
        #orderModal label,
        #orderModal [class*="srfm-block-label"],
        #orderModal [class*="srfm-label"] {
            color: #ffffff !important;
            font-size: 0.9rem !important;
            font-weight: 700 !important;
            margin-bottom: 7px !important;
        }

        /* Étoiles des champs obligatoires */
        #orderModal label .required,
        #orderModal [class*="required"] {
            color: #fb7185 !important;
        }

        /* Textes d'aide */
        #orderModal [class*="srfm-description"],
        #orderModal [class*="srfm-help"],
        #orderModal [class*="-description"] {
            color: #9fb3c8 !important;
            font-size: 0.82rem !important;
            line-height: 1.4 !important;
            margin-bottom: 8px !important;
        }

        /* Champs de saisie */
        #orderModal input,
        #orderModal textarea,
        #orderModal select,
        #orderModal [class*="srfm-input"] {
            width: 100% !important;
            min-height: 48px !important;
            background: rgba(15, 23, 42, 0.85) !important;
            color: #ffffff !important;
            border: 1px solid rgba(148, 163, 184, 0.35) !important;
            border-radius: 14px !important;
            padding: 13px 15px !important;
            font-size: 0.95rem !important;
            font-family: inherit !important;
            transition: all 0.25s ease !important;
        }

        #orderModal textarea {
            min-height: 130px !important;
            resize: vertical !important;
        }

        #orderModal input::placeholder,
        #orderModal textarea::placeholder { color: #64748b !important; }

        #orderModal input:hover,
        #orderModal textarea:hover,
        #orderModal select:hover {
            border-color: rgba(56, 189, 248, 0.55) !important;
        }

        #orderModal input:focus,
        #orderModal textarea:focus,
        #orderModal select:focus {
            outline: none !important;
            border-color: var(--silver-color) !important;
            background: rgba(15, 23, 42, 1) !important;
            box-shadow:
                0 0 0 3px rgba(56, 189, 248, 0.18),
                0 0 18px rgba(56, 189, 248, 0.18) !important;
        }

        #orderModal select option {
            background: #111827 !important;
            color: #ffffff !important;
        }

        /* Champ téléphone international */
        #orderModal [class*="iti"] { background: transparent !important; }
        #orderModal [class*="iti__selected-flag"],
        #orderModal [class*="iti__flag-container"] { background: transparent !important; }
        #orderModal [class*="iti__country-list"] {
            background: #111827 !important;
            color: #ffffff !important;
            border: 1px solid rgba(148, 163, 184, 0.35) !important;
            border-radius: 12px !important;
        }
        #orderModal [class*="iti__country"] { color: #ffffff !important; }
        #orderModal [class*="iti__country"]:hover,
        #orderModal [class*="iti__country"][class*="highlight"] {
            background: rgba(56, 189, 248, 0.15) !important;
        }
        #orderModal [class*="iti__dial-code"] { color: #9fb3c8 !important; }

        /* Bouton d'envoi premium */
        #orderModal [class*="srfm-submit"] { text-align: center !important; }
        #orderModal button[type="submit"],
        #orderModal [class*="srfm-button"] {
            width: 100% !important;
            margin-top: 10px !important;
            padding: 17px 22px !important;
            border-radius: 999px !important;
            border: none !important;
            background: linear-gradient(135deg, #38BDF8, #0EA5E9) !important;
            color: #06121f !important;
            font-weight: 800 !important;
            font-size: 1rem !important;
            letter-spacing: 0.6px !important;
            text-transform: uppercase !important;
            cursor: pointer !important;
            box-shadow: 0 12px 30px rgba(56, 189, 248, 0.35) !important;
            transition: all 0.3s var(--transition-smooth) !important;
        }

        #orderModal button[type="submit"]:hover,
        #orderModal [class*="srfm-button"]:hover {
            transform: translateY(-3px) !important;
            filter: brightness(1.08) !important;
            box-shadow: 0 16px 38px rgba(56, 189, 248, 0.48) !important;
        }

        @media (max-width: 680px) {
            .modal {
                max-width: 100%;
                padding: 30px 22px;
                border-radius: 22px;
            }

            .modal h3 { font-size: 1.45rem; }

            #orderModal form {
                grid-template-columns: 1fr;
                gap: 18px !important;
            }
        }
    

        /* =============================================================== */
        /* SURCHARGE : FORMULAIRE AVEC FOND BLANC                          */
        /* =============================================================== */
        #orderModal .modal {
            background: #ffffff !important;
            border: 1px solid rgba(56, 189, 248, 0.28) !important;
            border-top: 4px solid var(--silver-color) !important;
            box-shadow:
                0 25px 80px rgba(0, 0, 0, 0.45),
                0 0 45px rgba(56, 189, 248, 0.16) !important;
            color: #0f172a !important;
        }

        #orderModal .modal::before {
            background: radial-gradient(circle at top, rgba(56, 189, 248, 0.12), transparent 45%) !important;
        }

        #orderModal .modal h3 {
            color: #0f172a !important;
        }

        #orderModal .modal-pack {
            background: rgba(56, 189, 248, 0.12) !important;
            border: 1px solid rgba(56, 189, 248, 0.35) !important;
            color: #0284c7 !important;
        }

        #orderModal .modal-close {
            background: #f8fafc !important;
            border: 1px solid #cbd5e1 !important;
            color: #64748b !important;
        }

        #orderModal .modal-close:hover {
            background: #e0f2fe !important;
            border-color: var(--silver-color) !important;
            color: #0284c7 !important;
        }

        #orderModal form,
        #orderModal [class*="srfm-form"],
        #orderModal [class*="srfm"][class*="container"],
        #orderModal [class*="srfm-fields"],
        #orderModal [class*="srfm-form-content"] {
            background: transparent !important;
            color: #0f172a !important;
        }

        #orderModal form > * {
            background: #ffffff !important;
        }

        #orderModal label,
        #orderModal [class*="srfm-block-label"],
        #orderModal [class*="srfm-label"] {
            color: #0f172a !important;
        }

        #orderModal label .required,
        #orderModal [class*="required"] {
            color: #ef4444 !important;
        }

        #orderModal [class*="srfm-description"],
        #orderModal [class*="srfm-help"],
        #orderModal [class*="-description"] {
            color: #475569 !important;
        }

        #orderModal input,
        #orderModal textarea,
        #orderModal select,
        #orderModal [class*="srfm-input"] {
            background: #f8fafc !important;
            color: #0f172a !important;
            border: 1px solid #cbd5e1 !important;
            box-shadow: none !important;
        }

        #orderModal input::placeholder,
        #orderModal textarea::placeholder {
            color: #94a3b8 !important;
        }

        #orderModal input:hover,
        #orderModal textarea:hover,
        #orderModal select:hover {
            background: #ffffff !important;
            border-color: #38BDF8 !important;
        }

        #orderModal input:focus,
        #orderModal textarea:focus,
        #orderModal select:focus {
            background: #ffffff !important;
            color: #0f172a !important;
            border-color: var(--silver-color) !important;
            box-shadow:
                0 0 0 3px rgba(56, 189, 248, 0.18),
                0 8px 22px rgba(15, 23, 42, 0.08) !important;
        }

        #orderModal select option {
            background: #ffffff !important;
            color: #0f172a !important;
        }

        #orderModal [class*="iti"],
        #orderModal [class*="iti__selected-flag"],
        #orderModal [class*="iti__flag-container"] {
            background: transparent !important;
        }

        #orderModal [class*="iti__country-list"] {
            background: #ffffff !important;
            color: #0f172a !important;
            border: 1px solid #cbd5e1 !important;
            box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16) !important;
        }

        #orderModal [class*="iti__country"] {
            color: #0f172a !important;
        }

        #orderModal [class*="iti__country"]:hover,
        #orderModal [class*="iti__country"][class*="highlight"] {
            background: #e0f2fe !important;
        }

        #orderModal [class*="iti__dial-code"] {
            color: #64748b !important;
        }



        /* =============================================================== */
        /* ANIMATION DE FERMETURE DE LA MODALE                             */
        /* =============================================================== */
        .modal-overlay.active,
        .modal-overlay.closing {
            display: flex;
        }

        .modal-overlay.closing {
            pointer-events: none;
            animation: modalOverlayOut 0.28s ease forwards;
        }

        .modal-overlay.closing .modal {
            animation: modalOut 0.28s var(--transition-smooth) forwards;
        }

        @keyframes modalOverlayOut {
            from {
                opacity: 1;
                backdrop-filter: blur(10px);
            }
            to {
                opacity: 0;
                backdrop-filter: blur(2px);
            }
        }

        @keyframes modalOut {
            from {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
            to {
                opacity: 0;
                transform: translateY(18px) scale(0.96);
            }
        }

        /* Bouton de fermeture plus propre : cercle stable, sans rotation exagérée */
        #orderModal .modal-close {
            width: 42px !important;
            height: 42px !important;
            min-width: 42px !important;
            min-height: 42px !important;
            padding: 0 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            border-radius: 50% !important;
            line-height: 1 !important;
            font-size: 1.15rem !important;
            background: rgba(248, 250, 252, 0.85) !important;
            border: 1px solid #cbd5e1 !important;
            color: #0284c7 !important;
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08) !important;
            transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
        }

        #orderModal .modal-close:hover {
            transform: scale(1.08) !important;
            background: #e0f2fe !important;
            border-color: var(--silver-color) !important;
            box-shadow: 0 10px 28px rgba(56, 189, 248, 0.24) !important;
        }

        #orderModal .modal-close:active {
            transform: scale(0.92) !important;
        }


/* ====================================================================== */
/* SYSTÈME GLOBAL : NAVIGATION, PANNEAUX, ACCUEIL BOUTIQUE ET FOOTER       */
/* ====================================================================== */
.screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.screen-reader-text:focus,
.skip-link:focus {
	top: 12px;
	left: 12px;
	z-index: 3000;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
	clip: auto !important;
	border-radius: 8px;
	background: #fff;
	color: #071018;
	padding: 10px 14px !important;
	font-weight: 800;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
	outline: 3px solid rgba(56, 189, 248, 0.78);
	outline-offset: 3px;
}

button,
input,
select,
textarea {
	font: inherit;
}

#primary,
#shop-products,
#offres,
#contact,
#logiciels {
	scroll-margin-top: 104px;
}

.site-header {
	isolation: isolate;
	background: rgba(7, 9, 13, 0.9);
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.admin-bar .site-header { top: 32px; }
.admin-bar .mobile-menu,
.admin-bar .cart-drawer {
	top: 32px;
	height: calc(100dvh - 32px);
}

.site-nav {
	gap: 28px;
	height: 80px;
}

.site-branding,
.site-nav__actions,
.site-action,
.site-logo {
	display: flex;
	align-items: center;
}

.site-branding {
	flex: 0 0 auto;
}

.site-logo {
	gap: 10px;
	color: #f8fafc;
	font-size: 1.08rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	transition: transform 0.2s ease;
}

.site-logo__mark {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(56, 189, 248, 0.42);
	border-radius: 10px;
	background: linear-gradient(145deg, rgba(56, 189, 248, 0.2), rgba(56, 189, 248, 0.04));
	color: #7dd3fc;
	font-size: 0.98rem;
}

.site-logo__text {
	white-space: nowrap;
}

.custom-logo-link {
	display: flex;
	align-items: center;
}

.custom-logo-link img {
	display: block;
	width: auto;
	max-width: 180px;
	height: 44px;
	object-fit: contain;
}

.site-nav__desktop {
	display: flex;
	flex: 1;
	justify-content: center;
}

.site-nav__links {
	align-items: center;
	margin: 0;
	padding: 0;
}

.site-nav__links .sub-menu {
	position: absolute;
	top: calc(100% + 16px);
	left: -16px;
	min-width: 220px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	background: #11151b;
	padding: 10px;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: 0.18s ease;
}

.site-nav__links li {
	position: relative;
}

.site-nav__links li:hover > .sub-menu,
.site-nav__links li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.site-nav__links .sub-menu a {
	display: block;
	border-radius: 8px;
	padding: 9px 10px;
}

.site-nav__actions {
	flex: 0 0 auto;
	gap: 8px;
}

.site-action,
.menu-toggle {
	position: relative;
	min-width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.035);
	color: #dbe5f1;
	cursor: pointer;
	transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.site-action {
	gap: 8px;
	justify-content: center;
	padding: 0 12px;
}

.site-action:hover,
.site-action.is-active,
.menu-toggle:hover,
.menu-toggle.is-active {
	border-color: rgba(56, 189, 248, 0.48);
	background: rgba(56, 189, 248, 0.1);
	color: #7dd3fc;
}

.site-action svg {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
}

.site-action__label,
.site-action__cart-copy {
	font-size: 0.78rem;
	font-weight: 800;
}

.site-action__cart-copy {
	display: grid;
	justify-items: start;
	line-height: 1.2;
}

.nav-cart-subtotal {
	color: #94a3b8;
	font-size: 0.68rem;
}

.nav-cart-count {
	display: grid;
	place-items: center;
	min-width: 20px;
	height: 20px;
	border-radius: 999px;
	background: #38bdf8;
	color: #06121f;
	padding: 0 5px;
	font-size: 0.68rem;
	font-weight: 900;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 0;
}

.menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle.is-active > span:nth-last-child(3) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-active > span:nth-last-child(2) { opacity: 0; }
.menu-toggle.is-active > span:last-child { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu,
.cart-drawer {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 2100;
	display: flex;
	flex-direction: column;
	width: min(410px, 100%);
	height: 100vh;
	height: 100dvh;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
	background: #0d1117;
	box-shadow: -24px 0 70px rgba(0, 0, 0, 0.45);
	color: #f8fafc;
	padding: 22px;
	overflow-y: auto;
	transform: translateX(105%);
	visibility: hidden;
	transition: transform 0.24s ease, visibility 0.24s step-end;
}

.mobile-menu {
	width: min(360px, 100%);
}

.mobile-menu.is-open,
.cart-drawer.is-open {
	transform: translateX(0);
	visibility: visible;
	transition: transform 0.24s ease, visibility 0s;
}

.drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 18px;
}

.drawer-head h2 {
	margin: 3px 0 0;
	font-size: 1.45rem;
	line-height: 1.1;
}

.drawer-kicker {
	color: #7dd3fc;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.drawer-close {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.04);
	color: #f8fafc;
	font-size: 1.45rem;
	cursor: pointer;
}

.mobile-menu__links {
	display: grid;
	gap: 6px;
	margin: 24px 0;
	padding: 0;
}

.mobile-menu__links a {
	display: flex;
	align-items: center;
	min-height: 48px;
	border-radius: 10px;
	color: #dbe5f1;
	padding: 0 14px;
	font-weight: 750;
}

.mobile-menu__links a:hover,
.mobile-menu__links a[aria-current="page"] {
	background: rgba(56, 189, 248, 0.1);
	color: #7dd3fc;
}

.mobile-menu__links .sub-menu {
	display: grid;
	gap: 4px;
	margin: 0 0 6px 14px;
	padding-left: 12px;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu__support {
	display: grid;
	gap: 8px;
	margin-top: auto;
	border: 1px solid rgba(56, 189, 248, 0.2);
	border-radius: 12px;
	background: rgba(56, 189, 248, 0.07);
	padding: 16px;
}

.mobile-menu__support span { color: #aab5c4; font-size: 0.84rem; }
.mobile-menu__support a { color: #7dd3fc; font-size: 0.88rem; font-weight: 850; }

.site-overlay {
	position: fixed;
	inset: 0;
	z-index: 2000;
	border: 0;
	background: rgba(2, 5, 9, 0.72);
	backdrop-filter: blur(4px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	cursor: default;
	transition: opacity 0.2s ease, visibility 0.2s step-end;
}

.site-overlay.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: opacity 0.2s ease, visibility 0s;
}

.devpro-mini-cart {
	flex: 1;
	min-height: 0;
	padding-top: 18px;
}

.devpro-mini-cart .woocommerce-mini-cart {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.devpro-mini-cart .woocommerce-mini-cart-item {
	position: relative;
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 12px;
	min-height: 76px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.035);
	padding: 10px 36px 10px 10px;
}

.devpro-mini-cart .woocommerce-mini-cart-item > a:not(.remove) {
	display: contents;
	color: #f8fafc;
	font-size: 0.88rem;
	font-weight: 800;
}

.devpro-mini-cart .woocommerce-mini-cart-item img {
	grid-row: 1 / span 2;
	width: 64px;
	height: 56px;
	border-radius: 8px;
	background: #171c24;
	object-fit: contain;
}

.devpro-mini-cart .remove_from_cart_button {
	position: absolute;
	top: 8px;
	right: 8px;
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 8px;
	color: #fda4af;
	font-size: 1.2rem;
}

.devpro-mini-cart .quantity {
	grid-column: 2;
	color: #94a3b8;
	font-size: 0.78rem;
}

.devpro-mini-cart__empty,
.woocommerce-mini-cart__empty-message {
	border: 1px dashed rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	color: #94a3b8;
	padding: 28px 18px;
	text-align: center;
}

.devpro-mini-cart .woocommerce-mini-cart__total {
	margin: 18px 0 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #cbd5e1;
	padding-top: 16px;
}

.devpro-mini-cart .woocommerce-mini-cart__buttons {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin: 0;
}

.devpro-mini-cart .woocommerce-mini-cart__buttons .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border: 1px solid rgba(56, 189, 248, 0.38);
	border-radius: 10px;
	background: rgba(56, 189, 248, 0.1);
	color: #7dd3fc;
	padding: 0 12px;
	font-size: 0.84rem;
	font-weight: 850;
}

.devpro-mini-cart .woocommerce-mini-cart__buttons .checkout {
	background: #38bdf8;
	color: #06121f;
}

.home-shop {
	position: relative;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: #080a0e;
	padding: 92px 0;
}

.home-shop__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 34px;
}

.section-eyebrow {
	margin-bottom: 8px;
	color: #38bdf8;
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-shop__header h2 {
	max-width: 680px;
	font-size: clamp(2rem, 5vw, 3.55rem);
	line-height: 1.04;
	letter-spacing: -0.045em;
}

.home-shop__header p:not(.section-eyebrow) {
	max-width: 620px;
	margin-top: 14px;
	color: #9aa4b2;
}

.home-shop__all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 44px;
	flex: 0 0 auto;
	border: 1px solid rgba(56, 189, 248, 0.5);
	border-radius: 999px;
	padding: 0 20px;
	color: #7dd3fc;
	font-weight: 850;
}

.woocommerce .home-shop__products ul.products,
.home-shop__products ul.products {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-shop__empty {
	display: grid;
	gap: 5px;
	border: 1px dashed rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.025);
	padding: 32px;
	text-align: center;
}

.home-shop__empty span { color: #94a3b8; }

.modal-description {
	margin: -8px auto 14px;
	max-width: 560px;
	color: #64748b;
	font-size: 0.9rem;
	text-align: center;
}

.modal-form-fallback {
	display: grid;
	gap: 14px;
	border: 1px solid #dbe4ee;
	border-radius: 14px;
	background: #f8fafc;
	color: #334155;
	padding: 24px;
	text-align: center;
}

.modal-form-fallback a {
	display: inline-flex;
	justify-content: center;
	border-radius: 10px;
	background: #0ea5e9;
	color: #fff;
	padding: 12px 16px;
	font-weight: 800;
}

.site-footer {
	padding: 72px 0 24px;
	text-align: left;
}

.site-footer__top {
	display: grid;
	grid-template-columns: minmax(260px, 1.6fr) repeat(2, minmax(160px, 0.7fr));
	gap: 56px;
	padding-bottom: 52px;
}

.site-footer__brand p {
	max-width: 440px;
	margin-top: 18px;
	color: #8491a3;
}

.site-footer__column h2 {
	margin-bottom: 16px;
	color: #f8fafc;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-footer__links {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
}

.site-footer__links a {
	color: #9aa4b2;
	transition: color 0.18s ease;
}

.site-footer__links a:hover { color: #7dd3fc; }

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	padding-top: 22px;
	font-size: 0.8rem;
}

.site-footer__bottom nav {
	display: flex;
	gap: 18px;
	height: auto;
}

.site-footer__bottom a:hover { color: #f8fafc; }

.single-page,
.single-post {
	min-height: 60vh;
	padding: 132px 0 80px;
}

.single-page .page-title,
.single-post .page-title {
	font-size: clamp(2rem, 5vw, 3.4rem);
	line-height: 1.08;
}

.single-page .entry-content,
.single-post .entry-content {
	margin-top: 28px;
	color: #cbd5e1;
}

.fallback-page {
	min-height: 65vh;
	padding-top: 140px;
	padding-bottom: 80px;
}

.fallback-page__title { margin-bottom: 20px; }
.fallback-page__empty { text-align: center; }
.fallback-page__empty a { color: #38bdf8; font-weight: 800; }

.woocommerce-checkout .whatsapp-float,
.woocommerce-cart .whatsapp-float { display: none; }

@media (max-width: 1100px) {
	.woocommerce .home-shop__products ul.products,
	.home-shop__products ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
	.has-devpro-site .site-nav__desktop { display: none; }
	.has-devpro-site .menu-toggle { display: flex; }
	.site-footer__top { grid-template-columns: 1fr 1fr; }
	.site-footer__brand { grid-column: 1 / -1; }

	html:not(.has-devpro-site) .site-header { position: static; }
	html:not(.has-devpro-site) .site-nav { flex-wrap: wrap; height: auto; padding: 12px 0; }
	html:not(.has-devpro-site) .site-nav__desktop { order: 3; width: 100%; overflow-x: auto; }
	html:not(.has-devpro-site) .site-nav__links { min-width: max-content; gap: 18px; padding: 10px 0 2px; }
}

@media (max-width: 680px) {
	.site-nav { gap: 12px; height: 72px; }
	.site-action--account { display: none; }
	.site-action__cart-copy { display: none; }
	.site-action { padding: 0 9px; }
	.site-logo__text { font-size: 0.95rem; }
	.site-logo__mark { width: 34px; height: 34px; }
	.custom-logo-link img { max-width: 124px; height: 38px; }
	.home-shop { padding: 68px 0; }
	.home-shop__header { align-items: start; flex-direction: column; }
	.home-shop__all { width: 100%; justify-content: space-between; }
	.woocommerce .home-shop__products ul.products,
	.home-shop__products ul.products { grid-template-columns: 1fr; }
	.site-footer__top { grid-template-columns: 1fr; gap: 34px; }
	.site-footer__brand { grid-column: auto; }
	.site-footer__bottom { align-items: start; flex-direction: column; }
	.site-footer__bottom nav { flex-wrap: wrap; }
	.whatsapp-float { bottom: 16px; right: 16px; }
}

@media (max-width: 782px) {
	.admin-bar .site-header { top: 46px; }
	.admin-bar .mobile-menu,
	.admin-bar .cart-drawer {
		top: 46px;
		height: calc(100dvh - 46px);
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* ===================== BOUTONS : GARDE-FOUS RESPONSIVE ================== */
.btn,
.btn-card,
.btn-submit,
.btn-back,
.btn-wa-thanks,
.modal-form-fallback a,
.home-shop__all {
	max-width: 100%;
	min-width: 0;
	line-height: 1.25;
	white-space: normal;
	overflow-wrap: anywhere;
}

.site-action,
.menu-toggle,
.drawer-close,
.modal-close,
.whatsapp-float {
	flex-shrink: 0;
}

.devpro-mini-cart .woocommerce-mini-cart__buttons > * {
	min-width: 0;
}

.devpro-mini-cart .woocommerce-mini-cart__buttons .button {
	max-width: 100%;
	min-width: 0;
	padding: 9px 10px;
	line-height: 1.2;
	text-align: center;
	white-space: normal;
	overflow-wrap: anywhere;
}

#orderModal button[type="submit"],
#orderModal [class*="srfm-button"] {
	max-width: 100% !important;
	min-width: 0 !important;
	line-height: 1.25 !important;
	white-space: normal !important;
	overflow-wrap: anywhere !important;
}

#orderModal .modal-close {
	width: 44px !important;
	height: 44px !important;
	min-width: 44px !important;
	min-height: 44px !important;
}

button:disabled,
input[type="submit"]:disabled,
.btn[aria-disabled="true"],
.button[aria-disabled="true"] {
	cursor: not-allowed !important;
	opacity: 0.55;
	transform: none !important;
}

/* ============== REFLOW, CIBLES TACTILES ET CONTENUS LONGS ============== */
.site-nav__desktop,
.site-nav__actions,
.contact-item,
.devpro-mini-cart,
.devpro-mini-cart .woocommerce-mini-cart-item {
	min-width: 0;
}

.site-nav__links > li > a,
.mobile-menu__support a,
.contact-item a,
.site-footer__links a,
.site-footer__bottom a {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	min-height: 44px;
	overflow-wrap: anywhere;
}

.site-footer__bottom nav {
	flex-wrap: wrap;
}

.devpro-mini-cart .woocommerce-mini-cart-item {
	grid-template-columns: 64px minmax(0, 1fr);
	padding: 10px;
	padding-inline-end: 54px;
	overflow-wrap: anywhere;
}

.devpro-mini-cart .woocommerce-mini-cart-item > a:not(.remove),
.devpro-mini-cart .quantity {
	min-width: 0;
	overflow-wrap: anywhere;
}

.devpro-mini-cart .remove_from_cart_button {
	top: 4px;
	right: auto;
	inset-inline-end: 4px;
	width: 44px;
	height: 44px;
	transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.devpro-mini-cart .woocommerce-mini-cart__buttons {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.devpro-mini-cart .woocommerce-mini-cart__buttons .button {
	height: auto;
	min-height: 44px;
}

.btn,
.btn-card,
.drawer-close,
.devpro-mini-cart .button,
.modal-form-fallback a,
.home-shop__all,
#orderModal button[type="submit"],
#orderModal [class*="srfm-button"] {
	touch-action: manipulation;
}

.modal-overlay {
	padding:
		max(12px, env(safe-area-inset-top))
		max(12px, env(safe-area-inset-right))
		max(12px, env(safe-area-inset-bottom))
		max(12px, env(safe-area-inset-left));
}

.modal {
	max-height: calc(100vh - 24px);
	max-height: calc(100dvh - 24px);
	overscroll-behavior: contain;
}

#orderModal .modal-close {
	right: auto !important;
	inset-inline-end: 20px !important;
}

#orderModal button[type="submit"]:disabled,
#orderModal [class*="srfm-button"]:disabled,
#orderModal button[type="submit"][aria-disabled="true"],
#orderModal form[aria-busy="true"] button[type="submit"] {
	cursor: progress !important;
	opacity: 0.58 !important;
	transform: none !important;
	filter: none !important;
	box-shadow: none !important;
}

.mobile-menu,
.cart-drawer {
	right: auto;
	inset-inline-end: 0;
	border-left: 0;
	border-inline-start: 1px solid rgba(255, 255, 255, 0.12);
}

.site-nav__links .sub-menu {
	left: auto;
	inset-inline-start: -16px;
}

.mobile-menu__links .sub-menu {
	margin: 0 0 6px;
	margin-inline-start: 14px;
	padding-left: 0;
	padding-inline-start: 12px;
	border-left: 0;
	border-inline-start: 1px solid rgba(255, 255, 255, 0.12);
}

.whatsapp-float {
	right: auto;
	inset-inline-end: max(16px, env(safe-area-inset-right));
	bottom: max(16px, env(safe-area-inset-bottom));
}

:dir(rtl) .mobile-menu,
:dir(rtl) .cart-drawer {
	transform: translateX(-105%);
}

:dir(rtl) .mobile-menu.is-open,
:dir(rtl) .cart-drawer.is-open {
	transform: translateX(0);
}

.price,
.nav-cart-subtotal,
.devpro-mini-cart .woocommerce-mini-cart__total .amount {
	direction: ltr;
	unicode-bidi: isolate;
	font-variant-numeric: tabular-nums;
}

@media (hover: hover) {
	.drawer-close:hover,
	.devpro-mini-cart .remove_from_cart_button:hover,
	.devpro-mini-cart .woocommerce-mini-cart__buttons .button:hover,
	.modal-form-fallback a:hover,
	.home-shop__all:hover {
		border-color: rgba(56, 189, 248, 0.55);
		background-color: rgba(56, 189, 248, 0.14);
		color: #7dd3fc;
	}
}

.btn:active,
.btn-card:active,
.drawer-close:active,
.devpro-mini-cart .button:active,
.devpro-mini-cart .remove_from_cart_button:active,
.modal-form-fallback a:active,
.home-shop__all:active {
	transform: translateY(1px) scale(0.98);
}

@media (max-width: 480px) {
	.modal {
		padding: 72px 16px 22px;
	}

	#orderModal .modal-close {
		top: 14px;
		inset-inline-end: 14px !important;
	}

	.devpro-mini-cart .woocommerce-mini-cart__buttons {
		grid-template-columns: 1fr;
	}
}

/* ======================= MODE NUIT / JOUR GLOBAL ======================= */
:root {
	color-scheme: dark;
	--surface-page: #050505;
	--surface-card: #121212;
	--surface-raised: #171a1f;
	--surface-hover: #1a1a1a;
	--surface-field: #0f172a;
	--surface-subtle: rgba(255, 255, 255, 0.04);
	--text-primary: #ffffff;
	--text-secondary: #cbd5e1;
	--text-subtle: #94a3b8;
	--border-subtle: rgba(255, 255, 255, 0.1);
	--border-strong: rgba(255, 255, 255, 0.18);
	--accent-text: #7dd3fc;
	--accent-soft: rgba(56, 189, 248, 0.12);
	--header-surface: rgba(7, 9, 13, 0.9);
	--shadow-surface: 0 18px 48px rgba(0, 0, 0, 0.32);
	--modal-surface: #111827;
	--modal-field: #0f172a;
	--modal-field-hover: #172033;
	--modal-text: #f8fafc;
	--modal-muted: #9fb3c8;
	--modal-border: #334155;
}

html[data-color-theme="light"] {
	color-scheme: light;
	--bronze-color: #c2410c;
	--silver-color: #0369a1;
	--bg-body: #f6f8fb;
	--bg-card: #ffffff;
	--bg-card-hover: #f8fafc;
	--text-main: #0f172a;
	--text-muted: #5b687a;
	--border-color: #dbe3ec;
	--surface-page: #f6f8fb;
	--surface-card: #ffffff;
	--surface-raised: #f8fafc;
	--surface-hover: #edf2f7;
	--surface-field: #ffffff;
	--surface-subtle: rgba(15, 23, 42, 0.04);
	--text-primary: #0f172a;
	--text-secondary: #334155;
	--text-subtle: #64748b;
	--border-subtle: #dbe3ec;
	--border-strong: #b8c5d3;
	--accent-text: #0369a1;
	--accent-soft: rgba(2, 132, 199, 0.1);
	--header-surface: rgba(255, 255, 255, 0.92);
	--shadow-surface: 0 16px 42px rgba(15, 23, 42, 0.12);
	--modal-surface: #ffffff;
	--modal-field: #f8fafc;
	--modal-field-hover: #ffffff;
	--modal-text: #0f172a;
	--modal-muted: #475569;
	--modal-border: #cbd5e1;
}

.theme-toggle {
	isolation: isolate;
	padding-inline: 11px;
}

.theme-toggle__icon {
	width: 20px;
	height: 20px;
}

.theme-toggle__icon--sun {
	color: #facc15;
}

.theme-toggle__icon--moon {
	display: none;
}

html[data-color-theme="light"] .theme-toggle__icon--sun {
	display: none;
}

html[data-color-theme="light"] .theme-toggle__icon--moon {
	display: block;
	color: #4338ca;
}

html[data-color-theme="light"] body {
	background-color: var(--surface-page);
	color: var(--text-primary);
}

html[data-color-theme="light"] .site-header {
	background: var(--header-surface);
	border-color: var(--border-subtle);
	box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

html[data-color-theme="light"] .site-logo,
html[data-color-theme="light"] .site-nav__links a:hover,
html[data-color-theme="light"] .site-nav__links a[aria-current="page"] {
	color: var(--text-primary);
}

html[data-color-theme="light"] .site-logo__mark {
	border-color: rgba(3, 105, 161, 0.35);
	background: rgba(3, 105, 161, 0.08);
	color: var(--accent-text);
}

html[data-color-theme="light"] .site-nav__links a,
html[data-color-theme="light"] .nav-cart-subtotal {
	color: var(--text-subtle);
}

html[data-color-theme="light"] .site-nav__links .sub-menu {
	border-color: var(--border-subtle);
	background: var(--surface-card);
	box-shadow: var(--shadow-surface);
}

html[data-color-theme="light"] .site-action,
html[data-color-theme="light"] .menu-toggle {
	border-color: var(--border-subtle);
	background: var(--surface-subtle);
	color: var(--text-secondary);
}

html[data-color-theme="light"] .site-action:hover,
html[data-color-theme="light"] .site-action.is-active,
html[data-color-theme="light"] .menu-toggle:hover,
html[data-color-theme="light"] .menu-toggle.is-active {
	border-color: rgba(2, 132, 199, 0.4);
	background: var(--accent-soft);
	color: var(--accent-text);
}

html[data-color-theme="light"] .mobile-menu,
html[data-color-theme="light"] .cart-drawer {
	border-color: var(--border-subtle);
	background: var(--surface-card);
	box-shadow: -24px 0 70px rgba(15, 23, 42, 0.18);
	color: var(--text-primary);
}

html[data-color-theme="light"] .drawer-head,
html[data-color-theme="light"] .mobile-menu__links .sub-menu {
	border-color: var(--border-subtle);
}

html[data-color-theme="light"] .drawer-kicker,
html[data-color-theme="light"] .mobile-menu__support a {
	color: var(--accent-text);
}

html[data-color-theme="light"] .drawer-close {
	border-color: var(--border-subtle);
	background: var(--surface-subtle);
	color: var(--text-primary);
}

html[data-color-theme="light"] .mobile-menu__links a {
	color: var(--text-secondary);
}

html[data-color-theme="light"] .mobile-menu__links a:hover,
html[data-color-theme="light"] .mobile-menu__links a[aria-current="page"] {
	background: var(--accent-soft);
	color: var(--accent-text);
}

html[data-color-theme="light"] .mobile-menu__support {
	border-color: rgba(2, 132, 199, 0.25);
	background: var(--accent-soft);
}

html[data-color-theme="light"] .mobile-menu__support span {
	color: var(--text-subtle);
}

html[data-color-theme="light"] .devpro-mini-cart .woocommerce-mini-cart-item {
	border-color: var(--border-subtle);
	background: var(--surface-raised);
}

html[data-color-theme="light"] .devpro-mini-cart .woocommerce-mini-cart-item > a:not(.remove),
html[data-color-theme="light"] .devpro-mini-cart .woocommerce-mini-cart__total {
	color: var(--text-primary);
}

html[data-color-theme="light"] .devpro-mini-cart .woocommerce-mini-cart-item img {
	background: #edf2f7;
}

html[data-color-theme="light"] .devpro-mini-cart .quantity,
html[data-color-theme="light"] .devpro-mini-cart__empty,
html[data-color-theme="light"] .woocommerce-mini-cart__empty-message {
	color: var(--text-subtle);
}

html[data-color-theme="light"] .devpro-mini-cart .woocommerce-mini-cart__total,
html[data-color-theme="light"] .devpro-mini-cart__empty,
html[data-color-theme="light"] .woocommerce-mini-cart__empty-message {
	border-color: var(--border-subtle);
}

html[data-color-theme="light"] .hero {
	background:
		radial-gradient(circle at 18% 18%, rgba(14, 165, 233, 0.14), transparent 31%),
		radial-gradient(circle at 82% 36%, rgba(249, 115, 22, 0.1), transparent 27%),
		linear-gradient(rgba(246, 248, 251, 0.72), rgba(246, 248, 251, 0.98)),
		repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.045) 0 1px, transparent 1px 64px),
		repeating-linear-gradient(0deg, rgba(15, 23, 42, 0.045) 0 1px, transparent 1px 64px);
}

html[data-color-theme="light"] .hero::before {
	filter: saturate(0.65) contrast(0.88);
	opacity: 0.18;
}

html[data-color-theme="light"] .hero h1 {
	background: linear-gradient(to right, #0f172a, #475569);
	-webkit-background-clip: text;
	background-clip: text;
}

html[data-color-theme="light"] .hero > .container > p {
	color: #475569;
}

html[data-color-theme="light"] body.home .client-orbit__eyebrow {
	color: var(--silver-color);
}

html[data-color-theme="light"] .tag {
	border-color: var(--border-subtle);
	background: var(--surface-card);
	color: var(--text-primary);
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

html[data-color-theme="light"] .tag:hover {
	border-color: var(--border-strong);
	background: var(--surface-hover);
}

html[data-color-theme="light"] .btn-hero {
	background: #0f172a;
	color: #ffffff;
}

html[data-color-theme="light"] .btn-hero:hover {
	background: #1e293b;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
}

html[data-color-theme="light"] .btn-text,
html[data-color-theme="light"] .section-header h2,
html[data-color-theme="light"] .price,
html[data-color-theme="light"] .feature-item,
html[data-color-theme="light"] .contact-item a {
	color: var(--text-primary);
}

html[data-color-theme="light"] .feature-item:hover {
	color: var(--accent-text);
}

html[data-color-theme="light"] .card {
	box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}

html[data-color-theme="light"] .card-silver {
	background: linear-gradient(180deg, #f5fbff 0%, #ffffff 100%);
}

html[data-color-theme="light"] .card-silver .btn-card,
html[data-color-theme="light"] .recommended-badge {
	background: var(--silver-color);
	color: #ffffff;
}

html[data-color-theme="light"] .card-silver .btn-card:hover {
	background: #075985;
	color: #ffffff;
}

html[data-color-theme="light"] .card-bronze .btn-card:hover {
	color: #ffffff;
}

html[data-color-theme="light"] .card-gold .plan-name {
	color: #854d0e;
}

html[data-color-theme="light"] .contact-section {
	border-color: var(--border-subtle);
	background: #eef3f8;
}

html[data-color-theme="light"] .contact-box {
	border-color: var(--border-subtle);
	background: var(--surface-card);
	box-shadow: var(--shadow-surface);
}

html[data-color-theme="light"] .contact-box:hover {
	border-color: var(--border-strong);
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

html[data-color-theme="light"] .home-shop {
	border-color: var(--border-subtle);
	background: #eef3f8;
}

html[data-color-theme="light"] .home-shop__header p:not(.section-eyebrow),
html[data-color-theme="light"] .home-shop__empty span {
	color: var(--text-subtle);
}

html[data-color-theme="light"] .home-shop__all,
html[data-color-theme="light"] .section-eyebrow {
	color: var(--accent-text);
}

html[data-color-theme="light"] .home-shop__empty {
	border-color: var(--border-strong);
	background: var(--surface-card);
}

html[data-color-theme="light"] .site-footer {
	border-color: var(--border-subtle);
	background: #e7edf4;
	color: var(--text-subtle);
}

html[data-color-theme="light"] .site-footer__brand p,
html[data-color-theme="light"] .site-footer__links a {
	color: var(--text-subtle);
}

html[data-color-theme="light"] .site-footer__column h2,
html[data-color-theme="light"] .site-footer__bottom a:hover {
	color: var(--text-primary);
}

html[data-color-theme="light"] .site-footer__links a:hover {
	color: var(--accent-text);
}

html[data-color-theme="light"] .site-footer__bottom {
	border-color: var(--border-subtle);
}

html[data-color-theme="light"] .single-page .entry-content,
html[data-color-theme="light"] .single-post .entry-content {
	color: var(--text-secondary);
}

html[data-color-theme="light"] .thankyou-page {
	background: radial-gradient(circle at 50% 30%, #e6f8ec 0%, #f6f8fb 72%);
}

/* La modale et SureForms suivent maintenant le thème au lieu de rester blancs. */
#orderModal .modal {
	background: var(--modal-surface) !important;
	color: var(--modal-text) !important;
}

#orderModal .modal h3,
#orderModal form,
#orderModal [class*="srfm-form"],
#orderModal [class*="srfm"][class*="container"],
#orderModal [class*="srfm-fields"],
#orderModal [class*="srfm-form-content"],
#orderModal label,
#orderModal [class*="srfm-block-label"],
#orderModal [class*="srfm-label"] {
	color: var(--modal-text) !important;
}

#orderModal form > * {
	background: transparent !important;
}

#orderModal .modal-description,
#orderModal [class*="srfm-description"],
#orderModal [class*="srfm-help"],
#orderModal [class*="-description"],
#orderModal [class*="iti__dial-code"] {
	color: var(--modal-muted) !important;
}

#orderModal input,
#orderModal textarea,
#orderModal select,
#orderModal [class*="srfm-input"] {
	border-color: var(--modal-border) !important;
	background: var(--modal-field) !important;
	color: var(--modal-text) !important;
}

#orderModal input:hover,
#orderModal textarea:hover,
#orderModal select:hover,
#orderModal input:focus,
#orderModal textarea:focus,
#orderModal select:focus {
	background: var(--modal-field-hover) !important;
	color: var(--modal-text) !important;
}

#orderModal input::placeholder,
#orderModal textarea::placeholder {
	color: var(--text-subtle) !important;
}

/* Le numéro reste lisible pendant la saisie, quelle que soit la langue du navigateur. */
#orderModal input[type="tel"],
#orderModal input[type="number"],
#orderModal input[name*="phone" i],
#orderModal input[name*="tel" i],
#orderModal input[id*="phone" i],
#orderModal input[id*="tel" i] {
	direction: ltr !important;
	unicode-bidi: plaintext;
	text-align: left !important;
	letter-spacing: 0.04em !important;
	font-variant-numeric: tabular-nums lining-nums;
	font-feature-settings: "tnum" 1, "lnum" 1;
	line-height: 1.35 !important;
	caret-color: #0284c7;
}

#orderModal select option,
#orderModal [class*="iti__country-list"] {
	border-color: var(--modal-border) !important;
	background: var(--modal-surface) !important;
	color: var(--modal-text) !important;
}

#orderModal [class*="iti__country"] {
	color: var(--modal-text) !important;
}

#orderModal [class*="iti__country"]:hover,
#orderModal [class*="iti__country"][class*="highlight"] {
	background: var(--accent-soft) !important;
}

#orderModal .modal-close {
	border-color: var(--modal-border) !important;
	background: var(--modal-field) !important;
	color: var(--modal-muted) !important;
}

#orderModal .modal-close:hover {
	background: var(--accent-soft) !important;
	color: var(--accent-text) !important;
}

#orderModal .modal-pack {
	background: var(--accent-soft) !important;
	color: var(--accent-text) !important;
}

.modal-form-fallback {
	border-color: var(--modal-border);
	background: var(--modal-field);
	color: var(--modal-text);
}

@media (max-width: 680px) {
	.theme-toggle {
		width: 44px;
		padding: 0;
	}

	.theme-toggle__label {
		display: none;
	}
}

/* ===================== ACCUEIL : ORBITE 3D DES CLIENTS ================= */
.client-orbit {
	--client-orbit-card-width: clamp(108px, 9vw, 124px);
	--client-orbit-card-height: clamp(108px, 9vw, 124px);
	--client-orbit-radius: clamp(78px, calc((var(--client-count, 5) * 22px) + 5px), 275px);
	--client-orbit-duration: 30s;
	position: relative;
	isolation: isolate;
	width: min(100%, 1080px);
	margin: 22px auto 0;
}

.client-orbit__heading {
	display: grid;
	justify-items: center;
	gap: 5px;
	margin-bottom: 10px;
}

.client-orbit__eyebrow {
	color: #38bdf8;
	font-size: 0.76rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero .client-orbit__heading h2 {
	margin: 0;
	color: #f8fafc;
	font-size: clamp(1.25rem, 2.2vw, 1.75rem);
	font-weight: 850;
	letter-spacing: -0.025em;
	line-height: 1.2;
}

.client-orbit__stage {
	position: relative;
	display: grid;
	place-items: center;
	width: 100%;
	height: clamp(230px, 28vw, 320px);
	perspective: 1200px;
	perspective-origin: 50% 45%;
	overflow: hidden;
}

.client-orbit__stage::before {
	display: none;
	content: none;
}

.client-orbit__ring {
	position: absolute;
	top: 50%;
	left: 50%;
	width: var(--client-orbit-card-width);
	height: var(--client-orbit-card-height);
	transform: translate(-50%, -50%) rotateY(0deg);
	transform-style: preserve-3d;
	will-change: transform;
	animation: devpro-client-orbit var(--client-orbit-duration) linear infinite;
}

.client-orbit__item {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	min-width: 0;
	transform: rotateY(var(--client-angle)) translateZ(var(--client-orbit-radius));
	transform-style: preserve-3d;
}

.client-orbit__card {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	border: 1px solid rgba(148, 163, 184, 0.35);
	border-radius: 50%;
	background: rgba(248, 250, 252, 0.97);
	box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3);
	padding: 18px;
	backface-visibility: hidden;
	transform: rotateY(var(--client-counter-angle));
	transform-style: preserve-3d;
	will-change: transform;
	animation: devpro-client-face var(--client-orbit-duration) linear infinite;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.client-orbit__item:hover .client-orbit__card {
	border-color: rgba(56, 189, 248, 0.72);
	box-shadow: 0 24px 65px rgba(2, 132, 199, 0.28);
}

.client-orbit__logo {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 72px;
	object-fit: contain;
	filter: none;
	opacity: 1;
	transition: transform 0.25s ease;
}

.client-orbit__item:hover .client-orbit__logo {
	transform: scale(1.04);
}

.client-orbit.is-drag-controlled .client-orbit__ring {
	transform: translate(-50%, -50%) rotateY(var(--client-orbit-rotation, 0deg));
	animation: none;
}

.client-orbit.is-drag-controlled .client-orbit__card {
	transform: rotateY(calc(var(--client-counter-angle) - var(--client-orbit-rotation, 0deg)));
	animation: none;
}

.client-orbit.is-drag-controlled .client-orbit__stage {
	cursor: grab;
	touch-action: pan-y pinch-zoom;
	user-select: none;
	-webkit-user-select: none;
}

.client-orbit.is-dragging .client-orbit__stage {
	cursor: grabbing;
}

.client-orbit__stage:focus-visible,
.client-orbit__empty a:focus-visible {
	outline: 3px solid #7dd3fc;
	outline-offset: -3px;
	border-radius: 16px;
}

.client-orbit.is-static .client-orbit__stage {
	height: auto;
	min-height: 126px;
	perspective: none;
	overflow: visible;
}

.client-orbit.is-static .client-orbit__stage::before {
	display: none;
}

.client-orbit.is-static .client-orbit__ring {
	position: static;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	width: 100%;
	height: auto;
	transform: none;
	animation: none;
}

.client-orbit.is-static .client-orbit__item {
	position: relative;
	inset: auto;
	width: var(--client-orbit-card-width);
	height: var(--client-orbit-card-height);
	transform: none;
}

.client-orbit.is-static .client-orbit__card {
	transform: none;
	animation: none;
}

.client-orbit--empty {
	width: min(100%, 760px);
}

.client-orbit__empty {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	border: 1px dashed rgba(56, 189, 248, 0.42);
	border-radius: 14px;
	background: rgba(56, 189, 248, 0.06);
	padding: 18px;
	color: #94a3b8;
	font-size: 0.88rem;
}

.client-orbit__empty a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border-radius: 10px;
	background: #38bdf8;
	color: #06121f;
	padding: 0 16px;
	font-weight: 850;
}

@keyframes devpro-client-orbit {
	from { transform: translate(-50%, -50%) rotateY(0deg); }
	to { transform: translate(-50%, -50%) rotateY(-360deg); }
}

@keyframes devpro-client-face {
	from { transform: rotateY(var(--client-counter-angle)); }
	to { transform: rotateY(calc(var(--client-counter-angle) + 360deg)); }
}

html[data-color-theme="light"] .hero .client-orbit__heading h2 {
	color: var(--text-primary);
}

html[data-color-theme="light"] .client-orbit__stage::before {
	border-color: rgba(2, 132, 199, 0.22);
	background: radial-gradient(ellipse, rgba(14, 165, 233, 0.1), transparent 68%);
	box-shadow: 0 0 50px rgba(2, 132, 199, 0.08), inset 0 0 30px rgba(2, 132, 199, 0.06);
}

html[data-color-theme="light"] .client-orbit__card {
	border-color: rgba(148, 163, 184, 0.42);
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 20px 48px rgba(15, 23, 42, 0.16);
}

html[data-color-theme="light"] .client-orbit__empty {
	border-color: rgba(2, 132, 199, 0.36);
	background: rgba(14, 165, 233, 0.07);
	color: var(--text-subtle);
}

@media (max-width: 900px) {
	.client-orbit {
		--client-orbit-card-width: clamp(94px, 14vw, 108px);
		--client-orbit-card-height: clamp(94px, 14vw, 108px);
		--client-orbit-radius: clamp(68px, calc((var(--client-count, 5) * 19px) + 5px), 235px);
	}

	.client-orbit__stage {
		height: clamp(210px, 34vw, 270px);
	}
}

@media (max-width: 600px) {
	.client-orbit {
		--client-orbit-card-width: 86px;
		--client-orbit-card-height: 86px;
		--client-orbit-radius: clamp(54px, calc((var(--client-count, 5) * 15px) + 5px), 190px);
		margin-top: 30px;
	}

	.client-orbit__heading {
		margin-bottom: 4px;
	}

	.client-orbit__stage {
		height: 190px;
	}

	.client-orbit__card {
		padding: 11px;
	}

	.client-orbit__logo {
		max-height: 44px;
	}

	.client-orbit__empty {
		align-items: stretch;
		flex-direction: column;
	}
}

/* ===================== EN-TÊTE : NAVIGATION PREMIUM ==================== */
.site-header {
	border-bottom: 1px solid rgba(148, 163, 184, 0.12);
	background: rgba(6, 20, 33, 0.84);
	box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(22px) saturate(145%);
}

.site-header .container {
	max-width: 1320px;
}

.site-nav {
	height: 76px;
	gap: clamp(16px, 3vw, 42px);
}

.site-logo {
	gap: 10px;
	letter-spacing: -0.035em;
}

.site-logo__mark {
	position: relative;
	overflow: hidden;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(56, 189, 248, 0.38);
	border-radius: 13px;
	background: linear-gradient(145deg, rgba(56, 189, 248, 0.18), rgba(139, 92, 246, 0.16));
	color: #7dd3fc;
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 8px 22px rgba(56, 189, 248, 0.1);
}

.site-logo__mark::after {
	position: absolute;
	right: -8px;
	bottom: -8px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #8b5cf6;
	filter: blur(8px);
	content: '';
}

.site-logo__text {
	font-size: 1.12rem;
	font-weight: 850;
}

.site-logo__text strong {
	background: linear-gradient(120deg, #38bdf8, #8b5cf6);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.site-nav__desktop {
	margin-inline: auto;
	border: 1px solid rgba(148, 163, 184, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.035);
	padding: 5px;
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.site-nav__links {
	gap: 2px;
}

.site-nav__links > li > a {
	min-height: 38px;
	border-radius: 999px;
	padding: 0 16px;
	color: #94a3b8;
	font-size: 0.88rem;
	font-weight: 700;
	transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-nav__links > li > a::after {
	display: none;
}

.site-nav__links > li > a:hover {
	background: rgba(56, 189, 248, 0.08);
	color: #eaf6ff;
}

.site-nav__links > li > a[aria-current="page"],
.site-nav__links > li.current-menu-item > a,
.site-nav__links > li.current_page_item > a {
	background: linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(139, 92, 246, 0.14));
	color: #eaf6ff;
	box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.2), 0 7px 18px rgba(0, 0, 0, 0.12);
}

.site-nav__actions {
	gap: 7px;
}

.site-action,
.menu-toggle {
	min-height: 42px;
	border: 1px solid rgba(148, 163, 184, 0.15);
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.045);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.site-action:hover,
.site-action.is-active,
.menu-toggle:hover,
.menu-toggle.is-active {
	border-color: rgba(56, 189, 248, 0.34);
	background: rgba(56, 189, 248, 0.1);
	color: #7dd3fc;
}

.theme-toggle {
	padding-inline: 12px;
}

.nav-cart {
	padding-inline: 11px 13px;
}

.nav-cart-count {
	top: -6px;
	right: -6px;
	min-width: 21px;
	height: 21px;
	border: 2px solid #061421;
	background: linear-gradient(135deg, #38bdf8, #8b5cf6);
	color: #fff;
	box-shadow: 0 7px 15px rgba(56, 189, 248, 0.25);
}

.site-action:focus-visible,
.site-nav__links a:focus-visible,
.site-logo:focus-visible,
.menu-toggle:focus-visible {
	outline: 3px solid rgba(56, 189, 248, 0.28);
	outline-offset: 3px;
}

html[data-color-theme="light"] .site-header {
	border-color: rgba(15, 23, 42, 0.09);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 10px 36px rgba(15, 23, 42, 0.07);
}

html[data-color-theme="light"] .site-nav__desktop {
	border-color: rgba(15, 23, 42, 0.09);
	background: rgba(241, 245, 249, 0.76);
}

html[data-color-theme="light"] .site-nav__links > li > a {
	color: #64748b;
}

html[data-color-theme="light"] .site-nav__links > li > a:hover {
	background: rgba(56, 189, 248, 0.09);
	color: #0f172a;
}

html[data-color-theme="light"] .site-nav__links > li > a[aria-current="page"],
html[data-color-theme="light"] .site-nav__links > li.current-menu-item > a,
html[data-color-theme="light"] .site-nav__links > li.current_page_item > a {
	background: #fff;
	color: #0f172a;
	box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.22), 0 6px 18px rgba(15, 23, 42, 0.08);
}

html[data-color-theme="light"] .site-action,
html[data-color-theme="light"] .menu-toggle {
	border-color: rgba(15, 23, 42, 0.1);
	background: rgba(248, 250, 252, 0.9);
	color: #334155;
}

html[data-color-theme="light"] .nav-cart-count {
	border-color: #fff;
}

@media (max-width: 1100px) {
	.site-nav__links > li > a { padding-inline: 12px; }
	.site-action__label { display: none; }
	.site-action { padding-inline: 11px; }
	.nav-cart-subtotal { display: none; }
}

@media (max-width: 940px) {
	.site-nav__desktop { display: none; }
	.menu-toggle { display: flex; }
}

@media (max-width: 600px) {
	.site-nav { height: 68px; }
	.site-header .container { padding-inline: 14px; }
	.site-logo__mark { width: 36px; height: 36px; border-radius: 11px; }
	.site-action { min-height: 40px; }
}

/* Contraste explicite des textes interactifs de l'en-tête. */
.site-nav__links > li > a:hover,
.site-nav__links > li > a:focus-visible,
.site-nav__links > li > a[aria-current="page"],
.site-nav__links > li.current-menu-item > a,
.site-nav__links > li.current_page_item > a {
	color: #f8fbff !important;
	text-shadow: 0 1px 10px rgba(56, 189, 248, 0.16);
}

.site-action:hover,
.site-action:focus-visible,
.site-action.is-active,
.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle.is-active {
	color: #eaf6ff !important;
}

.site-action:hover :is(.site-action__label, .site-action__cart-copy, .nav-cart-subtotal, .theme-toggle__label),
.site-action:focus-visible :is(.site-action__label, .site-action__cart-copy, .nav-cart-subtotal, .theme-toggle__label),
.site-action.is-active :is(.site-action__label, .site-action__cart-copy, .nav-cart-subtotal, .theme-toggle__label) {
	color: #eaf6ff !important;
	opacity: 1;
}

.site-action:hover svg,
.site-action:focus-visible svg,
.site-action.is-active svg {
	color: #7dd3fc;
}

html[data-color-theme="light"] .site-nav__links > li > a:hover,
html[data-color-theme="light"] .site-nav__links > li > a:focus-visible,
html[data-color-theme="light"] .site-nav__links > li > a[aria-current="page"],
html[data-color-theme="light"] .site-nav__links > li.current-menu-item > a,
html[data-color-theme="light"] .site-nav__links > li.current_page_item > a {
	color: #071827 !important;
	text-shadow: none;
}

html[data-color-theme="light"] .site-action:hover,
html[data-color-theme="light"] .site-action:focus-visible,
html[data-color-theme="light"] .site-action.is-active,
html[data-color-theme="light"] .menu-toggle:hover,
html[data-color-theme="light"] .menu-toggle:focus-visible,
html[data-color-theme="light"] .menu-toggle.is-active {
	border-color: rgba(2, 132, 199, 0.42);
	background: rgba(14, 165, 233, 0.13);
	color: #075985 !important;
}

html[data-color-theme="light"] .site-action:hover :is(.site-action__label, .site-action__cart-copy, .nav-cart-subtotal, .theme-toggle__label),
html[data-color-theme="light"] .site-action:focus-visible :is(.site-action__label, .site-action__cart-copy, .nav-cart-subtotal, .theme-toggle__label),
html[data-color-theme="light"] .site-action.is-active :is(.site-action__label, .site-action__cart-copy, .nav-cart-subtotal, .theme-toggle__label) {
	color: #075985 !important;
	opacity: 1;
}

html[data-color-theme="light"] .site-action:hover svg,
html[data-color-theme="light"] .site-action:focus-visible svg,
html[data-color-theme="light"] .site-action.is-active svg {
	color: #0284c7;
}

.site-nav__links .sub-menu a:hover,
.site-nav__links .sub-menu a:focus-visible {
	background: rgba(56, 189, 248, 0.12);
	color: #f8fbff !important;
}

html[data-color-theme="light"] .site-nav__links .sub-menu a:hover,
html[data-color-theme="light"] .site-nav__links .sub-menu a:focus-visible {
	background: rgba(14, 165, 233, 0.11);
	color: #075985 !important;
}


@media (prefers-reduced-motion: reduce) {
	.client-orbit__stage {
		height: auto;
		min-height: 0;
		perspective: none;
		overflow: visible;
	}

	.client-orbit__stage::before {
		display: none;
	}

	.client-orbit__ring {
		position: static;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 14px;
		width: 100%;
		height: auto;
		transform: none !important;
		animation: none !important;
		will-change: auto;
	}

	.client-orbit__item {
		position: relative;
		inset: auto;
		width: var(--client-orbit-card-width);
		height: var(--client-orbit-card-height);
		transform: none;
	}

	.client-orbit__card {
		transform: none !important;
		animation: none !important;
		will-change: auto;
	}

}

/* ===================== ACCUEIL : RYTHME VERTICAL COMPACT ============== */
body.home .hero {
	padding-top: clamp(118px, 9vw, 148px);
	padding-bottom: clamp(48px, 4vw, 64px);
}

body.home .hero .services-tags {
	gap: 10px;
	margin-bottom: 18px;
}

body.home .hero h1 {
	margin-bottom: 16px;
}

body.home .hero > .container > p {
	margin-bottom: 20px;
}

body.home .client-orbit {
	margin-top: 14px;
}

body.home .client-orbit__heading {
	margin-bottom: 8px;
}

body.home .client-orbit__stage {
	height: clamp(190px, 18vw, 240px);
}

body.home .hero-actions {
	gap: 12px;
	margin-top: 16px;
}

body.home .pricing-section,
body.home .home-shop,
body.home .contact-section {
	padding-top: clamp(48px, 5vw, 64px);
	padding-bottom: clamp(48px, 5vw, 64px);
}

body.home .section-header {
	margin-bottom: 36px;
}

body.home .section-header h2 {
	margin-bottom: 10px;
}

body.home .recommended-badge {
	margin-bottom: 14px;
}

body.home .pricing-grid {
	gap: 24px;
}

body.home .pricing-grid .card {
	padding: 32px 26px;
}

body.home .pricing-grid .card-top {
	margin-bottom: 20px;
	padding-bottom: 20px;
}

body.home .pricing-grid .features-list {
	margin-bottom: 26px;
}

body.home .pricing-grid .list-group-title {
	margin-top: 16px;
	margin-bottom: 9px;
}

body.home .pricing-grid .feature-item {
	margin-bottom: 10px;
}

body.home .home-shop__header {
	gap: 24px;
	margin-bottom: 24px;
}

body.home .home-shop__header p:not(.section-eyebrow) {
	margin-top: 10px;
}

body.home .contact-box {
	padding: clamp(34px, 4vw, 44px) 20px;
}

body.home .contact-info {
	gap: 30px;
	margin-top: 26px;
}

body.home .site-footer {
	padding: 26px 0;
}

@media (max-width: 900px) {
	body.home .client-orbit__stage {
		height: clamp(180px, 28vw, 220px);
	}

	body.home .home-shop__header {
		align-items: flex-start;
		gap: 18px;
	}
}

@media (max-width: 600px) {
	body.home .hero {
		padding-top: 108px;
		padding-bottom: 38px;
	}

	body.home .hero .services-tags {
		gap: 8px;
		margin-bottom: 14px;
	}

	body.home .hero h1 {
		margin-bottom: 12px;
	}

	body.home .hero > .container > p {
		margin-bottom: 14px;
	}

	body.home .client-orbit {
		margin-top: 18px;
	}

	body.home .client-orbit__stage {
		height: 165px;
	}

	body.home .hero-actions {
		gap: 10px;
		margin-top: 12px;
	}

	body.home .pricing-section,
	body.home .home-shop,
	body.home .contact-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	body.home .section-header {
		margin-bottom: 26px;
	}

	body.home .pricing-grid {
		gap: 18px;
	}

	body.home .pricing-grid .card {
		padding: 26px 20px;
	}

	body.home .home-shop__header {
		gap: 14px;
		margin-bottom: 20px;
	}

	body.home .contact-box {
		padding: 30px 16px;
	}

	body.home .contact-info {
		gap: 22px;
		margin-top: 22px;
	}
}
