.menu-check { display: none; }

label.menu-toggle { cursor: pointer; user-select: none; }

#menuCheck:checked ~ .nav { display: flex !important; }

#menuCheck:checked + .menu-toggle .fa-bars::before { content: "\f00d"; }

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

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

:root {
            --primary: #1B4D7A;
            --primary-dark: #143c60;
            --primary-light: #e8f0f8;
            --secondary: #E8A838;
            --secondary-dark: #d4952a;
            --secondary-light: #fdf3e0;
            --text: #2d3748;
            --text-light: #64748b;
            --bg: #ffffff;
            --bg-alt: #f7f9fc;
            --border: #e2e8f0;
            --radius: 12px;
            --shadow: 0 4px 20px rgba(27, 77, 122, 0.08);
            --shadow-lg: 0 10px 40px rgba(27, 77, 122, 0.12);
        }

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

body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text);
            line-height: 1.7;
            background: var(--bg);
            overflow-x: hidden;
        }

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

.header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.06);
            transition: box-shadow 0.3s;
        }

.header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

.logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--primary);
            flex-shrink: 0;
        }

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

.logo-text {
            font-size: 1.2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

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

.nav a {
            text-decoration: none;
            color: var(--text);
            font-size: 0.9rem;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 8px;
            transition: color 0.3s, background 0.3s;
        }

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

.nav .btn-cta-nav {
            background: var(--secondary);
            color: #fff;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            transition: background 0.3s, transform 0.2s;
        }

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

.menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
            padding: 8px;
        }

.hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 72px;
            background: linear-gradient(135deg, rgba(27,77,122,0.92) 0%, rgba(20,60,96,0.88) 100%),
                        url('https://webflash.pro/storage/generated/305/hero_1776290135_69e00957c4b23.webp') center/cover no-repeat;
            color: #fff;
            overflow: hidden;
        }

.hero::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 80px;
            background: var(--bg);
            clip-path: ellipse(55% 100% at 50% 100%);
        }

.hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding-top: 60px;
            padding-bottom: 100px;
        }

.hero-content {
            animation: fadeUp 0.8s ease-out;
        }

.hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(232,168,56,0.2);
            border: 1px solid rgba(232,168,56,0.4);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
            color: var(--secondary);
        }

.hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

.hero-description {
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0.9;
            margin-bottom: 32px;
            max-width: 520px;
        }

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

.btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

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

.btn-primary:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(232,168,56,0.35);
        }

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

.btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: #fff;
        }

.hero-form-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: var(--radius);
            padding: 36px 32px;
            animation: fadeUp 0.8s ease-out 0.2s both;
        }

.hero-form-card .form-title {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: #fff;
        }

.hero-form-card .form-subtitle {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 24px;
        }

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

.hero-form-card label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 4px;
            opacity: 0.9;
        }

.hero-form-card input,
        .hero-form-card textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: 8px;
            background: rgba(255,255,255,0.12);
            color: #fff;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.3s, background 0.3s;
        }

.hero-form-card input::placeholder,
        .hero-form-card textarea::placeholder {
            color: rgba(255,255,255,0.5);
        }

.hero-form-card input:focus,
        .hero-form-card textarea:focus {
            outline: none;
            border-color: var(--secondary);
            background: rgba(255,255,255,0.18);
        }

.hero-form-card textarea {
            resize: vertical;
            min-height: 80px;
        }

.hero-form-card .btn-submit {
            width: 100%;
            padding: 14px;
            background: var(--secondary);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }

.hero-form-card .btn-submit:hover {
            background: var(--secondary-dark);
            transform: translateY(-1px);
        }

.hero-form-card .form-status p {
            margin-top: 10px;
            font-size: 0.9rem;
        }

.trust-band {
            padding: 50px 0;
            background: var(--bg);
            position: relative;
            z-index: 2;
        }

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

.trust-item {
            text-align: center;
            padding: 24px 16px;
            border-radius: var(--radius);
            background: var(--bg-alt);
            border: 1px solid var(--border);
            transition: transform 0.3s, box-shadow 0.3s;
        }

.trust-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }

.trust-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin: 0 auto 14px;
        }

.trust-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
        }

.trust-label {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 4px;
        }

.section {
            padding: 80px 0;
        }

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

.section-header {
            text-align: center;
            margin-bottom: 50px;
        }

.section-header h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

.section-header .accent-line {
            width: 60px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
            margin: 0 auto 16px;
        }

.section-header p {
            font-size: 1.05rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

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

.service-card {
            width: calc(33.333% - 19px);
            background: var(--bg);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border);
            transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
        }

.service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--secondary);
        }

.service-card-img {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

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

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

.service-card-body {
            padding: 24px;
        }

.service-card-body h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
            line-height: 1.4;
        }

.service-card-body p {
            font-size: 0.92rem;
            color: var(--text-light);
            line-height: 1.6;
        }

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

.engagement-card {
            text-align: center;
            padding: 36px 24px;
            background: var(--bg);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: transform 0.3s, box-shadow 0.3s;
        }

.engagement-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }

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

.engagement-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }

.engagement-card p {
            font-size: 0.88rem;
            color: var(--text-light);
            line-height: 1.6;
        }

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

.about-image {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

.about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

.about-content h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 12px;
        }

.about-content .accent-line {
            width: 60px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
            margin-bottom: 20px;
        }

.about-content p {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 16px;
            line-height: 1.8;
        }

.about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 24px;
        }

.about-highlight {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--text);
        }

.about-highlight i {
            color: var(--secondary);
            font-size: 1rem;
        }

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

.zones-pills {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 10px;
        }

.zone-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 50px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s;
        }

.zone-pill:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
        }

.zone-pill i {
            color: var(--secondary);
            font-size: 0.8rem;
        }

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

.faq-item {
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 12px;
            overflow: hidden;
            background: var(--bg);
            transition: box-shadow 0.3s;
        }

.faq-item:hover {
            box-shadow: var(--shadow);
        }

.faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            color: var(--text);
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            font-family: inherit;
            gap: 16px;
        }

.faq-question i {
            color: var(--primary);
            transition: transform 0.3s;
            flex-shrink: 0;
        }

.faq-question.active i {
            transform: rotate(180deg);
        }

.faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

.faq-answer-inner {
            padding: 0 24px 20px;
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.7;
        }

.horaires-card {
            max-width: 500px;
            margin: 0 auto;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

.horaires-header {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            padding: 20px 28px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.1rem;
            font-weight: 700;
        }

.horaires-body {
            padding: 8px 0;
        }

.horaire-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 28px;
            font-size: 0.95rem;
            border-bottom: 1px solid var(--border);
        }

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

.horaire-day {
            font-weight: 600;
            color: var(--text);
        }

.horaire-time {
            color: var(--primary);
            font-weight: 500;
        }

.horaire-badge-open {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #dcfce7;
            color: #16a34a;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 600;
            margin: 16px 28px;
        }

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

.contact-infos {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

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

.contact-info-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

.contact-info-text span {
            display: block;
            font-size: 0.82rem;
            color: var(--text-light);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 4px;
        }

.contact-info-text p,
        .contact-info-text a {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            text-decoration: none;
        }

.contact-info-text a:hover {
            color: var(--primary);
        }

.contact-form {
            background: var(--bg-alt);
            padding: 36px;
            border-radius: var(--radius);
            border: 1px solid var(--border);
        }

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

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

.contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: inherit;
            background: var(--bg);
            color: var(--text);
            transition: border-color 0.3s;
        }

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

.contact-form textarea {
            resize: vertical;
            min-height: 100px;
        }

.contact-form .btn-submit {
            width: 100%;
            padding: 14px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }

.contact-form .btn-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

.map-container {
            margin-top: 40px;
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }

.footer {
            background: #0f2b44;
            color: rgba(255,255,255,0.7);
            padding: 60px 0 0;
        }

.footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

.footer-brand .logo-text {
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

.footer-brand img {
            height: 40px;
            width: auto;
            margin-bottom: 12px;
        }

.footer-brand p {
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 16px;
        }

.footer-phone {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--secondary);
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
        }

.footer-phone:hover {
            color: #fff;
        }

.footer-title {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
        }

.footer-links {
            list-style: none;
        }

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

.footer-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

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

.footer-bottom {
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.85rem;
        }

.footer-bottom a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: color 0.3s;
        }

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

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

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

.modal-content {
            background: var(--bg);
            border-radius: var(--radius);
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 40px;
            position: relative;
        }

.modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-light);
            cursor: pointer;
        }

.modal-content .modal-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
        }

.modal-content p {
            font-size: 0.92rem;
            margin-bottom: 10px;
            line-height: 1.7;
            color: var(--text-light);
        }

@keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

.fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

.fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

@media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-form-card {
                max-width: 500px;
            }

            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .engagements-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .service-card {
                width: calc(50% - 14px);
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

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

@media (max-width: 768px) {
            .nav {
                display: none;
                position: absolute;
                top: 72px;
                left: 0;
                width: 100%;
                background: #fff;
                flex-direction: column;
                padding: 16px 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                gap: 4px;
            }

            .nav.active {
                display: flex;
            }

            .nav a {
                width: 100%;
                padding: 12px 16px;
            }

            .nav .btn-cta-nav {
                text-align: center;
                margin-top: 8px;
            }

            .menu-toggle {
                display: block;
            }

            .hero {
                padding-top: 100px;
            }

            .hero-grid {
                padding-top: 30px;
                padding-bottom: 80px;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .hero-buttons .btn {
                width: 100%;
                justify-content: center;
            }

            .section {
                padding: 60px 0;
            }

            .section-header h2 {
                font-size: 1.6rem;
            }

            .service-card {
                width: 100%;
            }

            .trust-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .engagements-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

@media (max-width: 640px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }

            .hero h1 {
                font-size: 1.6rem;
            }

            .about-highlights {
                grid-template-columns: 1fr;
            }

            .hero-form-card {
                padding: 28px 20px;
            }

            .contact-form {
                padding: 24px 20px;
            }
        }

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

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

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

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

.sct-tpl-service-city {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2d3748;
    line-height: 1.7;
    background: #ffffff;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(27,77,122,0.92) 0%, rgba(20,60,96,0.88) 100%),
                url('/images/service_5_1776290242_69e009c2320f8.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232,168,56,0.2);
    border: 1px solid rgba(232,168,56,0.4);
    color: #E8A838;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

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

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.08rem;
    line-height: 1.75;
    opacity: 0.92;
    margin-bottom: 30px;
    max-width: 560px;
}

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

.sct-tpl-service-city .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 0.98rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.sct-tpl-service-city .sct-btn-primary {
    background: #E8A838;
    color: #fff;
}

.sct-tpl-service-city .sct-btn-primary:hover {
    background: #d4952a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,168,56,0.35);
}

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

.sct-tpl-service-city .sct-btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
}

.sct-tpl-service-city .sct-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

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

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

.sct-tpl-service-city .sct-hero-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 32px 28px;
}

.sct-tpl-service-city .sct-hero-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.sct-tpl-service-city .sct-hero-card-sub {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 22px;
}

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

.sct-tpl-service-city .sct-hero-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    font-size: 0.92rem;
}

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

.sct-tpl-service-city .sct-hero-card-list i {
    color: #E8A838;
    margin-top: 4px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.sct-tpl-service-city .sct-hero-card-list strong {
    display: block;
    font-weight: 600;
    color: #fff;
}

.sct-tpl-service-city .sct-hero-card-list span {
    opacity: 0.85;
    font-size: 0.88rem;
}

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

.sct-tpl-service-city .sct-stats-band {
    padding: 50px 0;
    background: #f7f9fc;
    border-bottom: 1px solid #e2e8f0;
}

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

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

.sct-tpl-service-city .sct-stat-item {
    text-align: center;
    padding: 22px 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-city .sct-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(27,77,122,0.08);
}

.sct-tpl-service-city .sct-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #1B4D7A;
    line-height: 1.2;
}

.sct-tpl-service-city .sct-stat-label {
    font-size: 0.88rem;
    color: #64748b;
    margin-top: 4px;
}

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

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

.sct-tpl-service-city .sct-section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

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

.sct-tpl-service-city .sct-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1B4D7A;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.sct-tpl-service-city .sct-accent-line {
    width: 60px;
    height: 4px;
    background: #E8A838;
    border-radius: 2px;
    margin: 0 auto 16px;
}

.sct-tpl-service-city .sct-section-subtitle {
    font-size: 1.02rem;
    color: #64748b;
    line-height: 1.7;
}

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

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

.sct-tpl-service-city .sct-intro-wrapper p {
    font-size: 1.02rem;
    line-height: 1.85;
    color: #2d3748;
    margin-bottom: 20px;
}

.sct-tpl-service-city .sct-intro-wrapper strong { color: #1B4D7A; }

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

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

.sct-tpl-service-city .sct-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(27,77,122,0.12);
    border-color: #E8A838;
}

.sct-tpl-service-city .sct-service-card-img {
    width: 100%;
    height: 210px;
    overflow: hidden;
}

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

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

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

.sct-tpl-service-city .sct-service-card-body h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #1B4D7A;
    margin-bottom: 10px;
    line-height: 1.4;
}

.sct-tpl-service-city .sct-service-card-body p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.65;
}

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

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

.sct-tpl-service-city .sct-process-step {
    text-align: center;
    padding: 28px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-city .sct-process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(27,77,122,0.08);
}

.sct-tpl-service-city .sct-process-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: #E8A838;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(232,168,56,0.35);
}

.sct-tpl-service-city .sct-process-icon {
    width: 56px;
    height: 56px;
    margin: 14px auto 14px;
    background: #e8f0f8;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1B4D7A;
    font-size: 1.3rem;
}

.sct-tpl-service-city .sct-process-step h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #1B4D7A;
    margin-bottom: 8px;
}

.sct-tpl-service-city .sct-process-step p {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.6;
}

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

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

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

.sct-tpl-service-city .sct-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(27,77,122,0.08);
}

.sct-tpl-service-city .sct-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1B4D7A, #143c60);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 18px;
}

.sct-tpl-service-city .sct-why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-why-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.65;
}

.sct-tpl-service-city .sct-zones-section { text-align: center; }

.sct-tpl-service-city .sct-zones-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sct-tpl-service-city .sct-zone-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #2d3748;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-zone-pill:hover {
    border-color: #1B4D7A;
    color: #1B4D7A;
    background: #e8f0f8;
}

.sct-tpl-service-city .sct-zone-pill i {
    color: #E8A838;
    font-size: 0.78rem;
}

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

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

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

.sct-tpl-service-city .sct-usecase-image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(27,77,122,0.12);
}

.sct-tpl-service-city .sct-usecase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sct-tpl-service-city .sct-usecase-content h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #1B4D7A;
    margin-bottom: 12px;
    line-height: 1.2;
}

.sct-tpl-service-city .sct-usecase-content .sct-accent-line { margin: 0 0 20px; }

.sct-tpl-service-city .sct-usecase-content p {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-usecase-content strong { color: #1B4D7A; }

.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 {
    text-align: center;
    padding: 36px 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-city .sct-engagement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(27,77,122,0.08);
}

.sct-tpl-service-city .sct-engagement-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fdf3e0;
    color: #E8A838;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 18px;
}

.sct-tpl-service-city .sct-engagement-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1B4D7A;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-engagement-card p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.7;
}

.sct-tpl-service-city .sct-local-spec {
    padding: 60px 0;
    background: linear-gradient(135deg, #e8f0f8 0%, #fdf3e0 100%);
}

.sct-tpl-service-city .sct-local-spec-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(27,77,122,0.08);
}

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

.sct-tpl-service-city .sct-local-spec-inner p {
    font-size: 0.98rem;
    color: #2d3748;
    line-height: 1.8;
}

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

.sct-tpl-service-city .sct-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s;
}

.sct-tpl-service-city .sct-faq-item:hover {
    box-shadow: 0 4px 20px rgba(27,77,122,0.08);
}

.sct-tpl-service-city .sct-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.98rem;
    color: #2d3748;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    gap: 16px;
}

.sct-tpl-service-city .sct-faq-question i {
    color: #1B4D7A;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.sct-tpl-service-city .sct-faq-question.active i { transform: rotate(180deg); }

.sct-tpl-service-city .sct-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sct-tpl-service-city .sct-faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.94rem;
    color: #64748b;
    line-height: 1.75;
}

.sct-tpl-service-city .sct-maillage-section {
    padding: 50px 0;
    border-top: 1px solid #e2e8f0;
}

.sct-tpl-service-city .sct-maillage-section:first-of-type { border-top: none; }

.sct-tpl-service-city .sct-maillage-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1B4D7A;
    margin-bottom: 18px;
    text-align: center;
}

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

.sct-tpl-service-city .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f7f9fc;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.86rem;
    color: #2d3748;
    text-decoration: none;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-maillage-list a:hover {
    background: #1B4D7A;
    color: #fff;
    border-color: #1B4D7A;
}

.sct-tpl-service-city .sct-cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #1B4D7A 0%, #143c60 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-city .sct-cta-final::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232,168,56,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.sct-tpl-service-city .sct-cta-final-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.sct-tpl-service-city .sct-cta-final h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
}

.sct-tpl-service-city .sct-cta-final p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 70px; }
    .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.1rem; }
    .sct-tpl-service-city .sct-stats-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-processus-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .sct-tpl-service-city .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-service-city .sct-section-title { font-size: 1.75rem; }
    .sct-tpl-service-city .sct-usecase-content h2 { font-size: 1.6rem; }
    .sct-tpl-service-city .sct-cta-final h2 { font-size: 1.7rem; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 115px 0 60px; }
    .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: 0.98rem; }
    .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-trust { gap: 12px; font-size: 0.85rem; }
    .sct-tpl-service-city .sct-hero-card { padding: 26px 22px; }
    .sct-tpl-service-city .sct-section { padding: 60px 0; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .sct-tpl-service-city .sct-stat-value { font-size: 1.6rem; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; gap: 28px; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-section-title { font-size: 1.55rem; }
    .sct-tpl-service-city .sct-usecase-content h2 { font-size: 1.5rem; }
    .sct-tpl-service-city .sct-cta-final { padding: 60px 0; }
    .sct-tpl-service-city .sct-cta-final h2 { font-size: 1.5rem; }
    .sct-tpl-service-city .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-local-spec-inner { padding: 30px 22px; }
    .sct-tpl-service-city .sct-breadcrumb { font-size: 0.8rem; }
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(27,77,122,0.92) 0%, rgba(20,60,96,0.88) 100%),
                url('/images/service_2_1776290178_69e009824b12c.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(27,77,122,0.92) 0%, rgba(20,60,96,0.88) 100%),
                url('/images/service_3_1776290199_69e009979ff1a.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(27,77,122,0.92) 0%, rgba(20,60,96,0.88) 100%),
                url('/images/service_4_1776290220_69e009ac919c6.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(27,77,122,0.92) 0%, rgba(20,60,96,0.88) 100%),
                url('/images/service_6_1776290266_69e009da6c6a3.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(27,77,122,0.92) 0%, rgba(20,60,96,0.88) 100%),
                url('/images/service_1_1776290156_69e0096ca13c7.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub { color: var(--text, #2d3748); }

.sct-tpl-service-hub .sct-breadcrumb-wrap {
    padding: 100px 0 20px;
    background: linear-gradient(135deg, #f7f9fc 0%, #e8f0f8 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.88rem;
    color: var(--text-light, #64748b);
}

.sct-tpl-service-hub .sct-breadcrumb a {
    color: var(--primary, #1B4D7A);
    text-decoration: none;
    font-weight: 500;
}

.sct-tpl-service-hub .sct-breadcrumb a:hover { text-decoration: underline; }

.sct-tpl-service-hub .sct-breadcrumb i { font-size: 0.7rem; color: var(--text-light, #64748b); }

.sct-tpl-service-hub .sct-breadcrumb span[aria-current] { color: var(--text, #2d3748); font-weight: 600; }

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 30px 0 90px;
    background: linear-gradient(135deg, rgba(27,77,122,0.93) 0%, rgba(20,60,96,0.90) 100%),
                url('/images/service_2_1776290178_69e009824b12c.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
}

.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-visual { min-width: 0; max-width: 100%; }

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,168,56,0.2);
    border: 1px solid rgba(232,168,56,0.4);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary, #E8A838);
}

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

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.08rem;
    line-height: 1.75;
    opacity: 0.92;
    margin-bottom: 28px;
    max-width: 560px;
}

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

.sct-tpl-service-hub .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, background 0.3s, box-shadow 0.3s;
}

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

.sct-tpl-service-hub .sct-btn-primary:hover { background: var(--secondary-dark, #d4952a); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,168,56,0.35); }

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

.sct-tpl-service-hub .sct-btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.sct-tpl-service-hub .sct-hero-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    aspect-ratio: 4/5;
}

.sct-tpl-service-hub .sct-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sct-tpl-service-hub .sct-stats-band {
    padding: 50px 0;
    background: #fff;
    position: relative;
    z-index: 2;
}

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

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

.sct-tpl-service-hub .sct-stat-card {
    text-align: center;
    padding: 26px 18px;
    border-radius: 12px;
    background: #f7f9fc;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-hub .sct-stat-card:hover { transform: translateY(-4px); box-shadow: 0 4px 20px rgba(27,77,122,0.08); }

.sct-tpl-service-hub .sct-stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #e8f0f8;
    color: var(--primary, #1B4D7A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 12px;
}

.sct-tpl-service-hub .sct-stat-value {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary, #1B4D7A);
    line-height: 1.2;
}

.sct-tpl-service-hub .sct-stat-label {
    font-size: 0.88rem;
    color: var(--text-light, #64748b);
    margin-top: 4px;
}

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

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

.sct-tpl-service-hub .sct-section-header { text-align: center; margin-bottom: 50px; }

.sct-tpl-service-hub .sct-section-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary, #E8A838);
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary, #1B4D7A);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.sct-tpl-service-hub .sct-accent-line {
    width: 60px;
    height: 4px;
    background: var(--secondary, #E8A838);
    border-radius: 2px;
    margin: 0 auto 16px;
}

.sct-tpl-service-hub .sct-section-header p {
    font-size: 1.04rem;
    color: var(--text-light, #64748b);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

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

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

.sct-tpl-service-hub .sct-intro-content p {
    font-size: 1.02rem;
    color: var(--text, #2d3748);
    line-height: 1.85;
    margin-bottom: 18px;
}

.sct-tpl-service-hub .sct-intro-content p:first-of-type::first-letter {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary, #1B4D7A);
    float: left;
    line-height: 1;
    padding: 4px 10px 0 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: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(27,77,122,0.12);
    border-color: var(--secondary, #E8A838);
}

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

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

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

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

.sct-tpl-service-hub .sct-service-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary, #1B4D7A);
    margin-bottom: 10px;
    line-height: 1.4;
}

.sct-tpl-service-hub .sct-service-card-body p {
    font-size: 0.92rem;
    color: var(--text-light, #64748b);
    line-height: 1.7;
}

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

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

.sct-tpl-service-hub .sct-step-card {
    text-align: center;
    padding: 28px 18px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-hub .sct-step-card:hover { transform: translateY(-4px); box-shadow: 0 4px 20px rgba(27,77,122,0.08); }

.sct-tpl-service-hub .sct-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary, #1B4D7A), var(--primary-dark, #143c60));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(27,77,122,0.3);
}

.sct-tpl-service-hub .sct-step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary, #1B4D7A);
    margin-bottom: 8px;
}

.sct-tpl-service-hub .sct-step-card p {
    font-size: 0.87rem;
    color: var(--text-light, #64748b);
    line-height: 1.6;
}

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

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

.sct-tpl-service-hub .sct-why-card {
    text-align: center;
    padding: 34px 22px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.sct-tpl-service-hub .sct-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(27,77,122,0.12);
    border-color: var(--secondary, #E8A838);
}

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

.sct-tpl-service-hub .sct-why-card h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--primary, #1B4D7A);
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-why-card p {
    font-size: 0.9rem;
    color: var(--text-light, #64748b);
    line-height: 1.65;
}

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

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

.sct-tpl-service-hub .sct-usecase-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(27,77,122,0.15);
    aspect-ratio: 4/5;
}

.sct-tpl-service-hub .sct-usecase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sct-tpl-service-hub .sct-usecase-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary, #1B4D7A);
    margin-bottom: 12px;
    line-height: 1.2;
}

.sct-tpl-service-hub .sct-usecase-content .sct-accent-line { margin: 0 0 22px; }

.sct-tpl-service-hub .sct-usecase-content p {
    font-size: 0.98rem;
    color: var(--text-light, #64748b);
    line-height: 1.8;
    margin-bottom: 14px;
}

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

.sct-tpl-service-hub .sct-usecase-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text, #2d3748);
    line-height: 1.6;
}

.sct-tpl-service-hub .sct-usecase-list li i {
    color: var(--secondary, #E8A838);
    font-size: 1.05rem;
    margin-top: 4px;
    flex-shrink: 0;
}

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

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

.sct-tpl-service-hub .sct-engagement-card {
    text-align: center;
    padding: 36px 26px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-hub .sct-engagement-card:hover { transform: translateY(-4px); box-shadow: 0 4px 20px rgba(27,77,122,0.08); }

.sct-tpl-service-hub .sct-engagement-icon {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary, #1B4D7A), var(--primary-dark, #143c60));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 18px;
}

.sct-tpl-service-hub .sct-engagement-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text, #2d3748);
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-engagement-card p {
    font-size: 0.9rem;
    color: var(--text-light, #64748b);
    line-height: 1.65;
}

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

.sct-tpl-service-hub .sct-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s;
}

.sct-tpl-service-hub .sct-faq-item:hover { box-shadow: 0 4px 20px rgba(27,77,122,0.08); }

.sct-tpl-service-hub .sct-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text, #2d3748);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    gap: 16px;
}

.sct-tpl-service-hub .sct-faq-question i {
    color: var(--primary, #1B4D7A);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-faq-question.active i { transform: rotate(180deg); }

.sct-tpl-service-hub .sct-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }

.sct-tpl-service-hub .sct-faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--text-light, #64748b);
    line-height: 1.75;
}

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

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

.sct-tpl-service-hub .sct-maillage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
    margin-top: 30px;
}

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

.sct-tpl-service-hub .sct-maillage-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text, #2d3748);
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.25s;
}

.sct-tpl-service-hub .sct-maillage-link:hover {
    border-color: var(--primary, #1B4D7A);
    color: var(--primary, #1B4D7A);
    background: #e8f0f8;
    transform: translateX(3px);
}

.sct-tpl-service-hub .sct-maillage-link i {
    color: var(--secondary, #E8A838);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-maillage-link span { overflow-wrap: anywhere; }

.sct-tpl-service-hub .sct-maillage-other-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 30px;
}

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

.sct-tpl-service-hub .sct-maillage-other-card {
    display: block;
    padding: 22px 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text, #2d3748);
    transition: all 0.25s;
}

.sct-tpl-service-hub .sct-maillage-other-card:hover {
    border-color: var(--secondary, #E8A838);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(27,77,122,0.08);
}

.sct-tpl-service-hub .sct-maillage-other-card i {
    color: var(--secondary, #E8A838);
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: block;
}

.sct-tpl-service-hub .sct-maillage-other-card h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--primary, #1B4D7A);
    margin-bottom: 6px;
}

.sct-tpl-service-hub .sct-maillage-other-card p {
    font-size: 0.88rem;
    color: var(--text-light, #64748b);
    line-height: 1.55;
}

.sct-tpl-service-hub .sct-cta-final {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary, #1B4D7A) 0%, var(--primary-dark, #143c60) 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,168,56,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.sct-tpl-service-hub .sct-cta-final .sct-container { position: relative; z-index: 1; }

.sct-tpl-service-hub .sct-cta-final h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

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

.sct-tpl-service-hub .sct-cta-final .sct-hero-btns { justify-content: center; }

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-hero-visual { max-width: 480px; margin: 0 auto; width: 100%; aspect-ratio: 16/10; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 2.2rem; }
    .sct-tpl-service-hub .sct-stats-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-processus-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-usecase-image { max-width: 520px; margin: 0 auto; width: 100%; aspect-ratio: 16/10; }
    .sct-tpl-service-hub .sct-section-title { font-size: 1.7rem; }
    .sct-tpl-service-hub .sct-usecase-content h2 { font-size: 1.7rem; }
    .sct-tpl-service-hub .sct-cta-final h2 { font-size: 1.7rem; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 20px 0 70px; }
    .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: 0.98rem; }
    .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-stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .sct-tpl-service-hub .sct-stat-value { font-size: 1.6rem; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; }
    .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-section { padding: 60px 0; }
    .sct-tpl-service-hub .sct-intro-section { padding: 60px 0; }
    .sct-tpl-service-hub .sct-maillage-section { padding: 60px 0; }
    .sct-tpl-service-hub .sct-section-title { font-size: 1.55rem; }
    .sct-tpl-service-hub .sct-usecase-content h2 { font-size: 1.55rem; }
    .sct-tpl-service-hub .sct-cta-final h2 { font-size: 1.55rem; }
    .sct-tpl-service-hub .sct-maillage-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-intro-content p:first-of-type::first-letter { font-size: 2.5rem; }
    .sct-tpl-service-hub .sct-breadcrumb-wrap { padding: 90px 0 16px; }
}

@media (max-width: 900px) {
    .menu-toggle { display: inline-flex !important; }
    .nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 16px 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        gap: 6px;
    }
    .nav a { width: 100%; }
    
    #menuCheck:checked ~ .nav { display: flex !important; }
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 30px 0 90px;
    background: linear-gradient(135deg, rgba(27,77,122,0.93) 0%, rgba(20,60,96,0.90) 100%),
                url('/images/service_5_1776290242_69e009c2320f8.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 30px 0 90px;
    background: linear-gradient(135deg, rgba(27,77,122,0.93) 0%, rgba(20,60,96,0.90) 100%),
                url('/images/service_3_1776290199_69e009979ff1a.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 30px 0 90px;
    background: linear-gradient(135deg, rgba(27,77,122,0.93) 0%, rgba(20,60,96,0.90) 100%),
                url('/images/service_4_1776290220_69e009ac919c6.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 30px 0 90px;
    background: linear-gradient(135deg, rgba(27,77,122,0.93) 0%, rgba(20,60,96,0.90) 100%),
                url('/images/service_1_1776290156_69e0096ca13c7.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 30px 0 90px;
    background: linear-gradient(135deg, rgba(27,77,122,0.93) 0%, rgba(20,60,96,0.90) 100%),
                url('/images/service_6_1776290266_69e009da6c6a3.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(27,77,122,0.92) 0%, rgba(20,60,96,0.88) 100%),
        url('/img/hero-anzin.jpg') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 70px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
}

.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.88rem;
    opacity: 0.85;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-breadcrumb a {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
}

.sct-tpl-zone .sct-breadcrumb a:hover { opacity: 1; text-decoration: underline; }

.sct-tpl-zone .sct-breadcrumb span.sep { opacity: 0.5; }

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,168,56,0.2);
    border: 1px solid rgba(232,168,56,0.4);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #E8A838;
}

.sct-tpl-zone .sct-hero-text h1 {
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.sct-tpl-zone .sct-hero-text h1 .sct-hero-highlight {
    color: #E8A838;
}

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.92;
    margin-bottom: 30px;
    max-width: 560px;
}

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

.sct-tpl-zone .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.sct-tpl-zone .sct-btn-primary { background: #E8A838; color: #fff; }

.sct-tpl-zone .sct-btn-primary:hover { background: #d4952a; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,168,56,0.35); }

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

.sct-tpl-zone .sct-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.sct-tpl-zone .sct-hero-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    padding: 28px;
}

.sct-tpl-zone .sct-hero-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.sct-tpl-zone .sct-hero-card ul { list-style: none; padding: 0; margin: 0 0 18px; }

.sct-tpl-zone .sct-hero-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.93rem;
    color: rgba(255,255,255,0.92);
    border-bottom: 1px dashed rgba(255,255,255,0.15);
}

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

.sct-tpl-zone .sct-hero-card ul li i { color: #E8A838; }

.sct-tpl-zone .sct-hero-card .sct-hero-card-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(232,168,56,0.15);
    border: 1px solid rgba(232,168,56,0.3);
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    justify-content: center;
}

.sct-tpl-zone .sct-hero-card .sct-hero-card-phone:hover { background: rgba(232,168,56,0.25); }

.sct-tpl-zone .sct-stats-band {
    padding: 50px 0;
    background: #fff;
    position: relative;
    z-index: 2;
}

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

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

.sct-tpl-zone .sct-stat-item {
    text-align: center;
    padding: 22px 14px;
    border-radius: 12px;
    background: #f7f9fc;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-zone .sct-stat-item:hover { transform: translateY(-4px); box-shadow: 0 4px 20px rgba(27,77,122,0.08); }

.sct-tpl-zone .sct-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e8f0f8;
    color: #1B4D7A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 12px;
}

.sct-tpl-zone .sct-stat-value {
    font-size: 1.9rem;
    font-weight: 800;
    color: #1B4D7A;
    line-height: 1.2;
}

.sct-tpl-zone .sct-stat-label {
    font-size: 0.88rem;
    color: #64748b;
    margin-top: 4px;
}

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

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

.sct-tpl-zone .sct-section-header { text-align: center; margin-bottom: 50px; }

.sct-tpl-zone .sct-section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1B4D7A;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.sct-tpl-zone .sct-section-header .sct-accent-line {
    width: 60px;
    height: 4px;
    background: #E8A838;
    border-radius: 2px;
    margin: 0 auto 16px;
}

.sct-tpl-zone .sct-section-header p {
    font-size: 1.02rem;
    color: #64748b;
    max-width: 680px;
    margin: 0 auto;
}

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

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

.sct-tpl-zone .sct-intro-image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(27,77,122,0.12);
}

.sct-tpl-zone .sct-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sct-tpl-zone .sct-intro-content h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #1B4D7A;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.sct-tpl-zone .sct-intro-content .sct-accent-line {
    width: 60px;
    height: 4px;
    background: #E8A838;
    border-radius: 2px;
    margin-bottom: 20px;
}

.sct-tpl-zone .sct-intro-content p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 14px;
    line-height: 1.8;
}

.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-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.sct-tpl-zone .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(27,77,122,0.12);
    border-color: #E8A838;
}

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

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

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

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

.sct-tpl-zone .sct-service-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1B4D7A;
    margin-bottom: 10px;
    line-height: 1.4;
}

.sct-tpl-zone .sct-service-card-body p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}

.sct-tpl-zone .sct-service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #E8A838;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
}

.sct-tpl-zone .sct-service-card:hover .sct-service-card-link { gap: 10px; }

.sct-tpl-zone .sct-zones-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.sct-tpl-zone .sct-zone-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #2d3748;
    transition: all 0.3s;
}

.sct-tpl-zone .sct-zone-pill:hover {
    border-color: #1B4D7A;
    color: #1B4D7A;
    background: #e8f0f8;
}

.sct-tpl-zone .sct-zone-pill i { color: #E8A838; font-size: 0.8rem; }

.sct-tpl-zone .sct-usecase-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(27,77,122,0.08);
    position: relative;
}

.sct-tpl-zone .sct-usecase-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 18px;
    left: 26px;
    font-size: 2.2rem;
    color: #E8A838;
    opacity: 0.25;
}

.sct-tpl-zone .sct-usecase-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1B4D7A;
    margin-bottom: 14px;
    padding-left: 44px;
}

.sct-tpl-zone .sct-usecase-card p {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 12px;
}

.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 {
    text-align: center;
    padding: 36px 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-zone .sct-engagement-card:hover { transform: translateY(-4px); box-shadow: 0 4px 20px rgba(27,77,122,0.08); }

.sct-tpl-zone .sct-engagement-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1B4D7A, #143c60);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 18px;
}

.sct-tpl-zone .sct-engagement-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.sct-tpl-zone .sct-engagement-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

.sct-tpl-zone .sct-local-spec-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #e8f0f8 0%, #fff 100%);
    border-left: 4px solid #1B4D7A;
    border-radius: 12px;
    padding: 32px 36px;
}

.sct-tpl-zone .sct-local-spec-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1B4D7A;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sct-tpl-zone .sct-local-spec-card h3 i { color: #E8A838; }

.sct-tpl-zone .sct-local-spec-card p {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.sct-tpl-zone .sct-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s;
}

.sct-tpl-zone .sct-faq-item:hover { box-shadow: 0 4px 20px rgba(27,77,122,0.08); }

.sct-tpl-zone .sct-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: #2d3748;
    gap: 16px;
}

.sct-tpl-zone .sct-faq-question i { color: #1B4D7A; transition: transform 0.3s; flex-shrink: 0; }

.sct-tpl-zone .sct-faq-item.active .sct-faq-question i { transform: rotate(180deg); }

.sct-tpl-zone .sct-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }

.sct-tpl-zone .sct-faq-item.active .sct-faq-answer { max-height: 600px; }

.sct-tpl-zone .sct-faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
}

.sct-tpl-zone .sct-maillage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

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

.sct-tpl-zone .sct-maillage-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    color: #2d3748;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.3s;
}

.sct-tpl-zone .sct-maillage-link:hover {
    border-color: #E8A838;
    color: #1B4D7A;
    background: #fdf3e0;
    transform: translateY(-2px);
}

.sct-tpl-zone .sct-maillage-link i { color: #E8A838; }

.sct-tpl-zone .sct-cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #1B4D7A 0%, #143c60 100%);
    color: #fff;
    text-align: center;
}

.sct-tpl-zone .sct-cta-final h2 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

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

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

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero { padding: 130px 0 70px; }
    .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.2rem; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-intro-grid { grid-template-columns: 1fr; gap: 30px; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-maillage-grid { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-zone .sct-section { padding: 60px 0; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 110px 0 60px; }
    .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-stats-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-section-header h2 { font-size: 1.6rem; }
    .sct-tpl-zone .sct-intro-content h2 { font-size: 1.6rem; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-maillage-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-usecase-card { padding: 28px 22px; }
    .sct-tpl-zone .sct-usecase-card h3 { padding-left: 36px; }
    .sct-tpl-zone .sct-local-spec-card { padding: 24px 22px; }
    .sct-tpl-zone .sct-cta-final h2 { font-size: 1.6rem; }
    .sct-tpl-zone .sct-cta-buttons { flex-direction: column; }
    .sct-tpl-zone .sct-cta-buttons > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-section { padding: 50px 0; }
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(27,77,122,0.92) 0%, rgba(20,60,96,0.88) 100%),
        url('/images/marly-59.jpg') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(27,77,122,0.92) 0%, rgba(20,60,96,0.88) 100%),
        url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(27,77,122,0.92) 0%, rgba(20,60,96,0.88) 100%),
        url('/img/zones/raismes-hero.jpg') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(27,77,122,0.92) 0%, rgba(20,60,96,0.88) 100%),
        url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1600&q=80') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(27,77,122,0.92) 0%, rgba(20,60,96,0.88) 100%),
        url('https://images.unsplash.com/photo-1585771724684-38269d6639fd?w=1600&q=80') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.page-hero {
            position: relative;
            padding: 160px 0 100px;
            background: linear-gradient(135deg, rgba(27,77,122,0.94) 0%, rgba(20,60,96,0.9) 100%),
                        url('https://webflash.pro/storage/generated/305/hero_1776290135_69e00957c4b23.webp') center/cover no-repeat;
            color: #fff;
            text-align: center;
            overflow: hidden;
        }

.page-hero::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 70px;
            background: var(--bg);
            clip-path: ellipse(55% 100% at 50% 100%);
        }

.page-hero .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(232,168,56,0.2);
            border: 1px solid rgba(232,168,56,0.4);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--secondary);
        }

.page-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 14px;
            letter-spacing: -0.02em;
        }

.page-hero p {
            font-size: 1.15rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

.sitemap-section {
            padding: 70px 0;
        }

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

.sitemap-block-title {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 12px;
        }

.sitemap-block-title .icon-wrap {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

.sitemap-block-title h2 {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.01em;
        }

.sitemap-accent-line {
            width: 60px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
            margin-bottom: 24px;
        }

.sitemap-intro {
            color: var(--text-light);
            font-size: 1rem;
            margin-bottom: 32px;
            max-width: 720px;
        }

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

.chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 20px;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 50px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s;
        }

.chip:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

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

.chip.chip-primary {
            background: var(--primary-light);
            border-color: rgba(27,77,122,0.2);
            color: var(--primary);
            font-weight: 600;
        }

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

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

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

.service-city-card {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px;
            transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
        }

.service-city-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--secondary);
        }

.service-city-card h3 {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
            padding-bottom: 14px;
            border-bottom: 2px dashed var(--border);
        }

.service-city-card h3 i {
            color: var(--secondary);
        }

.service-city-card .chips {
            gap: 8px;
        }

.service-city-card .chip {
            padding: 7px 14px;
            font-size: 0.85rem;
        }

@media (max-width: 900px) {
            .menu-toggle {
                display: inline-flex;
            }

            .nav {
                display: none;
                position: absolute;
                top: 72px;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                align-items: stretch;
                padding: 16px 20px;
                gap: 6px;
                box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            }

            .nav a {
                width: 100%;
                padding: 12px 16px;
            }

            .page-hero {
                padding: 130px 0 80px;
            }

            .page-hero h1 {
                font-size: 2rem;
            }

            .page-hero p {
                font-size: 1rem;
            }

            .sitemap-block-title h2 {
                font-size: 1.4rem;
            }

            .sitemap-section {
                padding: 50px 0;
            }

            .service-city-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

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

            .chip {
                font-size: 0.85rem;
                padding: 9px 16px;
            }
        }