:root {
            --primary: #E8620C;
            --primary-dark: #C24E05;
            --secondary: #1C2B3A;
            --secondary-light: #29405A;
            --eco: #4CAF50;
            --white: #ffffff;
            --light: #F5F6F8;
            --gray: #6B7683;
            --dark-text: #1C2B3A;
            --border: #E2E6EB;
        }

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

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

body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            background: var(--white);
            overflow-x: hidden;
        }

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

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

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

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

.header {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            background: var(--secondary);
            box-shadow: 0 2px 12px rgba(0,0,0,0.15);
        }

.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }

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

.logo img { height: 46px; width: auto; border-radius: 6px; }

.logo-text { font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: 0.3px; }

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

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

.nav a { color: var(--white); font-weight: 600; font-size: 0.98rem; transition: color 0.2s; }

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

.nav .btn-cta-nav {
            background: var(--primary); color: var(--white);
            padding: 10px 20px; border-radius: 8px;
            transition: background 0.2s, transform 0.2s;
        }

.nav .btn-cta-nav:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-1px); }

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

.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 8px 20px rgba(232,98,12,0.3); }

.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(232,98,12,0.4); }

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

.btn-outline:hover { background: var(--white); color: var(--secondary); }

.hero {
            position: relative; padding-top: 150px; padding-bottom: 90px;
            background: linear-gradient(rgba(28,43,58,0.82), rgba(28,43,58,0.9)), url('/images/hero_1784211394_6a58e7c24cef5.webp');
            background-size: cover; background-position: center;
            color: var(--white);
        }

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

.hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(232,98,12,0.2); border: 1px solid rgba(232,98,12,0.5);
            color: #FFB37A; padding: 7px 16px; border-radius: 30px;
            font-size: 0.85rem; font-weight: 600; margin-bottom: 22px;
        }

.hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 20px; }

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

.hero p.lead { font-size: 1.15rem; color: rgba(255,255,255,0.9); margin-bottom: 32px; max-width: 560px; }

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

.hero-reassure { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 34px; }

.hero-reassure span { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; color: rgba(255,255,255,0.9); }

.hero-reassure i { color: var(--eco); }

.devis-card {
            background: var(--white); color: var(--dark-text);
            border-radius: 16px; padding: 30px; box-shadow: 0 25px 60px rgba(0,0,0,0.35);
        }

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

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

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

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

.form-group input, .form-group textarea {
            width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
            border-radius: 9px; font-size: 0.95rem; font-family: inherit; color: var(--dark-text);
            transition: border-color 0.2s;
        }

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

.devis-card button[type="submit"], #contactForm button[type="submit"] {
            width: 100%; background: var(--primary); color: var(--white);
            border: none; padding: 14px; border-radius: 10px; font-weight: 700;
            font-size: 1rem; cursor: pointer; transition: background 0.2s;
        }

.devis-card button[type="submit"]:hover, #contactForm button[type="submit"]:hover { background: var(--primary-dark); }

.form-status p, #formStatus p { margin-top: 12px; font-size: 0.9rem; font-weight: 600; }

.stats { background: var(--primary); padding-top: 40px; padding-bottom: 40px; }

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

.stat-item { color: var(--white); }

.stat-item .num { font-size: 2.4rem; font-weight: 800; line-height: 1; }

.stat-item .label { font-size: 0.95rem; font-weight: 600; margin-top: 8px; opacity: 0.95; }

.stat-item i { font-size: 1.6rem; margin-bottom: 10px; opacity: 0.9; }

section { scroll-margin-top: 90px; }

.section-pad { padding-top: 80px; padding-bottom: 80px; }

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

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

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

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

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

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

.service-card {
            width: 340px; max-width: 100%; background: var(--white);
            border-radius: 14px; overflow: hidden; border: 1px solid var(--border);
            box-shadow: 0 6px 18px rgba(28,43,58,0.06);
            transition: transform 0.25s, box-shadow 0.25s;
            display: flex; flex-direction: column;
        }

.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(28,43,58,0.14); }

.service-img { height: 200px; overflow: visible; }

.service-img img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s; }

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

.service-body { padding: 22px 22px 26px; flex: 1; }

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

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

.service-icon {
            width: 46px; height: 46px; background: rgba(232,98,12,0.12); color: var(--primary);
            border-radius: 10px; display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem; margin-bottom: 14px;
        }

.service-cities { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--gray); line-height: 1.8; }

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

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

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

.service-cities .et-alentours { opacity: 0.75; }

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

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

.range-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.range-intro h2 { font-size: 2rem; color: var(--secondary); margin-bottom: 16px; }

.range-intro p { color: var(--gray); margin-bottom: 18px; }

.range-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

.range-badge {
            background: var(--secondary); color: var(--white); font-weight: 700;
            padding: 10px 16px; border-radius: 9px; font-size: 0.95rem;
            display: flex; align-items: center; gap: 8px;
        }

.range-badge i { color: var(--primary); }

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

.waste-item {
            background: var(--white); border: 1px solid var(--border); border-radius: 10px;
            padding: 14px 16px; display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--secondary);
        }

.waste-item i { color: var(--eco); font-size: 1.05rem; }

.pelle {
            background: linear-gradient(120deg, var(--secondary), var(--secondary-light));
            color: var(--white); border-radius: 18px; padding: 46px;
            display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
        }

.pelle h2 { font-size: 1.9rem; margin-bottom: 14px; }

.pelle h2 span { color: var(--primary); }

.pelle p { color: rgba(255,255,255,0.88); margin-bottom: 24px; }

.pelle-options { display: flex; flex-direction: column; gap: 16px; }

.pelle-option {
            background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
            border-radius: 12px; padding: 20px 22px;
        }

.pelle-option .top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }

.pelle-option .name { font-weight: 700; font-size: 1.05rem; display: flex; align-items: center; gap: 10px; }

.pelle-option .name i { color: var(--primary); }

.pelle-option .price { font-weight: 800; font-size: 1.3rem; color: var(--primary); white-space: nowrap; }

.pelle-option .detail { font-size: 0.9rem; color: rgba(255,255,255,0.8); }

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

.why-item { text-align: center; padding: 30px 22px; background: var(--white); border-radius: 14px; border: 1px solid var(--border); }

.why-item .ic {
            width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
            background: rgba(232,98,12,0.12); color: var(--primary);
            display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
        }

.why-item h3 { font-size: 1.1rem; color: var(--secondary); margin-bottom: 10px; }

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

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

.about-img img { border-radius: 16px; width: 100%; height: 100%; max-height: 460px; object-fit: cover; box-shadow: 0 20px 44px rgba(28,43,58,0.18); }

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

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

.about-highlight {
            background: rgba(76,175,80,0.1); border-left: 4px solid var(--eco);
            padding: 18px 22px; border-radius: 10px; margin-top: 22px;
        }

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

.about-list { list-style: none; margin-top: 22px; display: grid; gap: 12px; }

.about-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--secondary); font-weight: 600; }

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

.zones-inner { text-align: center; }

.zones-map { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 30px; }

.zone-chip {
            background: var(--white); border: 1px solid var(--border); border-radius: 30px;
            padding: 11px 22px; font-weight: 600; color: var(--secondary);
            display: flex; align-items: center; gap: 9px;
        }

.zone-chip i { color: var(--primary); }

a.zone-chip { transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; }

a.zone-chip:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(232,98,12,0.15); }

.zones-note { margin-top: 22px; color: var(--gray); font-size: 0.95rem; }

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

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

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

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

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

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

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

.hours-card { max-width: 520px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(28,43,58,0.08); }

.hours-head { background: var(--secondary); color: var(--white); padding: 22px; text-align: center; }

.hours-head i { font-size: 1.6rem; color: var(--primary); margin-bottom: 8px; }

.hours-head p { font-weight: 700; font-size: 1.15rem; }

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

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

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

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

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

.contact-info-list { display: grid; gap: 18px; margin-bottom: 28px; }

.contact-info-item { display: flex; align-items: center; gap: 16px; }

.contact-info-item .ic {
            width: 50px; height: 50px; flex-shrink: 0; border-radius: 12px;
            background: rgba(232,98,12,0.12); color: var(--primary);
            display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
        }

.contact-info-item .lbl { font-size: 0.82rem; color: var(--gray); }

.contact-info-item .val { font-weight: 700; color: var(--secondary); }

.contact-map iframe { border-radius: 14px; margin-top: 8px; }

#contactForm { background: var(--white); padding: 30px; border-radius: 16px; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(28,43,58,0.06); }

.footer { background: var(--secondary); color: rgba(255,255,255,0.8); padding-top: 60px; }

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

.footer-col .foot-title { font-weight: 700; color: var(--white); margin-bottom: 18px; font-size: 1.05rem; display: block; }

.footer-col img { height: 44px; width: auto; border-radius: 6px; margin-bottom: 16px; }

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

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

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

.footer-col ul li a { transition: color 0.2s; font-size: 0.92rem; }

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

.footer-contact-line { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; margin-bottom: 12px; }

.footer-contact-line i { color: var(--primary); width: 18px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; padding-bottom: 22px; text-align: center; font-size: 0.85rem; }

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

.footer-bottom .foot-links { margin-top: 8px; }

.footer-bottom .foot-links a { color: rgba(255,255,255,0.7); margin: 0 8px; }

.footer-bottom .foot-links a:hover { color: var(--primary); }

.sticky-call { display: none; }

.modal-overlay {
            display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6);
            z-index: 2000; align-items: center; justify-content: center; padding: 20px;
        }

.modal-overlay:target { display: flex; }

.modal-box { background: var(--white); border-radius: 16px; max-width: 640px; width: 100%; max-height: 85vh; overflow-y: auto; padding: 34px; position: relative; }

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

.modal-box h4 { color: var(--secondary); margin: 18px 0 8px; font-size: 1rem; }

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

.modal-close { position: absolute; top: 18px; right: 20px; font-size: 1.5rem; color: var(--gray); }

[data-anim] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }

[data-anim].in { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
            .hero h1 { font-size: 2.3rem; }
            .why-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-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(--white);
            }
            .nav {
                display: none;
                position: absolute; top: 100%; left: 0; right: 0;
                flex-direction: column; gap: 12px; align-items: stretch;
                background: var(--secondary); padding: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.25);
            }
            .menu-check:checked ~ .nav { display: flex; }
            .menu-check:checked ~ .menu-toggle .fa-bars::before { content: "\f00d"; }
            .nav a { padding: 8px 4px; }
            .nav .btn-cta-nav { text-align: center; }

            .hero { padding-top: 120px; padding-bottom: 60px; }
            .hero-grid { grid-template-columns: 1fr; gap: 40px; }
            .hero h1 { font-size: 2rem; }
            .range-wrap { grid-template-columns: 1fr; gap: 30px; }
            .pelle { grid-template-columns: 1fr; padding: 30px; }
            .about-grid { grid-template-columns: 1fr; gap: 34px; }
            .about-img { order: -1; }
            .contact-grid { grid-template-columns: 1fr; gap: 30px; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .section-head h2 { font-size: 1.7rem; }
            .sticky-call {
                display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
                background: var(--primary); color: var(--white); padding: 14px;
                align-items: center; justify-content: center; gap: 10px; font-weight: 700;
                box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
            }
            body { padding-bottom: 56px; }
        }

@media (max-width: 640px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
            .why-grid { grid-template-columns: 1fr; }
            .waste-list { grid-template-columns: 1fr; }
            .stat-item .num { font-size: 2rem; }
            .pelle-option .top { flex-direction: column; align-items: flex-start; }
        }

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

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

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

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

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

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(rgba(28,43,58,0.86), rgba(28,43,58,0.93)), url('/images/service_1_1784211414_6a58e7d666648.webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.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.85rem;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.75);
}

.sct-tpl-service-hub .sct-breadcrumb a { color: rgba(255,255,255,0.8); transition: color 0.2s; }

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

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

.sct-tpl-service-hub .sct-bc-current { color: #E8620C; 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(232,98,12,0.2); border: 1px solid rgba(232,98,12,0.5);
    color: #FFB37A; padding: 7px 16px; border-radius: 30px;
    font-size: 0.82rem; font-weight: 600;
}

.sct-tpl-service-hub .sct-hero-badge i { font-size: 0.85rem; }

.sct-tpl-service-hub .sct-hero-text h1 { font-size: 2.6rem; font-weight: 800; line-height: 1.18; margin-bottom: 18px; }

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

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.1rem; color: rgba(255,255,255,0.9);
    margin-bottom: 30px; max-width: 620px; line-height: 1.65;
}

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

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

.sct-tpl-service-hub .sct-btn-primary { background: #E8620C; color: #ffffff; box-shadow: 0 8px 20px rgba(232,98,12,0.3); }

.sct-tpl-service-hub .sct-btn-primary:hover { background: #C24E05; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(232,98,12,0.4); }

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

.sct-tpl-service-hub .sct-btn-outline:hover { background: #ffffff; color: #1C2B3A; }

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

.sct-tpl-service-hub .sct-hero-trust span { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; color: rgba(255,255,255,0.9); }

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

.sct-tpl-service-hub .sct-hero-card {
    background: #ffffff; color: #1C2B3A;
    border-radius: 16px; padding: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.sct-tpl-service-hub .sct-hero-card-title { font-size: 1.35rem; font-weight: 800; color: #1C2B3A; margin-bottom: 6px; }

.sct-tpl-service-hub .sct-hero-card-sub { font-size: 0.9rem; color: #6B7683; margin-bottom: 22px; }

.sct-tpl-service-hub .sct-hero-card-list { list-style: none; display: grid; gap: 16px; margin-bottom: 24px; padding: 0; }

.sct-tpl-service-hub .sct-hero-card-list li { display: flex; align-items: center; gap: 14px; }

.sct-tpl-service-hub .sct-hero-card-ic {
    width: 44px; height: 44px; flex-shrink: 0; border-radius: 11px;
    background: rgba(232,98,12,0.12); color: #E8620C;
    display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}

.sct-tpl-service-hub .sct-hero-card-lbl { font-size: 0.78rem; color: #6B7683; display: block; }

.sct-tpl-service-hub .sct-hero-card-val { font-weight: 700; color: #1C2B3A; font-size: 0.98rem; overflow-wrap: anywhere; }

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

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

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

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

.sct-tpl-service-hub .sct-stat-item { color: #ffffff; }

.sct-tpl-service-hub .sct-stat-num { font-size: 2.2rem; font-weight: 800; line-height: 1.1; overflow-wrap: anywhere; }

.sct-tpl-service-hub .sct-stat-label { font-size: 0.93rem; font-weight: 600; margin-top: 8px; opacity: 0.95; }

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

.sct-tpl-service-hub .sct-bg-light { background: #F5F6F8; }

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

.sct-tpl-service-hub .sct-section-tag {
    display: inline-block; color: #E8620C; font-weight: 700; font-size: 0.82rem;
    letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-section-title { font-size: 2rem; color: #1C2B3A; line-height: 1.22; margin-bottom: 14px; }

.sct-tpl-service-hub .sct-section-sub { color: #6B7683; font-size: 1.02rem; }

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

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

.sct-tpl-service-hub .sct-intro-inner p { color: #6B7683; font-size: 1.02rem; line-height: 1.8; margin-bottom: 18px; }

.sct-tpl-service-hub .sct-intro-inner p strong { color: #1C2B3A; }

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

.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: #ffffff; border: 1px solid #E2E6EB; border-radius: 14px;
    overflow: hidden; display: flex; flex-direction: column;
    box-shadow: 0 6px 18px rgba(28,43,58,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.sct-tpl-service-hub .sct-service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(28,43,58,0.14); }

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

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

.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 22px 28px; flex: 1; }

.sct-tpl-service-hub .sct-service-body h3 { font-size: 1.15rem; color: #1C2B3A; margin-bottom: 10px; }

.sct-tpl-service-hub .sct-service-body p { color: #6B7683; font-size: 0.95rem; line-height: 1.7; }

.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 {
    background: #ffffff; border: 1px solid #E2E6EB; border-radius: 14px;
    padding: 30px 20px; text-align: center; position: relative;
}

.sct-tpl-service-hub .sct-step-num {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    width: 30px; height: 30px; border-radius: 50%;
    background: #1C2B3A; color: #ffffff; font-weight: 800; font-size: 0.85rem;
    display: flex; align-items: center; justify-content: center;
}

.sct-tpl-service-hub .sct-step-ic {
    width: 60px; height: 60px; margin: 10px auto 16px; border-radius: 50%;
    background: rgba(232,98,12,0.12); color: #E8620C;
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}

.sct-tpl-service-hub .sct-step h3 { font-size: 1.02rem; color: #1C2B3A; margin-bottom: 9px; }

.sct-tpl-service-hub .sct-step p { color: #6B7683; font-size: 0.9rem; line-height: 1.65; }

.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: #ffffff; border: 1px solid #E2E6EB; border-radius: 14px;
    padding: 32px 24px; text-align: center;
}

.sct-tpl-service-hub .sct-why-ic {
    width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
    background: rgba(232,98,12,0.12); color: #E8620C;
    display: flex; align-items: center; justify-content: center; font-size: 1.55rem;
}

.sct-tpl-service-hub .sct-why-item h3 { font-size: 1.08rem; color: #1C2B3A; margin-bottom: 10px; }

.sct-tpl-service-hub .sct-why-item p { color: #6B7683; font-size: 0.92rem; line-height: 1.7; }

.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; max-height: 440px; object-fit: cover;
    box-shadow: 0 20px 44px rgba(28,43,58,0.18);
}

.sct-tpl-service-hub .sct-usecase-text h2 { font-size: 1.9rem; color: #1C2B3A; margin-bottom: 18px; line-height: 1.25; }

.sct-tpl-service-hub .sct-usecase-text h3 { font-size: 1.12rem; color: #1C2B3A; margin: 22px 0 10px; }

.sct-tpl-service-hub .sct-usecase-text p { color: #6B7683; margin-bottom: 16px; line-height: 1.8; font-size: 1rem; }

.sct-tpl-service-hub .sct-usecase-text p strong { color: #1C2B3A; }

.sct-tpl-service-hub .sct-usecase-text ul { list-style: none; display: grid; gap: 12px; margin: 22px 0 0; padding: 0; }

.sct-tpl-service-hub .sct-usecase-text ul li { display: flex; align-items: flex-start; gap: 12px; color: #1C2B3A; font-weight: 600; }

.sct-tpl-service-hub .sct-usecase-text ul li::before {
    content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    color: #4CAF50; margin-top: 3px; flex-shrink: 0;
}

.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 {
    background: linear-gradient(120deg, #1C2B3A, #29405A); color: #ffffff;
    border-radius: 16px; padding: 34px 28px;
}

.sct-tpl-service-hub .sct-engagement-ic {
    width: 56px; height: 56px; border-radius: 12px; margin-bottom: 18px;
    background: rgba(232,98,12,0.22); color: #E8620C;
    display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
}

.sct-tpl-service-hub .sct-engagement h3 { font-size: 1.12rem; margin-bottom: 10px; }

.sct-tpl-service-hub .sct-engagement p { color: rgba(255,255,255,0.85); font-size: 0.94rem; line-height: 1.7; }

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

.sct-tpl-service-hub .sct-faq-item {
    background: #ffffff; border: 1px solid #E2E6EB; border-radius: 12px;
    margin-bottom: 16px; overflow: hidden;
}

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

.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: #E8620C; font-size: 0.9rem; flex-shrink: 0; transition: transform 0.25s;
}

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

.sct-tpl-service-hub .sct-faq-body { padding: 0 24px 22px; color: #6B7683; line-height: 1.8; font-size: 0.97rem; }

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

.sct-tpl-service-hub .sct-maillage-section.sct-bg-light { background: #F5F6F8; }

.sct-tpl-service-hub .sct-maillage-cities .sct-maillage-links { max-width: 1100px; }

.sct-tpl-service-hub .sct-maillage-title { font-size: 1.5rem; color: #1C2B3A; text-align: center; margin-bottom: 12px; line-height: 1.3; }

.sct-tpl-service-hub .sct-maillage-sub { text-align: center; color: #6B7683; max-width: 700px; margin: 0 auto 30px; font-size: 1rem; }

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

.sct-tpl-service-hub .sct-maillage-links li { display: flex; }

.sct-tpl-service-hub .sct-maillage-links a {
    display: inline-flex; align-items: center; gap: 8px;
    background: #ffffff; border: 1px solid #E2E6EB; border-radius: 9px;
    padding: 11px 18px; font-weight: 600; color: #1C2B3A; font-size: 0.92rem;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
    overflow-wrap: anywhere;
}

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

.sct-tpl-service-hub .sct-maillage-note { text-align: center; color: #6B7683; font-size: 0.93rem; margin-top: 24px; }

.sct-tpl-service-hub .sct-maillage-note a { color: #E8620C; font-weight: 700; }

.sct-tpl-service-hub .sct-cta-final {
    background: linear-gradient(120deg, #1C2B3A, #29405A);
    color: #ffffff; padding: 74px 0; text-align: center;
}

.sct-tpl-service-hub .sct-cta-final h2 { font-size: 2rem; margin-bottom: 16px; line-height: 1.25; }

.sct-tpl-service-hub .sct-cta-final h2 span { color: #E8620C; }

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

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

@media (max-width: 1024px) {
    .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-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 2.2rem; }
}

@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-usecase-img { order: -1; }
    .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-section,
    .sct-tpl-service-hub .sct-intro-section { padding: 64px 0; }
    .sct-tpl-service-hub .sct-maillage-section { padding: 56px 0; }
}

@media (max-width: 768px) {
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-section-title { font-size: 1.65rem; }
    .sct-tpl-service-hub .sct-usecase-text h2,
    .sct-tpl-service-hub .sct-cta-final h2 { font-size: 1.65rem; }
    .sct-tpl-service-hub .sct-maillage-title { font-size: 1.3rem; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-hub .sct-breadcrumb { font-size: 0.8rem; gap: 6px; 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-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-stat-num { font-size: 1.8rem; }
    .sct-tpl-service-hub .sct-faq-item summary { padding: 17px 18px; font-size: 0.97rem; }
    .sct-tpl-service-hub .sct-faq-body { padding: 0 18px 18px; }
    .sct-tpl-service-hub .sct-maillage-links a { padding: 10px 15px; font-size: 0.88rem; }
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(rgba(28,43,58,0.86), rgba(28,43,58,0.93)), url('/images/service_5_1784211504_6a58e8305798d.webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.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.85rem;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.75);
}

.sct-tpl-service-city .sct-breadcrumb a { color: rgba(255,255,255,0.8); transition: color 0.2s; }

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

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

.sct-tpl-service-city .sct-bc-current { color: #E8620C; 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(232,98,12,0.2); border: 1px solid rgba(232,98,12,0.5);
    color: #FFB37A; padding: 7px 16px; border-radius: 30px;
    font-size: 0.82rem; font-weight: 600;
}

.sct-tpl-service-city .sct-hero-badge i { font-size: 0.85rem; }

.sct-tpl-service-city .sct-hero-text h1 { font-size: 2.6rem; font-weight: 800; line-height: 1.18; margin-bottom: 18px; }

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

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.1rem; color: rgba(255,255,255,0.9);
    margin-bottom: 30px; max-width: 620px; line-height: 1.65;
}

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

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

.sct-tpl-service-city .sct-btn-primary { background: #E8620C; color: #ffffff; box-shadow: 0 8px 20px rgba(232,98,12,0.3); }

.sct-tpl-service-city .sct-btn-primary:hover { background: #C24E05; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(232,98,12,0.4); }

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

.sct-tpl-service-city .sct-btn-outline:hover { background: #ffffff; color: #1C2B3A; }

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

.sct-tpl-service-city .sct-hero-trust span { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; color: rgba(255,255,255,0.9); }

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

.sct-tpl-service-city .sct-hero-card {
    background: #ffffff; color: #1C2B3A;
    border-radius: 16px; padding: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.sct-tpl-service-city .sct-hero-card-title { font-size: 1.35rem; font-weight: 800; color: #1C2B3A; margin-bottom: 6px; }

.sct-tpl-service-city .sct-hero-card-sub { font-size: 0.9rem; color: #6B7683; margin-bottom: 22px; }

.sct-tpl-service-city .sct-hero-card-list { list-style: none; display: grid; gap: 16px; margin-bottom: 24px; padding: 0; }

.sct-tpl-service-city .sct-hero-card-list li { display: flex; align-items: center; gap: 14px; }

.sct-tpl-service-city .sct-hero-card-ic {
    width: 44px; height: 44px; flex-shrink: 0; border-radius: 11px;
    background: rgba(232,98,12,0.12); color: #E8620C;
    display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}

.sct-tpl-service-city .sct-hero-card-lbl { font-size: 0.78rem; color: #6B7683; display: block; }

.sct-tpl-service-city .sct-hero-card-val { font-weight: 700; color: #1C2B3A; font-size: 0.98rem; overflow-wrap: anywhere; }

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

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

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

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

.sct-tpl-service-city .sct-stat-item { color: #ffffff; }

.sct-tpl-service-city .sct-stat-num { font-size: 2.2rem; font-weight: 800; line-height: 1.1; overflow-wrap: anywhere; }

.sct-tpl-service-city .sct-stat-label { font-size: 0.93rem; font-weight: 600; margin-top: 8px; opacity: 0.95; }

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

.sct-tpl-service-city .sct-bg-light { background: #F5F6F8; }

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

.sct-tpl-service-city .sct-section-tag {
    display: inline-block; color: #E8620C; font-weight: 700; font-size: 0.82rem;
    letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px;
}

.sct-tpl-service-city .sct-section-title { font-size: 2rem; color: #1C2B3A; line-height: 1.22; margin-bottom: 14px; }

.sct-tpl-service-city .sct-section-sub { color: #6B7683; font-size: 1.02rem; }

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

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

.sct-tpl-service-city .sct-intro-inner p { color: #6B7683; font-size: 1.02rem; line-height: 1.8; margin-bottom: 18px; }

.sct-tpl-service-city .sct-intro-inner p strong { color: #1C2B3A; }

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

.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: #ffffff; border: 1px solid #E2E6EB; border-radius: 14px;
    overflow: hidden; display: flex; flex-direction: column;
    box-shadow: 0 6px 18px rgba(28,43,58,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.sct-tpl-service-city .sct-service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(28,43,58,0.14); }

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

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

.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 22px 28px; flex: 1; }

.sct-tpl-service-city .sct-service-body h3 { font-size: 1.15rem; color: #1C2B3A; margin-bottom: 10px; }

.sct-tpl-service-city .sct-service-body p { color: #6B7683; font-size: 0.95rem; line-height: 1.7; }

.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 {
    background: #ffffff; border: 1px solid #E2E6EB; border-radius: 14px;
    padding: 30px 20px; text-align: center; position: relative;
}

.sct-tpl-service-city .sct-step-num {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    width: 30px; height: 30px; border-radius: 50%;
    background: #1C2B3A; color: #ffffff; font-weight: 800; font-size: 0.85rem;
    display: flex; align-items: center; justify-content: center;
}

.sct-tpl-service-city .sct-step-ic {
    width: 60px; height: 60px; margin: 10px auto 16px; border-radius: 50%;
    background: rgba(232,98,12,0.12); color: #E8620C;
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}

.sct-tpl-service-city .sct-step h3 { font-size: 1.02rem; color: #1C2B3A; margin-bottom: 9px; }

.sct-tpl-service-city .sct-step p { color: #6B7683; font-size: 0.9rem; line-height: 1.65; }

.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: #ffffff; border: 1px solid #E2E6EB; border-radius: 14px;
    padding: 32px 24px; text-align: center;
}

.sct-tpl-service-city .sct-why-ic {
    width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
    background: rgba(232,98,12,0.12); color: #E8620C;
    display: flex; align-items: center; justify-content: center; font-size: 1.55rem;
}

.sct-tpl-service-city .sct-why-item h3 { font-size: 1.08rem; color: #1C2B3A; margin-bottom: 10px; }

.sct-tpl-service-city .sct-why-item p { color: #6B7683; font-size: 0.92rem; line-height: 1.7; }

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

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

.sct-tpl-service-city .sct-zones-list li {
    background: #ffffff; border: 1px solid #E2E6EB; border-radius: 30px;
    padding: 10px 20px; font-weight: 600; color: #1C2B3A; font-size: 0.93rem;
    display: flex; align-items: center; gap: 9px; overflow-wrap: anywhere;
}

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

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

.sct-tpl-service-city .sct-zones-list a:hover { color: #E8620C; }

.sct-tpl-service-city .sct-zones-note { text-align: center; color: #6B7683; font-size: 0.95rem; margin-top: 28px; }

.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; max-height: 440px; object-fit: cover;
    box-shadow: 0 20px 44px rgba(28,43,58,0.18);
}

.sct-tpl-service-city .sct-usecase-text h2 { font-size: 1.9rem; color: #1C2B3A; margin-bottom: 18px; line-height: 1.25; }

.sct-tpl-service-city .sct-usecase-text p { color: #6B7683; margin-bottom: 16px; line-height: 1.8; font-size: 1rem; }

.sct-tpl-service-city .sct-usecase-text p strong { color: #1C2B3A; }

.sct-tpl-service-city .sct-usecase-text ul { list-style: none; display: grid; gap: 12px; margin: 22px 0 0; padding: 0; }

.sct-tpl-service-city .sct-usecase-text ul li { display: flex; align-items: flex-start; gap: 12px; color: #1C2B3A; font-weight: 600; }

.sct-tpl-service-city .sct-usecase-text ul li::before {
    content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    color: #4CAF50; margin-top: 3px; flex-shrink: 0;
}

.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 {
    background: linear-gradient(120deg, #1C2B3A, #29405A); color: #ffffff;
    border-radius: 16px; padding: 34px 28px;
}

.sct-tpl-service-city .sct-engagement-ic {
    width: 56px; height: 56px; border-radius: 12px; margin-bottom: 18px;
    background: rgba(232,98,12,0.22); color: #E8620C;
    display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
}

.sct-tpl-service-city .sct-engagement h3 { font-size: 1.12rem; margin-bottom: 10px; }

.sct-tpl-service-city .sct-engagement p { color: rgba(255,255,255,0.85); font-size: 0.94rem; line-height: 1.7; }

.sct-tpl-service-city .sct-local-spec { padding: 70px 0; }

.sct-tpl-service-city .sct-local-spec-inner {
    max-width: 900px; margin: 0 auto;
    background: rgba(76,175,80,0.09); border-left: 4px solid #4CAF50;
    border-radius: 12px; padding: 30px 34px;
}

.sct-tpl-service-city .sct-local-spec-inner h2 { font-size: 1.45rem; color: #1C2B3A; margin-bottom: 14px; }

.sct-tpl-service-city .sct-local-spec-inner p { color: #6B7683; line-height: 1.8; margin-bottom: 14px; }

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

.sct-tpl-service-city .sct-local-spec-inner strong { color: #1C2B3A; }

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

.sct-tpl-service-city .sct-faq-item {
    background: #ffffff; border: 1px solid #E2E6EB; border-radius: 12px;
    margin-bottom: 16px; overflow: hidden;
}

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

.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: #E8620C; font-size: 0.9rem; flex-shrink: 0; transition: transform 0.25s;
}

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

.sct-tpl-service-city .sct-faq-body { padding: 0 24px 22px; color: #6B7683; line-height: 1.8; font-size: 0.97rem; }

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

.sct-tpl-service-city .sct-maillage-section.sct-bg-light { background: #F5F6F8; }

.sct-tpl-service-city .sct-maillage-title { font-size: 1.35rem; color: #1C2B3A; text-align: center; margin-bottom: 26px; }

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

.sct-tpl-service-city .sct-maillage-links li { display: flex; }

.sct-tpl-service-city .sct-maillage-links a {
    display: inline-flex; align-items: center; gap: 8px;
    background: #ffffff; border: 1px solid #E2E6EB; border-radius: 9px;
    padding: 11px 18px; font-weight: 600; color: #1C2B3A; font-size: 0.92rem;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
    overflow-wrap: anywhere;
}

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

.sct-tpl-service-city .sct-maillage-note { text-align: center; color: #6B7683; font-size: 0.93rem; margin-top: 22px; }

.sct-tpl-service-city .sct-cta-final {
    background: linear-gradient(120deg, #1C2B3A, #29405A);
    color: #ffffff; padding: 74px 0; text-align: center;
}

.sct-tpl-service-city .sct-cta-final h2 { font-size: 2rem; margin-bottom: 16px; line-height: 1.25; }

.sct-tpl-service-city .sct-cta-final h2 span { color: #E8620C; }

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

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

@media (max-width: 1024px) {
    .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-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 2.2rem; }
}

@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-usecase-img { order: -1; }
    .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-section { padding: 64px 0; }
    .sct-tpl-service-city .sct-intro-section,
    .sct-tpl-service-city .sct-zones-section { padding: 64px 0; }
}

@media (max-width: 768px) {
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-section-title { font-size: 1.65rem; }
    .sct-tpl-service-city .sct-usecase-text h2,
    .sct-tpl-service-city .sct-cta-final h2 { font-size: 1.65rem; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-city .sct-breadcrumb { font-size: 0.8rem; gap: 6px; 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-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-stat-num { font-size: 1.8rem; }
    .sct-tpl-service-city .sct-local-spec-inner { padding: 24px 22px; }
    .sct-tpl-service-city .sct-faq-item summary { padding: 17px 18px; font-size: 0.97rem; }
    .sct-tpl-service-city .sct-faq-body { padding: 0 18px 18px; }
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(rgba(28,43,58,0.86), rgba(28,43,58,0.93)), url('/images/service_1_1784211414_6a58e7d666648.webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(rgba(28,43,58,0.86), rgba(28,43,58,0.93)), url('/images/service_5_1784211504_6a58e8305798d.webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.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.85rem;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.75);
}

.sct-tpl-zone .sct-breadcrumb a { color: rgba(255,255,255,0.8); transition: color 0.2s; }

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

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

.sct-tpl-zone .sct-bc-current { color: #E8620C; 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(232,98,12,0.2); border: 1px solid rgba(232,98,12,0.5);
    color: #FFB37A; padding: 7px 16px; border-radius: 30px;
    font-size: 0.82rem; font-weight: 600;
}

.sct-tpl-zone .sct-hero-badge i { font-size: 0.85rem; }

.sct-tpl-zone .sct-hero-text h1 { font-size: 2.6rem; font-weight: 800; line-height: 1.18; margin-bottom: 18px; }

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

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.1rem; color: rgba(255,255,255,0.9);
    margin-bottom: 30px; max-width: 620px; line-height: 1.65;
}

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

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

.sct-tpl-zone .sct-btn-primary { background: #E8620C; color: #ffffff; box-shadow: 0 8px 20px rgba(232,98,12,0.3); }

.sct-tpl-zone .sct-btn-primary:hover { background: #C24E05; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(232,98,12,0.4); }

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

.sct-tpl-zone .sct-btn-outline:hover { background: #ffffff; color: #1C2B3A; }

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

.sct-tpl-zone .sct-hero-trust span { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; color: rgba(255,255,255,0.9); }

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

.sct-tpl-zone .sct-hero-card {
    background: #ffffff; color: #1C2B3A;
    border-radius: 16px; padding: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.sct-tpl-zone .sct-hero-card-title { font-size: 1.35rem; font-weight: 800; color: #1C2B3A; margin-bottom: 6px; }

.sct-tpl-zone .sct-hero-card-sub { font-size: 0.9rem; color: #6B7683; margin-bottom: 22px; }

.sct-tpl-zone .sct-hero-card-list { list-style: none; display: grid; gap: 16px; margin-bottom: 24px; padding: 0; }

.sct-tpl-zone .sct-hero-card-list li { display: flex; align-items: center; gap: 14px; }

.sct-tpl-zone .sct-hero-card-ic {
    width: 44px; height: 44px; flex-shrink: 0; border-radius: 11px;
    background: rgba(232,98,12,0.12); color: #E8620C;
    display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}

.sct-tpl-zone .sct-hero-card-lbl { font-size: 0.78rem; color: #6B7683; display: block; }

.sct-tpl-zone .sct-hero-card-val { font-weight: 700; color: #1C2B3A; font-size: 0.98rem; overflow-wrap: anywhere; }

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

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

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

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

.sct-tpl-zone .sct-stat-item { color: #ffffff; }

.sct-tpl-zone .sct-stat-num { font-size: 2.2rem; font-weight: 800; line-height: 1.1; overflow-wrap: anywhere; }

.sct-tpl-zone .sct-stat-label { font-size: 0.93rem; font-weight: 600; margin-top: 8px; opacity: 0.95; }

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

.sct-tpl-zone .sct-bg-light { background: #F5F6F8; }

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

.sct-tpl-zone .sct-section-tag {
    display: inline-block; color: #E8620C; font-weight: 700; font-size: 0.82rem;
    letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px;
}

.sct-tpl-zone .sct-section-title { font-size: 2rem; color: #1C2B3A; line-height: 1.22; margin-bottom: 14px; }

.sct-tpl-zone .sct-section-sub { color: #6B7683; font-size: 1.02rem; }

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

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

.sct-tpl-zone .sct-intro-inner p { color: #6B7683; font-size: 1.02rem; line-height: 1.8; margin-bottom: 18px; }

.sct-tpl-zone .sct-intro-inner p strong { color: #1C2B3A; }

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

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

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

.sct-tpl-zone .sct-services-grid li { list-style: none; }

.sct-tpl-zone .sct-service-card {
    background: #ffffff; border: 1px solid #E2E6EB; border-radius: 14px;
    overflow: hidden; display: flex; flex-direction: column; height: 100%;
    box-shadow: 0 6px 18px rgba(28,43,58,0.06);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.sct-tpl-zone .sct-service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(28,43,58,0.14); border-color: #E8620C; }

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

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

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

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

.sct-tpl-zone .sct-service-icon {
    width: 48px; height: 48px; border-radius: 11px; margin-bottom: 14px;
    background: rgba(232,98,12,0.12); color: #E8620C;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}

.sct-tpl-zone .sct-service-body h3 { font-size: 1.13rem; color: #1C2B3A; margin-bottom: 10px; overflow-wrap: anywhere; }

.sct-tpl-zone .sct-service-body p { color: #6B7683; font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }

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

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

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

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

.sct-tpl-zone .sct-zones-list li {
    background: #ffffff; border: 1px solid #E2E6EB; border-radius: 30px;
    padding: 10px 20px; font-weight: 600; color: #1C2B3A; font-size: 0.93rem;
    display: flex; align-items: center; gap: 9px; overflow-wrap: anywhere;
}

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

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

.sct-tpl-zone .sct-zones-list a:hover { color: #E8620C; }

.sct-tpl-zone .sct-zones-note { text-align: center; color: #6B7683; font-size: 0.95rem; margin-top: 28px; }

.sct-tpl-zone .sct-zones-note a { color: #E8620C; font-weight: 700; }

.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; max-height: 440px; object-fit: cover;
    box-shadow: 0 20px 44px rgba(28,43,58,0.18);
}

.sct-tpl-zone .sct-usecase-text h2 { font-size: 1.9rem; color: #1C2B3A; margin-bottom: 18px; line-height: 1.25; }

.sct-tpl-zone .sct-usecase-text h3 { font-size: 1.12rem; color: #1C2B3A; margin: 22px 0 10px; }

.sct-tpl-zone .sct-usecase-text p { color: #6B7683; margin-bottom: 16px; line-height: 1.8; font-size: 1rem; }

.sct-tpl-zone .sct-usecase-text p strong { color: #1C2B3A; }

.sct-tpl-zone .sct-usecase-text ul { list-style: none; display: grid; gap: 12px; margin: 22px 0 0; padding: 0; }

.sct-tpl-zone .sct-usecase-text ul li { display: flex; align-items: flex-start; gap: 12px; color: #1C2B3A; font-weight: 600; }

.sct-tpl-zone .sct-usecase-text ul li::before {
    content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    color: #4CAF50; margin-top: 3px; flex-shrink: 0;
}

.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 {
    background: linear-gradient(120deg, #1C2B3A, #29405A); color: #ffffff;
    border-radius: 16px; padding: 34px 28px;
}

.sct-tpl-zone .sct-engagement-ic {
    width: 56px; height: 56px; border-radius: 12px; margin-bottom: 18px;
    background: rgba(232,98,12,0.22); color: #E8620C;
    display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
}

.sct-tpl-zone .sct-engagement h3 { font-size: 1.12rem; margin-bottom: 10px; }

.sct-tpl-zone .sct-engagement p { color: rgba(255,255,255,0.85); font-size: 0.94rem; line-height: 1.7; }

.sct-tpl-zone .sct-local-spec { padding: 70px 0; }

.sct-tpl-zone .sct-local-spec-inner {
    max-width: 900px; margin: 0 auto;
    background: rgba(76,175,80,0.09); border-left: 4px solid #4CAF50;
    border-radius: 12px; padding: 30px 34px;
}

.sct-tpl-zone .sct-local-spec-inner h2 { font-size: 1.45rem; color: #1C2B3A; margin-bottom: 14px; line-height: 1.3; }

.sct-tpl-zone .sct-local-spec-inner h3 { font-size: 1.08rem; color: #1C2B3A; margin: 18px 0 10px; }

.sct-tpl-zone .sct-local-spec-inner p { color: #6B7683; line-height: 1.8; margin-bottom: 14px; }

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

.sct-tpl-zone .sct-local-spec-inner strong { color: #1C2B3A; }

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

.sct-tpl-zone .sct-faq-item {
    background: #ffffff; border: 1px solid #E2E6EB; border-radius: 12px;
    margin-bottom: 16px; overflow: hidden;
}

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

.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: #E8620C; font-size: 0.9rem; flex-shrink: 0; transition: transform 0.25s;
}

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

.sct-tpl-zone .sct-faq-body { padding: 0 24px 22px; color: #6B7683; line-height: 1.8; font-size: 0.97rem; }

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

.sct-tpl-zone .sct-maillage-section.sct-bg-light { background: #F5F6F8; }

.sct-tpl-zone .sct-maillage-title { font-size: 1.5rem; color: #1C2B3A; text-align: center; margin-bottom: 12px; line-height: 1.3; }

.sct-tpl-zone .sct-maillage-sub { text-align: center; color: #6B7683; max-width: 700px; margin: 0 auto 30px; font-size: 1rem; }

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

.sct-tpl-zone .sct-maillage-links li { display: flex; }

.sct-tpl-zone .sct-maillage-links a {
    display: inline-flex; align-items: center; gap: 8px;
    background: #ffffff; border: 1px solid #E2E6EB; border-radius: 9px;
    padding: 11px 18px; font-weight: 600; color: #1C2B3A; font-size: 0.92rem;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
    overflow-wrap: anywhere;
}

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

.sct-tpl-zone .sct-maillage-note { text-align: center; color: #6B7683; font-size: 0.93rem; margin-top: 24px; }

.sct-tpl-zone .sct-maillage-note a { color: #E8620C; font-weight: 700; }

.sct-tpl-zone .sct-cta-final {
    background: linear-gradient(120deg, #1C2B3A, #29405A);
    color: #ffffff; padding: 74px 0; text-align: center;
}

.sct-tpl-zone .sct-cta-final h2 { font-size: 2rem; margin-bottom: 16px; line-height: 1.25; }

.sct-tpl-zone .sct-cta-final h2 span { color: #E8620C; }

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

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

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

@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-usecase-img { order: -1; }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-section,
    .sct-tpl-zone .sct-intro-section,
    .sct-tpl-zone .sct-zones-section { padding: 64px 0; }
    .sct-tpl-zone .sct-maillage-section,
    .sct-tpl-zone .sct-local-spec { padding: 56px 0; }
}

@media (max-width: 768px) {
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-section-title { font-size: 1.65rem; }
    .sct-tpl-zone .sct-usecase-text h2,
    .sct-tpl-zone .sct-cta-final h2 { font-size: 1.65rem; }
    .sct-tpl-zone .sct-maillage-title { font-size: 1.3rem; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-zone .sct-breadcrumb { font-size: 0.8rem; gap: 6px; 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-stat-num { font-size: 1.8rem; }
    .sct-tpl-zone .sct-local-spec-inner { padding: 24px 22px; }
    .sct-tpl-zone .sct-faq-item summary { padding: 17px 18px; font-size: 0.97rem; }
    .sct-tpl-zone .sct-faq-body { padding: 0 18px 18px; }
    .sct-tpl-zone .sct-maillage-links a { padding: 10px 15px; font-size: 0.88rem; }
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(rgba(28,43,58,0.86), rgba(28,43,58,0.93)), url('/images/service_2_1784211437_6a58e7eddc1d1.webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(rgba(28,43,58,0.86), rgba(28,43,58,0.93)), url('/images/service_3_1784211459_6a58e80313cae.webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(rgba(28,43,58,0.86), rgba(28,43,58,0.93)), url('/images/service_4_1784211482_6a58e81a24423.webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(rgba(28,43,58,0.86), rgba(28,43,58,0.93)), url('/images/service_6_1784211533_6a58e84d013f3.webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(rgba(28,43,58,0.86), rgba(28,43,58,0.93)), url('/images/service_2_1784211437_6a58e7eddc1d1.webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(rgba(28,43,58,0.86), rgba(28,43,58,0.93)), url('/images/service_5_1784211504_6a58e8305798d.webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(rgba(28,43,58,0.86), rgba(28,43,58,0.93)), url('/images/service_6_1784211533_6a58e84d013f3.webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(rgba(28,43,58,0.86), rgba(28,43,58,0.93)), url('/images/service_3_1784211459_6a58e80313cae.webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(rgba(28,43,58,0.86), rgba(28,43,58,0.93)), url('/images/service_4_1784211482_6a58e81a24423.webp');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

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

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

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

.breadcrumb-line { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-top: 26px; }

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

.breadcrumb-line a:hover { color: #FFB37A; }

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

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

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

.sitemap-block-head .ic {
            width: 52px; height: 52px; flex-shrink: 0; border-radius: 12px;
            background: rgba(232,98,12,0.12); color: var(--primary);
            display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
        }

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

.sitemap-block-head .count { font-size: 0.85rem; color: var(--gray); font-weight: 600; margin-top: 4px; }

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

.chip {
            display: inline-flex; align-items: center; gap: 9px;
            background: var(--white); border: 1px solid var(--border); border-radius: 30px;
            padding: 11px 20px; font-weight: 600; font-size: 0.94rem; color: var(--secondary);
            transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, color 0.2s;
        }

.chip i { color: var(--primary); font-size: 0.9rem; }

.chip:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(232,98,12,0.15); }

.chip-primary { background: var(--primary); color: var(--white); border-color: var(--primary); box-shadow: 0 8px 20px rgba(232,98,12,0.25); }

.chip-primary i { color: var(--white); }

.chip-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); }

.chip-primary:hover i { color: var(--white); }

.chip-dark { background: var(--secondary); color: var(--white); border-color: var(--secondary); }

.chip-dark:hover { background: var(--secondary-light); border-color: var(--secondary-light); color: var(--white); }

.chip-dark:hover i { color: var(--primary); }

.city-group {
            background: var(--white); border: 1px solid var(--border); border-radius: 14px;
            padding: 24px 26px; box-shadow: 0 6px 18px rgba(28,43,58,0.06);
        }

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

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

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

.sitemap-cta {
            background: linear-gradient(120deg, var(--secondary), var(--secondary-light));
            color: var(--white); border-radius: 18px; padding: 44px;
            text-align: center;
        }

.sitemap-cta h2 { font-size: 1.8rem; margin-bottom: 12px; }

.sitemap-cta h2 span { color: var(--primary); }

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

.sitemap-cta .cta-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

@media (max-width: 768px) {
            .hero-sitemap { padding-top: 120px; padding-bottom: 60px; }
            .hero-sitemap h1 { font-size: 2rem; }
            .city-groups { grid-template-columns: 1fr; }
            .sitemap-block-head h2 { font-size: 1.25rem; }
            .sitemap-cta { padding: 30px 24px; }
            .chip { font-size: 0.88rem; padding: 10px 16px; }
        }