.menu-check { display: none; }

.menu-toggle { cursor: pointer; }

@media (max-width: 768px) {
  .menu-check:checked ~ .navbar-menu { transform: translateY(0) !important; }
}

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

:root {
            --primary: #1B3A5C;
            --primary-light: #2a5580;
            --primary-dark: #0f2540;
            --gold: #C84545;
            --gold-light: #e6c46a;
            --gold-dark: #b8912e;
            --white: #ffffff;
            --off-white: #f8f9fa;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
            --shadow-md: 0 10px 25px -3px rgba(0,0,0,0.1);
            --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.15);
            --shadow-gold: 0 4px 20px rgba(212,168,67,0.3);
        }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5 { font-family: 'Manrope', sans-serif; font-weight: 700; line-height: 1.2; }

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

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

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

.navbar {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--gray-200);
            transition: all 0.3s ease;
            padding: 0;
        }

.navbar.scrolled {
            box-shadow: var(--shadow-md);
            border-bottom-color: transparent;
        }

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

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

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

.navbar-logo-text {
            font-family: 'Manrope', sans-serif;
            font-weight: 800; font-size: 1.1rem;
            color: var(--primary);
            line-height: 1.2;
        }

.navbar-logo-text small {
            display: block; font-size: 0.65rem; font-weight: 500;
            color: var(--gold); text-transform: uppercase; letter-spacing: 2px;
        }

.navbar-menu { display: flex; align-items: center; gap: 8px; list-style: none; }

.navbar-menu a {
            padding: 8px 16px; font-size: 0.88rem; font-weight: 500;
            color: var(--gray-600); border-radius: 8px;
            transition: all 0.3s ease;
        }

.navbar-menu a:hover { color: var(--primary); background: var(--gray-50); }

.navbar-cta {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 10px 24px !important;
            background: var(--gold) !important;
            color: var(--white) !important;
            font-weight: 600 !important;
            border-radius: 50px !important;
            box-shadow: var(--shadow-gold);
            transition: all 0.3s ease !important;
        }

.navbar-cta:hover {
            background: var(--gold-dark) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(212,168,67,0.4) !important;
        }

.menu-toggle {
            display: none; background: none; border: none; cursor: pointer;
            width: 36px; height: 36px;
            flex-direction: column; align-items: center; justify-content: center; gap: 5px;
        }

.menu-toggle span {
            display: block; width: 24px; height: 2px;
            background: var(--primary); border-radius: 2px;
            transition: all 0.3s ease;
        }

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

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

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

.trust-banner {
            background: var(--primary);
            padding: 12px 0;
            margin-top: 70px;
            overflow: hidden;
        }

.trust-banner-inner {
            display: flex; align-items: center; justify-content: center;
            gap: 40px; flex-wrap: wrap;
        }

.trust-item {
            display: flex; align-items: center; gap: 10px;
            color: var(--white); font-size: 0.85rem; font-weight: 500;
            white-space: nowrap;
        }

.trust-item i {
            color: var(--gold); font-size: 1.1rem;
        }

.hero-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: calc(100vh - 110px);
        }

.hero-form-side {
            display: flex; flex-direction: column; justify-content: center;
            padding: 60px 50px;
            background: var(--white);
        }

.hero-form-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(212,168,67,0.12); color: var(--gold-dark);
            padding: 6px 16px; border-radius: 50px;
            font-size: 0.8rem; font-weight: 600;
            margin-bottom: 20px; width: fit-content;
        }

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

.hero-form-title {
            font-size: 2rem; color: var(--primary);
            margin-bottom: 8px;
        }

.hero-form-subtitle {
            color: var(--gray-500); font-size: 0.95rem;
            margin-bottom: 28px;
        }

.devis-form { display: flex; flex-direction: column; gap: 14px; }

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

.devis-form .form-group { display: flex; flex-direction: column; gap: 4px; }

.devis-form label {
            font-size: 0.8rem; font-weight: 600; color: var(--gray-700);
        }

.devis-form input,
        .devis-form select,
        .devis-form textarea {
            padding: 10px 14px; border: 1.5px solid var(--gray-200);
            border-radius: 10px; font-family: 'Inter', sans-serif;
            font-size: 0.9rem; color: var(--gray-800);
            transition: all 0.3s ease;
            background: var(--gray-50);
        }

.devis-form input:focus,
        .devis-form select:focus,
        .devis-form textarea:focus {
            outline: none; border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(212,168,67,0.15);
            background: var(--white);
        }

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

.devis-form .btn-submit {
            padding: 14px 32px; background: var(--gold);
            color: var(--white); border: none; border-radius: 50px;
            font-family: 'Manrope', sans-serif;
            font-size: 1rem; font-weight: 700; cursor: pointer;
            transition: all 0.3s ease;
            display: flex; align-items: center; justify-content: center; gap: 10px;
        }

.devis-form .btn-submit:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-gold);
        }

.hero-image-side {
            position: relative; overflow: hidden;
            background: var(--primary);
        }

.hero-image-side img {
            width: 100%; height: 100%; object-fit: cover;
            opacity: 0.85;
        }

.hero-image-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(27,58,92,0.7) 0%, rgba(27,58,92,0.3) 100%);
            display: flex; flex-direction: column; justify-content: center; align-items: center;
            padding: 40px; text-align: center;
        }

.hero-image-overlay h2 {
            color: var(--white); font-size: 2.4rem;
            margin-bottom: 16px;
        }

.hero-image-overlay p {
            color: rgba(255,255,255,0.85); font-size: 1.1rem;
            max-width: 400px; margin-bottom: 30px;
        }

.hero-stats {
            display: flex; gap: 30px;
        }

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

.hero-stat-number {
            font-family: 'Manrope', sans-serif;
            font-size: 2.2rem; font-weight: 800;
            color: var(--gold);
        }

.hero-stat-label {
            font-size: 0.8rem; opacity: 0.85;
            text-transform: uppercase; letter-spacing: 1px;
        }

.section { padding: 80px 0; }

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

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

.section-header .section-label {
            display: inline-flex; align-items: center; gap: 8px;
            color: var(--gold); font-size: 0.85rem; font-weight: 600;
            text-transform: uppercase; letter-spacing: 2px;
            margin-bottom: 12px;
        }

.section-header .section-label::before,
        .section-header .section-label::after {
            content: ''; width: 30px; height: 1.5px; background: var(--gold);
        }

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

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

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

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

.service-card {
            flex: 0 1 calc(33.333% - 16px);
            max-width: 380px;
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--gray-200);
            transition: all 0.4s ease;
        }

.service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--gold);
        }

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

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

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

.service-card-img::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(27,58,92,0.4) 0%, transparent 50%);
        }

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

.service-card-body h3 {
            font-size: 1.1rem; color: var(--primary);
            margin-bottom: 8px;
        }

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

.cta-banner {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 50px 0;
            text-align: center;
        }

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

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

.cta-buttons {
            display: flex; align-items: center; justify-content: center; gap: 16px;
            flex-wrap: wrap;
        }

.btn {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 14px 32px; border-radius: 50px;
            font-family: 'Manrope', sans-serif;
            font-size: 0.95rem; font-weight: 700;
            cursor: pointer; border: none;
            transition: all 0.3s ease;
        }

.btn-gold {
            background: var(--gold); color: var(--white);
        }

.btn-gold:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-gold);
        }

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

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

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

.btn-primary:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

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

.about-image {
            position: relative; border-radius: 20px; overflow: hidden;
        }

.about-image img {
            width: 100%; height: 450px; object-fit: cover;
            border-radius: 20px;
        }

.about-image-badge {
            position: absolute; bottom: 24px; left: 24px;
            background: var(--gold); color: var(--white);
            padding: 14px 24px; border-radius: 14px;
            display: flex; align-items: center; gap: 12px;
            box-shadow: var(--shadow-lg);
        }

.about-image-badge i { font-size: 1.4rem; }

.about-image-badge span {
            font-family: 'Manrope', sans-serif;
            font-weight: 700; font-size: 0.95rem;
        }

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

.about-content p {
            color: var(--gray-600); margin-bottom: 14px;
            font-size: 0.95rem;
        }

.about-brands {
            margin-top: 20px; padding-top: 20px;
            border-top: 1px solid var(--gray-200);
        }

.about-brands p {
            font-size: 0.8rem; font-weight: 600; color: var(--gray-400);
            text-transform: uppercase; letter-spacing: 1px;
            margin-bottom: 8px;
        }

.about-brands-list {
            display: flex; gap: 20px; flex-wrap: wrap;
        }

.brand-tag {
            padding: 6px 16px; background: var(--gray-100);
            border-radius: 50px; font-size: 0.82rem;
            font-weight: 600; color: var(--primary);
        }

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

.advantage-card {
            text-align: center; padding: 32px 20px;
            background: var(--white);
            border-radius: 16px;
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
        }

.advantage-card:hover {
            border-color: var(--gold);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

.advantage-icon {
            width: 60px; height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 14px; margin: 0 auto 16px;
            display: flex; align-items: center; justify-content: center;
            color: var(--gold); font-size: 1.4rem;
        }

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

.advantage-card p {
            font-size: 0.85rem; color: var(--gray-500);
        }

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

.certification-card {
            text-align: center; padding: 28px 20px;
            background: var(--primary);
            border-radius: 16px;
            color: var(--white);
            border: 1px solid rgba(212,168,67,0.2);
            transition: all 0.3s ease;
        }

.certification-card:hover {
            border-color: var(--gold);
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(27,58,92,0.3);
        }

.certification-icon {
            width: 56px; height: 56px;
            background: rgba(212,168,67,0.15);
            border: 2px solid var(--gold);
            border-radius: 50%; margin: 0 auto 14px;
            display: flex; align-items: center; justify-content: center;
            color: var(--gold); font-size: 1.3rem;
        }

.certification-card h3 {
            font-size: 0.95rem; color: var(--gold);
            margin-bottom: 6px;
        }

.certification-card p {
            font-size: 0.8rem; color: rgba(255,255,255,0.7);
            line-height: 1.5;
        }

.realisations-grid {
            column-count: 3; column-gap: 16px;
        }

.realisation-item {
            break-inside: avoid; margin-bottom: 16px;
            border-radius: 12px; overflow: hidden;
            position: relative; cursor: pointer;
        }

.realisation-item img {
            width: 100%; display: block;
            transition: transform 0.5s ease;
        }

.realisation-item::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(27,58,92,0.6) 0%, transparent 60%);
            opacity: 0; transition: opacity 0.3s ease;
        }

.realisation-item:hover::after { opacity: 1; }

.realisation-item:hover img {
            transform: scale(1.05);
        }

.realisation-overlay {
            position: absolute; bottom: 16px; left: 16px;
            color: var(--white); z-index: 2;
            opacity: 0; transition: opacity 0.3s ease;
        }

.realisation-item:hover .realisation-overlay { opacity: 1; }

.realisation-overlay i {
            font-size: 1.4rem; color: var(--gold);
        }

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

.avis-card {
            background: var(--white);
            border-radius: 16px; padding: 28px;
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
            position: relative;
        }

.avis-card::before {
            content: '\201C'; position: absolute;
            top: 16px; right: 24px;
            font-size: 4rem; color: var(--gold);
            opacity: 0.15; font-family: Georgia, serif;
            line-height: 1;
        }

.avis-card:hover {
            border-color: var(--gold);
            box-shadow: var(--shadow-md);
        }

.avis-stars {
            display: flex; gap: 3px; margin-bottom: 12px;
        }

.avis-stars i { color: var(--gold); font-size: 0.85rem; }

.avis-text {
            font-size: 0.9rem; color: var(--gray-600);
            line-height: 1.7; margin-bottom: 16px;
            font-style: italic;
        }

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

.avis-avatar {
            width: 42px; height: 42px;
            background: var(--primary);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: var(--gold); font-weight: 700;
            font-family: 'Manrope', sans-serif;
            font-size: 0.9rem;
        }

.avis-name {
            font-weight: 600; color: var(--primary);
            font-size: 0.9rem;
        }

.avis-source {
            font-size: 0.75rem; color: var(--gray-400);
        }

.avis-google-link {
            text-align: center; margin-top: 30px;
        }

.avis-google-link a {
            display: inline-flex; align-items: center; gap: 8px;
            color: var(--primary); font-weight: 600;
            font-size: 0.9rem; padding: 10px 24px;
            border: 2px solid var(--primary);
            border-radius: 50px;
            transition: all 0.3s ease;
        }

.avis-google-link a:hover {
            background: var(--primary);
            color: var(--white);
        }

.horaires-wrapper {
            max-width: 500px; margin: 0 auto;
            background: var(--white);
            border-radius: 20px; padding: 36px;
            border: 1px solid var(--gray-200);
            box-shadow: var(--shadow);
        }

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

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

.horaires-row.today {
            background: rgba(212,168,67,0.08);
            margin: 0 -16px; padding: 12px 16px;
            border-radius: 8px;
        }

.horaires-day {
            font-weight: 600; color: var(--gray-700);
            font-size: 0.9rem;
        }

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

.horaires-closed {
            color: #ef4444; font-weight: 600;
        }

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

.contact-form-wrapper {
            background: var(--white);
            border-radius: 20px; padding: 36px;
            border: 1px solid var(--gray-200);
            box-shadow: var(--shadow);
        }

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

#contactForm { display: flex; flex-direction: column; gap: 14px; }

#contactForm .form-group { display: flex; flex-direction: column; gap: 4px; }

#contactForm label {
            font-size: 0.8rem; font-weight: 600; color: var(--gray-700);
        }

#contactForm input,
        #contactForm textarea {
            padding: 10px 14px;
            border: 1.5px solid var(--gray-200);
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem; color: var(--gray-800);
            transition: all 0.3s ease;
            background: var(--gray-50);
        }

#contactForm input:focus,
        #contactForm textarea:focus {
            outline: none; border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(212,168,67,0.15);
            background: var(--white);
        }

#contactForm textarea { resize: vertical; }

#contactForm button[type="submit"] {
            padding: 14px 32px;
            background: var(--primary);
            color: var(--white);
            border: none; border-radius: 50px;
            font-family: 'Manrope', sans-serif;
            font-size: 0.95rem; font-weight: 700;
            cursor: pointer; transition: all 0.3s ease;
            display: flex; align-items: center; justify-content: center; gap: 8px;
        }

#contactForm button[type="submit"]:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

.contact-info-side {
            display: flex; flex-direction: column; gap: 24px;
        }

.contact-info-card {
            display: flex; align-items: flex-start; gap: 16px;
            padding: 20px; background: var(--gray-50);
            border-radius: 14px;
            transition: all 0.3s ease;
        }

.contact-info-card:hover {
            background: var(--white);
            box-shadow: var(--shadow);
        }

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

.contact-info-text h4 {
            font-size: 0.9rem; color: var(--primary);
            margin-bottom: 4px;
        }

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

.contact-info-text a {
            color: var(--gold); font-weight: 600;
        }

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

.map-wrapper {
            border-radius: 16px; overflow: hidden;
            border: 1px solid var(--gray-200);
            box-shadow: var(--shadow);
        }

.map-wrapper iframe {
            width: 100%; height: 280px; display: block;
        }

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

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

.footer-brand h3 {
            color: var(--white); font-size: 1.3rem;
            margin-bottom: 12px;
        }

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

.footer h4 {
            color: var(--gold); font-size: 0.85rem;
            text-transform: uppercase; letter-spacing: 2px;
            margin-bottom: 16px;
        }

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

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

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

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

.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.8rem;
        }

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

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

.whatsapp-float {
            position: fixed; bottom: 24px; right: 24px;
            z-index: 999; display: flex; align-items: center; gap: 10px;
        }

.whatsapp-tooltip {
            background: var(--white);
            color: var(--gray-700);
            padding: 8px 16px;
            border-radius: 10px;
            font-size: 0.82rem; font-weight: 600;
            box-shadow: var(--shadow-md);
            white-space: nowrap;
            opacity: 0;
            transform: translateX(10px);
            transition: all 0.3s ease;
            pointer-events: none;
        }

.whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            transform: translateX(0);
        }

.whatsapp-btn {
            width: 60px; height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: var(--white); font-size: 1.7rem;
            box-shadow: 0 4px 20px rgba(37,211,102,0.4);
            transition: all 0.3s ease;
            animation: whatsappPulse 2s infinite;
        }

.whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 28px rgba(37,211,102,0.5);
        }

@keyframes whatsappPulse {
            0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
            50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
        }

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

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

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

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

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

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

.modal-content p {
            font-size: 0.88rem; color: var(--gray-600);
            margin-bottom: 8px;
        }

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

.lightbox-overlay {
            position: fixed; inset: 0; z-index: 3000;
            background: rgba(0,0,0,0.92);
            display: none; align-items: center; justify-content: center;
            padding: 20px; cursor: pointer;
        }

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

.lightbox-overlay img {
            max-width: 90%; max-height: 90vh;
            object-fit: contain; border-radius: 8px;
        }

.lightbox-close {
            position: absolute; top: 20px; right: 24px;
            color: var(--white); font-size: 2rem;
            cursor: pointer; z-index: 3001;
            background: none; border: none;
            transition: transform 0.3s ease;
        }

.lightbox-close:hover { transform: scale(1.2); }

.lightbox-nav {
            position: absolute; top: 50%;
            transform: translateY(-50%);
            color: var(--white); font-size: 2.5rem;
            cursor: pointer; background: none; border: none;
            transition: all 0.3s ease; padding: 10px;
            z-index: 3001;
        }

.lightbox-nav:hover { color: var(--gold); }

.lightbox-prev { left: 20px; }

.lightbox-next { right: 20px; }

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

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

.fade-in-delay-1 { transition-delay: 0.1s; }

.fade-in-delay-2 { transition-delay: 0.2s; }

.fade-in-delay-3 { transition-delay: 0.3s; }

.fade-in-delay-4 { transition-delay: 0.4s; }

@media (max-width: 1024px) {
            .hero-split { grid-template-columns: 1fr; }
            .hero-image-side { min-height: 400px; order: -1; }
            .hero-form-side { padding: 40px 30px; order: 1; }
            .about-grid { grid-template-columns: 1fr; gap: 30px; }
            .advantages-grid { grid-template-columns: repeat(2, 1fr); }
            .certifications-grid { grid-template-columns: repeat(2, 1fr); }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .realisations-grid { column-count: 2; }
        }

@media (max-width: 768px) {
            .navbar-inner { padding: 10px 16px; }
            .navbar-logo img { height: 36px; }
            .navbar-logo-text { font-size: 0.95rem; }
            .navbar-logo-text small { font-size: 0.6rem; letter-spacing: 1px; }

            .navbar-menu {
                position: fixed; top: 60px; left: 0; right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow-lg);
                transform: translateY(-120%);
                transition: transform 0.3s ease;
                z-index: 999;
            }

            .navbar-menu.active { transform: translateY(0); }

            .navbar-menu a { padding: 12px 20px; width: 100%; }

            .menu-toggle { display: flex; }

            .trust-banner { margin-top: 60px; }
            .trust-banner-inner { gap: 16px; }
            .trust-item { font-size: 0.8rem; }

            .hero-form-title { font-size: 1.6rem; }
            .hero-image-overlay h2 { font-size: 1.8rem; }
            .section-header h2 { font-size: 1.6rem; }
            .about-content h2 { font-size: 1.6rem; }

            .service-card { flex: 0 1 100%; max-width: 100%; }
            .avis-grid { grid-template-columns: 1fr; }
            .hero-stats { gap: 20px; }
            .hero-stat-number { font-size: 1.6rem; }

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

@media (max-width: 640px) {
            .navbar-inner { padding: 8px 12px; }
            .navbar-logo img { height: 30px; }
            .navbar-logo-text { font-size: 0.8rem; }
            .navbar-logo-text small { font-size: 0.55rem; letter-spacing: 1px; }
            .navbar-menu { top: 50px; }

            .trust-banner { margin-top: 50px; padding: 8px 0; }
            .trust-banner-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px; justify-items: center; }
            .trust-item { font-size: 0.72rem; gap: 6px; }
            .trust-item i { font-size: 0.85rem; }

            .hero-form-side { padding: 30px 20px; }
            .section { padding: 50px 0; }
            .advantages-grid { grid-template-columns: 1fr; }
            .certifications-grid { grid-template-columns: 1fr; }
            .realisations-grid { column-count: 2; column-gap: 10px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .contact-form-wrapper { padding: 24px 20px; }
        }

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

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

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

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

.sct-tpl-service-city .sct-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(200,69,69,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

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

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

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

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

.sct-tpl-service-city .sct-breadcrumb a {
    color: #1B3A5C;
    transition: color 0.3s ease;
}

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

.sct-tpl-service-city .sct-bc-sep { color: #d1d5db; }

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

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

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(200,69,69,0.1);
    color: #b8392e;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}

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

.sct-tpl-service-city .sct-hero-text h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #1B3A5C;
    line-height: 1.15;
    margin-bottom: 20px;
}

.sct-tpl-service-city .sct-hero-text h1 strong {
    color: #C84545;
    font-weight: 800;
}

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 28px;
}

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

.sct-tpl-service-city .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.sct-tpl-service-city .sct-btn-primary {
    background: #C84545;
    color: #fff;
    box-shadow: 0 4px 18px rgba(200,69,69,0.3);
}

.sct-tpl-service-city .sct-btn-primary:hover {
    background: #b8392e;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(200,69,69,0.4);
}

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

.sct-tpl-service-city .sct-btn-outline:hover {
    background: #1B3A5C;
    color: #fff;
    transform: translateY(-2px);
}

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

.sct-tpl-service-city .sct-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #4b5563;
    font-weight: 500;
}

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

.sct-tpl-service-city .sct-hero-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 25px 50px -12px rgba(27,58,92,0.15);
}

.sct-tpl-service-city .sct-hero-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    color: #1B3A5C;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f3f4f6;
}

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

.sct-tpl-service-city .sct-hero-card-info i {
    color: #C84545;
    font-size: 1.05rem;
    width: 22px;
    flex-shrink: 0;
    margin-top: 3px;
}

.sct-tpl-service-city .sct-hero-card-info-content {
    flex: 1;
    min-width: 0;
}

.sct-tpl-service-city .sct-hero-card-info-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.sct-tpl-service-city .sct-hero-card-info-value {
    font-size: 0.92rem;
    color: #1f2937;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.sct-tpl-service-city .sct-hero-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 18px;
    padding: 14px 24px;
    background: #C84545;
    color: #fff;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-hero-card-cta:hover {
    background: #b8392e;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(200,69,69,0.35);
}

.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: 24px;
}

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

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

.sct-tpl-service-city .sct-stat-value {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #C84545;
    line-height: 1;
    margin-bottom: 8px;
}

.sct-tpl-service-city .sct-stat-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.8);
}

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

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

.sct-tpl-service-city .sct-intro-section p {
    font-size: 1.02rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 18px;
}

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

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

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

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

.sct-tpl-service-city .sct-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C84545;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-section-tag::before,
.sct-tpl-service-city .sct-section-tag::after {
    content: '';
    width: 28px;
    height: 1.5px;
    background: #C84545;
}

.sct-tpl-service-city .sct-section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 2.1rem;
    color: #1B3A5C;
    margin-bottom: 14px;
    line-height: 1.2;
}

.sct-tpl-service-city .sct-section-subtitle {
    color: #6b7280;
    font-size: 1rem;
    max-width: 650px;
    margin: 0 auto;
}

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

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

.sct-tpl-service-city .sct-service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.4s ease;
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(27,58,92,0.18);
    border-color: #C84545;
}

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

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

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

.sct-tpl-service-city .sct-service-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,58,92,0.4) 0%, transparent 50%);
}

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

.sct-tpl-service-city .sct-service-card-body h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    color: #1B3A5C;
    margin-bottom: 10px;
}

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

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

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

.sct-tpl-service-city .sct-step {
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-step:hover {
    border-color: #C84545;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(27,58,92,0.12);
}

.sct-tpl-service-city .sct-step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: #C84545;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
}

.sct-tpl-service-city .sct-step-icon {
    width: 50px;
    height: 50px;
    background: rgba(27,58,92,0.08);
    border-radius: 12px;
    margin: 12px auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1B3A5C;
    font-size: 1.3rem;
}

.sct-tpl-service-city .sct-step h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: #1B3A5C;
    margin-bottom: 8px;
}

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

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

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

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

.sct-tpl-service-city .sct-why-card {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-why-card:hover {
    border-color: #C84545;
    box-shadow: 0 10px 25px -5px rgba(27,58,92,0.12);
    transform: translateY(-4px);
}

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

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

.sct-tpl-service-city .sct-why-card p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.55;
}

.sct-tpl-service-city .sct-zones-section {
    padding: 80px 0;
    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-zones-list span,
.sct-tpl-service-city .sct-zones-list a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: #f3f4f6;
    color: #1B3A5C;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.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: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(27,58,92,0.2);
}

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

.sct-tpl-service-city .sct-usecase-content h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.9rem;
    color: #1B3A5C;
    margin-bottom: 18px;
    line-height: 1.2;
}

.sct-tpl-service-city .sct-usecase-content p {
    font-size: 0.98rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 14px;
}

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

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

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

.sct-tpl-service-city .sct-engagement-card {
    text-align: center;
    padding: 36px 24px;
    background: #1B3A5C;
    border-radius: 16px;
    color: #fff;
    border: 1px solid rgba(200,69,69,0.2);
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-engagement-card:hover {
    border-color: #C84545;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(27,58,92,0.3);
}

.sct-tpl-service-city .sct-engagement-icon {
    width: 60px;
    height: 60px;
    background: rgba(200,69,69,0.18);
    border: 2px solid #C84545;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C84545;
    font-size: 1.4rem;
}

.sct-tpl-service-city .sct-engagement-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    color: #C84545;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-engagement-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

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

.sct-tpl-service-city .sct-local-spec-wrapper {
    max-width: 850px;
    margin: 0 auto;
    padding: 36px;
    background: linear-gradient(135deg, rgba(200,69,69,0.05) 0%, rgba(27,58,92,0.05) 100%);
    border-left: 4px solid #C84545;
    border-radius: 12px;
}

.sct-tpl-service-city .sct-local-spec-wrapper h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    color: #1B3A5C;
    margin-bottom: 16px;
}

.sct-tpl-service-city .sct-local-spec-wrapper p {
    color: #4b5563;
    font-size: 0.96rem;
    line-height: 1.7;
}

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

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

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

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

.sct-tpl-service-city .sct-faq-item summary {
    padding: 18px 24px;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    color: #1B3A5C;
    font-size: 0.98rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

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

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

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

.sct-tpl-service-city .sct-faq-answer {
    padding: 0 24px 20px;
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.7;
}

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

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

.sct-tpl-service-city .sct-maillage-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    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;
    max-width: 900px;
    margin: 0 auto;
}

.sct-tpl-service-city .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: #fff;
    color: #1B3A5C;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.sct-tpl-service-city .sct-cta-final::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(200,69,69,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.sct-tpl-service-city .sct-cta-final-inner {
    position: relative;
    z-index: 2;
}

.sct-tpl-service-city .sct-cta-final h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 14px;
}

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

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

.sct-tpl-service-city .sct-cta-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    background: #C84545;
    color: #fff;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-cta-btn-gold:hover {
    background: #b8392e;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200,69,69,0.4);
}

.sct-tpl-service-city .sct-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-cta-btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    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-hero-text h1 { font-size: 2.2rem; }
    .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);
        row-gap: 32px;
    }
    .sct-tpl-service-city .sct-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sct-tpl-service-city .sct-engagements-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .sct-tpl-service-city .sct-usecase-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .sct-tpl-service-city .sct-usecase-image img { height: 320px; }
    .sct-tpl-service-city .sct-section-title { font-size: 1.8rem; }
    .sct-tpl-service-city .sct-usecase-content h2 { font-size: 1.6rem; }
    .sct-tpl-service-city .sct-cta-final h2 { 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.95rem; }
    .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 { gap: 24px; }
    .sct-tpl-service-city .sct-stat-value { font-size: 1.8rem; }
    .sct-tpl-service-city .sct-services-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .sct-tpl-service-city .sct-processus-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
    .sct-tpl-service-city .sct-why-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .sct-tpl-service-city .sct-section { padding: 60px 0; }
    .sct-tpl-service-city .sct-intro-section { padding: 60px 0; }
    .sct-tpl-service-city .sct-zones-section,
    .sct-tpl-service-city .sct-usecase-section,
    .sct-tpl-service-city .sct-faq-section { padding: 60px 0; }
    .sct-tpl-service-city .sct-section-title { font-size: 1.55rem; }
    .sct-tpl-service-city .sct-usecase-content h2 { font-size: 1.4rem; }
    .sct-tpl-service-city .sct-usecase-image img { height: 240px; }
    .sct-tpl-service-city .sct-local-spec-wrapper { padding: 24px; }
    .sct-tpl-service-city .sct-local-spec-wrapper h2 { font-size: 1.25rem; }
    .sct-tpl-service-city .sct-cta-final h2 { font-size: 1.5rem; }
    .sct-tpl-service-city .sct-cta-buttons { flex-direction: column; }
    .sct-tpl-service-city .sct-cta-buttons > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-faq-item summary {
        font-size: 0.92rem;
        padding: 16px 18px;
    }
    .sct-tpl-service-city .sct-faq-answer { padding: 0 18px 18px; }
}

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

.sct-tpl-service-hub h1, .sct-tpl-service-hub h2, .sct-tpl-service-hub h3, .sct-tpl-service-hub h4 { font-family: 'Manrope', sans-serif; font-weight: 700; line-height: 1.2; color: #1B3A5C; }

.sct-tpl-service-hub .sct-breadcrumb-wrap { background: #f8f9fa; padding: 14px 0; margin-top: 70px; border-bottom: 1px solid #e5e7eb; }

.sct-tpl-service-hub .sct-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; max-width: 100%; overflow-wrap: anywhere; font-size: 0.85rem; color: #6b7280; }

.sct-tpl-service-hub .sct-breadcrumb a { color: #1B3A5C; font-weight: 500; }

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

.sct-tpl-service-hub .sct-breadcrumb i { font-size: 0.7rem; color: #9ca3af; }

.sct-tpl-service-hub .sct-breadcrumb span[aria-current] { color: #C84545; font-weight: 600; }

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

.sct-tpl-service-hub .sct-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(200,69,69,0.18) 0%, transparent 70%); border-radius: 50%; }

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

.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-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,69,69,0.18); color: #e6c46a; padding: 8px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; margin-bottom: 20px; border: 1px solid rgba(230,196,106,0.3); }

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

.sct-tpl-service-hub .sct-hero-text h1 strong { color: #e6c46a; font-weight: 800; }

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

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

.sct-tpl-service-hub .sct-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 50px; font-family: 'Manrope', sans-serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; border: none; transition: all 0.3s ease; text-decoration: none; }

.sct-tpl-service-hub .sct-btn-gold { background: #C84545; color: #fff; box-shadow: 0 4px 20px rgba(200,69,69,0.35); }

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

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

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

.sct-tpl-service-hub .sct-hero-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 30px; }

.sct-tpl-service-hub .sct-hero-card-img { border-radius: 14px; overflow: hidden; margin-bottom: 20px; height: 220px; }

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

.sct-tpl-service-hub .sct-hero-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 10px; }

.sct-tpl-service-hub .sct-hero-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 16px; }

.sct-tpl-service-hub .sct-hero-card-trust { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.12); }

.sct-tpl-service-hub .sct-hero-card-trust i { color: #e6c46a; font-size: 1.4rem; }

.sct-tpl-service-hub .sct-hero-card-trust span { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 500; }

@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%; }
}

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

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

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

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

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

.sct-tpl-service-hub .sct-stat-value { font-family: 'Manrope', sans-serif; font-size: 2.4rem; font-weight: 800; color: #C84545; line-height: 1; margin-bottom: 8px; }

.sct-tpl-service-hub .sct-stat-label { font-size: 0.85rem; color: #6b7280; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

@media (max-width: 768px) {
    .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.9rem; }
}

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

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

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

.sct-tpl-service-hub .sct-section-tag { display: inline-flex; align-items: center; gap: 8px; color: #C84545; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }

.sct-tpl-service-hub .sct-section-tag::before, .sct-tpl-service-hub .sct-section-tag::after { content: ''; width: 30px; height: 1.5px; background: #C84545; }

.sct-tpl-service-hub .sct-section-title { font-size: 2.2rem; color: #1B3A5C; margin-bottom: 14px; }

.sct-tpl-service-hub .sct-section-desc { color: #6b7280; font-size: 1rem; }

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-section { padding: 60px 0; }
    .sct-tpl-service-hub .sct-section-title { font-size: 1.7rem; }
}

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

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

.sct-tpl-service-hub .sct-intro-content p:first-of-type::first-letter { font-family: 'Manrope', sans-serif; font-size: 3.6rem; font-weight: 800; color: #C84545; float: left; line-height: 0.9; padding: 6px 12px 0 0; }

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

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

.sct-tpl-service-hub .sct-service-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #e5e7eb; transition: all 0.4s ease; }

.sct-tpl-service-hub .sct-service-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); border-color: #C84545; }

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

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

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

.sct-tpl-service-hub .sct-service-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,58,92,0.5) 0%, transparent 50%); }

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

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

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

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

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

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

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

.sct-tpl-service-hub .sct-step-card { background: #fff; border-radius: 14px; padding: 28px 20px; text-align: center; border: 1px solid #e5e7eb; position: relative; transition: all 0.3s ease; }

.sct-tpl-service-hub .sct-step-card:hover { border-color: #C84545; transform: translateY(-4px); box-shadow: 0 10px 25px -3px rgba(0,0,0,0.1); }

.sct-tpl-service-hub .sct-step-number { width: 48px; height: 48px; background: linear-gradient(135deg, #1B3A5C, #2a5580); color: #e6c46a; font-family: 'Manrope', sans-serif; font-size: 1.3rem; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }

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

.sct-tpl-service-hub .sct-step-card p { font-size: 0.85rem; color: #6b7280; line-height: 1.55; }

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

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

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

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

.sct-tpl-service-hub .sct-why-card { text-align: center; padding: 32px 22px; background: #fff; border-radius: 16px; border: 1px solid #e5e7eb; transition: all 0.3s ease; }

.sct-tpl-service-hub .sct-why-card:hover { border-color: #C84545; box-shadow: 0 10px 25px -3px rgba(0,0,0,0.1); transform: translateY(-4px); }

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

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

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

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

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

.sct-tpl-service-hub .sct-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: 20px; overflow: hidden; position: relative; }

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

.sct-tpl-service-hub .sct-usecase-image-badge { position: absolute; bottom: 24px; left: 24px; background: #C84545; color: #fff; padding: 14px 22px; border-radius: 14px; display: flex; align-items: center; gap: 12px; box-shadow: 0 10px 25px -3px rgba(0,0,0,0.2); }

.sct-tpl-service-hub .sct-usecase-image-badge i { font-size: 1.4rem; }

.sct-tpl-service-hub .sct-usecase-image-badge span { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.92rem; }

.sct-tpl-service-hub .sct-usecase-content h2 { font-size: 2rem; margin-bottom: 22px; }

.sct-tpl-service-hub .sct-usecase-content p { color: #4b5563; font-size: 0.96rem; margin-bottom: 14px; line-height: 1.7; }

.sct-tpl-service-hub .sct-usecase-list { list-style: none; padding: 0; margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }

.sct-tpl-service-hub .sct-usecase-list li { display: flex; align-items: flex-start; gap: 12px; color: #374151; font-size: 0.95rem; }

.sct-tpl-service-hub .sct-usecase-list li i { color: #C84545; font-size: 1.05rem; margin-top: 4px; flex-shrink: 0; }

@media (max-width: 992px) { .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; } .sct-tpl-service-hub .sct-usecase-image img { height: 360px; } }

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

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

.sct-tpl-service-hub .sct-engagement-card { background: #1B3A5C; border-radius: 16px; padding: 36px 28px; color: #fff; border: 1px solid rgba(230,196,106,0.18); text-align: center; transition: all 0.3s ease; }

.sct-tpl-service-hub .sct-engagement-card:hover { border-color: #e6c46a; transform: translateY(-4px); box-shadow: 0 15px 40px rgba(27,58,92,0.35); }

.sct-tpl-service-hub .sct-engagement-icon { width: 64px; height: 64px; background: rgba(230,196,106,0.15); border: 2px solid #e6c46a; border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; color: #e6c46a; font-size: 1.4rem; }

.sct-tpl-service-hub .sct-engagement-card h3 { font-size: 1.1rem; color: #e6c46a; margin-bottom: 12px; }

.sct-tpl-service-hub .sct-engagement-card p { font-size: 0.9rem; color: rgba(255,255,255,0.78); line-height: 1.6; }

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

.sct-tpl-service-hub .sct-faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }

.sct-tpl-service-hub .sct-faq-item { background: #fff; border-radius: 12px; border: 1px solid #e5e7eb; overflow: hidden; transition: all 0.3s ease; }

.sct-tpl-service-hub .sct-faq-item:hover { border-color: #C84545; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08); }

.sct-tpl-service-hub .sct-faq-item summary { list-style: none; padding: 22px 26px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 1rem; color: #1B3A5C; }

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

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

.sct-tpl-service-hub .sct-faq-item[open] summary::after { content: '\f068'; }

.sct-tpl-service-hub .sct-faq-item-body { padding: 0 26px 22px; color: #4b5563; font-size: 0.94rem; line-height: 1.7; }

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

.sct-tpl-service-hub .sct-maillage-cities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 1100px; margin: 0 auto; }

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

.sct-tpl-service-hub .sct-maillage-cities a { display: flex; align-items: center; gap: 10px; padding: 14px 18px; background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; font-size: 0.9rem; color: #1B3A5C; font-weight: 500; transition: all 0.3s ease; overflow-wrap: anywhere; }

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

.sct-tpl-service-hub .sct-maillage-cities a i { color: #C84545; font-size: 0.8rem; transition: color 0.3s ease; flex-shrink: 0; }

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

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

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

@media (max-width: 480px) { .sct-tpl-service-hub .sct-maillage-cities { grid-template-columns: 1fr; } }

.sct-tpl-service-hub .sct-maillage-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1000px; margin: 0 auto; }

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

.sct-tpl-service-hub .sct-maillage-services a { display: flex; align-items: center; gap: 14px; padding: 20px 22px; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; color: #1B3A5C; font-weight: 600; font-size: 0.95rem; transition: all 0.3s ease; overflow-wrap: anywhere; }

.sct-tpl-service-hub .sct-maillage-services a:hover { border-color: #C84545; box-shadow: 0 8px 20px rgba(0,0,0,0.08); transform: translateY(-3px); }

.sct-tpl-service-hub .sct-maillage-services a i { width: 40px; height: 40px; background: rgba(200,69,69,0.1); color: #C84545; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; }

@media (max-width: 768px) { .sct-tpl-service-hub .sct-maillage-services { grid-template-columns: 1fr; } }

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

.sct-tpl-service-hub .sct-cta-final::before { content: ''; position: absolute; top: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(200,69,69,0.2) 0%, transparent 70%); border-radius: 50%; }

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

.sct-tpl-service-hub .sct-cta-final h2 { color: #fff; font-size: 2.1rem; margin-bottom: 14px; }

.sct-tpl-service-hub .sct-cta-final p { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 30px; }

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

@media (max-width: 640px) { .sct-tpl-service-hub .sct-cta-final h2 { font-size: 1.6rem; } .sct-tpl-service-hub .sct-cta-final-btns { flex-direction: column; } .sct-tpl-service-hub .sct-cta-final-btns > * { width: 100%; justify-content: center; } }

.sct-tpl-zone { padding-top: 70px; }

.sct-tpl-zone .sct-breadcrumb-wrap { background: #f8f9fa; border-bottom: 1px solid #e5e7eb; padding: 14px 0; }

.sct-tpl-zone .sct-breadcrumb {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    max-width: 100%; overflow-wrap: anywhere;
    font-size: 0.85rem; color: #6b7280;
}

.sct-tpl-zone .sct-breadcrumb a { color: #1B3A5C; font-weight: 500; }

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

.sct-tpl-zone .sct-breadcrumb i { font-size: 0.7rem; color: #9ca3af; }

.sct-tpl-zone .sct-breadcrumb .sct-current { color: #C84545; font-weight: 600; }

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

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

.sct-tpl-zone .sct-hero-grid {
    position: relative; z-index: 1;
    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-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(200, 69, 69, 0.18); color: #f5d4d4;
    padding: 7px 18px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; margin-bottom: 18px;
    border: 1px solid rgba(200, 69, 69, 0.35);
}

.sct-tpl-zone .sct-hero-text h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.8rem; line-height: 1.15;
    color: #fff; margin-bottom: 18px;
}

.sct-tpl-zone .sct-hero-text h1 strong { color: #C84545; font-weight: 800; }

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

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

.sct-tpl-zone .sct-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: 50px;
    font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.95rem;
    transition: all 0.3s ease; border: none; cursor: pointer;
}

.sct-tpl-zone .sct-btn-primary { background: #C84545; color: #fff; box-shadow: 0 4px 20px rgba(200,69,69,0.35); }

.sct-tpl-zone .sct-btn-primary:hover { background: #a83838; transform: translateY(-2px); }

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

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

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

.sct-tpl-zone .sct-hero-card h3 {
    color: #fff; font-size: 1.15rem; margin-bottom: 18px;
    display: flex; align-items: center; gap: 10px;
}

.sct-tpl-zone .sct-hero-card h3 i { color: #C84545; }

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

.sct-tpl-zone .sct-hero-card-list li {
    display: flex; align-items: flex-start; gap: 12px;
    color: rgba(255,255,255,0.92); font-size: 0.92rem;
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.sct-tpl-zone .sct-hero-card-list i { color: #C84545; margin-top: 4px; flex-shrink: 0; }

.sct-tpl-zone .sct-stats-band {
    background: #C84545; padding: 32px 0;
}

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

.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-value {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem; font-weight: 800; line-height: 1;
    margin-bottom: 6px;
}

.sct-tpl-zone .sct-stat-label {
    font-size: 0.82rem; text-transform: uppercase;
    letter-spacing: 1.5px; opacity: 0.9;
}

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

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

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

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

.sct-tpl-zone .sct-section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 2.1rem; color: #1B3A5C;
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-section-subtitle {
    color: #6b7280; font-size: 1rem;
    max-width: 700px; margin: 0 auto;
}

.sct-tpl-zone .sct-gold-line {
    width: 60px; height: 3px; background: #C84545;
    margin: 16px auto 0; border-radius: 2px;
}

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

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

.sct-tpl-zone .sct-intro-text p {
    color: #4b5563; line-height: 1.75; margin-bottom: 16px; font-size: 0.98rem;
}

.sct-tpl-zone .sct-intro-image {
    border-radius: 20px; overflow: hidden; position: relative;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.2);
}

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

.sct-tpl-zone .sct-intro-image-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: #C84545; color: #fff;
    padding: 12px 22px; border-radius: 12px;
    display: flex; align-items: center; gap: 10px;
    font-family: 'Manrope', sans-serif; font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.sct-tpl-zone .sct-intro-image-badge i { font-size: 1.3rem; }

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

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

.sct-tpl-zone .sct-service-card {
    background: #fff; border-radius: 16px; overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.4s ease;
    display: flex; flex-direction: column;
}

.sct-tpl-zone .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    border-color: #C84545;
}

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

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

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

.sct-tpl-zone .sct-service-card-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(27,58,92,0.45) 0%, transparent 50%);
}

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

.sct-tpl-zone .sct-service-card-body h3 {
    font-size: 1.1rem; color: #1B3A5C; margin-bottom: 8px;
}

.sct-tpl-zone .sct-service-card-body p {
    font-size: 0.88rem; color: #6b7280; line-height: 1.55; margin-bottom: 16px; flex: 1;
}

.sct-tpl-zone .sct-service-card-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: #C84545; font-weight: 700; font-size: 0.88rem;
    margin-top: auto;
}

.sct-tpl-zone .sct-service-card-link:hover { gap: 12px; }

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

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

.sct-tpl-zone .sct-zone-tag {
    background: #fff; padding: 16px 18px; border-radius: 12px;
    border: 1px solid #e5e7eb;
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; color: #1B3A5C; font-weight: 600;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-zone-tag:hover {
    border-color: #C84545; transform: translateY(-3px);
    box-shadow: 0 10px 25px -3px rgba(0,0,0,0.08);
}

.sct-tpl-zone .sct-zone-tag i { color: #C84545; }

.sct-tpl-zone .sct-usecase {
    background: linear-gradient(135deg, #1B3A5C 0%, #0f2540 100%);
    border-radius: 24px; padding: 50px;
    color: #fff; position: relative; overflow: hidden;
}

.sct-tpl-zone .sct-usecase::before {
    content: '\f3c5'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; right: -30px; top: -20px;
    font-size: 14rem; color: rgba(200,69,69,0.08);
}

.sct-tpl-zone .sct-usecase-tag {
    display: inline-block; background: rgba(200,69,69,0.2);
    color: #f5d4d4; padding: 6px 16px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.sct-tpl-zone .sct-usecase h3 {
    font-size: 1.7rem; color: #fff; margin-bottom: 18px;
    position: relative; z-index: 1;
}

.sct-tpl-zone .sct-usecase-body {
    color: rgba(255,255,255,0.88); line-height: 1.75;
    font-size: 0.98rem; max-width: 800px;
    position: relative; z-index: 1;
}

.sct-tpl-zone .sct-usecase-body p { margin-bottom: 12px; }

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

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

.sct-tpl-zone .sct-engagement-card {
    background: #fff; padding: 32px 26px; border-radius: 16px;
    border: 1px solid #e5e7eb; text-align: center;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-engagement-card:hover {
    border-color: #C84545; transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0,0,0,0.1);
}

.sct-tpl-zone .sct-engagement-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #1B3A5C, #2a5580);
    border-radius: 16px; margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
    color: #C84545; font-size: 1.5rem;
}

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

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

.sct-tpl-zone .sct-local-spec {
    background: #fff; border: 1px solid #e5e7eb;
    border-left: 4px solid #C84545;
    border-radius: 12px; padding: 32px 36px;
    max-width: 900px; margin: 0 auto;
}

.sct-tpl-zone .sct-local-spec h3 {
    font-size: 1.15rem; color: #1B3A5C; margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
}

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

.sct-tpl-zone .sct-local-spec p {
    color: #4b5563; line-height: 1.7; font-size: 0.95rem; margin-bottom: 10px;
}

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

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

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

.sct-tpl-zone .sct-faq-item summary {
    padding: 20px 24px; cursor: pointer;
    font-family: 'Manrope', sans-serif; font-weight: 700;
    color: #1B3A5C; font-size: 1rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; list-style: none;
}

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

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

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

.sct-tpl-zone .sct-faq-answer {
    padding: 0 24px 20px; color: #4b5563;
    line-height: 1.7; font-size: 0.94rem;
}

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

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

.sct-tpl-zone .sct-maillage-card {
    background: #fff; border: 1px solid #e5e7eb;
    border-radius: 12px; padding: 18px 20px;
    display: flex; align-items: center; gap: 12px;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-maillage-card:hover {
    border-color: #C84545; transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.sct-tpl-zone .sct-maillage-card i {
    color: #C84545; font-size: 1.1rem; flex-shrink: 0;
}

.sct-tpl-zone .sct-maillage-card span {
    font-weight: 600; color: #1B3A5C; font-size: 0.92rem;
}

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

.sct-tpl-zone .sct-cta-final::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(200,69,69,0.15) 0%, transparent 50%);
}

.sct-tpl-zone .sct-cta-final-inner { position: relative; z-index: 1; }

.sct-tpl-zone .sct-cta-final h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.1rem; color: #fff; margin-bottom: 14px;
}

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

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

@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-hero-text h1 { font-size: 2.3rem; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .sct-tpl-zone .sct-intro-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-zones-grid { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .sct-tpl-zone .sct-maillage-grid { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-zone .sct-usecase { padding: 36px 30px; }
    .sct-tpl-zone .sct-usecase h3 { font-size: 1.4rem; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-section { padding: 60px 0; }
    .sct-tpl-zone .sct-hero { padding: 50px 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.95rem; }
    .sct-tpl-zone .sct-hero-btns { flex-direction: column; }
    .sct-tpl-zone .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .sct-tpl-zone .sct-stat-value { font-size: 1.8rem; }
    .sct-tpl-zone .sct-section-title { font-size: 1.6rem; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-zones-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-maillage-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-intro-image img { height: 280px; }
    .sct-tpl-zone .sct-usecase { padding: 28px 22px; border-radius: 16px; }
    .sct-tpl-zone .sct-usecase h3 { font-size: 1.25rem; }
    .sct-tpl-zone .sct-cta-final h2 { font-size: 1.6rem; }
    .sct-tpl-zone .sct-local-spec { padding: 22px 22px; }
    .sct-tpl-zone .sct-faq-item summary { padding: 16px 18px; font-size: 0.95rem; }
    .sct-tpl-zone .sct-faq-answer { padding: 0 18px 18px; }
}

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

.sitemap-hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,168,67,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.sitemap-hero::after {
    content: '';
    position: absolute;
    bottom: -50%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212,168,67,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

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

.sitemap-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212,168,67,0.18);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border: 1px solid rgba(212,168,67,0.3);
}

.sitemap-hero h1 {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -1px;
}

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

.sitemap-hero-line {
    width: 80px; height: 4px;
    background: var(--gold);
    margin: 0 auto;
    border-radius: 2px;
}

.sitemap-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--gray-100);
}

.sitemap-section:last-of-type { border-bottom: none; }

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

.sitemap-section-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
    position: relative;
}

.sitemap-section-header::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 80px; height: 2px;
    background: var(--gold);
}

.sitemap-section-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.sitemap-section-title h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.sitemap-section-title p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

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

.chip.chip-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.service-group {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-group:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.service-group-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--gray-200);
}

.service-group-title i {
    width: 36px; height: 36px;
    background: rgba(212,168,67,0.12);
    color: var(--gold);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
}

.service-group-title h3 {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
}

.service-group-title .badge-count {
    margin-left: auto;
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.sitemap-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.summary-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.summary-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.summary-number {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.summary-label {
    font-size: 0.82rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 14px;
}

.cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 30px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.footer-brand h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 14px;
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 14px;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .menu-toggle { display: flex; }

    .sitemap-hero { padding: 60px 0 70px; }
    .sitemap-hero h1 { font-size: 2.2rem; }
    .sitemap-hero p { font-size: 1rem; }

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

    .sitemap-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .sitemap-section-title h2 { font-size: 1.4rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }

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

    .service-group { padding: 20px; }
    .service-group-title h3 { font-size: 1rem; }

    .cta-banner h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .sitemap-summary { grid-template-columns: 1fr 1fr; gap: 12px; }
    .summary-card { padding: 18px 12px; }
    .summary-number { font-size: 1.5rem; }
}

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