:root {
            --primary: #0B5FA5;
            --primary-dark: #084madd;
            --navy: #0A2A43;
            --accent: #FF7A18;
            --accent-dark: #E56A0C;
            --light: #F4F7FB;
            --white: #FFFFFF;
            --text: #1F2937;
            --muted: #5B6B7C;
            --border: #E2E8F0;
            --radius: 12px;
            --shadow-sm: 0 2px 10px rgba(10, 42, 67, 0.06);
            --shadow-md: 0 10px 28px rgba(10, 42, 67, 0.10);
            --shadow-lg: 0 18px 44px rgba(10, 42, 67, 0.16);
        }

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

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            color: var(--text);
            background: var(--white);
            line-height: 1.65;
            font-size: 16px;
            overflow-x: hidden;
        }

h1, h2, h3, .stat-number, .step-number {
            font-family: 'Barlow Condensed', 'Inter', sans-serif;
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: 0.2px;
        }

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
            width: 100%;
            max-width: 1180px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

.section { padding-top: 84px; padding-bottom: 84px; }

.section-alt { background: var(--light); }

.section-navy { background: var(--navy); color: #fff; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }

.eyebrow {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1.6px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 10px;
        }

.section-head h2 { font-size: 2.5rem; color: var(--navy); }

.section-navy .section-head h2 { color: #fff; }

.title-rule {
            width: 62px; height: 4px; border-radius: 4px;
            background: var(--accent);
            margin: 16px auto 20px;
        }

.section-head p { color: var(--muted); font-size: 1.04rem; }

.section-navy .section-head p { color: rgba(255,255,255,0.78); }

.btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 28px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            border: 2px solid transparent;
            cursor: pointer;
            transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
            text-align: center;
        }

.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(255,122,24,.28); }

.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-outline-light { border-color: rgba(255,255,255,.7); color: #fff; }

.btn-outline-light:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }

.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(11,95,165,.25); }

.btn-primary:hover { background: #08487e; transform: translateY(-2px); }

.topbar {
            background: var(--navy);
            color: rgba(255,255,255,.88);
            font-size: 0.88rem;
        }

.topbar-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding-top: 9px;
            padding-bottom: 9px;
        }

.topbar i { color: var(--accent); margin-right: 7px; }

.topbar-items { display: flex; flex-wrap: wrap; gap: 20px; }

.topbar a:hover { color: #fff; }

.header {
            position: sticky;
            top: 0;
            z-index: 999;
            background: #fff;
            box-shadow: 0 2px 14px rgba(10,42,67,.08);
        }

.header-inner {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding-top: 12px;
            padding-bottom: 12px;
        }

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

.logo img { height: 52px; width: auto; }

.logo-text {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.6rem;
            color: var(--navy);
            letter-spacing: .5px;
        }

.menu-toggle { display: none; cursor: pointer; }

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

.nav a {
            font-weight: 600;
            font-size: 0.98rem;
            color: var(--navy);
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: color .2s ease, border-color .2s ease;
        }

.nav a:hover { color: var(--primary); border-bottom-color: var(--accent); }

.nav .btn-cta-nav {
            background: var(--accent);
            color: #fff;
            padding: 11px 20px;
            border-radius: 9px;
            border-bottom: none;
            white-space: nowrap;
            box-shadow: 0 6px 16px rgba(255,122,24,.25);
        }

.nav .btn-cta-nav:hover {
            background: var(--accent-dark);
            color: #fff;
            border-bottom: none;
        }

@media (max-width: 768px) {
            .menu-toggle {
                display: inline-flex; align-items: center; justify-content: center;
                font-size: 1.5rem; padding: 8px; color: var(--primary);
            }
            .nav {
                display: none;
                position: absolute; top: 100%; left: 0; right: 0;
                flex-direction: column; gap: 12px;
                background: var(--white, #fff); padding: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }
            .menu-check:checked ~ .nav { display: flex; }
            .menu-check:checked ~ .menu-toggle .fa-bars::before { content: "\f00d"; }
            .nav a { width: 100%; }
            .nav .btn-cta-nav { text-align: center; }
        }

.hero {
            position: relative;
            background-color: var(--navy);
            background-size: cover;
            background-position: center;
            color: #fff;
            padding-top: 96px;
            padding-bottom: 96px;
        }

.hero::before {
            content: "";
            position: absolute; inset: 0;
            background: linear-gradient(115deg, rgba(10,42,67,.94) 0%, rgba(10,42,67,.86) 42%, rgba(11,95,165,.68) 100%);
        }

.hero .container { position: relative; z-index: 2; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }

.hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(255,255,255,.12);
            border: 1px solid rgba(255,255,255,.24);
            padding: 7px 15px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
        }

.hero-badge i { color: var(--accent); }

.hero h1 { font-size: 3.4rem; max-width: 800px; margin-bottom: 20px; }

.hero h1 span { color: var(--accent); }

.hero-sub { font-size: 1.14rem; max-width: 640px; color: rgba(255,255,255,.88); margin-bottom: 32px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-points { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 36px; }

.hero-point { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 500; }

.hero-point i { color: var(--accent); }

.devis-section { background: var(--light); padding-top: 72px; padding-bottom: 72px; }

.devis-grid {
            display: grid;
            grid-template-columns: 1fr 1.05fr;
            gap: 44px;
            align-items: center;
        }

.devis-intro h2 { font-size: 2.4rem; color: var(--navy); margin-bottom: 14px; }

.devis-intro > p { color: var(--muted); margin-bottom: 26px; }

.devis-list { display: grid; gap: 14px; }

.devis-list li { display: flex; gap: 12px; align-items: flex-start; }

.devis-list i {
            color: var(--primary);
            background: rgba(11,95,165,.10);
            width: 34px; height: 34px;
            border-radius: 9px;
            display: inline-flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }

.devis-list strong { display: block; color: var(--navy); }

.devis-list span { color: var(--muted); font-size: 0.93rem; }

.form-card {
            background: #fff;
            border-radius: 16px;
            padding: 34px;
            box-shadow: var(--shadow-lg);
            border-top: 5px solid var(--accent);
        }

.form-card h3 { font-size: 1.75rem; color: var(--navy); margin-bottom: 6px; }

.form-card > p { color: var(--muted); font-size: 0.93rem; margin-bottom: 22px; }

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

.form-group label {
            display: block;
            font-size: 0.86rem;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 6px;
        }

.form-group input,
        .form-group textarea {
            width: 100%;
            font-family: inherit;
            font-size: 0.97rem;
            color: var(--text);
            padding: 12px 14px;
            border: 1.5px solid var(--border);
            border-radius: 9px;
            background: #fff;
            transition: border-color .2s ease, box-shadow .2s ease;
        }

.form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(11,95,165,.12);
        }

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

form button[type="submit"] {
            width: 100%;
            font-family: inherit;
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 15px 24px;
            border-radius: 10px;
            font-size: 1.02rem;
            font-weight: 700;
            cursor: pointer;
            transition: background-color .2s ease, transform .2s ease;
        }

form button[type="submit"]:hover { background: var(--accent-dark); transform: translateY(-2px); }

form button[type="submit"]:disabled { opacity: .65; cursor: not-allowed; transform: none; }

.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 12px; text-align: center; }

#formStatus p, .form-status p { margin-top: 14px; font-weight: 600; text-align: center; }

.stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

.stat-card {
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.12);
            border-radius: var(--radius);
            padding: 30px 22px;
            text-align: center;
        }

.stat-card i { font-size: 1.6rem; color: var(--accent); margin-bottom: 12px; }

.stat-number { font-size: 2.9rem; color: #fff; display: block; line-height: 1; }

.stat-suffix { color: var(--accent); }

.stat-label { font-size: 0.93rem; color: rgba(255,255,255,.76); margin-top: 8px; }

.services-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 28px;
        }

.service-card {
            width: calc(33.333% - 19px);
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

.service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: rgba(11,95,165,.35);
        }

.service-media { padding: 10px 10px 0; }

.service-media img {
            width: 100%;
            height: 210px;
            object-fit: cover;
            border-radius: 9px;
            transition: transform .3s ease;
        }

.service-card:hover .service-media img { transform: scale(1.03); }

.service-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex-grow: 1; }

.service-icon {
            width: 42px; height: 42px;
            border-radius: 10px;
            background: rgba(11,95,165,.10);
            color: var(--primary);
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 1.05rem;
            margin-bottom: 12px;
        }

.service-body h3 { font-size: 1.42rem; color: var(--navy); margin-bottom: 8px; }

.service-body p { color: var(--muted); font-size: 0.95rem; }

.service-cities {
            margin-top: auto;
            padding-top: 14px;
            border-top: 1px solid var(--border);
            font-size: 0.86rem;
            color: var(--muted);
            line-height: 1.7;
        }

.service-cities strong { display: block; color: var(--navy); font-size: 0.78rem; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 4px; }

.service-cities a { color: var(--primary); font-weight: 600; }

.service-cities a:hover { color: var(--accent); text-decoration: underline; }

.service-more {
            margin-top: 16px;
            align-self: flex-start;
            font-weight: 700;
            font-size: 0.92rem;
            color: var(--primary);
            border-bottom: 2px solid var(--accent);
            padding-bottom: 2px;
            transition: color .2s ease;
        }

.service-more:hover { color: var(--accent); }

.extra-block {
            margin-top: 54px;
            background: #fff;
            border: 1px solid var(--border);
            border-left: 5px solid var(--accent);
            border-radius: var(--radius);
            padding: 34px 32px;
            box-shadow: var(--shadow-sm);
        }

.extra-block h3 { font-size: 1.6rem; color: var(--navy); margin-bottom: 6px; }

.extra-block > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }

.extra-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px 26px;
        }

.extra-list li {
            display: flex;
            align-items: center;
            gap: 11px;
            font-weight: 600;
            color: var(--navy);
            background: var(--light);
            border-radius: 9px;
            padding: 12px 16px;
        }

.extra-list i { color: var(--accent); }

.engage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

.engage-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 30px 26px;
            box-shadow: var(--shadow-sm);
            border-top: 4px solid var(--primary);
            transition: transform .25s ease, box-shadow .25s ease;
        }

.engage-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.engage-card i { font-size: 1.7rem; color: var(--accent); margin-bottom: 14px; }

.engage-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 8px; }

.engage-card p { color: var(--muted); font-size: 0.93rem; }

.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 52px; align-items: center; }

.about-media { position: relative; }

.about-media img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-md); }

.about-stamp {
            position: absolute;
            right: -14px;
            bottom: -18px;
            background: var(--accent);
            color: #fff;
            border-radius: 14px;
            padding: 16px 22px;
            box-shadow: var(--shadow-md);
            text-align: center;
        }

.about-stamp strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; line-height: 1; }

.about-stamp span { font-size: 0.8rem; font-weight: 600; letter-spacing: .6px; text-transform: uppercase; }

.about-text h2 { font-size: 2.4rem; color: var(--navy); margin-bottom: 8px; }

.about-text .title-rule { margin-left: 0; }

.about-text p { color: var(--muted); margin-bottom: 16px; }

.about-facts { display: grid; gap: 12px; margin-top: 24px; }

.about-facts li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); }

.about-facts i { color: var(--primary); margin-top: 4px; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

.step-card {
            background: rgba(255,255,255,.05);
            border: 1px solid rgba(255,255,255,.12);
            border-radius: var(--radius);
            padding: 30px 24px;
        }

.step-number { font-size: 2.6rem; color: var(--accent); line-height: 1; display: block; margin-bottom: 10px; }

.step-card h3 { font-size: 1.32rem; color: #fff; margin-bottom: 8px; }

.step-card p { color: rgba(255,255,255,.75); font-size: 0.93rem; }

.zones-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }

.zones-text h3 { font-size: 1.55rem; color: var(--navy); margin-bottom: 10px; }

.zones-text p { color: var(--muted); margin-bottom: 20px; }

.cities-list { display: flex; flex-wrap: wrap; gap: 10px; }

.cities-list li {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 40px;
            padding: 8px 16px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--navy);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

.cities-list i { color: var(--accent); font-size: 0.8rem; }

.cities-list li.city-link { padding: 0; }

.cities-list li.city-link a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 40px;
            color: var(--primary);
            transition: background-color .2s ease, color .2s ease;
        }

.cities-list li.city-link:hover { border-color: rgba(11,95,165,.35); }

.cities-list li.city-link a:hover { color: var(--accent); }

.zones-map iframe { border-radius: var(--radius); box-shadow: var(--shadow-md); display: block; }

.faq-wrap { max-width: 860px; margin: 0 auto; }

.faq-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 14px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }

.faq-item summary {
            list-style: none;
            cursor: pointer;
            padding: 20px 24px;
            font-weight: 700;
            color: var(--navy);
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary i { color: var(--accent); transition: transform .25s ease; flex-shrink: 0; }

.faq-item[open] summary i { transform: rotate(180deg); }

.faq-answer { padding: 0 24px 22px; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }

.info-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow-sm);
            margin-bottom: 24px;
        }

.info-card .card-title {
            display: block;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 18px;
        }

.contact-lines { display: grid; gap: 16px; }

.contact-line { display: flex; gap: 14px; align-items: flex-start; }

.contact-line .ic {
            width: 42px; height: 42px; flex-shrink: 0;
            border-radius: 10px;
            background: rgba(11,95,165,.10);
            color: var(--primary);
            display: inline-flex; align-items: center; justify-content: center;
        }

.contact-line .lbl { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-weight: 600; }

.contact-line .val { font-weight: 600; color: var(--navy); }

.contact-line a.val:hover { color: var(--primary); }

.hours-list { display: grid; }

.hours-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 12px 14px;
            border-radius: 8px;
            border-bottom: 1px solid var(--border);
        }

.hours-row:last-child { border-bottom: none; }

.hours-row .day { font-weight: 600; color: var(--navy); }

.hours-row .val { font-weight: 600; color: var(--primary); }

.hours-row.closed { background: #FBF3F3; }

.hours-row.closed .day { color: var(--muted); }

.hours-row.closed .val { color: #B23B3B; }

.map-block iframe { border-radius: var(--radius); box-shadow: var(--shadow-sm); display: block; margin-top: 24px; }

.cta-band {
            background: linear-gradient(115deg, var(--primary) 0%, var(--navy) 100%);
            color: #fff;
            padding-top: 62px;
            padding-bottom: 62px;
            text-align: center;
        }

.cta-band h2 { font-size: 2.3rem; margin-bottom: 10px; }

.cta-band p { color: rgba(255,255,255,.85); margin-bottom: 26px; }

.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.footer { background: var(--navy); color: rgba(255,255,255,.76); padding-top: 62px; }

.footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.2fr 1.1fr 1fr;
            gap: 36px;
        }

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }

.footer-logo img { height: 46px; width: auto; }

.footer-logo span { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 700; color: #fff; }

.footer p { font-size: 0.93rem; }

.footer .col-title {
            display: block;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: .5px;
        }

.footer-links { display: grid; gap: 9px; font-size: 0.93rem; }

.footer-links a:hover, .footer-contact a:hover { color: var(--accent); }

.footer-contact { display: grid; gap: 12px; font-size: 0.93rem; }

.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }

.footer-contact i { color: var(--accent); margin-top: 4px; }

.footer-bottom {
            margin-top: 48px;
            border-top: 1px solid rgba(255,255,255,.12);
            padding-top: 22px;
            padding-bottom: 22px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 0.86rem;
        }

.footer-bottom a { color: var(--accent); }

.footer-bottom a:hover { text-decoration: underline; }

.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }

.modal {
            display: none;
            position: fixed; inset: 0;
            background: rgba(10,42,67,.72);
            z-index: 2000;
            padding: 24px;
            overflow-y: auto;
        }

.modal.open { display: flex; align-items: flex-start; justify-content: center; }

.modal-box {
            background: #fff;
            border-radius: 14px;
            max-width: 680px;
            width: 100%;
            margin: 40px auto;
            padding: 32px;
            box-shadow: var(--shadow-lg);
        }

.modal-head {
            display: flex; align-items: center; justify-content: space-between; gap: 16px;
            border-bottom: 1px solid var(--border);
            padding-bottom: 14px;
            margin-bottom: 18px;
        }

.modal-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.7rem; font-weight: 700; color: var(--navy); }

.modal-close {
            background: var(--light); border: none; cursor: pointer;
            width: 38px; height: 38px; border-radius: 9px;
            color: var(--navy); font-size: 1rem;
        }

.modal-close:hover { background: var(--border); }

.modal-box p { font-size: 0.94rem; color: var(--muted); margin-bottom: 12px; }

.modal-box strong { color: var(--navy); }

.call-float { display: none; }

@media (max-width: 1024px) {
            .hero h1 { font-size: 2.9rem; }
            .service-card { width: calc(50% - 14px); }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .engage-grid { grid-template-columns: repeat(2, 1fr); }
            .steps-grid { grid-template-columns: repeat(2, 1fr); }
            .extra-list { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .devis-grid { grid-template-columns: 1fr; gap: 34px; }
            .about-grid { grid-template-columns: 1fr; gap: 44px; }
            .zones-wrap { grid-template-columns: 1fr; gap: 32px; }
            .contact-grid { grid-template-columns: 1fr; }
        }

@media (max-width: 768px) {
            .section { padding-top: 60px; padding-bottom: 60px; }
            .container { padding-left: 16px; padding-right: 16px; }
            .hero { padding-top: 64px; padding-bottom: 68px; }
            .hero h1 { font-size: 2.3rem; }
            .hero-sub { font-size: 1.02rem; }
            .section-head h2 { font-size: 2rem; }
            .devis-intro h2, .about-text h2, .cta-band h2 { font-size: 1.95rem; }
            .service-card { width: 100%; max-width: 440px; }
            .form-card { padding: 26px 20px; }
            .info-card { padding: 24px 20px; }
            .extra-block { padding: 26px 20px; }
            .about-stamp { right: 10px; bottom: -14px; }
            .topbar-items { gap: 14px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            body { padding-bottom: 72px; }
            .call-float {
                display: flex;
                position: fixed;
                left: 16px; right: 16px; bottom: 16px;
                z-index: 1000;
                align-items: center; justify-content: center; gap: 10px;
                background: var(--accent);
                color: #fff;
                font-weight: 700;
                padding: 15px 20px;
                border-radius: 12px;
                box-shadow: 0 10px 26px rgba(10,42,67,.32);
            }
        }

@media (max-width: 640px) {
            .form-row { grid-template-columns: 1fr; gap: 0; }
            .extra-list { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr; }
            .engage-grid { grid-template-columns: 1fr; }
            .steps-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 28px; }
            .hero-actions .btn { width: 100%; }
            .topbar-inner { justify-content: center; text-align: center; }
            .modal-box { padding: 24px 20px; }
        }

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

html, body { overflow-x: hidden; max-width: 100%; }

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

.sct-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

@media (max-width: 640px) { .sct-container { padding: 0 18px; } }

.sct-tpl-service-hub .sct-section { padding: 82px 0; }

.sct-tpl-service-hub .sct-section-alt { background: #F4F7FB; }

.sct-tpl-service-hub .sct-section-navy { background: #0A2A43; color: #fff; }

.sct-tpl-service-hub .sct-section-head { text-align: center; max-width: 760px; margin: 0 auto 46px; }

.sct-tpl-service-hub .sct-eyebrow {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1.6px;
            text-transform: uppercase;
            color: #FF7A18;
            margin-bottom: 10px;
        }

.sct-tpl-service-hub .sct-section-title {
            font-family: 'Barlow Condensed', 'Inter', sans-serif;
            font-weight: 700;
            font-size: 2.45rem;
            line-height: 1.15;
            color: #0A2A43;
            margin: 0;
        }

.sct-tpl-service-hub .sct-section-navy .sct-section-title { color: #fff; }

.sct-tpl-service-hub .sct-rule { width: 62px; height: 4px; border-radius: 4px; background: #FF7A18; margin: 16px auto 20px; }

.sct-tpl-service-hub .sct-rule-left { margin-left: 0; margin-right: auto; }

.sct-tpl-service-hub .sct-section-head p { color: #5B6B7C; font-size: 1.04rem; margin: 0; }

.sct-tpl-service-hub .sct-section-navy .sct-section-head p { color: rgba(255,255,255,.78); }

.sct-tpl-service-hub .sct-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 28px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            border: 2px solid transparent;
            cursor: pointer;
            text-align: center;
            transition: transform .2s ease, background-color .2s ease, color .2s ease;
        }

.sct-tpl-service-hub .sct-btn-accent { background: #FF7A18; color: #fff; box-shadow: 0 8px 20px rgba(255,122,24,.28); }

.sct-tpl-service-hub .sct-btn-accent:hover { background: #E56A0C; color: #fff; transform: translateY(-2px); }

.sct-tpl-service-hub .sct-btn-primary { background: #0B5FA5; color: #fff; box-shadow: 0 8px 20px rgba(11,95,165,.25); }

.sct-tpl-service-hub .sct-btn-primary:hover { background: #08487E; color: #fff; transform: translateY(-2px); }

.sct-tpl-service-hub .sct-btn-ghost { border-color: rgba(255,255,255,.7); color: #fff; }

.sct-tpl-service-hub .sct-btn-ghost:hover { background: #fff; color: #0A2A43; transform: translateY(-2px); }

.sct-tpl-service-hub .sct-btn-block { width: 100%; }

.sct-tpl-service-hub .sct-hero {
            position: relative;
            background-color: #0A2A43;
            background-image: url('/images/service_1_1789775325_6aadcddd11163.webp');
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 78px 0 86px;
        }

.sct-tpl-service-hub .sct-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(115deg, rgba(10,42,67,.95) 0%, rgba(10,42,67,.88) 45%, rgba(11,95,165,.70) 100%);
        }

.sct-tpl-service-hub .sct-hero-container { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.sct-hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: center; }

.sct-hero-grid > * { min-width: 0; }

.sct-hero-text, .sct-hero-card { min-width: 0; max-width: 100%; }

.sct-breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            max-width: 100%;
            overflow-wrap: anywhere;
            font-size: 0.85rem;
            margin-bottom: 20px;
        }

.sct-tpl-service-hub .sct-breadcrumb a { color: rgba(255,255,255,.82); }

.sct-tpl-service-hub .sct-breadcrumb a:hover { color: #FF7A18; }

.sct-tpl-service-hub .sct-bc-sep { color: rgba(255,255,255,.45); }

.sct-tpl-service-hub .sct-bc-current { color: #FF7A18; font-weight: 600; }

.sct-tpl-service-hub .sct-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }

.sct-tpl-service-hub .sct-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,.12);
            border: 1px solid rgba(255,255,255,.24);
            padding: 7px 15px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
        }

.sct-tpl-service-hub .sct-hero-badge i { color: #FF7A18; }

.sct-tpl-service-hub .sct-hero-text h1 {
            font-family: 'Barlow Condensed', 'Inter', sans-serif;
            font-weight: 700;
            font-size: 3.05rem;
            line-height: 1.12;
            letter-spacing: .2px;
            margin: 0 0 18px;
        }

.sct-tpl-service-hub .sct-hero-text h1 span { color: #FF7A18; }

.sct-tpl-service-hub .sct-hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.88); max-width: 640px; margin: 0 0 30px; }

.sct-hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

.sct-tpl-service-hub .sct-hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 32px; }

.sct-tpl-service-hub .sct-hero-trust li { display: flex; align-items: center; gap: 9px; font-size: 0.94rem; font-weight: 500; list-style: none; }

.sct-tpl-service-hub .sct-hero-trust i { color: #FF7A18; }

.sct-tpl-service-hub .sct-hero-card {
            background: #fff;
            color: #1F2937;
            border-radius: 16px;
            padding: 30px;
            border-top: 5px solid #FF7A18;
            box-shadow: 0 18px 44px rgba(10,42,67,.30);
        }

.sct-tpl-service-hub .sct-hero-card-title {
            display: block;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.62rem;
            color: #0A2A43;
            margin-bottom: 4px;
        }

.sct-tpl-service-hub .sct-hero-card-sub { font-size: 0.92rem; color: #5B6B7C; margin: 0 0 20px; }

.sct-tpl-service-hub .sct-hero-card-list { display: grid; gap: 15px; margin-bottom: 22px; }

.sct-tpl-service-hub .sct-hero-card-list li { display: flex; gap: 13px; align-items: flex-start; list-style: none; }

.sct-tpl-service-hub .sct-hc-ic {
            width: 40px; height: 40px; flex-shrink: 0;
            border-radius: 10px;
            background: rgba(11,95,165,.10);
            color: #0B5FA5;
            display: inline-flex; align-items: center; justify-content: center;
        }

.sct-tpl-service-hub .sct-hc-lbl { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 1px; color: #5B6B7C; font-weight: 600; }

.sct-tpl-service-hub .sct-hc-val { font-weight: 600; color: #0A2A43; font-size: 0.97rem; }

.sct-tpl-service-hub a.sct-hc-val:hover { color: #0B5FA5; }

.sct-tpl-service-hub .sct-stats-band { background: #0A2A43; padding: 54px 0; }

.sct-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.sct-stats-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-stat-card {
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 12px;
            padding: 28px 20px;
            text-align: center;
        }

.sct-tpl-service-hub .sct-stat-value {
            display: block;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 2.6rem;
            line-height: 1;
            color: #fff;
        }

.sct-tpl-service-hub .sct-stat-label { font-size: 0.9rem; color: rgba(255,255,255,.76); margin-top: 8px; }

.sct-tpl-service-hub .sct-intro-section { padding: 82px 0; background: #fff; }

.sct-tpl-service-hub .sct-intro-wrap { max-width: 880px; margin: 0 auto; }

.sct-tpl-service-hub .sct-intro-wrap p { color: #5B6B7C; font-size: 1.04rem; margin: 0 0 18px; }

.sct-tpl-service-hub .sct-intro-wrap p:last-child { margin-bottom: 0; }

.sct-tpl-service-hub .sct-intro-wrap strong { color: #0A2A43; }

.sct-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.sct-services-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-service-card {
            background: #fff;
            border: 1px solid #E2E8F0;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(10,42,67,.06);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

.sct-tpl-service-hub .sct-service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 28px rgba(10,42,67,.10);
            border-color: rgba(11,95,165,.35);
        }

.sct-tpl-service-hub .sct-service-media { padding: 10px 10px 0; }

.sct-tpl-service-hub .sct-service-media img { width: 100%; height: 210px; object-fit: cover; border-radius: 9px; }

.sct-tpl-service-hub .sct-service-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex-grow: 1; }

.sct-tpl-service-hub .sct-service-body h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            color: #0A2A43;
            margin: 0 0 8px;
        }

.sct-tpl-service-hub .sct-service-body p { color: #5B6B7C; font-size: 0.95rem; margin: 0; }

.sct-processus-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }

.sct-processus-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-step-card {
            background: rgba(255,255,255,.05);
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 12px;
            padding: 28px 22px;
        }

.sct-tpl-service-hub .sct-step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px; height: 44px;
            border-radius: 11px;
            background: rgba(255,122,24,.16);
            color: #FF7A18;
            font-size: 1.1rem;
            margin-bottom: 14px;
        }

.sct-tpl-service-hub .sct-step-card h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.28rem;
            color: #fff;
            margin: 0 0 8px;
        }

.sct-tpl-service-hub .sct-step-card p { color: rgba(255,255,255,.75); font-size: 0.92rem; margin: 0; }

.sct-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

.sct-why-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-why-card {
            background: #fff;
            border-radius: 12px;
            padding: 30px 26px;
            box-shadow: 0 2px 10px rgba(10,42,67,.06);
            border-top: 4px solid #0B5FA5;
            transition: transform .25s ease, box-shadow .25s ease;
        }

.sct-tpl-service-hub .sct-why-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(10,42,67,.10); }

.sct-tpl-service-hub .sct-why-card i { font-size: 1.7rem; color: #FF7A18; margin-bottom: 14px; display: block; }

.sct-tpl-service-hub .sct-why-card h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.28rem;
            color: #0A2A43;
            margin: 0 0 8px;
        }

.sct-tpl-service-hub .sct-why-card p { color: #5B6B7C; font-size: 0.93rem; margin: 0; }

.sct-usecase-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }

.sct-usecase-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-usecase-media img { width: 100%; border-radius: 16px; box-shadow: 0 10px 28px rgba(10,42,67,.10); }

.sct-tpl-service-hub .sct-usecase-text h2 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 2.3rem;
            color: #0A2A43;
            margin: 0 0 6px;
        }

.sct-tpl-service-hub .sct-usecase-body { color: #5B6B7C; }

.sct-tpl-service-hub .sct-usecase-body p { margin: 0 0 16px; }

.sct-tpl-service-hub .sct-usecase-body p:last-child { margin-bottom: 0; }

.sct-tpl-service-hub .sct-usecase-body strong { color: #0A2A43; }

.sct-engagements-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.sct-engagements-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-engagement-card {
            background: #fff;
            border: 1px solid #E2E8F0;
            border-radius: 12px;
            padding: 30px 26px;
            box-shadow: 0 2px 10px rgba(10,42,67,.06);
        }

.sct-tpl-service-hub .sct-engagement-card i {
            width: 48px; height: 48px;
            border-radius: 12px;
            background: rgba(11,95,165,.10);
            color: #0B5FA5;
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 14px;
        }

.sct-tpl-service-hub .sct-engagement-card h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.3rem;
            color: #0A2A43;
            margin: 0 0 8px;
        }

.sct-tpl-service-hub .sct-engagement-card p { color: #5B6B7C; font-size: 0.93rem; margin: 0; }

.sct-tpl-service-hub .sct-faq-wrap { max-width: 860px; margin: 0 auto; }

.sct-tpl-service-hub .sct-faq-item {
            background: #fff;
            border: 1px solid #E2E8F0;
            border-radius: 12px;
            margin-bottom: 14px;
            box-shadow: 0 2px 10px rgba(10,42,67,.06);
            overflow: hidden;
        }

.sct-tpl-service-hub .sct-faq-item summary {
            list-style: none;
            cursor: pointer;
            padding: 20px 24px;
            font-weight: 700;
            color: #0A2A43;
            font-size: 1.04rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

.sct-tpl-service-hub .sct-faq-item summary::-webkit-details-marker { display: none; }

.sct-tpl-service-hub .sct-faq-item summary::after {
            content: "\f078";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #FF7A18;
            font-size: 0.9rem;
            flex-shrink: 0;
            transition: transform .25s ease;
        }

.sct-tpl-service-hub .sct-faq-item[open] summary::after { transform: rotate(180deg); }

.sct-tpl-service-hub .sct-faq-answer { padding: 0 24px 22px; color: #5B6B7C; }

.sct-tpl-service-hub .sct-faq-answer p { margin: 0 0 12px; }

.sct-tpl-service-hub .sct-faq-answer p:last-child { margin-bottom: 0; }

.sct-tpl-service-hub .sct-maillage-section { padding: 82px 0; background: #fff; }

.sct-tpl-service-hub .sct-maillage-section.sct-maillage-alt { padding: 64px 0; background: #F4F7FB; }

.sct-tpl-service-hub .sct-maillage-head { text-align: center; max-width: 760px; margin: 0 auto 34px; }

.sct-tpl-service-hub .sct-maillage-head h2 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 2.3rem;
            color: #0A2A43;
            margin: 0 0 8px;
        }

.sct-tpl-service-hub .sct-maillage-alt .sct-maillage-head h2 { font-size: 2rem; }

.sct-tpl-service-hub .sct-maillage-head p { color: #5B6B7C; font-size: 0.99rem; margin: 0; }

.sct-tpl-service-hub .sct-cities-box {
            background: #F4F7FB;
            border: 1px solid #E2E8F0;
            border-left: 5px solid #FF7A18;
            border-radius: 12px;
            padding: 34px 32px;
        }

.sct-cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px 18px; }

.sct-cities-grid > * { min-width: 0; }

.sct-tpl-service-hub .sct-cities-grid a,
        .sct-tpl-service-hub .sct-cities-grid li {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
        }

.sct-tpl-service-hub .sct-cities-grid a {
            background: #fff;
            border: 1px solid #E2E8F0;
            border-radius: 9px;
            padding: 12px 16px;
            font-size: 0.93rem;
            font-weight: 600;
            color: #0A2A43;
            overflow-wrap: anywhere;
            transition: border-color .2s ease, color .2s ease, transform .2s ease;
        }

.sct-tpl-service-hub .sct-cities-grid a::before {
            content: "\f3c5";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #FF7A18;
            font-size: 0.82rem;
            flex-shrink: 0;
        }

.sct-tpl-service-hub .sct-cities-grid a:hover { border-color: #FF7A18; color: #0B5FA5; transform: translateY(-2px); }

.sct-tpl-service-hub .sct-maillage-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.sct-tpl-service-hub .sct-maillage-links li { list-style: none; display: inline-flex; }

.sct-tpl-service-hub .sct-maillage-links a {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: #fff;
            border: 1px solid #E2E8F0;
            border-radius: 40px;
            padding: 10px 18px;
            font-size: 0.92rem;
            font-weight: 600;
            color: #0A2A43;
            transition: border-color .2s ease, color .2s ease, transform .2s ease;
        }

.sct-tpl-service-hub .sct-maillage-links a:hover { border-color: #FF7A18; color: #0B5FA5; transform: translateY(-2px); }

.sct-tpl-service-hub .sct-cta-final {
            background: linear-gradient(115deg, #0B5FA5 0%, #0A2A43 100%);
            color: #fff;
            padding: 64px 0;
            text-align: center;
        }

.sct-tpl-service-hub .sct-cta-final h2 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 2.25rem;
            margin: 0 0 10px;
        }

.sct-tpl-service-hub .sct-cta-final p { color: rgba(255,255,255,.85); margin: 0 auto 26px; max-width: 640px; }

.sct-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

@media (max-width: 992px) {
            .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
            .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
            .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
            .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
            .sct-processus-grid { grid-template-columns: repeat(2, 1fr); }
            .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
            .sct-engagements-grid { grid-template-columns: 1fr; }
            .sct-usecase-grid { grid-template-columns: 1fr; gap: 34px; }
            .sct-cities-grid { grid-template-columns: repeat(2, 1fr); }
            .sct-tpl-service-hub .sct-hero-text h1 { font-size: 2.5rem; }
            .sct-tpl-service-hub .sct-section-title { font-size: 2.1rem; }
            .sct-tpl-service-hub .sct-section { padding: 66px 0; }
            .sct-tpl-service-hub .sct-intro-section,
            .sct-tpl-service-hub .sct-maillage-section { padding: 66px 0; }
        }

@media (max-width: 640px) {
            .sct-tpl-service-hub .sct-hero { padding: 120px 0 64px; }
            .sct-hero-btns { flex-direction: column; }
            .sct-hero-btns > * { width: 100%; justify-content: center; }
            .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
            .sct-tpl-service-hub .sct-hero-subtitle { font-size: 1rem; }
            .sct-breadcrumb { font-size: 0.8rem; }
            .sct-tpl-service-hub .sct-hero-trust { gap: 12px; }
            .sct-tpl-service-hub .sct-hero-trust li { width: 100%; }
            .sct-stats-grid { grid-template-columns: 1fr; gap: 16px; }
            .sct-services-grid { grid-template-columns: 1fr; gap: 22px; }
            .sct-processus-grid { grid-template-columns: 1fr; gap: 16px; }
            .sct-why-grid { grid-template-columns: 1fr; gap: 18px; }
            .sct-cities-grid { grid-template-columns: 1fr; }
            .sct-tpl-service-hub .sct-section-title { font-size: 1.8rem; }
            .sct-tpl-service-hub .sct-usecase-text h2 { font-size: 1.8rem; }
            .sct-tpl-service-hub .sct-cta-final h2 { font-size: 1.8rem; }
            .sct-tpl-service-hub .sct-maillage-head h2,
            .sct-tpl-service-hub .sct-maillage-alt .sct-maillage-head h2 { font-size: 1.7rem; }
            .sct-tpl-service-hub .sct-hero-card { padding: 24px; }
            .sct-tpl-service-hub .sct-cities-box { padding: 24px 18px; }
            .sct-cta-actions { flex-direction: column; }
            .sct-cta-actions > * { width: 100%; justify-content: center; }
            .sct-tpl-service-hub .sct-section { padding: 54px 0; }
            .sct-tpl-service-hub .sct-intro-section,
            .sct-tpl-service-hub .sct-maillage-section,
            .sct-tpl-service-hub .sct-maillage-section.sct-maillage-alt { padding: 54px 0; }
            .sct-tpl-service-hub .sct-faq-item summary { padding: 17px 18px; font-size: 0.98rem; }
            .sct-tpl-service-hub .sct-faq-answer { padding: 0 18px 20px; }
        }

.sct-tpl-service-city .sct-section { padding: 82px 0; }

.sct-tpl-service-city .sct-section-alt { background: #F4F7FB; }

.sct-tpl-service-city .sct-section-navy { background: #0A2A43; color: #fff; }

.sct-tpl-service-city .sct-section-head { text-align: center; max-width: 760px; margin: 0 auto 46px; }

.sct-tpl-service-city .sct-eyebrow {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1.6px;
            text-transform: uppercase;
            color: #FF7A18;
            margin-bottom: 10px;
        }

.sct-tpl-service-city .sct-section-title {
            font-family: 'Barlow Condensed', 'Inter', sans-serif;
            font-weight: 700;
            font-size: 2.45rem;
            line-height: 1.15;
            color: #0A2A43;
            margin: 0;
        }

.sct-tpl-service-city .sct-section-navy .sct-section-title { color: #fff; }

.sct-tpl-service-city .sct-rule { width: 62px; height: 4px; border-radius: 4px; background: #FF7A18; margin: 16px auto 20px; }

.sct-tpl-service-city .sct-rule-left { margin-left: 0; margin-right: auto; }

.sct-tpl-service-city .sct-section-head p { color: #5B6B7C; font-size: 1.04rem; margin: 0; }

.sct-tpl-service-city .sct-section-navy .sct-section-head p { color: rgba(255,255,255,.78); }

.sct-tpl-service-city .sct-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 28px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            border: 2px solid transparent;
            cursor: pointer;
            text-align: center;
            transition: transform .2s ease, background-color .2s ease, color .2s ease;
        }

.sct-tpl-service-city .sct-btn-accent { background: #FF7A18; color: #fff; box-shadow: 0 8px 20px rgba(255,122,24,.28); }

.sct-tpl-service-city .sct-btn-accent:hover { background: #E56A0C; color: #fff; transform: translateY(-2px); }

.sct-tpl-service-city .sct-btn-primary { background: #0B5FA5; color: #fff; box-shadow: 0 8px 20px rgba(11,95,165,.25); }

.sct-tpl-service-city .sct-btn-primary:hover { background: #08487E; color: #fff; transform: translateY(-2px); }

.sct-tpl-service-city .sct-btn-ghost { border-color: rgba(255,255,255,.7); color: #fff; }

.sct-tpl-service-city .sct-btn-ghost:hover { background: #fff; color: #0A2A43; transform: translateY(-2px); }

.sct-tpl-service-city .sct-btn-block { width: 100%; }

.sct-tpl-service-city .sct-hero {
            position: relative;
            background-color: #0A2A43;
            background-image: url('/images/service_1_1789775325_6aadcddd11163.webp');
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 78px 0 86px;
        }

.sct-tpl-service-city .sct-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(115deg, rgba(10,42,67,.95) 0%, rgba(10,42,67,.88) 45%, rgba(11,95,165,.70) 100%);
        }

.sct-tpl-service-city .sct-hero-container { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.sct-tpl-service-city .sct-breadcrumb a { color: rgba(255,255,255,.82); }

.sct-tpl-service-city .sct-breadcrumb a:hover { color: #FF7A18; }

.sct-tpl-service-city .sct-bc-sep { color: rgba(255,255,255,.45); }

.sct-tpl-service-city .sct-bc-current { color: #FF7A18; font-weight: 600; }

.sct-tpl-service-city .sct-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }

.sct-tpl-service-city .sct-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,.12);
            border: 1px solid rgba(255,255,255,.24);
            padding: 7px 15px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
        }

.sct-tpl-service-city .sct-hero-badge i { color: #FF7A18; }

.sct-tpl-service-city .sct-hero-text h1 {
            font-family: 'Barlow Condensed', 'Inter', sans-serif;
            font-weight: 700;
            font-size: 3.05rem;
            line-height: 1.12;
            letter-spacing: .2px;
            margin: 0 0 18px;
        }

.sct-tpl-service-city .sct-hero-text h1 span { color: #FF7A18; }

.sct-tpl-service-city .sct-hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.88); max-width: 640px; margin: 0 0 30px; }

.sct-tpl-service-city .sct-hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 32px; }

.sct-tpl-service-city .sct-hero-trust li { display: flex; align-items: center; gap: 9px; font-size: 0.94rem; font-weight: 500; list-style: none; }

.sct-tpl-service-city .sct-hero-trust i { color: #FF7A18; }

.sct-tpl-service-city .sct-hero-card {
            background: #fff;
            color: #1F2937;
            border-radius: 16px;
            padding: 30px;
            border-top: 5px solid #FF7A18;
            box-shadow: 0 18px 44px rgba(10,42,67,.30);
        }

.sct-tpl-service-city .sct-hero-card-title {
            display: block;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.62rem;
            color: #0A2A43;
            margin-bottom: 4px;
        }

.sct-tpl-service-city .sct-hero-card-sub { font-size: 0.92rem; color: #5B6B7C; margin: 0 0 20px; }

.sct-tpl-service-city .sct-hero-card-list { display: grid; gap: 15px; margin-bottom: 22px; }

.sct-tpl-service-city .sct-hero-card-list li { display: flex; gap: 13px; align-items: flex-start; list-style: none; }

.sct-tpl-service-city .sct-hc-ic {
            width: 40px; height: 40px; flex-shrink: 0;
            border-radius: 10px;
            background: rgba(11,95,165,.10);
            color: #0B5FA5;
            display: inline-flex; align-items: center; justify-content: center;
        }

.sct-tpl-service-city .sct-hc-lbl { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 1px; color: #5B6B7C; font-weight: 600; }

.sct-tpl-service-city .sct-hc-val { font-weight: 600; color: #0A2A43; font-size: 0.97rem; }

.sct-tpl-service-city a.sct-hc-val:hover { color: #0B5FA5; }

.sct-tpl-service-city .sct-stats-band { background: #0A2A43; padding: 54px 0; }

.sct-tpl-service-city .sct-stat-card {
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 12px;
            padding: 28px 20px;
            text-align: center;
        }

.sct-tpl-service-city .sct-stat-value {
            display: block;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 2.6rem;
            line-height: 1;
            color: #fff;
        }

.sct-tpl-service-city .sct-stat-label { font-size: 0.9rem; color: rgba(255,255,255,.76); margin-top: 8px; }

.sct-tpl-service-city .sct-intro-section { padding: 82px 0; background: #fff; }

.sct-tpl-service-city .sct-intro-wrap { max-width: 880px; margin: 0 auto; }

.sct-tpl-service-city .sct-intro-wrap p { color: #5B6B7C; font-size: 1.04rem; margin: 0 0 18px; }

.sct-tpl-service-city .sct-intro-wrap p:last-child { margin-bottom: 0; }

.sct-tpl-service-city .sct-intro-wrap strong { color: #0A2A43; }

.sct-tpl-service-city .sct-service-card {
            background: #fff;
            border: 1px solid #E2E8F0;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(10,42,67,.06);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

.sct-tpl-service-city .sct-service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 28px rgba(10,42,67,.10);
            border-color: rgba(11,95,165,.35);
        }

.sct-tpl-service-city .sct-service-media { padding: 10px 10px 0; }

.sct-tpl-service-city .sct-service-media img { width: 100%; height: 210px; object-fit: cover; border-radius: 9px; }

.sct-tpl-service-city .sct-service-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex-grow: 1; }

.sct-tpl-service-city .sct-service-body h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            color: #0A2A43;
            margin: 0 0 8px;
        }

.sct-tpl-service-city .sct-service-body p { color: #5B6B7C; font-size: 0.95rem; margin: 0; }

.sct-tpl-service-city .sct-step-card {
            background: rgba(255,255,255,.05);
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 12px;
            padding: 28px 22px;
        }

.sct-tpl-service-city .sct-step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px; height: 44px;
            border-radius: 11px;
            background: rgba(255,122,24,.16);
            color: #FF7A18;
            font-size: 1.1rem;
            margin-bottom: 14px;
        }

.sct-tpl-service-city .sct-step-card h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.28rem;
            color: #fff;
            margin: 0 0 8px;
        }

.sct-tpl-service-city .sct-step-card p { color: rgba(255,255,255,.75); font-size: 0.92rem; margin: 0; }

.sct-tpl-service-city .sct-why-card {
            background: #fff;
            border-radius: 12px;
            padding: 30px 26px;
            box-shadow: 0 2px 10px rgba(10,42,67,.06);
            border-top: 4px solid #0B5FA5;
            transition: transform .25s ease, box-shadow .25s ease;
        }

.sct-tpl-service-city .sct-why-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(10,42,67,.10); }

.sct-tpl-service-city .sct-why-card i { font-size: 1.7rem; color: #FF7A18; margin-bottom: 14px; display: block; }

.sct-tpl-service-city .sct-why-card h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.28rem;
            color: #0A2A43;
            margin: 0 0 8px;
        }

.sct-tpl-service-city .sct-why-card p { color: #5B6B7C; font-size: 0.93rem; margin: 0; }

.sct-tpl-service-city .sct-zones-section { padding: 82px 0; background: #fff; }

.sct-tpl-service-city .sct-zones-box {
            background: #F4F7FB;
            border: 1px solid #E2E8F0;
            border-left: 5px solid #FF7A18;
            border-radius: 12px;
            padding: 34px 32px;
        }

.sct-tpl-service-city .sct-zones-box h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.55rem;
            color: #0A2A43;
            margin: 0 0 6px;
        }

.sct-tpl-service-city .sct-zones-box > p { color: #5B6B7C; font-size: 0.96rem; margin: 0 0 20px; }

.sct-tpl-service-city .sct-zones-list { display: flex; flex-wrap: wrap; gap: 10px; }

.sct-tpl-service-city .sct-zones-list li {
            background: #fff;
            border: 1px solid #E2E8F0;
            border-radius: 40px;
            padding: 8px 16px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #0A2A43;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            list-style: none;
        }

.sct-tpl-service-city .sct-zones-list li::before {
            content: "\f3c5";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #FF7A18;
            font-size: 0.8rem;
        }

.sct-tpl-service-city .sct-usecase-media img { width: 100%; border-radius: 16px; box-shadow: 0 10px 28px rgba(10,42,67,.10); }

.sct-tpl-service-city .sct-usecase-text h2 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 2.3rem;
            color: #0A2A43;
            margin: 0 0 6px;
        }

.sct-tpl-service-city .sct-usecase-body { color: #5B6B7C; }

.sct-tpl-service-city .sct-usecase-body p { margin: 0 0 16px; }

.sct-tpl-service-city .sct-usecase-body p:last-child { margin-bottom: 0; }

.sct-tpl-service-city .sct-usecase-body strong { color: #0A2A43; }

.sct-tpl-service-city .sct-engagement-card {
            background: #fff;
            border: 1px solid #E2E8F0;
            border-radius: 12px;
            padding: 30px 26px;
            box-shadow: 0 2px 10px rgba(10,42,67,.06);
        }

.sct-tpl-service-city .sct-engagement-card i {
            width: 48px; height: 48px;
            border-radius: 12px;
            background: rgba(11,95,165,.10);
            color: #0B5FA5;
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 14px;
        }

.sct-tpl-service-city .sct-engagement-card h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.3rem;
            color: #0A2A43;
            margin: 0 0 8px;
        }

.sct-tpl-service-city .sct-engagement-card p { color: #5B6B7C; font-size: 0.93rem; margin: 0; }

.sct-tpl-service-city .sct-local-spec { padding: 72px 0; background: #fff; }

.sct-tpl-service-city .sct-local-box {
            max-width: 880px;
            margin: 0 auto;
            background: #F4F7FB;
            border-radius: 12px;
            padding: 34px 32px;
            border-top: 4px solid #0B5FA5;
        }

.sct-tpl-service-city .sct-local-box h2 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.9rem;
            color: #0A2A43;
            margin: 0 0 12px;
        }

.sct-tpl-service-city .sct-local-box p { color: #5B6B7C; margin: 0 0 14px; }

.sct-tpl-service-city .sct-local-box p:last-child { margin-bottom: 0; }

.sct-tpl-service-city .sct-local-box strong { color: #0A2A43; }

.sct-tpl-service-city .sct-faq-wrap { max-width: 860px; margin: 0 auto; }

.sct-tpl-service-city .sct-faq-item {
            background: #fff;
            border: 1px solid #E2E8F0;
            border-radius: 12px;
            margin-bottom: 14px;
            box-shadow: 0 2px 10px rgba(10,42,67,.06);
            overflow: hidden;
        }

.sct-tpl-service-city .sct-faq-item summary {
            list-style: none;
            cursor: pointer;
            padding: 20px 24px;
            font-weight: 700;
            color: #0A2A43;
            font-size: 1.04rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

.sct-tpl-service-city .sct-faq-item summary::-webkit-details-marker { display: none; }

.sct-tpl-service-city .sct-faq-item summary::after {
            content: "\f078";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #FF7A18;
            font-size: 0.9rem;
            flex-shrink: 0;
            transition: transform .25s ease;
        }

.sct-tpl-service-city .sct-faq-item[open] summary::after { transform: rotate(180deg); }

.sct-tpl-service-city .sct-faq-answer { padding: 0 24px 22px; color: #5B6B7C; }

.sct-tpl-service-city .sct-faq-answer p { margin: 0 0 12px; }

.sct-tpl-service-city .sct-faq-answer p:last-child { margin-bottom: 0; }

.sct-tpl-service-city .sct-maillage-section { padding: 64px 0; background: #fff; }

.sct-tpl-service-city .sct-maillage-section.sct-maillage-alt { background: #F4F7FB; }

.sct-tpl-service-city .sct-maillage-head { text-align: center; max-width: 720px; margin: 0 auto 30px; }

.sct-tpl-service-city .sct-maillage-head h2 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 2rem;
            color: #0A2A43;
            margin: 0 0 8px;
        }

.sct-tpl-service-city .sct-maillage-head p { color: #5B6B7C; font-size: 0.98rem; margin: 0; }

.sct-tpl-service-city .sct-maillage-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.sct-tpl-service-city .sct-maillage-links a,
        .sct-tpl-service-city .sct-maillage-links li {
            list-style: none;
            display: inline-flex;
            align-items: center;
            gap: 9px;
        }

.sct-tpl-service-city .sct-maillage-links a {
            background: #fff;
            border: 1px solid #E2E8F0;
            border-radius: 40px;
            padding: 10px 18px;
            font-size: 0.92rem;
            font-weight: 600;
            color: #0A2A43;
            transition: border-color .2s ease, color .2s ease, transform .2s ease;
        }

.sct-tpl-service-city .sct-maillage-alt .sct-maillage-links a { background: #fff; }

.sct-tpl-service-city .sct-maillage-links a:hover { border-color: #FF7A18; color: #0B5FA5; transform: translateY(-2px); }

.sct-tpl-service-city .sct-cta-final {
            background: linear-gradient(115deg, #0B5FA5 0%, #0A2A43 100%);
            color: #fff;
            padding: 64px 0;
            text-align: center;
        }

.sct-tpl-service-city .sct-cta-final h2 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 2.25rem;
            margin: 0 0 10px;
        }

.sct-tpl-service-city .sct-cta-final p { color: rgba(255,255,255,.85); margin: 0 auto 26px; max-width: 640px; }

@media (max-width: 992px) {
            .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
            .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
            .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
            .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
            .sct-processus-grid { grid-template-columns: repeat(2, 1fr); }
            .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
            .sct-engagements-grid { grid-template-columns: 1fr; }
            .sct-usecase-grid { grid-template-columns: 1fr; gap: 34px; }
            .sct-tpl-service-city .sct-hero-text h1 { font-size: 2.5rem; }
            .sct-tpl-service-city .sct-section-title { font-size: 2.1rem; }
            .sct-tpl-service-city .sct-section { padding: 66px 0; }
            .sct-tpl-service-city .sct-intro-section,
            .sct-tpl-service-city .sct-zones-section { padding: 66px 0; }
        }

@media (max-width: 640px) {
            .sct-tpl-service-city .sct-hero { padding: 120px 0 64px; }
            .sct-hero-btns { flex-direction: column; }
            .sct-hero-btns > * { width: 100%; justify-content: center; }
            .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
            .sct-tpl-service-city .sct-hero-subtitle { font-size: 1rem; }
            .sct-breadcrumb { font-size: 0.8rem; }
            .sct-tpl-service-city .sct-hero-trust { gap: 12px; }
            .sct-tpl-service-city .sct-hero-trust li { width: 100%; }
            .sct-stats-grid { grid-template-columns: 1fr; gap: 16px; }
            .sct-services-grid { grid-template-columns: 1fr; gap: 22px; }
            .sct-processus-grid { grid-template-columns: 1fr; gap: 16px; }
            .sct-why-grid { grid-template-columns: 1fr; gap: 18px; }
            .sct-tpl-service-city .sct-section-title { font-size: 1.8rem; }
            .sct-tpl-service-city .sct-usecase-text h2 { font-size: 1.8rem; }
            .sct-tpl-service-city .sct-cta-final h2 { font-size: 1.8rem; }
            .sct-tpl-service-city .sct-local-box h2 { font-size: 1.6rem; }
            .sct-tpl-service-city .sct-maillage-head h2 { font-size: 1.7rem; }
            .sct-tpl-service-city .sct-hero-card { padding: 24px; }
            .sct-tpl-service-city .sct-zones-box,
            .sct-tpl-service-city .sct-local-box { padding: 26px 20px; }
            .sct-cta-actions { flex-direction: column; }
            .sct-cta-actions > * { width: 100%; justify-content: center; }
            .sct-tpl-service-city .sct-section { padding: 54px 0; }
            .sct-tpl-service-city .sct-intro-section,
            .sct-tpl-service-city .sct-zones-section,
            .sct-tpl-service-city .sct-local-spec { padding: 54px 0; }
            .sct-tpl-service-city .sct-faq-item summary { padding: 17px 18px; font-size: 0.98rem; }
            .sct-tpl-service-city .sct-faq-answer { padding: 0 18px 20px; }
        }

.sct-tpl-service-city .sct-hero {
            position: relative;
            background-color: #0A2A43;
            background-image: url('/images/service_4_1789775363_6aadce03b2305.webp');
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 78px 0 86px;
        }

.sct-tpl-zone .sct-section { padding: 82px 0; }

.sct-tpl-zone .sct-section-alt { background: #F4F7FB; }

.sct-tpl-zone .sct-section-navy { background: #0A2A43; color: #fff; }

.sct-tpl-zone .sct-section-head { text-align: center; max-width: 760px; margin: 0 auto 46px; }

.sct-tpl-zone .sct-eyebrow {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1.6px;
            text-transform: uppercase;
            color: #FF7A18;
            margin-bottom: 10px;
        }

.sct-tpl-zone .sct-section-title {
            font-family: 'Barlow Condensed', 'Inter', sans-serif;
            font-weight: 700;
            font-size: 2.45rem;
            line-height: 1.15;
            color: #0A2A43;
            margin: 0;
        }

.sct-tpl-zone .sct-section-navy .sct-section-title { color: #fff; }

.sct-tpl-zone .sct-rule { width: 62px; height: 4px; border-radius: 4px; background: #FF7A18; margin: 16px auto 20px; }

.sct-tpl-zone .sct-rule-left { margin-left: 0; margin-right: auto; }

.sct-tpl-zone .sct-section-head p { color: #5B6B7C; font-size: 1.04rem; margin: 0; }

.sct-tpl-zone .sct-section-navy .sct-section-head p { color: rgba(255,255,255,.78); }

.sct-tpl-zone .sct-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 28px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            border: 2px solid transparent;
            cursor: pointer;
            text-align: center;
            transition: transform .2s ease, background-color .2s ease, color .2s ease;
        }

.sct-tpl-zone .sct-btn-accent { background: #FF7A18; color: #fff; box-shadow: 0 8px 20px rgba(255,122,24,.28); }

.sct-tpl-zone .sct-btn-accent:hover { background: #E56A0C; color: #fff; transform: translateY(-2px); }

.sct-tpl-zone .sct-btn-primary { background: #0B5FA5; color: #fff; box-shadow: 0 8px 20px rgba(11,95,165,.25); }

.sct-tpl-zone .sct-btn-primary:hover { background: #08487E; color: #fff; transform: translateY(-2px); }

.sct-tpl-zone .sct-btn-ghost { border-color: rgba(255,255,255,.7); color: #fff; }

.sct-tpl-zone .sct-btn-ghost:hover { background: #fff; color: #0A2A43; transform: translateY(-2px); }

.sct-tpl-zone .sct-btn-block { width: 100%; }

.sct-tpl-zone .sct-hero {
            position: relative;
            background-color: #0A2A43;
            background-image: url('/images/service_3_1789775349_6aadcdf5ce486.webp');
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 78px 0 86px;
        }

.sct-tpl-zone .sct-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(115deg, rgba(10,42,67,.95) 0%, rgba(10,42,67,.88) 45%, rgba(11,95,165,.70) 100%);
        }

.sct-tpl-zone .sct-hero-container { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.sct-tpl-zone .sct-breadcrumb a { color: rgba(255,255,255,.82); }

.sct-tpl-zone .sct-breadcrumb a:hover { color: #FF7A18; }

.sct-tpl-zone .sct-bc-sep { color: rgba(255,255,255,.45); }

.sct-tpl-zone .sct-bc-current { color: #FF7A18; font-weight: 600; }

.sct-tpl-zone .sct-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }

.sct-tpl-zone .sct-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,.12);
            border: 1px solid rgba(255,255,255,.24);
            padding: 7px 15px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
        }

.sct-tpl-zone .sct-hero-badge i { color: #FF7A18; }

.sct-tpl-zone .sct-hero-text h1 {
            font-family: 'Barlow Condensed', 'Inter', sans-serif;
            font-weight: 700;
            font-size: 3.05rem;
            line-height: 1.12;
            letter-spacing: .2px;
            margin: 0 0 18px;
        }

.sct-tpl-zone .sct-hero-text h1 span { color: #FF7A18; }

.sct-tpl-zone .sct-hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.88); max-width: 640px; margin: 0 0 30px; }

.sct-tpl-zone .sct-hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 32px; }

.sct-tpl-zone .sct-hero-trust li { display: flex; align-items: center; gap: 9px; font-size: 0.94rem; font-weight: 500; list-style: none; }

.sct-tpl-zone .sct-hero-trust i { color: #FF7A18; }

.sct-tpl-zone .sct-hero-card {
            background: #fff;
            color: #1F2937;
            border-radius: 16px;
            padding: 30px;
            border-top: 5px solid #FF7A18;
            box-shadow: 0 18px 44px rgba(10,42,67,.30);
        }

.sct-tpl-zone .sct-hero-card-title {
            display: block;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.62rem;
            color: #0A2A43;
            margin-bottom: 4px;
        }

.sct-tpl-zone .sct-hero-card-sub { font-size: 0.92rem; color: #5B6B7C; margin: 0 0 20px; }

.sct-tpl-zone .sct-hero-card-list { display: grid; gap: 15px; margin-bottom: 22px; }

.sct-tpl-zone .sct-hero-card-list li { display: flex; gap: 13px; align-items: flex-start; list-style: none; }

.sct-tpl-zone .sct-hc-ic {
            width: 40px; height: 40px; flex-shrink: 0;
            border-radius: 10px;
            background: rgba(11,95,165,.10);
            color: #0B5FA5;
            display: inline-flex; align-items: center; justify-content: center;
        }

.sct-tpl-zone .sct-hc-lbl { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 1px; color: #5B6B7C; font-weight: 600; }

.sct-tpl-zone .sct-hc-val { font-weight: 600; color: #0A2A43; font-size: 0.97rem; }

.sct-tpl-zone a.sct-hc-val:hover { color: #0B5FA5; }

.sct-tpl-zone .sct-stats-band { background: #0A2A43; padding: 54px 0; }

.sct-tpl-zone .sct-stat-card {
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 12px;
            padding: 28px 20px;
            text-align: center;
        }

.sct-tpl-zone .sct-stat-value {
            display: block;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 2.6rem;
            line-height: 1;
            color: #fff;
        }

.sct-tpl-zone .sct-stat-label { font-size: 0.9rem; color: rgba(255,255,255,.76); margin-top: 8px; }

.sct-tpl-zone .sct-intro-section { padding: 82px 0; background: #fff; }

.sct-tpl-zone .sct-intro-wrap { max-width: 880px; margin: 0 auto; }

.sct-tpl-zone .sct-intro-wrap p { color: #5B6B7C; font-size: 1.04rem; margin: 0 0 18px; }

.sct-tpl-zone .sct-intro-wrap p:last-child { margin-bottom: 0; }

.sct-tpl-zone .sct-intro-wrap strong { color: #0A2A43; }

.sct-tpl-zone .sct-service-card {
            background: #fff;
            border: 1px solid #E2E8F0;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(10,42,67,.06);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

.sct-tpl-zone .sct-service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 28px rgba(10,42,67,.10);
            border-color: rgba(11,95,165,.35);
        }

.sct-tpl-zone .sct-service-media { padding: 10px 10px 0; }

.sct-tpl-zone .sct-service-media img { width: 100%; height: 210px; object-fit: cover; border-radius: 9px; }

.sct-tpl-zone .sct-service-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex-grow: 1; }

.sct-tpl-zone .sct-service-icon {
            width: 42px; height: 42px;
            border-radius: 10px;
            background: rgba(11,95,165,.10);
            color: #0B5FA5;
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 1.05rem;
            margin-bottom: 12px;
        }

.sct-tpl-zone .sct-service-body h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            color: #0A2A43;
            margin: 0 0 8px;
        }

.sct-tpl-zone .sct-service-body p { color: #5B6B7C; font-size: 0.95rem; margin: 0 0 16px; }

.sct-tpl-zone .sct-service-link {
            margin-top: auto;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 0.93rem;
            color: #0B5FA5;
        }

.sct-tpl-zone .sct-service-link::after {
            content: "\f061";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 0.8rem;
            transition: transform .2s ease;
        }

.sct-tpl-zone .sct-service-link:hover { color: #FF7A18; }

.sct-tpl-zone .sct-service-link:hover::after { transform: translateX(4px); }

.sct-tpl-zone .sct-zones-section { padding: 82px 0; background: #fff; }

.sct-tpl-zone .sct-zones-box {
            background: #F4F7FB;
            border: 1px solid #E2E8F0;
            border-left: 5px solid #FF7A18;
            border-radius: 12px;
            padding: 34px 32px;
        }

.sct-tpl-zone .sct-zones-box h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.55rem;
            color: #0A2A43;
            margin: 0 0 6px;
        }

.sct-tpl-zone .sct-zones-box > p { color: #5B6B7C; font-size: 0.96rem; margin: 0 0 20px; }

.sct-tpl-zone .sct-zones-list { display: flex; flex-wrap: wrap; gap: 10px; }

.sct-tpl-zone .sct-zones-list li {
            background: #fff;
            border: 1px solid #E2E8F0;
            border-radius: 40px;
            padding: 8px 16px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #0A2A43;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            overflow-wrap: anywhere;
        }

.sct-tpl-zone .sct-zones-list li::before {
            content: "\f3c5";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #FF7A18;
            font-size: 0.8rem;
        }

.sct-tpl-zone .sct-usecase-media img { width: 100%; border-radius: 16px; box-shadow: 0 10px 28px rgba(10,42,67,.10); }

.sct-tpl-zone .sct-usecase-text h2 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 2.3rem;
            color: #0A2A43;
            margin: 0 0 6px;
        }

.sct-tpl-zone .sct-usecase-body { color: #5B6B7C; }

.sct-tpl-zone .sct-usecase-body p { margin: 0 0 16px; }

.sct-tpl-zone .sct-usecase-body p:last-child { margin-bottom: 0; }

.sct-tpl-zone .sct-usecase-body strong { color: #0A2A43; }

.sct-tpl-zone .sct-engagement-card {
            background: #fff;
            border: 1px solid #E2E8F0;
            border-radius: 12px;
            padding: 30px 26px;
            box-shadow: 0 2px 10px rgba(10,42,67,.06);
        }

.sct-tpl-zone .sct-engagement-card i {
            width: 48px; height: 48px;
            border-radius: 12px;
            background: rgba(11,95,165,.10);
            color: #0B5FA5;
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 14px;
        }

.sct-tpl-zone .sct-engagement-card h3 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.3rem;
            color: #0A2A43;
            margin: 0 0 8px;
        }

.sct-tpl-zone .sct-engagement-card p { color: #5B6B7C; font-size: 0.93rem; margin: 0; }

.sct-tpl-zone .sct-local-spec { padding: 72px 0; background: #fff; }

.sct-tpl-zone .sct-local-box {
            max-width: 880px;
            margin: 0 auto;
            background: #F4F7FB;
            border-radius: 12px;
            padding: 34px 32px;
            border-top: 4px solid #0B5FA5;
        }

.sct-tpl-zone .sct-local-box h2 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.9rem;
            color: #0A2A43;
            margin: 0 0 12px;
        }

.sct-tpl-zone .sct-local-box p { color: #5B6B7C; margin: 0 0 14px; }

.sct-tpl-zone .sct-local-box p:last-child { margin-bottom: 0; }

.sct-tpl-zone .sct-local-box strong { color: #0A2A43; }

.sct-tpl-zone .sct-faq-wrap { max-width: 860px; margin: 0 auto; }

.sct-tpl-zone .sct-faq-item {
            background: #fff;
            border: 1px solid #E2E8F0;
            border-radius: 12px;
            margin-bottom: 14px;
            box-shadow: 0 2px 10px rgba(10,42,67,.06);
            overflow: hidden;
        }

.sct-tpl-zone .sct-faq-item summary {
            list-style: none;
            cursor: pointer;
            padding: 20px 24px;
            font-weight: 700;
            color: #0A2A43;
            font-size: 1.04rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

.sct-tpl-zone .sct-faq-item summary::-webkit-details-marker { display: none; }

.sct-tpl-zone .sct-faq-item summary::after {
            content: "\f078";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #FF7A18;
            font-size: 0.9rem;
            flex-shrink: 0;
            transition: transform .25s ease;
        }

.sct-tpl-zone .sct-faq-item[open] summary::after { transform: rotate(180deg); }

.sct-tpl-zone .sct-faq-answer { padding: 0 24px 22px; color: #5B6B7C; }

.sct-tpl-zone .sct-faq-answer p { margin: 0 0 12px; }

.sct-tpl-zone .sct-faq-answer p:last-child { margin-bottom: 0; }

.sct-tpl-zone .sct-maillage-section { padding: 64px 0; background: #fff; }

.sct-tpl-zone .sct-maillage-head { text-align: center; max-width: 720px; margin: 0 auto 30px; }

.sct-tpl-zone .sct-maillage-head h2 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 2rem;
            color: #0A2A43;
            margin: 0 0 8px;
        }

.sct-tpl-zone .sct-maillage-head p { color: #5B6B7C; font-size: 0.98rem; margin: 0; }

.sct-tpl-zone .sct-maillage-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.sct-tpl-zone .sct-maillage-links li { list-style: none; display: inline-flex; }

.sct-tpl-zone .sct-maillage-links a {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: #fff;
            border: 1px solid #E2E8F0;
            border-radius: 40px;
            padding: 10px 18px;
            font-size: 0.92rem;
            font-weight: 600;
            color: #0A2A43;
            overflow-wrap: anywhere;
            transition: border-color .2s ease, color .2s ease, transform .2s ease;
        }

.sct-tpl-zone .sct-maillage-links a:hover { border-color: #FF7A18; color: #0B5FA5; transform: translateY(-2px); }

.sct-tpl-zone .sct-cta-final {
            background: linear-gradient(115deg, #0B5FA5 0%, #0A2A43 100%);
            color: #fff;
            padding: 64px 0;
            text-align: center;
        }

.sct-tpl-zone .sct-cta-final h2 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 2.25rem;
            margin: 0 0 10px;
        }

.sct-tpl-zone .sct-cta-final p { color: rgba(255,255,255,.85); margin: 0 auto 26px; max-width: 640px; }

@media (max-width: 992px) {
            .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
            .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
            .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
            .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
            .sct-engagements-grid { grid-template-columns: 1fr; }
            .sct-usecase-grid { grid-template-columns: 1fr; gap: 34px; }
            .sct-tpl-zone .sct-hero-text h1 { font-size: 2.5rem; }
            .sct-tpl-zone .sct-section-title { font-size: 2.1rem; }
            .sct-tpl-zone .sct-section { padding: 66px 0; }
            .sct-tpl-zone .sct-intro-section,
            .sct-tpl-zone .sct-zones-section { padding: 66px 0; }
        }

@media (max-width: 640px) {
            .sct-tpl-zone .sct-hero { padding: 120px 0 64px; }
            .sct-hero-btns { flex-direction: column; }
            .sct-hero-btns > * { width: 100%; justify-content: center; }
            .sct-tpl-zone .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
            .sct-tpl-zone .sct-hero-subtitle { font-size: 1rem; }
            .sct-breadcrumb { font-size: 0.8rem; }
            .sct-tpl-zone .sct-hero-trust { gap: 12px; }
            .sct-tpl-zone .sct-hero-trust li { width: 100%; }
            .sct-stats-grid { grid-template-columns: 1fr; gap: 16px; }
            .sct-services-grid { grid-template-columns: 1fr; gap: 22px; }
            .sct-tpl-zone .sct-section-title { font-size: 1.8rem; }
            .sct-tpl-zone .sct-usecase-text h2 { font-size: 1.8rem; }
            .sct-tpl-zone .sct-cta-final h2 { font-size: 1.8rem; }
            .sct-tpl-zone .sct-local-box h2 { font-size: 1.6rem; }
            .sct-tpl-zone .sct-maillage-head h2 { font-size: 1.7rem; }
            .sct-tpl-zone .sct-hero-card { padding: 24px; }
            .sct-tpl-zone .sct-zones-box,
            .sct-tpl-zone .sct-local-box { padding: 26px 20px; }
            .sct-cta-actions { flex-direction: column; }
            .sct-cta-actions > * { width: 100%; justify-content: center; }
            .sct-tpl-zone .sct-section { padding: 54px 0; }
            .sct-tpl-zone .sct-intro-section,
            .sct-tpl-zone .sct-zones-section,
            .sct-tpl-zone .sct-local-spec,
            .sct-tpl-zone .sct-maillage-section { padding: 54px 0; }
            .sct-tpl-zone .sct-faq-item summary { padding: 17px 18px; font-size: 0.98rem; }
            .sct-tpl-zone .sct-faq-answer { padding: 0 18px 20px; }
        }

.sct-tpl-service-hub .sct-hero {
            position: relative;
            background-color: #0A2A43;
            background-image: url('/images/service_2_1789775337_6aadcde96481e.webp');
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 78px 0 86px;
        }

.sct-tpl-zone .sct-hero {
            position: relative;
            background-color: #0A2A43;
            background-image: url('/images/service_1_1789775325_6aadcddd11163.webp');
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 78px 0 86px;
        }

.sct-tpl-service-hub .sct-hero {
            position: relative;
            background-color: #0A2A43;
            background-image: url('/images/service_3_1789775349_6aadcdf5ce486.webp');
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 78px 0 86px;
        }

.sct-tpl-zone .sct-hero {
            position: relative;
            background-color: #0A2A43;
            background-image: url('/images/service_5_1789775376_6aadce1012b07.webp');
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 78px 0 86px;
        }

.sct-tpl-service-hub .sct-hero {
            position: relative;
            background-color: #0A2A43;
            background-image: url('/images/service_4_1789775363_6aadce03b2305.webp');
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 78px 0 86px;
        }

.sct-tpl-service-hub .sct-hero {
            position: relative;
            background-color: #0A2A43;
            background-image: url('/images/service_5_1789775376_6aadce1012b07.webp');
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 78px 0 86px;
        }

.sct-tpl-service-city .sct-hero {
            position: relative;
            background-color: #0A2A43;
            background-image: url('/images/service_2_1789775337_6aadcde96481e.webp');
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 78px 0 86px;
        }

.sct-tpl-service-hub .sct-hero {
            position: relative;
            background-color: #0A2A43;
            background-image: url('/images/service_6_1789775392_6aadce2003cbc.webp');
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 78px 0 86px;
        }

.sct-tpl-service-city .sct-hero {
            position: relative;
            background-color: #0A2A43;
            background-image: url('/images/service_5_1789775376_6aadce1012b07.webp');
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 78px 0 86px;
        }

.sct-tpl-service-city .sct-hero {
            position: relative;
            background-color: #0A2A43;
            background-image: url('/images/service_6_1789775392_6aadce2003cbc.webp');
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 78px 0 86px;
        }

.sct-tpl-service-city .sct-hero {
            position: relative;
            background-color: #0A2A43;
            background-image: url('/images/service_3_1789775349_6aadcdf5ce486.webp');
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 78px 0 86px;
        }

.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }

.footer-legal a:hover { color: var(--accent); }

.sitemap-hero { padding-top: 72px; padding-bottom: 72px; }

.sitemap-hero .container { text-align: center; }

.sitemap-hero h1 { font-size: 3.1rem; margin: 0 auto 16px; max-width: 760px; }

.sitemap-hero .hero-sub { margin-left: auto; margin-right: auto; margin-bottom: 0; }

.sitemap-hero .hero-badges { justify-content: center; }

.sitemap-hero .title-rule { margin-top: 0; margin-bottom: 22px; }

.breadcrumb {
            background: var(--light);
            border-bottom: 1px solid var(--border);
            font-size: 0.86rem;
            color: var(--muted);
        }

.breadcrumb .container { padding-top: 14px; padding-bottom: 14px; }

.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; list-style: none; }

.breadcrumb a { color: var(--primary); font-weight: 600; }

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb i { font-size: 0.7rem; color: var(--muted); }

.sitemap-block { margin-bottom: 58px; }

.sitemap-block:last-child { margin-bottom: 0; }

.sitemap-block-head {
            display: flex;
            align-items: center;
            gap: 16px;
            padding-bottom: 16px;
            margin-bottom: 26px;
            border-bottom: 2px solid var(--border);
        }

.sitemap-block-head .ic {
            width: 48px; height: 48px; flex-shrink: 0;
            border-radius: 12px;
            background: rgba(11,95,165,.10);
            color: var(--primary);
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 1.15rem;
        }

.sitemap-block-head h2 { font-size: 1.95rem; color: var(--navy); }

.sitemap-block-head p { color: var(--muted); font-size: 0.92rem; margin-top: 2px; }

.sitemap-count {
            margin-left: auto;
            flex-shrink: 0;
            background: var(--accent);
            color: #fff;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: .6px;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 40px;
        }

.chip-list { display: flex; flex-wrap: wrap; gap: 12px; }

.chip-list li { display: inline-flex; }

.chip {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 40px;
            padding: 11px 20px;
            font-size: 0.94rem;
            font-weight: 600;
            color: var(--navy);
            box-shadow: var(--shadow-sm);
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
        }

.chip i { color: var(--accent); font-size: 0.85rem; }

.chip:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: rgba(11,95,165,.35);
            color: var(--primary);
        }

.chip-home {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            box-shadow: 0 8px 20px rgba(11,95,165,.25);
        }

.chip-home i { color: #fff; }

.chip-home:hover { background: #08487e; border-color: #08487e; color: #fff; }

.service-group {
            background: #fff;
            border: 1px solid var(--border);
            border-left: 5px solid var(--accent);
            border-radius: var(--radius);
            padding: 26px 28px;
            box-shadow: var(--shadow-sm);
            margin-bottom: 20px;
            transition: box-shadow .25s ease;
        }

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

.service-group:hover { box-shadow: var(--shadow-md); }

.service-group h3 {
            font-size: 1.38rem;
            color: var(--navy);
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

.service-group h3 i { color: var(--primary); font-size: 1rem; }

.service-group > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 16px; }

.service-group .chip { background: var(--light); }

.service-group .chip:hover { background: #fff; }

.sitemap-note {
            margin-top: 44px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px 28px;
            box-shadow: var(--shadow-sm);
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

.sitemap-note i { color: var(--accent); font-size: 1.3rem; margin-top: 3px; }

.sitemap-note strong { display: block; color: var(--navy); font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; }

.sitemap-note p { color: var(--muted); font-size: 0.94rem; }

.sitemap-note a { color: var(--primary); font-weight: 700; }

.sitemap-note a:hover { color: var(--accent); }

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

@media (max-width: 768px) {
            .sitemap-hero { padding-top: 54px; padding-bottom: 54px; }
            .sitemap-hero h1 { font-size: 2.3rem; }
            .section { padding-top: 58px; padding-bottom: 58px; }
            .sitemap-block-head { flex-wrap: wrap; gap: 12px; }
            .sitemap-block-head h2 { font-size: 1.6rem; }
            .sitemap-count { margin-left: 0; }
            .service-group { padding: 22px 20px; }
            .chip { font-size: 0.88rem; padding: 10px 16px; }
            .footer-bottom { flex-direction: column; align-items: flex-start; }
        }

@media (max-width: 560px) {
            .footer-grid { grid-template-columns: 1fr; }
            .chip-list { gap: 10px; }
        }