        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

        :root {
            --primary: #203E5A;
            --primary-dark: #172d42;
            --primary-light: #2a5278;
            --accent: #4a9eff;
            --accent-light: #e8f4ff;
            --grey: #6B7B8D;
            --dark: #0f172a;
            --text: #334155;
            --text-light: #475569;
            --bg: #ffffff;
            --bg-alt: #f0f7ff;
            --bg-dark: #0f172a;
            --border: #e2e8f0;
            --success: #10b981;
            --green-light: #ecfdf5;
            --green-accent: #059669;
            --radius: 12px;
            --shadow: 0 4px 24px rgba(32,62,90,0.08);
            --shadow-lg: 0 12px 48px rgba(32,62,90,0.12);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            color: var(--text);
            line-height: 1.6;
            background: var(--bg);
            opacity: 1;
            transition: opacity 0.4s ease-in;
        }
        body.page-loaded {
            opacity: 1;
        }

        /* ── NAV (LWC Rockefeller-style) ── */
        .nav {
            position: fixed;
            top: 2px; left: 0; right: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            transition: background-color 0.4s ease, box-shadow 0.4s ease;
            isolation: isolate;
        }
        .nav.scrolled {
            background: rgba(255,255,255,0.99);
            box-shadow: 0 2px 20px rgba(32,62,90,0.08);
        }
        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            height: 72px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--primary);
            flex-shrink: 0;
            margin-right: 32px;
            transition: opacity 0.2s ease;
        }
        .nav-logo:hover { opacity: 0.85; }
        .nav-logo img { height: 42px; width: auto; }
        .nav-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
        .nav-brand-name { font-size: 1.15rem; font-weight: 700; letter-spacing: 2px; color: var(--primary); }
        .nav-brand-sub { font-size: 0.55rem; letter-spacing: 2.5px; color: var(--grey); text-transform: uppercase; }

        /* ── Desktop Nav Links ── */
        .nav-links {
            display: none;
            align-items: center;
            gap: 0;
            list-style: none;
            margin: 0;
            padding: 0;
            flex: 1;
        }
        @media (min-width: 769px) {
            .nav-links { display: flex; }
        }
        .nav-item { position: relative; }
        .nav-link {
            display: block;
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--primary);
            padding: 0 14px;
            height: 72px;
            line-height: 72px;
            text-decoration: none;
            white-space: nowrap;
            transition: color 0.35s ease-in-out;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--accent);
            transform: scaleX(0);
            transition: transform 0.2s ease;
            transform-origin: left;
        }
        .nav-item:hover .nav-link,
        .nav-link:hover {
            color: var(--accent);
        }
        .nav-item:hover .nav-link::after {
            transform: scaleX(1);
        }
        .nav-cta {
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #ffffff !important;
            background: var(--accent, #4a9eff) !important;
            padding: 10px 22px;
            border-radius: 4px;
            text-decoration: none !important;
            white-space: nowrap;
            transition: all 0.2s ease;
            display: inline-block;
            line-height: 1.4;
        }
        .nav-cta:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

        /* ── Nav Actions (lang + hamburger) ── */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: auto;
            flex-shrink: 0;
        }

        /* ── Language Globe (LWC-style dropdown) ── */
        .lang-globe-wrap {
            position: relative;
            z-index: 300;
            isolation: isolate;
        }
        .lang-globe-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            display: flex;
            align-items: center;
            color: var(--primary);
            opacity: 0.5;
            transition: opacity 0.25s ease;
            position: relative;
            z-index: 10;
        }
        .lang-globe-btn svg { pointer-events: none; }
        .lang-globe-btn:hover,
        .lang-globe-btn[aria-expanded="true"] { opacity: 1; }
        .lang-dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%) translateY(-4px);
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border);
            border-radius: 6px;
            box-shadow: 0 8px 32px rgba(32,62,90,0.12);
            min-width: 120px;
            z-index: 1000;
            flex-direction: column;
            overflow: hidden;
            opacity: 0;
            transition: opacity 180ms ease, transform 180ms ease;
        }
        .lang-globe-wrap.open .lang-dropdown {
            display: flex;
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        .lang-dropdown-btn {
            font-family: inherit;
            font-size: 0.8rem;
            font-weight: 400;
            letter-spacing: 0.03em;
            color: var(--text-light);
            background: none;
            border: none;
            padding: 10px 16px;
            cursor: pointer;
            text-align: center;
            transition: background 150ms ease, color 150ms ease;
            width: 100%;
        }
        .lang-dropdown-btn:hover {
            background: var(--bg-alt);
            color: var(--primary);
        }
        .lang-dropdown-btn.active {
            color: var(--primary);
            font-weight: 600;
        }

        /* ── Hamburger Toggle ── */
        .nav-toggle {
            width: 44px;
            height: 44px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
            position: relative;
            z-index: 200;
        }
        .nav-toggle span {
            display: block;
            width: 24px;
            height: 1.5px;
            background: var(--primary);
            transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), opacity 0.2s ease, width 0.3s cubic-bezier(0.23,1,0.32,1);
            transform-origin: center;
        }
        .nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
        .nav-toggle.active span:nth-child(2) { opacity: 0; width: 0; }
        .nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
        @media (min-width: 769px) {
            .nav-toggle { display: none; }
        }

        /* ── MEGA DROPDOWN PANELS (LWC-style) ── */
        .mega-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #fff;
            box-shadow: 0 22px 50px rgba(32,62,90,0.06);
            display: none;
            z-index: 90;
        }
        .mega-dropdown.active {
            display: block !important;
        }
        .mega-dropdown-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 48px 24px 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }
        .mega-title-col {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-left: 16px;
        }
        .mega-overline {
            font-size: 0.68rem;
            font-weight: 500;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 12px;
        }
        .mega-heading,
        .mega-title-col h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
            letter-spacing: -0.01em;
        }
        .mega-links-col {
            padding-left: 16px;
        }
        .mega-link-list,
        .mega-links-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
            columns: 2;
            column-gap: 24px;
        }
        .mega-link-list li,
        .mega-links-col li {
            break-inside: avoid;
        }
        .mega-link-list li a,
        .mega-links-col a {
            display: block;
            font-size: 0.95rem;
            font-weight: 400;
            color: var(--text);
            padding: 8px 0;
            line-height: 1.8;
            border-bottom: 1px solid transparent;
            transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
            text-decoration: none;
        }
        .mega-link-list li a:hover,
        .mega-links-col a:hover {
            color: var(--accent);
            border-bottom-color: var(--accent);
        }
        /* Hide mega dropdowns on mobile */
        @media (max-width: 768px) {
            .mega-dropdown { display: none !important; }
        }

        /* ── MOBILE NAV OVERLAY (LWC-style full-screen) ── */
        .mobile-nav-overlay {
            position: fixed;
            top: 74px;
            left: 0;
            width: 100%;
            height: calc(100vh - 74px);
            z-index: 99;
            background-color: var(--primary);
            overflow-y: auto;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        .mobile-nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        body.nav-open { overflow: hidden; }

        /* Staggered entrance */
        .mobile-nav-item,
        .mobile-nav-cta,
        .mobile-nav-footer {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .mobile-nav-overlay.active .mobile-nav-cta { opacity:1; transform:translateY(0); transition-delay:0.06s; }
        .mobile-nav-overlay.active .mobile-nav-item:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:0.1s; }
        .mobile-nav-overlay.active .mobile-nav-item:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:0.16s; }
        .mobile-nav-overlay.active .mobile-nav-item:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:0.22s; }
        .mobile-nav-overlay.active .mobile-nav-item:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:0.28s; }
        .mobile-nav-overlay.active .mobile-nav-item:nth-child(5) { opacity:1; transform:translateY(0); transition-delay:0.34s; }
        .mobile-nav-overlay.active .mobile-nav-footer { opacity:1; transform:translateY(0); transition-delay:0.4s; }

        .mobile-nav-inner {
            padding: 32px 24px;
            display: flex;
            flex-direction: column;
            min-height: 100%;
        }
        .mobile-nav-cta {
            display: block;
            text-align: center;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #fff;
            border: 1.5px solid var(--accent);
            padding: 14px 24px;
            margin-bottom: 32px;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .mobile-nav-cta:hover { background: var(--accent); color: var(--primary); }
        .mobile-nav-menu { list-style: none; margin: 0; padding: 0; flex: 1; }
        .mobile-nav-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
        .mobile-nav-toggle-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            font-size: 1.4rem;
            font-weight: 300;
            color: #fff;
            background: none;
            border: none;
            cursor: pointer;
            padding: 16px 0;
            letter-spacing: -0.01em;
            transition: color 0.2s ease;
            font-family: inherit;
        }
        .mobile-nav-toggle-item:hover { color: var(--accent); }
        .mobile-nav-chevron {
            transition: transform 0.35s ease-in-out;
            color: var(--accent);
            flex-shrink: 0;
        }
        .mobile-nav-item.open .mobile-nav-chevron { transform: rotate(180deg); }
        .mobile-nav-sub {
            list-style: none;
            padding: 0 0 8px 0;
            margin: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        .mobile-nav-item.open .mobile-nav-sub { max-height: 500px; }
        .mobile-nav-sub li a {
            display: block;
            font-size: 0.88rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.6);
            padding: 8px 0 8px 12px;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .mobile-nav-sub li a:hover { color: var(--accent); }
        .mobile-nav-direct {
            display: block;
            font-size: 1.4rem;
            font-weight: 300;
            color: #fff;
            padding: 16px 0;
            letter-spacing: -0.01em;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .mobile-nav-direct:hover { color: var(--accent); }
        .mobile-nav-footer {
            margin-top: auto;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.08);
        }
        .mobile-nav-footer-lang {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .mobile-lang-btn {
            background: none;
            border: none;
            color: rgba(255,255,255,0.6);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            cursor: pointer;
            padding: 4px 0;
            transition: color 0.2s ease;
            font-family: inherit;
        }
        .mobile-lang-btn:hover,
        .mobile-lang-btn.active { color: #fff; }
        .mobile-lang-sep { color: rgba(255,255,255,0.2); }

        /* ── HERO ── */
        .hero {
            padding: 142px 24px 80px;
            background: linear-gradient(135deg, #f0f7ff 0%, #e8f1ff 60%, #f0f7ff 100%);
            position: relative;
            overflow: hidden;
        }
        /* Gradient overlay for depth */
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(32,62,90,0.03) 0%, rgba(74,158,255,0.06) 50%, rgba(255,255,255,0.1) 100%);
            pointer-events: none;
            z-index: 0;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -15%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(74,158,255,0.08) 0%, transparent 70%);
        }
        /* Animated geometric dot pattern */
        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(32,62,90,0.06) 1px, transparent 1px);
            background-size: 32px 32px;
            animation: heroDrift 60s linear infinite;
            pointer-events: none;
        }
        @keyframes heroDrift {
            0% { background-position: 0 0; }
            100% { background-position: 320px 320px; }
        }
        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        /* Hero badge pulse animation */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(32,62,90,0.08);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 24px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
            animation: badgePulse 3s ease-in-out infinite;
        }
        @keyframes badgePulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(32,62,90,0.15); }
            50% { box-shadow: 0 0 0 10px rgba(32,62,90,0); }
        }
        .hero h1 {
            font-size: clamp(2.2rem, 4vw, 3.25rem);
            font-weight: 800;
            color: var(--dark);
            line-height: 1.15;
            margin-bottom: 20px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.04);
        }
        .hero p {
            font-size: 1.1rem;
            color: var(--text);
            margin-bottom: 32px;
            max-width: 520px;
            line-height: 1.7;
        }
        .hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 26px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
            border: none;
            font-family: inherit;
        }
        .btn-primary { background: var(--primary); color: #fff; }
        .btn-primary:hover {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(32,62,90,0.25);
        }
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
        }
        .hero-phone-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            padding: 10px 0;
            transition: color 0.2s;
        }
        .hero-phone-cta:hover { color: var(--primary-dark); }
        .hero-phone-cta svg { flex-shrink: 0; }
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        /* Staggered fade-in for hero stats */
        .stat-card {
            background: #fff;
            padding: 28px 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .hero-stats .stat-card:nth-child(1) { animation-delay: 0s; }
        .hero-stats .stat-card:nth-child(2) { animation-delay: 0.15s; }
        .hero-stats .stat-card:nth-child(3) { animation-delay: 0.3s; }
        .hero-stats .stat-card:nth-child(4) { animation-delay: 0.45s; }
        .hero-stats .stat-card.fade-up.visible {
            animation: statFadeIn 0.6s ease-out both;
        }
        .hero-stats .stat-card:nth-child(2).fade-up.visible { animation-delay: 0.15s; }
        .hero-stats .stat-card:nth-child(3).fade-up.visible { animation-delay: 0.3s; }
        .hero-stats .stat-card:nth-child(4).fade-up.visible { animation-delay: 0.45s; }
        @keyframes statFadeIn {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .stat-card .number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }
        .stat-card .label {
            font-size: 0.82rem;
            color: var(--text-light);
            margin-top: 6px;
        }

        /* ── SCROLL INDICATOR ── */
        .hero-scroll-indicator {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            opacity: 0.5;
            animation: scrollBounce 2s ease-in-out infinite;
            text-decoration: none;
            transition: opacity 0.2s;
        }
        .hero-scroll-indicator:hover { opacity: 0.8; }
        @keyframes scrollBounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(8px); }
        }

        /* ── SECTIONS ── */
        .section { padding: 90px 24px; background: linear-gradient(180deg, #fff 0%, #fcfdff 50%, #fff 100%); }
        .section-alt { background: linear-gradient(180deg, #f0f7ff 0%, #f5faff 50%, #f0f7ff 100%); }
        .section-inner { max-width: 1200px; margin: 0 auto; }
        .section-header { text-align: center; margin-bottom: 56px; }
        .section-header .overline {
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        .section-header .overline::before,
        .section-header .overline::after {
            content: '';
            width: 28px;
            height: 2px;
            background: var(--accent);
            border-radius: 1px;
        }
        .section-header h2 {
            font-size: clamp(1.6rem, 3vw, 2.25rem);
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 14px;
        }
        .section-header p {
            font-size: 1rem;
            color: var(--text-light);
            max-width: 580px;
            margin: 0 auto;
        }

        /* ── SERVICES ── */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .service-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 32px 24px;
            box-shadow: var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
            border: 1px solid var(--border);
            min-height: 260px;
            display: flex;
            flex-direction: column;
        }
        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .service-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: var(--accent-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            color: var(--accent);
            transition: background 0.3s, color 0.3s, transform 0.3s;
        }
        .service-card:hover .service-icon {
            background: var(--accent);
            color: #fff;
            transform: scale(1.08);
        }
        .service-icon svg { width: 26px; height: 26px; }
        .service-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }
        .service-card p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.6;
            flex: 1;
        }
        .service-card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--accent);
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            margin-top: 14px;
            transition: gap 0.2s, color 0.2s;
        }
        .service-card-link:hover {
            gap: 10px;
            color: var(--primary);
        }
        .service-card-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
        .service-card:hover .service-card-link svg { transform: translateX(3px); }

        /* ── CTA BREAK BAR ── */
        .cta-break-buttons { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
        .cta-break {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            padding: 40px 24px;
        }
        .cta-break-inner {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
            text-align: center;
        }
        .cta-break-text {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 700;
        }
        .cta-break-text .phone-number {
            white-space: nowrap;
        }
        .cta-break .btn-white {
            background: #fff;
            color: var(--primary);
            padding: 13px 30px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }
        .cta-break .btn-white:hover {
            background: #f0f7ff;
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.2);
        }

        /* ── WHY US ── */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }
        .why-item {
            text-align: center;
            padding: 20px 16px;
            transition: transform 0.3s;
        }
        .why-item:hover { transform: translateY(-4px); }
        .why-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            color: #fff;
        }
        .why-icon svg { width: 32px; height: 32px; }
        .why-item h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }
        .why-item p {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        /* ── ZONE ── */
        .zone-maps-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: start;
        }
        .zone-map-panel {
            background: #fff;
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow-lg);
        }
        .map-panel-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 16px;
            text-align: center;
        }
        .map-panel-badge {
            background: #4a9eff;
            color: #fff;
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 12px;
            font-weight: 600;
            vertical-align: middle;
            margin-left: 6px;
        }
        .map-svg-wrapper {
            position: relative;
        }
        .map-svg-wrapper svg {
            width: 100%;
            height: auto;
            display: block;
        }
        /* Department paths */
        .dept {
            stroke: #203E5A;
            stroke-width: 0.8;
            transition: fill 0.25s, filter 0.25s, stroke-width 0.2s;
            cursor: pointer;
        }
        .dept.dept-default {
            fill: #e8eef4;
        }
        .dept.dept-default:hover {
            fill: #d0dae6;
            filter: brightness(1.05);
            stroke-width: 1.2;
        }
        .dept.dept-idf {
            fill: #4a9eff;
        }
        .dept.dept-idf:hover {
            fill: #3a8eef;
            filter: brightness(1.1);
            stroke-width: 1.2;
        }
        .dept.dept-lyon {
            fill: #3a7bc8;
        }
        .dept.dept-lyon:hover {
            fill: #2d6ab5;
            filter: brightness(1.1);
            stroke-width: 1.2;
        }
        .dept.dept-hq {
            fill: #4a9eff;
            stroke: #fff;
            stroke-width: 1.5;
        }
        .idf-dept-map .dept {
            stroke-width: 0.6;
        }
        .idf-dept-map .dept:hover {
            stroke-width: 1;
        }
        .paris-arr {
            fill: rgba(255,255,255,0.5);
            stroke: rgba(255,255,255,0.8);
            stroke-width: 0.3;
        }
        .dept-label {
            text-shadow: 0 0 2px rgba(0,0,0,0.3);
        }
        /* Tooltip */
        .map-tooltip {
            position: absolute;
            background: var(--primary);
            color: #fff;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 0.82rem;
            font-weight: 600;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.2s;
            white-space: nowrap;
            z-index: 10;
            top: 0;
            left: 0;
        }
        .map-tooltip.visible { opacity: 1; }
        /* IDF legend */
        .idf-legend {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-top: 14px;
            font-size: 0.78rem;
            color: var(--text-light);
            flex-wrap: wrap;
        }
        .legend-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .legend-swatch {
            width: 14px;
            height: 14px;
            border-radius: 3px;
            display: inline-block;
        }
        .legend-idf { background: #4a9eff; }
        .legend-hq { background: #4a9eff; border: 2px solid #fff; box-shadow: 0 0 0 1px #4a9eff; }
        .legend-dot-arr {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            border: 1px solid #4a9eff;
            display: inline-block;
        }
        /* Zone info below maps */
        .zone-info { margin-top: 40px; }
        .zone-covered-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        .zone-covered-block h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 12px;
        }
        .zone-covered-block .dept-count {
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text-light);
            margin-left: 8px;
        }
        .zone-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .zone-chip {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 500;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .zone-chip:hover {
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .zone-chip-idf {
            background: rgba(74,158,255,0.12);
            color: #2a7de0;
        }
        .zone-chip-hq {
            background: #4a9eff;
            color: #fff;
            font-weight: 600;
        }
        .zone-chip-lyon {
            background: rgba(58,123,200,0.12);
            color: #2d6ab5;
        }
        .zone-sub {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-top: 10px;
        }
        .map-marker {
            filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
        }
        @media (max-width: 768px) {
            .zone-maps-container {
                grid-template-columns: 1fr;
            }
            .zone-covered-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ── RSE / SUSTAINABILITY ── */
        .section-rse { background: linear-gradient(180deg, #ecfdf5 0%, #f0fdf6 50%, #ecfdf5 100%); }
        .section-rse .overline { color: var(--green-accent); }
        .section-rse .overline::before,
        .section-rse .overline::after { background: var(--green-accent); }
        .rse-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .rse-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 36px 28px;
            text-align: center;
            box-shadow: var(--shadow);
            border: 1px solid #d1fae5;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .rse-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .rse-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--green-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            color: var(--green-accent);
        }
        .rse-icon svg { width: 28px; height: 28px; }
        .rse-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }
        .rse-card p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* ── FAQ ── */
        .faq-list { max-width: 800px; margin: 0 auto; }
        .faq-item {
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 12px;
            background: #fff;
            overflow: hidden;
            transition: box-shadow 0.3s;
        }
        .faq-item:hover { box-shadow: var(--shadow); }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            background: none;
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark);
            text-align: left;
            gap: 16px;
            transition: color 0.2s;
        }
        .faq-question:hover { color: var(--primary); }
        .faq-chevron {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            transition: transform 0.3s;
            color: var(--text-light);
        }
        .faq-item.open .faq-chevron { transform: rotate(180deg); }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 24px;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 24px 20px;
        }
        .faq-answer p {
            font-size: 0.92rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ── CONTACT ── */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 48px;
        }
        .contact-info h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }
        .contact-info > p {
            color: var(--text-light);
            margin-bottom: 28px;
            font-size: 0.95rem;
        }
        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 22px;
        }
        .contact-detail .icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: var(--bg-alt);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--primary);
        }
        .contact-detail .icon svg { width: 20px; height: 20px; }
        .contact-detail .text strong {
            display: block;
            color: var(--dark);
            margin-bottom: 2px;
            font-size: 0.9rem;
        }
        .contact-detail .text span {
            color: var(--text-light);
            font-size: 0.875rem;
        }
        .contact-detail .text a {
            color: var(--text-light);
            font-size: 0.875rem;
            text-decoration: none;
            transition: color 0.2s;
        }
        .contact-detail .text a:hover { color: var(--primary); }
        .contact-form {
            background: #fff;
            padding: 36px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
            position: relative;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .form-group { margin-bottom: 18px; }
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--dark);
            margin-bottom: 6px;
        }
        .form-group .input-wrapper {
            position: relative;
        }
        .form-group .input-wrapper .input-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--grey);
            width: 18px;
            height: 18px;
            pointer-events: none;
            transition: color 0.2s;
        }
        .form-group .input-wrapper textarea ~ .input-icon {
            top: 16px;
            transform: none;
        }
        .form-group .input-wrapper input,
        .form-group .input-wrapper textarea {
            padding-left: 40px;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 11px 14px;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.9rem;
            transition: border-color 0.2s, box-shadow 0.2s;
            background: #fff;
            color: var(--text);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(74,158,255,0.12);
        }
        .form-group .input-wrapper input:focus ~ .input-icon,
        .form-group .input-wrapper textarea:focus ~ .input-icon {
            color: var(--accent);
        }
        .form-group textarea { resize: vertical; min-height: 110px; }
        .btn-submit {
            width: 100%;
            padding: 14px;
            font-size: 0.95rem;
            position: relative;
            overflow: hidden;
        }
        .btn-submit:hover {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
        }
        .btn-submit.loading {
            color: transparent;
            pointer-events: none;
        }
        .btn-submit.loading::after {
            content: '';
            position: absolute;
            width: 22px;
            height: 22px;
            border: 3px solid rgba(255,255,255,0.3);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin 0.7s linear infinite;
            top: 50%;
            left: 50%;
            margin-left: -11px;
            margin-top: -11px;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        /* Form success message */
        .form-success {
            position: absolute;
            inset: 0;
            background: #fff;
            border-radius: var(--radius);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s, visibility 0.4s;
            z-index: 2;
        }
        .form-success.visible {
            opacity: 1;
            visibility: visible;
        }
        .form-success .success-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--green-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--success);
            animation: successPop 0.4s ease-out;
        }
        @keyframes successPop {
            0% { transform: scale(0); }
            70% { transform: scale(1.15); }
            100% { transform: scale(1); }
        }
        .form-success .success-icon svg { width: 32px; height: 32px; }
        .form-success h3 { color: var(--dark); font-size: 1.2rem; }
        .form-success p { color: var(--text-light); font-size: 0.95rem; }

        /* ── FOOTER ── */
        .footer {
            background: var(--bg-dark);
            color: rgba(255,255,255,0.7);
            padding: 56px 24px 28px;
        }
        .footer-inner { max-width: 1200px; margin: 0 auto; }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-brand .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-weight: 700;
            font-size: 1.15rem;
            margin-bottom: 14px;
        }
        .footer-brand .footer-logo img {
            height: 34px;
            width: auto;
            filter: brightness(0) invert(1);
        }
        .footer-brand p {
            font-size: 0.875rem;
            line-height: 1.7;
            max-width: 340px;
        }
        .footer h4 {
            color: #fff;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s;
        }
        .footer-links a:hover { color: #fff; }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.8rem;
        }

        /* ── TESTIMONIALS CAROUSEL ── */
        .testimonials-carousel-wrapper {
            position: relative;
            overflow: hidden;
        }
        .testimonials-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .testimonial-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 32px 28px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            position: relative;
            transition: transform 0.3s, box-shadow 0.3s;
            min-width: calc(33.333% - 16px);
            margin: 0 12px;
            flex-shrink: 0;
        }
        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .testimonial-quote-icon {
            position: absolute;
            top: 20px;
            right: 24px;
            opacity: 0.07;
            color: var(--primary);
        }
        .testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
        .testimonial-stars svg { width: 18px; height: 18px; fill: #f59e0b; }
        .testimonial-text {
            font-size: 0.95rem;
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
        }
        .testimonial-author { font-size: 0.9rem; font-weight: 700; color: var(--dark); }
        .testimonial-role { font-size: 0.8rem; color: var(--text-light); margin-top: 2px; }
        /* Carousel nav arrows */
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #fff;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            z-index: 3;
            transition: all 0.2s;
        }
        .carousel-arrow:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
        }
        .carousel-arrow svg { width: 20px; height: 20px; }
        .carousel-prev { left: -8px; }
        .carousel-next { right: -8px; }
        /* Dot indicators */
        .carousel-dots {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 32px;
        }
        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--border);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            padding: 0;
        }
        .carousel-dot.active {
            background: var(--accent);
            transform: scale(1.3);
        }

        /* ── CLIENT BADGES ── */
        .badges-section { padding: 60px 24px; background: linear-gradient(180deg, #fff 0%, #fafcff 50%, #fff 100%); }
        .badges-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
        .badges-title {
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--grey);
            margin-bottom: 32px;
        }
        .badges-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 24px;
        }
        .badge-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding: 16px 8px;
            opacity: 0.6;
            transition: opacity 0.3s;
        }
        .badge-item:hover { opacity: 1; }
        .badge-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--grey);
        }
        .badge-icon svg { width: 36px; height: 36px; }
        .badge-label {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ── BACK TO TOP ── */
        .back-to-top {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(32,62,90,0.25);
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px);
            transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
            z-index: 996;
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .back-to-top:hover { background: var(--primary-dark); }
        .back-to-top svg { width: 20px; height: 20px; }

        /* ── STICKY CTA BAR (mobile) ── */
        .sticky-cta-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--primary);
            padding: 10px 16px;
            display: none;
            align-items: center;
            justify-content: center;
            gap: 12px;
            z-index: 998;
            box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        .sticky-cta-bar.visible { transform: translateY(0); }
        .sticky-cta-bar a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .sticky-cta-bar .sticky-phone svg { width: 16px; height: 16px; }
        .sticky-cta-bar .sticky-quote-btn {
            background: #fff;
            color: var(--primary);
            padding: 8px 18px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.85rem;
        }

        /* ── MOBILE ── */
        @media (max-width: 1024px) {
            .why-grid { grid-template-columns: repeat(2, 1fr); }
            .rse-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
            .testimonial-card { min-width: calc(50% - 16px); }
        }
        @media (max-width: 768px) {
            .nav-links { display: none !important; }
            .nav-toggle { display: flex; }
            .nav-cta { display: none; }
            .hero-inner { grid-template-columns: 1fr; gap: 36px; }
            .hero { padding: 110px 24px 56px; }
            .services-grid { grid-template-columns: 1fr; }
            .why-grid { grid-template-columns: 1fr 1fr; }
            .rse-grid { grid-template-columns: 1fr; }
            .zone-maps-container { grid-template-columns: 1fr; }
            .zone-covered-grid { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 28px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .section { padding: 60px 24px; }
            .cta-break-inner { flex-direction: column; gap: 18px; }
            .hero-scroll-indicator { display: none; }
            [style*="grid-template-columns:repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
            .sticky-cta-bar { display: flex; }
            .back-to-top { bottom: 72px; }
            .testimonial-card { min-width: calc(100% - 24px); }
            .carousel-prev { left: 2px; }
            .carousel-next { right: 2px; }
            .badges-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 480px) {
            [style*="grid-template-columns:repeat(4"] { grid-template-columns: 1fr !important; }
            [style*="grid-template-columns:repeat(2"] { grid-template-columns: 1fr !important; }
            .why-grid { grid-template-columns: 1fr; }
            .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .stat-card { padding: 20px 14px; }
            .stat-card .number { font-size: 1.6rem; }
            .badges-grid { grid-template-columns: repeat(2, 1fr); }
        }

        /* ── ANIMATIONS ── */
        .fade-up, .fade-up.visible { opacity: 1 !important; transform: none !important; visibility: visible !important; }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── LEGAL MODAL ── */
        .legal-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }
        .legal-modal-overlay.visible { display: flex; }
        .legal-modal {
            background: #fff;
            border-radius: var(--radius);
            max-width: 680px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 40px;
            position: relative;
            box-shadow: var(--shadow-lg);
        }
        .legal-modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-light);
            font-size: 1.5rem;
            line-height: 1;
            padding: 4px 8px;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .legal-modal-close:hover { background: var(--bg-alt); color: var(--dark); }
        .legal-modal h2 {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 24px;
        }
        .legal-modal h3 {
            font-size: 1rem;
            color: var(--dark);
            margin: 20px 0 8px;
        }
        .legal-modal p {
            font-size: 0.9rem;
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 8px;
        }

        /* ── FLOATING PHONE BUTTON ── */
        .floating-phone {
            position: fixed;
            bottom: 32px;
            left: 24px;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #25d366;
            color: #fff;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(37,211,102,0.4);
            z-index: 996;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
            animation: floatingBounce 3s ease-in-out infinite;
        }
        .floating-phone:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 24px rgba(37,211,102,0.5);
            animation: none;
        }
        .floating-phone svg { width: 28px; height: 28px; }
        @keyframes floatingBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }
        @media (max-width: 768px) {
            .floating-phone { display: none; }
        }

        /* ── COOKIE CONSENT ── */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-dark);
            color: rgba(255,255,255,0.9);
            padding: 16px 24px;
            z-index: 2001;
            display: none;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            font-size: 0.88rem;
            box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
        }
        .cookie-banner.visible { display: flex; }
        .cookie-banner p { margin: 0; max-width: 600px; line-height: 1.5; }
        .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
        .cookie-btn {
            padding: 8px 20px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.85rem;
            border: none;
            cursor: pointer;
            font-family: inherit;
            transition: all 0.2s;
        }
        .cookie-accept { background: var(--success); color: #fff; }
        .cookie-accept:hover { background: #059669; }
        .cookie-refuse { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }
        .cookie-refuse:hover { background: rgba(255,255,255,0.1); color: #fff; }

        /* ── SOCIAL MEDIA ICONS ── */
        .footer-social { display: flex; gap: 12px; margin-top: 20px; }
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: transform 0.2s, opacity 0.2s;
            opacity: 0.8;
        }
        .social-icon:hover { transform: translateY(-3px); opacity: 1; }
        .social-icon svg { width: 20px; height: 20px; }
        .social-linkedin { background: #0077b5; }
        .social-facebook { background: #1877f2; }
        .social-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

        /* ── SERVICE DETAIL EXPAND ── */
        .service-detail {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, opacity 0.3s ease;
            opacity: 0;
        }
        .service-detail.open {
            max-height: 200px;
            opacity: 1;
        }
        .service-detail p {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.6;
            padding-top: 8px;
            border-top: 1px solid var(--border);
            margin-top: 10px;
        }
        .service-card-link[aria-expanded="true"] svg {
            transform: rotate(90deg);
        }

        /* ── PERFORMANCE: will-change hints ── */
        .testimonials-track { will-change: transform; }
        .fade-up { will-change: opacity, transform; }
        .fade-up.visible { will-change: auto; }
        .hero::after { will-change: background-position; }

        /* ── TOP ACCENT BAR ── */
        .top-accent-bar {
            height: 2px;
            background: var(--primary);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
        }

        /* ── SKIP TO CONTENT ── */
        .skip-to-content {
            position: absolute;
            top: -100%;
            left: 16px;
            background: var(--primary);
            color: #fff;
            padding: 12px 24px;
            border-radius: 0 0 8px 8px;
            font-weight: 600;
            font-size: 0.9rem;
            z-index: 1002;
            text-decoration: none;
            transition: top 0.2s;
        }
        .skip-to-content:focus {
            top: 2px;
        }

        /* ── FOCUS-VISIBLE STYLES ── */
        *:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
        }
        .btn:focus-visible,
        .nav-cta:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
            box-shadow: 0 0 0 6px rgba(74,158,255,0.2);
        }
        .carousel-arrow:focus-visible,
        .carousel-dot:focus-visible,
        .faq-question:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
        }
        .cookie-btn:focus-visible {
            outline: 3px solid #fff;
            outline-offset: 2px;
        }

        /* ── MOBILE: Cookie banner + sticky CTA overlap fix ── */
        @media (max-width: 768px) {
            .cookie-banner.visible ~ .sticky-cta-bar {
                bottom: 60px;
            }
            .cookie-banner.visible ~ .sticky-cta-bar.visible + .back-to-top,
            body:has(.cookie-banner.visible) .back-to-top {
                bottom: 132px;
            }
            .sticky-cta-bar { padding-bottom: env(safe-area-inset-bottom, 0); }
            .cookie-banner { padding-bottom: env(safe-area-inset-bottom, 0); }
            .faq-question { padding: 20px 24px; min-height: 56px; }
        }

        /* ── PREFERS-REDUCED-MOTION ── */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
            html { scroll-behavior: auto; }
            .fade-up {
                opacity: 1;
                transform: none;
                transition: none;
            }
            .hero::after { animation: none; }
            .hero-badge { animation: none; }
            .hero-scroll-indicator { animation: none; }
            .floating-phone { animation: none; }
            .testimonials-track { transition: none; }
            .chat-badge { animation: none; }
            .ba-sparkle { animation: none; }
            .section-reveal { opacity: 1; transform: none; transition: none; }
        }

        /* ── PRINT STYLESHEET ── */
        @media print {
            *,
            *::before,
            *::after {
                background: #fff !important;
                color: #000 !important;
                box-shadow: none !important;
                text-shadow: none !important;
            }
            .nav,
            .top-accent-bar,
            .sticky-cta-bar,
            .back-to-top,
            .cookie-banner,
            .floating-phone,
            .hero-scroll-indicator,
            .carousel-arrow,
            .carousel-dots,
            .lang-globe,
            .footer-social,
            .legal-modal-overlay,
            .skip-to-content,
            .chat-widget,
            .ba-input,
            .ba-divider,
            .ba-handle {
                display: none !important;
            }
            body {
                font-size: 12pt;
                line-height: 1.5;
                opacity: 1 !important;
            }
            .hero { padding-top: 24px !important; }
            .section { padding: 24px 0 !important; }
            .fade-up { opacity: 1 !important; transform: none !important; }
            a { text-decoration: underline; }
            a[href^="tel:"]::after { content: " (" attr(href) ")"; font-size: 0.85em; }
            a[href^="mailto:"]::after { content: " (" attr(href) ")"; font-size: 0.85em; }
            .service-detail { max-height: none !important; opacity: 1 !important; }
            .faq-answer { max-height: none !important; padding: 0 0 12px !important; }
            .contact-form { box-shadow: none !important; border: 1px solid #ccc !important; }
            .hero-inner,
            .services-grid,
            .why-grid,
            .zone-maps-container,
            .zone-covered-grid,
            .rse-grid,
            .contact-grid,
            .footer-grid {
                display: block !important;
            }
            .service-card,
            .why-item,
            .rse-card,
            .testimonial-card {
                page-break-inside: avoid;
                margin-bottom: 16px;
            }
            .testimonials-track {
                display: block !important;
                transform: none !important;
            }
            .testimonial-card {
                min-width: 100% !important;
                margin: 0 0 16px !important;
            }
            /* zone map print styles removed -- using SVG maps now */
            /* Print header with company details */
            body::before {
                content: "Atlantis Clean — 30 vieux chemin de Fleury, 92140 Clamart — Tel: 01 46 48 89 03 — contact@atlantis-clean.com";
                display: block;
                text-align: center;
                font-size: 10pt;
                padding: 8px 0 16px;
                border-bottom: 2px solid #000;
                margin-bottom: 16px;
                font-weight: bold;
            }
            .footer {
                border-top: 1px solid #000;
                padding: 12px 0 !important;
            }
            @page {
                margin: 2cm;
            }
        }

        /* ── QUOTE SIMULATOR ── */
        .quote-simulator {
            background: linear-gradient(135deg, #f0f7ff 0%, var(--bg-alt) 100%);
            padding: 90px 24px;
        }
        .quote-card {
            max-width: 800px;
            margin: 0 auto;
            background: #fff;
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
        }
        .quote-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 24px;
        }
        .quote-form-grid .form-group { margin-bottom: 0; }
        .quote-checkboxes {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 10px;
            margin-bottom: 24px;
        }
        .quote-checkboxes label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: var(--text);
            cursor: pointer;
            padding: 8px 12px;
            border-radius: 8px;
            border: 1px solid var(--border);
            transition: all 0.2s;
        }
        .quote-checkboxes label:hover {
            border-color: var(--accent);
            background: var(--accent-light);
        }
        .quote-checkboxes input[type="checkbox"] {
            accent-color: var(--primary);
            width: 16px;
            height: 16px;
        }
        .quote-checkboxes input[type="checkbox"]:checked + span {
            color: var(--primary);
            font-weight: 600;
        }
        .quote-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            align-items: center;
        }
        .quote-result {
            display: none;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            padding: 28px;
            border-radius: var(--radius);
            margin-top: 24px;
            text-align: center;
        }
        .quote-result.visible { display: block; }
        .quote-result .quote-price {
            font-size: 2rem;
            font-weight: 800;
            margin: 8px 0;
        }
        .quote-result .quote-note {
            font-size: 0.85rem;
            opacity: 0.85;
            margin-bottom: 16px;
        }
        .btn-white-outline {
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
            padding: 11px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            font-family: inherit;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-white-outline:hover {
            background: #fff;
            color: var(--primary);
        }

        /* ── RECRUITMENT ── */
        .recruitment-section {
            background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2d3d 100%);
            padding: 80px 24px;
            color: #fff;
        }
        .recruitment-inner {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }
        .recruitment-inner .overline {
            color: var(--accent);
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        .recruitment-inner .overline::before,
        .recruitment-inner .overline::after {
            content: '';
            width: 28px;
            height: 2px;
            background: var(--accent);
            border-radius: 1px;
        }
        .recruitment-inner h2 {
            font-size: clamp(1.6rem, 3vw, 2.25rem);
            font-weight: 800;
            margin-bottom: 14px;
        }
        .recruitment-inner > p {
            color: rgba(255,255,255,0.75);
            max-width: 600px;
            margin: 0 auto 40px;
            font-size: 1rem;
        }
        .recruitment-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 36px;
        }
        .recruitment-card {
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius);
            padding: 32px 24px;
            transition: all 0.3s;
        }
        .recruitment-card:hover {
            background: rgba(255,255,255,0.12);
            transform: translateY(-4px);
            border-color: var(--accent);
        }
        .recruitment-card .card-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(74,158,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            color: var(--accent);
        }
        .recruitment-card .card-icon svg { width: 26px; height: 26px; }
        .recruitment-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .recruitment-card p {
            font-size: 0.875rem;
            color: rgba(255,255,255,0.65);
            line-height: 1.6;
        }
        .btn-accent {
            background: var(--accent);
            color: #fff;
            padding: 13px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }
        .btn-accent:hover {
            background: #3a8eef;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(74,158,255,0.35);
        }

        /* ── STATS PARALLAX ── */
        .stats-counter-section {
            position: relative;
            overflow: hidden;
        }
        .stats-counter-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
            will-change: transform;
            z-index: 0;
        }
        /* ── NEWSLETTER ── */
        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 16px;
            max-width: 320px;
        }
        .newsletter-form input {
            flex: 1;
            padding: 10px 14px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 6px;
            background: rgba(255,255,255,0.08);
            color: #fff;
            font-size: 0.85rem;
            font-family: inherit;
            transition: border-color 0.2s;
        }
        .newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
        .newsletter-form input:focus {
            outline: none;
            border-color: var(--accent);
        }
        .newsletter-form button {
            padding: 10px 16px;
            border-radius: 6px;
            background: var(--accent);
            color: #fff;
            border: none;
            font-weight: 600;
            font-size: 0.82rem;
            cursor: pointer;
            font-family: inherit;
            transition: background 0.2s;
            white-space: nowrap;
        }
        .newsletter-form button:hover { background: #3a8eef; }

        @media (max-width: 768px) {
            .quote-form-grid { grid-template-columns: 1fr; }
            .quote-card { padding: 24px; }
            .recruitment-grid { grid-template-columns: 1fr; }
            .newsletter-form { max-width: 100%; }
        }

        /* ── AI CHAT WIDGET ── */
        .chat-widget {
            position: fixed;
            bottom: 32px;
            right: 88px;
            z-index: 9999;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        .chat-bubble {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(32,62,90,0.35);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }
        .chat-bubble:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 28px rgba(32,62,90,0.45);
        }
        .chat-bubble svg { width: 28px; height: 28px; }
        .chat-bubble .chat-close-icon { display: none; }
        .chat-bubble.active .chat-open-icon { display: none; }
        .chat-bubble.active .chat-close-icon { display: block; }
        .chat-badge {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #ef4444;
            border: 2px solid #fff;
            animation: chatBadgePulse 2s ease-in-out infinite;
        }
        .chat-bubble.active .chat-badge { display: none; }
        @keyframes chatBadgePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
        .chat-window {
            position: absolute;
            bottom: 72px;
            right: 0;
            width: 380px;
            max-height: 520px;
            background: #fff;
            border-radius: var(--radius);
            box-shadow: 0 12px 48px rgba(32,62,90,0.18), 0 0 0 1px rgba(32,62,90,0.06);
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(16px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }
        .chat-window.open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        .chat-header {
            background: var(--primary);
            color: #fff;
            padding: 14px 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .chat-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.18);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .chat-avatar svg { color: #fff; }
        .chat-header-info { flex: 1; }
        .chat-header-info .chat-name { font-weight: 700; font-size: 0.92rem; }
        .chat-header-info .chat-status {
            font-size: 0.73rem;
            opacity: 0.85;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .chat-status-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #4ade80;
            display: inline-block;
        }
        .chat-close-btn {
            background: rgba(255,255,255,0.15);
            border: none;
            color: #fff;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }
        .chat-close-btn:hover { background: rgba(255,255,255,0.3); }
        .chat-messages {
            flex: 1;
            overflow-y: auto;
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-height: 200px;
            max-height: 340px;
            scroll-behavior: smooth;
        }
        .chat-msg {
            max-width: 85%;
            padding: 10px 14px;
            font-size: 0.87rem;
            line-height: 1.55;
            word-wrap: break-word;
            animation: chatMsgFadeIn 0.3s ease-out;
        }
        @keyframes chatMsgFadeIn {
            from { opacity: 0; transform: translateY(6px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .chat-msg--bot {
            background: var(--bg-alt);
            color: var(--text);
            border-radius: 12px 12px 12px 4px;
            align-self: flex-start;
        }
        .chat-msg--user {
            background: var(--accent);
            color: #fff;
            border-radius: 12px 12px 4px 12px;
            align-self: flex-end;
        }
        .chat-msg--typing {
            background: var(--bg-alt);
            border-radius: 12px 12px 12px 4px;
            align-self: flex-start;
            padding: 12px 20px;
        }
        .chat-typing-dots {
            display: flex;
            gap: 4px;
            align-items: center;
        }
        .chat-typing-dots span {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--grey);
            animation: chatTypingBounce 1.4s ease-in-out infinite;
        }
        .chat-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
        .chat-typing-dots span:nth-child(3) { animation-delay: 0.4s; }
        @keyframes chatTypingBounce {
            0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
            30% { transform: translateY(-6px); opacity: 1; }
        }
        .chat-input-area {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 14px;
            border-top: 1px solid var(--border);
            background: #fff;
            flex-shrink: 0;
        }
        .chat-input {
            flex: 1;
            border: 1.5px solid var(--border);
            border-radius: 20px;
            padding: 10px 16px;
            font-size: 0.87rem;
            font-family: inherit;
            outline: none;
            transition: border-color 0.2s;
            background: #fafbfc;
        }
        .chat-input:focus { border-color: var(--accent); background: #fff; }
        .chat-input::placeholder { color: var(--grey); }
        .chat-send-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: var(--accent);
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, transform 0.2s;
            flex-shrink: 0;
        }
        .chat-send-btn:hover { background: var(--primary); transform: scale(1.05); }
        .chat-send-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

        @media (max-width: 768px) {
            .chat-widget { bottom: 72px; right: 16px; }
            .chat-window {
                width: calc(100vw - 32px);
                max-height: 70vh;
                right: -8px;
                bottom: 64px;
            }
            .chat-messages { max-height: calc(70vh - 140px); }
            .chat-bubble { width: 52px; height: 52px; }
        }

        /* ── BEFORE/AFTER SLIDER ── */
        .ba-section { padding: 90px 24px; background: linear-gradient(180deg, #fff 0%, #fafcff 50%, #fff 100%); }
        .ba-container {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            aspect-ratio: 16/9;
            user-select: none;
            -webkit-user-select: none;
            touch-action: pan-y;
        }
        .ba-side {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 12px;
        }
        .ba-before {
            background: linear-gradient(135deg, #5a5a5a, #8b8b8b, #b0b0b0, #8b8b8b);
            z-index: 1;
            clip-path: inset(0 50% 0 0);
        }
        .ba-after {
            background: linear-gradient(135deg, #1a365d, #2563eb, #60a5fa, #93c5fd);
            z-index: 0;
        }
        .ba-stain {
            position: absolute;
            background: rgba(0,0,0,0.12);
            border-radius: 50%;
            filter: blur(10px);
        }
        .ba-stain-1 { width: 120px; height: 80px; top: 18%; left: 12%; }
        .ba-stain-2 { width: 90px; height: 65px; bottom: 22%; right: 18%; }
        .ba-stain-3 { width: 70px; height: 50px; top: 55%; left: 40%; }
        .ba-sparkle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255,255,255,0.8);
            border-radius: 50%;
            animation: baSparkle 2s ease-in-out infinite;
        }
        .ba-sparkle:nth-child(2) { top: 20%; right: 25%; animation-delay: 0.4s; }
        .ba-sparkle:nth-child(3) { bottom: 30%; right: 35%; animation-delay: 0.8s; width: 3px; height: 3px; }
        .ba-sparkle:nth-child(4) { top: 45%; right: 15%; animation-delay: 1.2s; width: 5px; height: 5px; }
        @keyframes baSparkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.8); }
        }
        .ba-label {
            font-size: 1.4rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: rgba(255,255,255,0.9);
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
            pointer-events: none;
            z-index: 1;
        }
        .ba-before .ba-label { color: rgba(255,255,255,0.6); }
        .ba-sublabel {
            font-size: 0.8rem;
            font-weight: 600;
            color: rgba(255,255,255,0.6);
            letter-spacing: 2px;
            text-transform: uppercase;
            pointer-events: none;
            z-index: 1;
        }
        .ba-after .ba-sublabel { color: rgba(255,255,255,0.7); }
        .ba-divider {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            z-index: 3;
            width: 4px;
            background: #fff;
            transform: translateX(-50%);
            pointer-events: none;
            box-shadow: 0 0 12px rgba(0,0,0,0.25);
        }
        .ba-handle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 2px 12px rgba(0,0,0,0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 4;
            pointer-events: none;
            color: var(--primary);
        }
        .ba-handle svg { width: 22px; height: 22px; }
        .ba-input {
            position: absolute;
            inset: 0;
            z-index: 5;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: ew-resize;
            margin: 0;
            padding: 0;
            -webkit-appearance: none;
        }

        @media (max-width: 768px) {
            .ba-container { aspect-ratio: 4/3; }
            .ba-label { font-size: 1.1rem; letter-spacing: 3px; }
        }

        /* ── TRUST INDICATORS BAR ── */
        .trust-bar {
            background: linear-gradient(135deg, var(--bg-alt) 0%, #e8f1ff 100%);
            padding: 22px 24px;
            border-top: 1px solid var(--border);
        }
        .trust-bar-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-around;
            gap: 20px;
            flex-wrap: wrap;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--primary);
            white-space: nowrap;
        }
        .trust-item svg {
            width: 20px;
            height: 20px;
            color: var(--success);
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .trust-bar-inner {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 14px;
                justify-items: start;
            }
            .trust-item { font-size: 0.82rem; }
        }

        /* ── SVG MAP (old styles replaced by zone section above) ── */

        /* ── SECTORS GRID ── */
        .sectors-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .sector-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 32px 24px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
        }
        .sector-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .sector-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: var(--accent-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            color: var(--accent);
            transition: background 0.3s, color 0.3s;
        }
        .sector-card:hover .sector-icon {
            background: var(--accent);
            color: #fff;
        }
        .sector-icon svg { width: 26px; height: 26px; }
        .sector-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }
        .sector-card ul {
            list-style: none;
            padding: 0;
        }
        .sector-card ul li {
            font-size: 0.88rem;
            color: var(--text-light);
            line-height: 1.6;
            padding-left: 18px;
            position: relative;
            margin-bottom: 4px;
        }
        .sector-card ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 9px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
        }

        @media (max-width: 1024px) {
            .sectors-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .sectors-grid { grid-template-columns: 1fr; }
        }

        /* ── CERTIFICATIONS GRID ── */
        .certifications-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .cert-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 28px 20px;
            text-align: center;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .cert-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .cert-badge {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            color: #fff;
        }
        .cert-badge svg { width: 28px; height: 28px; }
        .cert-card h3 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }
        .cert-card p {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.5;
        }

        @media (max-width: 1024px) {
            .certifications-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .certifications-grid { grid-template-columns: 1fr; }
        }

        /* ── CTA URGENCY ── */
        .cta-urgency {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.82rem;
            color: rgba(255,255,255,0.85);
            margin-top: 8px;
            justify-content: center;
        }
        .cta-urgency svg { width: 14px; height: 14px; flex-shrink: 0; }

        /* ── WHATSAPP BUTTON ── */
        .btn-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #25d366;
            color: #fff;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.2s;
            border: none;
        }
        .btn-whatsapp:hover {
            background: #1da851;
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(37,211,102,0.3);
        }
        .btn-whatsapp svg { width: 18px; height: 18px; }

        /* ── SECTION SCROLL TRANSITIONS ── */
        .section-reveal {
            opacity: 1 !important;
            transform: none !important;
        }
        .section-reveal.revealed {
            opacity: 1 !important;
            transform: none !important;
        }

        /* ── TEXT SHADOWS ON WHITE TEXT OVER DARK ── */
        .cta-break-text, .recruitment-inner h2, .recruitment-card h3, .quote-result .quote-price { text-shadow: 0 1px 3px rgba(0,0,0,0.15); }
        .footer h4 { text-shadow: 0 1px 2px rgba(0,0,0,0.1); }
        .stats-counter-content .counter { text-shadow: 0 2px 4px rgba(0,0,0,0.15); }

        /* ── HERO WAVE DECORATION ── */
        .hero-wave-decoration {
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            z-index: 0;
            line-height: 0;
        }
        .hero-wave-decoration svg {
            display: block;
            width: 100%;
            height: 80px;
        }

        /* ── STATS COUNTER LAYOUT CLASSES ── */
        .stats-counter-section { color: #fff; padding: 48px 24px; }
        .stats-counter-content { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; justify-items: center; position: relative; z-index: 1; }
        .stats-counter-content .counter { font-size: 2.5rem; font-weight: 800; display: inline; }
        .counter-suffix { font-size: 2.5rem; font-weight: 800; margin-left: 6px; }
        .stats-counter-content .stat-label { font-size: 0.85rem; opacity: 1; margin-top: 4px; }

        /* ── METHOD SECTION CLASSES ── */
        .method-section { padding: 80px 24px; background: linear-gradient(180deg, #fff 0%, #fcfdff 50%, #fff 100%); }
        .method-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
        .method-header { margin-bottom: 48px; }
        .method-overline { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; justify-content: center; gap: 12px; }
        .method-overline::before, .method-overline::after { content: ''; width: 28px; height: 2px; background: var(--accent); border-radius: 1px; }
        .method-title { font-size: clamp(1.6rem, 3vw, 2rem); color: var(--dark); font-weight: 800; }
        .method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
        .method-step { text-align: center; }
        .method-step-number { width: 56px; height: 56px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 700; margin: 0 auto 12px; }
        .method-step h3 { font-size: 1rem; color: var(--dark); margin-bottom: 6px; font-weight: 700; }
        .method-step p { font-size: 0.88rem; color: var(--text-light); }

        /* ── FOOTER LOGO OVERRIDES ── */
        .footer-logo .nav-brand-name, .footer-logo-name { color: #fff; }
        .footer-logo .nav-brand-sub, .footer-logo-sub { color: rgba(255,255,255,0.6); }
        .footer-cert-placeholder { opacity: 0.5; }
        .footer-extra-heading { margin-top: 24px; }

        /* ── MOBILE: METHOD AND STATS RESPONSIVE ── */
        @media (max-width: 768px) {
            .method-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
            .stats-counter-content { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 480px) {
            .method-grid { grid-template-columns: 1fr; }
            .stats-counter-content { grid-template-columns: repeat(2, 1fr); }
            .service-card p, .rse-card p, .sector-card ul li, .why-item p, .cert-card p, .testimonial-text, .faq-answer p { font-size: 0.88rem; }
            .service-card h3, .rse-card h3, .sector-card h3, .cert-card h3, .recruitment-card h3 { font-size: 1rem; }
            .overline, .section-header .overline { font-size: 0.78rem; }
            .badge-label { font-size: 0.75rem; }
            .method-step p { font-size: 0.88rem; }
        }

        /* ── BLOG SECTION ── */
        .blog-section { padding: 80px 24px; background: var(--bg-alt); }
        .blog-section .section-header { text-align: center; margin-bottom: 48px; }
        .blog-section .section-header .overline {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 0.85rem; font-weight: 600; color: var(--primary);
            letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
        }
        .blog-section .section-header h2 { font-size: 2rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
        .blog-section .section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
        .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1200px; margin: 0 auto; }
        .blog-card {
            background: var(--bg); border-radius: var(--radius); overflow: hidden;
            border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s;
        }
        .blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
        .blog-card-img {
            height: 180px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3);
        }
        .blog-card-body { padding: 24px; }
        .blog-card-date { font-size: 0.8rem; color: var(--text-light); margin-bottom: 8px; }
        .blog-card-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
        .blog-card-body h3 a { text-decoration: none; color: inherit; transition: color 0.2s; }
        .blog-card-body h3 a:hover { color: var(--primary); }
        .blog-card-body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
        .blog-card-link {
            display: inline-flex; align-items: center; gap: 6px;
            font-size: 0.9rem; font-weight: 600; color: var(--primary);
            text-decoration: none; transition: gap 0.2s;
        }
        .blog-card-link:hover { gap: 10px; }
        .blog-see-all {
            text-align: center; margin-top: 40px;
        }
        .blog-see-all a {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 13px 28px; border-radius: 8px; font-weight: 600;
            font-size: 0.95rem; text-decoration: none;
            background: var(--primary); color: #fff;
            transition: all 0.2s;
        }
        .blog-see-all a:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(32,62,90,0.25); }
        @media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; max-width: 500px; } .blog-section .section-header h2 { font-size: 1.5rem; } }

/* ── BLOG CARD IMAGES ── */
.blog-card-image { height: 220px; overflow: hidden; background: var(--accent-light); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius) var(--radius) 0 0; }
.blog-card:hover .blog-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius) var(--radius) 0 0; }

/* ── BLOG HERO IMAGE ── */
.blog-hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin: 24px 0;
    display: block;
    box-shadow: var(--shadow-lg);
}

/* ── BLOG INDEX CARD ENHANCEMENTS ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.blog-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-body h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.blog-card-date {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
    margin-top: auto;
}
.blog-card-link:hover {
    gap: 10px;
    color: var(--primary);
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        padding: 0 16px;
    }
}



/* ══════════════════════════════════════════
   PREMIUM ZONE MAP SECTION
   Stripe/Linear/Vercel inspired
   ══════════════════════════════════════════ */
.zone-premium {
    background: linear-gradient(160deg, #0a1628 0%, #0f1f3a 40%, #162d4a 100%);
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}
.zone-premium::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74,158,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.zone-premium-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.zone-premium-header { text-align: center; margin-bottom: 56px; }
.zone-premium-overline {
    font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 3px; color: #4a9eff; margin-bottom: 12px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
}
.zone-premium-overline::before, .zone-premium-overline::after {
    content: ''; width: 28px; height: 2px; background: #4a9eff; border-radius: 1px;
}
.zone-premium-title { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; color: #fff; margin-bottom: 14px; }
.zone-premium-subtitle { font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 580px; margin: 0 auto; }
.zone-premium-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.zone-map-canvas {
    position: relative; border-radius: 16px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    padding: 24px; overflow: hidden;
}
.zone-map-canvas canvas { display: block; width: 100%; height: auto; }
.zone-map-tooltip {
    position: absolute; background: rgba(255,255,255,0.95); color: #0f1a2e;
    padding: 8px 16px; border-radius: 8px; font-size: 0.82rem; font-weight: 600;
    pointer-events: none; opacity: 0; transition: opacity 0.15s; white-space: nowrap;
    z-index: 10; box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.zone-map-tooltip.visible { opacity: 1; }
.zone-hq-marker, .zone-lyon-marker { position: absolute; pointer-events: none; z-index: 5; }
.zone-hq-pulse, .zone-lyon-pulse {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 40px; height: 40px; border-radius: 50%; border: 2px solid #4a9eff;
    animation: zonePulse 2s ease-out infinite;
}
@keyframes zonePulse {
    0% { width: 12px; height: 12px; opacity: 1; }
    100% { width: 48px; height: 48px; opacity: 0; }
}
.zone-hq-dot, .zone-lyon-dot {
    width: 12px; height: 12px; border-radius: 50%; background: #4a9eff;
    box-shadow: 0 0 16px rgba(74,158,255,0.6), 0 0 32px rgba(74,158,255,0.3);
    position: relative;
}
.zone-lyon-dot { background: #60a5fa; box-shadow: 0 0 16px rgba(96,165,250,0.6); }
.zone-lyon-pulse { border-color: #60a5fa; }
.zone-hq-label, .zone-lyon-label {
    position: absolute; top: -28px; left: 50%; transform: translateX(-50%);
    white-space: nowrap; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.5px; color: #4a9eff; text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.zone-lyon-label { color: #60a5fa; }
.zone-map-legend {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 6;
}
.zone-view-btn {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6); padding: 8px 16px; border-radius: 20px;
    font-size: 0.78rem; font-weight: 600; cursor: pointer; font-family: inherit;
    display: flex; align-items: center; gap: 6px; transition: all 0.25s;
    backdrop-filter: blur(8px);
}
.zone-view-btn:hover { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.zone-view-btn.active { background: rgba(74,158,255,0.2); border-color: rgba(74,158,255,0.4); color: #4a9eff; }
.zone-info-panel { display: flex; flex-direction: column; gap: 24px; }
.zone-info-block {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; padding: 24px; transition: border-color 0.3s;
}
.zone-info-block:hover { border-color: rgba(74,158,255,0.2); }
.zone-info-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.zone-info-icon-idf { background: rgba(74,158,255,0.15); color: #4a9eff; }
.zone-info-icon-lyon { background: rgba(96,165,250,0.15); color: #60a5fa; }
.zone-info-block h3 { color: #fff !important; font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; }
.zone-dept-count { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.4) !important; margin-left: 8px; }
.zone-chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.zone-chip-premium {
    padding: 5px 12px; border-radius: 16px; font-size: 0.78rem; font-weight: 500;
    background: rgba(74,158,255,0.1); color: rgba(255,255,255,0.7) !important;
    border: 1px solid rgba(74,158,255,0.15); transition: all 0.2s;
}
.zone-chip-premium:hover { background: rgba(74,158,255,0.18); color: #fff !important; }
.zone-chip-hq-premium { background: rgba(74,158,255,0.25); color: #4a9eff !important; border-color: rgba(74,158,255,0.4); font-weight: 700; }
.zone-chip-lyon-premium { background: rgba(96,165,250,0.1); border-color: rgba(96,165,250,0.15); }
.zone-info-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.zone-stat {
    text-align: center; padding: 20px 12px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px;
}
.zone-stat-num { display: block; font-size: 1.5rem; font-weight: 800; color: #4a9eff !important; line-height: 1; margin-bottom: 6px; }
.zone-stat-label { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.45) !important; text-transform: uppercase; letter-spacing: 0.5px; }
@media (max-width: 1024px) { .zone-premium-content { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
    .zone-premium { padding: 60px 16px; }
    .zone-info-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .zone-stat { padding: 14px 8px; }
    .zone-stat-num { font-size: 1.2rem; }
    .zone-map-canvas { padding: 12px; }
}

/* OVERRIDE: Force mega dropdown active state */
.mega-dropdown.active,
nav .mega-dropdown.active,
#nav .mega-dropdown.active {
    display: block !important;
}

/* OVERRIDE: All content always visible */
.fade-up,
.section-header,
.service-card,
.section-inner,
.stats-counter-content > div,
section > * {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* ════════════════════════════════════════════════════════════════
   MISSING HERO AND SECTION STYLES
   ════════════════════════════════════════════════════════════════ */

/* Hero text container */
.hero-text {
    position: relative;
    z-index: 1;
}

/* Service/blog hero section */
.hero-svc {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-svc::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.hero-svc h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.hero-svc p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Service page hero banner */
.hero-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.hero-banner h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.hero-banner .breadcrumb {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.8);
}
.hero-banner .breadcrumb a {
    color: rgba(255,255,255,0.9);
}

/* Wrapper for centered content */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ════════════════════════════════════════════════════════════════
   DEVIS PAGE STYLES
   ════════════════════════════════════════════════════════════════ */

/* Hero section for devis */
.devis-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 24px;
    text-align: center;
}
.devis-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}
.devis-breadcrumb {
    display: inline-block;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}
.devis-breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.2s;
}
.devis-breadcrumb a:hover {
    color: #fff;
}
.devis-hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}
.devis-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main devis section */
.devis-section {
    padding: 80px 24px;
    background: var(--bg);
}
.devis-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
}
@media (max-width: 1024px) {
    .devis-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Form styles */
.devis-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow);
}
.devis-form h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 32px;
}
.devis-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
@media (max-width: 640px) {
    .devis-row {
        grid-template-columns: 1fr;
    }
}

.devis-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}
.devis-field label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.devis-field input,
.devis-field select,
.devis-field textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.devis-field input:focus,
.devis-field select:focus,
.devis-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(32,62,90,0.1);
}
.devis-field textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkboxes */
.devis-checkboxes {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}
.devis-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text);
}
.devis-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
}
.devis-checkbox span {
    user-select: none;
}

/* Submit button & success overlay */
.btn-submit {
    width: 100%;
    padding: 14px 24px;
    margin-top: 16px;
    font-size: 1rem;
    font-weight: 600;
}

.form-success {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.form-success.show {
    display: flex;
}
.form-success > div {
    background: #fff;
    border-radius: var(--radius);
    padding: 48px 40px;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.success-icon {
    width: 80px;
    height: 80px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--success);
}
.success-icon svg {
    width: 44px;
    height: 44px;
    stroke-width: 2.5;
}
.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}
.form-success p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Sidebar */
.devis-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.devis-info-card,
.devis-contact-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}
.devis-info-card h3,
.devis-contact-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.devis-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.devis-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.5;
}
.devis-info-list li:last-child {
    margin-bottom: 0;
}
.devis-info-list svg {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.devis-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.devis-contact-item:last-child {
    margin-bottom: 0;
}
.devis-contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.devis-contact-item strong {
    display: block;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 4px;
}
.devis-contact-item a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}
.devis-contact-item a:hover {
    color: var(--accent);
}
.devis-contact-item span {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .devis-form {
        padding: 32px 20px;
    }
    .devis-section {
        padding: 48px 16px;
    }
}

/* ──────────────────────────────────────────────────────────────────────────── */
/* FEEDBACK WIDGET — Floating Edit/Pencil Button + Panel */
/* ──────────────────────────────────────────────────────────────────────────── */

.feedback-widget {
    --feedback-primary: #203E5A;
    --feedback-accent: #4a9eff;
    --feedback-success: #10b981;
}

.feedback-bubble {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--feedback-primary);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(32, 62, 90, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    padding: 0;
}

.feedback-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(32, 62, 90, 0.4);
}

.feedback-bubble:active {
    transform: scale(0.95);
}

.feedback-bubble svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.feedback-panel {
    position: fixed;
    bottom: 100px;
    left: 24px;
    width: 360px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 998;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.feedback-panel.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.feedback-header {
    padding: 20px;
    background: var(--feedback-primary);
    color: white;
    border-bottom: 2px solid var(--feedback-accent);
}

.feedback-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.feedback-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

.feedback-form {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.feedback-form-group {
    margin-bottom: 16px;
}

.feedback-form-group:last-child {
    margin-bottom: 0;
}

.feedback-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--feedback-primary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feedback-label.required::after {
    content: ' *';
    color: #ef4444;
}

.feedback-input,
.feedback-textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 10px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1f2937;
    background: #f9fafb;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.feedback-input:focus,
.feedback-textarea:focus {
    outline: none;
    border-color: var(--feedback-accent);
    background: white;
    box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.1);
}

.feedback-textarea {
    resize: vertical;
    min-height: 80px;
    max-height: 120px;
    font-size: 13px;
}

.feedback-radios {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.feedback-radio {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.feedback-radio input[type="radio"] {
    margin: 0;
    cursor: pointer;
    accent-color: var(--feedback-accent);
}

.feedback-radio label {
    margin: 0;
    cursor: pointer;
    font-size: 13px;
    color: #374151;
}

.feedback-submit {
    width: 100%;
    padding: 12px;
    background: var(--feedback-accent);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.feedback-submit:hover {
    background: #3388dd;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.3);
}

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

.feedback-submit.loading {
    opacity: 0.7;
    pointer-events: none;
}

.feedback-success {
    padding: 20px;
    background: #ecfdf5;
    border-left: 4px solid var(--feedback-success);
    text-align: center;
    color: #065f46;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.feedback-success svg {
    width: 24px;
    height: 24px;
    color: var(--feedback-success);
    margin-bottom: 8px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .feedback-bubble {
        bottom: 20px;
        left: 20px;
        width: 48px;
        height: 48px;
    }

    .feedback-panel {
        bottom: 80px;
        left: 16px;
        right: 16px;
        width: auto;
        max-width: calc(100vw - 32px);
    }

    .feedback-form {
        max-height: calc(90vh - 140px);
    }
}

        .nav-phone-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--accent);
            color: #fff;
            transition: background 0.3s, transform 0.2s;
        }
        .nav-phone-icon:hover { background: var(--primary); transform: scale(1.08); }
        .nav-phone-icon svg { flex-shrink: 0; }

/* ── Blog Article (magazine layout) ── */
.blog-article { max-width: 780px; margin: 0 auto; padding: 0 24px 80px; }
.blog-article-hero { padding: 40px 0 32px; }
.blog-article-hero .breadcrumb { margin-bottom: 20px; font-size: 0.85rem; color: #8F9DA8; }
.blog-article-hero .breadcrumb a { color: #8F9DA8; text-decoration: none; }
.blog-article-hero .breadcrumb a:hover { color: var(--accent); }
.blog-article-hero .breadcrumb .sep { margin: 0 8px; }
.blog-article-hero h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; color: #0f172a; line-height: 1.25; margin-bottom: 16px; }
.blog-article-meta { display: flex; flex-wrap: wrap; gap: 20px; font-size: 0.85rem; color: #8F9DA8; margin-bottom: 24px; }
.blog-article-hero-img { width: 100%; max-height: 420px; object-fit: cover; border-radius: 12px; }
.blog-article-content { font-size: 1.05rem; line-height: 1.85; color: #334155; }
.blog-article-content h2 { font-size: 1.4rem; font-weight: 700; color: #0f172a; margin: 48px 0 16px; padding-top: 12px; }
.blog-article-content h3 { font-size: 1.15rem; font-weight: 600; color: #0f172a; margin: 32px 0 12px; }
.blog-article-content p { margin-bottom: 20px; }
.blog-article-content .lead { font-size: 1.15rem; color: #475569; line-height: 1.8; margin-bottom: 32px; border-left: 3px solid #4a9eff; padding-left: 20px; }
.blog-article-content ul, .blog-article-content ol { margin: 16px 0 24px 24px; }
.blog-article-content li { margin-bottom: 8px; }
.blog-article-content a { color: var(--accent); text-decoration: underline; }
.blog-article-content a:hover { color: var(--primary); }
.blog-article-content table { width: 100%; border-collapse: collapse; margin: 24px 0 32px; font-size: 0.95rem; }
.blog-article-content th { background: #f1f5f9; color: #0f172a; font-weight: 600; padding: 12px 16px; text-align: left; border-bottom: 2px solid #e2e8f0; }
.blog-article-content td { padding: 10px 16px; border-bottom: 1px solid #e2e8f0; }
.blog-article-content tr:hover td { background: #f8fafc; }
.blog-highlight { background: #f8fafc; border-radius: 12px; padding: 24px 28px; margin: 32px 0; border-left: 4px solid #4a9eff; }
.blog-highlight p { margin: 0; font-weight: 500; color: #203E5A; }
.blog-cta-box { background: linear-gradient(135deg, #203E5A, #2a5278); border-radius: 16px; padding: 40px; text-align: center; margin: 48px 0 0; color: #fff; }
.blog-cta-box h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; color: #fff; }
.blog-cta-box p { opacity: 0.85; margin-bottom: 20px; }
.blog-cta-box .cta-phone { display: block; font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 16px; text-decoration: none; }
.blog-cta-box .cta-phone:hover { opacity: 0.9; }
.blog-cta-box a.btn { background: #4a9eff; color: #fff; padding: 12px 32px; border-radius: 8px; text-decoration: none; font-weight: 600; display: inline-block; }
.blog-cta-box a.btn:hover { background: #3b8de6; }

        /* Service page icon sizing */
        .task-icon { width: 32px; height: 32px; flex-shrink: 0; color: var(--accent); }
        .task-icon svg { width: 32px !important; height: 32px !important; max-width: 32px !important; }
        .task-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
        .benefit-icon { width: 48px; height: 48px; flex-shrink: 0; color: var(--primary); margin-bottom: 12px; }
        .benefit-icon svg { width: 48px !important; height: 48px !important; max-width: 48px !important; }

/* ════════════════════════════════════════════════════════════════
   SERVICE PAGES — Shared component styles
   ════════════════════════════════════════════════════════════════ */

/* Container */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Hero for service pages */
.hero-service {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-service::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.hero-service h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.hero-service p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.hero-service .breadcrumb {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
}
.hero-service .breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}
.hero-service .breadcrumb a:hover {
    color: #fff;
}

/* Description text */
.desc-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text);
    font-size: 1.05rem;
}
.desc-text h2 {
    text-align: center;
    margin-bottom: 24px;
    color: var(--dark);
}

/* Tasks grid */
.tasks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.task-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}
.task-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.task-card .task-icon {
    width: 40px;
    height: 40px;
    color: var(--accent);
    margin-bottom: 16px;
}
.task-card .task-icon svg {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
}
.task-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.task-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .tasks-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .tasks-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Process steps */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 32px;
    text-align: center;
}
.step {
    position: relative;
}
.step .step-num {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 16px;
}
.step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.step p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
    .steps { grid-template-columns: 1fr; }
}

/* Benefits grid */
.benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.benefit {
    text-align: center;
}
.benefit .benefit-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
    margin: 0 auto 16px;
}
.benefit .benefit-icon svg {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
}
.benefit h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.benefit p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .benefits { grid-template-columns: 1fr; }
}

/* FAQ accordion (service pages) */
.faq-list .faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-list .faq-item:hover {
    box-shadow: var(--shadow);
}
.faq-q {
    padding: 20px 48px 20px 24px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
    user-select: none;
}
.faq-q::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-light);
    transition: transform 0.3s;
}
.faq-item.open .faq-q::after {
    content: '-';
}
.faq-q:hover {
    color: var(--primary);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}
.faq-item.open .faq-a {
    max-height: 500px;
    padding: 0 24px 20px;
}
.faq-a p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

/* Other services links */
.services-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.services-links a {
    display: block;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
}
.services-links a:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
@media (max-width: 768px) {
    .services-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .services-links { grid-template-columns: 1fr; }
}

/* Other services section heading */
.other-services h2 {
    text-align: center;
}

        /* Global SVG icon size constraint */
        .task-icon svg, .benefit-icon svg, .icon svg, .card .icon svg,
        .step-num svg, .why-icon svg { max-width: 48px !important; max-height: 48px !important; }

/* ══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVENESS FIX — Comprehensive audit patch
   Breakpoints: 320px, 375px, 768px, 1024px
   ══════════════════════════════════════════════════════════════ */

/* ── GLOBAL: Prevent horizontal scroll & image overflow ── */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}
img, video, iframe, canvas, svg {
    max-width: 100%;
    height: auto;
}
table {
    overflow-x: auto;
    display: block;
    max-width: 100%;
}
/* Re-apply table layout inside wrappers */
.table-wrap table {
    display: table;
}

/* ── GLOBAL: Minimum touch target sizes ── */
a, button, input[type="submit"], input[type="button"], .btn, .nav-link, .faq-question, .carousel-arrow, .carousel-dot {
    min-height: 44px;
    min-width: 44px;
}
/* Exempt inline links from min-width */
p a, li a, span a, .breadcrumb a, .footer-links a, .blog-card-link, .service-card-link {
    min-width: unset;
    min-height: unset;
}

/* ── BLOG ARTICLE: Table overflow fix ── */
.blog-article-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

/* ══════════════════════════════════════════════
   BREAKPOINT: 1024px (tablet landscape)
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .zone-premium-content {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .devis-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .mega-dropdown-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 24px;
    }
    .mega-link-list,
    .mega-links-col ul {
        columns: 1;
    }
}

/* ══════════════════════════════════════════════
   BREAKPOINT: 768px (tablet portrait / large phone)
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Nav adjustments */
    .nav-inner {
        height: 60px;
        padding: 0 16px;
    }
    .nav-logo img {
        height: 34px;
    }
    .nav-brand-name {
        font-size: 1rem;
    }
    .nav-brand-sub {
        font-size: 0.5rem;
    }

    /* Hero service pages: account for fixed nav */
    .hero-service,
    .hero-svc,
    .hero-banner,
    .devis-hero {
        padding: 100px 16px 48px;
    }
    .hero-service h1,
    .hero-svc h1,
    .hero-banner h1,
    .devis-hero h1 {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }
    .hero-service p,
    .hero-svc p,
    .devis-hero p {
        font-size: 0.95rem;
    }

    /* Homepage hero */
    .hero {
        padding: 100px 16px 48px;
    }
    .hero h1 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    /* Sections padding */
    .section {
        padding: 48px 16px;
    }

    /* CTA break bar */
    .cta-break {
        padding: 32px 16px;
    }
    .cta-break-text {
        font-size: 1rem;
        text-align: center;
    }

    /* Stats counter */
    .stats-counter-section {
        padding: 40px 16px;
    }
    .stats-counter-content .counter {
        font-size: 1.8rem;
    }
    .counter-suffix {
        font-size: 1.8rem;
    }

    /* Quote simulator */
    .quote-simulator {
        padding: 48px 16px;
    }
    .quote-card {
        padding: 24px 16px;
    }

    /* Recruitment */
    .recruitment-section {
        padding: 48px 16px;
    }

    /* Zone premium */
    .zone-premium {
        padding: 48px 16px;
    }
    .zone-info-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .zone-stat {
        padding: 12px 6px;
    }
    .zone-stat-num {
        font-size: 1.1rem;
    }

    /* Before/after slider */
    .ba-section {
        padding: 48px 16px;
    }

    /* Contact form */
    .contact-form {
        padding: 24px 16px;
    }

    /* Blog section */
    .blog-section {
        padding: 48px 16px;
    }

    /* Blog article */
    .blog-article {
        padding: 0 16px 48px;
    }
    .blog-article-hero h1 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }
    .blog-article-content {
        font-size: 0.95rem;
    }
    .blog-article-content h2 {
        font-size: 1.2rem;
        margin: 32px 0 12px;
    }
    .blog-article-content h3 {
        font-size: 1.05rem;
    }
    .blog-article-content .lead {
        font-size: 1rem;
    }
    .blog-cta-box {
        padding: 28px 20px;
    }
    .blog-cta-box h3 {
        font-size: 1.1rem;
    }

    /* Footer */
    .footer {
        padding: 40px 16px 20px;
    }
    .footer h4 {
        margin-bottom: 12px;
    }

    /* Devis page */
    .devis-form {
        padding: 28px 16px;
    }
    .devis-section {
        padding: 48px 16px;
    }

    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Service page tasks */
    .tasks-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .task-card {
        padding: 20px 16px;
    }

    /* Steps */
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Benefits */
    .benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Services links */
    .services-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Method */
    .method-section {
        padding: 48px 16px;
    }
    .method-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Why grid already handled, ensure it works */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .why-icon {
        width: 64px;
        height: 64px;
    }

    /* Chat widget positioning */
    .chat-widget {
        bottom: 68px;
        right: 12px;
    }
    .chat-window {
        width: calc(100vw - 24px);
        right: -4px;
        bottom: 60px;
    }

    /* Cookie banner */
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 14px 16px;
    }

    /* Feedback widget */
    .feedback-bubble {
        bottom: 68px;
    }

    /* Floating phone button */
    .floating-phone {
        display: none;
    }

    /* Trust bar */
    .trust-bar {
        padding: 16px;
    }
}

/* ══════════════════════════════════════════════
   BREAKPOINT: 480px (small phones)
   ══════════════════════════════════════════════ */
@media (max-width: 480px) {
    /* Hero */
    .hero {
        padding: 90px 12px 40px;
    }
    .hero h1 {
        font-size: 1.5rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-phone-cta {
        justify-content: center;
        width: 100%;
    }

    /* Hero stats */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .stat-card {
        padding: 16px 10px;
    }
    .stat-card .number {
        font-size: 1.4rem;
    }
    .stat-card .label {
        font-size: 0.75rem;
    }

    /* Section header */
    .section-header h2 {
        font-size: 1.3rem;
    }
    .section-header p {
        font-size: 0.88rem;
    }

    /* Service hero pages */
    .hero-service,
    .hero-svc,
    .hero-banner,
    .devis-hero {
        padding: 88px 12px 36px;
    }
    .hero-service h1,
    .hero-svc h1,
    .hero-banner h1,
    .devis-hero h1 {
        font-size: 1.3rem;
    }

    /* Nav */
    .nav-inner {
        padding: 0 12px;
    }
    .nav-logo {
        margin-right: 12px;
    }
    .nav-brand-sub {
        display: none;
    }

    /* Services grid */
    .service-card {
        padding: 20px 16px;
        min-height: auto;
    }

    /* Why grid */
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-icon {
        width: 60px;
        height: 60px;
    }
    .why-item {
        padding: 16px 12px;
    }

    /* RSE */
    .rse-card {
        padding: 24px 16px;
    }

    /* Stats counter */
    .stats-counter-content {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .stats-counter-content .counter {
        font-size: 1.5rem;
    }
    .counter-suffix {
        font-size: 1.5rem;
    }
    .stats-counter-content .stat-label {
        font-size: 0.78rem;
    }

    /* Steps */
    .steps {
        grid-template-columns: 1fr;
    }

    /* Benefits */
    .benefits {
        grid-template-columns: 1fr;
    }

    /* Method */
    .method-grid {
        grid-template-columns: 1fr;
    }

    /* Recruitment */
    .recruitment-grid {
        grid-template-columns: 1fr;
    }
    .recruitment-card {
        padding: 24px 16px;
    }

    /* Contact */
    .contact-form {
        padding: 20px 12px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Quote */
    .quote-form-grid {
        grid-template-columns: 1fr;
    }
    .quote-checkboxes {
        grid-template-columns: 1fr;
    }
    .quote-actions {
        flex-direction: column;
    }
    .quote-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Certifications */
    .certifications-grid {
        grid-template-columns: 1fr;
    }

    /* Sectors */
    .sectors-grid {
        grid-template-columns: 1fr;
    }

    /* Services links */
    .services-links {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq-question {
        padding: 16px;
        font-size: 0.92rem;
    }
    .faq-answer {
        padding: 0 16px;
    }
    .faq-item.open .faq-answer {
        padding: 0 16px 16px;
    }
    .faq-q {
        padding: 16px 40px 16px 16px;
        font-size: 0.92rem;
    }
    .faq-a {
        padding: 0 16px;
    }
    .faq-item.open .faq-a {
        padding: 0 16px 16px;
    }

    /* Badges */
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Blog */
    .blog-grid {
        padding: 0 12px;
    }
    .blog-card-image {
        height: 160px;
    }
    .blog-card-body {
        padding: 16px;
    }
    .blog-card-body h3,
    .blog-card-body h2 {
        font-size: 1rem;
    }

    /* Blog article */
    .blog-article {
        padding: 0 12px 36px;
    }
    .blog-article-hero h1 {
        font-size: 1.3rem;
    }
    .blog-article-meta {
        gap: 10px;
        font-size: 0.78rem;
    }
    .blog-article-content {
        font-size: 0.9rem;
    }
    .blog-highlight {
        padding: 16px 20px;
        margin: 24px 0;
    }

    /* Devis */
    .devis-form {
        padding: 20px 12px;
    }
    .devis-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer {
        padding: 32px 12px 20px;
    }
    .footer-brand p {
        font-size: 0.82rem;
    }
    .footer-bottom {
        font-size: 0.75rem;
    }
    .newsletter-form {
        flex-direction: column;
    }

    /* CTA break */
    .cta-break-text {
        font-size: 0.95rem;
    }
    .cta-break-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cta-break .btn-white {
        width: 100%;
        justify-content: center;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 24px 16px;
    }
    .testimonial-text {
        font-size: 0.88rem;
    }

    /* Back to top */
    .back-to-top {
        right: 16px;
        bottom: 68px;
        width: 40px;
        height: 40px;
    }

    /* Zone premium */
    .zone-premium {
        padding: 40px 12px;
    }
    .zone-premium-title {
        font-size: 1.3rem;
    }
    .zone-info-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    .zone-stat {
        padding: 10px 4px;
    }
    .zone-stat-num {
        font-size: 1rem;
    }
    .zone-stat-label {
        font-size: 0.65rem;
    }
    .zone-chip-premium {
        font-size: 0.72rem;
        padding: 4px 10px;
    }

    /* Mobile nav overlay */
    .mobile-nav-overlay {
        top: 60px;
        height: calc(100vh - 60px);
    }
    .mobile-nav-toggle-item {
        font-size: 1.2rem;
        padding: 14px 0;
    }
    .mobile-nav-direct {
        font-size: 1.2rem;
        padding: 14px 0;
    }
    .mobile-nav-sub li a {
        font-size: 0.82rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Trust bar */
    .trust-bar-inner {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .trust-item {
        font-size: 0.78rem;
    }

    /* Sticky CTA bar */
    .sticky-cta-bar {
        padding: 8px 12px;
    }
    .sticky-cta-bar a {
        font-size: 0.82rem;
    }
}

/* ══════════════════════════════════════════════
   BREAKPOINT: 375px (iPhone SE, small phones)
   ══════════════════════════════════════════════ */
@media (max-width: 375px) {
    .hero {
        padding: 84px 10px 36px;
    }
    .hero h1 {
        font-size: 1.3rem;
    }
    .hero p {
        font-size: 0.85rem;
    }
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .hero-service,
    .hero-svc,
    .hero-banner,
    .devis-hero {
        padding: 84px 10px 32px;
    }
    .hero-service h1,
    .hero-svc h1,
    .hero-banner h1,
    .devis-hero h1 {
        font-size: 1.2rem;
    }

    .section {
        padding: 36px 10px;
    }
    .section-header h2 {
        font-size: 1.2rem;
    }

    .stat-card .number {
        font-size: 1.2rem;
    }
    .stat-card .label {
        font-size: 0.7rem;
    }

    .btn {
        padding: 11px 18px;
        font-size: 0.88rem;
    }

    .nav-inner {
        height: 56px;
        padding: 0 10px;
    }
    .nav-logo img {
        height: 28px;
    }
    .nav-brand-name {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .service-card {
        padding: 16px 12px;
    }
    .service-card h3 {
        font-size: 0.95rem;
    }
    .service-card p {
        font-size: 0.82rem;
    }

    .footer-grid {
        gap: 20px;
    }

    .mobile-nav-inner {
        padding: 24px 16px;
    }
    .mobile-nav-cta {
        font-size: 0.72rem;
        padding: 12px 16px;
    }

    .zone-premium-title {
        font-size: 1.15rem;
    }
    .zone-premium-subtitle {
        font-size: 0.85rem;
    }

    .blog-article-hero h1 {
        font-size: 1.15rem;
    }
}

/* ══════════════════════════════════════════════
   BREAKPOINT: 320px (very small screens)
   ══════════════════════════════════════════════ */
@media (max-width: 320px) {
    .hero {
        padding: 80px 8px 32px;
    }
    .hero h1 {
        font-size: 1.15rem;
    }
    .hero p {
        font-size: 0.82rem;
    }

    .hero-service,
    .hero-svc,
    .hero-banner,
    .devis-hero {
        padding: 80px 8px 28px;
    }

    .nav-inner {
        height: 52px;
        padding: 0 8px;
    }
    .nav-logo img {
        height: 24px;
    }
    .nav-brand-name {
        font-size: 0.82rem;
    }
    .nav-toggle {
        width: 38px;
        height: 38px;
    }

    .section {
        padding: 32px 8px;
    }
    .section-header h2 {
        font-size: 1.1rem;
    }
    .section-header .overline {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    .section-header .overline::before,
    .section-header .overline::after {
        width: 16px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    .stat-card {
        padding: 12px 8px;
    }
    .stat-card .number {
        font-size: 1.1rem;
    }
    .stat-card .label {
        font-size: 0.65rem;
    }

    .service-card {
        padding: 14px 10px;
    }

    .why-item p,
    .rse-card p,
    .cert-card p,
    .recruitment-card p {
        font-size: 0.8rem;
    }

    .btn {
        padding: 10px 14px;
        font-size: 0.82rem;
    }

    .contact-form {
        padding: 16px 10px;
    }
    .devis-form {
        padding: 16px 10px;
    }

    .blog-card-image {
        height: 140px;
    }
    .blog-card-body {
        padding: 14px 12px;
    }

    .footer {
        padding: 28px 8px 16px;
    }

    .zone-premium {
        padding: 32px 8px;
    }
    .zone-map-canvas {
        padding: 8px;
    }
    .zone-info-block {
        padding: 16px 12px;
    }

    .mobile-nav-overlay {
        top: 52px;
        height: calc(100vh - 52px);
    }
    .mobile-nav-toggle-item {
        font-size: 1.1rem;
    }
    .mobile-nav-direct {
        font-size: 1.1rem;
    }

    .cookie-banner {
        font-size: 0.78rem;
        padding: 10px 12px;
    }
    .cookie-btn {
        padding: 6px 14px;
        font-size: 0.78rem;
    }

    .sticky-cta-bar {
        padding: 6px 8px;
    }
    .sticky-cta-bar a {
        font-size: 0.75rem;
    }
    .sticky-cta-bar .sticky-quote-btn {
        padding: 6px 12px;
        font-size: 0.78rem;
    }

    /* CTA break */
    .cta-break {
        padding: 24px 8px;
    }
    .cta-break-text {
        font-size: 0.88rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 16px 12px;
    }
    .testimonial-text {
        font-size: 0.82rem;
    }

    /* Chat widget -- hide on very small screens to avoid overlap */
    .chat-widget {
        display: none;
    }
}

/* ── COMPREHENSIVE MOBILE RESPONSIVENESS FIXES ── */

/* Prevent horizontal scroll on all viewports */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    /* Prevent horizontal scroll from any section */
    .section, .container, .section-inner,
    .hero, .footer, .stats-counter-section,
    .zone-premium, .method-section, .blog-section {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Hero decorative circle -- prevent overflow */
    .hero::before {
        width: 300px;
        height: 300px;
        right: -25%;
    }

    /* Hero typography */
    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }

    /* Hero buttons -- stack on narrow */
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .hero-buttons .btn {
        justify-content: center;
        text-align: center;
    }

    /* Section headers */
    .section-header h2 {
        font-size: 1.5rem;
    }
    .section-header p {
        font-size: 0.95rem;
    }

    /* Stats counter -- ensure readable sizing */
    .stats-counter-content .counter {
        font-size: 2rem;
    }
    .counter-suffix {
        font-size: 2rem;
    }
    .stats-counter-content .stat-label {
        font-size: 0.8rem;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.95rem;
        padding: 16px 20px;
    }

    /* Testimonials */
    .testimonials-track {
        gap: 12px;
    }

    /* Zone premium section */
    .zone-premium-title {
        font-size: 1.5rem;
    }
    .zone-premium-subtitle {
        font-size: 0.9rem;
    }

    /* Method section */
    .method-title {
        font-size: 1.5rem;
    }

    /* Blog section */
    .blog-section .section-header h2 {
        font-size: 1.5rem;
    }

    /* Buttons -- ensure they don't overflow */
    .btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    /* CTA break */
    .cta-break-inner {
        text-align: center;
    }

    /* Tables -- horizontal scroll wrapper */
    table {
        display: block;
        overflow-x: auto;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    /* Even smaller hero */
    .hero h1 {
        font-size: 1.6rem;
    }

    /* Stats counter on small screens */
    .stats-counter-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .stats-counter-content .counter {
        font-size: 1.8rem;
    }
    .counter-suffix {
        font-size: 1.8rem;
    }

    /* Section padding tighter */
    .section {
        padding: 40px 16px;
    }

    /* Zone info stats -- 2 columns on very small */
    .zone-info-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    .nav-brand-text {
        display: none;
    }
    .stats-counter-content .counter,
    .counter-suffix {
        font-size: 1.6rem;
    }
    .stat-card .number {
        font-size: 1.4rem;
    }
}
