:root {
            --primary: #1B4D7A;
            --primary-dark: #143a5c;
            --secondary: #F39C12;
            --secondary-dark: #d9860b;
            --dark: #1a2733;
            --gray: #5a6b7a;
            --light: #F5F7FA;
            --white: #ffffff;
            --border: #e2e8f0;
            --shadow: 0 10px 30px rgba(27,77,122,0.10);
            --shadow-lg: 0 20px 50px rgba(27,77,122,0.16);
        }

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

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

body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background: var(--white);
            overflow-x: hidden;
        }

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

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

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

section { padding: 80px 0; }

h1, h2, h3 { line-height: 1.2; }

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

.section-head .eyebrow {
            display: inline-block; color: var(--secondary); font-weight: 700;
            text-transform: uppercase; letter-spacing: 2px; font-size: 0.82rem; margin-bottom: 12px;
        }

.section-head h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 14px; }

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

.btn {
            display: inline-flex; align-items: center; gap: 10px; justify-content: center;
            padding: 15px 30px; border-radius: 50px; font-weight: 700; font-size: 1rem;
            cursor: pointer; border: none; transition: transform .25s, box-shadow .25s, background .25s;
        }

.btn-primary { background: var(--secondary); color: #fff; box-shadow: 0 8px 22px rgba(243,156,18,0.35); }

.btn-primary:hover { background: var(--secondary-dark); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(243,156,18,0.45); }

.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }

.btn-outline:hover { background: #fff; color: var(--primary); transform: translateY(-3px); }

.topbar { background: var(--primary-dark); color: #fff; font-size: 0.86rem; }

.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; flex-wrap: wrap; gap: 8px; }

.topbar a { color: #fff; display: inline-flex; align-items: center; gap: 6px; }

.topbar .tb-phone { font-weight: 700; }

.topbar .tb-phone i { color: var(--secondary); }

.topbar-left span { display: inline-flex; align-items: center; gap: 6px; }

.topbar-left i { color: var(--secondary); }

.header {
            position: sticky; top: 0; z-index: 1000; background: #fff;
            box-shadow: 0 2px 14px rgba(0,0,0,0.06);
        }

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

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

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

.logo-text { font-size: 1.4rem; font-weight: 800; color: var(--primary); letter-spacing: 1px; }

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

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

.nav a { font-weight: 600; color: var(--dark); transition: color .2s; }

.nav a:hover { color: var(--secondary); }

.nav .btn-cta-nav {
            background: var(--secondary); color: #fff; padding: 11px 22px; border-radius: 50px;
            font-weight: 700; box-shadow: 0 6px 16px rgba(243,156,18,0.35);
        }

.nav .btn-cta-nav:hover { background: var(--secondary-dark); color: #fff; }

.hero {
            position: relative; color: #fff; padding: 90px 0;
            background: linear-gradient(rgba(20,58,92,0.82), rgba(20,58,92,0.88)), url('https://webflash.pro/images/hero_1783507374_6a4e29ae2c2ab.webp') center/cover no-repeat;
        }

.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }

.hero-badge {
            display: inline-flex; align-items: center; gap: 8px; background: rgba(243,156,18,0.18);
            border: 1px solid rgba(243,156,18,0.5); color: #ffd591; padding: 8px 16px;
            border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 22px;
        }

.hero h1 { font-size: 2.9rem; margin-bottom: 20px; }

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

.hero p.lead { font-size: 1.15rem; opacity: 0.95; margin-bottom: 28px; max-width: 560px; }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }

.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; }

.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; }

.hero-trust i { color: var(--secondary); }

.devis-card {
            background: #fff; color: var(--dark); border-radius: 18px; padding: 32px;
            box-shadow: var(--shadow-lg);
        }

.devis-card h2 { font-size: 1.5rem; color: var(--primary); margin-bottom: 6px; }

.devis-card .devis-sub { color: var(--gray); font-size: 0.92rem; margin-bottom: 20px; }

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

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

.form-group input, .form-group textarea {
            width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 10px;
            font-size: 0.95rem; font-family: inherit; transition: border-color .2s; background: #fbfcfd;
        }

.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--secondary); background: #fff; }

.devis-card button, #contactForm button { width: 100%; margin-top: 6px; }

.form-status p, .form-status { margin-top: 12px; font-size: 0.92rem; }

.stats { background: var(--primary); color: #fff; padding: 55px 0; }

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

.stat-item .stat-num { font-size: 2.6rem; font-weight: 800; color: var(--secondary); line-height: 1; }

.stat-item .stat-label { margin-top: 10px; font-size: 0.95rem; opacity: 0.9; }

.stat-item i { font-size: 1.6rem; color: var(--secondary); margin-bottom: 12px; display: block; }

.services { background: var(--light); }

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

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

.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.service-img { position: relative; }

.service-img img { width: 100%; height: 210px; object-fit: cover; border-radius: 16px 16px 0 0; }

.service-icon {
            position: absolute; bottom: -22px; left: 24px; width: 48px; height: 48px;
            background: var(--secondary); color: #fff; border-radius: 12px; display: flex;
            align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: 0 6px 16px rgba(243,156,18,0.4);
        }

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

.service-body h3 { font-size: 1.2rem; color: var(--primary); margin-bottom: 10px; }

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

.service-body .svc-link { margin-top: 16px; color: var(--secondary); font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; }

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

.why-card { text-align: center; padding: 34px 22px; border-radius: 16px; background: var(--light); transition: transform .3s, background .3s; }

.why-card:hover { transform: translateY(-6px); background: #fff; box-shadow: var(--shadow); }

.why-icon {
            width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff;
            display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
        }

.why-card h3 { font-size: 1.12rem; color: var(--primary); margin-bottom: 10px; }

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

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

.about-img img { border-radius: 18px; box-shadow: var(--shadow-lg); width: 100%; height: 100%; max-height: 460px; object-fit: cover; }

.about-text .eyebrow { color: var(--secondary); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.82rem; }

.about-text h2 { font-size: 2.1rem; color: var(--primary); margin: 12px 0 18px; }

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

.about-list { list-style: none; margin-top: 20px; }

.about-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; color: var(--dark); }

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

.zones { background: var(--primary-dark); color: #fff; }

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

.zones .section-head p { color: rgba(255,255,255,0.85); }

.zones-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 10px; }

.zone-item {
            background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
            padding: 16px 18px; border-radius: 12px; display: flex; align-items: center; gap: 12px;
            font-weight: 600; transition: background .3s;
        }

.zone-item:hover { background: rgba(243,156,18,0.2); }

.zone-item i { color: var(--secondary); }

.zones-note { text-align: center; margin-top: 28px; color: rgba(255,255,255,0.85); }

.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item { background: var(--light); border-radius: 12px; margin-bottom: 14px; overflow: hidden; border: 1px solid var(--border); }

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

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

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

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

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

.hours-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.hours-card, .info-card { background: #fff; border-radius: 16px; box-shadow: var(--shadow); padding: 34px; border: 1px solid var(--border); }

.hours-card h3, .info-card h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }

.hours-card h3 i, .info-card h3 i { color: var(--secondary); }

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

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

.hours-row .day { font-weight: 600; }

.hours-row .time { color: var(--gray); font-weight: 600; }

.hours-row.today { color: var(--primary); }

.info-line { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }

.info-line:last-child { border-bottom: none; }

.info-line i { width: 40px; height: 40px; flex-shrink: 0; background: var(--light); color: var(--secondary); border-radius: 10px; display: flex; align-items: center; justify-content: center; }

.info-line .info-label { font-size: 0.82rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

.info-line .info-val { font-weight: 700; color: var(--dark); }

.contact { background: var(--light); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 10px; }

.contact-form-wrap { background: #fff; border-radius: 16px; box-shadow: var(--shadow); padding: 36px; border: 1px solid var(--border); }

.contact-form-wrap h3 { color: var(--primary); font-size: 1.4rem; margin-bottom: 20px; }

#contactForm button { background: var(--primary); color: #fff; }

#contactForm button:hover { background: var(--primary-dark); transform: translateY(-2px); }

.map-wrap { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); min-height: 400px; }

.map-wrap iframe { display: block; height: 100%; min-height: 400px; }

.footer { background: var(--dark); color: #cbd5e1; padding: 60px 0 0; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 0.9fr 1.1fr 1fr 1.1fr; gap: 30px; padding-bottom: 40px; }

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

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

.footer-logo span { font-size: 1.3rem; font-weight: 800; color: #fff; }

.footer-col p { font-size: 0.92rem; margin-bottom: 12px; }

.footer-col .f-title { color: #fff; font-weight: 700; font-size: 1.05rem; margin-bottom: 18px; display: block; }

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a, .footer-contact-line { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; transition: color .2s; }

.footer-col ul li a:hover { color: var(--secondary); }

.footer-col ul li a i, .footer-contact-line i { color: var(--secondary); margin-top: 3px; }

.footer-social { display: flex; gap: 12px; margin-top: 18px; }

.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #fff; transition: background .3s, transform .3s; }

.footer-social a:hover { background: var(--secondary); transform: translateY(-3px); }

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

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

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

.footer-links a { color: #cbd5e1; }

.footer-links a:hover { color: var(--secondary); }

.modal { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.6); padding: 20px; overflow-y: auto; }

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

.modal-content { background: #fff; border-radius: 16px; max-width: 640px; width: 100%; margin: 40px auto; padding: 40px; position: relative; }

.modal-content h3 { color: var(--primary); margin-bottom: 20px; font-size: 1.5rem; }

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

.modal-content p strong { color: var(--dark); }

.modal-close { position: absolute; top: 18px; right: 22px; font-size: 1.6rem; color: var(--gray); text-decoration: none; }

.float-call {
            position: fixed; bottom: 22px; right: 22px; z-index: 1500; background: var(--secondary);
            color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center;
            justify-content: center; font-size: 1.5rem; box-shadow: 0 8px 24px rgba(243,156,18,0.5);
            animation: pulse 2s infinite;
        }

@keyframes pulse { 0% { box-shadow: 0 8px 24px rgba(243,156,18,0.5), 0 0 0 0 rgba(243,156,18,0.5); } 70% { box-shadow: 0 8px 24px rgba(243,156,18,0.5), 0 0 0 16px rgba(243,156,18,0); } 100% { box-shadow: 0 8px 24px rgba(243,156,18,0.5), 0 0 0 0 rgba(243,156,18,0); } }

@media (max-width: 1024px) {
            .hero h1 { font-size: 2.4rem; }
            .service-card { width: calc(50% - 14px); }
            .why-grid { grid-template-columns: repeat(2, 1fr); }
            .zones-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

@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); 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; }
            section { padding: 56px 0; }
            .hero { padding: 70px 0 60px; }
            .hero-grid { grid-template-columns: 1fr; gap: 34px; }
            .hero h1 { font-size: 2rem; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
            .services-grid { gap: 20px; }
            .service-card { width: 100%; }
            .why-grid { grid-template-columns: 1fr; }
            .about-grid { grid-template-columns: 1fr; gap: 30px; }
            .zones-grid { grid-template-columns: 1fr; }
            .hours-contact-grid, .contact-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 28px; }
            .section-head h2 { font-size: 1.7rem; }
            .topbar-left { display: none; }
            .topbar-inner { justify-content: center; }
        }

@media (max-width: 640px) {
            .container { padding-left: 16px; padding-right: 16px; }
            .modal-content { padding: 28px 20px; }
            .devis-card { padding: 24px; }
        }

@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 { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

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

:root {
    --sct-primary: #1B4D7A;
    --sct-primary-dark: #143a5c;
    --sct-secondary: #F39C12;
    --sct-secondary-dark: #d9860b;
    --sct-dark: #1a2733;
    --sct-gray: #5a6b7a;
    --sct-light: #F5F7FA;
    --sct-border: #e2e8f0;
    --sct-shadow: 0 10px 30px rgba(27,77,122,0.10);
    --sct-shadow-lg: 0 20px 50px rgba(27,77,122,0.16);
}

.sct-tpl-zone { color: var(--sct-dark); line-height: 1.6; }

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

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

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

.sct-tpl-zone .sct-eyebrow {
    display: inline-block; color: var(--sct-secondary); font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; font-size: 0.82rem; margin-bottom: 12px;
}

.sct-tpl-zone .sct-section-head h2 { font-size: 2.1rem; color: var(--sct-primary); margin: 0 0 14px; line-height: 1.2; }

.sct-tpl-zone .sct-section-head p { color: var(--sct-gray); font-size: 1.03rem; margin: 0; }

.sct-tpl-zone .sct-btn {
    display: inline-flex; align-items: center; gap: 10px; justify-content: center;
    padding: 15px 30px; border-radius: 50px; font-weight: 700; font-size: 1rem;
    border: none; cursor: pointer; text-decoration: none;
    transition: transform .25s, box-shadow .25s, background .25s, color .25s;
}

.sct-tpl-zone .sct-btn-primary { background: var(--sct-secondary); color: #fff; box-shadow: 0 8px 22px rgba(243,156,18,0.35); }

.sct-tpl-zone .sct-btn-primary:hover { background: var(--sct-secondary-dark); transform: translateY(-3px); }

.sct-tpl-zone .sct-btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.75); }

.sct-tpl-zone .sct-btn-outline:hover { background: #fff; color: var(--sct-primary); transform: translateY(-3px); }

.sct-tpl-zone .sct-btn-solid { background: var(--sct-primary); color: #fff; }

.sct-tpl-zone .sct-btn-solid:hover { background: var(--sct-primary-dark); transform: translateY(-3px); }

.sct-tpl-zone .sct-hero {
    position: relative; color: #fff; padding: 80px 0 70px;
    background: linear-gradient(rgba(20,58,92,0.86), rgba(20,58,92,0.90)), url('/images/service_5_1783507541_6a4e2a555f13c.webp') center/cover no-repeat;
}

.sct-tpl-zone .sct-hero-container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

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

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

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

.sct-tpl-zone .sct-breadcrumb {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    max-width: 100%; overflow-wrap: anywhere;
    font-size: 0.86rem; margin-bottom: 22px; color: rgba(255,255,255,0.8);
}

.sct-tpl-zone .sct-breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }

.sct-tpl-zone .sct-breadcrumb a:hover { color: var(--sct-secondary); }

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

.sct-tpl-zone .sct-bc-current { color: var(--sct-secondary); font-weight: 700; }

.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(243,156,18,0.18); border: 1px solid rgba(243,156,18,0.5);
    color: #ffd591; padding: 7px 15px; border-radius: 50px; font-size: 0.82rem; font-weight: 700;
}

.sct-tpl-zone .sct-hero-text h1 { font-size: 2.7rem; line-height: 1.18; margin: 0 0 18px; }

.sct-tpl-zone .sct-hero-text h1 span { color: var(--sct-secondary); }

.sct-tpl-zone .sct-hero-subtitle { font-size: 1.1rem; opacity: 0.95; margin: 0 0 28px; max-width: 620px; }

.sct-tpl-zone .sct-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }

.sct-tpl-zone .sct-hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }

.sct-tpl-zone .sct-hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.93rem; }

.sct-tpl-zone .sct-hero-trust i { color: var(--sct-secondary); }

.sct-tpl-zone .sct-hero-card {
    background: #fff; color: var(--sct-dark); border-radius: 18px; padding: 32px;
    box-shadow: var(--sct-shadow-lg);
}

.sct-tpl-zone .sct-hero-card h2 { font-size: 1.35rem; color: var(--sct-primary); margin: 0 0 6px; line-height: 1.25; }

.sct-tpl-zone .sct-hero-card-sub { color: var(--sct-gray); font-size: 0.9rem; margin: 0 0 20px; }

.sct-tpl-zone .sct-hero-line {
    display: flex; align-items: flex-start; gap: 14px; padding: 13px 0;
    border-bottom: 1px solid var(--sct-border);
}

.sct-tpl-zone .sct-hero-line:last-of-type { border-bottom: none; }

.sct-tpl-zone .sct-hero-line i {
    width: 40px; height: 40px; flex-shrink: 0; background: var(--sct-light); color: var(--sct-secondary);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
}

.sct-tpl-zone .sct-hero-line-label { font-size: 0.76rem; color: var(--sct-gray); text-transform: uppercase; letter-spacing: 1px; }

.sct-tpl-zone .sct-hero-line-val { font-weight: 700; color: var(--sct-dark); font-size: 0.98rem; }

.sct-tpl-zone .sct-hero-line-val a { color: inherit; text-decoration: none; }

.sct-tpl-zone .sct-hero-card .sct-btn { width: 100%; margin-top: 20px; }

.sct-tpl-zone .sct-stats-band { background: var(--sct-primary); color: #fff; padding: 52px 0; }

.sct-tpl-zone .sct-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }

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

.sct-tpl-zone .sct-stat-num { font-size: 2.4rem; font-weight: 800; color: var(--sct-secondary); line-height: 1; }

.sct-tpl-zone .sct-stat-label { margin-top: 10px; font-size: 0.93rem; opacity: 0.9; }

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

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

.sct-tpl-zone .sct-intro-inner p { color: var(--sct-gray); font-size: 1.03rem; margin: 0 0 18px; }

.sct-tpl-zone .sct-intro-inner p strong { color: var(--sct-primary); }

.sct-tpl-zone .sct-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; list-style: none; padding: 0; margin: 0; }

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

.sct-tpl-zone .sct-services-grid li { max-width: 100%; }

.sct-tpl-zone .sct-service-card {
    background: #fff; border: 1px solid var(--sct-border); border-radius: 16px;
    box-shadow: var(--sct-shadow); padding: 32px 26px; height: 100%;
    display: block; text-decoration: none; overflow-wrap: anywhere;
    border-left: 4px solid var(--sct-secondary);
    transition: transform .3s, box-shadow .3s;
}

.sct-tpl-zone .sct-service-card:hover { transform: translateY(-8px); box-shadow: var(--sct-shadow-lg); }

.sct-tpl-zone .sct-service-icon {
    width: 52px; height: 52px; border-radius: 12px; background: var(--sct-secondary); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 18px;
    box-shadow: 0 6px 16px rgba(243,156,18,0.35);
}

.sct-tpl-zone .sct-service-card h3 { font-size: 1.15rem; color: var(--sct-primary); margin: 0 0 10px; }

.sct-tpl-zone .sct-service-card p { color: var(--sct-gray); font-size: 0.95rem; margin: 0; }

.sct-tpl-zone .sct-service-card .sct-svc-link,
.sct-tpl-zone .sct-services-grid a.sct-service-card::after {
    margin-top: 16px; color: var(--sct-secondary); font-weight: 700; font-size: 0.9rem;
    display: inline-flex; align-items: center; gap: 8px;
}

.sct-tpl-zone .sct-services-grid a.sct-service-card::after { content: "En savoir plus \2192"; }

.sct-tpl-zone .sct-zones-section { background: var(--sct-primary-dark); color: #fff; padding: 80px 0; }

.sct-tpl-zone .sct-zones-section .sct-section-head h2 { color: #fff; }

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

.sct-tpl-zone .sct-zones-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; list-style: none; padding: 0; margin: 0; }

.sct-tpl-zone .sct-zones-list > * { min-width: 0; }

.sct-tpl-zone .sct-zones-list li {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
    padding: 15px 18px; border-radius: 12px; display: flex; align-items: center; gap: 12px;
    font-weight: 600; font-size: 0.95rem; transition: background .3s; overflow-wrap: anywhere;
}

.sct-tpl-zone .sct-zones-list li:hover { background: rgba(243,156,18,0.2); }

.sct-tpl-zone .sct-zones-list li::before { content: "\f3c5"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--sct-secondary); }

.sct-tpl-zone .sct-zones-list li a { color: #fff; text-decoration: none; }

.sct-tpl-zone .sct-zones-note { text-align: center; margin: 28px 0 0; color: rgba(255,255,255,0.85); }

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

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

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

.sct-tpl-zone .sct-usecase-img img {
    border-radius: 18px; box-shadow: var(--sct-shadow-lg); width: 100%;
    max-height: 440px; object-fit: cover;
}

.sct-tpl-zone .sct-usecase-text h2 { font-size: 2rem; color: var(--sct-primary); margin: 12px 0 18px; line-height: 1.2; }

.sct-tpl-zone .sct-usecase-text p { color: var(--sct-gray); margin: 0 0 16px; }

.sct-tpl-zone .sct-usecase-text ul { list-style: none; padding: 0; margin: 20px 0 0; }

.sct-tpl-zone .sct-usecase-text li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; color: var(--sct-dark); }

.sct-tpl-zone .sct-usecase-text li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--sct-secondary); margin-top: 3px; }

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

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

.sct-tpl-zone .sct-engagement-card {
    background: #fff; border: 1px solid var(--sct-border); border-radius: 16px; padding: 34px 28px;
    border-top: 4px solid var(--sct-secondary); transition: transform .3s, box-shadow .3s;
}

.sct-tpl-zone .sct-engagement-card:hover { transform: translateY(-6px); box-shadow: var(--sct-shadow); }

.sct-tpl-zone .sct-engagement-icon { font-size: 1.7rem; color: var(--sct-secondary); margin-bottom: 16px; }

.sct-tpl-zone .sct-engagement-card h3 { font-size: 1.15rem; color: var(--sct-primary); margin: 0 0 10px; }

.sct-tpl-zone .sct-engagement-card p { color: var(--sct-gray); font-size: 0.95rem; margin: 0; }

.sct-tpl-zone .sct-local-spec { padding: 70px 0; background: var(--sct-light); }

.sct-tpl-zone .sct-local-box {
    max-width: 900px; margin: 0 auto; background: #fff; border: 1px solid var(--sct-border);
    border-left: 5px solid var(--sct-secondary); border-radius: 14px; padding: 34px 32px;
    box-shadow: var(--sct-shadow);
}

.sct-tpl-zone .sct-local-box h2 { font-size: 1.5rem; color: var(--sct-primary); margin: 0 0 16px; }

.sct-tpl-zone .sct-local-box p { color: var(--sct-gray); margin: 0 0 14px; }

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

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

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

.sct-tpl-zone .sct-faq-item {
    background: var(--sct-light); border: 1px solid var(--sct-border);
    border-radius: 12px; margin-bottom: 14px; overflow: hidden;
}

.sct-tpl-zone .sct-faq-item summary {
    padding: 19px 24px; font-weight: 700; color: var(--sct-primary); cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px; list-style: none;
}

.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: var(--sct-secondary); flex-shrink: 0; transition: transform .3s;
}

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

.sct-tpl-zone .sct-faq-answer { padding: 0 24px 22px; color: var(--sct-gray); }

.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: 70px 0; background: var(--sct-light); }

.sct-tpl-zone .sct-maillage-title { text-align: center; font-size: 1.7rem; color: var(--sct-primary); margin: 0 0 14px; line-height: 1.22; }

.sct-tpl-zone .sct-maillage-sub { text-align: center; color: var(--sct-gray); margin: 0 auto 34px; max-width: 720px; }

.sct-tpl-zone .sct-maillage-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; list-style: none; padding: 0; margin: 0; }

.sct-tpl-zone .sct-maillage-links li { max-width: 100%; }

.sct-tpl-zone .sct-maillage-links a {
    display: inline-flex; align-items: center; gap: 9px; background: #fff;
    border: 1px solid var(--sct-border); color: var(--sct-primary); font-weight: 600;
    padding: 11px 20px; border-radius: 50px; font-size: 0.93rem; text-decoration: none;
    overflow-wrap: anywhere; transition: background .25s, color .25s, transform .25s, border-color .25s;
}

.sct-tpl-zone .sct-maillage-links a::before {
    content: "\f3c5"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--sct-secondary);
}

.sct-tpl-zone .sct-maillage-links a:hover {
    background: var(--sct-secondary); border-color: var(--sct-secondary); color: #fff; transform: translateY(-3px);
}

.sct-tpl-zone .sct-maillage-links a:hover::before { color: #fff; }

.sct-tpl-zone .sct-cta-final {
    padding: 76px 0; text-align: center; color: #fff;
    background: linear-gradient(135deg, var(--sct-primary), var(--sct-primary-dark));
}

.sct-tpl-zone .sct-cta-final h2 { font-size: 2rem; margin: 0 0 14px; line-height: 1.22; }

.sct-tpl-zone .sct-cta-final p { font-size: 1.05rem; opacity: 0.92; margin: 0 auto 30px; max-width: 680px; }

.sct-tpl-zone .sct-cta-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.sct-tpl-zone .sct-float-call {
    position: fixed; bottom: 22px; right: 22px; z-index: 1500; background: var(--sct-secondary);
    color: #fff; width: 58px; height: 58px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 1.4rem; text-decoration: none;
    box-shadow: 0 8px 24px rgba(243,156,18,0.5);
}

@media (max-width: 1024px) {
    .sct-tpl-zone .sct-hero-text h1 { font-size: 2.25rem; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-zones-list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-zone .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-zone .sct-usecase-grid { grid-template-columns: 1fr; gap: 34px; }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-zones-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sct-tpl-zone .sct-section,
    .sct-tpl-zone .sct-intro-section,
    .sct-tpl-zone .sct-usecase-section,
    .sct-tpl-zone .sct-faq-section,
    .sct-tpl-zone .sct-zones-section,
    .sct-tpl-zone .sct-maillage-section { padding: 56px 0; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; gap: 22px; }
    .sct-tpl-zone .sct-section-head h2 { font-size: 1.65rem; }
    .sct-tpl-zone .sct-usecase-text h2 { font-size: 1.6rem; }
    .sct-tpl-zone .sct-maillage-title { font-size: 1.45rem; }
    .sct-tpl-zone .sct-cta-final h2 { font-size: 1.6rem; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 120px 0 56px; }
    .sct-tpl-zone .sct-hero-container { padding: 0 18px; }
    .sct-tpl-zone .sct-breadcrumb { font-size: 0.8rem; margin-bottom: 18px; }
    .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-tpl-zone .sct-hero-btns { flex-direction: column; }
    .sct-tpl-zone .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-cta-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-hero-card { padding: 24px; }
    .sct-tpl-zone .sct-zones-list { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-local-box { padding: 26px 20px; }
    .sct-tpl-zone .sct-stat-num { font-size: 2rem; }
    .sct-tpl-zone .sct-float-call { bottom: 16px; right: 16px; }
}

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

.sct-tpl-service-hub { color: var(--sct-dark); line-height: 1.6; }

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

.sct-tpl-service-hub .sct-section-alt { background: var(--sct-light); }

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

.sct-tpl-service-hub .sct-eyebrow {
    display: inline-block; color: var(--sct-secondary); font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; font-size: 0.82rem; margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-section-head h2 { font-size: 2.1rem; color: var(--sct-primary); margin: 0 0 14px; line-height: 1.2; }

.sct-tpl-service-hub .sct-section-head p { color: var(--sct-gray); font-size: 1.03rem; margin: 0; }

.sct-tpl-service-hub .sct-btn {
    display: inline-flex; align-items: center; gap: 10px; justify-content: center;
    padding: 15px 30px; border-radius: 50px; font-weight: 700; font-size: 1rem;
    border: none; cursor: pointer; text-decoration: none;
    transition: transform .25s, box-shadow .25s, background .25s, color .25s;
}

.sct-tpl-service-hub .sct-btn-primary { background: var(--sct-secondary); color: #fff; box-shadow: 0 8px 22px rgba(243,156,18,0.35); }

.sct-tpl-service-hub .sct-btn-primary:hover { background: var(--sct-secondary-dark); transform: translateY(-3px); }

.sct-tpl-service-hub .sct-btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.75); }

.sct-tpl-service-hub .sct-btn-outline:hover { background: #fff; color: var(--sct-primary); transform: translateY(-3px); }

.sct-tpl-service-hub .sct-btn-solid { background: var(--sct-primary); color: #fff; }

.sct-tpl-service-hub .sct-btn-solid:hover { background: var(--sct-primary-dark); transform: translateY(-3px); }

.sct-tpl-service-hub .sct-hero {
    position: relative; color: #fff; padding: 80px 0 70px;
    background: linear-gradient(rgba(20,58,92,0.86), rgba(20,58,92,0.90)), url('/images/service_5_1783507541_6a4e2a555f13c.webp') center/cover no-repeat;
}

.sct-tpl-service-hub .sct-hero-container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

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

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

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

.sct-tpl-service-hub .sct-breadcrumb {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    max-width: 100%; overflow-wrap: anywhere;
    font-size: 0.86rem; margin-bottom: 22px; color: rgba(255,255,255,0.8);
}

.sct-tpl-service-hub .sct-breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }

.sct-tpl-service-hub .sct-breadcrumb a:hover { color: var(--sct-secondary); }

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

.sct-tpl-service-hub .sct-bc-current { color: var(--sct-secondary); font-weight: 700; }

.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(243,156,18,0.18); border: 1px solid rgba(243,156,18,0.5);
    color: #ffd591; padding: 7px 15px; border-radius: 50px; font-size: 0.82rem; font-weight: 700;
}

.sct-tpl-service-hub .sct-hero-text h1 { font-size: 2.7rem; line-height: 1.18; margin: 0 0 18px; }

.sct-tpl-service-hub .sct-hero-text h1 span { color: var(--sct-secondary); }

.sct-tpl-service-hub .sct-hero-subtitle { font-size: 1.1rem; opacity: 0.95; margin: 0 0 28px; max-width: 620px; }

.sct-tpl-service-hub .sct-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }

.sct-tpl-service-hub .sct-hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }

.sct-tpl-service-hub .sct-hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.93rem; }

.sct-tpl-service-hub .sct-hero-trust i { color: var(--sct-secondary); }

.sct-tpl-service-hub .sct-hero-card {
    background: #fff; color: var(--sct-dark); border-radius: 18px; padding: 32px;
    box-shadow: var(--sct-shadow-lg);
}

.sct-tpl-service-hub .sct-hero-card h2 { font-size: 1.35rem; color: var(--sct-primary); margin: 0 0 6px; line-height: 1.25; }

.sct-tpl-service-hub .sct-hero-card-sub { color: var(--sct-gray); font-size: 0.9rem; margin: 0 0 20px; }

.sct-tpl-service-hub .sct-hero-line {
    display: flex; align-items: flex-start; gap: 14px; padding: 13px 0;
    border-bottom: 1px solid var(--sct-border);
}

.sct-tpl-service-hub .sct-hero-line:last-of-type { border-bottom: none; }

.sct-tpl-service-hub .sct-hero-line i {
    width: 40px; height: 40px; flex-shrink: 0; background: var(--sct-light); color: var(--sct-secondary);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
}

.sct-tpl-service-hub .sct-hero-line-label { font-size: 0.76rem; color: var(--sct-gray); text-transform: uppercase; letter-spacing: 1px; }

.sct-tpl-service-hub .sct-hero-line-val { font-weight: 700; color: var(--sct-dark); font-size: 0.98rem; }

.sct-tpl-service-hub .sct-hero-line-val a { color: inherit; text-decoration: none; }

.sct-tpl-service-hub .sct-hero-card .sct-btn { width: 100%; margin-top: 20px; }

.sct-tpl-service-hub .sct-stats-band { background: var(--sct-primary); color: #fff; padding: 52px 0; }

.sct-tpl-service-hub .sct-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }

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

.sct-tpl-service-hub .sct-stat-num { font-size: 2.4rem; font-weight: 800; color: var(--sct-secondary); line-height: 1; }

.sct-tpl-service-hub .sct-stat-label { margin-top: 10px; font-size: 0.93rem; opacity: 0.9; }

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

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

.sct-tpl-service-hub .sct-intro-inner p { color: var(--sct-gray); font-size: 1.03rem; margin: 0 0 18px; }

.sct-tpl-service-hub .sct-intro-inner p strong { color: var(--sct-primary); }

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

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

.sct-tpl-service-hub .sct-service-card {
    background: #fff; border-radius: 16px; border: 1px solid var(--sct-border);
    box-shadow: var(--sct-shadow); display: flex; flex-direction: column;
    transition: transform .3s, box-shadow .3s;
}

.sct-tpl-service-hub .sct-service-card:hover { transform: translateY(-8px); box-shadow: var(--sct-shadow-lg); }

.sct-tpl-service-hub .sct-service-img { position: relative; }

.sct-tpl-service-hub .sct-service-img img { width: 100%; height: 210px; object-fit: cover; border-radius: 16px 16px 0 0; display: block; }

.sct-tpl-service-hub .sct-service-icon {
    position: absolute; bottom: -22px; left: 24px; width: 48px; height: 48px;
    background: var(--sct-secondary); color: #fff; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
    box-shadow: 0 6px 16px rgba(243,156,18,0.4);
}

.sct-tpl-service-hub .sct-service-body { padding: 34px 24px 26px; flex: 1; }

.sct-tpl-service-hub .sct-service-body h3 { font-size: 1.17rem; color: var(--sct-primary); margin: 0 0 10px; }

.sct-tpl-service-hub .sct-service-body p { color: var(--sct-gray); font-size: 0.95rem; margin: 0; }

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

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

.sct-tpl-service-hub .sct-step {
    background: #fff; border: 1px solid var(--sct-border); border-radius: 16px;
    padding: 30px 20px; text-align: center; position: relative; transition: transform .3s, box-shadow .3s;
}

.sct-tpl-service-hub .sct-step:hover { transform: translateY(-6px); box-shadow: var(--sct-shadow); }

.sct-tpl-service-hub .sct-step-icon {
    width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 50%;
    background: linear-gradient(135deg, var(--sct-primary), var(--sct-primary-dark));
    color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
}

.sct-tpl-service-hub .sct-step-num {
    position: absolute; top: 16px; right: 18px; font-size: 1.5rem; font-weight: 800;
    color: rgba(27,77,122,0.12); line-height: 1;
}

.sct-tpl-service-hub .sct-step h3 { font-size: 1.03rem; color: var(--sct-primary); margin: 0 0 8px; }

.sct-tpl-service-hub .sct-step p { color: var(--sct-gray); font-size: 0.9rem; margin: 0; }

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

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

.sct-tpl-service-hub .sct-why-card {
    text-align: center; padding: 34px 22px; border-radius: 16px; background: #fff;
    border: 1px solid var(--sct-border); transition: transform .3s, box-shadow .3s;
}

.sct-tpl-service-hub .sct-why-card:hover { transform: translateY(-6px); box-shadow: var(--sct-shadow); }

.sct-tpl-service-hub .sct-why-icon {
    width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 50%;
    background: linear-gradient(135deg, var(--sct-primary), var(--sct-primary-dark));
    color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.45rem;
}

.sct-tpl-service-hub .sct-why-card h3 { font-size: 1.1rem; color: var(--sct-primary); margin: 0 0 10px; }

.sct-tpl-service-hub .sct-why-card p { color: var(--sct-gray); font-size: 0.93rem; margin: 0; }

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

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

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

.sct-tpl-service-hub .sct-usecase-img img {
    border-radius: 18px; box-shadow: var(--sct-shadow-lg); width: 100%;
    max-height: 440px; object-fit: cover;
}

.sct-tpl-service-hub .sct-usecase-text h2 { font-size: 2rem; color: var(--sct-primary); margin: 12px 0 18px; line-height: 1.2; }

.sct-tpl-service-hub .sct-usecase-text p { color: var(--sct-gray); margin: 0 0 16px; }

.sct-tpl-service-hub .sct-usecase-text ul { list-style: none; padding: 0; margin: 20px 0 0; }

.sct-tpl-service-hub .sct-usecase-text li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; color: var(--sct-dark); }

.sct-tpl-service-hub .sct-usecase-text li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--sct-secondary); margin-top: 3px; }

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

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

.sct-tpl-service-hub .sct-engagement-card {
    background: #fff; border: 1px solid var(--sct-border); border-radius: 16px; padding: 34px 28px;
    border-top: 4px solid var(--sct-secondary); transition: transform .3s, box-shadow .3s;
}

.sct-tpl-service-hub .sct-engagement-card:hover { transform: translateY(-6px); box-shadow: var(--sct-shadow); }

.sct-tpl-service-hub .sct-engagement-icon { font-size: 1.7rem; color: var(--sct-secondary); margin-bottom: 16px; }

.sct-tpl-service-hub .sct-engagement-card h3 { font-size: 1.15rem; color: var(--sct-primary); margin: 0 0 10px; }

.sct-tpl-service-hub .sct-engagement-card p { color: var(--sct-gray); font-size: 0.95rem; margin: 0; }

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

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

.sct-tpl-service-hub .sct-faq-item {
    background: var(--sct-light); border: 1px solid var(--sct-border);
    border-radius: 12px; margin-bottom: 14px; overflow: hidden;
}

.sct-tpl-service-hub .sct-faq-item summary {
    padding: 19px 24px; font-weight: 700; color: var(--sct-primary); cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px; list-style: none;
}

.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: var(--sct-secondary); flex-shrink: 0; transition: transform .3s;
}

.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: var(--sct-gray); }

.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: 78px 0; }

.sct-tpl-service-hub .sct-maillage-cities { background: var(--sct-primary-dark); color: #fff; }

.sct-tpl-service-hub .sct-maillage-cities .sct-maillage-title { color: #fff; }

.sct-tpl-service-hub .sct-maillage-cities .sct-maillage-sub { color: rgba(255,255,255,0.85); }

.sct-tpl-service-hub .sct-maillage-alt { background: var(--sct-light); }

.sct-tpl-service-hub .sct-maillage-title { text-align: center; font-size: 1.85rem; color: var(--sct-primary); margin: 0 0 14px; line-height: 1.22; }

.sct-tpl-service-hub .sct-maillage-sub { text-align: center; color: var(--sct-gray); margin: 0 auto 36px; max-width: 720px; }

.sct-tpl-service-hub .sct-cities-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
    list-style: none; padding: 0; margin: 0;
}

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

.sct-tpl-service-hub .sct-cities-grid li { max-width: 100%; }

.sct-tpl-service-hub .sct-cities-grid a {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
    color: #fff; text-decoration: none; font-weight: 600; font-size: 0.95rem;
    padding: 15px 18px; border-radius: 12px; overflow-wrap: anywhere;
    transition: background .3s, border-color .3s, transform .3s;
}

.sct-tpl-service-hub .sct-cities-grid a::before {
    content: "\f3c5"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    color: var(--sct-secondary); flex-shrink: 0;
}

.sct-tpl-service-hub .sct-cities-grid a:hover {
    background: rgba(243,156,18,0.22); border-color: rgba(243,156,18,0.55); transform: translateY(-3px);
}

.sct-tpl-service-hub .sct-maillage-note { text-align: center; margin: 30px 0 0; color: rgba(255,255,255,0.85); }

.sct-tpl-service-hub .sct-maillage-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; list-style: none; padding: 0; margin: 0; }

.sct-tpl-service-hub .sct-maillage-links li { max-width: 100%; }

.sct-tpl-service-hub .sct-maillage-links a {
    display: inline-flex; align-items: center; gap: 9px; background: #fff;
    border: 1px solid var(--sct-border); color: var(--sct-primary); font-weight: 600;
    padding: 11px 20px; border-radius: 50px; font-size: 0.93rem; text-decoration: none;
    overflow-wrap: anywhere; transition: background .25s, color .25s, transform .25s, border-color .25s;
}

.sct-tpl-service-hub .sct-maillage-links a::before {
    content: "\f0ad"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--sct-secondary);
}

.sct-tpl-service-hub .sct-maillage-links a:hover {
    background: var(--sct-secondary); border-color: var(--sct-secondary); color: #fff; transform: translateY(-3px);
}

.sct-tpl-service-hub .sct-maillage-links a:hover::before { color: #fff; }

.sct-tpl-service-hub .sct-cta-final {
    padding: 76px 0; text-align: center; color: #fff;
    background: linear-gradient(135deg, var(--sct-primary), var(--sct-primary-dark));
}

.sct-tpl-service-hub .sct-cta-final h2 { font-size: 2rem; margin: 0 0 14px; line-height: 1.22; }

.sct-tpl-service-hub .sct-cta-final p { font-size: 1.05rem; opacity: 0.92; margin: 0 auto 30px; max-width: 680px; }

.sct-tpl-service-hub .sct-cta-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.sct-tpl-service-hub .sct-float-call {
    position: fixed; bottom: 22px; right: 22px; z-index: 1500; background: var(--sct-secondary);
    color: #fff; width: 58px; height: 58px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 1.4rem; text-decoration: none;
    box-shadow: 0 8px 24px rgba(243,156,18,0.5);
}

@media (max-width: 1024px) {
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 2.25rem; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-cities-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 34px; }
    .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-cities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sct-tpl-service-hub .sct-section,
    .sct-tpl-service-hub .sct-intro-section,
    .sct-tpl-service-hub .sct-usecase-section,
    .sct-tpl-service-hub .sct-faq-section,
    .sct-tpl-service-hub .sct-maillage-section { padding: 56px 0; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; gap: 22px; }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-section-head h2 { font-size: 1.65rem; }
    .sct-tpl-service-hub .sct-usecase-text h2 { font-size: 1.6rem; }
    .sct-tpl-service-hub .sct-maillage-title { font-size: 1.55rem; }
    .sct-tpl-service-hub .sct-cta-final h2 { font-size: 1.6rem; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 120px 0 56px; }
    .sct-tpl-service-hub .sct-hero-container { padding: 0 18px; }
    .sct-tpl-service-hub .sct-breadcrumb { font-size: 0.8rem; margin-bottom: 18px; }
    .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-tpl-service-hub .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-cta-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-cta-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-hero-card { padding: 24px; }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-cities-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-stat-num { font-size: 2rem; }
    .sct-tpl-service-hub .sct-float-call { bottom: 16px; right: 16px; }
}

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

.sct-tpl-service-city { color: var(--sct-dark); line-height: 1.6; }

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

.sct-tpl-service-city .sct-section-alt { background: var(--sct-light); }

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

.sct-tpl-service-city .sct-eyebrow {
    display: inline-block; color: var(--sct-secondary); font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; font-size: 0.82rem; margin-bottom: 12px;
}

.sct-tpl-service-city .sct-section-head h2 { font-size: 2.1rem; color: var(--sct-primary); margin: 0 0 14px; line-height: 1.2; }

.sct-tpl-service-city .sct-section-head p { color: var(--sct-gray); font-size: 1.03rem; margin: 0; }

.sct-tpl-service-city .sct-btn {
    display: inline-flex; align-items: center; gap: 10px; justify-content: center;
    padding: 15px 30px; border-radius: 50px; font-weight: 700; font-size: 1rem;
    border: none; cursor: pointer; text-decoration: none;
    transition: transform .25s, box-shadow .25s, background .25s, color .25s;
}

.sct-tpl-service-city .sct-btn-primary { background: var(--sct-secondary); color: #fff; box-shadow: 0 8px 22px rgba(243,156,18,0.35); }

.sct-tpl-service-city .sct-btn-primary:hover { background: var(--sct-secondary-dark); transform: translateY(-3px); }

.sct-tpl-service-city .sct-btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.75); }

.sct-tpl-service-city .sct-btn-outline:hover { background: #fff; color: var(--sct-primary); transform: translateY(-3px); }

.sct-tpl-service-city .sct-btn-solid { background: var(--sct-primary); color: #fff; }

.sct-tpl-service-city .sct-btn-solid:hover { background: var(--sct-primary-dark); transform: translateY(-3px); }

.sct-tpl-service-city .sct-hero {
    position: relative; color: #fff; padding: 80px 0 70px;
    background: linear-gradient(rgba(20,58,92,0.86), rgba(20,58,92,0.90)), url('/images/service_5_1783507541_6a4e2a555f13c.webp') center/cover no-repeat;
}

.sct-tpl-service-city .sct-hero-container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

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

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

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

.sct-tpl-service-city .sct-breadcrumb {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    max-width: 100%; overflow-wrap: anywhere;
    font-size: 0.86rem; margin-bottom: 22px; color: rgba(255,255,255,0.8);
}

.sct-tpl-service-city .sct-breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }

.sct-tpl-service-city .sct-breadcrumb a:hover { color: var(--sct-secondary); }

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

.sct-tpl-service-city .sct-bc-current { color: var(--sct-secondary); font-weight: 700; }

.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(243,156,18,0.18); border: 1px solid rgba(243,156,18,0.5);
    color: #ffd591; padding: 7px 15px; border-radius: 50px; font-size: 0.82rem; font-weight: 700;
}

.sct-tpl-service-city .sct-hero-text h1 { font-size: 2.7rem; line-height: 1.18; margin: 0 0 18px; }

.sct-tpl-service-city .sct-hero-text h1 span { color: var(--sct-secondary); }

.sct-tpl-service-city .sct-hero-subtitle { font-size: 1.1rem; opacity: 0.95; margin: 0 0 28px; max-width: 620px; }

.sct-tpl-service-city .sct-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }

.sct-tpl-service-city .sct-hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }

.sct-tpl-service-city .sct-hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.93rem; }

.sct-tpl-service-city .sct-hero-trust i { color: var(--sct-secondary); }

.sct-tpl-service-city .sct-hero-card {
    background: #fff; color: var(--sct-dark); border-radius: 18px; padding: 32px;
    box-shadow: var(--sct-shadow-lg);
}

.sct-tpl-service-city .sct-hero-card h2 { font-size: 1.35rem; color: var(--sct-primary); margin: 0 0 6px; line-height: 1.25; }

.sct-tpl-service-city .sct-hero-card-sub { color: var(--sct-gray); font-size: 0.9rem; margin: 0 0 20px; }

.sct-tpl-service-city .sct-hero-line {
    display: flex; align-items: flex-start; gap: 14px; padding: 13px 0;
    border-bottom: 1px solid var(--sct-border);
}

.sct-tpl-service-city .sct-hero-line:last-of-type { border-bottom: none; }

.sct-tpl-service-city .sct-hero-line i {
    width: 40px; height: 40px; flex-shrink: 0; background: var(--sct-light); color: var(--sct-secondary);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
}

.sct-tpl-service-city .sct-hero-line-label { font-size: 0.76rem; color: var(--sct-gray); text-transform: uppercase; letter-spacing: 1px; }

.sct-tpl-service-city .sct-hero-line-val { font-weight: 700; color: var(--sct-dark); font-size: 0.98rem; }

.sct-tpl-service-city .sct-hero-line-val a { color: inherit; text-decoration: none; }

.sct-tpl-service-city .sct-hero-card .sct-btn { width: 100%; margin-top: 20px; }

.sct-tpl-service-city .sct-stats-band { background: var(--sct-primary); color: #fff; padding: 52px 0; }

.sct-tpl-service-city .sct-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }

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

.sct-tpl-service-city .sct-stat-num { font-size: 2.4rem; font-weight: 800; color: var(--sct-secondary); line-height: 1; }

.sct-tpl-service-city .sct-stat-label { margin-top: 10px; font-size: 0.93rem; opacity: 0.9; }

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

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

.sct-tpl-service-city .sct-intro-inner p { color: var(--sct-gray); font-size: 1.03rem; margin: 0 0 18px; }

.sct-tpl-service-city .sct-intro-inner p strong { color: var(--sct-primary); }

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

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

.sct-tpl-service-city .sct-service-card {
    background: #fff; border-radius: 16px; border: 1px solid var(--sct-border);
    box-shadow: var(--sct-shadow); display: flex; flex-direction: column;
    transition: transform .3s, box-shadow .3s;
}

.sct-tpl-service-city .sct-service-card:hover { transform: translateY(-8px); box-shadow: var(--sct-shadow-lg); }

.sct-tpl-service-city .sct-service-img { position: relative; }

.sct-tpl-service-city .sct-service-img img { width: 100%; height: 210px; object-fit: cover; border-radius: 16px 16px 0 0; display: block; }

.sct-tpl-service-city .sct-service-icon {
    position: absolute; bottom: -22px; left: 24px; width: 48px; height: 48px;
    background: var(--sct-secondary); color: #fff; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
    box-shadow: 0 6px 16px rgba(243,156,18,0.4);
}

.sct-tpl-service-city .sct-service-body { padding: 34px 24px 26px; flex: 1; }

.sct-tpl-service-city .sct-service-body h3 { font-size: 1.17rem; color: var(--sct-primary); margin: 0 0 10px; }

.sct-tpl-service-city .sct-service-body p { color: var(--sct-gray); font-size: 0.95rem; margin: 0; }

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

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

.sct-tpl-service-city .sct-step {
    background: #fff; border: 1px solid var(--sct-border); border-radius: 16px;
    padding: 30px 20px; text-align: center; position: relative; transition: transform .3s, box-shadow .3s;
}

.sct-tpl-service-city .sct-step:hover { transform: translateY(-6px); box-shadow: var(--sct-shadow); }

.sct-tpl-service-city .sct-step-icon {
    width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 50%;
    background: linear-gradient(135deg, var(--sct-primary), var(--sct-primary-dark));
    color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
}

.sct-tpl-service-city .sct-step-num {
    position: absolute; top: 16px; right: 18px; font-size: 1.5rem; font-weight: 800;
    color: rgba(27,77,122,0.12); line-height: 1;
}

.sct-tpl-service-city .sct-step h3 { font-size: 1.03rem; color: var(--sct-primary); margin: 0 0 8px; }

.sct-tpl-service-city .sct-step p { color: var(--sct-gray); font-size: 0.9rem; margin: 0; }

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

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

.sct-tpl-service-city .sct-why-card {
    text-align: center; padding: 34px 22px; border-radius: 16px; background: #fff;
    border: 1px solid var(--sct-border); transition: transform .3s, box-shadow .3s;
}

.sct-tpl-service-city .sct-why-card:hover { transform: translateY(-6px); box-shadow: var(--sct-shadow); }

.sct-tpl-service-city .sct-why-icon {
    width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 50%;
    background: linear-gradient(135deg, var(--sct-primary), var(--sct-primary-dark));
    color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.45rem;
}

.sct-tpl-service-city .sct-why-card h3 { font-size: 1.1rem; color: var(--sct-primary); margin: 0 0 10px; }

.sct-tpl-service-city .sct-why-card p { color: var(--sct-gray); font-size: 0.93rem; margin: 0; }

.sct-tpl-service-city .sct-zones-section { background: var(--sct-primary-dark); color: #fff; padding: 80px 0; }

.sct-tpl-service-city .sct-zones-section .sct-section-head h2 { color: #fff; }

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

.sct-tpl-service-city .sct-zones-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; list-style: none; padding: 0; margin: 0; }

.sct-tpl-service-city .sct-zones-list > * { min-width: 0; }

.sct-tpl-service-city .sct-zones-list li {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
    padding: 15px 18px; border-radius: 12px; display: flex; align-items: center; gap: 12px;
    font-weight: 600; font-size: 0.95rem; transition: background .3s; overflow-wrap: anywhere;
}

.sct-tpl-service-city .sct-zones-list li:hover { background: rgba(243,156,18,0.2); }

.sct-tpl-service-city .sct-zones-list li::before { content: "\f3c5"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--sct-secondary); }

.sct-tpl-service-city .sct-zones-list li a { color: #fff; text-decoration: none; }

.sct-tpl-service-city .sct-zones-note { text-align: center; margin: 28px 0 0; color: rgba(255,255,255,0.85); }

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

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

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

.sct-tpl-service-city .sct-usecase-img img {
    border-radius: 18px; box-shadow: var(--sct-shadow-lg); width: 100%;
    max-height: 440px; object-fit: cover;
}

.sct-tpl-service-city .sct-usecase-text h2 { font-size: 2rem; color: var(--sct-primary); margin: 12px 0 18px; line-height: 1.2; }

.sct-tpl-service-city .sct-usecase-text p { color: var(--sct-gray); margin: 0 0 16px; }

.sct-tpl-service-city .sct-usecase-text ul { list-style: none; padding: 0; margin: 20px 0 0; }

.sct-tpl-service-city .sct-usecase-text li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; color: var(--sct-dark); }

.sct-tpl-service-city .sct-usecase-text li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--sct-secondary); margin-top: 3px; }

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

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

.sct-tpl-service-city .sct-engagement-card {
    background: #fff; border: 1px solid var(--sct-border); border-radius: 16px; padding: 34px 28px;
    border-top: 4px solid var(--sct-secondary); transition: transform .3s, box-shadow .3s;
}

.sct-tpl-service-city .sct-engagement-card:hover { transform: translateY(-6px); box-shadow: var(--sct-shadow); }

.sct-tpl-service-city .sct-engagement-icon { font-size: 1.7rem; color: var(--sct-secondary); margin-bottom: 16px; }

.sct-tpl-service-city .sct-engagement-card h3 { font-size: 1.15rem; color: var(--sct-primary); margin: 0 0 10px; }

.sct-tpl-service-city .sct-engagement-card p { color: var(--sct-gray); font-size: 0.95rem; margin: 0; }

.sct-tpl-service-city .sct-local-spec { padding: 70px 0; background: var(--sct-light); }

.sct-tpl-service-city .sct-local-box {
    max-width: 900px; margin: 0 auto; background: #fff; border: 1px solid var(--sct-border);
    border-left: 5px solid var(--sct-secondary); border-radius: 14px; padding: 34px 32px;
    box-shadow: var(--sct-shadow);
}

.sct-tpl-service-city .sct-local-box h2 { font-size: 1.5rem; color: var(--sct-primary); margin: 0 0 16px; }

.sct-tpl-service-city .sct-local-box p { color: var(--sct-gray); margin: 0 0 14px; }

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

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

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

.sct-tpl-service-city .sct-faq-item {
    background: var(--sct-light); border: 1px solid var(--sct-border);
    border-radius: 12px; margin-bottom: 14px; overflow: hidden;
}

.sct-tpl-service-city .sct-faq-item summary {
    padding: 19px 24px; font-weight: 700; color: var(--sct-primary); cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px; list-style: none;
}

.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: var(--sct-secondary); flex-shrink: 0; transition: transform .3s;
}

.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: var(--sct-gray); }

.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: 62px 0; }

.sct-tpl-service-city .sct-maillage-section.sct-maillage-alt { background: var(--sct-light); }

.sct-tpl-service-city .sct-maillage-title { text-align: center; font-size: 1.5rem; color: var(--sct-primary); margin: 0 0 12px; }

.sct-tpl-service-city .sct-maillage-sub { text-align: center; color: var(--sct-gray); margin: 0 auto 32px; max-width: 700px; }

.sct-tpl-service-city .sct-maillage-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; list-style: none; padding: 0; margin: 0; }

.sct-tpl-service-city .sct-maillage-links li { max-width: 100%; }

.sct-tpl-service-city .sct-maillage-links a {
    display: inline-flex; align-items: center; gap: 9px; background: #fff;
    border: 1px solid var(--sct-border); color: var(--sct-primary); font-weight: 600;
    padding: 11px 20px; border-radius: 50px; font-size: 0.93rem; text-decoration: none;
    transition: background .25s, color .25s, transform .25s, border-color .25s;
    overflow-wrap: anywhere;
}

.sct-tpl-service-city .sct-maillage-links a:hover {
    background: var(--sct-secondary); border-color: var(--sct-secondary); color: #fff; transform: translateY(-3px);
}

.sct-tpl-service-city .sct-maillage-links a::before {
    content: "\f3c5"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--sct-secondary);
}

.sct-tpl-service-city .sct-maillage-links a:hover::before { color: #fff; }

.sct-tpl-service-city .sct-maillage-alt .sct-maillage-links a::before { content: "\f0ad"; }

.sct-tpl-service-city .sct-cta-final {
    padding: 76px 0; text-align: center; color: #fff;
    background: linear-gradient(135deg, var(--sct-primary), var(--sct-primary-dark));
}

.sct-tpl-service-city .sct-cta-final h2 { font-size: 2rem; margin: 0 0 14px; line-height: 1.22; }

.sct-tpl-service-city .sct-cta-final p { font-size: 1.05rem; opacity: 0.92; margin: 0 auto 30px; max-width: 680px; }

.sct-tpl-service-city .sct-cta-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.sct-tpl-service-city .sct-float-call {
    position: fixed; bottom: 22px; right: 22px; z-index: 1500; background: var(--sct-secondary);
    color: #fff; width: 58px; height: 58px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 1.4rem; text-decoration: none;
    box-shadow: 0 8px 24px rgba(243,156,18,0.5);
}

@media (max-width: 1024px) {
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 2.25rem; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-zones-list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-city .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-city .sct-usecase-grid { grid-template-columns: 1fr; gap: 34px; }
    .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-zones-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sct-tpl-service-city .sct-section,
    .sct-tpl-service-city .sct-intro-section,
    .sct-tpl-service-city .sct-usecase-section,
    .sct-tpl-service-city .sct-faq-section,
    .sct-tpl-service-city .sct-zones-section { padding: 56px 0; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; gap: 22px; }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-section-head h2 { font-size: 1.65rem; }
    .sct-tpl-service-city .sct-usecase-text h2 { font-size: 1.6rem; }
    .sct-tpl-service-city .sct-cta-final h2 { font-size: 1.6rem; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 56px; }
    .sct-tpl-service-city .sct-hero-container { padding: 0 18px; }
    .sct-tpl-service-city .sct-breadcrumb { font-size: 0.8rem; margin-bottom: 18px; }
    .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-tpl-service-city .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-cta-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-cta-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-hero-card { padding: 24px; }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-zones-list { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-local-box { padding: 26px 20px; }
    .sct-tpl-service-city .sct-stat-num { font-size: 2rem; }
    .sct-tpl-service-city .sct-float-call { bottom: 16px; right: 16px; }
}

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

.sct-tpl-service-city .sct-hero {
    position: relative; color: #fff; padding: 80px 0 70px;
    background: linear-gradient(rgba(20,58,92,0.86), rgba(20,58,92,0.90)), url('/images/service_3_1783507478_6a4e2a16c7c2a.webp') center/cover no-repeat;
}

.sct-tpl-zone .sct-hero {
    position: relative; color: #fff; padding: 80px 0 70px;
    background: linear-gradient(rgba(20,58,92,0.86), rgba(20,58,92,0.90)), url('/images/service_6_1783507560_6a4e2a6855007.webp') center/cover no-repeat;
}

.sct-tpl-service-hub .sct-hero {
    position: relative; color: #fff; padding: 80px 0 70px;
    background: linear-gradient(rgba(20,58,92,0.86), rgba(20,58,92,0.90)), url('/images/service_3_1783507478_6a4e2a16c7c2a.webp') center/cover no-repeat;
}

.sct-tpl-service-city .sct-hero {
    position: relative; color: #fff; padding: 80px 0 70px;
    background: linear-gradient(rgba(20,58,92,0.86), rgba(20,58,92,0.90)), url('/images/service_6_1783507560_6a4e2a6855007.webp') center/cover no-repeat;
}

.sct-tpl-zone .sct-hero {
    position: relative; color: #fff; padding: 80px 0 70px;
    background: linear-gradient(rgba(20,58,92,0.86), rgba(20,58,92,0.90)), url('/images/service_3_1783507478_6a4e2a16c7c2a.webp') center/cover no-repeat;
}

.sct-tpl-service-city .sct-hero {
    position: relative; color: #fff; padding: 80px 0 70px;
    background: linear-gradient(rgba(20,58,92,0.86), rgba(20,58,92,0.90)), url('/images/services_admin_1783541129_6a4ead89e65ae.jpg') center/cover no-repeat;
}

.sct-tpl-service-city .sct-hero {
    position: relative; color: #fff; padding: 80px 0 70px;
    background: linear-gradient(rgba(20,58,92,0.86), rgba(20,58,92,0.90)), url('/images/services_admin_1783541131_6a4ead8ba4a68.jpg') center/cover no-repeat;
}

.sct-tpl-service-hub .sct-hero {
    position: relative; color: #fff; padding: 80px 0 70px;
    background: linear-gradient(rgba(20,58,92,0.86), rgba(20,58,92,0.90)), url('/images/service_6_1783507560_6a4e2a6855007.webp') center/cover no-repeat;
}

.sct-tpl-service-city .sct-hero {
    position: relative; color: #fff; padding: 80px 0 70px;
    background: linear-gradient(rgba(20,58,92,0.86), rgba(20,58,92,0.90)), url('/images/services_admin_1783541398_6a4eae96e8f11.jpg') center/cover no-repeat;
}

.hero-sitemap { padding: 70px 0; text-align: center; }

.hero-sitemap h1 { font-size: 2.6rem; margin-bottom: 16px; }

.hero-sitemap p.lead { margin: 0 auto; max-width: 620px; }

.breadcrumb { display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 0.9rem; margin-top: 26px; color: rgba(255,255,255,0.8); }

.breadcrumb a { color: #ffd591; font-weight: 600; }

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

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

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

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

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

.block-head .block-icon {
            width: 52px; height: 52px; flex-shrink: 0; border-radius: 14px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff;
            display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
        }

.block-head h2 { font-size: 1.55rem; color: var(--primary); }

.block-head .block-sub { color: var(--gray); font-size: 0.92rem; margin-top: 4px; }

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

.chip {
            display: inline-flex; align-items: center; gap: 10px;
            background: #fff; border: 1.5px solid var(--border); border-radius: 50px;
            padding: 12px 22px; font-weight: 600; font-size: 0.95rem; color: var(--dark);
            box-shadow: 0 4px 14px rgba(27,77,122,0.06);
            transition: transform .25s, box-shadow .25s, border-color .25s, background .25s, color .25s;
        }

.chip i { color: var(--secondary); font-size: 0.9rem; transition: color .25s; }

.chip:hover { transform: translateY(-3px); border-color: var(--secondary); background: var(--secondary); color: #fff; box-shadow: 0 10px 24px rgba(243,156,18,0.3); }

.chip:hover i { color: #fff; }

.chip-home { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 8px 20px rgba(27,77,122,0.25); }

.chip-home i { color: var(--secondary); }

.chip-home:hover { background: var(--primary-dark); border-color: var(--primary-dark); box-shadow: 0 12px 26px rgba(27,77,122,0.35); }

.svc-group { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px 28px; margin-bottom: 18px; box-shadow: var(--shadow); }

.svc-group h3 { font-size: 1.12rem; color: var(--primary); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }

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

.svc-group h3 a { transition: color .2s; }

.svc-group h3 a:hover { color: var(--secondary); }

.chip-sm { padding: 9px 18px; font-size: 0.9rem; background: var(--light); }

.sitemap-cta { background: var(--primary-dark); color: #fff; text-align: center; }

.sitemap-cta h2 { font-size: 2rem; margin-bottom: 14px; }

.sitemap-cta p { color: rgba(255,255,255,0.88); max-width: 620px; margin: 0 auto 28px; }

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

@media (max-width: 768px) {
            .hero-sitemap { padding: 52px 0; }
            .hero-sitemap h1 { font-size: 1.9rem; }
            .block-head { gap: 12px; }
            .block-head h2 { font-size: 1.25rem; }
            .block-head .block-icon { width: 44px; height: 44px; font-size: 1.05rem; }
            .chips { gap: 10px; }
            .chip { padding: 10px 18px; font-size: 0.9rem; }
            .svc-group { padding: 20px 18px; }
        }