        :root {
            --primary: #203E5A;
            --primary-dark: #172d42;
            --primary-light: #2a5278;
            --accent: #4a9eff;
            --accent-light: #e8f4ff;
            --grey: #8F9DA8;
            --dark: #0f172a;
            --text: #334155;
            --text-light: #64748b;
            --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: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: var(--text);
            line-height: 1.6;
            background: var(--bg);
            opacity: 0;
            transition: opacity 0.4s ease-in;
        }
        body.page-loaded {
            opacity: 1;
        }

        /* ── NAV ── */
        .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: box-shadow 0.3s;
        }
        .nav.scrolled { box-shadow: var(--shadow); }
        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--primary);
        }
        .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; }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        .nav-links a:hover { color: var(--primary); }
        .nav-cta {
            background: var(--primary) !important;
            color: #fff !important;
            padding: 10px 22px !important;
            border-radius: 8px;
            transition: background 0.2s, transform 0.2s !important;
            font-weight: 600 !important;
        }
        .nav-cta:hover {
            background: var(--primary-dark) !important;
            transform: translateY(-1px);
        }
        .lang-switcher {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 0.82rem;
            font-weight: 600;
            margin-left: 8px;
        }
        .lang-switcher button {
            background: none;
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-size: 0.82rem;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 4px;
            color: var(--text-light);
            transition: all 0.2s;
        }
        .lang-switcher button.active {
            background: var(--primary);
            color: #fff;
        }
        .lang-switcher button:hover:not(.active) { color: var(--primary); }
        .lang-sep { color: var(--border); user-select: none; }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }
        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--dark);
            margin: 6px 0;
            transition: all 0.3s;
        }

        /* ── 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 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-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .zone-text h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 14px;
        }
        .zone-text p {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        .zone-cities { display: flex; flex-wrap: wrap; gap: 10px; }
        .zone-chip {
            background: rgba(32,62,90,0.06);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 24px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
        }
        .zone-chip:hover {
            background: var(--primary);
            color: #fff;
        }
        .zone-map {
            border-radius: var(--radius);
            overflow: hidden;
            min-height: 350px;
            box-shadow: var(--shadow-lg);
            position: relative;
        }
        .zone-map iframe {
            width: 100%;
            height: 350px;
            border: 0;
            display: block;
        }
        .zone-map .map-caption {
            background: #fff;
            padding: 14px 20px;
            text-align: center;
        }
        .zone-map .map-caption p {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--primary);
            margin: 0;
        }
        .zone-map .map-caption .sub {
            font-size: 0.82rem;
            color: var(--text-light);
            font-weight: 400;
            margin-top: 2px;
        }

        /* ── 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;
                position: absolute;
                top: 70px; left: 0; right: 0;
                background: #fff;
                flex-direction: column;
                padding: 24px;
                gap: 18px;
                border-bottom: 1px solid var(--border);
                box-shadow: var(--shadow);
            }
            .nav-links.open { display: flex; }
            .nav-toggle { display: block; }
            .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-content { 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 {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .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-switcher,
            .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-content,
            .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 iframe { display: none; }
            .zone-map .map-caption { border: 1px solid #ccc; padding: 12px; }
            /* 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%; }
        }

        /* ── CHAT WIDGET ── */
        .chat-widget {
            position: fixed;
            bottom: 32px;
            right: 88px;
            z-index: 997;
        }
        .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: 340px;
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(16px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .chat-window.open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        .chat-header {
            background: var(--primary);
            color: #fff;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .chat-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.95rem;
        }
        .chat-header-info { flex: 1; }
        .chat-header-info .chat-name { font-weight: 700; font-size: 0.95rem; }
        .chat-header-info .chat-status {
            font-size: 0.75rem;
            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-body {
            padding: 20px;
            max-height: 280px;
            overflow-y: auto;
        }
        .chat-msg {
            background: var(--bg-alt);
            padding: 12px 16px;
            border-radius: 12px 12px 12px 4px;
            font-size: 0.88rem;
            color: var(--text);
            line-height: 1.5;
            margin-bottom: 16px;
        }
        .chat-quick-replies {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .chat-quick-reply {
            background: #fff;
            border: 1.5px solid var(--primary);
            color: var(--primary);
            padding: 10px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
            transition: all 0.2s;
            text-align: left;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .chat-quick-reply:hover {
            background: var(--primary);
            color: #fff;
        }
        .chat-quick-reply svg { width: 16px; height: 16px; flex-shrink: 0; }

        @media (max-width: 768px) {
            .chat-widget { bottom: 72px; right: 16px; }
            .chat-window { width: calc(100vw - 32px); right: -8px; }
            .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 IDF MAP ── */
        .idf-map-wrapper {
            position: relative;
            width: 100%;
        }
        .idf-map-container {
            position: relative;
            max-width: 100%;
        }
        .idf-map-container svg {
            width: 100%;
            height: auto;
            display: block;
        }
        .idf-map-container .dept {
            fill: #dce5ef;
            stroke: #fff;
            stroke-width: 2;
            transition: fill 0.3s, filter 0.3s;
            cursor: pointer;
        }
        .idf-map-container .dept.covered {
            fill: var(--primary);
        }
        .idf-map-container .dept.hq {
            fill: var(--accent);
        }
        .idf-map-container .dept.covered:hover {
            fill: var(--primary-light);
            filter: brightness(1.15);
        }
        .idf-map-container .dept.hq:hover {
            fill: #3a8eef;
            filter: brightness(1.1);
        }
        .idf-map-container .dept:not(.covered):not(.hq):hover {
            fill: #c8d5e3;
        }
        .idf-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;
            transform: translate(-50%, -100%);
            z-index: 10;
            margin-top: -8px;
        }
        .idf-map-tooltip.visible { opacity: 1; }
        .idf-map-tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 5px solid transparent;
            border-top-color: var(--primary);
        }
        .idf-map-legend {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 16px;
            font-size: 0.8rem;
            color: var(--text-light);
        }
        .idf-map-legend span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .idf-map-legend .legend-dot {
            width: 12px;
            height: 12px;
            border-radius: 3px;
            display: inline-block;
        }

        /* ── 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: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
            will-change: opacity, transform;
        }
        .section-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
            will-change: auto;
        }

        /* ── 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(4, 1fr); gap: 24px; text-align: center; position: relative; z-index: 1; }
        .stats-counter-content .counter { font-size: 2.5rem; font-weight: 800; }
        .stats-counter-content .stat-label { font-size: 0.85rem; opacity: 0.8; 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; } }
