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

.menu-check:checked ~ .header-inner .nav {
    display: flex !important;
}

.menu-check:checked ~ .header-inner .menu-toggle i::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

*, *::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: #E67E22;
            --primary-dark: #CF6D17;
            --secondary: #2C3E50;
            --secondary-dark: #1a252f;
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
            --radius: 8px;
            --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
        }

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

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

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

.header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(44, 62, 80, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            transition: background 0.3s;
        }

.header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

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

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

.logo span {
            font-size: 1.25rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

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

.nav a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: var(--radius);
            transition: color 0.3s, background 0.3s;
        }

.nav a:hover {
            color: var(--white);
            background: rgba(255,255,255,0.1);
        }

.nav .btn-cta-nav {
            background: var(--primary);
            color: var(--white);
            padding: 8px 18px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            white-space: nowrap;
            transition: background 0.3s, transform 0.2s;
        }

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

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

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

.hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://webflash.pro/images/hero_1775765507_69d8080352e77.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
        }

.hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(44,62,80,0.9) 0%, rgba(44,62,80,0.6) 100%);
        }

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

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

.hero-text h1 .highlight {
            color: var(--primary);
        }

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

.hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 30px;
        }

.hero-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(230,126,34,0.15);
            border: 1px solid rgba(230,126,34,0.3);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
        }

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

.btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: var(--white);
            padding: 14px 28px;
            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(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(230,126,34,0.35);
        }

.btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--white);
            padding: 14px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            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: var(--white);
            background: rgba(255,255,255,0.1);
        }

.devis-card {
            background: var(--white);
            border-radius: 16px;
            padding: 36px 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

.devis-card-title {
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 4px;
        }

.devis-card-sub {
            font-size: 0.9rem;
            color: var(--gray-600);
            margin-bottom: 20px;
        }

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

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

.devis-card input,
        .devis-card textarea {
            width: 100%;
            padding: 10px 14px;
            border: 2px solid var(--gray-200);
            border-radius: var(--radius);
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.3s;
            background: var(--gray-50);
        }

.devis-card input:focus,
        .devis-card textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--white);
        }

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

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

.devis-card .btn-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

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

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

.stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

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

.stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 6px;
        }

.stat-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: 2rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 12px;
        }

.section-header .accent-bar {
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
            margin: 0 auto 16px;
        }

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

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

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

.service-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            width: calc(33.333% - 20px);
            box-shadow: var(--shadow);
            border-left: 4px solid var(--primary);
            transition: transform 0.3s, box-shadow 0.3s;
        }

.service-card:hover {
            transform: translateY(-4px);
            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.05);
        }

.service-card-body {
            padding: 22px 20px;
        }

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

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

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

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

.engagement-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 12px;
            background: var(--gray-50);
            border: 2px solid var(--gray-100);
            transition: border-color 0.3s, transform 0.3s;
        }

.engagement-card:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
        }

.engagement-icon {
            width: 60px;
            height: 60px;
            background: rgba(230,126,34,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 1.4rem;
            color: var(--primary);
        }

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

.engagement-card p {
            font-size: 0.85rem;
            color: var(--gray-600);
            line-height: 1.6;
        }

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

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

.about-img {
            border-radius: 12px;
            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(--secondary);
            margin-bottom: 6px;
        }

.about-text .accent-bar {
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
            margin-bottom: 20px;
        }

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

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

.about-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 0.95rem;
            color: var(--gray-700);
        }

.about-list li i {
            color: var(--primary);
            margin-top: 4px;
            flex-shrink: 0;
        }

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

.zones-content {
            text-align: center;
        }

.zones-tag-cloud {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            max-width: 800px;
            margin: 0 auto;
        }

.zone-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--gray-50);
            border: 2px solid var(--gray-200);
            padding: 10px 18px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--gray-700);
            text-decoration: none;
            transition: border-color 0.3s, background 0.3s;
        }

.zone-tag:hover {
            border-color: var(--primary);
            background: rgba(230,126,34,0.05);
        }

.zone-tag i {
            color: var(--primary);
            font-size: 0.8rem;
        }

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

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

.faq-item {
            background: var(--white);
            border-radius: 10px;
            margin-bottom: 12px;
            border: 2px solid var(--gray-100);
            overflow: hidden;
            transition: border-color 0.3s;
        }

.faq-item.active {
            border-color: var(--primary);
        }

.faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 18px 22px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--secondary);
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: inherit;
        }

.faq-question i {
            color: var(--primary);
            transition: transform 0.3s;
            flex-shrink: 0;
            margin-left: 12px;
        }

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

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

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

.faq-answer-inner {
            padding: 0 22px 18px;
            font-size: 0.95rem;
            color: var(--gray-600);
            line-height: 1.7;
        }

.horaires-section {
            background: var(--secondary);
            color: var(--white);
        }

.horaires-card {
            max-width: 500px;
            margin: 0 auto;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.1);
            overflow: hidden;
        }

.horaire-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 24px;
            font-size: 0.95rem;
        }

.horaire-row:nth-child(even) {
            background: rgba(255,255,255,0.05);
        }

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

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

.cta-band {
            background: var(--primary);
            padding-top: 40px;
            padding-bottom: 40px;
            text-align: center;
        }

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

.cta-band p {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--white);
        }

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

.cta-band .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

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

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

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

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

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

.contact-form-card input,
        .contact-form-card textarea {
            width: 100%;
            padding: 10px 14px;
            border: 2px solid var(--gray-200);
            border-radius: var(--radius);
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.3s;
            background: var(--gray-50);
        }

.contact-form-card input:focus,
        .contact-form-card textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--white);
        }

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

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

.contact-form-card .btn-submit:hover {
            background: var(--primary-dark);
        }

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

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

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

.contact-info-text span {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gray-600);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 2px;
        }

.contact-info-text a,
        .contact-info-text p {
            font-size: 1rem;
            font-weight: 600;
            color: var(--secondary);
            text-decoration: none;
        }

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

.map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            flex-grow: 1;
            min-height: 250px;
        }

.map-container iframe {
            width: 100%;
            height: 100%;
            min-height: 250px;
            display: block;
        }

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

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

.footer-brand .logo {
            margin-bottom: 14px;
        }

.footer-brand p {
            font-size: 0.9rem;
            line-height: 1.6;
            max-width: 300px;
        }

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

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

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

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

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

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

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

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

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

.footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 20px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            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(--primary);
        }

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

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

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

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

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

.modal-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 20px;
        }

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

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

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

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

@media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-text h1 {
                font-size: 2.2rem;
            }

            .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: 70px;
                left: 0;
                right: 0;
                background: var(--secondary);
                flex-direction: column;
                padding: 20px;
                gap: 4px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            }

            .nav.open {
                display: flex;
            }

            .nav a {
                padding: 12px 16px;
                width: 100%;
            }

            .nav .btn-cta-nav {
                text-align: center;
                margin-top: 8px;
            }

            .menu-toggle {
                display: block;
            }

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

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

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

            .service-card {
                width: calc(50% - 15px);
            }

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

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

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

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

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

@media (max-width: 640px) {
            .service-card {
                width: 100%;
            }

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

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

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

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

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

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

            .cta-band-content {
                flex-direction: column;
            }
        }

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

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

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

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

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%);
    color: #ffffff;
    overflow: hidden;
}

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

.sct-tpl-service-hub .sct-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

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

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

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

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

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

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

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

.sct-tpl-service-hub .sct-hero-text h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #ffffff;
}

.sct-tpl-service-hub .sct-hero-text h1 .sct-highlight { color: #E67E22; }

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

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

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

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: #CF6D17;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230,126,34,0.35);
}

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

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

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

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

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

.sct-tpl-service-hub .sct-hero-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 26px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    color: #1f2937;
}

.sct-tpl-service-hub .sct-hero-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 18px;
}

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

.sct-tpl-service-hub .sct-hero-card-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
}

.sct-tpl-service-hub .sct-hero-card-line i {
    color: #E67E22;
    width: 20px;
    text-align: center;
    margin-top: 3px;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-hero-card-line strong {
    display: block;
    color: #2C3E50;
    font-weight: 700;
    margin-bottom: 2px;
}

.sct-tpl-service-hub .sct-hero-card-line span { color: #4b5563; }

.sct-tpl-service-hub .sct-hero-card .sct-btn-card {
    display: block;
    width: 100%;
    text-align: center;
    background: #E67E22;
    color: #ffffff;
    padding: 13px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    transition: background 0.3s;
}

.sct-tpl-service-hub .sct-hero-card .sct-btn-card:hover { background: #CF6D17; }

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

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

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

.sct-tpl-service-hub .sct-stat-item { color: #ffffff; }

.sct-tpl-service-hub .sct-stat-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: #E67E22;
    line-height: 1;
    margin-bottom: 6px;
}

.sct-tpl-service-hub .sct-stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    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-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 12px;
}

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

.sct-tpl-service-hub .sct-section-header p {
    font-size: 1.05rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

.sct-tpl-service-hub .sct-service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    border-left: 4px solid #E67E22;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

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

.sct-tpl-service-hub .sct-service-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 8px;
}

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

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

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

.sct-tpl-service-hub .sct-step-card {
    text-align: center;
    padding: 26px 18px;
    background: #f9fafb;
    border-radius: 12px;
    border-top: 3px solid #E67E22;
    position: relative;
}

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

.sct-tpl-service-hub .sct-step-icon {
    font-size: 1.6rem;
    color: #E67E22;
    margin-top: 10px;
    margin-bottom: 14px;
}

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

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

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

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

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

.sct-tpl-service-hub .sct-why-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: #ffffff;
    border: 2px solid #f3f4f6;
    transition: border-color 0.3s, transform 0.3s;
}

.sct-tpl-service-hub .sct-why-card:hover {
    border-color: #E67E22;
    transform: translateY(-3px);
}

.sct-tpl-service-hub .sct-why-icon {
    width: 60px;
    height: 60px;
    background: rgba(230,126,34,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: #E67E22;
}

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

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

.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: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.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-size: 1.9rem;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 6px;
}

.sct-tpl-service-hub .sct-usecase-text .sct-accent-bar { margin-left: 0; margin-bottom: 20px; }

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

.sct-tpl-service-hub .sct-usecase-text strong { color: #2C3E50; font-weight: 700; }

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

.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: 32px 24px;
    border-radius: 12px;
    background: #ffffff;
    border: 2px solid #f3f4f6;
    transition: border-color 0.3s, transform 0.3s;
}

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

.sct-tpl-service-hub .sct-engagement-icon {
    width: 64px;
    height: 64px;
    background: rgba(230,126,34,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: #E67E22;
}

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

.sct-tpl-service-hub .sct-engagement-card p {
    font-size: 0.92rem;
    color: #4b5563;
    line-height: 1.6;
}

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

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

.sct-tpl-service-hub .sct-faq-item {
    background: #f9fafb;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 2px solid #f3f4f6;
    overflow: hidden;
    transition: border-color 0.3s;
}

.sct-tpl-service-hub .sct-faq-item:hover { border-color: #E67E22; }

.sct-tpl-service-hub .sct-faq-question {
    padding: 18px 22px;
    font-size: 1rem;
    font-weight: 600;
    color: #2C3E50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.sct-tpl-service-hub .sct-faq-question i {
    color: #E67E22;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-faq-answer {
    padding: 0 22px 18px;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.7;
}

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

.sct-tpl-service-hub .sct-maillage-cities .sct-section-header { margin-bottom: 40px; }

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

.sct-tpl-service-hub .sct-maillage-city-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #2C3E50;
    text-decoration: none;
    transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.2s;
}

.sct-tpl-service-hub .sct-maillage-city-link:hover {
    border-color: #E67E22;
    background: rgba(230,126,34,0.05);
    color: #E67E22;
    transform: translateY(-2px);
}

.sct-tpl-service-hub .sct-maillage-city-link i {
    color: #E67E22;
    font-size: 0.82rem;
}

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

.sct-tpl-service-hub .sct-maillage-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 24px;
}

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

.sct-tpl-service-hub .sct-maillage-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.sct-tpl-service-hub .sct-maillage-link:hover {
    border-color: #E67E22;
    background: rgba(230,126,34,0.05);
    color: #E67E22;
}

.sct-tpl-service-hub .sct-maillage-link i {
    color: #E67E22;
    font-size: 0.78rem;
}

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

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

.sct-tpl-service-hub .sct-cta-final p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.sct-tpl-service-hub .sct-cta-final .sct-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #E67E22;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.3s;
}

.sct-tpl-service-hub .sct-cta-final .sct-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.sct-tpl-service-hub .sct-cta-final .sct-btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.7);
    transition: background 0.3s, border-color 0.3s;
}

.sct-tpl-service-hub .sct-cta-final .sct-btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: #ffffff;
}

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero { padding: 130px 0 70px; }
    .sct-tpl-service-hub .sct-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sct-tpl-service-hub .sct-hero-card {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 2.2rem; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
    .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: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-service-hub .sct-section { padding: 60px 0; }
    .sct-tpl-service-hub .sct-section-header h2 { font-size: 1.7rem; }
    .sct-tpl-service-hub .sct-maillage-cities { padding: 60px 0; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-hub .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-service-hub .sct-breadcrumb { font-size: 0.78rem; gap: 6px; }
    .sct-tpl-service-hub .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-hero-card { padding: 24px 20px; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
    .sct-tpl-service-hub .sct-stat-number { font-size: 2rem; }
    .sct-tpl-service-hub .sct-services-grid,
    .sct-tpl-service-hub .sct-processus-grid,
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-section { padding: 50px 0; }
    .sct-tpl-service-hub .sct-section-header { margin-bottom: 36px; }
    .sct-tpl-service-hub .sct-section-header h2 { font-size: 1.5rem; }
    .sct-tpl-service-hub .sct-cta-final h2 { font-size: 1.5rem; }
    .sct-tpl-service-hub .sct-cta-final p { font-size: 0.98rem; }
    .sct-tpl-service-hub .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-usecase-text h2 { font-size: 1.5rem; }
    .sct-tpl-service-hub .sct-maillage-city-link { padding: 10px 18px; font-size: 0.85rem; }
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%);
    color: #ffffff;
    overflow: hidden;
}

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

.sct-tpl-zone .sct-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

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

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

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

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

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

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

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

.sct-tpl-zone .sct-hero-text h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #ffffff;
}

.sct-tpl-zone .sct-hero-text h1 .sct-highlight { color: #E67E22; }

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

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

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

.sct-tpl-zone .sct-btn-primary:hover {
    background: #CF6D17;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230,126,34,0.35);
}

.sct-tpl-zone .sct-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #ffffff;
    padding: 14px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    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: #ffffff;
    background: rgba(255,255,255,0.1);
}

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

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

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

.sct-tpl-zone .sct-hero-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 26px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    color: #1f2937;
}

.sct-tpl-zone .sct-hero-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 18px;
}

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

.sct-tpl-zone .sct-hero-card-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
}

.sct-tpl-zone .sct-hero-card-line i {
    color: #E67E22;
    width: 20px;
    text-align: center;
    margin-top: 3px;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-hero-card-line strong {
    display: block;
    color: #2C3E50;
    font-weight: 700;
    margin-bottom: 2px;
}

.sct-tpl-zone .sct-hero-card-line span { color: #4b5563; }

.sct-tpl-zone .sct-hero-card .sct-btn-card {
    display: block;
    width: 100%;
    text-align: center;
    background: #E67E22;
    color: #ffffff;
    padding: 13px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    transition: background 0.3s;
}

.sct-tpl-zone .sct-hero-card .sct-btn-card:hover { background: #CF6D17; }

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

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

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

.sct-tpl-zone .sct-stat-item { color: #ffffff; }

.sct-tpl-zone .sct-stat-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: #E67E22;
    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-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 12px;
}

.sct-tpl-zone .sct-accent-bar {
    width: 60px;
    height: 4px;
    background: #E67E22;
    border-radius: 2px;
    margin: 0 auto 16px;
}

.sct-tpl-zone .sct-section-header p {
    font-size: 1.05rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.sct-tpl-zone .sct-intro-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 18px;
}

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

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

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

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

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

.sct-tpl-zone .sct-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.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 20px; flex: 1; }

.sct-tpl-zone .sct-service-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 8px;
}

.sct-tpl-zone .sct-service-card-body p {
    font-size: 0.92rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #E67E22;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.3s, color 0.3s;
}

.sct-tpl-zone .sct-service-card-link:hover {
    color: #CF6D17;
    gap: 10px;
}

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

.sct-tpl-zone .sct-zones-content { text-align: center; }

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

.sct-tpl-zone .sct-zone-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    transition: border-color 0.3s, background 0.3s;
}

.sct-tpl-zone .sct-zone-tag:hover {
    border-color: #E67E22;
    background: rgba(230,126,34,0.05);
}

.sct-tpl-zone .sct-zone-tag i {
    color: #E67E22;
    font-size: 0.78rem;
}

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

.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: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

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

.sct-tpl-zone .sct-usecase-text h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 6px;
}

.sct-tpl-zone .sct-usecase-text .sct-accent-bar { margin-left: 0; margin-bottom: 20px; }

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

.sct-tpl-zone .sct-usecase-text strong { color: #2C3E50; font-weight: 700; }

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

.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: 12px;
    background: #f9fafb;
    border: 2px solid #f3f4f6;
    transition: border-color 0.3s, transform 0.3s;
}

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

.sct-tpl-zone .sct-engagement-icon {
    width: 64px;
    height: 64px;
    background: rgba(230,126,34,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: #E67E22;
}

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

.sct-tpl-zone .sct-engagement-card p {
    font-size: 0.92rem;
    color: #4b5563;
    line-height: 1.6;
}

.sct-tpl-zone .sct-local-spec {
    background: #f9fafb;
    padding: 60px 0;
}

.sct-tpl-zone .sct-local-spec-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 36px 30px;
    border-left: 4px solid #E67E22;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.sct-tpl-zone .sct-local-spec-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 14px;
}

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

.sct-tpl-zone .sct-local-spec-card strong { color: #2C3E50; }

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

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

.sct-tpl-zone .sct-faq-item {
    background: #f9fafb;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 2px solid #f3f4f6;
    overflow: hidden;
    transition: border-color 0.3s;
}

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

.sct-tpl-zone .sct-faq-question {
    padding: 18px 22px;
    font-size: 1rem;
    font-weight: 600;
    color: #2C3E50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.sct-tpl-zone .sct-faq-question i {
    color: #E67E22;
    flex-shrink: 0;
}

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

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

.sct-tpl-zone .sct-maillage-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 24px;
}

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

.sct-tpl-zone .sct-maillage-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.sct-tpl-zone .sct-maillage-link:hover {
    border-color: #E67E22;
    background: rgba(230,126,34,0.05);
    color: #E67E22;
}

.sct-tpl-zone .sct-maillage-link i {
    color: #E67E22;
    font-size: 0.78rem;
}

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

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

.sct-tpl-zone .sct-cta-final p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.sct-tpl-zone .sct-cta-final .sct-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #E67E22;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.3s;
}

.sct-tpl-zone .sct-cta-final .sct-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.sct-tpl-zone .sct-cta-final .sct-btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.7);
    transition: background 0.3s, border-color 0.3s;
}

.sct-tpl-zone .sct-cta-final .sct-btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: #ffffff;
}

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero { padding: 130px 0 70px; }
    .sct-tpl-zone .sct-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sct-tpl-zone .sct-hero-card {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 2.2rem; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .sct-tpl-zone .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-zone .sct-section { padding: 60px 0; }
    .sct-tpl-zone .sct-section-header h2 { font-size: 1.7rem; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-zone .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-zone .sct-breadcrumb { font-size: 0.78rem; gap: 6px; }
    .sct-tpl-zone .sct-hero-btns { flex-direction: column; }
    .sct-tpl-zone .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-hero-card { padding: 24px 20px; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
    .sct-tpl-zone .sct-stat-number { font-size: 2rem; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-section { padding: 50px 0; }
    .sct-tpl-zone .sct-section-header { margin-bottom: 36px; }
    .sct-tpl-zone .sct-section-header h2 { font-size: 1.5rem; }
    .sct-tpl-zone .sct-cta-final h2 { font-size: 1.5rem; }
    .sct-tpl-zone .sct-cta-final p { font-size: 0.98rem; }
    .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 h2 { font-size: 1.5rem; }
    .sct-tpl-zone .sct-local-spec-card { padding: 26px 22px; }
}

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

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

.sct-tpl-service-city .sct-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-hero-text h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #ffffff;
}

.sct-tpl-service-city .sct-hero-text h1 .sct-highlight { color: #E67E22; }

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

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

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

.sct-tpl-service-city .sct-btn-primary:hover {
    background: #CF6D17;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230,126,34,0.35);
}

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

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

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

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

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

.sct-tpl-service-city .sct-hero-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 26px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    color: #1f2937;
}

.sct-tpl-service-city .sct-hero-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 18px;
}

.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-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
}

.sct-tpl-service-city .sct-hero-card-line i {
    color: #E67E22;
    width: 20px;
    text-align: center;
    margin-top: 3px;
    flex-shrink: 0;
}

.sct-tpl-service-city .sct-hero-card-line strong {
    display: block;
    color: #2C3E50;
    font-weight: 700;
    margin-bottom: 2px;
}

.sct-tpl-service-city .sct-hero-card-line span { color: #4b5563; }

.sct-tpl-service-city .sct-hero-card .sct-btn-card {
    display: block;
    width: 100%;
    text-align: center;
    background: #E67E22;
    color: #ffffff;
    padding: 13px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    transition: background 0.3s;
}

.sct-tpl-service-city .sct-hero-card .sct-btn-card:hover { background: #CF6D17; }

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

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

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

.sct-tpl-service-city .sct-stat-item { color: #ffffff; }

.sct-tpl-service-city .sct-stat-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: #E67E22;
    line-height: 1;
    margin-bottom: 6px;
}

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

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

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

.sct-tpl-service-city .sct-section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-accent-bar {
    width: 60px;
    height: 4px;
    background: #E67E22;
    border-radius: 2px;
    margin: 0 auto 16px;
}

.sct-tpl-service-city .sct-section-header p {
    font-size: 1.05rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    border-left: 4px solid #E67E22;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

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

.sct-tpl-service-city .sct-service-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 8px;
}

.sct-tpl-service-city .sct-service-card-body p {
    font-size: 0.92rem;
    color: #4b5563;
    line-height: 1.6;
}

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

.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-step-card {
    text-align: center;
    padding: 26px 18px;
    background: #f9fafb;
    border-radius: 12px;
    border-top: 3px solid #E67E22;
    position: relative;
}

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

.sct-tpl-service-city .sct-step-icon {
    font-size: 1.6rem;
    color: #E67E22;
    margin-top: 10px;
    margin-bottom: 14px;
}

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

.sct-tpl-service-city .sct-step-card p {
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.55;
}

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

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

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

.sct-tpl-service-city .sct-why-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: #ffffff;
    border: 2px solid #f3f4f6;
    transition: border-color 0.3s, transform 0.3s;
}

.sct-tpl-service-city .sct-why-card:hover {
    border-color: #E67E22;
    transform: translateY(-3px);
}

.sct-tpl-service-city .sct-why-icon {
    width: 60px;
    height: 60px;
    background: rgba(230,126,34,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: #E67E22;
}

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

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

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

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

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

.sct-tpl-service-city .sct-zone-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    transition: border-color 0.3s, background 0.3s;
}

.sct-tpl-service-city .sct-zone-tag:hover {
    border-color: #E67E22;
    background: rgba(230,126,34,0.05);
}

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

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

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

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

.sct-tpl-service-city .sct-usecase-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.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-size: 1.9rem;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 6px;
}

.sct-tpl-service-city .sct-usecase-text .sct-accent-bar { margin-left: 0; margin-bottom: 20px; }

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

.sct-tpl-service-city .sct-usecase-text strong { color: #2C3E50; font-weight: 700; }

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

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

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

.sct-tpl-service-city .sct-engagement-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 12px;
    background: #f9fafb;
    border: 2px solid #f3f4f6;
    transition: border-color 0.3s, transform 0.3s;
}

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

.sct-tpl-service-city .sct-engagement-icon {
    width: 64px;
    height: 64px;
    background: rgba(230,126,34,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: #E67E22;
}

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

.sct-tpl-service-city .sct-engagement-card p {
    font-size: 0.92rem;
    color: #4b5563;
    line-height: 1.6;
}

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

.sct-tpl-service-city .sct-local-spec-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 36px 30px;
    border-left: 4px solid #E67E22;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.sct-tpl-service-city .sct-local-spec-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-local-spec-card p {
    font-size: 0.98rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-local-spec-card strong { color: #2C3E50; }

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

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

.sct-tpl-service-city .sct-faq-item {
    background: #f9fafb;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 2px solid #f3f4f6;
    overflow: hidden;
    transition: border-color 0.3s;
}

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

.sct-tpl-service-city .sct-faq-question {
    padding: 18px 22px;
    font-size: 1rem;
    font-weight: 600;
    color: #2C3E50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.sct-tpl-service-city .sct-faq-question i {
    color: #E67E22;
    flex-shrink: 0;
}

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

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

.sct-tpl-service-city .sct-maillage-section + .sct-maillage-section {
    background: #ffffff;
}

.sct-tpl-service-city .sct-maillage-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 24px;
}

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

.sct-tpl-service-city .sct-maillage-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: border-color 0.3s, background 0.3s, color 0.3s;
}

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

.sct-tpl-service-city .sct-maillage-link:hover {
    border-color: #E67E22;
    background: rgba(230,126,34,0.05);
    color: #E67E22;
}

.sct-tpl-service-city .sct-maillage-link i {
    color: #E67E22;
    font-size: 0.78rem;
}

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

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

.sct-tpl-service-city .sct-cta-final p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.sct-tpl-service-city .sct-cta-final .sct-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #E67E22;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.3s;
}

.sct-tpl-service-city .sct-cta-final .sct-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.sct-tpl-service-city .sct-cta-final .sct-btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.7);
    transition: background 0.3s, border-color 0.3s;
}

.sct-tpl-service-city .sct-cta-final .sct-btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: #ffffff;
}

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

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-city .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-service-city .sct-breadcrumb { font-size: 0.78rem; gap: 6px; }
    .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 20px; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
    .sct-tpl-service-city .sct-stat-number { font-size: 2rem; }
    .sct-tpl-service-city .sct-services-grid,
    .sct-tpl-service-city .sct-processus-grid,
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-section { padding: 50px 0; }
    .sct-tpl-service-city .sct-section-header { margin-bottom: 36px; }
    .sct-tpl-service-city .sct-section-header h2 { font-size: 1.5rem; }
    .sct-tpl-service-city .sct-cta-final h2 { font-size: 1.5rem; }
    .sct-tpl-service-city .sct-cta-final p { font-size: 0.98rem; }
    .sct-tpl-service-city .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-usecase-text h2 { font-size: 1.5rem; }
    .sct-tpl-service-city .sct-local-spec-card { padding: 26px 22px; }
}

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

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

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

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

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

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

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

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

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

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

.page-hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--secondary-dark);
    overflow: hidden;
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://webflash.pro/images/hero_1775765507_69d8080352e77.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44,62,80,0.92) 0%, rgba(44,62,80,0.7) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 14px;
}

.page-hero h1 .highlight {
    color: var(--primary);
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230,126,34,0.15);
    border: 1px solid rgba(230,126,34,0.3);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
}

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

.breadcrumb a:hover {
    text-decoration: underline;
}

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

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

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

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

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

.sitemap-block-icon {
    width: 48px;
    height: 48px;
    background: rgba(230,126,34,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sitemap-block-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
}

.sitemap-block-subtitle {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 2px;
    font-weight: 500;
}

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: border-color 0.3s, background 0.3s, transform 0.2s, color 0.3s;
}

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

.chip:hover {
    border-color: var(--primary);
    background: rgba(230,126,34,0.05);
    color: var(--secondary);
    transform: translateY(-2px);
}

.chip:hover i {
    transform: translateX(2px);
}

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

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

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

.sub-group {
    background: var(--white);
    border-radius: 12px;
    padding: 24px 26px;
    margin-bottom: 18px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sub-group:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.sub-group-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

.sub-group-title i {
    color: var(--primary);
    font-size: 0.95rem;
}

.sub-group .chips .chip {
    background: var(--gray-50);
    font-size: 0.85rem;
    padding: 8px 14px;
}

.sub-group .chips .chip:hover {
    background: rgba(230,126,34,0.05);
}

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

.footer-contact-item i {
    color: var(--primary);
    width: 16px;
    flex-shrink: 0;
}

.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: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(44, 62, 80, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 4px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .nav a {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav .btn-cta-nav {
        text-align: center;
        margin-top: 8px;
    }

    .menu-toggle {
        display: block;
    }

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

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

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

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

    .sitemap-block-title {
        font-size: 1.2rem;
    }

    .sitemap-block-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

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

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

    .cta-band p {
        font-size: 1.1rem;
    }
}

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

    .chip {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    .sub-group {
        padding: 20px 18px;
    }
}