.menu-check { display: none !important; }

#menuCheck:checked ~ .nav {
    display: flex !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    right: 0 !important;
    left: 0 !important;
    pointer-events: auto !important;
}

#menuCheck:checked ~ .menu-toggle i::before {
    content: "\f00d";
}

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

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

:root {
            --primary: #1B3A4B;
            --primary-dark: #122a37;
            --primary-light: #2a5570;
            --secondary: #D97706;
            --secondary-light: #F59E0B;
            --secondary-dark: #B45309;
            --text-dark: #1a1a1a;
            --text-medium: #4a4a4a;
            --text-light: #6b7280;
            --bg-light: #f8f9fa;
            --bg-white: #ffffff;
            --bg-dark: #0f2027;
            --border: #e5e7eb;
            --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.15), 0 8px 10px -6px rgba(0,0,0,0.1);
            --radius: 12px;
            --radius-sm: 8px;
        }

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

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

h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.25;
        }

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

.header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(12px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            transition: background 0.3s;
        }

.header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 12px;
            padding-bottom: 12px;
        }

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

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

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

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

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

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

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

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

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

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

.hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(160deg, rgba(15,32,39,0.88) 0%, rgba(27,58,75,0.82) 100%), url('https://webflash.pro/storage/generated/290/hero_1776104624_69dd34b0c52f9.webp') center/cover no-repeat;
            padding-top: 120px;
            padding-bottom: 60px;
            overflow: hidden;
        }

.hero::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 80px;
            background: linear-gradient(to bottom right, transparent 49.5%, var(--bg-white) 50%);
        }

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

.hero-content {
            color: #fff;
        }

.hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(217,119,6,0.2);
            border: 1px solid rgba(217,119,6,0.4);
            color: var(--secondary-light);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

.hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 18px;
            line-height: 1.15;
        }

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

.hero-desc {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.85);
            margin-bottom: 30px;
            max-width: 500px;
            line-height: 1.8;
        }

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

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

.btn-primary:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(217,119,6,0.35);
        }

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

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

.hero-devis {
            background: rgba(255,255,255,0.07);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: var(--radius);
            padding: 32px;
        }

.hero-devis-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 6px;
            text-align: center;
        }

.hero-devis-sub {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 20px;
            text-align: center;
        }

.hero-devis .form-group {
            margin-bottom: 14px;
        }

.hero-devis label {
            display: block;
            font-weight: 600;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 5px;
        }

.hero-devis input,
        .hero-devis textarea {
            width: 100%;
            padding: 11px 14px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.1);
            color: #fff;
            font-size: 0.95rem;
            font-family: 'Open Sans', sans-serif;
            transition: border-color 0.3s, background 0.3s;
        }

.hero-devis input::placeholder,
        .hero-devis textarea::placeholder {
            color: rgba(255,255,255,0.45);
        }

.hero-devis input:focus,
        .hero-devis textarea:focus {
            outline: none;
            border-color: var(--secondary);
            background: rgba(255,255,255,0.15);
        }

.hero-devis textarea {
            resize: vertical;
            min-height: 70px;
        }

.hero-devis .btn-primary {
            width: 100%;
            justify-content: center;
            padding: 14px;
            font-size: 1rem;
            margin-top: 4px;
        }

.hero-devis .form-status p {
            text-align: center;
            margin-top: 10px;
            font-size: 0.9rem;
        }

.trust-bar {
            background: var(--primary);
            padding-top: 0;
            padding-bottom: 0;
            position: relative;
        }

.trust-bar::before {
            content: '';
            position: absolute;
            top: -2px;
            left: 0;
            width: 100%;
            height: 80px;
            background: linear-gradient(to top left, transparent 49.5%, var(--bg-white) 50%);
        }

.trust-items {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            padding-top: 90px;
            padding-bottom: 50px;
        }

.trust-item {
            text-align: center;
            color: #fff;
        }

.trust-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--secondary-light);
            line-height: 1;
            margin-bottom: 6px;
        }

.trust-label {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.8);
            font-weight: 500;
        }

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

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

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

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

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

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

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

.service-card {
            background: var(--bg-white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
            width: calc(33.333% - 19px);
            display: flex;
            flex-direction: column;
        }

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

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

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

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

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

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

.service-card-body p {
            font-size: 0.92rem;
            color: var(--text-medium);
            line-height: 1.65;
            flex: 1;
        }

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

.engagement-card {
            text-align: center;
            padding: 32px 22px;
            border-radius: var(--radius);
            background: var(--bg-white);
            border: 1px solid var(--border);
            transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
        }

.engagement-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--secondary);
        }

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

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

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

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

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

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

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

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

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

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

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

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

.zones-section {
            background: var(--primary);
            position: relative;
            color: #fff;
        }

.zones-section::before {
            content: '';
            position: absolute;
            top: -2px;
            left: 0;
            width: 100%;
            height: 70px;
            background: linear-gradient(to bottom right, transparent 49.5%, var(--primary) 50%);
        }

.zones-section .section-header h2 {
            color: #fff;
        }

.zones-section .section-header p {
            color: rgba(255,255,255,0.7);
        }

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

.zone-block {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius);
            padding: 30px;
        }

.zone-block h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary-light);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

.zone-cities {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

.zone-city {
            background: rgba(255,255,255,0.1);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.88rem;
            color: rgba(255,255,255,0.9);
            border: 1px solid rgba(255,255,255,0.15);
        }

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

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

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

.faq-item:hover {
            box-shadow: var(--shadow);
        }

.faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            color: var(--primary);
            text-align: left;
            gap: 14px;
        }

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

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

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

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

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

.horaires-header {
            background: var(--primary);
            color: #fff;
            padding: 20px 28px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.15rem;
        }

.horaires-body {
            padding: 8px 0;
        }

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

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

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

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

.horaire-closed {
            color: #ef4444;
            font-weight: 600;
            font-size: 0.9rem;
        }

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

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

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

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

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

.contact-item-label {
            font-weight: 700;
            color: var(--primary);
            font-size: 0.95rem;
            margin-bottom: 3px;
        }

.contact-item-value {
            color: var(--text-medium);
            font-size: 0.92rem;
        }

.contact-item-value a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
        }

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

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

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

.contact-form-card label {
            display: block;
            font-weight: 600;
            font-size: 0.88rem;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

.contact-form-card input,
        .contact-form-card textarea {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-family: 'Open Sans', sans-serif;
            color: var(--text-dark);
            transition: border-color 0.3s, box-shadow 0.3s;
            background: var(--bg-white);
        }

.contact-form-card input:focus,
        .contact-form-card textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(27,58,75,0.1);
        }

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

.contact-form-card button[type="submit"] {
            background: var(--primary);
            color: #fff;
            padding: 14px 32px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            width: 100%;
        }

.contact-form-card button[type="submit"]:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

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

.map-container iframe {
            display: block;
        }

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

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

.footer-brand {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

.footer-brand .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

.footer-brand p {
            font-size: 0.88rem;
            line-height: 1.7;
            max-width: 350px;
        }

.footer-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            margin-bottom: 16px;
        }

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

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

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

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

.footer-contact-info {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

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

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

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

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

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

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

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

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

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

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

.modal-close {
            position: absolute;
            top: 14px;
            right: 18px;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-light);
            cursor: pointer;
        }

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

.floating-cta {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 900;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: var(--secondary);
            color: #fff;
            border: none;
            font-size: 1.4rem;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(217,119,6,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
        }

.floating-cta:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 28px rgba(217,119,6,0.55);
        }

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

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

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

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

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

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

@media (max-width: 768px) {
            .nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #fff;
                flex-direction: column;
                padding: 20px;
                gap: 16px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }

            .nav.active {
                display: flex;
            }

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

            .menu-toggle {
                display: block;
            }

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

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

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

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

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

            .trust-number {
                font-size: 2.2rem;
            }

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

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

            .services-grid .service-card {
                width: 100%;
            }

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

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

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

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

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

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

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

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

            .hero-buttons a {
                text-align: center;
                justify-content: center;
            }

            .hero-devis {
                padding: 24px 18px;
            }

            .trust-items {
                grid-template-columns: 1fr 1fr;
            }

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

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

            .contact-form-card {
                padding: 24px 18px;
            }
        }

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

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

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

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

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(160deg, rgba(15,32,39,0.90) 0%, rgba(27,58,75,0.85) 100%), url('/images/service_2_1776104675_69dd34e3070bf.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to bottom right, transparent 49.5%, #fff 50%);
}

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

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

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(217,119,6,0.18);
    border: 1px solid rgba(217,119,6,0.4);
    color: #F59E0B;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.sct-tpl-service-city .sct-hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 18px;
}

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

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

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

.sct-tpl-service-city .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #D97706;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.sct-tpl-service-city .sct-btn-primary:hover {
    background: #B45309;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(217,119,6,0.35);
}

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

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

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

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

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

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

.sct-tpl-service-city .sct-hero-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 18px;
    text-align: center;
}

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

.sct-tpl-service-city .sct-hero-card-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.sct-tpl-service-city .sct-hero-card-row i {
    color: #F59E0B;
    margin-top: 3px;
    width: 18px;
    text-align: center;
}

.sct-tpl-service-city .sct-hero-card-row strong { color: #fff; }

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

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

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

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

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

.sct-tpl-service-city .sct-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #F59E0B;
    line-height: 1;
    margin-bottom: 6px;
}

.sct-tpl-service-city .sct-stat-label {
    font-size: 0.92rem;
    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-content {
    max-width: 880px;
    margin: 0 auto;
}

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

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

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

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

.sct-tpl-service-city .sct-section-tag {
    display: inline-block;
    background: rgba(217,119,6,0.12);
    color: #D97706;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sct-tpl-service-city .sct-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.05rem;
    font-weight: 800;
    color: #1B3A4B;
    margin-bottom: 14px;
}

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

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

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

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

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

.sct-tpl-service-city .sct-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.15);
}

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

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

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

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

.sct-tpl-service-city .sct-service-card-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: #1B3A4B;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-service-card-body p {
    font-size: 0.93rem;
    color: #4a4a4a;
    line-height: 1.7;
}

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

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

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

.sct-tpl-service-city .sct-process-step {
    text-align: center;
    padding: 24px 16px;
    background: #f8f9fa;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.sct-tpl-service-city .sct-process-num {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #D97706;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.82rem;
    font-family: 'Montserrat', sans-serif;
}

.sct-tpl-service-city .sct-process-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1B3A4B;
    margin-bottom: 8px;
}

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

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

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

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

.sct-tpl-service-city .sct-why-card {
    text-align: center;
    padding: 32px 22px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

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

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

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

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

.sct-tpl-service-city .sct-zones-section {
    padding: 80px 0;
    background: #1B3A4B;
    position: relative;
    color: #fff;
}

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

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

.sct-tpl-service-city .sct-zones-section .sct-section-tag {
    background: rgba(245,158,11,0.18);
    color: #F59E0B;
}

.sct-tpl-service-city .sct-zones-wrapper {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 36px;
}

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

.sct-tpl-service-city .sct-zone-pill {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.92);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sct-tpl-service-city .sct-zone-pill i { color: #F59E0B; font-size: 0.78rem; }

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

.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-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.15);
}

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

.sct-tpl-service-city .sct-usecase-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.95rem;
    font-weight: 800;
    color: #1B3A4B;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-usecase-text p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 14px;
}

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

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

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

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

.sct-tpl-service-city .sct-engagement-card {
    text-align: center;
    padding: 36px 26px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-city .sct-engagement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.12);
}

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

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

.sct-tpl-service-city .sct-engagement-card p {
    font-size: 0.93rem;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.sct-tpl-service-city .sct-local-spec-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-left: 4px solid #D97706;
    padding: 36px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.06);
}

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

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

.sct-tpl-service-city .sct-local-spec-card p {
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 0.98rem;
}

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

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

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

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

.sct-tpl-service-city .sct-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    color: #1B3A4B;
    text-align: left;
    gap: 14px;
}

.sct-tpl-service-city .sct-faq-question i {
    font-size: 0.85rem;
    color: #D97706;
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.sct-tpl-service-city .sct-faq-answer-inner {
    padding: 0 24px 20px;
    color: #4a4a4a;
    font-size: 0.94rem;
    line-height: 1.75;
}

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

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

.sct-tpl-service-city .sct-maillage-section:nth-of-type(even) {
    background: #f8f9fa;
}

.sct-tpl-service-city .sct-maillage-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1B3A4B;
    text-align: center;
    margin-bottom: 26px;
}

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

.sct-tpl-service-city .sct-maillage-list a {
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #1B3A4B;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.88rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

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

.sct-tpl-service-city .sct-cta-final {
    padding: 70px 0;
    background: linear-gradient(135deg, #1B3A4B 0%, #122a37 100%);
    color: #fff;
    text-align: center;
}

.sct-tpl-service-city .sct-cta-final h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-cta-final p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    max-width: 620px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

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

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sct-tpl-service-city .sct-hero-card {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: repeat(2, 1fr); }
    .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: 36px; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-city .sct-hero-subtitle { font-size: 0.98rem; }
    .sct-tpl-service-city .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-hero-card { padding: 24px; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
    .sct-tpl-service-city .sct-stat-value { font-size: 2rem; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-section-title { font-size: 1.6rem; }
    .sct-tpl-service-city .sct-usecase-text h2 { font-size: 1.6rem; }
    .sct-tpl-service-city .sct-cta-final h2 { font-size: 1.6rem; }
    .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-zones-wrapper { padding: 24px; }
    .sct-tpl-service-city .sct-local-spec-card { padding: 28px 24px; }
    .sct-tpl-service-city .sct-intro-content p { font-size: 0.96rem; }
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(160deg, rgba(15,32,39,0.90) 0%, rgba(27,58,75,0.85) 100%), url('/images/service_1_1776104648_69dd34c89dc89.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(160deg, rgba(15,32,39,0.90) 0%, rgba(27,58,75,0.85) 100%), url('/images/service_4_1776104719_69dd350feacec.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

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

.sct-tpl-service-hub main { padding-top: 80px; }

.sct-tpl-service-hub .sct-breadcrumb-section {
    background: #f8f9fa;
    padding: 16px 0;
    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.88rem;
    color: #6b7280;
}

.sct-tpl-service-hub .sct-breadcrumb a {
    color: #1B3A4B;
    text-decoration: none;
    font-weight: 600;
}

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

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

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 90px 0 80px;
    background: linear-gradient(160deg, rgba(15,32,39,0.88) 0%, rgba(27,58,75,0.82) 100%), url('/images/service_1_1776104648_69dd34c89dc89.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to bottom right, transparent 49.5%, #ffffff 50%);
}

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

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

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

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217,119,6,0.2);
    border: 1px solid rgba(217,119,6,0.4);
    color: #F59E0B;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.sct-tpl-service-hub .sct-hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

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

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

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

.sct-tpl-service-hub .sct-btn-primary,
.sct-tpl-service-hub .sct-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}

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

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: #B45309;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217,119,6,0.35);
}

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

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

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

.sct-tpl-service-hub .sct-hero-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 18px;
    color: #fff;
}

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

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

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

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

.sct-tpl-service-hub .sct-stats-band {
    background: #ffffff;
    padding: 60px 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: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #1B3A4B;
    line-height: 1;
    margin-bottom: 8px;
}

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

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

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

.sct-tpl-service-hub .sct-section-tag {
    display: inline-block;
    background: rgba(217,119,6,0.1);
    color: #D97706;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.sct-tpl-service-hub .sct-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #1B3A4B;
    margin-bottom: 14px;
}

.sct-tpl-service-hub .sct-section-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.sct-tpl-service-hub .sct-intro-section { background: #ffffff; }

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

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

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

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

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

.sct-tpl-service-hub .sct-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.15);
}

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

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

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

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

.sct-tpl-service-hub .sct-service-card-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1B3A4B;
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-service-card-body p {
    font-size: 0.93rem;
    color: #4a4a4a;
    line-height: 1.7;
    flex: 1;
}

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

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

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

.sct-tpl-service-hub .sct-step-card {
    text-align: center;
    padding: 28px 18px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s, border-color 0.3s;
}

.sct-tpl-service-hub .sct-step-card:hover {
    transform: translateY(-4px);
    border-color: #D97706;
}

.sct-tpl-service-hub .sct-step-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1B3A4B, #2a5570);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    margin: 0 auto 14px;
}

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

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

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

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

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

.sct-tpl-service-hub .sct-why-card {
    display: flex;
    gap: 18px;
    padding: 28px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s, transform 0.3s;
}

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

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

.sct-tpl-service-hub .sct-why-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B3A4B;
    margin-bottom: 8px;
}

.sct-tpl-service-hub .sct-why-content p {
    font-size: 0.93rem;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.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-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.15);
}

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

.sct-tpl-service-hub .sct-usecase-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1B3A4B;
    margin-bottom: 18px;
}

.sct-tpl-service-hub .sct-usecase-text p {
    color: #4a4a4a;
    margin-bottom: 16px;
    line-height: 1.8;
}

.sct-tpl-service-hub .sct-usecase-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

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

.sct-tpl-service-hub .sct-usecase-list i {
    color: #D97706;
    margin-top: 5px;
    flex-shrink: 0;
}

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

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

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

.sct-tpl-service-hub .sct-engagement-card {
    text-align: center;
    padding: 38px 26px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.sct-tpl-service-hub .sct-engagement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.15);
    border-color: #D97706;
}

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

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

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

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

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

.sct-tpl-service-hub .sct-faq-item {
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

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

.sct-tpl-service-hub .sct-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #1B3A4B;
    text-align: left;
    gap: 14px;
}

.sct-tpl-service-hub .sct-faq-question i {
    font-size: 0.85rem;
    color: #D97706;
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.sct-tpl-service-hub .sct-faq-answer-inner {
    padding: 0 24px 20px;
    color: #4a4a4a;
    font-size: 0.93rem;
    line-height: 1.75;
}

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

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

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

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

.sct-tpl-service-hub .sct-maillage-cities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    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;
    text-decoration: none;
    color: #1B3A4B;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s;
}

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

.sct-tpl-service-hub .sct-maillage-cities a:hover {
    border-color: #D97706;
    color: #D97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px -4px rgba(0,0,0,0.1);
}

.sct-tpl-service-hub .sct-maillage-cities a i {
    color: #D97706;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.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: 18px 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: #1B3A4B;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

.sct-tpl-service-hub .sct-maillage-services a i {
    color: #D97706;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-cta-final {
    background: linear-gradient(135deg, #1B3A4B 0%, #122a37 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217,119,6,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.sct-tpl-service-hub .sct-cta-final h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

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

.sct-tpl-service-hub .sct-cta-final .sct-hero-btns {
    justify-content: center;
    position: relative;
}

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 2.3rem; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .sct-tpl-service-hub .sct-maillage-cities { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-service-hub .sct-maillage-services { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-section-title { font-size: 1.8rem; }
    .sct-tpl-service-hub .sct-cta-final h2 { font-size: 1.8rem; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 70px 0 60px; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-hub .sct-hero-subtitle { font-size: 1rem; }
    .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-section { padding: 60px 0; }
    .sct-tpl-service-hub .sct-stats-band { padding: 40px 0; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .sct-tpl-service-hub .sct-stat-value { font-size: 2.1rem; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-maillage-cities { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .sct-tpl-service-hub .sct-maillage-cities a { padding: 12px 14px; font-size: 0.88rem; }
    .sct-tpl-service-hub .sct-maillage-services { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-section-title { font-size: 1.55rem; }
    .sct-tpl-service-hub .sct-section-subtitle { font-size: 0.95rem; }
    .sct-tpl-service-hub .sct-usecase-text h2 { font-size: 1.6rem; }
    .sct-tpl-service-hub .sct-cta-final h2 { font-size: 1.55rem; }
    .sct-tpl-service-hub .sct-cta-final { padding: 60px 0; }
    .sct-tpl-service-hub .sct-engagement-card { padding: 30px 22px; }
    .sct-tpl-service-hub .sct-why-card { flex-direction: column; gap: 14px; padding: 24px; }
    .sct-tpl-service-hub main { padding-top: 70px; }
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 90px 0 80px;
    background: linear-gradient(160deg, rgba(15,32,39,0.88) 0%, rgba(27,58,75,0.82) 100%), url('/images/service_2_1776104675_69dd34e3070bf.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-breadcrumb-wrap {
    background: #f3f4f6;
    padding: 100px 0 16px;
    border-bottom: 1px solid var(--border);
}

.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: var(--text-light);
}

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

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

.sct-tpl-zone .sct-breadcrumb-sep { color: var(--text-light); }

.sct-tpl-zone .sct-breadcrumb-current { color: var(--text-medium); }

.sct-tpl-zone .sct-hero {
    position: relative;
    background: linear-gradient(160deg, rgba(15,32,39,0.88) 0%, rgba(27,58,75,0.82) 100%), url('/images/service_4_1776104719_69dd350feacec.webp') center/cover no-repeat;
    padding: 70px 0 90px;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to bottom right, transparent 49.5%, var(--bg-white) 50%);
}

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

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

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

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217,119,6,0.2);
    border: 1px solid rgba(217,119,6,0.4);
    color: var(--secondary-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
}

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

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

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

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

.sct-tpl-zone .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.sct-tpl-zone .sct-btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217,119,6,0.35);
}

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

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

.sct-tpl-zone .sct-hero-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 30px;
}

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

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

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

.sct-tpl-zone .sct-hero-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.92rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.sct-tpl-zone .sct-hero-card li i {
    color: var(--secondary-light);
    margin-top: 4px;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-stats-band {
    background: var(--primary);
    position: relative;
    color: #fff;
    padding: 70px 0 50px;
}

.sct-tpl-zone .sct-stats-band::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to top left, transparent 49.5%, var(--bg-white) 50%);
}

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

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

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

.sct-tpl-zone .sct-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--secondary-light);
    line-height: 1;
    margin-bottom: 6px;
}

.sct-tpl-zone .sct-stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

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

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

.sct-tpl-zone .sct-section-tag {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sct-tpl-zone .sct-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
    line-height: 1.25;
}

.sct-tpl-zone .sct-section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.sct-tpl-zone .sct-intro-section { background: var(--bg-white); }

.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-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sct-tpl-zone .sct-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

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

.sct-tpl-zone .sct-services-section { background: var(--bg-light); }

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

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

.sct-tpl-zone .sct-service-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.sct-tpl-zone .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

.sct-tpl-zone .sct-service-card-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.sct-tpl-zone .sct-service-card-body p {
    font-size: 0.92rem;
    color: var(--text-medium);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.88rem;
    margin-top: auto;
}

.sct-tpl-zone .sct-zones-section {
    background: var(--primary);
    position: relative;
    color: #fff;
    padding: 100px 0;
}

.sct-tpl-zone .sct-zones-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to bottom right, transparent 49.5%, var(--primary) 50%);
}

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

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

.sct-tpl-zone .sct-zones-section .sct-section-tag { color: var(--secondary-light); }

.sct-tpl-zone .sct-zones-content {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-zones-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-light);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sct-tpl-zone .sct-zones-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sct-tpl-zone .sct-zone-city {
    background: rgba(255,255,255,0.1);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.15);
}

.sct-tpl-zone .sct-usecase-section { background: var(--bg-light); }

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

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

.sct-tpl-zone .sct-usecase-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.sct-tpl-zone .sct-usecase-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 18px;
    line-height: 1.3;
}

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

.sct-tpl-zone .sct-usecase-steps {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.sct-tpl-zone .sct-usecase-steps li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.sct-tpl-zone .sct-usecase-steps li:last-child { border-bottom: none; }

.sct-tpl-zone .sct-usecase-step-num {
    width: 32px;
    height: 32px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-usecase-step-text {
    color: var(--text-medium);
    font-size: 0.93rem;
    line-height: 1.6;
}

.sct-tpl-zone .sct-engagements-section { background: var(--bg-white); }

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

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

.sct-tpl-zone .sct-engagement-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius);
    background: var(--bg-white);
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.sct-tpl-zone .sct-engagement-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

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

.sct-tpl-zone .sct-engagement-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

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

.sct-tpl-zone .sct-local-spec { background: var(--bg-light); }

.sct-tpl-zone .sct-local-spec-card {
    background: var(--bg-white);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-local-spec-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sct-tpl-zone .sct-local-spec-card h3 i { color: var(--secondary); }

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

.sct-tpl-zone .sct-faq-section { background: var(--bg-white); }

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

.sct-tpl-zone .sct-faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.sct-tpl-zone .sct-faq-item:hover { box-shadow: var(--shadow); }

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

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

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

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

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

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

.sct-tpl-zone .sct-maillage-section { background: var(--bg-light); }

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

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

.sct-tpl-zone .sct-maillage-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.sct-tpl-zone .sct-maillage-link:hover {
    border-color: var(--secondary);
    background: var(--secondary);
    color: #fff;
    transform: translateX(4px);
}

.sct-tpl-zone .sct-maillage-link i {
    color: var(--secondary);
    font-size: 0.85rem;
    transition: color 0.3s;
}

.sct-tpl-zone .sct-maillage-link:hover i { color: #fff; }

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

.sct-tpl-zone .sct-cta-final::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(217,119,6,0.15) 0%, transparent 50%);
}

.sct-tpl-zone .sct-cta-final-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-cta-final h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.25;
}

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

.sct-tpl-zone .sct-cta-final-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    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-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .sct-tpl-zone .sct-intro-grid,
    .sct-tpl-zone .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-maillage-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-section { padding: 60px 0; }
    .sct-tpl-zone .sct-hero { padding: 50px 0 70px; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-zone .sct-hero-subtitle { font-size: 1rem; }
    .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: 24px; }
    .sct-tpl-zone .sct-stat-value { font-size: 2.1rem; }
    .sct-tpl-zone .sct-section-title { font-size: 1.7rem; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-maillage-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-zones-content { padding: 24px; }
    .sct-tpl-zone .sct-local-spec-card { padding: 24px; }
    .sct-tpl-zone .sct-cta-final h2 { font-size: 1.7rem; }
    .sct-tpl-zone .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-usecase-text h3 { font-size: 1.4rem; }
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(160deg, rgba(15,32,39,0.90) 0%, rgba(27,58,75,0.85) 100%), url('/images/service_3_1776104697_69dd34f956499.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.page-hero {
    position: relative;
    background: linear-gradient(160deg, rgba(15,32,39,0.92) 0%, rgba(27,58,75,0.88) 100%), url('https://webflash.pro/storage/generated/290/hero_1776104624_69dd34b0c52f9.webp') center/cover no-repeat;
    padding-top: 160px;
    padding-bottom: 100px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to bottom right, transparent 49.5%, var(--bg-white) 50%);
}

.page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217,119,6,0.2);
    border: 1px solid rgba(217,119,6,0.4);
    color: var(--secondary-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 14px;
}

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

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

.breadcrumb {
    background: var(--bg-light);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 0.88rem;
}

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

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

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--text-light);
}

.breadcrumb li:last-child {
    color: var(--text-light);
}

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

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

.category-block {
    margin-bottom: 60px;
}

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

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--border);
}

.category-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.category-title h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

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

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    color: var(--primary);
    padding: 11px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

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

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

.chip.chip-home {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.chip.chip-home i {
    color: #fff;
}

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

.subcategory {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 26px 28px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s;
}

.subcategory:hover {
    box-shadow: var(--shadow-lg);
}

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

.subcategory-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
}

.subcategory-title i {
    color: var(--secondary);
    font-size: 1.05rem;
}

.subcategory .chip {
    background: var(--bg-light);
    border-color: var(--border);
    padding: 9px 16px;
    font-size: 0.85rem;
}

.subcategory .chip:hover {
    background: var(--primary);
    color: #fff;
}

.cta-section {
    background: var(--primary);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom right, transparent 49.5%, var(--primary) 50%);
}

.cta-section-inner {
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
    font-size: 1.05rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

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

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

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

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 28px 20px;
        gap: 18px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        display: none;
        border-top: 1px solid var(--border);
    }

    .page-hero {
        padding-top: 130px;
        padding-bottom: 80px;
    }

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

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

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .category-title h2 {
        font-size: 1.35rem;
    }

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

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

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

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

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

    .subcategory {
        padding: 20px;
    }

    .subcategory-title {
        font-size: 1rem;
    }
}