.menu-check { display: none; }

.menu-toggle { cursor: pointer; }

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

#menuCheck:checked ~ .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }

#menuCheck:checked ~ .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }

#menuCheck:checked ~ .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

*, *::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: #2D5A7B;
            --primary-dark: #1E3F56;
            --primary-light: #3A7BA8;
            --secondary: #E8913A;
            --secondary-dark: #CC7A2A;
            --secondary-light: #F0A75E;
            --dark: #1A1A2E;
            --gray-900: #2D2D3F;
            --gray-700: #4A4A5C;
            --gray-500: #7A7A8C;
            --gray-300: #B8B8C8;
            --gray-100: #F4F6F8;
            --white: #FFFFFF;
        }

html {
            scroll-behavior: smooth;
        }

body {
            font-family: 'Open Sans', sans-serif;
            color: var(--gray-700);
            line-height: 1.7;
            background-color: var(--white);
            overflow-x: hidden;
        }

h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            line-height: 1.3;
        }

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

.header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }

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

.logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            text-decoration: none;
        }

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

.logo-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
        }

.nav {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: var(--white);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }

.nav.active {
            display: flex;
        }

.nav a {
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            color: var(--gray-700);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease, background 0.3s ease;
        }

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

.nav .btn-cta-nav {
            margin: 0.5rem 1.5rem;
            padding: 0.65rem 1.25rem;
            background: var(--secondary);
            color: var(--white);
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            transition: background 0.3s ease, transform 0.2s ease;
        }

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

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

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

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

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

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

.hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            padding-bottom: 3rem;
            background: linear-gradient(135deg, rgba(45,90,123,0.92) 0%, rgba(30,63,86,0.88) 100%),
                        url('https://webflash.pro/images/hero_1775394385_69d25e513a0e7.webp') center/cover no-repeat;
            color: var(--white);
            overflow: hidden;
        }

.hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 120px;
            background: linear-gradient(transparent, var(--white));
            z-index: 1;
        }

.hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 1rem;
            padding-right: 1rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
            width: 100%;
        }

.hero-text {
            text-align: center;
        }

.hero-badge {
            display: inline-block;
            background: rgba(232,145,58,0.25);
            border: 1px solid rgba(232,145,58,0.5);
            color: var(--secondary-light);
            padding: 0.4rem 1.1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
            letter-spacing: 0.5px;
        }

.hero h1 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

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

.hero-subtitle {
            font-size: 1.05rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

.hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

.btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.9rem 1.8rem;
            background: var(--secondary);
            color: var(--white);
            text-decoration: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
            border: none;
            cursor: pointer;
        }

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

.btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.9rem 1.8rem;
            background: transparent;
            color: var(--white);
            text-decoration: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid rgba(255,255,255,0.4);
            transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
            cursor: pointer;
        }

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

.devis-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2rem 1.5rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            color: var(--gray-700);
        }

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

.devis-card-sub {
            text-align: center;
            font-size: 0.9rem;
            color: var(--gray-500);
            margin-bottom: 1.5rem;
        }

.devis-card .form-group {
            margin-bottom: 1rem;
        }

.devis-card label {
            display: block;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--gray-700);
            margin-bottom: 0.35rem;
        }

.devis-card input,
        .devis-card textarea {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #E2E8F0;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: 'Open Sans', sans-serif;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            background: var(--gray-100);
        }

.devis-card input:focus,
        .devis-card textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(45,90,123,0.15);
            background: var(--white);
        }

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

.devis-card .btn-submit {
            width: 100%;
            padding: 0.85rem;
            background: var(--secondary);
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
        }

.devis-card .btn-submit:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(232,145,58,0.4);
        }

.form-status p {
            margin-top: 0.75rem;
            font-size: 0.9rem;
            text-align: center;
        }

.section {
            padding-top: 4rem;
            padding-bottom: 4rem;
        }

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

.section-title {
            font-size: 1.8rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

.section-title span {
            color: var(--secondary);
        }

.section-subtitle {
            text-align: center;
            color: var(--gray-500);
            font-size: 1rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

.stats-banner {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding-top: 3rem;
            padding-bottom: 3rem;
            color: var(--white);
        }

.stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            text-align: center;
        }

.stat-item {
            padding: 1rem;
        }

.stat-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--secondary);
            display: block;
        }

.stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-top: 0.3rem;
        }

.zone-bretagne {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            padding-top: 1.2rem;
            padding-bottom: 1.2rem;
            color: var(--white);
            text-align: center;
        }

.zone-bretagne i {
            margin-right: 0.5rem;
            color: var(--secondary);
        }

.zone-bretagne span {
            font-weight: 600;
            font-size: 0.95rem;
        }

.services-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }

.service-card {
            background: var(--white);
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
            max-width: 370px;
            border-bottom: 4px solid transparent;
        }

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

.service-card.featured {
            width: 100%;
            max-width: 100%;
            border: 3px solid var(--secondary);
            border-bottom: 5px solid var(--secondary);
            box-shadow: 0 8px 35px rgba(232,145,58,0.18);
            position: relative;
        }

.service-card.featured .service-card-img {
            height: 280px;
        }

.service-card.featured .service-card-body {
            padding: 2rem;
        }

.service-card.featured h3 {
            font-size: 1.35rem;
            color: var(--secondary-dark);
        }

.service-card.featured p {
            font-size: 1rem;
        }

.featured-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--secondary);
            color: var(--white);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            z-index: 2;
            box-shadow: 0 4px 12px rgba(232,145,58,0.4);
        }

.featured-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1rem;
            padding: 0.7rem 1.5rem;
            background: var(--secondary);
            color: var(--white);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: background 0.3s ease, transform 0.2s ease;
        }

.featured-cta:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
        }

@media (min-width: 768px) {
            .service-card.featured {
                display: flex;
                flex-direction: row;
            }

            .service-card.featured .service-card-img {
                width: 45%;
                height: auto;
                min-height: 300px;
            }

            .service-card.featured .service-card-body {
                width: 55%;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
        }

.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.05);
        }

.service-card-body {
            padding: 1.5rem;
        }

.service-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.6rem;
        }

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

.engagements-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

.engagement-item {
            display: flex;
            gap: 1.2rem;
            align-items: flex-start;
            padding: 1.5rem;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

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

.engagement-icon {
            width: 55px;
            height: 55px;
            min-width: 55px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.3rem;
        }

.engagement-item h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }

.engagement-item p {
            font-size: 0.88rem;
            color: var(--gray-500);
        }

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

.about-img {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

.about-img img {
            width: 100%;
            height: auto;
            display: block;
        }

.about-text h2 {
            text-align: left;
            margin-bottom: 1rem;
        }

.about-text p {
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

.about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.8rem;
            margin-top: 1.5rem;
        }

.about-highlight {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--primary);
        }

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

.zones-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.2rem;
        }

.zone-card {
            background: var(--white);
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            border-top: 4px solid var(--primary);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

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

.zone-card i {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 0.6rem;
        }

.zone-card h3 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.4rem;
        }

.zone-card p {
            font-size: 0.8rem;
            color: var(--gray-500);
            line-height: 1.5;
        }

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

.faq-item {
            background: var(--white);
            border-radius: 12px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.04);
            overflow: hidden;
            border: 1px solid #E2E8F0;
        }

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

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

.faq-question i {
            color: var(--secondary);
            transition: transform 0.3s ease;
            min-width: 20px;
            text-align: center;
        }

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

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

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

.faq-answer-inner {
            padding: 0 1.5rem 1.2rem;
            font-size: 0.92rem;
            color: var(--gray-500);
            line-height: 1.7;
        }

.horaires-card {
            max-width: 500px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            overflow: hidden;
        }

.horaires-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 1.5rem;
            text-align: center;
            color: var(--white);
        }

.horaires-header i {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }

.horaires-header p {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
        }

.horaires-body {
            padding: 1.5rem;
        }

.horaire-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.7rem 0.5rem;
            border-bottom: 1px solid #F0F0F5;
            font-size: 0.92rem;
        }

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

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

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

.horaire-time.open {
            background: rgba(5,150,105,0.1);
            color: #059669;
            padding: 0.2rem 0.7rem;
            border-radius: 20px;
            font-size: 0.85rem;
        }

.contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

.contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-bottom: 1.5rem;
        }

.contact-info-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

.contact-info-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.1rem;
        }

.contact-info-item span {
            font-weight: 600;
            color: var(--dark);
            display: block;
            font-size: 0.85rem;
            margin-bottom: 0.15rem;
        }

.contact-info-item p {
            font-size: 0.95rem;
            color: var(--gray-500);
        }

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

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

.contact-form {
            background: var(--white);
            border-radius: 16px;
            padding: 2rem 1.5rem;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
        }

.contact-form .form-group {
            margin-bottom: 1rem;
        }

.contact-form label {
            display: block;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--gray-700);
            margin-bottom: 0.35rem;
        }

.contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #E2E8F0;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: 'Open Sans', sans-serif;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            background: var(--gray-100);
        }

.contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(45,90,123,0.15);
            background: var(--white);
        }

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

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

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

.map-container {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            margin-top: 2rem;
        }

.map-container iframe {
            display: block;
        }

.footer {
            background: var(--dark);
            color: rgba(255,255,255,0.7);
            padding-top: 3rem;
            padding-bottom: 1.5rem;
        }

.footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

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

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

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

.footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

.footer-links a {
            font-size: 0.9rem;
        }

.footer-links i {
            margin-right: 0.5rem;
            color: var(--secondary);
            width: 16px;
        }

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

.footer-contact-item i {
            color: var(--secondary);
            width: 16px;
        }

.footer-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            margin-bottom: 1rem;
        }

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

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

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

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

.cta-mobile {
            display: flex;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 999;
            background: var(--secondary);
            box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
        }

.cta-mobile a {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.9rem;
            color: var(--white);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            font-family: 'Montserrat', sans-serif;
            transition: background 0.3s ease;
        }

.cta-mobile a:first-child {
            background: var(--primary);
        }

.cta-mobile a:first-child:hover {
            background: var(--primary-dark);
        }

.cta-mobile a:last-child:hover {
            background: var(--secondary-dark);
        }

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

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

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

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

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

.modal-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

.modal-content p {
            margin-bottom: 0.6rem;
            font-size: 0.92rem;
            color: var(--gray-700);
        }

.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 (min-width: 640px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }

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

            .zones-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

@media (min-width: 768px) {
            .container {
                padding-left: 2rem;
                padding-right: 2rem;
            }

            .header-inner {
                padding-left: 2rem;
                padding-right: 2rem;
            }

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

            .hero-content {
                padding-left: 2rem;
                padding-right: 2rem;
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }

            .hero-text {
                text-align: left;
            }

            .hero-buttons {
                justify-content: flex-start;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .service-card {
                width: calc(50% - 0.75rem);
            }

            .about-grid {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }

            .about-text h2 {
                text-align: left;
            }

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

            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .cta-mobile {
                display: none;
            }
        }

@media (min-width: 1024px) {
            .nav {
                display: flex;
                flex-direction: row;
                position: static;
                width: auto;
                box-shadow: none;
                padding: 0;
                background: transparent;
                align-items: center;
                gap: 0.3rem;
            }

            .nav a {
                padding: 0.5rem 0.85rem;
                font-size: 0.9rem;
                border-radius: 6px;
            }

            .nav a:hover {
                background: var(--gray-100);
            }

            .nav .btn-cta-nav {
                margin: 0;
                margin-left: 0.5rem;
                padding: 0.55rem 1.1rem;
                font-size: 0.9rem;
            }

            .hamburger {
                display: none;
            }

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

            .service-card {
                width: calc(33.333% - 1rem);
            }
        }

@media (max-width: 767px) {
            body {
                padding-bottom: 60px;
            }
        }

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

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

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

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

.sct-tpl-service-hub { color: #4A4A5C; }

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, rgba(45,90,123,0.94) 0%, rgba(30,63,86,0.90) 100%),
                url('/images/service_1_1775394409_69d25e697ff9d.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
    z-index: 1;
}

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

.sct-tpl-service-hub .sct-hero-text {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    min-width: 0;
}

.sct-tpl-service-hub .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
}

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

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

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

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

.sct-tpl-service-hub .sct-hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(232,145,58,0.25);
    border: 1px solid rgba(232,145,58,0.5);
    color: #F0A75E;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.sct-tpl-service-hub .sct-hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.1rem;
}

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

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.65;
    opacity: 0.92;
    margin-bottom: 1.8rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.sct-tpl-service-hub .sct-hero-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.sct-tpl-service-hub .sct-btn-primary,
.sct-tpl-service-hub .sct-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.sct-tpl-service-hub .sct-btn-primary {
    background: #E8913A;
    color: #fff;
}

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: #CC7A2A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,145,58,0.4);
}

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

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

.sct-tpl-service-hub .sct-hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.3rem;
}

.sct-tpl-service-hub .sct-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    opacity: 0.9;
}

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

.sct-tpl-service-hub .sct-stats-band {
    background: linear-gradient(135deg, #2D5A7B 0%, #1E3F56 100%);
    color: #fff;
    padding: 3rem 0;
}

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

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

.sct-tpl-service-hub .sct-stat-item { padding: 1rem; }

.sct-tpl-service-hub .sct-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: #E8913A;
    display: block;
    line-height: 1.1;
}

.sct-tpl-service-hub .sct-stat-label {
    font-size: 0.88rem;
    opacity: 0.92;
    margin-top: 0.4rem;
}

.sct-tpl-service-hub .sct-section { padding: 4.5rem 0; }

.sct-tpl-service-hub .sct-section-bg { background: #F4F6F8; }

.sct-tpl-service-hub .sct-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.95rem;
    font-weight: 800;
    color: #1A1A2E;
    text-align: center;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.sct-tpl-service-hub .sct-section-title span { color: #E8913A; }

.sct-tpl-service-hub .sct-section-subtitle {
    text-align: center;
    color: #7A7A8C;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

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

.sct-tpl-service-hub .sct-intro-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4A4A5C;
    margin-bottom: 1.2rem;
}

.sct-tpl-service-hub .sct-intro-content strong { color: #2D5A7B; font-weight: 700; }

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

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

.sct-tpl-service-hub .sct-service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

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

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

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

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

.sct-tpl-service-hub .sct-service-card-body { padding: 1.5rem; }

.sct-tpl-service-hub .sct-service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2D5A7B;
    margin-bottom: 0.6rem;
}

.sct-tpl-service-hub .sct-service-card p {
    font-size: 0.92rem;
    color: #7A7A8C;
    line-height: 1.65;
}

.sct-tpl-service-hub .sct-processus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    counter-reset: step;
}

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

.sct-tpl-service-hub .sct-step-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.8rem 1.2rem 1.5rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    position: relative;
    counter-increment: step;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.sct-tpl-service-hub .sct-step-card::before {
    content: counter(step);
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px; height: 32px;
    background: #E8913A;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}

.sct-tpl-service-hub .sct-step-icon {
    width: 56px; height: 56px;
    margin: 0.5rem auto 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #2D5A7B, #3A7BA8);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}

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

.sct-tpl-service-hub .sct-step-card p {
    font-size: 0.83rem;
    color: #7A7A8C;
    line-height: 1.55;
}

.sct-tpl-service-hub .sct-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.sct-tpl-service-hub .sct-why-card {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.sct-tpl-service-hub .sct-why-icon {
    width: 56px; height: 56px;
    min-width: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2D5A7B, #3A7BA8);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}

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

.sct-tpl-service-hub .sct-why-card p {
    font-size: 0.9rem;
    color: #7A7A8C;
    line-height: 1.65;
}

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

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

.sct-tpl-service-hub .sct-usecase-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.sct-tpl-service-hub .sct-usecase-img img {
    width: 100%;
    height: auto;
    display: block;
}

.sct-tpl-service-hub .sct-usecase-text h2 {
    text-align: left;
    margin-bottom: 1.2rem;
}

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

.sct-tpl-service-hub .sct-usecase-text strong { color: #2D5A7B; }

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

.sct-tpl-service-hub .sct-usecase-text ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.6rem;
    font-size: 0.93rem;
    line-height: 1.6;
}

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

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

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

.sct-tpl-service-hub .sct-engagement-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #2D5A7B;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-engagement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.09);
    border-top-color: #E8913A;
}

.sct-tpl-service-hub .sct-engagement-icon {
    width: 70px; height: 70px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2D5A7B, #3A7BA8);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.6rem;
}

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

.sct-tpl-service-hub .sct-engagement-card p {
    font-size: 0.9rem;
    color: #7A7A8C;
    line-height: 1.65;
}

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

.sct-tpl-service-hub .sct-faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    overflow: hidden;
    border: 1px solid #E2E8F0;
}

.sct-tpl-service-hub .sct-faq-question {
    padding: 1.2rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A2E;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    list-style: none;
    transition: background 0.3s ease;
}

.sct-tpl-service-hub .sct-faq-question::-webkit-details-marker { display: none; }

.sct-tpl-service-hub .sct-faq-question:hover { background: #F4F6F8; }

.sct-tpl-service-hub .sct-faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #E8913A;
    transition: transform 0.3s ease;
    font-size: 0.85rem;
    min-width: 16px;
    text-align: center;
}

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

.sct-tpl-service-hub .sct-faq-answer {
    padding: 0 1.5rem 1.3rem;
    font-size: 0.93rem;
    color: #7A7A8C;
    line-height: 1.75;
}

.sct-tpl-service-hub .sct-maillage-section { padding: 4rem 0; }

.sct-tpl-service-hub .sct-maillage-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #1A1A2E;
    text-align: center;
    margin-bottom: 0.6rem;
}

.sct-tpl-service-hub .sct-maillage-section h2 span { color: #E8913A; }

.sct-tpl-service-hub .sct-maillage-intro {
    text-align: center;
    color: #7A7A8C;
    font-size: 0.98rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

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

.sct-tpl-service-hub .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #2D5A7B;
    text-decoration: none;
    transition: all 0.2s ease;
}

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

.sct-tpl-service-hub .sct-maillage-list a i { color: #E8913A; font-size: 0.75rem; }

.sct-tpl-service-hub .sct-maillage-list a:hover i { color: #F0A75E; }

.sct-tpl-service-hub .sct-maillage-cities {
    background: linear-gradient(135deg, #F4F6F8 0%, #ffffff 100%);
}

.sct-tpl-service-hub .sct-maillage-cities .sct-maillage-list a {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.sct-tpl-service-hub .sct-cta-final {
    background: linear-gradient(135deg, #2D5A7B 0%, #1E3F56 100%);
    padding: 4rem 0;
    color: #fff;
    text-align: center;
}

.sct-tpl-service-hub .sct-cta-final h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.95rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
}

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

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

.sct-tpl-service-hub .sct-cta-final-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero { padding: 130px 0 70px; }
    .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-engagements-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 2rem; }
    .sct-tpl-service-hub .sct-section-title { font-size: 1.7rem; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 2rem; }
    .sct-tpl-service-hub .sct-maillage-section h2 { font-size: 1.55rem; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.7rem; line-height: 1.25; }
    .sct-tpl-service-hub .sct-hero-subtitle { font-size: 0.97rem; }
    .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-trust { flex-direction: column; gap: 0.7rem; align-items: center; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .sct-tpl-service-hub .sct-stat-value { font-size: 1.8rem; }
    .sct-tpl-service-hub .sct-section { padding: 3rem 0; }
    .sct-tpl-service-hub .sct-section-title { font-size: 1.5rem; }
    .sct-tpl-service-hub .sct-section-subtitle { font-size: 0.93rem; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-cta-final { padding: 3rem 0; }
    .sct-tpl-service-hub .sct-cta-final h2 { font-size: 1.5rem; }
    .sct-tpl-service-hub .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-breadcrumb { font-size: 0.78rem; }
    .sct-tpl-service-hub .sct-faq-question { font-size: 0.92rem; padding: 1rem 1.2rem; }
    .sct-tpl-service-hub .sct-faq-answer { padding: 0 1.2rem 1.1rem; font-size: 0.9rem; }
    .sct-tpl-service-hub .sct-maillage-section h2 { font-size: 1.35rem; }
}

.sct-tpl-zone { color: #4A4A5C; }

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, rgba(45,90,123,0.94) 0%, rgba(30,63,86,0.90) 100%),
                url('/images/service_1_1775394409_69d25e697ff9d.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
    z-index: 1;
}

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

.sct-tpl-zone .sct-hero-text {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    min-width: 0;
}

.sct-tpl-zone .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
}

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

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

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

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

.sct-tpl-zone .sct-hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(232,145,58,0.25);
    border: 1px solid rgba(232,145,58,0.5);
    color: #F0A75E;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.sct-tpl-zone .sct-hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.1rem;
}

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

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.65;
    opacity: 0.92;
    margin-bottom: 1.8rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.sct-tpl-zone .sct-hero-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.sct-tpl-zone .sct-btn-primary,
.sct-tpl-zone .sct-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

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

.sct-tpl-zone .sct-btn-primary:hover {
    background: #CC7A2A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,145,58,0.4);
}

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

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

.sct-tpl-zone .sct-hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.3rem;
}

.sct-tpl-zone .sct-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    opacity: 0.9;
}

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

.sct-tpl-zone .sct-stats-band {
    background: linear-gradient(135deg, #2D5A7B 0%, #1E3F56 100%);
    color: #fff;
    padding: 3rem 0;
}

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

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

.sct-tpl-zone .sct-stat-item { padding: 1rem; }

.sct-tpl-zone .sct-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: #E8913A;
    display: block;
    line-height: 1.1;
}

.sct-tpl-zone .sct-stat-label {
    font-size: 0.88rem;
    opacity: 0.92;
    margin-top: 0.4rem;
}

.sct-tpl-zone .sct-section { padding: 4.5rem 0; }

.sct-tpl-zone .sct-section-bg { background: #F4F6F8; }

.sct-tpl-zone .sct-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.95rem;
    font-weight: 800;
    color: #1A1A2E;
    text-align: center;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.sct-tpl-zone .sct-section-title span { color: #E8913A; }

.sct-tpl-zone .sct-section-subtitle {
    text-align: center;
    color: #7A7A8C;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

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

.sct-tpl-zone .sct-intro-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4A4A5C;
    margin-bottom: 1.2rem;
}

.sct-tpl-zone .sct-intro-content strong { color: #2D5A7B; font-weight: 700; }

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

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

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

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

.sct-tpl-zone .sct-usecase-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.sct-tpl-zone .sct-usecase-img img {
    width: 100%;
    height: auto;
    display: block;
}

.sct-tpl-zone .sct-usecase-text h2 {
    text-align: left;
    margin-bottom: 1.2rem;
}

.sct-tpl-zone .sct-usecase-text p {
    font-size: 0.97rem;
    line-height: 1.75;
    color: #4A4A5C;
    margin-bottom: 1rem;
}

.sct-tpl-zone .sct-usecase-text strong { color: #2D5A7B; }

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

.sct-tpl-zone .sct-usecase-text ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.6rem;
    font-size: 0.93rem;
    line-height: 1.6;
}

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

.sct-tpl-zone .sct-zones-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 2.2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    max-width: 980px;
    margin: 0 auto;
}

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

.sct-tpl-zone .sct-zones-list span,
.sct-tpl-zone .sct-zones-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    background: #F4F6F8;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #2D5A7B;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sct-tpl-zone .sct-zones-list a:hover {
    background: #2D5A7B;
    color: #fff;
}

.sct-tpl-zone .sct-zones-list i { color: #E8913A; font-size: 0.75rem; }

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

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

.sct-tpl-zone .sct-engagement-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #2D5A7B;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-engagement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.09);
    border-top-color: #E8913A;
}

.sct-tpl-zone .sct-engagement-icon {
    width: 70px; height: 70px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2D5A7B, #3A7BA8);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.6rem;
}

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

.sct-tpl-zone .sct-engagement-card p {
    font-size: 0.9rem;
    color: #7A7A8C;
    line-height: 1.65;
}

.sct-tpl-zone .sct-local-spec-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2D5A7B 0%, #1E3F56 100%);
    border-radius: 16px;
    padding: 2.5rem;
    color: #fff;
    box-shadow: 0 12px 40px rgba(45,90,123,0.25);
}

.sct-tpl-zone .sct-local-spec-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #F0A75E;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

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

.sct-tpl-zone .sct-local-spec-card p {
    font-size: 0.97rem;
    line-height: 1.75;
    opacity: 0.95;
    margin-bottom: 0.8rem;
}

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

.sct-tpl-zone .sct-faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    overflow: hidden;
    border: 1px solid #E2E8F0;
}

.sct-tpl-zone .sct-faq-question {
    padding: 1.2rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A2E;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    list-style: none;
    transition: background 0.3s ease;
}

.sct-tpl-zone .sct-faq-question::-webkit-details-marker { display: none; }

.sct-tpl-zone .sct-faq-question:hover { background: #F4F6F8; }

.sct-tpl-zone .sct-faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #E8913A;
    transition: transform 0.3s ease;
    font-size: 0.85rem;
    min-width: 16px;
    text-align: center;
}

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

.sct-tpl-zone .sct-faq-answer {
    padding: 0 1.5rem 1.3rem;
    font-size: 0.93rem;
    color: #7A7A8C;
    line-height: 1.75;
}

.sct-tpl-zone .sct-maillage-section { padding: 3.5rem 0; }

.sct-tpl-zone .sct-maillage-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1A1A2E;
    text-align: center;
    margin-bottom: 0.6rem;
}

.sct-tpl-zone .sct-maillage-section h2 span { color: #E8913A; }

.sct-tpl-zone .sct-maillage-intro {
    text-align: center;
    color: #7A7A8C;
    font-size: 0.97rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

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

.sct-tpl-zone .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #2D5A7B;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sct-tpl-zone .sct-maillage-list a:hover {
    background: #2D5A7B;
    color: #fff;
    border-color: #2D5A7B;
    transform: translateY(-2px);
}

.sct-tpl-zone .sct-maillage-list a i { color: #E8913A; font-size: 0.75rem; }

.sct-tpl-zone .sct-maillage-list a:hover i { color: #F0A75E; }

.sct-tpl-zone .sct-cta-final {
    background: linear-gradient(135deg, #2D5A7B 0%, #1E3F56 100%);
    padding: 4rem 0;
    color: #fff;
    text-align: center;
}

.sct-tpl-zone .sct-cta-final h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.95rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
}

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

.sct-tpl-zone .sct-cta-final p {
    font-size: 1.05rem;
    opacity: 0.92;
    margin-bottom: 1.8rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

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

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero { padding: 130px 0 70px; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .sct-tpl-zone .sct-usecase-grid { grid-template-columns: 1fr; gap: 2rem; }
    .sct-tpl-zone .sct-section-title { font-size: 1.7rem; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 2rem; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 1.7rem; line-height: 1.25; }
    .sct-tpl-zone .sct-hero-subtitle { font-size: 0.97rem; }
    .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-trust { flex-direction: column; gap: 0.7rem; align-items: center; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .sct-tpl-zone .sct-stat-value { font-size: 1.8rem; }
    .sct-tpl-zone .sct-section { padding: 3rem 0; }
    .sct-tpl-zone .sct-section-title { font-size: 1.5rem; }
    .sct-tpl-zone .sct-section-subtitle { font-size: 0.93rem; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-zones-wrapper { padding: 1.5rem; }
    .sct-tpl-zone .sct-local-spec-card { padding: 1.7rem; }
    .sct-tpl-zone .sct-local-spec-card h3 { font-size: 1.15rem; }
    .sct-tpl-zone .sct-cta-final { padding: 3rem 0; }
    .sct-tpl-zone .sct-cta-final h2 { font-size: 1.5rem; }
    .sct-tpl-zone .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-breadcrumb { font-size: 0.78rem; }
    .sct-tpl-zone .sct-faq-question { font-size: 0.92rem; padding: 1rem 1.2rem; }
    .sct-tpl-zone .sct-faq-answer { padding: 0 1.2rem 1.1rem; font-size: 0.9rem; }
    .sct-tpl-zone .sct-maillage-section h2 { font-size: 1.3rem; }
}

.sct-tpl-service-city { color: var(--gray-700, #4A4A5C); }

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, rgba(45,90,123,0.94) 0%, rgba(30,63,86,0.90) 100%),
                url('/images/service_1_1775394409_69d25e697ff9d.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(232,145,58,0.25);
    border: 1px solid rgba(232,145,58,0.5);
    color: #F0A75E;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.sct-tpl-service-city .sct-hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.1rem;
}

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

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.65;
    opacity: 0.92;
    margin-bottom: 1.7rem;
}

.sct-tpl-service-city .sct-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.sct-tpl-service-city .sct-btn-primary,
.sct-tpl-service-city .sct-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

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

.sct-tpl-service-city .sct-btn-primary:hover {
    background: #CC7A2A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,145,58,0.4);
}

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

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

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

.sct-tpl-service-city .sct-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    opacity: 0.9;
}

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

.sct-tpl-service-city .sct-hero-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    color: #4A4A5C;
}

.sct-tpl-service-city .sct-hero-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2D5A7B;
    margin-bottom: 1.3rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #F4F6F8;
}

.sct-tpl-service-city .sct-hero-card-row {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid #F4F6F8;
}

.sct-tpl-service-city .sct-hero-card-row:last-of-type { border-bottom: none; }

.sct-tpl-service-city .sct-hero-card-icon {
    width: 38px; height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2D5A7B, #3A7BA8);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.95rem;
}

.sct-tpl-service-city .sct-hero-card-row strong {
    display: block;
    font-size: 0.85rem;
    color: #1A1A2E;
    margin-bottom: 0.15rem;
}

.sct-tpl-service-city .sct-hero-card-row span {
    font-size: 0.85rem;
    color: #7A7A8C;
}

.sct-tpl-service-city .sct-hero-card-cta {
    display: block;
    width: 100%;
    margin-top: 1.2rem;
    padding: 0.85rem;
    background: #E8913A;
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-hero-card-cta:hover {
    background: #CC7A2A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,145,58,0.4);
}

.sct-tpl-service-city .sct-stats-band {
    background: linear-gradient(135deg, #2D5A7B 0%, #1E3F56 100%);
    color: #fff;
    padding: 3rem 0;
}

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

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

.sct-tpl-service-city .sct-stat-item { padding: 1rem; }

.sct-tpl-service-city .sct-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: #E8913A;
    display: block;
    line-height: 1.1;
}

.sct-tpl-service-city .sct-stat-label {
    font-size: 0.88rem;
    opacity: 0.92;
    margin-top: 0.4rem;
}

.sct-tpl-service-city .sct-section { padding: 4.5rem 0; }

.sct-tpl-service-city .sct-section-bg { background: #F4F6F8; }

.sct-tpl-service-city .sct-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: #1A1A2E;
    text-align: center;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.sct-tpl-service-city .sct-section-title span { color: #E8913A; }

.sct-tpl-service-city .sct-section-subtitle {
    text-align: center;
    color: #7A7A8C;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

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

.sct-tpl-service-city .sct-intro-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4A4A5C;
    margin-bottom: 1.2rem;
}

.sct-tpl-service-city .sct-intro-content strong { color: #2D5A7B; font-weight: 700; }

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

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

.sct-tpl-service-city .sct-service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

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

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

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

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

.sct-tpl-service-city .sct-service-card-body { padding: 1.5rem; }

.sct-tpl-service-city .sct-service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2D5A7B;
    margin-bottom: 0.6rem;
}

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

.sct-tpl-service-city .sct-processus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    counter-reset: step;
}

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

.sct-tpl-service-city .sct-step-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.8rem 1.2rem 1.5rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    position: relative;
    counter-increment: step;
    transition: all 0.3s ease;
}

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

.sct-tpl-service-city .sct-step-card::before {
    content: counter(step);
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px; height: 32px;
    background: #E8913A;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}

.sct-tpl-service-city .sct-step-icon {
    width: 56px; height: 56px;
    margin: 0.5rem auto 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #2D5A7B, #3A7BA8);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}

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

.sct-tpl-service-city .sct-step-card p {
    font-size: 0.83rem;
    color: #7A7A8C;
    line-height: 1.55;
}

.sct-tpl-service-city .sct-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.sct-tpl-service-city .sct-why-card {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.sct-tpl-service-city .sct-why-icon {
    width: 56px; height: 56px;
    min-width: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2D5A7B, #3A7BA8);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}

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

.sct-tpl-service-city .sct-why-card p {
    font-size: 0.9rem;
    color: #7A7A8C;
    line-height: 1.65;
}

.sct-tpl-service-city .sct-zones-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 2.2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    max-width: 980px;
    margin: 0 auto;
}

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

.sct-tpl-service-city .sct-zones-list span,
.sct-tpl-service-city .sct-zones-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    background: #F4F6F8;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #2D5A7B;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sct-tpl-service-city .sct-zones-list a:hover {
    background: #2D5A7B;
    color: #fff;
}

.sct-tpl-service-city .sct-zones-list i { color: #E8913A; font-size: 0.75rem; }

.sct-tpl-service-city .sct-usecase-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    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 15px 40px rgba(0,0,0,0.12);
}

.sct-tpl-service-city .sct-usecase-img img {
    width: 100%;
    height: auto;
    display: block;
}

.sct-tpl-service-city .sct-usecase-text h2 {
    text-align: left;
    margin-bottom: 1.2rem;
}

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

.sct-tpl-service-city .sct-usecase-text strong { color: #2D5A7B; }

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

.sct-tpl-service-city .sct-usecase-text ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.6rem;
    font-size: 0.93rem;
    line-height: 1.6;
}

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

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

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

.sct-tpl-service-city .sct-engagement-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #2D5A7B;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-engagement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.09);
    border-top-color: #E8913A;
}

.sct-tpl-service-city .sct-engagement-icon {
    width: 70px; height: 70px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2D5A7B, #3A7BA8);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.6rem;
}

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

.sct-tpl-service-city .sct-engagement-card p {
    font-size: 0.9rem;
    color: #7A7A8C;
    line-height: 1.65;
}

.sct-tpl-service-city .sct-local-spec-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2D5A7B 0%, #1E3F56 100%);
    border-radius: 16px;
    padding: 2.5rem;
    color: #fff;
    box-shadow: 0 12px 40px rgba(45,90,123,0.25);
}

.sct-tpl-service-city .sct-local-spec-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #F0A75E;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.sct-tpl-service-city .sct-local-spec-card h3 i { color: #E8913A; }

.sct-tpl-service-city .sct-local-spec-card p {
    font-size: 0.97rem;
    line-height: 1.75;
    opacity: 0.95;
    margin-bottom: 0.8rem;
}

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

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

.sct-tpl-service-city .sct-faq-question {
    padding: 1.2rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A2E;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    list-style: none;
    transition: background 0.3s ease;
}

.sct-tpl-service-city .sct-faq-question::-webkit-details-marker { display: none; }

.sct-tpl-service-city .sct-faq-question:hover { background: #F4F6F8; }

.sct-tpl-service-city .sct-faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #E8913A;
    transition: transform 0.3s ease;
    font-size: 0.85rem;
    min-width: 16px;
    text-align: center;
}

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

.sct-tpl-service-city .sct-faq-answer {
    padding: 0 1.5rem 1.3rem;
    font-size: 0.93rem;
    color: #7A7A8C;
    line-height: 1.75;
}

.sct-tpl-service-city .sct-maillage-section { padding: 3rem 0; }

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

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

.sct-tpl-service-city .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #2D5A7B;
    text-decoration: none;
    transition: all 0.2s ease;
}

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

.sct-tpl-service-city .sct-maillage-list a i { color: #E8913A; font-size: 0.75rem; }

.sct-tpl-service-city .sct-maillage-list a:hover i { color: #F0A75E; }

.sct-tpl-service-city .sct-cta-final {
    background: linear-gradient(135deg, #2D5A7B 0%, #1E3F56 100%);
    padding: 4rem 0;
    color: #fff;
    text-align: center;
}

.sct-tpl-service-city .sct-cta-final h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
}

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

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

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

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero { padding: 130px 0 70px; }
    .sct-tpl-service-city .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-city .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-city .sct-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); }
    .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .sct-tpl-service-city .sct-usecase-grid { grid-template-columns: 1fr; gap: 2rem; }
    .sct-tpl-service-city .sct-section-title { font-size: 1.7rem; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 2rem; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-city .sct-hero-text { text-align: left; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.7rem; line-height: 1.25; }
    .sct-tpl-service-city .sct-hero-subtitle { font-size: 0.97rem; }
    .sct-tpl-service-city .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-hero-card { padding: 1.5rem; }
    .sct-tpl-service-city .sct-hero-trust { flex-direction: column; gap: 0.7rem; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .sct-tpl-service-city .sct-stat-value { font-size: 1.8rem; }
    .sct-tpl-service-city .sct-section { padding: 3rem 0; }
    .sct-tpl-service-city .sct-section-title { font-size: 1.5rem; }
    .sct-tpl-service-city .sct-section-subtitle { font-size: 0.93rem; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-zones-wrapper { padding: 1.5rem; }
    .sct-tpl-service-city .sct-local-spec-card { padding: 1.7rem; }
    .sct-tpl-service-city .sct-local-spec-card h3 { font-size: 1.15rem; }
    .sct-tpl-service-city .sct-cta-final { padding: 3rem 0; }
    .sct-tpl-service-city .sct-cta-final h2 { font-size: 1.5rem; }
    .sct-tpl-service-city .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-breadcrumb { font-size: 0.78rem; }
    .sct-tpl-service-city .sct-faq-question { font-size: 0.92rem; padding: 1rem 1.2rem; }
    .sct-tpl-service-city .sct-faq-answer { padding: 0 1.2rem 1.1rem; font-size: 0.9rem; }
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, rgba(45,90,123,0.94) 0%, rgba(30,63,86,0.90) 100%),
                url('/images/service_4_1775394476_69d25eac7bb7d.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, rgba(45,90,123,0.94) 0%, rgba(30,63,86,0.90) 100%),
                url('/images/service_5_1775394499_69d25ec32641f.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, rgba(45,90,123,0.94) 0%, rgba(30,63,86,0.90) 100%),
                url('/images/service_2_1775394430_69d25e7ec3c80.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, rgba(45,90,123,0.94) 0%, rgba(30,63,86,0.90) 100%),
                url('/images/service_2_1775394430_69d25e7ec3c80.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, rgba(45,90,123,0.94) 0%, rgba(30,63,86,0.90) 100%),
                url('/images/service_3_1775394454_69d25e9685f55.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, rgba(45,90,123,0.94) 0%, rgba(30,63,86,0.90) 100%),
                url('/images/service_3_1775394454_69d25e9685f55.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, rgba(45,90,123,0.94) 0%, rgba(30,63,86,0.90) 100%),
                url('/images/service_3_1775394454_69d25e9685f55.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, rgba(45,90,123,0.94) 0%, rgba(30,63,86,0.90) 100%),
                url('/images/service_4_1775394476_69d25eac7bb7d.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, rgba(45,90,123,0.94) 0%, rgba(30,63,86,0.90) 100%),
                url('/images/service_4_1775394476_69d25eac7bb7d.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, rgba(45,90,123,0.94) 0%, rgba(30,63,86,0.90) 100%),
                url('/images/service_2_1775394430_69d25e7ec3c80.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, rgba(45,90,123,0.94) 0%, rgba(30,63,86,0.90) 100%),
                url('/images/service_5_1775394499_69d25ec32641f.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, rgba(45,90,123,0.94) 0%, rgba(30,63,86,0.90) 100%),
                url('/images/service_6_1775394521_69d25ed913f52.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, rgba(45,90,123,0.94) 0%, rgba(30,63,86,0.90) 100%),
                url('/images/service_5_1775394499_69d25ec32641f.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, rgba(45,90,123,0.94) 0%, rgba(30,63,86,0.90) 100%),
                url('/images/service_6_1775394521_69d25ed913f52.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sitemap-hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.sitemap-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,145,58,0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.sitemap-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,145,58,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

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

.sitemap-hero .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    color: rgba(255,255,255,0.9);
}

.sitemap-hero .breadcrumb a {
    color: var(--secondary-light);
    text-decoration: none;
    font-weight: 600;
}

.sitemap-hero .breadcrumb a:hover {
    color: var(--white);
}

.sitemap-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.sitemap-hero h1 i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.sitemap-hero p {
    font-size: 1.05rem;
    opacity: 0.92;
    max-width: 600px;
    margin: 0 auto;
}

.sitemap-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.sitemap-section + .sitemap-section {
    border-top: 1px solid #E2E8F0;
}

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

.sitemap-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 3px solid var(--secondary);
}

.sitemap-section-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 6px 18px rgba(45,90,123,0.25);
}

.sitemap-section-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

.sitemap-section-header h2 span {
    color: var(--secondary);
}

.sitemap-section-header p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0.2rem 0 0;
}

.chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid #E2E8F0;
    transition: all 0.25s ease;
    line-height: 1.3;
}

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

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

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

.chip-featured {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    border-color: var(--secondary);
    padding: 0.8rem 1.4rem;
    font-size: 0.95rem;
    box-shadow: 0 6px 18px rgba(232,145,58,0.3);
}

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

.chip-featured:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    color: var(--white);
    border-color: var(--secondary-dark);
    box-shadow: 0 10px 25px rgba(232,145,58,0.4);
}

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

.service-group {
    background: var(--white);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary);
    transition: box-shadow 0.3s ease;
}

.service-group:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.service-group-title {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px dashed #E2E8F0;
}

.service-group-title i {
    color: var(--secondary);
    font-size: 1rem;
}

.service-group .chips-grid {
    gap: 0.55rem;
}

.service-group .chip {
    padding: 0.5rem 0.95rem;
    font-size: 0.85rem;
    background: var(--gray-100);
    border-color: transparent;
}

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

.sitemap-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 3.5rem 1rem;
    text-align: center;
    color: var(--white);
}

.sitemap-cta h2 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.sitemap-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.92;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sitemap-cta .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 2rem;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(232,145,58,0.35);
}

.sitemap-cta .btn-cta:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(232,145,58,0.5);
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

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

.footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(3px);
}

.footer-links i {
    font-size: 0.7rem;
    color: var(--secondary);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.footer-contact-item i {
    color: var(--secondary);
    margin-top: 0.2rem;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

@media (min-width: 768px) {
    .sitemap-hero h1 {
        font-size: 2.8rem;
    }

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

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

@media (min-width: 992px) {
    .nav {
        display: flex !important;
        flex-direction: row;
        position: static;
        width: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        align-items: center;
    }

    .nav a {
        padding: 0.5rem 1rem;
    }

    .nav .btn-cta-nav {
        margin: 0 0 0 0.5rem;
    }

    .hamburger {
        display: none;
    }
}