:root {
            --primary: #C8471E;
            --primary-dark: #A5380F;
            --secondary: #1E3A4C;
            --secondary-light: #2C536B;
            --light: #F4F1EE;
            --white: #ffffff;
            --text: #2A2A2A;
            --muted: #6B6B6B;
            --border: #E4DED8;
        }

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

html { scroll-behavior: smooth; }

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

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

h1, h2, h3 { line-height: 1.2; font-weight: 800; color: var(--secondary); }

h2.section-title { font-size: 2.1rem; text-align: center; margin-bottom: 12px; }

.section-sub { text-align: center; color: var(--muted); max-width: 640px; margin: 0 auto 48px; font-size: 1.05rem; }

section { padding: 80px 0; }

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

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

.accent { color: var(--primary); }

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

.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 22px rgba(200,71,30,.3); }

.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200,71,30,.4); }

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

.btn-outline:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }

.header {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            background: rgba(255,255,255,.98); box-shadow: 0 2px 14px rgba(0,0,0,.07);
            backdrop-filter: blur(6px);
        }

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

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

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

.logo-text { font-weight: 800; font-size: 1.25rem; color: var(--secondary); letter-spacing: .3px; }

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

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

.nav a { font-weight: 600; color: var(--secondary); font-size: .98rem; transition: color .2s; }

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

.nav .btn-cta-nav {
            background: var(--primary); color: #fff; padding: 10px 20px;
            border-radius: 8px; box-shadow: 0 5px 15px rgba(200,71,30,.28);
        }

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

.hero {
            position: relative; padding-top: 150px; padding-bottom: 90px;
            background:
                linear-gradient(120deg, rgba(30,58,76,.92) 0%, rgba(30,58,76,.72) 55%, rgba(30,58,76,.4) 100%),
                url('/images/hero_1783430003_6a4cfb7350691.webp') center/cover no-repeat;
            color: #fff;
        }

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

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

.hero-content h1 .accent { color: #FF8A5C; }

.hero-content p.lead { font-size: 1.18rem; color: rgba(255,255,255,.9); margin-bottom: 18px; }

.hero-badges { list-style: none; margin: 22px 0 30px; display: flex; flex-wrap: wrap; gap: 14px 26px; }

.hero-badges li { display: flex; align-items: center; gap: 9px; font-weight: 600; }

.hero-badges i { color: #FF8A5C; }

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

.devis-card {
            background: #fff; color: var(--text); border-radius: 14px;
            padding: 30px; box-shadow: 0 24px 60px rgba(0,0,0,.28);
        }

.devis-card h2 { font-size: 1.5rem; margin-bottom: 6px; }

.devis-card .devis-note { color: var(--muted); font-size: .92rem; margin-bottom: 20px; }

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

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

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

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

.devis-card button, #contactForm button { width: 100%; justify-content: center; }

.form-status p { margin-top: 12px; font-weight: 600; }

.stats { background: var(--secondary); padding: 56px 0; }

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

.stat-item i { font-size: 2rem; color: #FF8A5C; margin-bottom: 12px; }

.stat-num { font-size: 2.5rem; font-weight: 800; color: #fff; line-height: 1; }

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

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

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

.service-card {
            background: #fff; border-radius: 14px; overflow: hidden;
            width: calc(33.333% - 19px); box-shadow: 0 8px 24px rgba(0,0,0,.06);
            transition: transform .25s ease, box-shadow .25s ease;
            display: flex; flex-direction: column; border: 1px solid var(--border);
        }

.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,.12); }

.service-img-wrap { height: 200px; }

.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }

.service-card:hover .service-img-wrap img { transform: scale(1.05); }

.service-body { padding: 24px; }

.service-body h3 { font-size: 1.22rem; margin-bottom: 10px; }

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

.service-icon { color: var(--primary); margin-right: 8px; }

.service-cities { margin-top: 14px; font-size: .87rem; color: var(--muted); line-height: 1.7; }

.service-cities strong { display: block; color: var(--secondary); font-size: .85rem; margin-bottom: 4px; }

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

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

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

.service-link:hover { color: var(--primary-dark); }

.zone-cities li a { display: flex; align-items: center; gap: 8px; color: var(--secondary); }

.zone-cities li:hover { border-color: var(--primary); }

.zone-cities li a:hover { color: var(--primary); }

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

.why-item {
            background: #fff; border: 1px solid var(--border); border-radius: 14px;
            padding: 34px 26px; text-align: center; transition: transform .25s, box-shadow .25s;
        }

.why-item:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(0,0,0,.08); }

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

.why-item h3 { font-size: 1.15rem; margin-bottom: 10px; }

.why-item p { color: var(--muted); font-size: .94rem; }

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

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

.about-img img { border-radius: 16px; box-shadow: 0 20px 46px rgba(0,0,0,.15); width: 100%; height: 100%; object-fit: cover; }

.about-text h2 { text-align: left; font-size: 2rem; margin-bottom: 18px; }

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

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

.about-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }

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

.about-list strong { color: var(--secondary); }

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

.zone-map iframe { border-radius: 14px; box-shadow: 0 12px 30px rgba(0,0,0,.12); }

.zone-cities { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.zone-cities li {
            background: var(--light); border: 1px solid var(--border); border-radius: 30px;
            padding: 8px 18px; font-weight: 600; font-size: .92rem; color: var(--secondary);
            display: flex; align-items: center; gap: 8px;
        }

.zone-cities i { color: var(--primary); font-size: .82rem; }

.zones .about-text h2 { margin-bottom: 14px; }

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

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

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

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

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

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

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

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

.contact { background: var(--secondary); color: #fff; }

.contact h2.section-title { color: #fff; }

.contact .section-sub { color: rgba(255,255,255,.75); }

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

.contact-info-box { display: flex; flex-direction: column; gap: 22px; }

.info-row { display: flex; align-items: flex-start; gap: 16px; }

.info-row .ic {
            width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
            background: rgba(255,138,92,.18); color: #FF8A5C;
            display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
        }

.info-row .info-label { font-weight: 700; color: #fff; margin-bottom: 2px; }

.info-row .info-val { color: rgba(255,255,255,.82); }

.info-row a.info-val:hover { color: #FF8A5C; }

.hours-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 8px 20px; margin-top: 8px; }

.hours-row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.1); }

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

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

.hours-row .val { color: rgba(255,255,255,.8); }

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

.contact-form-card { background: #fff; color: var(--text); border-radius: 14px; padding: 32px; box-shadow: 0 20px 50px rgba(0,0,0,.3); }

.contact-form-card h3 { font-size: 1.4rem; margin-bottom: 18px; }

.map-wrap { margin-top: 24px; border-radius: 14px; overflow: hidden; box-shadow: 0 14px 34px rgba(0,0,0,.25); }

.map-wrap iframe { display: block; }

.footer { background: #142834; color: rgba(255,255,255,.8); padding: 56px 0 26px; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-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-weight: 800; font-size: 1.2rem; color: #fff; }

.footer-col p.foot-desc { font-size: .94rem; line-height: 1.7; }

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

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

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

.footer-col ul li a, .footer-col ul li span { font-size: .94rem; display: flex; align-items: center; gap: 10px; }

.footer-col ul li a:hover { color: #FF8A5C; }

.footer-col ul li i { color: #FF8A5C; width: 16px; }

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

.footer-bottom a { color: #FF8A5C; }

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

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

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

.modal-box {
            background: #fff; max-width: 640px; width: 100%; border-radius: 14px;
            padding: 36px; margin: 60px auto; position: relative;
        }

.modal-box p.modal-title { font-size: 1.5rem; font-weight: 800; color: var(--secondary); margin-bottom: 18px; }

.modal-box p { margin-bottom: 10px; color: var(--muted); }

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

.modal-close {
            position: absolute; top: 18px; right: 20px; font-size: 1.5rem;
            color: var(--muted); cursor: pointer; line-height: 1;
        }

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

@media (max-width: 1024px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 24px; }
            .why-grid { grid-template-columns: repeat(2, 1fr); }
            .service-card { width: calc(50% - 14px); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

@media (max-width: 768px) {
            section { padding: 60px 0; }
            .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,.1);
            }
            .menu-check:checked ~ .nav { display: flex; }
            .menu-check:checked ~ .menu-toggle .fa-bars::before { content: "\f00d"; }
            .nav a { width: 100%; text-align: center; }
            .nav .btn-cta-nav { text-align: center; justify-content: center; }
            .hero { padding-top: 120px; }
            .hero-grid { grid-template-columns: 1fr; gap: 36px; }
            .hero-content h1 { font-size: 2.1rem; }
            .about-grid, .zones-intro, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
            .about-text h2 { text-align: center; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            h2.section-title { font-size: 1.7rem; }
        }

@media (max-width: 640px) {
            .stats-grid { grid-template-columns: 1fr; }
            .why-grid { grid-template-columns: 1fr; }
            .service-card { width: 100%; max-width: 380px; }
            .container { padding: 0 16px; }
            .hero-actions .btn { width: 100%; justify-content: center; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .footer-bottom .legal-links { justify-content: center; }
        }

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; } }

.sct-tpl-service-hub { background: var(--white, #ffffff); color: var(--text, #2A2A2A); }

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

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

.sct-tpl-service-hub .sct-section-tag {
    display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: 1.4px;
    text-transform: uppercase; color: var(--primary, #C8471E); margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-section-title {
    font-size: 2.05rem; font-weight: 800; line-height: 1.2;
    color: var(--secondary, #1E3A4C); margin: 0 0 14px;
}

.sct-tpl-service-hub .sct-section-sub { color: var(--muted, #6B6B6B); font-size: 1.03rem; margin: 0; }

.sct-tpl-service-hub .sct-accent { color: var(--primary, #C8471E); }

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

.sct-tpl-service-hub .sct-btn-primary {
    background: var(--primary, #C8471E); color: #fff; box-shadow: 0 8px 22px rgba(200,71,30,.3);
}

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: var(--primary-dark, #A5380F); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200,71,30,.4);
}

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

.sct-tpl-service-hub .sct-btn-ghost:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }

.sct-tpl-service-hub .sct-btn-dark {
    background: var(--secondary, #1E3A4C); color: #fff; box-shadow: 0 8px 22px rgba(30,58,76,.24);
}

.sct-tpl-service-hub .sct-btn-dark:hover { background: var(--secondary-light, #2C536B); transform: translateY(-2px); color: #fff; }

.sct-tpl-service-hub .sct-hero {
    position: relative; padding: 150px 0 88px; color: #fff;
    background:
        linear-gradient(120deg, rgba(30,58,76,.94) 0%, rgba(30,58,76,.78) 55%, rgba(30,58,76,.5) 100%),
        url('/images/service_1_1783430021_6a4cfb85601e0.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: .86rem;
    margin-bottom: 20px; color: rgba(255,255,255,.75);
}

.sct-tpl-service-hub .sct-breadcrumb a { color: rgba(255,255,255,.85); font-weight: 600; }

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

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

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

.sct-tpl-service-hub .sct-hero-badges {
    display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0 0 20px; padding: 0;
}

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

.sct-tpl-service-hub .sct-hero-badges i { color: #FF8A5C; }

.sct-tpl-service-hub .sct-hero-text h1 {
    color: #fff; font-size: 2.75rem; font-weight: 800; line-height: 1.16; margin: 0 0 18px;
    overflow-wrap: break-word;
}

.sct-tpl-service-hub .sct-hero-text h1 .sct-accent { color: #FF8A5C; }

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

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

.sct-tpl-service-hub .sct-hero-trust {
    list-style: none; display: flex; flex-wrap: wrap; gap: 12px 26px; margin: 28px 0 0; padding: 0;
}

.sct-tpl-service-hub .sct-hero-trust li {
    display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: .94rem;
    color: rgba(255,255,255,.92);
}

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

.sct-tpl-service-hub .sct-hero-card {
    background: #fff; color: var(--text, #2A2A2A); border-radius: 14px;
    padding: 30px; box-shadow: 0 24px 60px rgba(0,0,0,.3);
}

.sct-tpl-service-hub .sct-hero-card-title {
    font-size: 1.32rem; font-weight: 800; color: var(--secondary, #1E3A4C); margin: 0 0 6px;
}

.sct-tpl-service-hub .sct-hero-card-note {
    color: var(--muted, #6B6B6B); font-size: .92rem; margin: 0 0 22px;
}

.sct-tpl-service-hub .sct-hero-info-list { list-style: none; margin: 0 0 24px; padding: 0; }

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

.sct-tpl-service-hub .sct-hero-info-list li:last-child { border-bottom: none; }

.sct-tpl-service-hub .sct-hero-info-ic {
    width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px;
    background: rgba(200,71,30,.1); color: var(--primary, #C8471E);
    display: flex; align-items: center; justify-content: center; font-size: 1.02rem;
}

.sct-tpl-service-hub .sct-hero-info-txt { min-width: 0; }

.sct-tpl-service-hub .sct-hero-info-label {
    display: block; font-size: .78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .6px; color: var(--muted, #6B6B6B); margin-bottom: 2px;
}

.sct-tpl-service-hub .sct-hero-info-val {
    display: block; font-weight: 700; color: var(--secondary, #1E3A4C); font-size: .99rem;
    overflow-wrap: anywhere;
}

.sct-tpl-service-hub a.sct-hero-info-val:hover { color: var(--primary, #C8471E); }

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

.sct-tpl-service-hub .sct-stats-band { background: var(--secondary, #1E3A4C); padding: 54px 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-value {
    font-size: 2.35rem; font-weight: 800; color: #fff; line-height: 1.1; overflow-wrap: anywhere;
}

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

.sct-tpl-service-hub .sct-intro-section { background: var(--white, #fff); }

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

.sct-tpl-service-hub .sct-intro-inner p {
    color: var(--muted, #6B6B6B); font-size: 1.04rem; margin: 0 0 18px; line-height: 1.8;
}

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

.sct-tpl-service-hub .sct-intro-inner strong { color: var(--secondary, #1E3A4C); }

.sct-tpl-service-hub .sct-services-section { background: var(--light, #F4F1EE); }

.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: 1px solid var(--border, #E4DED8); border-radius: 14px;
    overflow: hidden; display: flex; flex-direction: column;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.sct-tpl-service-hub .sct-service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,.12); }

.sct-tpl-service-hub .sct-service-img { height: 200px; overflow: hidden; }

.sct-tpl-service-hub .sct-service-img img {
    width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease;
}

.sct-tpl-service-hub .sct-service-card:hover .sct-service-img img { transform: scale(1.05); }

.sct-tpl-service-hub .sct-service-body { padding: 24px; }

.sct-tpl-service-hub .sct-service-body h3 {
    font-size: 1.2rem; font-weight: 800; color: var(--secondary, #1E3A4C); margin: 0 0 10px; line-height: 1.3;
}

.sct-tpl-service-hub .sct-service-body p { color: var(--muted, #6B6B6B); font-size: .96rem; margin: 0; }

.sct-tpl-service-hub .sct-processus-section { background: var(--white, #fff); }

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

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

.sct-tpl-service-hub .sct-step {
    position: relative; background: var(--light, #F4F1EE); border: 1px solid var(--border, #E4DED8);
    border-radius: 14px; padding: 32px 22px 26px; text-align: center;
}

.sct-tpl-service-hub .sct-step-num {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    width: 32px; height: 32px; border-radius: 50%; background: var(--primary, #C8471E);
    color: #fff; font-weight: 800; font-size: .88rem;
    display: flex; align-items: center; justify-content: center;
}

.sct-tpl-service-hub .sct-step-ic {
    font-size: 1.65rem; color: var(--primary, #C8471E); margin-bottom: 14px;
}

.sct-tpl-service-hub .sct-step h3 {
    font-size: 1.04rem; font-weight: 800; color: var(--secondary, #1E3A4C); margin: 0 0 9px; line-height: 1.3;
}

.sct-tpl-service-hub .sct-step p { color: var(--muted, #6B6B6B); font-size: .91rem; margin: 0; }

.sct-tpl-service-hub .sct-why-section { background: var(--light, #F4F1EE); }

.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-item {
    background: #fff; border: 1px solid var(--border, #E4DED8); border-radius: 14px;
    padding: 34px 26px; text-align: center; transition: transform .25s ease, box-shadow .25s ease;
}

.sct-tpl-service-hub .sct-why-item:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(0,0,0,.08); }

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

.sct-tpl-service-hub .sct-why-item h3 {
    font-size: 1.13rem; font-weight: 800; color: var(--secondary, #1E3A4C); margin: 0 0 10px;
}

.sct-tpl-service-hub .sct-why-item p { color: var(--muted, #6B6B6B); font-size: .94rem; margin: 0; }

.sct-tpl-service-hub .sct-usecase-section { background: var(--white, #fff); }

.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 {
    width: 100%; border-radius: 16px; box-shadow: 0 20px 46px rgba(0,0,0,.15); object-fit: cover;
}

.sct-tpl-service-hub .sct-usecase-text h2 {
    font-size: 1.95rem; font-weight: 800; color: var(--secondary, #1E3A4C); margin: 0 0 16px; line-height: 1.22;
}

.sct-tpl-service-hub .sct-usecase-text p {
    color: var(--muted, #6B6B6B); margin: 0 0 16px; line-height: 1.8;
}

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

.sct-tpl-service-hub .sct-usecase-text strong { color: var(--secondary, #1E3A4C); }

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

.sct-tpl-service-hub .sct-usecase-text ul li {
    display: flex; align-items: flex-start; gap: 12px; margin-bottom: 13px; color: var(--muted, #6B6B6B);
}

.sct-tpl-service-hub .sct-usecase-text ul li::before {
    content: "\f058"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    color: var(--primary, #C8471E); margin-top: 3px; flex-shrink: 0;
}

.sct-tpl-service-hub .sct-engagements-section { background: var(--light, #F4F1EE); }

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

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

.sct-tpl-service-hub .sct-engagement-card {
    border: 1px solid var(--border, #E4DED8); border-left: 4px solid var(--primary, #C8471E);
    border-radius: 12px; padding: 30px 26px; background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.sct-tpl-service-hub .sct-engagement-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.08); }

.sct-tpl-service-hub .sct-engagement-ic {
    font-size: 1.5rem; color: var(--primary, #C8471E); margin-bottom: 14px;
}

.sct-tpl-service-hub .sct-engagement-card h3 {
    font-size: 1.13rem; font-weight: 800; color: var(--secondary, #1E3A4C); margin: 0 0 10px;
}

.sct-tpl-service-hub .sct-engagement-card p { color: var(--muted, #6B6B6B); font-size: .95rem; margin: 0; }

.sct-tpl-service-hub .sct-faq-section { background: var(--white, #fff); }

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

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

.sct-tpl-service-hub .sct-faq-item summary {
    padding: 21px 24px; font-weight: 700; color: var(--secondary, #1E3A4C); cursor: pointer;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
    gap: 16px; font-size: 1.03rem;
}

.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(--primary, #C8471E); font-size: .88rem; 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: var(--muted, #6B6B6B); line-height: 1.75; }

.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 { background: var(--light, #F4F1EE); padding: 66px 0; }

.sct-tpl-service-hub .sct-maillage-section.sct-maillage-alt { background: var(--white, #fff); }

.sct-tpl-service-hub .sct-maillage-cities { padding: 78px 0; }

.sct-tpl-service-hub .sct-maillage-title {
    font-size: 1.55rem; font-weight: 800; color: var(--secondary, #1E3A4C);
    text-align: center; margin: 0 0 10px; line-height: 1.3;
}

.sct-tpl-service-hub .sct-maillage-sub {
    text-align: center; color: var(--muted, #6B6B6B); font-size: .99rem; margin: 0 auto 32px; max-width: 680px;
}

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

.sct-tpl-service-hub .sct-maillage-links li { min-width: 0; }

.sct-tpl-service-hub .sct-maillage-links a {
    display: inline-flex; align-items: center; gap: 9px; background: #fff;
    border: 1px solid var(--border, #E4DED8); border-radius: 30px; padding: 10px 20px;
    font-weight: 600; font-size: .93rem; color: var(--secondary, #1E3A4C);
    overflow-wrap: anywhere; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

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

.sct-tpl-service-hub .sct-maillage-section.sct-maillage-alt .sct-maillage-links a { background: var(--light, #F4F1EE); }

.sct-tpl-service-hub .sct-maillage-section.sct-maillage-alt .sct-maillage-links a:hover { background: var(--primary, #C8471E); color: #fff; }

.sct-tpl-service-hub .sct-cta-final {
    background: linear-gradient(120deg, var(--secondary, #1E3A4C) 0%, var(--secondary-light, #2C536B) 100%);
    color: #fff; text-align: center;
}

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

.sct-tpl-service-hub .sct-cta-final p {
    color: rgba(255,255,255,.85); font-size: 1.06rem; max-width: 660px; margin: 0 auto 30px;
}

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

@media (max-width: 1024px) {
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 22px; }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}

@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-hero-text h1 { font-size: 2.3rem; }
    .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 section { padding: 64px 0; }
    .sct-tpl-service-hub .sct-maillage-cities { padding: 64px 0; }
}

@media (max-width: 768px) {
    .sct-tpl-service-hub .sct-hero { padding: 128px 0 70px; }
    .sct-tpl-service-hub .sct-section-title { font-size: 1.7rem; }
    .sct-tpl-service-hub .sct-usecase-text h2 { font-size: 1.6rem; }
    .sct-tpl-service-hub .sct-cta-final h2 { font-size: 1.65rem; }
    .sct-tpl-service-hub .sct-maillage-title { font-size: 1.35rem; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-hub .sct-breadcrumb { font-size: .8rem; }
    .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: 1.02rem; }
    .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-hero-card { padding: 24px 20px; }
    .sct-tpl-service-hub .sct-services-grid,
    .sct-tpl-service-hub .sct-processus-grid,
    .sct-tpl-service-hub .sct-why-grid,
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-processus-grid { gap: 30px; }
    .sct-tpl-service-hub .sct-stat-value { font-size: 2.05rem; }
    .sct-tpl-service-hub .sct-cta-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-cta-btns > * { width: 100%; }
    .sct-tpl-service-hub .sct-faq-item summary { padding: 18px 18px; font-size: .98rem; }
    .sct-tpl-service-hub .sct-faq-answer { padding: 0 18px 18px; }
}

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

.sct-tpl-service-city { background: var(--white, #ffffff); color: var(--text, #2A2A2A); }

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

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

.sct-tpl-service-city .sct-section-tag {
    display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: 1.4px;
    text-transform: uppercase; color: var(--primary, #C8471E); margin-bottom: 12px;
}

.sct-tpl-service-city .sct-section-title {
    font-size: 2.05rem; font-weight: 800; line-height: 1.2;
    color: var(--secondary, #1E3A4C); margin: 0 0 14px;
}

.sct-tpl-service-city .sct-section-sub { color: var(--muted, #6B6B6B); font-size: 1.03rem; margin: 0; }

.sct-tpl-service-city .sct-accent { color: var(--primary, #C8471E); }

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

.sct-tpl-service-city .sct-btn-primary {
    background: var(--primary, #C8471E); color: #fff; box-shadow: 0 8px 22px rgba(200,71,30,.3);
}

.sct-tpl-service-city .sct-btn-primary:hover {
    background: var(--primary-dark, #A5380F); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200,71,30,.4);
}

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

.sct-tpl-service-city .sct-btn-ghost:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }

.sct-tpl-service-city .sct-btn-dark {
    background: var(--secondary, #1E3A4C); color: #fff; box-shadow: 0 8px 22px rgba(30,58,76,.24);
}

.sct-tpl-service-city .sct-btn-dark:hover { background: var(--secondary-light, #2C536B); transform: translateY(-2px); color: #fff; }

.sct-tpl-service-city .sct-hero {
    position: relative; padding: 150px 0 88px; color: #fff;
    background:
        linear-gradient(120deg, rgba(30,58,76,.94) 0%, rgba(30,58,76,.78) 55%, rgba(30,58,76,.5) 100%),
        url('/images/service_5_1783430112_6a4cfbe0968ec.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: .86rem;
    margin-bottom: 20px; color: rgba(255,255,255,.75);
}

.sct-tpl-service-city .sct-breadcrumb a { color: rgba(255,255,255,.85); font-weight: 600; }

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

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

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

.sct-tpl-service-city .sct-hero-badges {
    display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0 0 20px; padding: 0;
}

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

.sct-tpl-service-city .sct-hero-badges i { color: #FF8A5C; }

.sct-tpl-service-city .sct-hero-text h1 {
    color: #fff; font-size: 2.75rem; font-weight: 800; line-height: 1.16; margin: 0 0 18px;
    overflow-wrap: break-word;
}

.sct-tpl-service-city .sct-hero-text h1 .sct-accent { color: #FF8A5C; }

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

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

.sct-tpl-service-city .sct-hero-trust {
    list-style: none; display: flex; flex-wrap: wrap; gap: 12px 26px; margin: 28px 0 0; padding: 0;
}

.sct-tpl-service-city .sct-hero-trust li {
    display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: .94rem;
    color: rgba(255,255,255,.92);
}

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

.sct-tpl-service-city .sct-hero-card {
    background: #fff; color: var(--text, #2A2A2A); border-radius: 14px;
    padding: 30px; box-shadow: 0 24px 60px rgba(0,0,0,.3);
}

.sct-tpl-service-city .sct-hero-card-title {
    font-size: 1.32rem; font-weight: 800; color: var(--secondary, #1E3A4C); margin: 0 0 6px;
}

.sct-tpl-service-city .sct-hero-card-note {
    color: var(--muted, #6B6B6B); font-size: .92rem; margin: 0 0 22px;
}

.sct-tpl-service-city .sct-hero-info-list { list-style: none; margin: 0 0 24px; padding: 0; }

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

.sct-tpl-service-city .sct-hero-info-list li:last-child { border-bottom: none; }

.sct-tpl-service-city .sct-hero-info-ic {
    width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px;
    background: rgba(200,71,30,.1); color: var(--primary, #C8471E);
    display: flex; align-items: center; justify-content: center; font-size: 1.02rem;
}

.sct-tpl-service-city .sct-hero-info-txt { min-width: 0; }

.sct-tpl-service-city .sct-hero-info-label {
    display: block; font-size: .78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .6px; color: var(--muted, #6B6B6B); margin-bottom: 2px;
}

.sct-tpl-service-city .sct-hero-info-val {
    display: block; font-weight: 700; color: var(--secondary, #1E3A4C); font-size: .99rem;
    overflow-wrap: anywhere;
}

.sct-tpl-service-city a.sct-hero-info-val:hover { color: var(--primary, #C8471E); }

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

.sct-tpl-service-city .sct-stats-band { background: var(--secondary, #1E3A4C); padding: 54px 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-value {
    font-size: 2.35rem; font-weight: 800; color: #fff; line-height: 1.1; overflow-wrap: anywhere;
}

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

.sct-tpl-service-city .sct-intro-section { background: var(--white, #fff); }

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

.sct-tpl-service-city .sct-intro-inner p {
    color: var(--muted, #6B6B6B); font-size: 1.04rem; margin: 0 0 18px; line-height: 1.8;
}

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

.sct-tpl-service-city .sct-intro-inner strong { color: var(--secondary, #1E3A4C); }

.sct-tpl-service-city .sct-services-section { background: var(--light, #F4F1EE); }

.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: 1px solid var(--border, #E4DED8); border-radius: 14px;
    overflow: hidden; display: flex; flex-direction: column;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.sct-tpl-service-city .sct-service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,.12); }

.sct-tpl-service-city .sct-service-img { height: 200px; overflow: hidden; }

.sct-tpl-service-city .sct-service-img img {
    width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease;
}

.sct-tpl-service-city .sct-service-card:hover .sct-service-img img { transform: scale(1.05); }

.sct-tpl-service-city .sct-service-body { padding: 24px; }

.sct-tpl-service-city .sct-service-body h3 {
    font-size: 1.2rem; font-weight: 800; color: var(--secondary, #1E3A4C); margin: 0 0 10px; line-height: 1.3;
}

.sct-tpl-service-city .sct-service-body p { color: var(--muted, #6B6B6B); font-size: .96rem; margin: 0; }

.sct-tpl-service-city .sct-processus-section { background: var(--white, #fff); }

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

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

.sct-tpl-service-city .sct-step {
    position: relative; background: var(--light, #F4F1EE); border: 1px solid var(--border, #E4DED8);
    border-radius: 14px; padding: 32px 22px 26px; text-align: center;
}

.sct-tpl-service-city .sct-step-num {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    width: 32px; height: 32px; border-radius: 50%; background: var(--primary, #C8471E);
    color: #fff; font-weight: 800; font-size: .88rem;
    display: flex; align-items: center; justify-content: center;
}

.sct-tpl-service-city .sct-step-ic {
    font-size: 1.65rem; color: var(--primary, #C8471E); margin-bottom: 14px;
}

.sct-tpl-service-city .sct-step h3 {
    font-size: 1.04rem; font-weight: 800; color: var(--secondary, #1E3A4C); margin: 0 0 9px; line-height: 1.3;
}

.sct-tpl-service-city .sct-step p { color: var(--muted, #6B6B6B); font-size: .91rem; margin: 0; }

.sct-tpl-service-city .sct-why-section { background: var(--light, #F4F1EE); }

.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-item {
    background: #fff; border: 1px solid var(--border, #E4DED8); border-radius: 14px;
    padding: 34px 26px; text-align: center; transition: transform .25s ease, box-shadow .25s ease;
}

.sct-tpl-service-city .sct-why-item:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(0,0,0,.08); }

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

.sct-tpl-service-city .sct-why-item h3 {
    font-size: 1.13rem; font-weight: 800; color: var(--secondary, #1E3A4C); margin: 0 0 10px;
}

.sct-tpl-service-city .sct-why-item p { color: var(--muted, #6B6B6B); font-size: .94rem; margin: 0; }

.sct-tpl-service-city .sct-zones-section { background: var(--white, #fff); }

.sct-tpl-service-city .sct-zones-list {
    list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
    gap: 12px; margin: 0 auto; padding: 0; max-width: 960px;
}

.sct-tpl-service-city .sct-zones-list li {
    background: var(--light, #F4F1EE); border: 1px solid var(--border, #E4DED8);
    border-radius: 30px; padding: 9px 19px; font-weight: 600; font-size: .92rem;
    color: var(--secondary, #1E3A4C); display: flex; align-items: center; gap: 8px;
    overflow-wrap: anywhere;
}

.sct-tpl-service-city .sct-zones-list li::before {
    content: "\f3c5"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    color: var(--primary, #C8471E); font-size: .8rem;
}

.sct-tpl-service-city .sct-zones-list li a { color: inherit; }

.sct-tpl-service-city .sct-zones-list li a:hover { color: var(--primary, #C8471E); }

.sct-tpl-service-city .sct-usecase-section { background: var(--light, #F4F1EE); }

.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 {
    width: 100%; border-radius: 16px; box-shadow: 0 20px 46px rgba(0,0,0,.15);
    object-fit: cover;
}

.sct-tpl-service-city .sct-usecase-text h2 {
    font-size: 1.95rem; font-weight: 800; color: var(--secondary, #1E3A4C); margin: 0 0 16px; line-height: 1.22;
}

.sct-tpl-service-city .sct-usecase-text p {
    color: var(--muted, #6B6B6B); margin: 0 0 16px; line-height: 1.8;
}

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

.sct-tpl-service-city .sct-usecase-text strong { color: var(--secondary, #1E3A4C); }

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

.sct-tpl-service-city .sct-usecase-text ul li {
    display: flex; align-items: flex-start; gap: 12px; margin-bottom: 13px; color: var(--muted, #6B6B6B);
}

.sct-tpl-service-city .sct-usecase-text ul li::before {
    content: "\f058"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    color: var(--primary, #C8471E); margin-top: 3px; flex-shrink: 0;
}

.sct-tpl-service-city .sct-engagements-section { background: var(--white, #fff); }

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

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

.sct-tpl-service-city .sct-engagement-card {
    border: 1px solid var(--border, #E4DED8); border-left: 4px solid var(--primary, #C8471E);
    border-radius: 12px; padding: 30px 26px; background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.sct-tpl-service-city .sct-engagement-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.08); }

.sct-tpl-service-city .sct-engagement-ic {
    font-size: 1.5rem; color: var(--primary, #C8471E); margin-bottom: 14px;
}

.sct-tpl-service-city .sct-engagement-card h3 {
    font-size: 1.13rem; font-weight: 800; color: var(--secondary, #1E3A4C); margin: 0 0 10px;
}

.sct-tpl-service-city .sct-engagement-card p { color: var(--muted, #6B6B6B); font-size: .95rem; margin: 0; }

.sct-tpl-service-city .sct-local-spec { background: var(--light, #F4F1EE); }

.sct-tpl-service-city .sct-local-spec-box {
    max-width: 880px; margin: 0 auto; background: #fff;
    border: 1px solid var(--border, #E4DED8); border-radius: 16px; padding: 40px 36px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.sct-tpl-service-city .sct-local-spec-box h2 {
    font-size: 1.6rem; font-weight: 800; color: var(--secondary, #1E3A4C); margin: 0 0 16px; line-height: 1.25;
}

.sct-tpl-service-city .sct-local-spec-box p { color: var(--muted, #6B6B6B); margin: 0 0 14px; line-height: 1.8; }

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

.sct-tpl-service-city .sct-local-spec-box strong { color: var(--secondary, #1E3A4C); }

.sct-tpl-service-city .sct-faq-section { background: var(--white, #fff); }

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

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

.sct-tpl-service-city .sct-faq-item summary {
    padding: 21px 24px; font-weight: 700; color: var(--secondary, #1E3A4C); cursor: pointer;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
    gap: 16px; font-size: 1.03rem;
}

.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(--primary, #C8471E); font-size: .88rem; 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: var(--muted, #6B6B6B); line-height: 1.75; }

.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 { background: var(--light, #F4F1EE); padding: 62px 0; }

.sct-tpl-service-city .sct-maillage-section.sct-maillage-alt { background: var(--white, #fff); }

.sct-tpl-service-city .sct-maillage-title {
    font-size: 1.4rem; font-weight: 800; color: var(--secondary, #1E3A4C);
    text-align: center; margin: 0 0 10px; line-height: 1.3;
}

.sct-tpl-service-city .sct-maillage-sub {
    text-align: center; color: var(--muted, #6B6B6B); font-size: .99rem; margin: 0 auto 30px; max-width: 640px;
}

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

.sct-tpl-service-city .sct-maillage-links li { min-width: 0; }

.sct-tpl-service-city .sct-maillage-links a {
    display: inline-flex; align-items: center; gap: 9px; background: #fff;
    border: 1px solid var(--border, #E4DED8); border-radius: 30px; padding: 10px 20px;
    font-weight: 600; font-size: .93rem; color: var(--secondary, #1E3A4C);
    overflow-wrap: anywhere; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

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

.sct-tpl-service-city .sct-maillage-section.sct-maillage-alt .sct-maillage-links a { background: var(--light, #F4F1EE); }

.sct-tpl-service-city .sct-maillage-section.sct-maillage-alt .sct-maillage-links a:hover { background: var(--primary, #C8471E); color: #fff; }

.sct-tpl-service-city .sct-cta-final {
    background: linear-gradient(120deg, var(--secondary, #1E3A4C) 0%, var(--secondary-light, #2C536B) 100%);
    color: #fff; text-align: center;
}

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

.sct-tpl-service-city .sct-cta-final p {
    color: rgba(255,255,255,.85); font-size: 1.06rem; max-width: 660px; margin: 0 auto 30px;
}

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

@media (max-width: 1024px) {
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 22px; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}

@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-hero-text h1 { font-size: 2.3rem; }
    .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 section { padding: 64px 0; }
}

@media (max-width: 768px) {
    .sct-tpl-service-city .sct-hero { padding: 128px 0 70px; }
    .sct-tpl-service-city .sct-section-title { font-size: 1.7rem; }
    .sct-tpl-service-city .sct-usecase-text h2 { font-size: 1.6rem; }
    .sct-tpl-service-city .sct-cta-final h2 { font-size: 1.65rem; }
    .sct-tpl-service-city .sct-local-spec-box { padding: 30px 24px; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-city .sct-breadcrumb { font-size: .8rem; }
    .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: 1.02rem; }
    .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-hero-card { padding: 24px 20px; }
    .sct-tpl-service-city .sct-services-grid,
    .sct-tpl-service-city .sct-processus-grid,
    .sct-tpl-service-city .sct-why-grid,
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-processus-grid { gap: 30px; }
    .sct-tpl-service-city .sct-stat-value { font-size: 2.05rem; }
    .sct-tpl-service-city .sct-cta-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-cta-btns > * { width: 100%; }
    .sct-tpl-service-city .sct-faq-item summary { padding: 18px 18px; font-size: .98rem; }
    .sct-tpl-service-city .sct-faq-answer { padding: 0 18px 18px; }
}

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

.sct-tpl-service-city .sct-hero {
    position: relative; padding: 150px 0 88px; color: #fff;
    background:
        linear-gradient(120deg, rgba(30,58,76,.94) 0%, rgba(30,58,76,.78) 55%, rgba(30,58,76,.5) 100%),
        url('/images/service_1_1783430021_6a4cfb85601e0.webp') center/cover no-repeat;
}

.sct-tpl-zone { background: var(--white, #ffffff); color: var(--text, #2A2A2A); }

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

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

.sct-tpl-zone .sct-section-tag {
    display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: 1.4px;
    text-transform: uppercase; color: var(--primary, #C8471E); margin-bottom: 12px;
}

.sct-tpl-zone .sct-section-title {
    font-size: 2.05rem; font-weight: 800; line-height: 1.2;
    color: var(--secondary, #1E3A4C); margin: 0 0 14px;
}

.sct-tpl-zone .sct-section-sub { color: var(--muted, #6B6B6B); font-size: 1.03rem; margin: 0; }

.sct-tpl-zone .sct-accent { color: var(--primary, #C8471E); }

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

.sct-tpl-zone .sct-btn-primary {
    background: var(--primary, #C8471E); color: #fff; box-shadow: 0 8px 22px rgba(200,71,30,.3);
}

.sct-tpl-zone .sct-btn-primary:hover {
    background: var(--primary-dark, #A5380F); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200,71,30,.4);
}

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

.sct-tpl-zone .sct-btn-ghost:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }

.sct-tpl-zone .sct-btn-dark {
    background: var(--secondary, #1E3A4C); color: #fff; box-shadow: 0 8px 22px rgba(30,58,76,.24);
}

.sct-tpl-zone .sct-btn-dark:hover { background: var(--secondary-light, #2C536B); transform: translateY(-2px); color: #fff; }

.sct-tpl-zone .sct-hero {
    position: relative; padding: 150px 0 88px; color: #fff;
    background:
        linear-gradient(120deg, rgba(30,58,76,.94) 0%, rgba(30,58,76,.78) 55%, rgba(30,58,76,.5) 100%),
        url('/images/service_1_1783430021_6a4cfb85601e0.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: .86rem;
    margin-bottom: 20px; color: rgba(255,255,255,.75);
}

.sct-tpl-zone .sct-breadcrumb a { color: rgba(255,255,255,.85); font-weight: 600; }

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

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

.sct-tpl-zone .sct-bc-current { color: #FF8A5C; font-weight: 700; }

.sct-tpl-zone .sct-hero-badges {
    display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0 0 20px; padding: 0;
}

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

.sct-tpl-zone .sct-hero-badges i { color: #FF8A5C; }

.sct-tpl-zone .sct-hero-text h1 {
    color: #fff; font-size: 2.75rem; font-weight: 800; line-height: 1.16; margin: 0 0 18px;
    overflow-wrap: break-word;
}

.sct-tpl-zone .sct-hero-text h1 .sct-accent { color: #FF8A5C; }

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

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

.sct-tpl-zone .sct-hero-trust {
    list-style: none; display: flex; flex-wrap: wrap; gap: 12px 26px; margin: 28px 0 0; padding: 0;
}

.sct-tpl-zone .sct-hero-trust li {
    display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: .94rem;
    color: rgba(255,255,255,.92);
}

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

.sct-tpl-zone .sct-hero-card {
    background: #fff; color: var(--text, #2A2A2A); border-radius: 14px;
    padding: 30px; box-shadow: 0 24px 60px rgba(0,0,0,.3);
}

.sct-tpl-zone .sct-hero-card-title {
    font-size: 1.32rem; font-weight: 800; color: var(--secondary, #1E3A4C); margin: 0 0 6px;
}

.sct-tpl-zone .sct-hero-card-note {
    color: var(--muted, #6B6B6B); font-size: .92rem; margin: 0 0 22px;
}

.sct-tpl-zone .sct-hero-info-list { list-style: none; margin: 0 0 24px; padding: 0; }

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

.sct-tpl-zone .sct-hero-info-list li:last-child { border-bottom: none; }

.sct-tpl-zone .sct-hero-info-ic {
    width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px;
    background: rgba(200,71,30,.1); color: var(--primary, #C8471E);
    display: flex; align-items: center; justify-content: center; font-size: 1.02rem;
}

.sct-tpl-zone .sct-hero-info-txt { min-width: 0; }

.sct-tpl-zone .sct-hero-info-label {
    display: block; font-size: .78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .6px; color: var(--muted, #6B6B6B); margin-bottom: 2px;
}

.sct-tpl-zone .sct-hero-info-val {
    display: block; font-weight: 700; color: var(--secondary, #1E3A4C); font-size: .99rem;
    overflow-wrap: anywhere;
}

.sct-tpl-zone a.sct-hero-info-val:hover { color: var(--primary, #C8471E); }

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

.sct-tpl-zone .sct-stats-band { background: var(--secondary, #1E3A4C); padding: 54px 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-value {
    font-size: 2.35rem; font-weight: 800; color: #fff; line-height: 1.1; overflow-wrap: anywhere;
}

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

.sct-tpl-zone .sct-intro-section { background: var(--white, #fff); }

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

.sct-tpl-zone .sct-intro-inner p {
    color: var(--muted, #6B6B6B); font-size: 1.04rem; margin: 0 0 18px; line-height: 1.8;
}

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

.sct-tpl-zone .sct-intro-inner strong { color: var(--secondary, #1E3A4C); }

.sct-tpl-zone .sct-services-section { background: var(--light, #F4F1EE); }

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

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

.sct-tpl-zone .sct-service-card {
    background: #fff; border: 1px solid var(--border, #E4DED8); border-radius: 14px;
    overflow: hidden; display: flex; flex-direction: column;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.sct-tpl-zone .sct-service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,.12); }

.sct-tpl-zone .sct-service-img { height: 200px; overflow: hidden; }

.sct-tpl-zone .sct-service-img img {
    width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease;
}

.sct-tpl-zone .sct-service-card:hover .sct-service-img img { transform: scale(1.05); }

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

.sct-tpl-zone .sct-service-body h3 {
    font-size: 1.2rem; font-weight: 800; color: var(--secondary, #1E3A4C); margin: 0 0 10px; line-height: 1.3;
}

.sct-tpl-zone .sct-service-body p { color: var(--muted, #6B6B6B); font-size: .96rem; 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: .93rem; color: var(--primary, #C8471E); overflow-wrap: anywhere;
}

.sct-tpl-zone .sct-service-link:hover { color: var(--primary-dark, #A5380F); }

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

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

.sct-tpl-zone .sct-zones-section { background: var(--white, #fff); }

.sct-tpl-zone .sct-zones-list {
    list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
    gap: 12px; margin: 0 auto; padding: 0; max-width: 960px;
}

.sct-tpl-zone .sct-zones-list li {
    background: var(--light, #F4F1EE); border: 1px solid var(--border, #E4DED8);
    border-radius: 30px; padding: 9px 19px; font-weight: 600; font-size: .92rem;
    color: var(--secondary, #1E3A4C); display: flex; align-items: center; gap: 8px;
    overflow-wrap: anywhere;
}

.sct-tpl-zone .sct-zones-list li::before {
    content: "\f3c5"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    color: var(--primary, #C8471E); font-size: .8rem;
}

.sct-tpl-zone .sct-zones-list li a { color: inherit; }

.sct-tpl-zone .sct-zones-list li a:hover { color: var(--primary, #C8471E); }

.sct-tpl-zone .sct-usecase-section { background: var(--light, #F4F1EE); }

.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 {
    width: 100%; border-radius: 16px; box-shadow: 0 20px 46px rgba(0,0,0,.15); object-fit: cover;
}

.sct-tpl-zone .sct-usecase-text h2 {
    font-size: 1.95rem; font-weight: 800; color: var(--secondary, #1E3A4C); margin: 0 0 16px; line-height: 1.22;
}

.sct-tpl-zone .sct-usecase-text p { color: var(--muted, #6B6B6B); margin: 0 0 16px; line-height: 1.8; }

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

.sct-tpl-zone .sct-usecase-text strong { color: var(--secondary, #1E3A4C); }

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

.sct-tpl-zone .sct-usecase-text ul li {
    display: flex; align-items: flex-start; gap: 12px; margin-bottom: 13px; color: var(--muted, #6B6B6B);
}

.sct-tpl-zone .sct-usecase-text ul li::before {
    content: "\f058"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    color: var(--primary, #C8471E); margin-top: 3px; flex-shrink: 0;
}

.sct-tpl-zone .sct-engagements-section { background: var(--white, #fff); }

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

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

.sct-tpl-zone .sct-engagement-card {
    border: 1px solid var(--border, #E4DED8); border-left: 4px solid var(--primary, #C8471E);
    border-radius: 12px; padding: 30px 26px; background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.sct-tpl-zone .sct-engagement-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.08); }

.sct-tpl-zone .sct-engagement-ic { font-size: 1.5rem; color: var(--primary, #C8471E); margin-bottom: 14px; }

.sct-tpl-zone .sct-engagement-card h3 {
    font-size: 1.13rem; font-weight: 800; color: var(--secondary, #1E3A4C); margin: 0 0 10px;
}

.sct-tpl-zone .sct-engagement-card p { color: var(--muted, #6B6B6B); font-size: .95rem; margin: 0; }

.sct-tpl-zone .sct-local-spec { background: var(--light, #F4F1EE); }

.sct-tpl-zone .sct-local-spec-box {
    max-width: 880px; margin: 0 auto; background: #fff;
    border: 1px solid var(--border, #E4DED8); border-radius: 16px; padding: 40px 36px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.sct-tpl-zone .sct-local-spec-box h2 {
    font-size: 1.6rem; font-weight: 800; color: var(--secondary, #1E3A4C); margin: 0 0 16px; line-height: 1.25;
}

.sct-tpl-zone .sct-local-spec-box p { color: var(--muted, #6B6B6B); margin: 0 0 14px; line-height: 1.8; }

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

.sct-tpl-zone .sct-local-spec-box strong { color: var(--secondary, #1E3A4C); }

.sct-tpl-zone .sct-faq-section { background: var(--white, #fff); }

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

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

.sct-tpl-zone .sct-faq-item summary {
    padding: 21px 24px; font-weight: 700; color: var(--secondary, #1E3A4C); cursor: pointer;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
    gap: 16px; font-size: 1.03rem;
}

.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(--primary, #C8471E); font-size: .88rem; 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: var(--muted, #6B6B6B); line-height: 1.75; }

.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 { background: var(--light, #F4F1EE); padding: 66px 0; }

.sct-tpl-zone .sct-maillage-title {
    font-size: 1.5rem; font-weight: 800; color: var(--secondary, #1E3A4C);
    text-align: center; margin: 0 0 10px; line-height: 1.3;
}

.sct-tpl-zone .sct-maillage-sub {
    text-align: center; color: var(--muted, #6B6B6B); font-size: .99rem; margin: 0 auto 32px; max-width: 680px;
}

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

.sct-tpl-zone .sct-maillage-links li { min-width: 0; }

.sct-tpl-zone .sct-maillage-links a {
    display: inline-flex; align-items: center; gap: 9px; background: #fff;
    border: 1px solid var(--border, #E4DED8); border-radius: 30px; padding: 10px 20px;
    font-weight: 600; font-size: .93rem; color: var(--secondary, #1E3A4C);
    overflow-wrap: anywhere; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

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

.sct-tpl-zone .sct-cta-final {
    background: linear-gradient(120deg, var(--secondary, #1E3A4C) 0%, var(--secondary-light, #2C536B) 100%);
    color: #fff; text-align: center;
}

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

.sct-tpl-zone .sct-cta-final p {
    color: rgba(255,255,255,.85); font-size: 1.06rem; max-width: 660px; margin: 0 auto 30px;
}

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

@media (max-width: 1024px) {
    .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}

@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-hero-text h1 { font-size: 2.3rem; }
    .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 section { padding: 64px 0; }
}

@media (max-width: 768px) {
    .sct-tpl-zone .sct-hero { padding: 128px 0 70px; }
    .sct-tpl-zone .sct-section-title { font-size: 1.7rem; }
    .sct-tpl-zone .sct-usecase-text h2 { font-size: 1.6rem; }
    .sct-tpl-zone .sct-cta-final h2 { font-size: 1.65rem; }
    .sct-tpl-zone .sct-local-spec-box { padding: 30px 24px; }
    .sct-tpl-zone .sct-maillage-title { font-size: 1.32rem; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-zone .sct-breadcrumb { font-size: .8rem; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-zone .sct-hero-subtitle { font-size: 1.02rem; }
    .sct-tpl-zone .sct-hero-btns { flex-direction: column; }
    .sct-tpl-zone .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-hero-card { padding: 24px 20px; }
    .sct-tpl-zone .sct-services-grid,
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-stat-value { font-size: 2.05rem; }
    .sct-tpl-zone .sct-cta-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-btns > * { width: 100%; }
    .sct-tpl-zone .sct-faq-item summary { padding: 18px 18px; font-size: .98rem; }
    .sct-tpl-zone .sct-faq-answer { padding: 0 18px 18px; }
}

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

.sct-tpl-service-hub .sct-hero {
    position: relative; padding: 150px 0 88px; color: #fff;
    background:
        linear-gradient(120deg, rgba(30,58,76,.94) 0%, rgba(30,58,76,.78) 55%, rgba(30,58,76,.5) 100%),
        url('/images/service_2_1783430043_6a4cfb9bb733f.webp') center/cover no-repeat;
}

.sct-tpl-zone .sct-hero {
    position: relative; padding: 150px 0 88px; color: #fff;
    background:
        linear-gradient(120deg, rgba(30,58,76,.94) 0%, rgba(30,58,76,.78) 55%, rgba(30,58,76,.5) 100%),
        url('/images/service_2_1783430043_6a4cfb9bb733f.webp') center/cover no-repeat;
}

.sct-tpl-service-hub .sct-hero {
    position: relative; padding: 150px 0 88px; color: #fff;
    background:
        linear-gradient(120deg, rgba(30,58,76,.94) 0%, rgba(30,58,76,.78) 55%, rgba(30,58,76,.5) 100%),
        url('/images/service_3_1783430064_6a4cfbb03676e.webp') center/cover no-repeat;
}

.sct-tpl-zone .sct-hero {
    position: relative; padding: 150px 0 88px; color: #fff;
    background:
        linear-gradient(120deg, rgba(30,58,76,.94) 0%, rgba(30,58,76,.78) 55%, rgba(30,58,76,.5) 100%),
        url('/images/service_4_1783430091_6a4cfbcbb7f20.webp') center/cover no-repeat;
}

.sct-tpl-service-hub .sct-hero {
    position: relative; padding: 150px 0 88px; color: #fff;
    background:
        linear-gradient(120deg, rgba(30,58,76,.94) 0%, rgba(30,58,76,.78) 55%, rgba(30,58,76,.5) 100%),
        url('/images/service_4_1783430091_6a4cfbcbb7f20.webp') center/cover no-repeat;
}

.sct-tpl-service-city .sct-hero {
    position: relative; padding: 150px 0 88px; color: #fff;
    background:
        linear-gradient(120deg, rgba(30,58,76,.94) 0%, rgba(30,58,76,.78) 55%, rgba(30,58,76,.5) 100%),
        url('/images/service_6_1783430137_6a4cfbf9e6a8c.webp') center/cover no-repeat;
}

.sct-tpl-service-city .sct-hero {
    position: relative; padding: 150px 0 88px; color: #fff;
    background:
        linear-gradient(120deg, rgba(30,58,76,.94) 0%, rgba(30,58,76,.78) 55%, rgba(30,58,76,.5) 100%),
        url('/images/service_2_1783430043_6a4cfb9bb733f.webp') center/cover no-repeat;
}

.sct-tpl-service-hub .sct-hero {
    position: relative; padding: 150px 0 88px; color: #fff;
    background:
        linear-gradient(120deg, rgba(30,58,76,.94) 0%, rgba(30,58,76,.78) 55%, rgba(30,58,76,.5) 100%),
        url('/images/service_5_1783430112_6a4cfbe0968ec.webp') center/cover no-repeat;
}

.sct-tpl-service-hub .sct-hero {
    position: relative; padding: 150px 0 88px; color: #fff;
    background:
        linear-gradient(120deg, rgba(30,58,76,.94) 0%, rgba(30,58,76,.78) 55%, rgba(30,58,76,.5) 100%),
        url('/images/service_6_1783430137_6a4cfbf9e6a8c.webp') center/cover no-repeat;
}

.sct-tpl-service-city .sct-hero {
    position: relative; padding: 150px 0 88px; color: #fff;
    background:
        linear-gradient(120deg, rgba(30,58,76,.94) 0%, rgba(30,58,76,.78) 55%, rgba(30,58,76,.5) 100%),
        url('/images/service_3_1783430064_6a4cfbb03676e.webp') center/cover no-repeat;
}

.sct-tpl-service-city .sct-hero {
    position: relative; padding: 150px 0 88px; color: #fff;
    background:
        linear-gradient(120deg, rgba(30,58,76,.94) 0%, rgba(30,58,76,.78) 55%, rgba(30,58,76,.5) 100%),
        url('/images/service_4_1783430091_6a4cfbcbb7f20.webp') center/cover no-repeat;
}

.hero-sitemap {
            padding-top: 150px; padding-bottom: 80px; text-align: center;
        }

.hero-sitemap h1 { font-size: 2.9rem; color: #fff; margin-bottom: 16px; }

.hero-sitemap p.lead {
            font-size: 1.18rem; color: rgba(255,255,255,.9);
            max-width: 620px; margin: 0 auto 26px;
        }

.breadcrumb {
            display: flex; justify-content: center; align-items: center; gap: 10px;
            font-size: .93rem; color: rgba(255,255,255,.75); flex-wrap: wrap;
        }

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

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb i { font-size: .7rem; color: rgba(255,255,255,.5); }

.sitemap-block { border-bottom: 1px solid var(--border); }

.sitemap-block:last-of-type { border-bottom: none; }

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

.block-head { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; }

.block-head .block-ic {
            width: 54px; height: 54px; border-radius: 12px; flex-shrink: 0;
            background: linear-gradient(135deg, var(--primary), #E8663B);
            display: flex; align-items: center; justify-content: center;
            color: #fff; font-size: 1.35rem;
            box-shadow: 0 8px 20px rgba(200,71,30,.25);
        }

.block-head h2 { font-size: 1.75rem; }

.block-desc { color: var(--muted); font-size: 1.02rem; margin-bottom: 30px; }

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

.chips li { display: flex; }

.chip {
            display: inline-flex; align-items: center; gap: 10px;
            background: #fff; border: 1px solid var(--border);
            border-radius: 30px; padding: 12px 22px;
            font-weight: 600; font-size: .95rem; color: var(--secondary);
            box-shadow: 0 4px 14px rgba(0,0,0,.05);
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
        }

.chip i { color: var(--primary); font-size: .9rem; transition: color .2s ease; }

.chip:hover {
            transform: translateY(-3px); border-color: var(--primary); color: var(--primary-dark);
            box-shadow: 0 10px 24px rgba(200,71,30,.16);
        }

.sitemap-block.alt .chip { background: #fff; }

.chip-lg {
            padding: 14px 26px; font-size: 1rem;
            background: var(--secondary); color: #fff; border-color: var(--secondary);
        }

.chip-lg i { color: #FF8A5C; }

.chip-lg:hover { background: var(--secondary-light); color: #fff; border-color: var(--secondary-light); }

.group-card {
            background: #fff; border: 1px solid var(--border); border-radius: 14px;
            padding: 26px 26px 28px; margin-bottom: 22px;
            box-shadow: 0 8px 24px rgba(0,0,0,.05);
        }

.group-card h3 {
            font-size: 1.15rem; margin-bottom: 6px;
            display: flex; align-items: center; gap: 10px;
        }

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

.group-card .group-note { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }

.group-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

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

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

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

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

@media (max-width: 768px) {
            .hero-sitemap { padding-top: 120px; padding-bottom: 60px; }
            .hero-sitemap h1 { font-size: 2.1rem; }
            .block-head h2 { font-size: 1.45rem; }
            .block-head .block-ic { width: 46px; height: 46px; font-size: 1.15rem; }
            .group-grid { grid-template-columns: 1fr; gap: 18px; }
            .chip { padding: 11px 18px; font-size: .9rem; }
        }

@media (max-width: 640px) {
            .chips { gap: 10px; }
            .sitemap-cta .hero-actions .btn { width: 100%; }
        }