.menu-check { display: none; }

.menu-check:checked ~ .mobile-menu { right: 0 !important; transform: translateX(0) !important; }

.menu-check:checked ~ .mobile-menu-overlay { display: block !important; opacity: 1 !important; pointer-events: all !important; }

:root {
            --primary: #0A4D68;
            --primary-dark: #083a4f;
            --primary-light: #0d6080;
            --secondary: #FFB347;
            --secondary-dark: #e09a2e;
            --white: #ffffff;
            --light: #f8fafc;
            --gray: #64748b;
            --dark: #1e293b;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
        }

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

html {
            scroll-behavior: smooth;
        }

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

h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            line-height: 1.2;
        }

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

a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

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

.navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.4s ease;
        }

.navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 15px 0;
            box-shadow: var(--shadow);
        }

.navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

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

.logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            transition: color 0.4s ease;
        }

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

.nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
        }

.nav-menu a {
            color: var(--white);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            padding: 5px 0;
            transition: color 0.3s ease;
        }

.navbar.scrolled .nav-menu a {
            color: var(--dark);
        }

.nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }

.nav-menu a:hover::after {
            width: 100%;
        }

.nav-cta {
            background: var(--secondary);
            color: var(--dark) !important;
            padding: 12px 25px !important;
            border-radius: 50px;
            font-weight: 600 !important;
        }

.nav-cta::after {
            display: none !important;
        }

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

.mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

.mobile-toggle span {
            width: 25px;
            height: 3px;
            background: var(--white);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

.navbar.scrolled .mobile-toggle span {
            background: var(--dark);
        }

.hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

.hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://webflash.pro/images/hero_1770134724_69821cc4acf75.webp') center/cover no-repeat;
            transform: scale(1.1);
            transition: transform 10s ease-out;
        }

.hero.loaded .hero-bg {
            transform: scale(1);
        }

.hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(10, 77, 104, 0.85) 0%, rgba(10, 77, 104, 0.6) 50%, rgba(10, 77, 104, 0.4) 100%);
        }

.hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
            max-width: 900px;
        }

.hero-badge {
            display: inline-block;
            background: rgba(255, 179, 71, 0.2);
            border: 1px solid var(--secondary);
            color: var(--secondary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 25px;
            animation: fadeInUp 0.8s ease forwards;
            opacity: 0;
        }

.hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease 0.2s forwards;
            opacity: 0;
        }

.hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            font-weight: 300;
            margin-bottom: 40px;
            opacity: 0.9;
            animation: fadeInUp 0.8s ease 0.4s forwards;
            opacity: 0;
        }

.hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            animation: fadeInUp 0.8s ease 0.6s forwards;
            opacity: 0;
        }

.btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

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

.btn-primary:hover {
            background: var(--secondary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 179, 71, 0.4);
        }

.btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

.btn-secondary:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-3px);
        }

.hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            animation: bounce 2s infinite;
        }

.hero-scroll a {
            color: var(--white);
            font-size: 2rem;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

.hero-scroll a:hover {
            opacity: 1;
        }

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

@keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-15px);
            }
            60% {
                transform: translateX(-50%) translateY(-10px);
            }
        }

.wave-separator {
            position: relative;
            height: 150px;
            overflow: hidden;
            background: var(--primary);
        }

.wave-separator svg {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

.wave-separator.wave-white {
            background: var(--light);
        }

.wave-separator.wave-primary {
            background: var(--white);
        }

section {
            padding: 100px 0;
        }

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

.section-badge {
            display: inline-block;
            background: rgba(10, 77, 104, 0.1);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

.section-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--primary);
            margin-bottom: 15px;
        }

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

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

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

.service-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            perspective: 1000px;
        }

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

.service-card-inner {
            position: relative;
            height: 100%;
        }

.service-image {
            position: relative;
            height: 220px;

        }

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

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

.service-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(10, 77, 104, 0.8), transparent);
        }

.service-icon {
            position: absolute;
            bottom: -30px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--dark);
            z-index: 2;
            box-shadow: var(--shadow-lg);
            transition: transform 0.3s ease;
        }

.service-card:hover .service-icon {
            transform: rotate(360deg);
        }

.service-content {
            padding: 40px 25px 25px;
        }

.service-content h3 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 12px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

.service-content p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
        }

.about {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

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

.about-image {
            position: relative;
        }

.about-image img {
            border-radius: 20px;
            box-shadow: var(--shadow-xl);
        }

.about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: 20px;
            bottom: 20px;
            border: 3px solid var(--secondary);
            border-radius: 20px;
            z-index: -1;
        }

.about-stats {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: var(--primary);
            color: var(--white);
            padding: 25px 35px;
            border-radius: 15px;
            box-shadow: var(--shadow-xl);
        }

.stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            color: var(--secondary);
        }

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

.about-content h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: var(--primary);
            margin-bottom: 25px;
        }

.about-content p {
            color: var(--gray);
            font-size: 1.05rem;
            margin-bottom: 20px;
            line-height: 1.8;
        }

.about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

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

.about-feature i {
            width: 40px;
            height: 40px;
            background: rgba(10, 77, 104, 0.1);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

.about-feature span {
            font-weight: 500;
            color: var(--dark);
        }

.horaires {
            background: var(--primary);
            color: var(--white);
            position: relative;
        }

.horaires::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>') repeat;
            background-size: 200px;
        }

.horaires .section-header h2 {
            color: var(--white);
        }

.horaires .section-badge {
            background: rgba(255, 179, 71, 0.2);
            color: var(--secondary);
        }

.horaires .section-header p {
            color: rgba(255, 255, 255, 0.8);
        }

.horaires-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 50px;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

.horaires-list {
            list-style: none;
        }

.horaires-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

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

.horaires-day {
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

.horaires-day i {
            color: var(--secondary);
        }

.horaires-time {
            background: var(--secondary);
            color: var(--dark);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
        }

.horaires-note {
            text-align: center;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.8);
        }

.horaires-note i {
            color: var(--secondary);
            margin-right: 8px;
        }

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

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

.contact-info h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

.contact-info > p {
            color: var(--gray);
            margin-bottom: 30px;
        }

.contact-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin-bottom: 40px;
        }

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

.contact-item-icon {
            width: 55px;
            height: 55px;
            background: var(--primary);
            color: var(--white);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

.contact-item-content h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 5px;
        }

.contact-item-content p,
        .contact-item-content a {
            color: var(--gray);
            font-size: 0.95rem;
        }

.contact-item-content a:hover {
            color: var(--primary);
        }

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

.contact-map iframe {
            display: block;
        }

.contact-form-wrapper {
            background: var(--white);
            padding: 45px;
            border-radius: 25px;
            box-shadow: var(--shadow-lg);
        }

.contact-form-wrapper h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 30px;
        }

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

.form-group label {
            display: block;
            font-weight: 500;
            color: var(--dark);
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

.form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--light);
        }

.form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(10, 77, 104, 0.1);
        }

.form-group textarea {
            resize: vertical;
            min-height: 130px;
        }

.contact-form-wrapper button[type="submit"] {
            width: 100%;
            padding: 18px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

.contact-form-wrapper button[type="submit"]:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(10, 77, 104, 0.3);
        }

.contact-form-wrapper button[type="submit"]:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

#formStatus {
            margin-top: 20px;
            text-align: center;
        }

#formStatus p {
            padding: 15px;
            border-radius: 10px;
        }

footer {
            background: var(--dark);
            color: var(--white);
            padding: 80px 0 30px;
        }

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

.footer-brand .logo-text {
            font-size: 1.8rem;
            margin-bottom: 20px;
            display: block;
        }

.footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 25px;
        }

.footer-social {
            display: flex;
            gap: 15px;
        }

.footer-social a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

.footer-social a:hover {
            background: var(--secondary);
            color: var(--dark);
            transform: translateY(-3px);
        }

.footer-links h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: var(--white);
        }

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

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

.footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

.footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

.footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.7);
        }

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

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

.footer-bottom p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

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

.footer-legal {
            display: flex;
            gap: 30px;
        }

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

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

.modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

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

.modal {
            background: var(--white);
            border-radius: 20px;
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            animation: modalIn 0.3s ease;
        }

@keyframes modalIn {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

.modal-header {
            padding: 25px 30px;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

.modal-header h3 {
            font-size: 1.4rem;
            color: var(--primary);
        }

.modal-close {
            width: 40px;
            height: 40px;
            background: var(--light);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            color: var(--gray);
            transition: all 0.3s ease;
        }

.modal-close:hover {
            background: var(--primary);
            color: var(--white);
        }

.modal-body {
            padding: 30px;
        }

.modal-body h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 8px;
        }

.modal-body p {
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.7;
        }

.mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 350px;
            height: 100vh;
            background: var(--white);
            z-index: 10001;
            transition: right 0.4s ease;
            box-shadow: var(--shadow-xl);
        }

.mobile-menu.active {
            right: 0;
        }

.mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 10000;
            display: none;
        }

.mobile-menu-overlay.active {
            display: block;
        }

.mobile-menu-header {
            padding: 25px;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

.mobile-menu-header .logo-text {
            color: var(--primary);
            font-size: 1.3rem;
        }

.mobile-menu-close {
            width: 40px;
            height: 40px;
            background: var(--light);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            color: var(--gray);
        }

.mobile-menu-nav {
            padding: 20px;
        }

.mobile-menu-nav ul {
            list-style: none;
        }

.mobile-menu-nav li {
            border-bottom: 1px solid #e2e8f0;
        }

.mobile-menu-nav a {
            display: block;
            padding: 18px 0;
            font-weight: 500;
            color: var(--dark);
            font-size: 1.1rem;
        }

.mobile-menu-cta {
            padding: 20px;
        }

.mobile-menu-cta .btn {
            width: 100%;
            justify-content: center;
        }

@media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .about-image {
                order: -1;
            }

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

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

            .mobile-toggle {
                display: flex;
            }

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

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

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

            .horaires-item {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

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

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

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

            .about-stats {
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: 20px;
                display: inline-block;
            }

            .about-image::before {
                display: none;
            }
        }

@media (max-width: 480px) {
            section {
                padding: 60px 0;
            }

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

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

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

            .contact-form-wrapper {
                padding: 30px 20px;
            }
        }

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

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

section[id] {
            scroll-margin-top: 80px;
        }

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

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

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

.sct-tpl-zone { font-family: 'Montserrat', sans-serif; color: #1e293b; line-height: 1.6; }

.sct-tpl-zone h1, .sct-tpl-zone h2, .sct-tpl-zone h3, .sct-tpl-zone h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, rgba(10,77,104,0.92) 0%, rgba(10,77,104,0.78) 60%, rgba(8,58,79,0.85) 100%), url('/images/service_1_1770134751_69821cdfb7a38.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,179,71,0.18), transparent 50%);
    pointer-events: none;
}

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

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

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

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

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

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

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

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

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

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

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,179,71,0.18);
    border: 1px solid rgba(255,179,71,0.5);
    color: #FFB347;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.sct-tpl-zone .sct-hero-text h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    margin-bottom: 22px;
    color: #fff;
}

.sct-tpl-zone .sct-hero-text h1 .sct-h1-accent { color: #FFB347; }

.sct-tpl-zone .sct-hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    font-weight: 300;
    line-height: 1.7;
}

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

.sct-tpl-zone .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.98rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.sct-tpl-zone .sct-btn-primary {
    background: #FFB347;
    color: #1e293b;
}

.sct-tpl-zone .sct-btn-primary:hover {
    background: #e09a2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,179,71,0.4);
}

.sct-tpl-zone .sct-btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.sct-tpl-zone .sct-btn-outline:hover {
    background: #fff;
    color: #0A4D68;
    transform: translateY(-3px);
}

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

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

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

.sct-tpl-zone .sct-hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 22px;
    padding: 35px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.sct-tpl-zone .sct-hero-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

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

.sct-tpl-zone .sct-hero-card-info li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    color: rgba(255,255,255,0.92);
    font-size: 0.95rem;
}

.sct-tpl-zone .sct-hero-card-info i {
    width: 38px;
    height: 38px;
    background: rgba(255,179,71,0.2);
    color: #FFB347;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-hero-card-info strong { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; font-weight: 500; }

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

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

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 120px 0 60px; }
    .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-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-zone .sct-hero-card { padding: 28px 22px; }
}

.sct-tpl-zone .sct-stats-band {
    background: #fff;
    padding: 60px 0;
    border-bottom: 1px solid #eef2f5;
}

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

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

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

.sct-tpl-zone .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #0A4D68;
    line-height: 1;
    margin-bottom: 10px;
}

.sct-tpl-zone .sct-stat-label {
    color: #64748b;
    font-size: 0.92rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-stats-band { padding: 45px 0; }
    .sct-tpl-zone .sct-stat-item { padding: 12px; }
}

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

.sct-tpl-zone .sct-intro-wrapper {
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
}

.sct-tpl-zone .sct-intro-section .sct-section-tag {
    display: inline-block;
    background: rgba(10,77,104,0.1);
    color: #0A4D68;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-intro-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #0A4D68;
    margin-bottom: 30px;
}

.sct-tpl-zone .sct-intro-section p {
    color: #475569;
    font-size: 1.04rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.sct-tpl-zone .sct-intro-section p strong { color: #0A4D68; font-weight: 600; }

.sct-tpl-zone .sct-section-header {
    text-align: center;
    margin-bottom: 55px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.sct-tpl-zone .sct-section-tag {
    display: inline-block;
    background: rgba(10,77,104,0.1);
    color: #0A4D68;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.sct-tpl-zone .sct-section-title {
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
    color: #0A4D68;
    margin-bottom: 14px;
}

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

.sct-tpl-zone .sct-services-grid-section {
    padding: 90px 0;
    background: #fff;
}

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

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

.sct-tpl-zone .sct-services-grid .sct-service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid #eef2f5;
    display: flex;
    flex-direction: column;
}

.sct-tpl-zone .sct-services-grid .sct-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10,77,104,0.15);
}

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

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

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

.sct-tpl-zone .sct-services-grid .sct-service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,77,104,0.6), transparent 60%);
}

.sct-tpl-zone .sct-services-grid .sct-service-content {
    padding: 28px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sct-tpl-zone .sct-services-grid .sct-service-content h3 {
    font-size: 1.2rem;
    color: #0A4D68;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.sct-tpl-zone .sct-services-grid .sct-service-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}

.sct-tpl-zone .sct-services-grid .sct-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFB347;
    font-weight: 600;
    font-size: 0.92rem;
    transition: gap 0.3s ease;
}

.sct-tpl-zone .sct-services-grid .sct-service-link:hover {
    gap: 12px;
    color: #e09a2e;
}

@media (max-width: 992px) {
    .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-services-grid-section { padding: 70px 0; }
}

.sct-tpl-zone .sct-zones-section {
    padding: 90px 0;
    background: #0A4D68;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sct-tpl-zone .sct-zones-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255,179,71,0.12), transparent 40%);
    pointer-events: none;
}

.sct-tpl-zone .sct-zones-section .sct-section-header { position: relative; z-index: 2; }

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

.sct-tpl-zone .sct-zones-section .sct-section-tag { background: rgba(255,179,71,0.2); color: #FFB347; }

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

.sct-tpl-zone .sct-zones-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sct-tpl-zone .sct-zones-list .sct-zone-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 11px 20px;
    border-radius: 50px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.95);
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-zones-list .sct-zone-tag:hover {
    background: #FFB347;
    color: #1e293b;
    border-color: #FFB347;
    transform: translateY(-2px);
}

.sct-tpl-zone .sct-zones-list .sct-zone-tag i { color: #FFB347; }

.sct-tpl-zone .sct-zones-list .sct-zone-tag:hover i { color: #1e293b; }

@media (max-width: 640px) {
    .sct-tpl-zone .sct-zones-section { padding: 70px 0; }
}

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

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

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

.sct-tpl-zone .sct-usecase-image {
    position: relative;
}

.sct-tpl-zone .sct-usecase-image img {
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(10,77,104,0.18);
    width: 100%;
    height: auto;
    display: block;
}

.sct-tpl-zone .sct-usecase-image::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -18px;
    right: 22px;
    bottom: 22px;
    border: 3px solid #FFB347;
    border-radius: 22px;
    z-index: -1;
}

.sct-tpl-zone .sct-usecase-content .sct-section-tag { margin-bottom: 15px; }

.sct-tpl-zone .sct-usecase-content h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
    color: #0A4D68;
    margin-bottom: 22px;
}

.sct-tpl-zone .sct-usecase-content p {
    color: #475569;
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.sct-tpl-zone .sct-usecase-content strong { color: #0A4D68; font-weight: 600; }

@media (max-width: 992px) {
    .sct-tpl-zone .sct-usecase-grid { grid-template-columns: 1fr; gap: 50px; }
    .sct-tpl-zone .sct-usecase-image { max-width: 540px; margin: 0 auto; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-usecase-section { padding: 70px 0; }
}

.sct-tpl-zone .sct-engagements-section {
    padding: 90px 0;
    background: #f8fafc;
}

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

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

.sct-tpl-zone .sct-engagement-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sct-tpl-zone .sct-engagement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFB347, #e09a2e);
}

.sct-tpl-zone .sct-engagement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10,77,104,0.15);
}

.sct-tpl-zone .sct-engagement-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,179,71,0.15);
    color: #FFB347;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 22px;
}

.sct-tpl-zone .sct-engagement-card h3 {
    font-size: 1.2rem;
    color: #0A4D68;
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

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

@media (max-width: 992px) {
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-engagements-section { padding: 70px 0; }
}

.sct-tpl-zone .sct-local-spec {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A4D68 0%, #083a4f 100%);
    color: #fff;
}

.sct-tpl-zone .sct-local-spec-wrapper {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 22px;
    padding: 50px 40px;
}

.sct-tpl-zone .sct-local-spec-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,179,71,0.2);
    color: #FFB347;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 22px;
}

.sct-tpl-zone .sct-local-spec h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    color: #fff;
    margin-bottom: 22px;
}

.sct-tpl-zone .sct-local-spec p {
    color: rgba(255,255,255,0.88);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-local-spec strong { color: #FFB347; }

@media (max-width: 640px) {
    .sct-tpl-zone .sct-local-spec { padding: 60px 0; }
    .sct-tpl-zone .sct-local-spec-wrapper { padding: 40px 25px; }
}

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

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

.sct-tpl-zone .sct-faq-item {
    background: #f8fafc;
    border-radius: 14px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid #eef2f5;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-faq-item:hover {
    border-color: #FFB347;
    box-shadow: 0 8px 25px rgba(10,77,104,0.08);
}

.sct-tpl-zone .sct-faq-item summary {
    padding: 22px 28px;
    font-weight: 600;
    color: #0A4D68;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 1.02rem;
    line-height: 1.4;
}

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

.sct-tpl-zone .sct-faq-item summary::after {
    content: '+';
    font-size: 1.6rem;
    color: #FFB347;
    font-weight: 400;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.sct-tpl-zone .sct-faq-item .sct-faq-answer {
    padding: 0 28px 25px;
    color: #475569;
    line-height: 1.75;
    font-size: 0.97rem;
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-faq-section { padding: 70px 0; }
    .sct-tpl-zone .sct-faq-item summary { padding: 18px 22px; font-size: 0.95rem; }
    .sct-tpl-zone .sct-faq-item .sct-faq-answer { padding: 0 22px 20px; }
}

.sct-tpl-zone .sct-maillage-section {
    padding: 70px 0;
    background: #f8fafc;
    border-top: 1px solid #eef2f5;
}

.sct-tpl-zone .sct-maillage-section h2 {
    font-size: 1.5rem;
    color: #0A4D68;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

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

.sct-tpl-zone .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    color: #0A4D68;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

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

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

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

.sct-tpl-zone .sct-cta-final {
    padding: 90px 0;
    background: linear-gradient(135deg, #0A4D68 0%, #083a4f 60%, #0d6080 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sct-tpl-zone .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(255,179,71,0.15), transparent 50%);
    pointer-events: none;
}

.sct-tpl-zone .sct-cta-final-wrapper {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sct-tpl-zone .sct-cta-final h2 {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    color: #fff;
    margin-bottom: 22px;
}

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

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

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

@media (max-width: 640px) {
    .sct-tpl-zone .sct-cta-final { padding: 70px 0; }
    .sct-tpl-zone .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-final-btns > * { width: 100%; justify-content: center; }
}

.sct-tpl-service-hub { font-family: 'Montserrat', sans-serif; color: #1e293b; line-height: 1.6; }

.sct-tpl-service-hub h1, .sct-tpl-service-hub h2, .sct-tpl-service-hub h3, .sct-tpl-service-hub h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, rgba(10,77,104,0.92) 0%, rgba(10,77,104,0.78) 60%, rgba(8,58,79,0.85) 100%), url('/images/service_1_1770134751_69821cdfb7a38.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,179,71,0.18), transparent 50%);
    pointer-events: none;
}

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

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

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

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

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

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

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

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

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

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

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,179,71,0.18);
    border: 1px solid rgba(255,179,71,0.5);
    color: #FFB347;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.sct-tpl-service-hub .sct-hero-text h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    margin-bottom: 22px;
    color: #fff;
}

.sct-tpl-service-hub .sct-hero-text h1 .sct-h1-accent { color: #FFB347; }

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    font-weight: 300;
    line-height: 1.7;
}

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

.sct-tpl-service-hub .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.98rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.sct-tpl-service-hub .sct-btn-primary {
    background: #FFB347;
    color: #1e293b;
}

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: #e09a2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,179,71,0.4);
}

.sct-tpl-service-hub .sct-btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.sct-tpl-service-hub .sct-btn-outline:hover {
    background: #fff;
    color: #0A4D68;
    transform: translateY(-3px);
}

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

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

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

.sct-tpl-service-hub .sct-hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 22px;
    padding: 35px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.sct-tpl-service-hub .sct-hero-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.sct-tpl-service-hub .sct-hero-card-info {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.sct-tpl-service-hub .sct-hero-card-info li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    color: rgba(255,255,255,0.92);
    font-size: 0.95rem;
}

.sct-tpl-service-hub .sct-hero-card-info i {
    width: 38px;
    height: 38px;
    background: rgba(255,179,71,0.2);
    color: #FFB347;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-hero-card-info strong { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; font-weight: 500; }

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

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

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-hub .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-hub .sct-hero-card { padding: 28px 22px; }
}

.sct-tpl-service-hub .sct-stats-band {
    background: #fff;
    padding: 60px 0;
    border-bottom: 1px solid #eef2f5;
}

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

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

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

.sct-tpl-service-hub .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #0A4D68;
    line-height: 1;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-stat-label {
    color: #64748b;
    font-size: 0.92rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-stats-band { padding: 45px 0; }
    .sct-tpl-service-hub .sct-stat-item { padding: 12px; }
}

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

.sct-tpl-service-hub .sct-intro-wrapper {
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
}

.sct-tpl-service-hub .sct-intro-section .sct-section-tag {
    display: inline-block;
    background: rgba(10,77,104,0.1);
    color: #0A4D68;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.sct-tpl-service-hub .sct-intro-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #0A4D68;
    margin-bottom: 30px;
}

.sct-tpl-service-hub .sct-intro-section p {
    color: #475569;
    font-size: 1.04rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.sct-tpl-service-hub .sct-intro-section p strong { color: #0A4D68; font-weight: 600; }

.sct-tpl-service-hub .sct-section-header {
    text-align: center;
    margin-bottom: 55px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.sct-tpl-service-hub .sct-section-tag {
    display: inline-block;
    background: rgba(10,77,104,0.1);
    color: #0A4D68;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.sct-tpl-service-hub .sct-section-title {
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
    color: #0A4D68;
    margin-bottom: 14px;
}

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

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

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

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

.sct-tpl-service-hub .sct-service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid #eef2f5;
}

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10,77,104,0.15);
}

.sct-tpl-service-hub .sct-service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.sct-tpl-service-hub .sct-service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,77,104,0.6), transparent 60%);
}

.sct-tpl-service-hub .sct-service-content { padding: 30px 25px; }

.sct-tpl-service-hub .sct-service-content h3 {
    font-size: 1.25rem;
    color: #0A4D68;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.sct-tpl-service-hub .sct-service-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-services-grid-section { padding: 70px 0; }
}

.sct-tpl-service-hub .sct-processus-section {
    padding: 90px 0;
    background: #f8fafc;
    position: relative;
}

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

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

.sct-tpl-service-hub .sct-processus-step {
    background: #fff;
    border-radius: 18px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
    border-top: 3px solid #FFB347;
}

.sct-tpl-service-hub .sct-processus-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(10,77,104,0.12);
}

.sct-tpl-service-hub .sct-step-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: #0A4D68;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.sct-tpl-service-hub .sct-step-icon {
    width: 60px;
    height: 60px;
    background: rgba(10,77,104,0.08);
    color: #0A4D68;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 12px auto 18px;
}

.sct-tpl-service-hub .sct-processus-step h3 {
    font-size: 1.05rem;
    color: #0A4D68;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.sct-tpl-service-hub .sct-processus-step p {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: 1fr; gap: 30px; }
    .sct-tpl-service-hub .sct-processus-section { padding: 70px 0; }
}

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

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

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

.sct-tpl-service-hub .sct-why-card {
    background: #f8fafc;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sct-tpl-service-hub .sct-why-card:hover {
    background: #fff;
    border-color: #FFB347;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(10,77,104,0.1);
}

.sct-tpl-service-hub .sct-why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0A4D68, #0d6080);
    color: #FFB347;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 22px;
}

.sct-tpl-service-hub .sct-why-card h3 {
    font-size: 1.1rem;
    color: #0A4D68;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

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

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-why-section { padding: 70px 0; }
}

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

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

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

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

.sct-tpl-service-hub .sct-usecase-image img {
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(10,77,104,0.18);
    width: 100%;
    height: auto;
    display: block;
}

.sct-tpl-service-hub .sct-usecase-image::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -18px;
    right: 22px;
    bottom: 22px;
    border: 3px solid #FFB347;
    border-radius: 22px;
    z-index: -1;
}

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

.sct-tpl-service-hub .sct-usecase-content h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
    color: #0A4D68;
    margin-bottom: 22px;
}

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

.sct-tpl-service-hub .sct-usecase-content strong { color: #0A4D68; font-weight: 600; }

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 50px; }
    .sct-tpl-service-hub .sct-usecase-image { max-width: 540px; margin: 0 auto; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-usecase-section { padding: 70px 0; }
}

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

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

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

.sct-tpl-service-hub .sct-engagement-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-engagement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFB347, #e09a2e);
}

.sct-tpl-service-hub .sct-engagement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10,77,104,0.15);
    background: #fff;
}

.sct-tpl-service-hub .sct-engagement-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,179,71,0.15);
    color: #FFB347;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 22px;
}

.sct-tpl-service-hub .sct-engagement-card h3 {
    font-size: 1.2rem;
    color: #0A4D68;
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

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

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-engagements-section { padding: 70px 0; }
}

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

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

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

.sct-tpl-service-hub .sct-faq-item:hover {
    border-color: #FFB347;
    box-shadow: 0 8px 25px rgba(10,77,104,0.08);
}

.sct-tpl-service-hub .sct-faq-item summary {
    padding: 22px 28px;
    font-weight: 600;
    color: #0A4D68;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 1.02rem;
    line-height: 1.4;
}

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

.sct-tpl-service-hub .sct-faq-item summary::after {
    content: '+';
    font-size: 1.6rem;
    color: #FFB347;
    font-weight: 400;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.sct-tpl-service-hub .sct-faq-item .sct-faq-answer {
    padding: 0 28px 25px;
    color: #475569;
    line-height: 1.75;
    font-size: 0.97rem;
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-faq-section { padding: 70px 0; }
    .sct-tpl-service-hub .sct-faq-item summary { padding: 18px 22px; font-size: 0.95rem; }
    .sct-tpl-service-hub .sct-faq-item .sct-faq-answer { padding: 0 22px 20px; }
}

.sct-tpl-service-hub .sct-maillage-cities-section {
    padding: 90px 0;
    background: #0A4D68;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-maillage-cities-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255,179,71,0.12), transparent 40%);
    pointer-events: none;
}

.sct-tpl-service-hub .sct-maillage-cities-section .sct-section-header { position: relative; z-index: 2; }

.sct-tpl-service-hub .sct-maillage-cities-section .sct-section-title { color: #fff; }

.sct-tpl-service-hub .sct-maillage-cities-section .sct-section-tag { background: rgba(255,179,71,0.2); color: #FFB347; }

.sct-tpl-service-hub .sct-maillage-cities-section .sct-section-subtitle { color: rgba(255,255,255,0.8); }

.sct-tpl-service-hub .sct-maillage-cities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sct-tpl-service-hub .sct-maillage-cities-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 11px 20px;
    border-radius: 50px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.95);
    transition: all 0.3s ease;
}

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

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

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

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-maillage-cities-section { padding: 70px 0; }
}

.sct-tpl-service-hub .sct-maillage-section {
    padding: 70px 0;
    background: #f8fafc;
    border-top: 1px solid #eef2f5;
}

.sct-tpl-service-hub .sct-maillage-section h2 {
    font-size: 1.5rem;
    color: #0A4D68;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

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

.sct-tpl-service-hub .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    color: #0A4D68;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

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

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

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

.sct-tpl-service-hub .sct-cta-final {
    padding: 90px 0;
    background: linear-gradient(135deg, #0A4D68 0%, #083a4f 60%, #0d6080 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(255,179,71,0.15), transparent 50%);
    pointer-events: none;
}

.sct-tpl-service-hub .sct-cta-final-wrapper {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sct-tpl-service-hub .sct-cta-final h2 {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    color: #fff;
    margin-bottom: 22px;
}

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

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

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

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-cta-final { padding: 70px 0; }
    .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-city { font-family: 'Montserrat', sans-serif; color: #1e293b; line-height: 1.6; }

.sct-tpl-service-city h1, .sct-tpl-service-city h2, .sct-tpl-service-city h3, .sct-tpl-service-city h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, rgba(10,77,104,0.92) 0%, rgba(10,77,104,0.78) 60%, rgba(8,58,79,0.85) 100%), url('/images/service_1_1770134751_69821cdfb7a38.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,179,71,0.18), transparent 50%);
    pointer-events: none;
}

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

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

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

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

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

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

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,179,71,0.18);
    border: 1px solid rgba(255,179,71,0.5);
    color: #FFB347;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.sct-tpl-service-city .sct-hero-text h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    margin-bottom: 22px;
    color: #fff;
}

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

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    font-weight: 300;
    line-height: 1.7;
}

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

.sct-tpl-service-city .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.98rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.sct-tpl-service-city .sct-btn-primary {
    background: #FFB347;
    color: #1e293b;
}

.sct-tpl-service-city .sct-btn-primary:hover {
    background: #e09a2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,179,71,0.4);
}

.sct-tpl-service-city .sct-btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.sct-tpl-service-city .sct-btn-outline:hover {
    background: #fff;
    color: #0A4D68;
    transform: translateY(-3px);
}

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

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

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

.sct-tpl-service-city .sct-hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 22px;
    padding: 35px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.sct-tpl-service-city .sct-hero-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

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

.sct-tpl-service-city .sct-hero-card-info li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    color: rgba(255,255,255,0.92);
    font-size: 0.95rem;
}

.sct-tpl-service-city .sct-hero-card-info i {
    width: 38px;
    height: 38px;
    background: rgba(255,179,71,0.2);
    color: #FFB347;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sct-tpl-service-city .sct-hero-card-info strong { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; font-weight: 500; }

.sct-tpl-service-city .sct-hero-card .sct-btn { width: 100%; 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%; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 60px; }
    .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-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-city .sct-hero-card { padding: 28px 22px; }
}

.sct-tpl-service-city .sct-stats-band {
    background: #fff;
    padding: 60px 0;
    border-bottom: 1px solid #eef2f5;
}

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

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

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

.sct-tpl-service-city .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #0A4D68;
    line-height: 1;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-stat-label {
    color: #64748b;
    font-size: 0.92rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-stats-band { padding: 45px 0; }
    .sct-tpl-service-city .sct-stat-item { padding: 12px; }
}

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

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

.sct-tpl-service-city .sct-intro-section .sct-section-tag {
    display: inline-block;
    background: rgba(10,77,104,0.1);
    color: #0A4D68;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-intro-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #0A4D68;
    margin-bottom: 30px;
}

.sct-tpl-service-city .sct-intro-section p {
    color: #475569;
    font-size: 1.04rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.sct-tpl-service-city .sct-intro-section p strong { color: #0A4D68; font-weight: 600; }

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

.sct-tpl-service-city .sct-section-tag {
    display: inline-block;
    background: rgba(10,77,104,0.1);
    color: #0A4D68;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.sct-tpl-service-city .sct-section-title {
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
    color: #0A4D68;
    margin-bottom: 14px;
}

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

.sct-tpl-service-city .sct-services-grid-section {
    padding: 90px 0;
    background: #fff;
}

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

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

.sct-tpl-service-city .sct-service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid #eef2f5;
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10,77,104,0.15);
}

.sct-tpl-service-city .sct-service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.sct-tpl-service-city .sct-service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,77,104,0.6), transparent 60%);
}

.sct-tpl-service-city .sct-service-content { padding: 30px 25px; }

.sct-tpl-service-city .sct-service-content h3 {
    font-size: 1.25rem;
    color: #0A4D68;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

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

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-services-grid-section { padding: 70px 0; }
}

.sct-tpl-service-city .sct-processus-section {
    padding: 90px 0;
    background: #f8fafc;
    position: relative;
}

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

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

.sct-tpl-service-city .sct-processus-step {
    background: #fff;
    border-radius: 18px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
    border-top: 3px solid #FFB347;
}

.sct-tpl-service-city .sct-processus-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(10,77,104,0.12);
}

.sct-tpl-service-city .sct-step-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: #0A4D68;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.sct-tpl-service-city .sct-step-icon {
    width: 60px;
    height: 60px;
    background: rgba(10,77,104,0.08);
    color: #0A4D68;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 12px auto 18px;
}

.sct-tpl-service-city .sct-processus-step h3 {
    font-size: 1.05rem;
    color: #0A4D68;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

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

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; gap: 30px; }
    .sct-tpl-service-city .sct-processus-section { padding: 70px 0; }
}

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

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

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

.sct-tpl-service-city .sct-why-card {
    background: #f8fafc;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sct-tpl-service-city .sct-why-card:hover {
    background: #fff;
    border-color: #FFB347;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(10,77,104,0.1);
}

.sct-tpl-service-city .sct-why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0A4D68, #0d6080);
    color: #FFB347;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 22px;
}

.sct-tpl-service-city .sct-why-card h3 {
    font-size: 1.1rem;
    color: #0A4D68;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

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

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-why-section { padding: 70px 0; }
}

.sct-tpl-service-city .sct-zones-section {
    padding: 90px 0;
    background: #0A4D68;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-city .sct-zones-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255,179,71,0.12), transparent 40%);
    pointer-events: none;
}

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

.sct-tpl-service-city .sct-zones-section .sct-section-tag { background: rgba(255,179,71,0.2); color: #FFB347; }

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

.sct-tpl-service-city .sct-zones-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sct-tpl-service-city .sct-zones-list .sct-zone-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 11px 20px;
    border-radius: 50px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.95);
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-zones-list .sct-zone-tag:hover {
    background: #FFB347;
    color: #1e293b;
    border-color: #FFB347;
    transform: translateY(-2px);
}

.sct-tpl-service-city .sct-zones-list .sct-zone-tag i { color: #FFB347; }

.sct-tpl-service-city .sct-zones-list .sct-zone-tag:hover i { color: #1e293b; }

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-zones-section { padding: 70px 0; }
}

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

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

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

.sct-tpl-service-city .sct-usecase-image {
    position: relative;
}

.sct-tpl-service-city .sct-usecase-image img {
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(10,77,104,0.18);
    width: 100%;
    height: auto;
    display: block;
}

.sct-tpl-service-city .sct-usecase-image::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -18px;
    right: 22px;
    bottom: 22px;
    border: 3px solid #FFB347;
    border-radius: 22px;
    z-index: -1;
}

.sct-tpl-service-city .sct-usecase-content .sct-section-tag { margin-bottom: 15px; }

.sct-tpl-service-city .sct-usecase-content h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
    color: #0A4D68;
    margin-bottom: 22px;
}

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

.sct-tpl-service-city .sct-usecase-content strong { color: #0A4D68; font-weight: 600; }

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-usecase-grid { grid-template-columns: 1fr; gap: 50px; }
    .sct-tpl-service-city .sct-usecase-image { max-width: 540px; margin: 0 auto; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-usecase-section { padding: 70px 0; }
}

.sct-tpl-service-city .sct-engagements-section {
    padding: 90px 0;
    background: #f8fafc;
}

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

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

.sct-tpl-service-city .sct-engagement-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-city .sct-engagement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFB347, #e09a2e);
}

.sct-tpl-service-city .sct-engagement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10,77,104,0.15);
}

.sct-tpl-service-city .sct-engagement-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,179,71,0.15);
    color: #FFB347;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 22px;
}

.sct-tpl-service-city .sct-engagement-card h3 {
    font-size: 1.2rem;
    color: #0A4D68;
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

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

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-engagements-section { padding: 70px 0; }
}

.sct-tpl-service-city .sct-local-spec {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A4D68 0%, #083a4f 100%);
    color: #fff;
}

.sct-tpl-service-city .sct-local-spec-wrapper {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 22px;
    padding: 50px 40px;
}

.sct-tpl-service-city .sct-local-spec-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,179,71,0.2);
    color: #FFB347;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 22px;
}

.sct-tpl-service-city .sct-local-spec h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    color: #fff;
    margin-bottom: 22px;
}

.sct-tpl-service-city .sct-local-spec p {
    color: rgba(255,255,255,0.88);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-local-spec strong { color: #FFB347; }

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-local-spec { padding: 60px 0; }
    .sct-tpl-service-city .sct-local-spec-wrapper { padding: 40px 25px; }
}

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

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

.sct-tpl-service-city .sct-faq-item {
    background: #f8fafc;
    border-radius: 14px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid #eef2f5;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-faq-item:hover {
    border-color: #FFB347;
    box-shadow: 0 8px 25px rgba(10,77,104,0.08);
}

.sct-tpl-service-city .sct-faq-item summary {
    padding: 22px 28px;
    font-weight: 600;
    color: #0A4D68;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 1.02rem;
    line-height: 1.4;
}

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

.sct-tpl-service-city .sct-faq-item summary::after {
    content: '+';
    font-size: 1.6rem;
    color: #FFB347;
    font-weight: 400;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.sct-tpl-service-city .sct-faq-item .sct-faq-answer {
    padding: 0 28px 25px;
    color: #475569;
    line-height: 1.75;
    font-size: 0.97rem;
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-faq-section { padding: 70px 0; }
    .sct-tpl-service-city .sct-faq-item summary { padding: 18px 22px; font-size: 0.95rem; }
    .sct-tpl-service-city .sct-faq-item .sct-faq-answer { padding: 0 22px 20px; }
}

.sct-tpl-service-city .sct-maillage-section {
    padding: 70px 0;
    background: #f8fafc;
    border-top: 1px solid #eef2f5;
}

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

.sct-tpl-service-city .sct-maillage-section h2 {
    font-size: 1.5rem;
    color: #0A4D68;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

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

.sct-tpl-service-city .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    color: #0A4D68;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

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

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

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

.sct-tpl-service-city .sct-cta-final {
    padding: 90px 0;
    background: linear-gradient(135deg, #0A4D68 0%, #083a4f 60%, #0d6080 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-city .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(255,179,71,0.15), transparent 50%);
    pointer-events: none;
}

.sct-tpl-service-city .sct-cta-final-wrapper {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sct-tpl-service-city .sct-cta-final h2 {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    color: #fff;
    margin-bottom: 22px;
}

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

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

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

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-cta-final { padding: 70px 0; }
    .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-zone .sct-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, rgba(10,77,104,0.92) 0%, rgba(10,77,104,0.78) 60%, rgba(8,58,79,0.85) 100%), url('/images/service_2_1770134779_69821cfb2e553.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(10,77,104,0.92) 0%, rgba(10,77,104,0.78) 60%, rgba(8,58,79,0.85) 100%), url('/images/service_2_1770134779_69821cfb2e553.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, rgba(10,77,104,0.92) 0%, rgba(10,77,104,0.78) 60%, rgba(8,58,79,0.85) 100%), url('/images/service_2_1770134779_69821cfb2e553.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(10,77,104,0.92) 0%, rgba(10,77,104,0.78) 60%, rgba(8,58,79,0.85) 100%), url('/images/service_3_1770134803_69821d13df60b.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, rgba(10,77,104,0.92) 0%, rgba(10,77,104,0.78) 60%, rgba(8,58,79,0.85) 100%), url('/images/service_4_1770134828_69821d2c4552e.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(10,77,104,0.92) 0%, rgba(10,77,104,0.78) 60%, rgba(8,58,79,0.85) 100%), url('/images/service_4_1770134828_69821d2c4552e.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, rgba(10,77,104,0.92) 0%, rgba(10,77,104,0.78) 60%, rgba(8,58,79,0.85) 100%), url('/images/service_5_1770134852_69821d44f1aaf.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(10,77,104,0.92) 0%, rgba(10,77,104,0.78) 60%, rgba(8,58,79,0.85) 100%), url('/images/service_5_1770134852_69821d44f1aaf.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(10,77,104,0.92) 0%, rgba(10,77,104,0.78) 60%, rgba(8,58,79,0.85) 100%), url('/images/service_6_1770134874_69821d5ac30a6.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, rgba(10,77,104,0.92) 0%, rgba(10,77,104,0.78) 60%, rgba(8,58,79,0.85) 100%), url('/images/service_3_1770134803_69821d13df60b.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 90px;
    background: linear-gradient(135deg, rgba(10,77,104,0.92) 0%, rgba(10,77,104,0.78) 60%, rgba(8,58,79,0.85) 100%), url('/images/service_6_1770134874_69821d5ac30a6.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.4s ease;
            background: rgba(10, 77, 104, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow);
        }

.logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
        }

.mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 380px;
            height: 100vh;
            background: var(--white);
            z-index: 9999;
            transition: right 0.4s ease;
            box-shadow: var(--shadow-xl);
            overflow-y: auto;
        }

.mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9998;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            display: none;
        }

.mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px;
            border-bottom: 1px solid #e2e8f0;
        }

.mobile-menu-header .logo-text {
            color: var(--primary);
            font-size: 1.2rem;
        }

.mobile-menu-close {
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
            background: none;
            border: none;
        }

.mobile-menu-nav ul {
            list-style: none;
            padding: 25px;
        }

.mobile-menu-nav li {
            margin-bottom: 15px;
        }

.mobile-menu-nav a {
            color: var(--dark);
            font-weight: 500;
            font-size: 1.05rem;
            display: block;
            padding: 12px 0;
            border-bottom: 1px solid #f1f5f9;
        }

.page-hero {
            min-height: 55vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 140px 0 80px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        }

.page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>') repeat;
            background-size: 200px;
            opacity: 0.6;
        }

.page-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
            max-width: 800px;
            padding: 0 20px;
        }

.page-hero .hero-badge {
            display: inline-block;
            background: rgba(255, 179, 71, 0.2);
            border: 1px solid var(--secondary);
            color: var(--secondary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 25px;
        }

.page-hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 20px;
        }

.page-hero p {
            font-size: clamp(1.05rem, 2vw, 1.25rem);
            font-weight: 300;
            opacity: 0.95;
        }

.page-hero-wave {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            line-height: 0;
            z-index: 2;
        }

.page-hero-wave svg {
            display: block;
            width: 100%;
            height: 80px;
        }

.sitemap {
            padding: 100px 0;
            background: var(--light);
        }

.sitemap-block {
            background: var(--white);
            border-radius: 25px;
            padding: 50px;
            box-shadow: var(--shadow-lg);
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
        }

.sitemap-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
        }

.sitemap-block-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 35px;
            padding-bottom: 25px;
            border-bottom: 2px dashed #e2e8f0;
        }

.sitemap-block-icon {
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: var(--white);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
            box-shadow: 0 8px 20px rgba(10, 77, 104, 0.25);
        }

.sitemap-block-title h2 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: var(--primary);
            margin-bottom: 5px;
        }

.sitemap-block-title p {
            color: var(--gray);
            font-size: 0.95rem;
        }

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

.chip {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 22px;
            background: var(--light);
            color: var(--dark);
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 500;
            border: 1.5px solid #e2e8f0;
            transition: all 0.3s ease;
        }

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

.chip:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(10, 77, 104, 0.2);
        }

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

.chip.chip-zone {
            background: rgba(255, 179, 71, 0.12);
            border-color: rgba(255, 179, 71, 0.4);
        }

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

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

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

.chip.chip-home {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
            padding: 14px 28px;
            font-weight: 600;
        }

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

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

.subgroup {
            margin-bottom: 35px;
        }

.subgroup:last-child {
            margin-bottom: 0;
        }

.subgroup-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

.subgroup-title::before {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--secondary);
            border-radius: 3px;
        }

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

.footer-legal {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

@media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .sitemap-block {
                padding: 40px 30px;
            }
        }

@media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            .mobile-toggle {
                display: flex;
            }
            .page-hero {
                min-height: 45vh;
                padding: 120px 0 60px;
            }
            .sitemap {
                padding: 70px 0;
            }
            .sitemap-block {
                padding: 35px 22px;
                border-radius: 20px;
            }
            .sitemap-block-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            .chip {
                padding: 10px 18px;
                font-size: 0.9rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .footer-legal {
                justify-content: center;
            }
        }