.menu-check { display: none; }

.menu-toggle .fa-times { display: none; }

.menu-check:checked ~ .menu-toggle .fa-bars { display: none; }

.menu-check:checked ~ .menu-toggle .fa-times { display: inline-block; }

@media (max-width: 768px) {
    .menu-check:checked ~ .nav {
        display: flex !important;
        transform: translateY(0) !important;
        right: 0 !important;
        left: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}

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

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

:root {
            --primary: #1B3A5C;
            --primary-dark: #122840;
            --primary-light: #2a5a8a;
            --secondary: #E8A620;
            --secondary-light: #f0be50;
            --white: #ffffff;
            --off-white: #f7f8fa;
            --gray-100: #f1f3f5;
            --gray-200: #e2e6ea;
            --gray-300: #ced4da;
            --gray-600: #6c757d;
            --gray-800: #343a40;
            --text: #2c3e50;
            --text-light: #5a6c7d;
            --shadow-sm: 0 2px 8px rgba(27,58,92,0.08);
            --shadow-md: 0 4px 20px rgba(27,58,92,0.12);
            --shadow-lg: 0 8px 40px rgba(27,58,92,0.16);
            --radius: 12px;
            --radius-sm: 8px;
        }

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

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

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

.urgency-banner {
            background: var(--secondary);
            color: var(--primary-dark);
            text-align: center;
            padding: 8px 20px;
            font-weight: 600;
            font-size: 0.9rem;
            position: relative;
            z-index: 1001;
        }

.urgency-banner a {
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 700;
        }

.urgency-banner i {
            margin-right: 6px;
        }

.header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease;
        }

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

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

.logo img {
            height: 40px;
            width: auto;
            object-fit: contain;
        }

.logo-text {
            font-weight: 800;
            font-size: 1.15rem;
            line-height: 1.2;
        }

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

.nav a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.92rem;
            transition: color 0.3s;
            white-space: nowrap;
        }

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

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

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

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

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

.hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

.hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.3;
        }

.hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(27,58,92,0.92) 0%, rgba(18,40,64,0.8) 100%);
        }

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

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

.hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(232,166,32,0.15);
            border: 1px solid rgba(232,166,32,0.3);
            color: var(--secondary);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
        }

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

.hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
            color: var(--white);
        }

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

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

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

.btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--secondary);
            color: var(--primary-dark);
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(232,166,32,0.3);
        }

.btn-primary:hover {
            background: var(--secondary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(232,166,32,0.4);
        }

.btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--white);
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            border: 2px solid rgba(255,255,255,0.3);
            transition: border-color 0.3s, background 0.3s;
        }

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

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

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

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

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

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

.form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--gray-200);
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-family: inherit;
            color: var(--text);
            transition: border-color 0.3s;
            background: var(--white);
        }

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

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

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

.btn-devis-submit:hover {
            background: var(--secondary-light);
            transform: translateY(-1px);
        }

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

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

.stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

.stat-item {
            text-align: center;
            color: var(--white);
        }

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

.stat-number {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.1;
        }

.stat-label {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
            margin-top: 4px;
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.about-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text);
        }

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

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

.zone-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow-sm);
            border-top: 4px solid var(--primary);
            transition: transform 0.3s;
        }

.zone-card:hover {
            transform: translateY(-3px);
        }

.zone-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

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

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

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

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

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

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

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

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

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

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

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

.horaires-card {
            max-width: 500px;
            margin: 0 auto;
            background: var(--primary);
            border-radius: var(--radius);
            padding: 36px;
            box-shadow: var(--shadow-lg);
            color: var(--white);
        }

.horaires-card-title {
            font-size: 1.3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

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

.horaire-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-size: 0.95rem;
        }

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

.horaire-day {
            font-weight: 600;
        }

.horaire-hours {
            color: var(--secondary);
            font-weight: 600;
        }

.horaire-closed {
            color: rgba(255,255,255,0.4);
        }

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

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

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

.contact-info-card {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: var(--white);
            padding: 20px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-sm);
        }

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

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

.contact-info-text a,
        .contact-info-text p {
            font-size: 0.93rem;
            color: var(--text-light);
            text-decoration: none;
            line-height: 1.5;
        }

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

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

.contact-form-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
        }

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

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

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

.map-container iframe {
            display: block;
        }

.footer {
            background: var(--primary-dark);
            color: rgba(255,255,255,0.7);
            padding-top: 50px;
            padding-bottom: 24px;
        }

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

.footer-brand .logo {
            color: var(--white);
            margin-bottom: 14px;
        }

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

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

.footer-title {
            font-weight: 700;
            font-size: 1rem;
            color: var(--white);
            margin-bottom: 16px;
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            font-size: 1.3rem;
            cursor: pointer;
            color: var(--gray-600);
            transition: color 0.2s;
        }

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

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

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

.floating-cta {
            display: none;
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 999;
            width: 60px;
            height: 60px;
            background: var(--secondary);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-size: 1.5rem;
            box-shadow: 0 4px 20px rgba(232,166,32,0.4);
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
            animation: pulse-cta 2s infinite;
        }

.floating-cta:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(232,166,32,0.5);
        }

@keyframes pulse-cta {
            0%, 100% { box-shadow: 0 4px 20px rgba(232,166,32,0.4); }
            50% { box-shadow: 0 4px 30px rgba(232,166,32,0.6); }
        }

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

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

@media (max-width: 1024px) {
            .hero h1 {
                font-size: 2.2rem;
            }

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

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

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

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

            .nav.active {
                display: flex;
            }

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

            .menu-toggle {
                display: block;
            }

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

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

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

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

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

            .btn-primary, .btn-secondary {
                text-align: center;
                justify-content: center;
            }

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

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

            .service-card {
                width: 100%;
                min-width: 0;
            }

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

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

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

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

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

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

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

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

            .floating-cta {
                bottom: 16px;
                right: 16px;
                width: 54px;
                height: 54px;
                font-size: 1.3rem;
            }

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

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

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

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

            .urgency-banner {
                font-size: 0.8rem;
                padding: 6px 16px;
            }
        }

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

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

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

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

.sct-tpl-zone { color: var(--text, #2c3e50); font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }

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

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

.sct-tpl-zone .sct-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.18;
}

.sct-tpl-zone .sct-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

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

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

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

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

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

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

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

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,166,32,0.15);
    border: 1px solid rgba(232,166,32,0.35);
    color: #f0be50;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
}

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

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

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

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

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

.sct-tpl-zone .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E8A620;
    color: #122840;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(232,166,32,0.3);
}

.sct-tpl-zone .sct-btn-primary:hover {
    background: #f0be50;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232,166,32,0.4);
}

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

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

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

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

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

.sct-tpl-zone .sct-hero-card {
    background: #fff;
    color: #2c3e50;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.sct-tpl-zone .sct-hero-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1B3A5C;
    margin-bottom: 6px;
}

.sct-tpl-zone .sct-hero-card-sub {
    font-size: 0.9rem;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

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

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

.sct-tpl-zone .sct-hero-card-list i {
    color: #E8A620;
    font-size: 1rem;
    margin-top: 3px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-hero-card-list strong {
    display: block;
    color: #1B3A5C;
    font-size: 0.82rem;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.sct-tpl-zone .sct-hero-card-cta {
    display: block;
    text-align: center;
    background: #1B3A5C;
    color: #fff;
    padding: 13px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
}

.sct-tpl-zone .sct-hero-card-cta:hover { background: #2a5a8a; }

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

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

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

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

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

.sct-tpl-zone .sct-stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
}

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

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

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

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

.sct-tpl-zone .sct-section-tag {
    display: inline-block;
    background: rgba(232,166,32,0.12);
    color: #E8A620;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1B3A5C;
    margin-bottom: 12px;
}

.sct-tpl-zone .sct-section-sub {
    font-size: 1.02rem;
    color: #5a6c7d;
    max-width: 680px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

.sct-tpl-zone .sct-zone-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f7f8fa;
    border: 1px solid #e2e6ea;
    color: #1B3A5C;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s;
}

.sct-tpl-zone .sct-zone-chip:hover {
    background: rgba(232,166,32,0.1);
    border-color: #E8A620;
}

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

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

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

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

.sct-tpl-zone .sct-usecase-image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(27,58,92,0.12);
}

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

.sct-tpl-zone .sct-usecase-text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1B3A5C;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-usecase-text p {
    font-size: 0.98rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 14px;
}

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

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

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

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

.sct-tpl-zone .sct-engagement-card {
    text-align: center;
    padding: 36px 24px;
    background: #f7f8fa;
    border-radius: 12px;
    border-top: 4px solid #E8A620;
    transition: transform 0.3s;
}

.sct-tpl-zone .sct-engagement-card:hover { transform: translateY(-3px); }

.sct-tpl-zone .sct-engagement-icon {
    font-size: 2rem;
    color: #1B3A5C;
    margin-bottom: 14px;
}

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

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

.sct-tpl-zone .sct-local-spec {
    background: linear-gradient(135deg, #1B3A5C, #122840);
    color: #fff;
    padding: 60px 0;
}

.sct-tpl-zone .sct-local-spec-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.sct-tpl-zone .sct-local-spec h2 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
}

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

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

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

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

.sct-tpl-zone .sct-faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(27,58,92,0.08);
    overflow: hidden;
}

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

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

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

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

.sct-tpl-zone .sct-faq-answer {
    padding: 0 24px 22px;
    font-size: 0.94rem;
    color: #5a6c7d;
    line-height: 1.75;
}

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

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

.sct-tpl-zone .sct-maillage-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1B3A5C;
    margin-bottom: 10px;
}

.sct-tpl-zone .sct-maillage-sub {
    font-size: 0.98rem;
    color: #5a6c7d;
    max-width: 640px;
    margin: 0 auto;
}

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

.sct-tpl-zone .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f7f8fa;
    border: 1px solid #e2e6ea;
    color: #1B3A5C;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.sct-tpl-zone .sct-maillage-list a::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #E8A620;
    font-size: 0.78rem;
}

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

.sct-tpl-zone .sct-cta-final {
    background: linear-gradient(135deg, #E8A620 0%, #f0be50 100%);
    padding: 70px 0;
    text-align: center;
}

.sct-tpl-zone .sct-cta-final h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #122840;
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-cta-final p {
    font-size: 1.05rem;
    color: #1B3A5C;
    margin-bottom: 30px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

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

.sct-tpl-zone .sct-cta-btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1B3A5C;
    color: #fff;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

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

.sct-tpl-zone .sct-cta-btn-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #1B3A5C;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.sct-tpl-zone .sct-cta-btn-light:hover {
    background: #f7f8fa;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-zone .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .sct-tpl-zone .sct-usecase-grid { grid-template-columns: 1fr; gap: 30px; }
    .sct-tpl-zone .sct-usecase-image img { height: 320px; }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 2.2rem; }
    .sct-tpl-zone .sct-section-title { font-size: 1.7rem; }
    .sct-tpl-zone .sct-maillage-title { font-size: 1.4rem; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-zone .sct-hero-subtitle { font-size: 0.98rem; }
    .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-card { padding: 24px; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .sct-tpl-zone .sct-stat-value { font-size: 1.8rem; }
    .sct-tpl-zone .sct-section { padding: 60px 0; }
    .sct-tpl-zone .sct-section-title { font-size: 1.5rem; }
    .sct-tpl-zone .sct-usecase-image img { height: 240px; }
    .sct-tpl-zone .sct-usecase-text h2 { font-size: 1.5rem; }
    .sct-tpl-zone .sct-cta-final h2 { font-size: 1.6rem; }
    .sct-tpl-zone .sct-cta-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-local-spec h2 { font-size: 1.4rem; }
    .sct-tpl-zone .sct-faq-question { font-size: 0.94rem; padding: 16px 18px; }
    .sct-tpl-zone .sct-faq-answer { padding: 0 18px 18px; }
    .sct-tpl-zone .sct-breadcrumb { font-size: 0.82rem; }
    .sct-tpl-zone .sct-maillage-title { font-size: 1.25rem; }
}

.sct-tpl-service-hub { color: var(--text, #2c3e50); font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }

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

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

.sct-tpl-service-hub .sct-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.18;
}

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

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

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

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

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

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

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

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

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,166,32,0.15);
    border: 1px solid rgba(232,166,32,0.35);
    color: #f0be50;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
}

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

.sct-tpl-service-hub .sct-hero-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 18px;
    color: #fff;
}

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

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

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

.sct-tpl-service-hub .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E8A620;
    color: #122840;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(232,166,32,0.3);
}

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: #f0be50;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232,166,32,0.4);
}

.sct-tpl-service-hub .sct-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.35);
    transition: border-color 0.3s, background 0.3s;
}

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

.sct-tpl-service-hub .sct-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: rgba(255,255,255,0.85);
    font-size: 0.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: #E8A620; }

.sct-tpl-service-hub .sct-hero-card {
    background: #fff;
    color: #2c3e50;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.sct-tpl-service-hub .sct-hero-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1B3A5C;
    margin-bottom: 6px;
}

.sct-tpl-service-hub .sct-hero-card-sub {
    font-size: 0.9rem;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

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

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

.sct-tpl-service-hub .sct-hero-card-list i {
    color: #E8A620;
    font-size: 1rem;
    margin-top: 3px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-hero-card-list strong {
    display: block;
    color: #1B3A5C;
    font-size: 0.82rem;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.sct-tpl-service-hub .sct-hero-card-cta {
    display: block;
    text-align: center;
    background: #1B3A5C;
    color: #fff;
    padding: 13px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
}

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

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

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

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

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

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

.sct-tpl-service-hub .sct-stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
}

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

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

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

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

.sct-tpl-service-hub .sct-section-tag {
    display: inline-block;
    background: rgba(232,166,32,0.12);
    color: #E8A620;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 14px;
}

.sct-tpl-service-hub .sct-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1B3A5C;
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-section-sub {
    font-size: 1.02rem;
    color: #5a6c7d;
    max-width: 680px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(27,58,92,0.12);
}

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

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

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

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

.sct-tpl-service-hub .sct-service-card-body h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #1B3A5C;
    margin-bottom: 10px;
}

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

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

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

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

.sct-tpl-service-hub .sct-processus-step {
    text-align: center;
    padding: 28px 18px;
    background: #f7f8fa;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s;
}

.sct-tpl-service-hub .sct-processus-step:hover { transform: translateY(-3px); }

.sct-tpl-service-hub .sct-processus-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: #E8A620;
    color: #122840;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.sct-tpl-service-hub .sct-processus-icon {
    font-size: 1.7rem;
    color: #1B3A5C;
    margin: 12px 0 14px;
}

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

.sct-tpl-service-hub .sct-processus-step p {
    font-size: 0.85rem;
    color: #5a6c7d;
    line-height: 1.55;
}

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

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

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

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

.sct-tpl-service-hub .sct-why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(27,58,92,0.12);
}

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

.sct-tpl-service-hub .sct-why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1B3A5C;
    margin-bottom: 8px;
}

.sct-tpl-service-hub .sct-why-card p {
    font-size: 0.88rem;
    color: #5a6c7d;
    line-height: 1.6;
}

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

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

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

.sct-tpl-service-hub .sct-usecase-image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(27,58,92,0.12);
}

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

.sct-tpl-service-hub .sct-usecase-text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1B3A5C;
    margin-bottom: 18px;
}

.sct-tpl-service-hub .sct-usecase-text p {
    font-size: 0.98rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 14px;
}

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

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

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

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

.sct-tpl-service-hub .sct-engagement-card {
    text-align: center;
    padding: 36px 24px;
    background: #fff;
    border-radius: 12px;
    border-top: 4px solid #E8A620;
    box-shadow: 0 2px 8px rgba(27,58,92,0.08);
    transition: transform 0.3s;
}

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

.sct-tpl-service-hub .sct-engagement-icon {
    font-size: 2rem;
    color: #1B3A5C;
    margin-bottom: 14px;
}

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

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

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

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

.sct-tpl-service-hub .sct-faq-item {
    background: #f7f8fa;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(27,58,92,0.08);
    overflow: hidden;
}

.sct-tpl-service-hub .sct-faq-question {
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 700;
    color: #1B3A5C;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    list-style: none;
}

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

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

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

.sct-tpl-service-hub .sct-faq-answer {
    padding: 0 24px 22px;
    font-size: 0.94rem;
    color: #5a6c7d;
    line-height: 1.75;
}

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

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

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

.sct-tpl-service-hub .sct-maillage-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1B3A5C;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-maillage-sub {
    font-size: 0.98rem;
    color: #5a6c7d;
    max-width: 640px;
    margin: 0 auto;
}

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

.sct-tpl-service-hub .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e2e6ea;
    color: #1B3A5C;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.sct-tpl-service-hub .sct-maillage-list a::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #E8A620;
    font-size: 0.78rem;
}

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

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

.sct-tpl-service-hub .sct-maillage-section + .sct-maillage-section .sct-maillage-list a::before {
    content: '\f0ad';
}

.sct-tpl-service-hub .sct-cta-final {
    background: linear-gradient(135deg, #E8A620 0%, #f0be50 100%);
    padding: 70px 0;
    text-align: center;
}

.sct-tpl-service-hub .sct-cta-final h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #122840;
    margin-bottom: 14px;
}

.sct-tpl-service-hub .sct-cta-final p {
    font-size: 1.05rem;
    color: #1B3A5C;
    margin-bottom: 30px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

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

.sct-tpl-service-hub .sct-cta-btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1B3A5C;
    color: #fff;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.sct-tpl-service-hub .sct-cta-btn-dark:hover {
    background: #122840;
    transform: translateY(-2px);
}

.sct-tpl-service-hub .sct-cta-btn-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #1B3A5C;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.sct-tpl-service-hub .sct-cta-btn-light:hover {
    background: #f7f8fa;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 30px; }
    .sct-tpl-service-hub .sct-usecase-image img { height: 320px; }
    .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 2.2rem; }
    .sct-tpl-service-hub .sct-section-title { font-size: 1.7rem; }
    .sct-tpl-service-hub .sct-maillage-title { font-size: 1.4rem; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-hub .sct-hero-subtitle { font-size: 0.98rem; }
    .sct-tpl-service-hub .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-hero-card { padding: 24px; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .sct-tpl-service-hub .sct-stat-value { font-size: 1.8rem; }
    .sct-tpl-service-hub .sct-section { padding: 60px 0; }
    .sct-tpl-service-hub .sct-section-title { font-size: 1.5rem; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-usecase-image img { height: 240px; }
    .sct-tpl-service-hub .sct-usecase-text h2 { font-size: 1.5rem; }
    .sct-tpl-service-hub .sct-cta-final h2 { font-size: 1.6rem; }
    .sct-tpl-service-hub .sct-cta-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-cta-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-faq-question { font-size: 0.94rem; padding: 16px 18px; }
    .sct-tpl-service-hub .sct-faq-answer { padding: 0 18px 18px; }
    .sct-tpl-service-hub .sct-breadcrumb { font-size: 0.82rem; }
    .sct-tpl-service-hub .sct-maillage-title { font-size: 1.25rem; }
}

.sct-tpl-service-city { color: var(--text, #2c3e50); font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }

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

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

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,166,32,0.15);
    border: 1px solid rgba(232,166,32,0.35);
    color: #f0be50;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
}

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

.sct-tpl-service-city .sct-hero-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 18px;
    color: #fff;
}

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

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

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

.sct-tpl-service-city .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E8A620;
    color: #122840;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(232,166,32,0.3);
}

.sct-tpl-service-city .sct-btn-primary:hover {
    background: #f0be50;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232,166,32,0.4);
}

.sct-tpl-service-city .sct-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.35);
    transition: border-color 0.3s, background 0.3s;
}

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

.sct-tpl-service-city .sct-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: rgba(255,255,255,0.85);
    font-size: 0.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: #E8A620; }

.sct-tpl-service-city .sct-hero-card {
    background: #fff;
    color: #2c3e50;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.sct-tpl-service-city .sct-hero-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1B3A5C;
    margin-bottom: 6px;
}

.sct-tpl-service-city .sct-hero-card-sub {
    font-size: 0.9rem;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

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

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

.sct-tpl-service-city .sct-hero-card-list i {
    color: #E8A620;
    font-size: 1rem;
    margin-top: 3px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.sct-tpl-service-city .sct-hero-card-list strong {
    display: block;
    color: #1B3A5C;
    font-size: 0.82rem;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.sct-tpl-service-city .sct-hero-card-cta {
    display: block;
    text-align: center;
    background: #1B3A5C;
    color: #fff;
    padding: 13px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
}

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

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

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

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

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

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

.sct-tpl-service-city .sct-stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
}

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

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

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

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

.sct-tpl-service-city .sct-section-tag {
    display: inline-block;
    background: rgba(232,166,32,0.12);
    color: #E8A620;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1B3A5C;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-section-sub {
    font-size: 1.02rem;
    color: #5a6c7d;
    max-width: 680px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(27,58,92,0.12);
}

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

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

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-processus-step {
    text-align: center;
    padding: 28px 18px;
    background: #f7f8fa;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s;
}

.sct-tpl-service-city .sct-processus-step:hover { transform: translateY(-3px); }

.sct-tpl-service-city .sct-processus-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: #E8A620;
    color: #122840;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.sct-tpl-service-city .sct-processus-icon {
    font-size: 1.7rem;
    color: #1B3A5C;
    margin: 12px 0 14px;
}

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

.sct-tpl-service-city .sct-processus-step p {
    font-size: 0.85rem;
    color: #5a6c7d;
    line-height: 1.55;
}

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

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

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

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

.sct-tpl-service-city .sct-why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(27,58,92,0.12);
}

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

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

.sct-tpl-service-city .sct-why-card p {
    font-size: 0.88rem;
    color: #5a6c7d;
    line-height: 1.6;
}

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

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

.sct-tpl-service-city .sct-zone-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f7f8fa;
    border: 1px solid #e2e6ea;
    color: #1B3A5C;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s;
}

.sct-tpl-service-city .sct-zone-chip:hover {
    background: rgba(232,166,32,0.1);
    border-color: #E8A620;
}

.sct-tpl-service-city .sct-zone-chip i { color: #E8A620; font-size: 0.8rem; }

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

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

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

.sct-tpl-service-city .sct-usecase-image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(27,58,92,0.12);
}

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

.sct-tpl-service-city .sct-usecase-text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1B3A5C;
    margin-bottom: 18px;
}

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

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

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

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

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

.sct-tpl-service-city .sct-engagement-card {
    text-align: center;
    padding: 36px 24px;
    background: #f7f8fa;
    border-radius: 12px;
    border-top: 4px solid #E8A620;
    transition: transform 0.3s;
}

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

.sct-tpl-service-city .sct-engagement-icon {
    font-size: 2rem;
    color: #1B3A5C;
    margin-bottom: 14px;
}

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

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

.sct-tpl-service-city .sct-local-spec {
    background: linear-gradient(135deg, #1B3A5C, #122840);
    color: #fff;
    padding: 60px 0;
}

.sct-tpl-service-city .sct-local-spec-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.sct-tpl-service-city .sct-local-spec h2 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
}

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

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

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

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

.sct-tpl-service-city .sct-faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(27,58,92,0.08);
    overflow: hidden;
}

.sct-tpl-service-city .sct-faq-question {
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 700;
    color: #1B3A5C;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    list-style: none;
}

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

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

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

.sct-tpl-service-city .sct-faq-answer {
    padding: 0 24px 22px;
    font-size: 0.94rem;
    color: #5a6c7d;
    line-height: 1.75;
}

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

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

.sct-tpl-service-city .sct-maillage-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1B3A5C;
    text-align: center;
    margin-bottom: 24px;
}

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

.sct-tpl-service-city .sct-maillage-list a {
    display: inline-block;
    background: #f7f8fa;
    border: 1px solid #e2e6ea;
    color: #1B3A5C;
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

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

.sct-tpl-service-city .sct-cta-final {
    background: linear-gradient(135deg, #E8A620 0%, #f0be50 100%);
    padding: 70px 0;
    text-align: center;
}

.sct-tpl-service-city .sct-cta-final h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #122840;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-cta-final p {
    font-size: 1.05rem;
    color: #1B3A5C;
    margin-bottom: 30px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

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

.sct-tpl-service-city .sct-cta-btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1B3A5C;
    color: #fff;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.sct-tpl-service-city .sct-cta-btn-dark:hover {
    background: #122840;
    transform: translateY(-2px);
}

.sct-tpl-service-city .sct-cta-btn-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #1B3A5C;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.sct-tpl-service-city .sct-cta-btn-light:hover {
    background: #f7f8fa;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-city .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-usecase-grid { grid-template-columns: 1fr; gap: 30px; }
    .sct-tpl-service-city .sct-usecase-image img { height: 320px; }
    .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 2.2rem; }
    .sct-tpl-service-city .sct-section-title { font-size: 1.7rem; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-city .sct-hero-subtitle { font-size: 0.98rem; }
    .sct-tpl-service-city .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-hero-card { padding: 24px; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .sct-tpl-service-city .sct-stat-value { font-size: 1.8rem; }
    .sct-tpl-service-city .sct-section { padding: 60px 0; }
    .sct-tpl-service-city .sct-section-title { font-size: 1.5rem; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-usecase-image img { height: 240px; }
    .sct-tpl-service-city .sct-usecase-text h2 { font-size: 1.5rem; }
    .sct-tpl-service-city .sct-cta-final h2 { font-size: 1.6rem; }
    .sct-tpl-service-city .sct-cta-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-cta-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-local-spec h2 { font-size: 1.4rem; }
    .sct-tpl-service-city .sct-faq-question { font-size: 0.94rem; padding: 16px 18px; }
    .sct-tpl-service-city .sct-faq-answer { padding: 0 18px 18px; }
    .sct-tpl-service-city .sct-breadcrumb { font-size: 0.82rem; }
}

@media (max-width: 768px) {
            .menu-toggle { display: inline-flex; }
            .nav {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                gap: 0;
                padding: 12px 20px 20px;
                box-shadow: var(--shadow-md);
                display: none;
            }
            .nav a {
                width: 100%;
                padding: 12px 0;
                border-bottom: 1px solid var(--gray-100);
            }
            .nav .btn-cta-nav {
                margin-top: 8px;
                text-align: center;
            }
        }

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

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

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

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

.sitemap-hero .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(232,166,32,0.15);
            border: 1px solid rgba(232,166,32,0.3);
            color: var(--secondary);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

.sitemap-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 16px;
            color: var(--white);
        }

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

.sitemap-hero p {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.85);
            max-width: 640px;
            margin: 0 auto;
        }

.breadcrumb {
            background: var(--off-white);
            padding: 16px 0;
            border-bottom: 1px solid var(--gray-200);
            font-size: 0.9rem;
        }

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

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

.breadcrumb span {
            color: var(--text-light);
            margin: 0 10px;
        }

.breadcrumb .current {
            color: var(--text-light);
            font-weight: 500;
        }

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

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

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

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

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

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

.sitemap-block-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
        }

.sitemap-block-subtitle {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 2px;
        }

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

.chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            color: var(--primary);
            padding: 12px 20px;
            border-radius: 50px;
            font-size: 0.92rem;
            font-weight: 600;
            text-decoration: none;
            border: 2px solid var(--gray-200);
            box-shadow: var(--shadow-sm);
            transition: all 0.25s ease;
        }

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

.chip i {
            color: var(--secondary);
            font-size: 0.9rem;
            transition: color 0.25s ease;
        }

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

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

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

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

.sitemap-sub-block {
            background: var(--white);
            border-radius: var(--radius);
            padding: 26px 28px;
            margin-bottom: 20px;
            box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--secondary);
        }

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

.sitemap-sub-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 18px;
        }

.sitemap-sub-title i {
            color: var(--secondary);
        }

.chip-sm {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--off-white);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            border: 1px solid var(--gray-200);
            transition: all 0.25s ease;
        }

.chip-sm:hover {
            background: var(--secondary);
            color: var(--primary-dark);
            border-color: var(--secondary);
            transform: translateY(-1px);
        }

.chip-sm i {
            font-size: 0.75rem;
            color: var(--text-light);
            transition: color 0.25s ease;
        }

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

.sitemap-cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            text-align: center;
            padding: 60px 30px;
            border-radius: var(--radius);
            margin-top: 30px;
            position: relative;
            overflow: hidden;
        }

.sitemap-cta::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(232,166,32,0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

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

.sitemap-cta h2 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--white);
        }

.sitemap-cta p {
            font-size: 1rem;
            color: rgba(255,255,255,0.85);
            margin-bottom: 24px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }

.btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--secondary);
            color: var(--primary-dark);
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(232,166,32,0.3);
            transition: all 0.3s;
        }

.btn-cta:hover {
            background: var(--secondary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(232,166,32,0.4);
        }

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

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

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

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

@media (max-width: 768px) {
            .sitemap-hero {
                padding-top: 130px;
                padding-bottom: 60px;
            }
            .sitemap-hero h1 {
                font-size: 2.1rem;
            }
            .sitemap-hero p {
                font-size: 1rem;
            }
            .sitemap-block-title {
                font-size: 1.25rem;
            }
            .sitemap-block-icon {
                width: 42px;
                height: 42px;
                font-size: 1.05rem;
            }
            .chip {
                padding: 10px 16px;
                font-size: 0.85rem;
            }
            .sitemap-sub-block {
                padding: 22px 20px;
            }
            .sitemap-cta h2 {
                font-size: 1.4rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }