.menu-check{display:none}

.menu-icon-close{display:none}

#menuCheck:checked~.menu-toggle .menu-icon-open{display:none}

#menuCheck:checked~.menu-toggle .menu-icon-close{display:inline-block}

#menuCheck:checked~.nav{display:flex!important;transform:none!important;opacity:1!important;visibility:visible!important;right:0!important}

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

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

:root {
            --primary: #5B7FA5;
            --primary-dark: #4A6B8E;
            --primary-light: #7A9BBF;
            --secondary: #E8A87C;
            --secondary-dark: #D4925F;
            --bg-warm: #FDFAF6;
            --bg-blue-light: #F0F4F8;
            --text-dark: #2D3748;
            --text-medium: #4A5568;
            --text-light: #718096;
            --white: #FFFFFF;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
            --radius: 16px;
            --radius-sm: 10px;
            --radius-full: 50px;
        }

html {
            scroll-behavior: smooth;
        }

body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-warm);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

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

.header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(253, 250, 246, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 1000;
            box-shadow: 0 1px 8px rgba(0,0,0,0.06);
            transition: box-shadow 0.3s ease;
        }

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

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

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

.logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }

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

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

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

.nav .btn-cta-nav {
            background: var(--secondary);
            color: var(--white);
            padding: 10px 22px;
            font-weight: 600;
            border-radius: var(--radius-full);
            white-space: nowrap;
        }

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

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

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

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

.hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(45, 55, 72, 0.82) 0%, rgba(91, 127, 165, 0.7) 100%);
        }

.hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            width: 100%;
        }

.hero-text {
            color: var(--white);
        }

.hero-text h1 {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 20px;
        }

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

.hero-subtitle {
            font-size: 1.15rem;
            line-height: 1.7;
            opacity: 0.92;
            margin-bottom: 30px;
            font-weight: 300;
        }

.hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 30px;
        }

.hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(6px);
            padding: 8px 16px;
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--white);
        }

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

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

.btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: var(--radius-full);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
            border: none;
            cursor: pointer;
        }

.btn:hover {
            transform: translateY(-2px);
        }

.btn-primary {
            background: var(--secondary);
            color: var(--white);
            box-shadow: 0 4px 20px rgba(232, 168, 124, 0.4);
        }

.btn-primary:hover {
            background: var(--secondary-dark);
            box-shadow: 0 6px 24px rgba(232, 168, 124, 0.5);
        }

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

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

.devis-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 36px 32px;
            box-shadow: var(--shadow-lg);
        }

.devis-card-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

.devis-card-sub {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 24px;
        }

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

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

.form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid #E2E8F0;
            border-radius: var(--radius-sm);
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: var(--text-dark);
            background: var(--bg-warm);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

.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(91,127,165,0.15);
        }

.form-group textarea {
            resize: vertical;
        }

.form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

.btn-submit {
            width: 100%;
            padding: 14px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-sm);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
        }

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

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

.reassurance {
            background: var(--white);
            padding: 50px 0;
            box-shadow: var(--shadow-sm);
        }

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

.reassurance-item {
            padding: 20px;
        }

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

.reassurance-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 6px;
        }

.reassurance-label {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 500;
        }

.section {
            padding: 80px 0;
        }

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

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

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

.section-header h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

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

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

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

.service-card {
            width: calc(50% - 14px);
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

.section-alt .service-card {
            background: var(--white);
        }

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

.service-card-img {
            width: 100%;
            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.04);
        }

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

.service-card-body h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

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

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

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

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

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

.engagement-card h3 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

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

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

.about-img-wrapper {
            position: relative;
        }

.about-img-wrapper img {
            width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
        }

.about-img-wrapper::after {
            content: '';
            position: absolute;
            bottom: -16px;
            right: -16px;
            width: 120px;
            height: 120px;
            background: var(--secondary);
            opacity: 0.15;
            border-radius: 50%;
            z-index: -1;
        }

.about-text h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

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

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

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

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

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

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

.zone-tag {
            background: var(--white);
            padding: 12px 24px;
            border-radius: var(--radius-full);
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-dark);
            box-shadow: var(--shadow-sm);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

.zone-tag:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

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

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

.faq-item {
            background: var(--white);
            border-radius: var(--radius-sm);
            margin-bottom: 12px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }

.faq-question {
            width: 100%;
            padding: 20px 24px;
            background: none;
            border: none;
            text-align: left;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s ease;
        }

.faq-question:hover {
            color: var(--primary);
        }

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

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

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

.faq-item.active .faq-answer {
            max-height: 300px;
        }

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

.horaires-card {
            max-width: 520px;
            margin: 0 auto;
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
            overflow: hidden;
        }

.horaires-header {
            background: var(--primary);
            color: var(--white);
            padding: 20px 28px;
            font-size: 1.1rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

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

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

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

.horaire-row.closed {
            background: #FFF5F5;
        }

.horaire-row.closed .horaire-day {
            color: var(--text-light);
        }

.horaire-row.closed .horaire-time {
            color: #E53E3E;
            font-weight: 500;
        }

.horaire-status {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-right: 8px;
        }

.horaire-status.open {
            background: #48BB78;
        }

.horaire-status.off {
            background: #E53E3E;
        }

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

.contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }

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

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

.contact-info-text span {
            display: block;
            font-weight: 600;
            color: var(--text-dark);
            font-size: 0.95rem;
            margin-bottom: 2px;
        }

.contact-info-text p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

.contact-info-text a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }

.contact-info-text a:hover {
            text-decoration: underline;
        }

.contact-form-wrapper {
            background: var(--white);
            border-radius: var(--radius);
            padding: 36px 32px;
            box-shadow: var(--shadow-sm);
        }

.contact-form-wrapper h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

.map-wrapper {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            margin-top: 30px;
        }

.map-wrapper iframe {
            display: block;
        }

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

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

.footer-brand .logo-text {
            color: var(--white);
            font-size: 1.4rem;
            margin-bottom: 12px;
            display: block;
        }

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

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

.footer-title {
            font-weight: 600;
            color: var(--white);
            font-size: 1rem;
            margin-bottom: 18px;
            display: block;
        }

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

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

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

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

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

.footer-contact-item i {
            color: var(--secondary);
            width: 18px;
            text-align: center;
        }

.footer-contact-item a {
            color: rgba(255,255,255,0.75);
            text-decoration: none;
        }

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

.footer-bottom {
            padding: 24px 0;
            text-align: center;
            font-size: 0.85rem;
        }

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

.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.5);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

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

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

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

.modal-close:hover {
            color: var(--text-dark);
        }

.modal-content p {
            font-size: 0.95rem;
            color: var(--text-medium);
            margin-bottom: 10px;
            line-height: 1.6;
        }

.modal-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

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

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

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

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

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

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

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

@media (max-width: 768px) {
            .nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                gap: 4px;
                box-shadow: var(--shadow-md);
            }

            .nav.open {
                display: flex;
            }

            .nav a {
                width: 100%;
                text-align: center;
                padding: 12px 16px;
            }

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

            .menu-toggle {
                display: block;
            }

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

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

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

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

            .form-row {
                grid-template-columns: 1fr;
            }

            .reassurance-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

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

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

            .section {
                padding: 60px 0;
            }

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

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

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

@media (max-width: 640px) {
            .hero-text h1 {
                font-size: 1.6rem;
            }

            .hero-btns {
                flex-direction: column;
            }

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

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

            .reassurance-number {
                font-size: 1.8rem;
            }

            .service-card {
                width: 100%;
            }

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

            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

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

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

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

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

.sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    margin-bottom: 20px;
    font-size: 0.82rem;
}

.sct-breadcrumb a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.sct-breadcrumb a:hover { color: #fff; }

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

.sct-bc-current { color: var(--secondary, #E8A87C); font-weight: 500; }

.sct-tpl-service-city .sct-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 130px;
    padding-bottom: 80px;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/service_2_1775396466_69d26672abc65.webp');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.sct-tpl-service-city .sct-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45,55,72,0.84) 0%, rgba(91,127,165,0.72) 100%);
}

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

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

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

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

.sct-tpl-service-city .sct-hero-text { color: #fff; }

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

.sct-tpl-service-city .sct-hero-text h1 em {
    font-style: normal;
    color: var(--secondary, #E8A87C);
}

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 26px;
    font-weight: 300;
}

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

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(6px);
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
}

.sct-tpl-service-city .sct-hero-badge i { color: var(--secondary, #E8A87C); }

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

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

.sct-tpl-service-city .sct-btn:hover { transform: translateY(-2px); }

.sct-tpl-service-city .sct-btn-primary {
    background: var(--secondary, #E8A87C);
    color: #fff;
    box-shadow: 0 4px 20px rgba(232,168,124,0.4);
}

.sct-tpl-service-city .sct-btn-primary:hover {
    background: var(--secondary-dark, #D4925F);
    box-shadow: 0 6px 24px rgba(232,168,124,0.5);
}

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

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

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

.sct-tpl-service-city .sct-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.85);
}

.sct-tpl-service-city .sct-hero-trust-item i { color: #68D391; font-size: 0.9rem; }

.sct-tpl-service-city .sct-hero-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
}

.sct-tpl-service-city .sct-hero-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark, #2D3748);
    margin-bottom: 6px;
}

.sct-tpl-service-city .sct-hero-card-sub {
    font-size: 0.85rem;
    color: var(--text-light, #718096);
    margin-bottom: 22px;
}

.sct-tpl-service-city .sct-card-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.sct-tpl-service-city .sct-card-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sct-tpl-service-city .sct-card-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-blue-light, #F0F4F8);
    color: var(--primary, #5B7FA5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.sct-tpl-service-city .sct-card-info-text span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-light, #718096);
    margin-bottom: 1px;
}

.sct-tpl-service-city .sct-card-info-text strong {
    font-size: 0.92rem;
    color: var(--text-dark, #2D3748);
}

.sct-tpl-service-city .sct-card-info-text a {
    color: var(--primary, #5B7FA5);
    text-decoration: none;
    font-weight: 600;
}

.sct-tpl-service-city .sct-hero-card .sct-btn {
    width: 100%;
    justify-content: center;
    background: var(--primary, #5B7FA5);
    color: #fff;
    border-radius: 10px;
    padding: 13px;
}

.sct-tpl-service-city .sct-hero-card .sct-btn:hover { background: var(--primary-dark, #4A6B8E); }

.sct-tpl-service-city .sct-stats-band {
    background: var(--primary, #5B7FA5);
    padding: 42px 0;
}

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

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

.sct-tpl-service-city .sct-stat-item { padding: 10px 0; }

.sct-tpl-service-city .sct-stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.sct-tpl-service-city .sct-stat-value span { color: var(--secondary, #E8A87C); }

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

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

.sct-tpl-service-city .sct-section-alt { background: var(--bg-blue-light, #F0F4F8); }

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

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

.sct-tpl-service-city .sct-section-tag {
    display: inline-block;
    background: rgba(91,127,165,0.1);
    color: var(--primary, #5B7FA5);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-section-title {
    font-size: 1.95rem;
    font-weight: 700;
    color: var(--text-dark, #2D3748);
    margin-bottom: 12px;
    line-height: 1.25;
}

.sct-tpl-service-city .sct-section-line {
    width: 56px;
    height: 4px;
    background: var(--secondary, #E8A87C);
    border-radius: 2px;
    margin: 14px auto 0;
}

.sct-tpl-service-city .sct-section-desc {
    font-size: 1rem;
    color: var(--text-light, #718096);
    max-width: 580px;
    margin: 14px auto 0;
    line-height: 1.7;
}

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

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

.sct-tpl-service-city .sct-intro-body p {
    font-size: 1rem;
    color: var(--text-medium, #4A5568);
    line-height: 1.85;
    margin-bottom: 20px;
}

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

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

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

.sct-tpl-service-city .sct-service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

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

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

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

.sct-tpl-service-city .sct-service-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(91,127,165,0.12);
    color: var(--primary, #5B7FA5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-service-card-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark, #2D3748);
    margin-bottom: 8px;
}

.sct-tpl-service-city .sct-service-card-body p {
    font-size: 0.9rem;
    color: var(--text-light, #718096);
    line-height: 1.65;
}

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

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

.sct-tpl-service-city .sct-step-card {
    text-align: center;
    padding: 28px 18px 24px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: relative;
}

.sct-tpl-service-city .sct-step-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--secondary, #E8A87C);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sct-tpl-service-city .sct-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light, #7A9BBF), var(--primary, #5B7FA5));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 14px;
}

.sct-tpl-service-city .sct-step-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark, #2D3748);
    margin-bottom: 8px;
}

.sct-tpl-service-city .sct-step-card p {
    font-size: 0.85rem;
    color: var(--text-light, #718096);
    line-height: 1.6;
}

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

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

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

.sct-tpl-service-city .sct-why-card {
    text-align: center;
    padding: 32px 22px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-city .sct-why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

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

.sct-tpl-service-city .sct-why-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark, #2D3748);
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-why-card p {
    font-size: 0.88rem;
    color: var(--text-light, #718096);
    line-height: 1.65;
}

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

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

.sct-tpl-service-city .sct-zone-tag {
    background: var(--bg-blue-light, #F0F4F8);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark, #2D3748);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sct-tpl-service-city .sct-zone-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.sct-tpl-service-city .sct-zone-tag i { color: var(--primary, #5B7FA5); margin-right: 6px; }

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

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

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

.sct-tpl-service-city .sct-usecase-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

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

.sct-tpl-service-city .sct-usecase-body p {
    font-size: 0.97rem;
    color: var(--text-medium, #4A5568);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

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

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

.sct-tpl-service-city .sct-engagement-card {
    text-align: center;
    padding: 36px 26px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-city .sct-engagement-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.sct-tpl-service-city .sct-engagement-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light, #7A9BBF), var(--primary, #5B7FA5));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 18px;
}

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

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

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

.sct-tpl-service-city .sct-local-spec-inner {
    max-width: 820px;
    margin: 0 auto;
    font-size: 0.97rem;
    color: var(--text-medium, #4A5568);
    line-height: 1.8;
}

.sct-tpl-service-city .sct-faq-section { background: var(--bg-blue-light, #F0F4F8); }

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

.sct-tpl-service-city .sct-faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    overflow: hidden;
}

.sct-tpl-service-city .sct-faq-question {
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--text-dark, #2D3748);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color 0.2s;
}

.sct-tpl-service-city .sct-faq-question:hover { color: var(--primary, #5B7FA5); }

.sct-tpl-service-city .sct-faq-question i {
    transition: transform 0.3s;
    color: var(--primary, #5B7FA5);
    font-size: 0.85rem;
    flex-shrink: 0;
}

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

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

.sct-tpl-service-city .sct-faq-item.active .sct-faq-answer { max-height: 320px; }

.sct-tpl-service-city .sct-faq-answer-inner {
    padding: 0 22px 18px;
    font-size: 0.93rem;
    color: var(--text-medium, #4A5568);
    line-height: 1.7;
}

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

.sct-tpl-service-city .sct-maillage-section.sct-alt { background: var(--bg-blue-light, #F0F4F8); }

.sct-tpl-service-city .sct-maillage-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.sct-tpl-service-city .sct-maillage-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1.5px solid #E2E8F0;
    color: var(--primary, #5B7FA5);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

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

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

.sct-tpl-service-city .sct-cta-final {
    background: linear-gradient(135deg, var(--primary, #5B7FA5) 0%, var(--primary-dark, #4A6B8E) 100%);
    padding: 80px 0;
    text-align: center;
}

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

.sct-tpl-service-city .sct-cta-final p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 34px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

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

.sct-tpl-service-city .sct-cta-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--primary, #5B7FA5);
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.sct-tpl-service-city .sct-cta-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

.sct-tpl-service-city .sct-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.sct-tpl-service-city .sct-cta-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .sct-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sct-hero-card {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-section-title { font-size: 1.65rem; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-hero-btns { flex-direction: column; }
    .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .sct-tpl-service-city .sct-stat-value { font-size: 1.8rem; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-section { padding: 56px 0; }
    .sct-tpl-service-city .sct-section-title { font-size: 1.5rem; }
    .sct-tpl-service-city .sct-cta-final h2 { font-size: 1.55rem; }
    .sct-tpl-service-city .sct-cta-final-btns { flex-direction: column; align-items: center; }
    .sct-tpl-service-city .sct-cta-btn-white,
    .sct-tpl-service-city .sct-cta-btn-outline { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-usecase-img img { height: 240px; }
    .sct-tpl-service-city .sct-hero-card { padding: 24px 20px; }
}

.sct-tpl-service-city .sct-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/service_5_1775396537_69d266b99836e.webp');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.sct-tpl-service-city .sct-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/service_1_1775396444_69d2665c5def2.webp');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.sct-tpl-service-hub .sct-hero {
            position: relative;
            min-height: 88vh;
            display: flex;
            align-items: center;
            padding-top: 110px;
            padding-bottom: 70px;
            overflow: hidden;
        }

.sct-tpl-service-hub .sct-hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('/images/service_1_1775396444_69d2665c5def2.webp');
            background-size: cover;
            background-position: center;
            z-index: -2;
        }

.sct-tpl-service-hub .sct-hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(45,55,72,0.84) 0%, rgba(91,127,165,0.72) 100%);
        }

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

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

.sct-tpl-service-hub .sct-hero-text { color: #fff; }

.sct-tpl-service-hub .sct-hero-text h1 {
            font-size: 2.75rem;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 18px;
        }

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

.sct-tpl-service-hub .sct-hero-subtitle {
            font-size: 1.1rem;
            line-height: 1.75;
            opacity: 0.92;
            margin-bottom: 28px;
            font-weight: 300;
        }

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

.sct-tpl-service-hub .sct-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(255,255,255,0.14);
            backdrop-filter: blur(6px);
            padding: 7px 15px;
            border-radius: 50px;
            font-size: 0.88rem;
            font-weight: 500;
            color: #fff;
        }

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

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

.sct-tpl-service-hub .sct-hero-info {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(14px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 20px;
            padding: 36px 30px;
        }

.sct-tpl-service-hub .sct-hero-info-title {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

.sct-tpl-service-hub .sct-hero-info-list {
            list-style: none;
            padding: 0;
            margin: 0 0 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.sct-tpl-service-hub .sct-hero-info-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255,255,255,0.9);
            font-size: 0.93rem;
        }

.sct-tpl-service-hub .sct-hero-info-list li i { color: var(--secondary); width: 16px; }

.sct-tpl-service-hub .sct-hero-phone-block {
            background: rgba(255,255,255,0.15);
            border-radius: 12px;
            padding: 16px 20px;
            text-align: center;
        }

.sct-tpl-service-hub .sct-hero-phone-block a {
            display: block;
            color: #fff;
            font-size: 1.4rem;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.5px;
        }

.sct-tpl-service-hub .sct-hero-phone-block span {
            color: rgba(255,255,255,0.72);
            font-size: 0.82rem;
        }

.sct-tpl-service-hub .sct-breadcrumb-bar {
            background: var(--bg-blue-light, #F0F4F8);
            border-bottom: 1px solid #e2e8f0;
            padding: 10px 0;
        }

.sct-breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            max-width: 100%;
            overflow-wrap: anywhere;
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 0.85rem;
            color: var(--text-light, #718096);
        }

.sct-breadcrumb a { color: var(--primary, #5B7FA5); text-decoration: none; }

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

.sct-breadcrumb .sct-bc-sep { color: #cbd5e0; }

.sct-breadcrumb .sct-bc-current { color: var(--text-dark, #2D3748); font-weight: 500; }

.sct-tpl-service-hub .sct-stats-band {
            background: var(--primary, #5B7FA5);
            padding: 40px 0;
        }

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

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

.sct-tpl-service-hub .sct-stat-item { padding: 12px; }

.sct-tpl-service-hub .sct-stat-value {
            font-size: 2.4rem;
            font-weight: 700;
            color: #fff;
            line-height: 1;
            margin-bottom: 6px;
        }

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

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

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

.sct-tpl-service-hub .sct-section-tag {
            display: inline-block;
            background: var(--bg-blue-light, #F0F4F8);
            color: var(--primary, #5B7FA5);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 50px;
            margin-bottom: 14px;
        }

.sct-tpl-service-hub .sct-section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark, #2D3748);
            margin-bottom: 14px;
            line-height: 1.25;
        }

.sct-tpl-service-hub .sct-section-line {
            width: 56px;
            height: 4px;
            background: var(--secondary, #E8A87C);
            border-radius: 2px;
            margin-bottom: 28px;
        }

.sct-tpl-service-hub .sct-intro-p {
            font-size: 1rem;
            color: var(--text-medium, #4A5568);
            line-height: 1.85;
            margin-bottom: 18px;
        }

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

.sct-tpl-service-hub .sct-services-section {
            padding: 80px 0;
            background: var(--bg-blue-light, #F0F4F8);
        }

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

.sct-tpl-service-hub .sct-services-section .sct-section-header .sct-section-line {
            margin: 14px auto 0;
        }

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

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

.sct-tpl-service-hub .sct-service-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

.sct-tpl-service-hub .sct-service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 28px rgba(0,0,0,0.12);
        }

.sct-tpl-service-hub .sct-service-card-img {
            width: 100%;
            height: 210px;
            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: 26px 24px; }

.sct-tpl-service-hub .sct-service-card-icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: var(--bg-blue-light, #F0F4F8);
            color: var(--primary, #5B7FA5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            margin-bottom: 14px;
        }

.sct-tpl-service-hub .sct-service-card-body h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark, #2D3748);
            margin-bottom: 10px;
        }

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

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

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

.sct-tpl-service-hub .sct-processus-section .sct-section-header .sct-section-line {
            margin: 14px auto 0;
        }

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

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

.sct-tpl-service-hub .sct-processus-grid::before {
            content: '';
            position: absolute;
            top: 38px;
            left: 10%;
            width: 80%;
            height: 2px;
            background: linear-gradient(to right, var(--primary, #5B7FA5), var(--secondary, #E8A87C));
            z-index: 0;
        }

.sct-tpl-service-hub .sct-step {
            text-align: center;
            position: relative;
            z-index: 1;
        }

.sct-tpl-service-hub .sct-step-num {
            width: 76px;
            height: 76px;
            border-radius: 50%;
            background: var(--primary, #5B7FA5);
            color: #fff;
            font-size: 1.3rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            box-shadow: 0 4px 16px rgba(91,127,165,0.3);
        }

.sct-tpl-service-hub .sct-step h3 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-dark, #2D3748);
            margin-bottom: 8px;
        }

.sct-tpl-service-hub .sct-step p {
            font-size: 0.83rem;
            color: var(--text-light, #718096);
            line-height: 1.55;
        }

.sct-tpl-service-hub .sct-why-section {
            padding: 80px 0;
            background: var(--bg-blue-light, #F0F4F8);
        }

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

.sct-tpl-service-hub .sct-why-section .sct-section-header .sct-section-line {
            margin: 14px auto 0;
        }

.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;
            border-radius: 18px;
            padding: 34px 24px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

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

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

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

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

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

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

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

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

.sct-tpl-service-hub .sct-usecase-img-wrapper img {
            width: 100%;
            border-radius: 18px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
            display: block;
        }

.sct-tpl-service-hub .sct-usecase-img-wrapper::after {
            content: '';
            position: absolute;
            bottom: -18px;
            right: -18px;
            width: 110px;
            height: 110px;
            background: var(--secondary, #E8A87C);
            opacity: 0.18;
            border-radius: 50%;
            z-index: -1;
        }

.sct-tpl-service-hub .sct-usecase-content { }

.sct-tpl-service-hub .sct-usecase-content .sct-section-title { margin-bottom: 10px; }

.sct-tpl-service-hub .sct-usecase-content .sct-section-line { margin-bottom: 24px; }

.sct-tpl-service-hub .sct-usecase-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
            margin-top: 20px;
        }

.sct-tpl-service-hub .sct-usecase-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

.sct-tpl-service-hub .sct-usecase-item-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--bg-blue-light, #F0F4F8);
            color: var(--primary, #5B7FA5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
        }

.sct-tpl-service-hub .sct-usecase-item-text h4 {
            font-size: 0.98rem;
            font-weight: 600;
            color: var(--text-dark, #2D3748);
            margin-bottom: 4px;
        }

.sct-tpl-service-hub .sct-usecase-item-text p {
            font-size: 0.88rem;
            color: var(--text-light, #718096);
            line-height: 1.6;
        }

.sct-tpl-service-hub .sct-engagements-section {
            padding: 80px 0;
            background: var(--bg-blue-light, #F0F4F8);
        }

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

.sct-tpl-service-hub .sct-engagements-section .sct-section-header .sct-section-line {
            margin: 14px auto 0;
        }

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

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

.sct-tpl-service-hub .sct-engagement-card {
            background: #fff;
            border-radius: 18px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 2px 12px rgba(0,0,0,0.07);
            transition: transform 0.3s ease;
        }

.sct-tpl-service-hub .sct-engagement-card:hover { transform: translateY(-4px); }

.sct-tpl-service-hub .sct-engagement-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary, #E8A87C), var(--secondary-dark, #D4925F));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin: 0 auto 20px;
        }

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

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

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

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

.sct-tpl-service-hub .sct-faq-section .sct-section-header .sct-section-line {
            margin: 14px auto 0;
        }

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

.sct-tpl-service-hub .sct-faq-item {
            background: var(--bg-blue-light, #F0F4F8);
            border-radius: 14px;
            margin-bottom: 12px;
            overflow: hidden;
        }

.sct-tpl-service-hub .sct-faq-question {
            width: 100%;
            padding: 20px 24px;
            background: none;
            border: none;
            text-align: left;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark, #2D3748);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            transition: color 0.3s ease;
        }

.sct-tpl-service-hub .sct-faq-question:hover { color: var(--primary, #5B7FA5); }

.sct-tpl-service-hub .sct-faq-question i {
            color: var(--primary, #5B7FA5);
            font-size: 0.85rem;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

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

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

.sct-tpl-service-hub .sct-faq-item.active .sct-faq-answer { max-height: 320px; }

.sct-tpl-service-hub .sct-faq-answer-inner {
            padding: 0 24px 20px;
            font-size: 0.94rem;
            color: var(--text-medium, #4A5568);
            line-height: 1.75;
        }

.sct-tpl-service-hub .sct-maillage-section {
            padding: 80px 0;
            background: var(--bg-blue-light, #F0F4F8);
        }

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

.sct-tpl-service-hub .sct-maillage-section .sct-section-header .sct-section-line {
            margin: 14px auto 0;
        }

.sct-tpl-service-hub .sct-maillage-cities-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 12px;
            margin-bottom: 16px;
        }

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

.sct-tpl-service-hub .sct-city-link {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            padding: 12px 16px;
            border-radius: 10px;
            text-decoration: none;
            color: var(--text-dark, #2D3748);
            font-size: 0.9rem;
            font-weight: 500;
            box-shadow: 0 1px 6px rgba(0,0,0,0.06);
            transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

.sct-tpl-service-hub .sct-city-link i {
            color: var(--primary, #5B7FA5);
            font-size: 0.78rem;
            flex-shrink: 0;
        }

.sct-tpl-service-hub .sct-city-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 14px rgba(0,0,0,0.1);
            color: var(--primary, #5B7FA5);
        }

.sct-tpl-service-hub .sct-other-services-section {
            padding: 70px 0;
            background: #fff;
        }

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

.sct-tpl-service-hub .sct-other-services-section .sct-section-header .sct-section-line {
            margin: 14px auto 0;
        }

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

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

.sct-tpl-service-hub .sct-other-service-link {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--bg-blue-light, #F0F4F8);
            padding: 18px 20px;
            border-radius: 14px;
            text-decoration: none;
            color: var(--text-dark, #2D3748);
            font-size: 0.93rem;
            font-weight: 500;
            transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        }

.sct-tpl-service-hub .sct-other-service-link i {
            color: var(--primary, #5B7FA5);
            font-size: 1.1rem;
            flex-shrink: 0;
        }

.sct-tpl-service-hub .sct-other-service-link:hover {
            background: var(--primary, #5B7FA5);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(91,127,165,0.25);
        }

.sct-tpl-service-hub .sct-other-service-link:hover i { color: #fff; }

.sct-tpl-service-hub .sct-cta-final {
            background: linear-gradient(135deg, var(--primary, #5B7FA5) 0%, var(--primary-dark, #4A6B8E) 100%);
            padding: 90px 0;
            text-align: center;
        }

.sct-tpl-service-hub .sct-cta-final h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            line-height: 1.25;
        }

.sct-tpl-service-hub .sct-cta-final p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.88);
            margin-bottom: 36px;
            max-width: 580px;
            margin-left: auto;
            margin-right: auto;
        }

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

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

.sct-tpl-service-hub .sct-btn:hover { transform: translateY(-2px); }

.sct-tpl-service-hub .sct-btn-white {
            background: #fff;
            color: var(--primary, #5B7FA5);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

.sct-tpl-service-hub .sct-btn-white:hover { box-shadow: 0 6px 26px rgba(0,0,0,0.2); }

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

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

.sct-tpl-service-hub .sct-btn-secondary {
            background: var(--secondary, #E8A87C);
            color: #fff;
            box-shadow: 0 4px 20px rgba(232,168,124,0.4);
        }

.sct-tpl-service-hub .sct-btn-secondary:hover {
            background: var(--secondary-dark, #D4925F);
            box-shadow: 0 6px 26px rgba(232,168,124,0.5);
        }

@media (max-width: 992px) {
            .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
            .sct-tpl-service-hub .sct-hero-info { max-width: 480px; margin: 0 auto; width: 100%; }
            .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
            .sct-tpl-service-hub .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
            .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: repeat(3, 1fr); }
            .sct-tpl-service-hub .sct-processus-grid::before { display: none; }
            .sct-tpl-service-hub .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
            .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 40px; }
            .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: repeat(2, 1fr); }
            .sct-tpl-service-hub .sct-maillage-cities-grid { grid-template-columns: repeat(3, 1fr); }
            .sct-tpl-service-hub .sct-other-services-grid { grid-template-columns: repeat(2, 1fr); }
        }

@media (max-width: 640px) {
            .sct-tpl-service-hub .sct-hero-btns { flex-direction: column; }
            .sct-tpl-service-hub .sct-hero-btns > * { width: 100%; justify-content: center; }
            .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
            .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .sct-tpl-service-hub .sct-stat-value { font-size: 1.9rem; }
            .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; }
            .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: 1fr; }
            .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; }
            .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; }
            .sct-tpl-service-hub .sct-maillage-cities-grid { grid-template-columns: repeat(2, 1fr); }
            .sct-tpl-service-hub .sct-other-services-grid { grid-template-columns: 1fr; }
            .sct-tpl-service-hub .sct-cta-btns { flex-direction: column; align-items: center; }
            .sct-tpl-service-hub .sct-cta-btns > * { width: 100%; max-width: 340px; justify-content: center; }
            .sct-tpl-service-hub .sct-cta-final h2 { font-size: 1.7rem; }
            .sct-tpl-service-hub .sct-section-title { font-size: 1.65rem; }
        }

.sct-tpl-service-city .sct-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/service_4_1775396514_69d266a22558a.webp');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

@media (max-width: 992px) {
            .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
            .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
        }

@media (max-width: 640px) {
            .sct-hero-btns { flex-direction: column; }
            .sct-hero-btns > * { width: 100%; justify-content: center; }
            .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
        }

.sct-tpl-zone .sct-breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            max-width: 100%;
            overflow-wrap: anywhere;
            list-style: none;
            padding: 0 0 24px;
            font-size: 0.83rem;
            color: rgba(255,255,255,0.72);
        }

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

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

.sct-tpl-zone .sct-breadcrumb .sct-sep { opacity: 0.45; font-size: 0.7rem; }

.sct-tpl-zone .sct-hero {
            position: relative;
            min-height: 92vh;
            display: flex;
            align-items: center;
            padding-top: 110px;
            padding-bottom: 70px;
            overflow: hidden;
        }

.sct-tpl-zone .sct-hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('/images/service_4_1775396514_69d266a22558a.webp');
            background-size: cover;
            background-position: center;
            z-index: -2;
        }

.sct-tpl-zone .sct-hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(45,55,72,0.86) 0%, rgba(91,127,165,0.72) 100%);
        }

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

.sct-tpl-zone .sct-hero-text { color: #fff; }

.sct-tpl-zone .sct-hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.14);
            backdrop-filter: blur(6px);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.84rem;
            font-weight: 500;
            color: #fff;
            margin-bottom: 18px;
        }

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

.sct-tpl-zone .sct-hero-text h1 {
            font-size: 2.75rem;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 18px;
            color: #fff;
        }

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

.sct-tpl-zone .sct-hero-subtitle {
            font-size: 1.1rem;
            line-height: 1.75;
            opacity: 0.9;
            margin-bottom: 26px;
            font-weight: 300;
        }

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

.sct-tpl-zone .sct-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.13);
            backdrop-filter: blur(6px);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
            color: #fff;
        }

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

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

.sct-tpl-zone .sct-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: var(--secondary);
            color: #fff;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: 0 4px 20px rgba(232,168,124,0.4);
            transition: background 0.3s ease, transform 0.2s ease;
        }

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

.sct-tpl-zone .sct-btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255,255,255,0.5);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: background 0.3s ease, border-color 0.3s ease;
        }

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

.sct-tpl-zone .sct-hero-card {
            background: rgba(255,255,255,0.97);
            border-radius: 18px;
            padding: 32px 28px;
            box-shadow: 0 8px 40px rgba(0,0,0,0.16);
        }

.sct-tpl-zone .sct-hero-card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

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

.sct-tpl-zone .sct-card-line {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid #EEF2F7;
            font-size: 0.91rem;
            color: var(--text-medium);
        }

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

.sct-tpl-zone .sct-card-line i {
            color: var(--primary);
            width: 18px;
            text-align: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

.sct-tpl-zone .sct-card-line strong { color: var(--text-dark); }

.sct-tpl-zone .sct-hero-card-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 14px;
            background: var(--secondary);
            color: #fff;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            margin-top: 22px;
            transition: background 0.3s ease, transform 0.2s ease;
        }

.sct-tpl-zone .sct-hero-card-cta:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
        }

.sct-tpl-zone .sct-stats-band {
            background: var(--white);
            padding: 48px 0;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        }

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

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

.sct-tpl-zone .sct-stat-item { padding: 16px 8px; }

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

.sct-tpl-zone .sct-stat-value {
            font-size: 2.1rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 6px;
        }

.sct-tpl-zone .sct-stat-label {
            font-size: 0.87rem;
            color: var(--text-light);
            font-weight: 500;
        }

.sct-tpl-zone .sct-section-tag {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--bg-blue-light);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 14px;
        }

.sct-tpl-zone .sct-section-title {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.25;
            margin-bottom: 14px;
        }

.sct-tpl-zone .sct-section-title span { color: var(--primary); }

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

.sct-tpl-zone .sct-section-header h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

.sct-tpl-zone .sct-section-header h2 span { color: var(--primary); }

.sct-tpl-zone .sct-section-header p {
            font-size: 1.02rem;
            color: var(--text-light);
            max-width: 580px;
            margin: 0 auto;
        }

.sct-tpl-zone .sct-section-line {
            width: 56px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
            margin: 14px auto 0;
        }

.sct-tpl-zone .sct-intro-section {
            padding: 82px 0;
            background: var(--bg-warm);
        }

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

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

.sct-tpl-zone .sct-intro-img-wrap {
            position: relative;
        }

.sct-tpl-zone .sct-intro-img-wrap img {
            width: 100%;
            border-radius: 18px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            display: block;
        }

.sct-tpl-zone .sct-intro-img-wrap::after {
            content: '';
            position: absolute;
            bottom: -16px;
            right: -16px;
            width: 110px;
            height: 110px;
            background: var(--secondary);
            opacity: 0.14;
            border-radius: 50%;
            z-index: -1;
        }

.sct-tpl-zone .sct-intro-body p {
            font-size: 1rem;
            color: var(--text-medium);
            line-height: 1.8;
            margin-bottom: 16px;
        }

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

.sct-tpl-zone .sct-services-section {
            padding: 82px 0;
            background: var(--bg-blue-light);
        }

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

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

.sct-tpl-zone .sct-service-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            display: flex;
            flex-direction: column;
        }

.sct-tpl-zone .sct-service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(0,0,0,0.1);
        }

.sct-tpl-zone .sct-service-card-img {
            width: 100%;
            height: 185px;
            overflow: hidden;
            flex-shrink: 0;
        }

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

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

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

.sct-tpl-zone .sct-service-card-body h3 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 9px;
        }

.sct-tpl-zone .sct-service-card-body p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 16px;
            flex: 1;
        }

.sct-tpl-zone .sct-service-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
            margin-top: auto;
        }

.sct-tpl-zone .sct-service-link:hover { text-decoration: underline; }

.sct-tpl-zone .sct-zones-section {
            padding: 82px 0;
            background: var(--white);
        }

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

.sct-tpl-zone .sct-zone-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-blue-light);
            padding: 10px 22px;
            border-radius: 50px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-dark);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

.sct-tpl-zone .sct-zone-tag:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }

.sct-tpl-zone .sct-zone-tag i { color: var(--primary); }

.sct-tpl-zone .sct-usecase-section {
            padding: 82px 0;
            background: var(--bg-warm);
        }

.sct-tpl-zone .sct-usecase-inner {
            max-width: 860px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 20px;
            padding: 44px 48px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.07);
            position: relative;
            overflow: hidden;
        }

.sct-tpl-zone .sct-usecase-inner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
        }

.sct-tpl-zone .sct-usecase-body { padding-left: 18px; }

.sct-tpl-zone .sct-usecase-body p {
            font-size: 1rem;
            color: var(--text-medium);
            line-height: 1.8;
            margin-bottom: 14px;
        }

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

.sct-tpl-zone .sct-engagements-section {
            padding: 82px 0;
            background: var(--bg-blue-light);
        }

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

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

.sct-tpl-zone .sct-engagement-card {
            text-align: center;
            padding: 38px 26px;
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

.sct-tpl-zone .sct-engagement-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }

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

.sct-tpl-zone .sct-engagement-card h3 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

.sct-tpl-zone .sct-engagement-card p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.65;
        }

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

.sct-tpl-zone .sct-local-spec-body {
            max-width: 860px;
            margin: 0 auto;
        }

.sct-tpl-zone .sct-local-spec-body p {
            font-size: 0.97rem;
            color: var(--text-medium);
            line-height: 1.8;
            margin-bottom: 14px;
        }

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

.sct-tpl-zone .sct-faq-section {
            padding: 82px 0;
            background: var(--bg-warm);
        }

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

.sct-tpl-zone .sct-faq-item {
            background: var(--white);
            border-radius: 12px;
            margin-bottom: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            overflow: hidden;
        }

.sct-tpl-zone .sct-faq-question {
            width: 100%;
            padding: 20px 24px;
            background: none;
            border: none;
            text-align: left;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            transition: color 0.3s ease;
        }

.sct-tpl-zone .sct-faq-question:hover { color: var(--primary); }

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

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

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

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

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

.sct-tpl-zone .sct-maillage-section {
            padding: 82px 0;
            background: var(--bg-blue-light);
        }

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

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

.sct-tpl-zone .sct-maillage-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 18px;
            background: var(--white);
            border-radius: 12px;
            text-decoration: none;
            color: var(--text-dark);
            font-size: 0.9rem;
            font-weight: 500;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
            transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
        }

.sct-tpl-zone .sct-maillage-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.09);
            color: var(--primary);
        }

.sct-tpl-zone .sct-maillage-link i { color: var(--secondary); flex-shrink: 0; }

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

.sct-tpl-zone .sct-cta-final h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.2;
        }

.sct-tpl-zone .sct-cta-final h2 span { color: var(--secondary); }

.sct-tpl-zone .sct-cta-final p {
            font-size: 1.1rem;
            opacity: 0.88;
            max-width: 560px;
            margin: 0 auto 38px;
            line-height: 1.7;
        }

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

.sct-tpl-zone .sct-cta-btn-phone {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 38px;
            background: var(--secondary);
            color: #fff;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            box-shadow: 0 4px 20px rgba(232,168,124,0.4);
            transition: background 0.3s ease, transform 0.2s ease;
        }

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

.sct-tpl-zone .sct-cta-btn-home {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 38px;
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255,255,255,0.5);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: background 0.3s ease, border-color 0.3s ease;
        }

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

@media (max-width: 992px) {
            .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
            .sct-tpl-zone .sct-intro-grid { grid-template-columns: 1fr; gap: 36px; }
            .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
            .sct-tpl-zone .sct-engagements-grid { grid-template-columns: repeat(2, 1fr); }
            .sct-tpl-zone .sct-maillage-grid { grid-template-columns: repeat(3, 1fr); }
        }

@media (max-width: 640px) {
            .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
            .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
            .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; }
            .sct-tpl-zone .sct-maillage-grid { grid-template-columns: repeat(2, 1fr); }
            .sct-tpl-zone .sct-usecase-inner { padding: 28px 22px; }
            .sct-tpl-zone .sct-section-title { font-size: 1.55rem; }
            .sct-tpl-zone .sct-cta-final h2 { font-size: 1.7rem; }
            .sct-tpl-zone .sct-cta-btns { flex-direction: column; align-items: center; }
            .sct-tpl-zone .sct-cta-btns > * { width: 100%; justify-content: center; }
            .sct-tpl-zone .sct-hero-btns { flex-direction: column; }
            .sct-tpl-zone .sct-hero-btns > * { width: 100%; justify-content: center; }
        }

.sct-tpl-zone .sct-hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('/images/service_1_1775396444_69d2665c5def2.webp');
            background-size: cover;
            background-position: center;
            z-index: -2;
        }

.sct-tpl-service-hub .sct-hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('/images/service_2_1775396466_69d26672abc65.webp');
            background-size: cover;
            background-position: center;
            z-index: -2;
        }

.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.85) 0%, rgba(91, 127, 165, 0.75) 100%), url('https://webflash.pro/storage/generated/268/hero_1775396421_69d26645254bc.webp');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 320px;
    height: 320px;
    background: var(--secondary);
    opacity: 0.15;
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: var(--primary-light);
    opacity: 0.18;
    border-radius: 50%;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
}

.page-hero .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--white);
}

.page-hero .breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.page-hero .breadcrumb a:hover {
    opacity: 1;
}

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

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

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

.page-hero p {
    font-size: 1.15rem;
    opacity: 0.92;
    font-weight: 300;
    max-width: 620px;
    margin: 0 auto;
}

.page-hero-line {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
    margin: 20px auto 0;
}

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

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

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

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

.sitemap-block-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(91,127,165,0.12);
}

.sitemap-block-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(91,127,165,0.3);
}

.sitemap-block-title {
    flex: 1;
}

.sitemap-block-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.sitemap-block-title p {
    font-size: 0.92rem;
    color: var(--text-light);
}

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--text-dark);
    padding: 11px 20px;
    border-radius: var(--radius-full);
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

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

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

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

.chip-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 14px 26px;
    font-weight: 600;
    font-size: 0.98rem;
    box-shadow: 0 4px 16px rgba(91,127,165,0.3);
}

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

.chip-primary:hover {
    color: var(--white);
    box-shadow: 0 6px 22px rgba(91,127,165,0.45);
}

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

.chip-zone {
    background: var(--white);
    border-left: 3px solid var(--secondary);
    border-radius: var(--radius-sm);
    padding: 12px 20px 12px 16px;
}

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

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

.service-group {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-group:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.service-group-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(91,127,165,0.18);
}

.service-group-head .ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--bg-blue-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.service-group-head h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

.service-group .chips {
    gap: 8px;
}

.service-group .chip {
    background: var(--bg-blue-light);
    padding: 8px 14px;
    font-size: 0.85rem;
    box-shadow: none;
}

.service-group .chip:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 900px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        gap: 6px;
    }

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

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .page-hero {
        padding: 140px 0 60px;
    }

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

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

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

    .sitemap-block-header {
        gap: 12px;
    }

    .sitemap-block-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.7rem;
    }

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

    .chip-primary {
        padding: 12px 22px;
        font-size: 0.92rem;
    }
}