.menu-check { display: none; }

.menu-toggle {
    display: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: currentColor;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    flex-shrink: 0;
    color:#FFF;
}

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

    #menuCheck:checked ~ .nav {
        display: flex !important;
        transform: translateY(0) !important;
        right: 0 !important;
        left: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        max-height: 100vh !important;
    }

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

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

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

:root {
            --primary: #189ae7;
            --primary-dark: #053d5e;
            --secondary: #1b304f;
            --secondary-dark: #132240;
            --secondary-light: #243d63;
            --white: #ffffff;
            --gray-50: #f8f9fa;
            --gray-100: #f1f3f5;
            --gray-200: #e9ecef;
            --gray-300: #dee2e6;
            --gray-600: #6c757d;
            --gray-700: #495057;
            --gray-800: #343a40;
            --gray-900: #212529;
        }

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

body {
            font-family: 'Inter', sans-serif;
            color: var(--gray-800);
            line-height: 1.6;
            overflow-x: hidden;
        }

h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.2;
        }

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

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

.container {
            width: 100%;
            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: var(--secondary);
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }

.header.scrolled {
            background: var(--secondary-dark);
            box-shadow: 0 2px 20px rgba(0,0,0,0.3);
        }

.header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 12px;
            padding-bottom: 12px;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

.logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

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

.logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.logo-text span {
            color: var(--primary);
        }

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

.nav a {
            color: rgba(255,255,255,0.85);
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

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

.nav .btn-cta-nav {
            background: var(--primary);
            color: var(--white);
            padding: 10px 22px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: background 0.3s ease, transform 0.2s ease;
            display: inline-block;
        }

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

.hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 8px;
        }

.hamburger span {
            display: block;
            width: 26px;
            height: 3px;
            background: var(--white);
            border-radius: 3px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

.hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }

.hamburger.active span:nth-child(2) {
            opacity: 0;
        }

.hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

.hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 120px;
            padding-bottom: 60px;
            background: var(--secondary-dark);
            overflow: hidden;
        }

.hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://webflash.pro/images/hero_1773955308_69bc68ec8e250.webp');
            background-size: cover;
            background-position: center;
            z-index: 1;
        }

.hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(27,48,79,0.92) 0%, rgba(27,48,79,0.75) 50%, rgba(27,48,79,0.6) 100%);
            z-index: 2;
        }

.hero-gradient {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            background: linear-gradient(to top, var(--primary) 0%, transparent 100%);
            opacity: 0.15;
            z-index: 3;
        }

.hero .container {
            position: relative;
            z-index: 4;
            display: flex;
            align-items: center;
            gap: 60px;
        }

.hero-content {
            flex: 1;
            min-width: 0;
        }

.hero-badge {
            display: inline-block;
            background: rgba(0, 112, 255, 0.15);
            border: 1px solid rgba(2, 136, 255, 0.4);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

.hero h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

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

.hero-description {
            color: rgba(255,255,255,0.8);
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 540px;
            line-height: 1.7;
        }

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

.btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: var(--white);
            padding: 14px 30px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
        }

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

.btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--white);
            padding: 14px 30px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            border: 2px solid rgba(255,255,255,0.4);
            transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
        }

.btn-secondary:hover {
            border-color: var(--primary);
            background: rgba(255,107,0,0.1);
            transform: translateY(-2px);
        }

.hero-devis {
            flex: 0 0 420px;
            max-width: 420px;
        }

.devis-card {
            background: var(--white);
            border-radius: 16px;
            padding: 36px 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            position: relative;
        }

.devis-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            border-radius: 16px 16px 0 0;
        }

.devis-card-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 6px;
            text-align: center;
        }

.devis-card-subtitle {
            font-size: 0.9rem;
            color: var(--gray-600);
            text-align: center;
            margin-bottom: 24px;
        }

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

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

.form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 14px;
            border: 2px solid var(--gray-200);
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            background: var(--gray-50);
        }

.form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
            background: var(--white);
        }

.form-group textarea {
            resize: vertical;
        }

.btn-devis-submit {
            width: 100%;
            padding: 14px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

.btn-devis-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,107,0,0.35);
        }

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

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

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

.section-title {
            font-size: clamp(1.6rem, 3.5vw, 2.4rem);
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 16px;
        }

.section-subtitle {
            font-size: 1.05rem;
            color: var(--gray-600);
            max-width: 600px;
            margin: 0 auto;
        }

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

.stats-section {
            background: var(--secondary);
            padding-top: 50px;
            padding-bottom: 50px;
            position: relative;
        }

.stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,107,0,0.08) 0%, transparent 70%);
        }

.stats-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

.stat-item {
            text-align: center;
            flex: 0 0 200px;
        }

.stat-icon {
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

.stat-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
            margin-bottom: 6px;
        }

.stat-label {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
            font-weight: 500;
        }

.services-section {
            background: var(--gray-50);
        }

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

.service-card {
            flex: 0 1 calc(33.333% - 20px);
            max-width: 380px;
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--gray-200);
        }

.service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.12);
            border-color: var(--primary);
        }

.service-card-img {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

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

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

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

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

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

.engagements-section {
            background: var(--white);
        }

.engagements-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

.engagement-card {
            flex: 0 1 calc(25% - 23px);
            min-width: 220px;
            text-align: center;
            padding: 30px 20px;
            border-radius: 12px;
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

.engagement-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }

.engagement-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 1.3rem;
            color: var(--white);
        }

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

.engagement-card p {
            font-size: 0.88rem;
            color: var(--gray-600);
            line-height: 1.5;
        }

.about-section {
            background: var(--gray-50);
        }

.about-grid {
            display: flex;
            align-items: center;
            gap: 50px;
        }

.about-image {
            flex: 0 0 45%;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }

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

.about-image-accent {
            position: absolute;
            bottom: -10px;
            right: -10px;
            width: 120px;
            height: 120px;
            border: 4px solid var(--primary);
            border-radius: 16px;
            z-index: -1;
        }

.about-text {
            flex: 1;
        }

.about-text h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 20px;
        }

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

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

.about-list li {
            padding: 8px 0;
            padding-left: 28px;
            position: relative;
            color: var(--gray-700);
            font-weight: 500;
        }

.about-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 0.9rem;
        }

.zones-section {
            background: var(--secondary);
            position: relative;
        }

.zones-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,107,0,0.05) 0%, transparent 60%);
        }

.zones-section .section-title {
            color: var(--white);
        }

.zones-section .section-subtitle {
            color: rgba(255,255,255,0.7);
        }

.zones-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            position: relative;
            z-index: 1;
        }

.zone-card {
            flex: 0 1 calc(33.333% - 20px);
            max-width: 360px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 12px;
            padding: 30px 24px;
            transition: background 0.3s ease, border-color 0.3s ease;
        }

.zone-card:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--primary);
        }

.zone-card-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 14px;
        }

.zone-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
        }

.zone-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

.zone-tag {
            background: rgba(0, 195, 255, 0.12);
            color: rgba(255,255,255,0.85);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 500;
        }

.faq-section {
            background: var(--white);
        }

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

.faq-item {
            border: 1px solid var(--gray-200);
            border-radius: 10px;
            margin-bottom: 14px;
            overflow: hidden;
            transition: border-color 0.3s ease;
        }

.faq-item.active {
            border-color: var(--primary);
        }

.faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 22px;
            cursor: pointer;
            background: var(--gray-50);
            transition: background 0.3s ease;
            gap: 16px;
        }

.faq-question:hover {
            background: var(--gray-100);
        }

.faq-question span {
            font-weight: 600;
            color: var(--secondary);
            font-size: 0.98rem;
            line-height: 1.4;
        }

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

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

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

.faq-answer-inner {
            padding: 0 22px 20px;
            color: var(--gray-600);
            font-size: 0.93rem;
            line-height: 1.7;
        }

.horaires-section {
            background: var(--gray-50);
        }

.horaires-card {
            max-width: 500px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 16px;
            padding: 36px 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            border: 1px solid var(--gray-200);
        }

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

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

.horaires-day {
            font-weight: 600;
            color: var(--secondary);
            font-size: 0.95rem;
        }

.horaires-time {
            color: var(--gray-700);
            font-size: 0.95rem;
            font-weight: 500;
        }

.horaires-open {
            color: #16a34a;
        }

.horaires-closed {
            color: #dc2626;
        }

.contact-section {
            background: var(--secondary);
            position: relative;
        }

.contact-section .section-title {
            color: var(--white);
        }

.contact-section .section-subtitle {
            color: rgba(255,255,255,0.7);
        }

.contact-grid {
            display: flex;
            gap: 40px;
            position: relative;
            z-index: 1;
        }

.contact-form-wrapper {
            flex: 1;
        }

.contact-form {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 16px;
            padding: 36px 30px;
        }

.contact-form .form-group label {
            color: rgba(255,255,255,0.9);
        }

.contact-form .form-group input,
        .contact-form .form-group textarea {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.15);
            color: var(--white);
        }

.contact-form .form-group input::placeholder,
        .contact-form .form-group textarea::placeholder {
            color: rgba(255,255,255,0.4);
        }

.contact-form .form-group input:focus,
        .contact-form .form-group textarea:focus {
            border-color: var(--primary);
            background: rgba(255,255,255,0.12);
            box-shadow: 0 0 0 3px rgba(255,107,0,0.15);
        }

.contact-info-side {
            flex: 0 0 380px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

.contact-info-card {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: border-color 0.3s ease;
        }

.contact-info-card:hover {
            border-color: var(--primary);
        }

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

.contact-info-text p:first-child {
            font-weight: 600;
            color: var(--white);
            font-size: 0.9rem;
            margin-bottom: 4px;
        }

.contact-info-text p:last-child,
        .contact-info-text a {
            color: rgba(255,255,255,0.7);
            font-size: 0.88rem;
        }

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

.contact-map {
            border-radius: 12px;
            overflow: hidden;
            margin-top: 10px;
            flex-grow: 1;
            min-height: 200px;
        }

.contact-map iframe {
            display: block;
            width: 100%;
            height: 100%;
            min-height: 200px;
        }

.footer {
            background: var(--secondary-dark);
            padding-top: 40px;
            padding-bottom: 20px;
        }

.footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

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

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

.footer-logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            color: var(--white);
        }

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

.footer-links a {
            color: rgba(255,255,255,0.6);
            font-size: 0.88rem;
            transition: color 0.3s ease;
        }

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

.footer-bottom {
            text-align: center;
            padding-top: 20px;
            color: rgba(255,255,255,0.4);
            font-size: 0.82rem;
        }

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

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

.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(--white);
            border-radius: 16px;
            padding: 40px;
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }

.modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--gray-100);
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-700);
            transition: background 0.3s ease;
        }

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

.modal-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 20px;
        }

.modal-content p {
            margin-bottom: 8px;
            color: var(--gray-700);
            font-size: 0.93rem;
            line-height: 1.6;
        }

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

.hero-proof {
            background: var(--white);
            padding: 36px 0 30px;
            border-bottom: 1px solid var(--gray-200);
        }

.hero-proof-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-bottom: 22px;
        }

.hero-proof-item {
            flex: 1 1 250px;
            max-width: 340px;
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 18px 20px;
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-left: 4px solid var(--primary);
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

.hero-proof-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }

.hero-proof-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: rgba(24,154,231,0.12);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            flex-shrink: 0;
        }

.hero-proof-text strong {
            display: block;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--secondary);
            font-size: 1rem;
            margin-bottom: 2px;
            line-height: 1.25;
        }

.hero-proof-text span {
            color: var(--gray-600);
            font-size: 0.85rem;
        }

.hero-cities {
            text-align: center;
            color: var(--gray-700);
            font-size: 0.95rem;
            padding-top: 16px;
            border-top: 1px dashed var(--gray-200);
            line-height: 1.7;
        }

.hero-cities i {
            color: var(--primary);
            margin-right: 6px;
        }

.hero-cities strong {
            color: var(--secondary);
            font-weight: 700;
        }

.hero-cities .hc-sep {
            color: var(--gray-300);
            margin: 0 6px;
        }

.expertise-section {
            background: var(--gray-50);
            padding-top: 70px;
            padding-bottom: 70px;
        }

.expertise-header {
            text-align: center;
            max-width: 820px;
            margin: 0 auto 40px;
        }

.expertise-header h2 {
            font-size: clamp(1.5rem, 3vw, 2.1rem);
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 14px;
            line-height: 1.25;
        }

.expertise-header p {
            color: var(--gray-700);
            font-size: 1rem;
            line-height: 1.7;
        }

.expertise-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
        }

.expertise-card {
            flex: 1 1 280px;
            max-width: 360px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 14px;
            padding: 28px 24px;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

.expertise-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.08);
            border-color: var(--primary);
        }

.expertise-card-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 16px;
        }

.expertise-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 10px;
        }

.expertise-card p {
            color: var(--gray-600);
            font-size: 0.93rem;
            line-height: 1.6;
        }

.expertise-card p strong {
            color: var(--secondary);
            font-weight: 600;
        }

.sticky-mobile-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 999;
            background: var(--secondary-dark);
            box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
            padding: 8px;
            gap: 8px;
            border-top: 1px solid rgba(255,255,255,0.08);
        }

.sticky-mobile-cta a {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 13px 10px;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 0.88rem;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            white-space: nowrap;
            transition: transform 0.2s ease, background 0.3s ease;
        }

.sticky-mobile-cta a:active {
            transform: scale(0.97);
        }

.sticky-mobile-cta .smc-call {
            background: var(--primary);
            color: var(--white);
        }

.sticky-mobile-cta .smc-devis {
            background: rgba(255,255,255,0.1);
            color: var(--white);
            border: 1px solid rgba(255,255,255,0.25);
        }

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

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

@media (max-width: 1024px) {
            .hero .container {
                flex-direction: column;
                text-align: center;
            }

            .hero-description {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-devis {
                flex: none;
                max-width: 480px;
                width: 100%;
            }

            .about-grid {
                flex-direction: column;
            }

            .about-image {
                flex: none;
                width: 100%;
            }

            .contact-grid {
                flex-direction: column;
            }

            .contact-info-side {
                flex: none;
            }

            .service-card {
                flex: 0 1 calc(50% - 15px);
            }
        }

@media (max-width: 768px) {
            .hero-proof-item {
                flex: 1 1 100%;
                max-width: 100%;
            }

            .expertise-section {
                padding-top: 50px;
                padding-bottom: 50px;
            }

            .sticky-mobile-cta {
                display: flex;
                flex-direction: column;
                margin-bottom: 10px;
            }

            body {
                padding-bottom: 74px;
            }

            .nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--secondary-dark);
                flex-direction: column;
                padding: 20px;
                gap: 0;
                border-top: 1px solid rgba(255,255,255,0.1);
            }

            .nav.active {
                display: flex;
            }

            .nav a {
                padding: 12px 0;
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(255,255,255,0.06);
            }

            .nav .btn-cta-nav {
                margin-top: 10px;
                text-align: center;
                width: 100%;
                display: block;
            }

            .hamburger {
                display: flex;
            }

            .hero {
                padding-top: 110px;
                padding-bottom: 40px;
            }

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

            .service-card {
                flex: 0 1 100%;
                max-width: 420px;
            }

            .engagement-card {
                flex: 0 1 calc(50% - 15px);
                min-width: 0;
            }

            .zone-card {
                flex: 0 1 100%;
            }

            .stat-item {
                flex: 0 0 140px;
            }

            .stat-number {
                font-size: 2.2rem;
            }

            .about-image img {
                height: 280px;
            }

            .devis-card {
                padding: 28px 20px;
            }
        }

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

            .hero {
                padding-top: 100px;
            }

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

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

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .engagement-card {
                flex: 0 1 100%;
            }

            .stat-item {
                flex: 0 0 120px;
            }

            .stats-grid {
                gap: 24px;
            }

            .horaires-card {
                padding: 24px 20px;
            }

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

            .modal-content {
                padding: 28px 20px;
            }

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

            .footer-links {
                justify-content: center;
            }
        }

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

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

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

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

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #1b304f 0%, #132240 100%);
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('/images/service_1_1773955331_69bc69031c0d6.webp');
    background-size: cover; background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-service-hub .sct-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(27,48,79,0.85) 0%, rgba(19,34,64,0.7) 100%);
    z-index: 1;
}

.sct-tpl-service-hub .sct-hero-container { position: relative; z-index: 2; }

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

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

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

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

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

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

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

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

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

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(24,154,231,0.15);
    border: 1px solid rgba(24,154,231,0.4);
    color: #189ae7;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.sct-tpl-service-hub .sct-hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #fff;
}

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

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 560px;
}

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

.sct-tpl-service-hub .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #189ae7;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: #053d5e;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(24,154,231,0.4);
}

.sct-tpl-service-hub .sct-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.sct-tpl-service-hub .sct-btn-secondary:hover {
    border-color: #189ae7;
    background: rgba(24,154,231,0.1);
}

.sct-tpl-service-hub .sct-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
}

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

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

.sct-tpl-service-hub .sct-hero-card {
    background: #fff;
    color: #1b304f;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
}

.sct-tpl-service-hub .sct-hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #189ae7, #053d5e);
    border-radius: 16px 16px 0 0;
}

.sct-tpl-service-hub .sct-hero-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1b304f;
    margin-bottom: 18px;
    text-align: center;
}

.sct-tpl-service-hub .sct-hero-card-info {
    list-style: none;
    margin-bottom: 22px;
}

.sct-tpl-service-hub .sct-hero-card-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.92rem;
    color: #495057;
}

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

.sct-tpl-service-hub .sct-hero-card-info i {
    color: #189ae7;
    width: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.sct-tpl-service-hub .sct-hero-card-info strong { color: #1b304f; display: block; }

.sct-tpl-service-hub .sct-hero-card-cta {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #189ae7;
    color: #fff;
    padding: 13px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.sct-tpl-service-hub .sct-hero-card-cta:hover { background: #053d5e; }

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

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

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

.sct-tpl-service-hub .sct-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    font-weight: 800;
    color: #1b304f;
    margin-bottom: 14px;
    line-height: 1.25;
}

.sct-tpl-service-hub .sct-section-subtitle {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
}

.sct-tpl-service-hub .sct-section-line {
    width: 60px;
    height: 4px;
    background: #189ae7;
    border-radius: 2px;
    margin: 14px auto 0;
}

.sct-tpl-service-hub .sct-stats-band {
    background: #1b304f;
    padding: 50px 0;
    position: relative;
}

.sct-tpl-service-hub .sct-stats-band::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(24,154,231,0.08) 0%, transparent 70%);
}

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

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

.sct-tpl-service-hub .sct-stat-item { text-align: center; }

.sct-tpl-service-hub .sct-stat-icon {
    font-size: 1.5rem;
    color: #189ae7;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.sct-tpl-service-hub .sct-stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
}

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

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

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

.sct-tpl-service-hub .sct-intro-content strong { color: #1b304f; }

.sct-tpl-service-hub .sct-services-section { background: #f8f9fa; }

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

.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 #e9ecef;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.1);
    border-color: #189ae7;
}

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

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

.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-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1b304f;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-service-card-body p {
    font-size: 0.93rem;
    color: #6c757d;
    line-height: 1.6;
}

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

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

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

.sct-tpl-service-hub .sct-processus-step {
    text-align: center;
    padding: 26px 18px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sct-tpl-service-hub .sct-processus-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.sct-tpl-service-hub .sct-processus-num {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    width: 32px; height: 32px;
    background: #189ae7;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
}

.sct-tpl-service-hub .sct-processus-icon {
    font-size: 1.8rem;
    color: #189ae7;
    margin: 14px 0 14px;
}

.sct-tpl-service-hub .sct-processus-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: #1b304f;
    margin-bottom: 8px;
}

.sct-tpl-service-hub .sct-processus-step p {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.5;
}

.sct-tpl-service-hub .sct-why-section { background: #f8f9fa; }

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

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

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

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

.sct-tpl-service-hub .sct-why-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #189ae7, #053d5e);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
}

.sct-tpl-service-hub .sct-why-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1b304f;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-why-card p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
}

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

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

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

.sct-tpl-service-hub .sct-usecase-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

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

.sct-tpl-service-hub .sct-usecase-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #1b304f;
    margin-bottom: 18px;
}

.sct-tpl-service-hub .sct-usecase-text p {
    color: #495057;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

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

.sct-tpl-service-hub .sct-usecase-text ul {
    list-style: none;
    margin-top: 16px;
}

.sct-tpl-service-hub .sct-usecase-text ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #495057;
    font-weight: 500;
}

.sct-tpl-service-hub .sct-usecase-text ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #189ae7;
}

.sct-tpl-service-hub .sct-engagements-section { background: #f8f9fa; }

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

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

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

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

.sct-tpl-service-hub .sct-engagement-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #189ae7, #053d5e);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
}

.sct-tpl-service-hub .sct-engagement-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1b304f;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-engagement-card p {
    font-size: 0.92rem;
    color: #6c757d;
    line-height: 1.6;
}

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

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

.sct-tpl-service-hub .sct-faq-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.sct-tpl-service-hub .sct-faq-item:hover { border-color: #189ae7; }

.sct-tpl-service-hub .sct-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    cursor: pointer;
    font-weight: 600;
    color: #1b304f;
    font-size: 0.98rem;
    line-height: 1.4;
    background: #f8f9fa;
}

.sct-tpl-service-hub .sct-faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #189ae7;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.sct-tpl-service-hub .sct-faq-answer {
    padding: 18px 22px 20px;
    color: #6c757d;
    font-size: 0.93rem;
    line-height: 1.7;
}

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

.sct-tpl-service-hub .sct-maillage-section + .sct-maillage-section {
    background: #fff;
    padding-top: 50px;
}

.sct-tpl-service-hub .sct-maillage-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: #1b304f;
    margin-bottom: 14px;
    text-align: center;
}

.sct-tpl-service-hub .sct-maillage-section .sct-maillage-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

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

.sct-tpl-service-hub .sct-maillage-list a {
    background: #fff;
    border: 1px solid #e9ecef;
    color: #495057;
    padding: 9px 18px;
    border-radius: 22px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sct-tpl-service-hub .sct-maillage-list a:hover {
    background: #189ae7;
    border-color: #189ae7;
    color: #fff;
    transform: translateY(-2px);
}

.sct-tpl-service-hub .sct-maillage-section + .sct-maillage-section .sct-maillage-list a {
    background: #f8f9fa;
}

.sct-tpl-service-hub .sct-maillage-section + .sct-maillage-section .sct-maillage-list a:hover {
    background: #189ae7;
    color: #fff;
}

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

.sct-tpl-service-hub .sct-cta-final::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(24,154,231,0.1) 0%, transparent 70%);
}

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

.sct-tpl-service-hub .sct-cta-final h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.sct-tpl-service-hub .sct-cta-final p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    font-size: 1.02rem;
    line-height: 1.7;
}

.sct-tpl-service-hub .sct-cta-final-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    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-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-service-hub .sct-usecase-image img { height: 320px; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .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-section { padding: 60px 0; }
    .sct-tpl-service-hub .sct-section-header { margin-bottom: 36px; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: 1fr; gap: 24px; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: 1fr; gap: 28px; }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-hero-card { padding: 26px 22px; }
    .sct-tpl-service-hub .sct-breadcrumb { font-size: 0.8rem; }
    .sct-tpl-service-hub .sct-maillage-section { padding: 50px 0; }
}

.sct-tpl-service-city { background: #fff; }

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #1b304f 0%, #132240 100%);
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('/images/service_4_1773955400_69bc6948b6eb8.webp');
    background-size: cover; background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-service-city .sct-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(27,48,79,0.85) 0%, rgba(19,34,64,0.7) 100%);
    z-index: 1;
}

.sct-tpl-service-city .sct-hero-container { position: relative; z-index: 2; }

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

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

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

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

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

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

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(24,154,231,0.15);
    border: 1px solid rgba(24,154,231,0.4);
    color: #189ae7;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.sct-tpl-service-city .sct-hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #fff;
}

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

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 560px;
}

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

.sct-tpl-service-city .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #189ae7;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.sct-tpl-service-city .sct-btn-primary:hover {
    background: #053d5e;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(24,154,231,0.4);
}

.sct-tpl-service-city .sct-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.sct-tpl-service-city .sct-btn-secondary:hover {
    border-color: #189ae7;
    background: rgba(24,154,231,0.1);
}

.sct-tpl-service-city .sct-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
}

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

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

.sct-tpl-service-city .sct-hero-card {
    background: #fff;
    color: #1b304f;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
}

.sct-tpl-service-city .sct-hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #189ae7, #053d5e);
    border-radius: 16px 16px 0 0;
}

.sct-tpl-service-city .sct-hero-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1b304f;
    margin-bottom: 18px;
    text-align: center;
}

.sct-tpl-service-city .sct-hero-card-info {
    list-style: none;
    margin-bottom: 22px;
}

.sct-tpl-service-city .sct-hero-card-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.92rem;
    color: #495057;
}

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

.sct-tpl-service-city .sct-hero-card-info i {
    color: #189ae7;
    width: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.sct-tpl-service-city .sct-hero-card-info strong { color: #1b304f; display: block; }

.sct-tpl-service-city .sct-hero-card-cta {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #189ae7;
    color: #fff;
    padding: 13px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.sct-tpl-service-city .sct-hero-card-cta:hover { background: #053d5e; }

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

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

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

.sct-tpl-service-city .sct-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    font-weight: 800;
    color: #1b304f;
    margin-bottom: 14px;
    line-height: 1.25;
}

.sct-tpl-service-city .sct-section-subtitle {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
}

.sct-tpl-service-city .sct-section-line {
    width: 60px;
    height: 4px;
    background: #189ae7;
    border-radius: 2px;
    margin: 14px auto 0;
}

.sct-tpl-service-city .sct-stats-band {
    background: #1b304f;
    padding: 50px 0;
    position: relative;
}

.sct-tpl-service-city .sct-stats-band::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(24,154,231,0.08) 0%, transparent 70%);
}

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

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

.sct-tpl-service-city .sct-stat-item { text-align: center; }

.sct-tpl-service-city .sct-stat-icon {
    font-size: 1.5rem;
    color: #189ae7;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.sct-tpl-service-city .sct-stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
}

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

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

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

.sct-tpl-service-city .sct-intro-content strong { color: #1b304f; }

.sct-tpl-service-city .sct-services-section { background: #f8f9fa; }

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

.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 #e9ecef;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.1);
    border-color: #189ae7;
}

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

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

.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-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1b304f;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-service-card-body p {
    font-size: 0.93rem;
    color: #6c757d;
    line-height: 1.6;
}

.sct-tpl-service-city .sct-processus-section { background: #fff; }

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

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

.sct-tpl-service-city .sct-processus-step {
    text-align: center;
    padding: 26px 18px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sct-tpl-service-city .sct-processus-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.sct-tpl-service-city .sct-processus-num {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    width: 32px; height: 32px;
    background: #189ae7;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
}

.sct-tpl-service-city .sct-processus-icon {
    font-size: 1.8rem;
    color: #189ae7;
    margin: 14px 0 14px;
}

.sct-tpl-service-city .sct-processus-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: #1b304f;
    margin-bottom: 8px;
}

.sct-tpl-service-city .sct-processus-step p {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.5;
}

.sct-tpl-service-city .sct-why-section { background: #f8f9fa; }

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

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

.sct-tpl-service-city .sct-why-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #189ae7, #053d5e);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
}

.sct-tpl-service-city .sct-why-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1b304f;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-why-card p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
}

.sct-tpl-service-city .sct-zones-section {
    background: #1b304f;
    position: relative;
}

.sct-tpl-service-city .sct-zones-section::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(24,154,231,0.05) 0%, transparent 60%);
}

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

.sct-tpl-service-city .sct-zones-section .sct-section-subtitle { color: rgba(255,255,255,0.7); }

.sct-tpl-service-city .sct-zones-content {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
}

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

.sct-tpl-service-city .sct-zones-list span,
.sct-tpl-service-city .sct-zones-list a {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sct-tpl-service-city .sct-zones-list span:hover,
.sct-tpl-service-city .sct-zones-list a:hover {
    background: rgba(24,154,231,0.2);
    border-color: #189ae7;
}

.sct-tpl-service-city .sct-usecase-section { background: #fff; }

.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: 16px;
    overflow: hidden;
    position: relative;
}

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

.sct-tpl-service-city .sct-usecase-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #1b304f;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-usecase-text p {
    color: #495057;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

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

.sct-tpl-service-city .sct-usecase-text ul {
    list-style: none;
    margin-top: 16px;
}

.sct-tpl-service-city .sct-usecase-text ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #495057;
    font-weight: 500;
}

.sct-tpl-service-city .sct-usecase-text ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #189ae7;
}

.sct-tpl-service-city .sct-engagements-section { background: #f8f9fa; }

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

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

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

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

.sct-tpl-service-city .sct-engagement-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #189ae7, #053d5e);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
}

.sct-tpl-service-city .sct-engagement-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1b304f;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-engagement-card p {
    font-size: 0.92rem;
    color: #6c757d;
    line-height: 1.6;
}

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

.sct-tpl-service-city .sct-local-spec-inner {
    max-width: 880px;
    margin: 0 auto;
    background: #f8f9fa;
    border-left: 4px solid #189ae7;
    padding: 32px 32px;
    border-radius: 8px;
}

.sct-tpl-service-city .sct-local-spec-inner h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #1b304f;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-local-spec-inner p {
    color: #495057;
    line-height: 1.75;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-faq-section { background: #f8f9fa; }

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

.sct-tpl-service-city .sct-faq-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.sct-tpl-service-city .sct-faq-item:hover { border-color: #189ae7; }

.sct-tpl-service-city .sct-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    cursor: pointer;
    font-weight: 600;
    color: #1b304f;
    font-size: 0.98rem;
    line-height: 1.4;
}

.sct-tpl-service-city .sct-faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #189ae7;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.sct-tpl-service-city .sct-faq-answer {
    padding: 0 22px 20px;
    color: #6c757d;
    font-size: 0.93rem;
    line-height: 1.7;
}

.sct-tpl-service-city .sct-maillage-section {
    background: #fff;
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
}

.sct-tpl-service-city .sct-maillage-section + .sct-maillage-section { padding-top: 0; border-top: none; }

.sct-tpl-service-city .sct-maillage-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1b304f;
    margin-bottom: 18px;
    text-align: center;
}

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

.sct-tpl-service-city .sct-maillage-list a {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #495057;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

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

.sct-tpl-service-city .sct-cta-final::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(24,154,231,0.1) 0%, transparent 70%);
}

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

.sct-tpl-service-city .sct-cta-final h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.sct-tpl-service-city .sct-cta-final p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    font-size: 1.02rem;
    line-height: 1.7;
}

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

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-city .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .sct-tpl-service-city .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-service-city .sct-usecase-image img { height: 320px; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .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-section { padding: 60px 0; }
    .sct-tpl-service-city .sct-section-header { margin-bottom: 36px; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: 1fr; gap: 24px; }
    .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-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: 24px 22px; }
    .sct-tpl-service-city .sct-hero-card { padding: 26px 22px; }
    .sct-tpl-service-city .sct-breadcrumb { font-size: 0.8rem; }
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('/images/service_3_1773955377_69bc69316cd17.webp');
    background-size: cover; background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('/images/service_1_1773955331_69bc69031c0d6.webp');
    background-size: cover; background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-zone { background: #fff; }

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #1b304f 0%, #132240 100%);
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('/images/service_1_1773955331_69bc69031c0d6.webp');
    background-size: cover; background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-zone .sct-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(27,48,79,0.85) 0%, rgba(19,34,64,0.7) 100%);
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(24,154,231,0.15);
    border: 1px solid rgba(24,154,231,0.4);
    color: #189ae7;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.sct-tpl-zone .sct-hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #fff;
}

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

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 560px;
}

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

.sct-tpl-zone .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #189ae7;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.sct-tpl-zone .sct-btn-primary:hover {
    background: #053d5e;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(24,154,231,0.4);
}

.sct-tpl-zone .sct-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.sct-tpl-zone .sct-btn-secondary:hover {
    border-color: #189ae7;
    background: rgba(24,154,231,0.1);
}

.sct-tpl-zone .sct-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
}

.sct-tpl-zone .sct-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

.sct-tpl-zone .sct-hero-card {
    background: #fff;
    color: #1b304f;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
}

.sct-tpl-zone .sct-hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #189ae7, #053d5e);
    border-radius: 16px 16px 0 0;
}

.sct-tpl-zone .sct-hero-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1b304f;
    margin-bottom: 18px;
    text-align: center;
}

.sct-tpl-zone .sct-hero-card-info {
    list-style: none;
    margin-bottom: 22px;
}

.sct-tpl-zone .sct-hero-card-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.92rem;
    color: #495057;
}

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

.sct-tpl-zone .sct-hero-card-info i {
    color: #189ae7;
    width: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.sct-tpl-zone .sct-hero-card-info strong { color: #1b304f; display: block; }

.sct-tpl-zone .sct-hero-card-cta {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #189ae7;
    color: #fff;
    padding: 13px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.sct-tpl-zone .sct-hero-card-cta:hover { background: #053d5e; }

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

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

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

.sct-tpl-zone .sct-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    font-weight: 800;
    color: #1b304f;
    margin-bottom: 14px;
    line-height: 1.25;
}

.sct-tpl-zone .sct-section-subtitle {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
}

.sct-tpl-zone .sct-section-line {
    width: 60px;
    height: 4px;
    background: #189ae7;
    border-radius: 2px;
    margin: 14px auto 0;
}

.sct-tpl-zone .sct-stats-band {
    background: #1b304f;
    padding: 50px 0;
    position: relative;
}

.sct-tpl-zone .sct-stats-band::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(24,154,231,0.08) 0%, transparent 70%);
}

.sct-tpl-zone .sct-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

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

.sct-tpl-zone .sct-stat-item { text-align: center; }

.sct-tpl-zone .sct-stat-icon {
    font-size: 1.5rem;
    color: #189ae7;
    margin-bottom: 10px;
}

.sct-tpl-zone .sct-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.sct-tpl-zone .sct-stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
}

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

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

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

.sct-tpl-zone .sct-intro-content strong { color: #1b304f; }

.sct-tpl-zone .sct-services-section { background: #f8f9fa; }

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

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

.sct-tpl-zone .sct-services-grid .sct-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sct-tpl-zone .sct-services-grid .sct-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.1);
    border-color: #189ae7;
}

.sct-tpl-zone .sct-services-grid .sct-service-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

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

.sct-tpl-zone .sct-services-grid .sct-service-card-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1b304f;
    margin-bottom: 10px;
}

.sct-tpl-zone .sct-services-grid .sct-service-card-body p {
    font-size: 0.93rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.sct-tpl-zone .sct-services-grid .sct-service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #189ae7;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.2s ease;
}

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

.sct-tpl-zone .sct-zones-section {
    background: #1b304f;
    position: relative;
}

.sct-tpl-zone .sct-zones-section::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(24,154,231,0.05) 0%, transparent 60%);
}

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

.sct-tpl-zone .sct-zones-section .sct-section-subtitle { color: rgba(255,255,255,0.7); }

.sct-tpl-zone .sct-zones-content {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
}

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

.sct-tpl-zone .sct-zones-list span,
.sct-tpl-zone .sct-zones-list a {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sct-tpl-zone .sct-zones-list span:hover,
.sct-tpl-zone .sct-zones-list a:hover {
    background: rgba(24,154,231,0.2);
    border-color: #189ae7;
}

.sct-tpl-zone .sct-usecase-section { background: #fff; }

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

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

.sct-tpl-zone .sct-usecase-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

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

.sct-tpl-zone .sct-usecase-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #1b304f;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-usecase-text p {
    color: #495057;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

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

.sct-tpl-zone .sct-usecase-text ul {
    list-style: none;
    margin-top: 16px;
}

.sct-tpl-zone .sct-usecase-text ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #495057;
    font-weight: 500;
}

.sct-tpl-zone .sct-usecase-text ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #189ae7;
}

.sct-tpl-zone .sct-engagements-section { background: #f8f9fa; }

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

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

.sct-tpl-zone .sct-engagement-card {
    background: #fff;
    padding: 34px 26px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.sct-tpl-zone .sct-engagement-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #189ae7, #053d5e);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
}

.sct-tpl-zone .sct-engagement-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1b304f;
    margin-bottom: 10px;
}

.sct-tpl-zone .sct-engagement-card p {
    font-size: 0.92rem;
    color: #6c757d;
    line-height: 1.6;
}

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

.sct-tpl-zone .sct-local-spec-inner {
    max-width: 880px;
    margin: 0 auto;
    background: #f8f9fa;
    border-left: 4px solid #189ae7;
    padding: 32px 32px;
    border-radius: 8px;
}

.sct-tpl-zone .sct-local-spec-inner h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #1b304f;
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-local-spec-inner p {
    color: #495057;
    line-height: 1.75;
    margin-bottom: 12px;
}

.sct-tpl-zone .sct-faq-section { background: #f8f9fa; }

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

.sct-tpl-zone .sct-faq-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.sct-tpl-zone .sct-faq-item:hover { border-color: #189ae7; }

.sct-tpl-zone .sct-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    cursor: pointer;
    font-weight: 600;
    color: #1b304f;
    font-size: 0.98rem;
    line-height: 1.4;
}

.sct-tpl-zone .sct-faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #189ae7;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.sct-tpl-zone .sct-faq-answer {
    padding: 0 22px 20px;
    color: #6c757d;
    font-size: 0.93rem;
    line-height: 1.7;
}

.sct-tpl-zone .sct-maillage-section {
    background: #fff;
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
}

.sct-tpl-zone .sct-maillage-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1b304f;
    margin-bottom: 18px;
    text-align: center;
}

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

.sct-tpl-zone .sct-maillage-list a {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #495057;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.sct-tpl-zone .sct-maillage-list a:hover {
    background: #189ae7;
    border-color: #189ae7;
    color: #fff;
}

.sct-tpl-zone .sct-cta-final {
    background: linear-gradient(135deg, #1b304f 0%, #132240 100%);
    padding: 70px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sct-tpl-zone .sct-cta-final::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(24,154,231,0.1) 0%, transparent 70%);
}

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

.sct-tpl-zone .sct-cta-final h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.sct-tpl-zone .sct-cta-final p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    font-size: 1.02rem;
    line-height: 1.7;
}

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

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-zone .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .sct-tpl-zone .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-zone .sct-usecase-image img { height: 320px; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-zone .sct-hero-btns { flex-direction: column; }
    .sct-tpl-zone .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-section { padding: 60px 0; }
    .sct-tpl-zone .sct-section-header { margin-bottom: 36px; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: 1fr; gap: 24px; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-local-spec-inner { padding: 24px 22px; }
    .sct-tpl-zone .sct-hero-card { padding: 26px 22px; }
    .sct-tpl-zone .sct-breadcrumb { font-size: 0.8rem; }
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('/images/service_2_1773955355_69bc691b47c1a.webp');
    background-size: cover; background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('/images/service_2_1773955355_69bc691b47c1a.webp');
    background-size: cover; background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('/images/service_2_1773955355_69bc691b47c1a.webp');
    background-size: cover; background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('/images/service_3_1773955377_69bc69316cd17.webp');
    background-size: cover; background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('/images/service_3_1773955377_69bc69316cd17.webp');
    background-size: cover; background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('/images/service_4_1773955400_69bc6948b6eb8.webp');
    background-size: cover; background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('/images/service_5_1773955421_69bc695d834cf.webp');
    background-size: cover; background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('/images/service_4_1773955400_69bc6948b6eb8.webp');
    background-size: cover; background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('/images/service_5_1773955421_69bc695d834cf.webp');
    background-size: cover; background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('/images/service_5_1773955421_69bc695d834cf.webp');
    background-size: cover; background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('/images/service_6_1773955441_69bc697149ae4.webp');
    background-size: cover; background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('/images/service_6_1773955441_69bc697149ae4.webp');
    background-size: cover; background-position: center;
    opacity: 0.18;
    z-index: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--secondary-dark);
        padding: 24px 20px;
        gap: 18px;
        display: none;
        box-shadow: 0 6px 24px rgba(0,0,0,0.3);
    }
}

.page-hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 60%, var(--secondary-light) 100%);
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(24,154,231,0.18) 0%, transparent 60%),
                radial-gradient(ellipse at bottom left, rgba(24,154,231,0.10) 0%, transparent 60%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.page-hero-badge {
    display: inline-block;
    background: rgba(24,154,231,0.15);
    border: 1px solid rgba(24,154,231,0.4);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}

.breadcrumb {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 8px 18px;
    border-radius: 30px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

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

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

.breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.6;
}

.sitemap-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: var(--white);
}

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

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

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

.sitemap-block-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--gray-200);
}

.sitemap-block-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(24,154,231,0.25);
}

.sitemap-block-title {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 800;
    color: var(--secondary);
}

.sitemap-block-title small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-top: 4px;
    text-transform: none;
    letter-spacing: 0;
}

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 30px;
    color: var(--secondary);
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.25s ease;
    line-height: 1.3;
}

.chip i {
    color: var(--primary);
    font-size: 0.8rem;
    transition: transform 0.25s ease;
}

.chip:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24,154,231,0.25);
}

.chip:hover i {
    color: var(--white);
    transform: translateX(3px);
}

.chip.chip-large {
    padding: 14px 24px;
    font-size: 0.98rem;
}

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

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

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

.service-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.service-group {
    background: var(--white);
    border-radius: 14px;
    padding: 26px 24px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-group:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.service-group-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--gray-200);
    line-height: 1.3;
}

.service-group-title i {
    color: var(--primary);
    font-size: 1.05rem;
    flex-shrink: 0;
}

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

.city-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    color: var(--gray-700);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.city-chip:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

.city-chip i {
    font-size: 0.7rem;
    opacity: 0.7;
}

.zone-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.zone-link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.zone-link-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(24,154,231,0.15);
}

.zone-link-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(24,154,231,0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.zone-link-card:hover .zone-link-icon {
    background: var(--primary);
    color: var(--white);
}

.zone-link-text {
    flex: 1;
    min-width: 0;
}

.zone-link-city {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 2px;
}

.zone-link-meta {
    color: var(--gray-600);
    font-size: 0.8rem;
}

.zone-link-arrow {
    color: var(--gray-300);
    transition: color 0.3s ease, transform 0.3s ease;
}

.zone-link-card:hover .zone-link-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

.cta-bottom {
    background: var(--secondary);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(24,154,231,0.15) 0%, transparent 70%);
}

.cta-bottom-inner {
    position: relative;
    z-index: 1;
}

.cta-bottom h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-bottom p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(24,154,231,0.4);
}

.footer {
    background: var(--secondary-dark);
    padding: 50px 0 0;
    color: rgba(255,255,255,0.7);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.footer-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom {
    text-align: center;
    padding: 22px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .page-hero {
        padding-top: 130px;
        padding-bottom: 60px;
    }

    .sitemap-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

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

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

    .footer-links {
        justify-content: center;
    }
}