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

.menu-toggle { cursor: pointer; }

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

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

#menuCheck:checked ~ .menu-toggle .icon-bars { display: none; }

#menuCheck:checked ~ .menu-toggle .icon-times { display: inline-block; }

*, *::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;
            }
        }

body {
            font-family: 'Nunito', sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #fafbfc;
        }

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

.header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #fff;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            z-index: 1000;
            transition: box-shadow 0.3s ease;
        }

.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: #4A90B8;
            font-weight: 800;
            font-size: 1.25rem;
        }

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

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

.nav a {
            text-decoration: none;
            color: #555;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 8px 12px;
            border-radius: 8px;
            transition: color 0.3s ease, background 0.3s ease;
        }

.nav a:hover {
            color: #4A90B8;
            background: rgba(74, 144, 184, 0.08);
        }

.nav .btn-cta-nav {
            background: #4A90B8;
            color: #fff;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 700;
            white-space: nowrap;
            transition: background 0.3s ease, transform 0.2s ease;
        }

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

.menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #4A90B8;
            cursor: pointer;
            padding: 8px;
        }

.hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 70px;
            background: linear-gradient(135deg, rgba(74, 144, 184, 0.92) 0%, rgba(123, 198, 126, 0.88) 100%),
                        url('https://webflash.pro/images/hero_1775586539_69d54ceb7f8e5.webp') center/cover no-repeat;
            overflow: hidden;
        }

.hero-overlay {
            position: absolute;
            inset: 0;
            background: url('https://webflash.pro/images/hero_1775586539_69d54ceb7f8e5.webp') center/cover no-repeat;
            z-index: 0;
        }

.hero-overlay::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(74, 144, 184, 0.92) 0%, rgba(123, 198, 126, 0.85) 100%);
        }

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

.hero-text {
            color: #fff;
        }

.hero-text h1 {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

.hero-text p {
            font-size: 1.15rem;
            opacity: 0.95;
            margin-bottom: 30px;
            line-height: 1.7;
        }

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

.btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            color: #4A90B8;
            padding: 14px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: transform 0.2s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }

.btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(0,0,0,0.2);
        }

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

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

.devis-card {
            background: #fff;
            border-radius: 20px;
            padding: 35px 30px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
        }

.devis-card-title {
            font-size: 1.35rem;
            font-weight: 800;
            color: #4A90B8;
            margin-bottom: 5px;
            text-align: center;
        }

.devis-card-subtitle {
            font-size: 0.9rem;
            color: #777;
            text-align: center;
            margin-bottom: 25px;
        }

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

.form-group label {
            display: block;
            font-weight: 700;
            font-size: 0.85rem;
            color: #444;
            margin-bottom: 5px;
        }

.form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e8ecef;
            border-radius: 12px;
            font-family: 'Nunito', sans-serif;
            font-size: 0.95rem;
            color: #333;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            background: #fafbfc;
        }

.form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #4A90B8;
            box-shadow: 0 0 0 3px rgba(74, 144, 184, 0.15);
            background: #fff;
        }

.form-group textarea {
            resize: vertical;
        }

.btn-submit {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #4A90B8, #7BC67E);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-family: 'Nunito', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.3s ease;
        }

.btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 144, 184, 0.35);
        }

.btn-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

.chiffres {
            background: linear-gradient(135deg, #4A90B8, #3a7a9e);
            padding: 50px 20px;
            color: #fff;
        }

.chiffres-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

.chiffre-item {
            padding: 20px 10px;
        }

.chiffre-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            opacity: 0.9;
        }

.chiffre-nombre {
            font-size: 2.5rem;
            font-weight: 800;
            display: block;
            line-height: 1.2;
        }

.chiffre-label {
            font-size: 0.95rem;
            opacity: 0.9;
            margin-top: 5px;
        }

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

.section-alt {
            background: #f0f5f8;
        }

.section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 800;
            color: #2c3e50;
            margin-bottom: 12px;
        }

.section-subtitle {
            text-align: center;
            color: #777;
            font-size: 1.05rem;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

.title-bar {
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, #4A90B8, #7BC67E);
            border-radius: 2px;
            margin: 15px auto 20px;
        }

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

.service-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0,0,0,0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: calc(33.333% - 20px);
            min-width: 280px;
            max-width: 380px;
        }

.service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.12);
        }

.service-card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

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

.service-card-body h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
        }

.service-card-body p {
            color: #666;
            font-size: 0.92rem;
            line-height: 1.6;
        }

.credit-impot {
            background: linear-gradient(135deg, #f0faf1, #e8f4fd);
            padding: 80px 20px;
        }

.credit-impot-inner {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

.credit-impot-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #4A90B8, #7BC67E);
            color: #fff;
            padding: 10px 24px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 25px;
        }

.credit-impot-title {
            font-size: 2rem;
            font-weight: 800;
            color: #2c3e50;
            margin-bottom: 12px;
        }

.credit-impot-desc {
            color: #555;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 35px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

.credit-impot-example {
            display: inline-flex;
            align-items: center;
            gap: 20px;
            background: #fff;
            border-radius: 20px;
            padding: 30px 40px;
            box-shadow: 0 10px 35px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }

.credit-impot-example-item {
            text-align: center;
            min-width: 120px;
        }

.credit-impot-example-amount {
            font-size: 2rem;
            font-weight: 800;
            color: #4A90B8;
            display: block;
            line-height: 1.2;
        }

.credit-impot-example-amount.green {
            color: #7BC67E;
        }

.credit-impot-example-label {
            font-size: 0.85rem;
            color: #777;
            margin-top: 4px;
        }

.credit-impot-arrow {
            font-size: 1.5rem;
            color: #4A90B8;
        }

.credit-impot-note {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.7;
            max-width: 650px;
            margin: 0 auto;
            background: #fff;
            padding: 20px 28px;
            border-radius: 12px;
            border-left: 4px solid #7BC67E;
            text-align: left;
        }

.credit-impot-note strong {
            color: #2c3e50;
        }

@media (max-width: 640px) {
            .credit-impot {
                padding: 60px 20px;
            }

            .credit-impot-title {
                font-size: 1.6rem;
            }

            .credit-impot-example {
                padding: 20px;
                gap: 15px;
            }

            .credit-impot-example-amount {
                font-size: 1.5rem;
            }
        }

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

.engagement-item {
            text-align: center;
            padding: 35px 20px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

.engagement-item:hover {
            transform: translateY(-3px);
        }

.engagement-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(74, 144, 184, 0.12), rgba(123, 198, 126, 0.12));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-size: 1.6rem;
            color: #4A90B8;
        }

.engagement-item h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 8px;
        }

.engagement-item p {
            color: #777;
            font-size: 0.88rem;
            line-height: 1.5;
        }

.steps-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
        }

.step-item {
            text-align: center;
            padding: 30px 16px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            position: relative;
            transition: transform 0.3s ease;
        }

.step-item:hover {
            transform: translateY(-3px);
        }

.step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #4A90B8, #7BC67E);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 1.3rem;
            font-weight: 800;
            color: #fff;
        }

.step-icon {
            font-size: 1.4rem;
            color: #4A90B8;
            margin-bottom: 12px;
        }

.step-item h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 8px;
        }

.step-item p {
            color: #777;
            font-size: 0.88rem;
            line-height: 1.5;
        }

.step-connector {
            display: none;
        }

@media (min-width: 769px) {
            .step-connector {
                display: block;
                position: absolute;
                top: 55px;
                right: -16px;
                color: #7BC67E;
                font-size: 1rem;
                z-index: 1;
            }

            .step-item:last-child .step-connector {
                display: none;
            }
        }

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

@media (max-width: 768px) {
            .steps-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                gap: 16px;
            }

            .step-item {
                display: flex;
                align-items: center;
                text-align: left;
                padding: 20px;
                gap: 16px;
            }

            .step-number {
                margin: 0;
                flex-shrink: 0;
                width: 44px;
                height: 44px;
                font-size: 1.1rem;
            }

            .step-icon {
                display: none;
            }

            .step-item h3 {
                margin-bottom: 4px;
            }
        }

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

.about-img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

.about-text h2 {
            text-align: left;
            margin-bottom: 12px;
        }

.about-text .title-bar {
            margin-left: 0;
        }

.about-text p {
            color: #555;
            margin-bottom: 16px;
            line-height: 1.7;
        }

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

.about-list li {
            padding: 8px 0;
            color: #444;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

.about-list li i {
            color: #7BC67E;
            font-size: 1.1rem;
        }

.zones-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

.zone-badge-main {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #4A90B8, #7BC67E);
            color: #fff;
            padding: 16px 32px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.15rem;
            margin-bottom: 30px;
        }

.zones-villes {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 20px;
        }

.zone-tag {
            background: #fff;
            border: 2px solid #e8ecef;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #4A90B8;
            text-decoration: none;
            transition: border-color 0.3s ease, background 0.3s ease;
        }

.zone-tag:hover {
            border-color: #4A90B8;
            background: rgba(74, 144, 184, 0.05);
        }

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

.faq-item {
            background: #fff;
            border-radius: 12px;
            margin-bottom: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.04);
            overflow: hidden;
        }

.faq-question {
            width: 100%;
            padding: 20px 25px;
            background: none;
            border: none;
            text-align: left;
            font-family: 'Nunito', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: #2c3e50;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
            transition: color 0.3s ease;
        }

.faq-question:hover {
            color: #4A90B8;
        }

.faq-question i {
            transition: transform 0.3s ease;
            color: #4A90B8;
            flex-shrink: 0;
        }

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

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

.faq-answer-inner {
            padding: 0 25px 20px;
            color: #666;
            line-height: 1.7;
        }

.avis-header {
            text-align: center;
            margin-bottom: 40px;
        }

.avis-global {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, rgba(74, 144, 184, 0.08), rgba(123, 198, 126, 0.08));
            padding: 16px 30px;
            border-radius: 16px;
            margin-bottom: 10px;
        }

.avis-global-note {
            font-size: 2rem;
            font-weight: 800;
            color: #2c3e50;
        }

.avis-global-stars {
            color: #f59e0b;
            font-size: 1.3rem;
        }

.avis-global-label {
            font-size: 0.92rem;
            color: #777;
        }

.avis-google-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 15px;
            color: #4A90B8;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

.avis-google-link:hover {
            color: #3a7a9e;
            text-decoration: underline;
        }

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

.avis-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 24px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

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

.avis-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

.avis-avatar {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #4A90B8, #7BC67E);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

.avis-author {
            font-weight: 700;
            color: #2c3e50;
            font-size: 0.95rem;
        }

.avis-stars {
            color: #f59e0b;
            font-size: 0.85rem;
            margin-top: 2px;
        }

.avis-card p {
            color: #666;
            font-size: 0.92rem;
            line-height: 1.6;
            font-style: italic;
        }

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

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

.horaires-card {
            max-width: 500px;
            margin: 0 auto;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 10px 35px rgba(0,0,0,0.08);
            overflow: hidden;
        }

.horaires-header {
            background: linear-gradient(135deg, #4A90B8, #7BC67E);
            padding: 25px 30px;
            color: #fff;
            text-align: center;
        }

.horaires-header i {
            font-size: 1.8rem;
            margin-bottom: 8px;
            display: block;
        }

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

.horaire-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 30px;
            border-bottom: 1px solid #f0f2f5;
            font-size: 0.95rem;
        }

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

.horaire-jour {
            font-weight: 700;
            color: #2c3e50;
        }

.horaire-heures {
            color: #4A90B8;
            font-weight: 600;
        }

.horaire-ferme {
            color: #e74c3c;
            font-weight: 600;
        }

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

.contact-info-list {
            list-style: none;
            margin-bottom: 30px;
        }

.contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 16px 0;
            border-bottom: 1px solid #eee;
        }

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

.contact-info-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, rgba(74, 144, 184, 0.12), rgba(123, 198, 126, 0.12));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4A90B8;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

.contact-info-text {
            display: flex;
            flex-direction: column;
        }

.contact-info-label {
            font-weight: 700;
            color: #2c3e50;
            font-size: 0.9rem;
        }

.contact-info-value {
            color: #666;
            font-size: 0.95rem;
            margin-top: 2px;
        }

.contact-info-value a {
            color: #4A90B8;
            text-decoration: none;
            font-weight: 600;
        }

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

.contact-form {
            background: #fff;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 35px rgba(0,0,0,0.06);
        }

.contact-form-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 25px;
        }

.map-container {
            margin-top: 50px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 35px rgba(0,0,0,0.08);
        }

.map-container iframe {
            display: block;
        }

.footer {
            background: #1e2a3a;
            color: #ccc;
            padding-top: 60px;
            padding-bottom: 0;
        }

.footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 40px;
        }

.footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            color: #fff;
            font-weight: 800;
            font-size: 1.15rem;
        }

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

.footer-desc {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #aab;
        }

.footer-heading {
            font-weight: 700;
            color: #fff;
            font-size: 1rem;
            margin-bottom: 18px;
        }

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

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

.footer-links a {
            color: #aab;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

.footer-links a:hover {
            color: #7BC67E;
        }

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

.footer-contact-item i {
            color: #7BC67E;
            width: 18px;
            text-align: center;
        }

.footer-contact-item a {
            color: #aab;
            text-decoration: none;
        }

.footer-contact-item a:hover {
            color: #7BC67E;
        }

.footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 20px;
            text-align: center;
            font-size: 0.85rem;
            color: #888;
        }

.footer-bottom a {
            color: #aab;
            text-decoration: none;
        }

.footer-bottom a:hover {
            color: #7BC67E;
        }

.cta-mobile-sticky {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #fff;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
            z-index: 999;
            padding: 12px 20px;
        }

.cta-mobile-sticky a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(135deg, #4A90B8, #7BC67E);
            color: #fff;
            padding: 14px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
        }

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

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

.modal-content {
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }

.modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #999;
            cursor: pointer;
        }

.modal-content p {
            margin-bottom: 10px;
            line-height: 1.6;
            color: #555;
            font-size: 0.92rem;
        }

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

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

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

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

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

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

            .nav.active {
                display: flex;
            }

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

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

            .menu-toggle {
                display: block;
            }

            .hero-container {
                grid-template-columns: 1fr;
                padding-top: 40px;
                padding-bottom: 40px;
                gap: 30px;
            }

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

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

            .service-card {
                width: 100%;
                max-width: 400px;
            }

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

            .about-text h2 {
                text-align: center;
            }

            .about-text .title-bar {
                margin-left: auto;
                margin-right: auto;
            }

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

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

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

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

            .cta-mobile-sticky {
                display: block;
            }

            body {
                padding-bottom: 70px;
            }
        }

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

            .hero-container {
                padding-top: 30px;
                padding-bottom: 30px;
            }

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

            .section-title {
                font-size: 1.6rem;
            }

            .chiffre-nombre {
                font-size: 2rem;
            }

            .horaire-row {
                padding: 12px 20px;
            }

            .contact-form {
                padding: 25px 20px;
            }
        }

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

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

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

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

.sct-tpl-service-hub { color: #333; font-family: 'Nunito', sans-serif; }

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(135deg, rgba(74,144,184,0.92) 0%, rgba(123,198,126,0.88) 100%),
                url('/images/service_3_1775586610_69d54d323bbed.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

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

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

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

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

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

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

.sct-tpl-service-hub .sct-breadcrumb a:hover { color: #fff; text-decoration: underline; }

.sct-tpl-service-hub .sct-bc-sep { opacity: 0.6; }

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

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

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}

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

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

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

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 28px;
}

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

.sct-tpl-service-hub .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #4A90B8;
    padding: 14px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.sct-tpl-service-hub .sct-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(0,0,0,0.22); }

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

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

.sct-tpl-service-hub .sct-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.9rem;
}

.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: #c8f0cb; }

.sct-tpl-service-hub .sct-hero-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.18);
    color: #333;
}

.sct-tpl-service-hub .sct-hero-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #4A90B8;
    margin-bottom: 6px;
    text-align: center;
}

.sct-tpl-service-hub .sct-hero-card-subtitle {
    font-size: 0.88rem;
    color: #777;
    text-align: center;
    margin-bottom: 22px;
}

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

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

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

.sct-tpl-service-hub .sct-hero-card-list li i {
    color: #4A90B8;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
}

.sct-tpl-service-hub .sct-hero-card-list li strong { color: #2c3e50; display: block; margin-bottom: 2px; }

.sct-tpl-service-hub .sct-hero-card-cta {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4A90B8, #7BC67E);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.sct-tpl-service-hub .sct-hero-card-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74,144,184,0.35); }

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 2.1rem; }
}

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

.sct-tpl-service-hub .sct-stats-band {
    background: linear-gradient(135deg, #4A90B8, #3a7a9e);
    padding: 50px 20px;
    color: #fff;
}

.sct-tpl-service-hub .sct-stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    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 { padding: 15px 8px; }

.sct-tpl-service-hub .sct-stat-icon { font-size: 1.8rem; margin-bottom: 10px; opacity: 0.9; }

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

.sct-tpl-service-hub .sct-stat-label { font-size: 0.92rem; opacity: 0.92; margin-top: 4px; }

@media (max-width: 768px) {
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .sct-tpl-service-hub .sct-stat-value { font-size: 1.8rem; }
}

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

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

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

.sct-tpl-service-hub .sct-section-subtitle {
    text-align: center;
    color: #777;
    font-size: 1.02rem;
    margin: 0 auto 45px;
    max-width: 700px;
}

.sct-tpl-service-hub .sct-title-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #4A90B8, #7BC67E);
    border-radius: 2px;
    margin: 14px auto 18px;
}

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

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

.sct-tpl-service-hub .sct-intro-content {
    max-width: 880px;
    margin: 0 auto;
    color: #555;
    font-size: 1.02rem;
    line-height: 1.8;
}

.sct-tpl-service-hub .sct-intro-content p { margin-bottom: 18px; }

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

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

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

.sct-tpl-service-hub .sct-service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

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

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

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

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

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

.sct-tpl-service-hub .sct-step-item {
    text-align: center;
    padding: 28px 16px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    position: relative;
}

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

.sct-tpl-service-hub .sct-step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4A90B8, #7BC67E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.sct-tpl-service-hub .sct-step-icon { font-size: 1.4rem; color: #4A90B8; margin-bottom: 10px; }

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

.sct-tpl-service-hub .sct-step-item p { color: #777; font-size: 0.87rem; line-height: 1.5; }

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

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

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

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

.sct-tpl-service-hub .sct-why-item {
    text-align: center;
    padding: 32px 22px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.sct-tpl-service-hub .sct-why-item:hover { transform: translateY(-4px); }

.sct-tpl-service-hub .sct-why-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(74,144,184,0.12), rgba(123,198,126,0.12));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.55rem;
    color: #4A90B8;
}

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

.sct-tpl-service-hub .sct-why-item p { color: #777; font-size: 0.9rem; line-height: 1.55; }

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

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

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

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

.sct-tpl-service-hub .sct-usecase-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: block;
}

.sct-tpl-service-hub .sct-usecase-text h2 { text-align: left; margin-bottom: 12px; font-size: 1.85rem; font-weight: 800; color: #2c3e50; }

.sct-tpl-service-hub .sct-usecase-text .sct-title-bar { margin-left: 0; }

.sct-tpl-service-hub .sct-usecase-text p { color: #555; line-height: 1.75; margin-bottom: 14px; }

.sct-tpl-service-hub .sct-usecase-text strong { color: #2c3e50; }

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

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

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

.sct-tpl-service-hub .sct-engagement-item {
    background: #fff;
    border-radius: 16px;
    padding: 32px 26px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 4px solid #4A90B8;
    transition: transform 0.3s ease;
}

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

.sct-tpl-service-hub .sct-engagement-icon {
    font-size: 1.7rem;
    color: #4A90B8;
    margin-bottom: 14px;
}

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

.sct-tpl-service-hub .sct-engagement-item p { color: #666; font-size: 0.92rem; line-height: 1.65; }

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

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

.sct-tpl-service-hub .sct-faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    overflow: hidden;
}

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

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

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

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

.sct-tpl-service-hub .sct-faq-answer { padding: 0 24px 20px; color: #666; line-height: 1.7; font-size: 0.95rem; }

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

.sct-tpl-service-hub .sct-maillage-cities-section {
    background: linear-gradient(135deg, #f0faf1, #e8f4fd);
    padding: 70px 0;
}

.sct-tpl-service-hub .sct-maillage-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-maillage-subtitle {
    text-align: center;
    color: #777;
    font-size: 0.98rem;
    margin: 0 auto 30px;
    max-width: 600px;
}

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

.sct-tpl-service-hub .sct-maillage-list a {
    background: #fff;
    border: 1px solid #e8ecef;
    padding: 9px 18px;
    border-radius: 22px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #4A90B8;
    text-decoration: none;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sct-tpl-service-hub .sct-maillage-list a:hover {
    border-color: #4A90B8;
    background: rgba(74,144,184,0.06);
    transform: translateY(-2px);
}

.sct-tpl-service-hub .sct-cta-final {
    background: linear-gradient(135deg, #4A90B8 0%, #7BC67E 100%);
    padding: 70px 20px;
    color: #fff;
    text-align: center;
}

.sct-tpl-service-hub .sct-cta-final-inner { max-width: 800px; margin: 0 auto; }

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

.sct-tpl-service-hub .sct-cta-final p { font-size: 1.05rem; opacity: 0.95; margin-bottom: 28px; line-height: 1.7; }

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

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

.sct-tpl-zone { color: #333; font-family: 'Nunito', sans-serif; }

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(135deg, rgba(74,144,184,0.92) 0%, rgba(123,198,126,0.88) 100%),
                url('/images/service_1_1775586562_69d54d0242256.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

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

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

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

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

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

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

.sct-tpl-zone .sct-breadcrumb a:hover { color: #fff; text-decoration: underline; }

.sct-tpl-zone .sct-bc-sep { opacity: 0.6; }

.sct-tpl-zone .sct-bc-current { font-weight: 700; color: #fff; }

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

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}

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

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

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

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 28px;
}

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

.sct-tpl-zone .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #4A90B8;
    padding: 14px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.sct-tpl-zone .sct-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(0,0,0,0.22); }

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

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

.sct-tpl-zone .sct-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.9rem;
}

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

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

.sct-tpl-zone .sct-hero-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.18);
    color: #333;
}

.sct-tpl-zone .sct-hero-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #4A90B8;
    margin-bottom: 6px;
    text-align: center;
}

.sct-tpl-zone .sct-hero-card-subtitle {
    font-size: 0.88rem;
    color: #777;
    text-align: center;
    margin-bottom: 22px;
}

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

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

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

.sct-tpl-zone .sct-hero-card-list li i {
    color: #4A90B8;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
}

.sct-tpl-zone .sct-hero-card-list li strong { color: #2c3e50; display: block; margin-bottom: 2px; }

.sct-tpl-zone .sct-hero-card-cta {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4A90B8, #7BC67E);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.sct-tpl-zone .sct-hero-card-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74,144,184,0.35); }

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-zone .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 2.1rem; }
}

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

.sct-tpl-zone .sct-stats-band {
    background: linear-gradient(135deg, #4A90B8, #3a7a9e);
    padding: 50px 20px;
    color: #fff;
}

.sct-tpl-zone .sct-stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    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 { padding: 15px 8px; }

.sct-tpl-zone .sct-stat-icon { font-size: 1.8rem; margin-bottom: 10px; opacity: 0.9; }

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

.sct-tpl-zone .sct-stat-label { font-size: 0.92rem; opacity: 0.92; margin-top: 4px; }

@media (max-width: 768px) {
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .sct-tpl-zone .sct-stat-value { font-size: 1.8rem; }
}

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

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

.sct-tpl-zone .sct-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 12px;
}

.sct-tpl-zone .sct-section-subtitle {
    text-align: center;
    color: #777;
    font-size: 1.02rem;
    margin: 0 auto 45px;
    max-width: 700px;
}

.sct-tpl-zone .sct-title-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #4A90B8, #7BC67E);
    border-radius: 2px;
    margin: 14px auto 18px;
}

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

.sct-tpl-zone .sct-intro-section { padding: 70px 0 30px; }

.sct-tpl-zone .sct-intro-content {
    max-width: 880px;
    margin: 0 auto;
    color: #555;
    font-size: 1.02rem;
    line-height: 1.8;
}

.sct-tpl-zone .sct-intro-content p { margin-bottom: 18px; }

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

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

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

.sct-tpl-zone .sct-service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sct-tpl-zone .sct-service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.12); }

.sct-tpl-zone .sct-service-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }

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

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

.sct-tpl-zone .sct-service-card-body p { color: #666; font-size: 0.93rem; line-height: 1.6; margin-bottom: 16px; flex: 1; }

.sct-tpl-zone .sct-service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4A90B8;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: color 0.3s ease, gap 0.3s ease;
    margin-top: auto;
}

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

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

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

.sct-tpl-zone .sct-zones-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.sct-tpl-zone .sct-zones-intro {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.sct-tpl-zone .sct-zones-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.sct-tpl-zone .sct-zone-tag {
    background: #fff;
    border: 2px solid #e8ecef;
    padding: 9px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #4A90B8;
    transition: border-color 0.3s ease, background 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

.sct-tpl-zone .sct-zone-tag:hover { border-color: #4A90B8; background: rgba(74,144,184,0.05); }

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

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

.sct-tpl-zone .sct-usecase-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: block;
}

.sct-tpl-zone .sct-usecase-text h2 { text-align: left; margin-bottom: 12px; font-size: 1.85rem; font-weight: 800; color: #2c3e50; }

.sct-tpl-zone .sct-usecase-text .sct-title-bar { margin-left: 0; }

.sct-tpl-zone .sct-usecase-text p { color: #555; line-height: 1.75; margin-bottom: 14px; }

.sct-tpl-zone .sct-usecase-text strong { color: #2c3e50; }

@media (max-width: 992px) { .sct-tpl-zone .sct-usecase-grid { grid-template-columns: 1fr; gap: 35px; } }

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

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

.sct-tpl-zone .sct-engagement-item {
    background: #fff;
    border-radius: 16px;
    padding: 32px 26px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 4px solid #4A90B8;
    transition: transform 0.3s ease;
}

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

.sct-tpl-zone .sct-engagement-icon {
    font-size: 1.7rem;
    color: #4A90B8;
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-engagement-item h3 { font-size: 1.1rem; font-weight: 700; color: #2c3e50; margin-bottom: 10px; }

.sct-tpl-zone .sct-engagement-item p { color: #666; font-size: 0.92rem; line-height: 1.65; }

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

.sct-tpl-zone .sct-local-spec {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f0faf1, #e8f4fd);
    border-radius: 20px;
    padding: 38px 36px;
    border-left: 5px solid #7BC67E;
}

.sct-tpl-zone .sct-local-spec h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.sct-tpl-zone .sct-local-spec p { color: #555; line-height: 1.75; }

@media (max-width: 640px) { .sct-tpl-zone .sct-local-spec { padding: 28px 22px; } }

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

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

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

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

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

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

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

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

.sct-tpl-zone .sct-maillage-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 12px;
}

.sct-tpl-zone .sct-maillage-subtitle {
    text-align: center;
    color: #777;
    font-size: 0.98rem;
    margin: 0 auto 28px;
    max-width: 600px;
}

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

.sct-tpl-zone .sct-maillage-list a {
    background: #fff;
    border: 1px solid #e8ecef;
    padding: 9px 18px;
    border-radius: 22px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #4A90B8;
    text-decoration: none;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sct-tpl-zone .sct-maillage-list a:hover {
    border-color: #4A90B8;
    background: rgba(74,144,184,0.06);
    transform: translateY(-2px);
}

.sct-tpl-zone .sct-cta-final {
    background: linear-gradient(135deg, #4A90B8 0%, #7BC67E 100%);
    padding: 70px 20px;
    color: #fff;
    text-align: center;
}

.sct-tpl-zone .sct-cta-final-inner { max-width: 800px; margin: 0 auto; }

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

.sct-tpl-zone .sct-cta-final p { font-size: 1.05rem; opacity: 0.95; margin-bottom: 28px; line-height: 1.7; }

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

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

.sct-tpl-service-city { color: #333; font-family: 'Nunito', sans-serif; }

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(135deg, rgba(74,144,184,0.92) 0%, rgba(123,198,126,0.88) 100%),
                url('/images/service_1_1775586562_69d54d0242256.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

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

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

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

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

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

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

.sct-tpl-service-city .sct-breadcrumb a:hover { color: #fff; text-decoration: underline; }

.sct-tpl-service-city .sct-bc-sep { opacity: 0.6; }

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

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

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}

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

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

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

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 28px;
}

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

.sct-tpl-service-city .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #4A90B8;
    padding: 14px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.sct-tpl-service-city .sct-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(0,0,0,0.22); }

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

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

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

.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: #c8f0cb; }

.sct-tpl-service-city .sct-hero-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.18);
    color: #333;
}

.sct-tpl-service-city .sct-hero-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #4A90B8;
    margin-bottom: 6px;
    text-align: center;
}

.sct-tpl-service-city .sct-hero-card-subtitle {
    font-size: 0.88rem;
    color: #777;
    text-align: center;
    margin-bottom: 22px;
}

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

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

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

.sct-tpl-service-city .sct-hero-card-list li i {
    color: #4A90B8;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
}

.sct-tpl-service-city .sct-hero-card-list li strong { color: #2c3e50; display: block; margin-bottom: 2px; }

.sct-tpl-service-city .sct-hero-card-cta {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4A90B8, #7BC67E);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.sct-tpl-service-city .sct-hero-card-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74,144,184,0.35); }

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-city .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 2.1rem; }
}

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

.sct-tpl-service-city .sct-stats-band {
    background: linear-gradient(135deg, #4A90B8, #3a7a9e);
    padding: 50px 20px;
    color: #fff;
}

.sct-tpl-service-city .sct-stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    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 { padding: 15px 8px; }

.sct-tpl-service-city .sct-stat-icon { font-size: 1.8rem; margin-bottom: 10px; opacity: 0.9; }

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

.sct-tpl-service-city .sct-stat-label { font-size: 0.92rem; opacity: 0.92; margin-top: 4px; }

@media (max-width: 768px) {
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .sct-tpl-service-city .sct-stat-value { font-size: 1.8rem; }
}

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

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

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

.sct-tpl-service-city .sct-section-subtitle {
    text-align: center;
    color: #777;
    font-size: 1.02rem;
    margin: 0 auto 45px;
    max-width: 700px;
}

.sct-tpl-service-city .sct-title-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #4A90B8, #7BC67E);
    border-radius: 2px;
    margin: 14px auto 18px;
}

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

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

.sct-tpl-service-city .sct-intro-content {
    max-width: 880px;
    margin: 0 auto;
    color: #555;
    font-size: 1.02rem;
    line-height: 1.8;
}

.sct-tpl-service-city .sct-intro-content p { margin-bottom: 18px; }

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

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

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

.sct-tpl-service-city .sct-service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-processus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.sct-tpl-service-city .sct-step-item {
    text-align: center;
    padding: 28px 16px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    position: relative;
}

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

.sct-tpl-service-city .sct-step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4A90B8, #7BC67E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.sct-tpl-service-city .sct-step-icon { font-size: 1.4rem; color: #4A90B8; margin-bottom: 10px; }

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

.sct-tpl-service-city .sct-step-item p { color: #777; font-size: 0.87rem; line-height: 1.5; }

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

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

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

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

.sct-tpl-service-city .sct-why-item {
    text-align: center;
    padding: 32px 22px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.sct-tpl-service-city .sct-why-item:hover { transform: translateY(-4px); }

.sct-tpl-service-city .sct-why-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(74,144,184,0.12), rgba(123,198,126,0.12));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.55rem;
    color: #4A90B8;
}

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

.sct-tpl-service-city .sct-why-item p { color: #777; font-size: 0.9rem; line-height: 1.55; }

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

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

.sct-tpl-service-city .sct-zones-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.sct-tpl-service-city .sct-zones-intro {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

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

.sct-tpl-service-city .sct-zone-tag {
    background: #fff;
    border: 2px solid #e8ecef;
    padding: 9px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #4A90B8;
    transition: border-color 0.3s ease, background 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

.sct-tpl-service-city .sct-zone-tag:hover { border-color: #4A90B8; background: rgba(74,144,184,0.05); }

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

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

.sct-tpl-service-city .sct-usecase-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: block;
}

.sct-tpl-service-city .sct-usecase-text h2 { text-align: left; margin-bottom: 12px; font-size: 1.85rem; font-weight: 800; color: #2c3e50; }

.sct-tpl-service-city .sct-usecase-text .sct-title-bar { margin-left: 0; }

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

.sct-tpl-service-city .sct-usecase-text strong { color: #2c3e50; }

@media (max-width: 992px) { .sct-tpl-service-city .sct-usecase-grid { grid-template-columns: 1fr; gap: 35px; } }

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

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

.sct-tpl-service-city .sct-engagement-item {
    background: #fff;
    border-radius: 16px;
    padding: 32px 26px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 4px solid #4A90B8;
    transition: transform 0.3s ease;
}

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

.sct-tpl-service-city .sct-engagement-icon {
    font-size: 1.7rem;
    color: #4A90B8;
    margin-bottom: 14px;
}

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

.sct-tpl-service-city .sct-engagement-item p { color: #666; font-size: 0.92rem; line-height: 1.65; }

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

.sct-tpl-service-city .sct-local-spec {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f0faf1, #e8f4fd);
    border-radius: 20px;
    padding: 38px 36px;
    border-left: 5px solid #7BC67E;
}

.sct-tpl-service-city .sct-local-spec h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.sct-tpl-service-city .sct-local-spec p { color: #555; line-height: 1.75; }

@media (max-width: 640px) { .sct-tpl-service-city .sct-local-spec { padding: 28px 22px; } }

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

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

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

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-maillage-list a {
    background: #fff;
    border: 1px solid #e8ecef;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.88rem;
    color: #4A90B8;
    text-decoration: none;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
}

.sct-tpl-service-city .sct-maillage-list a:hover {
    border-color: #4A90B8;
    background: rgba(74,144,184,0.06);
    transform: translateY(-2px);
}

.sct-tpl-service-city .sct-cta-final {
    background: linear-gradient(135deg, #4A90B8 0%, #7BC67E 100%);
    padding: 70px 20px;
    color: #fff;
    text-align: center;
}

.sct-tpl-service-city .sct-cta-final-inner { max-width: 800px; margin: 0 auto; }

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

.sct-tpl-service-city .sct-cta-final p { font-size: 1.05rem; opacity: 0.95; margin-bottom: 28px; line-height: 1.7; }

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

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-cta-final h2 { font-size: 1.6rem; }
    .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-hero {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(135deg, rgba(74,144,184,0.92) 0%, rgba(123,198,126,0.88) 100%),
                url('/images/service_3_1775586610_69d54d323bbed.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(135deg, rgba(74,144,184,0.92) 0%, rgba(123,198,126,0.88) 100%),
                url('/images/service_5_1775586659_69d54d6345508.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(135deg, rgba(74,144,184,0.92) 0%, rgba(123,198,126,0.88) 100%),
                url('/images/service_2_1775586586_69d54d1a5f353.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(135deg, rgba(74,144,184,0.92) 0%, rgba(123,198,126,0.88) 100%),
                url('/images/service_2_1775586586_69d54d1a5f353.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(135deg, rgba(74,144,184,0.92) 0%, rgba(123,198,126,0.88) 100%),
                url('/images/service_2_1775586586_69d54d1a5f353.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(135deg, rgba(74,144,184,0.92) 0%, rgba(123,198,126,0.88) 100%),
                url('/images/service_1_1775586562_69d54d0242256.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(135deg, rgba(74,144,184,0.92) 0%, rgba(123,198,126,0.88) 100%),
                url('/images/service_3_1775586610_69d54d323bbed.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(135deg, rgba(74,144,184,0.92) 0%, rgba(123,198,126,0.88) 100%),
                url('/images/service_5_1775586659_69d54d6345508.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(135deg, rgba(74,144,184,0.92) 0%, rgba(123,198,126,0.88) 100%),
                url('/images/service_4_1775586634_69d54d4a6b4b0.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(135deg, rgba(74,144,184,0.92) 0%, rgba(123,198,126,0.88) 100%),
                url('/images/service_4_1775586634_69d54d4a6b4b0.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(135deg, rgba(74,144,184,0.92) 0%, rgba(123,198,126,0.88) 100%),
                url('/images/service_4_1775586634_69d54d4a6b4b0.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(135deg, rgba(74,144,184,0.92) 0%, rgba(123,198,126,0.88) 100%),
                url('/images/service_5_1775586659_69d54d6345508.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(135deg, rgba(74,144,184,0.92) 0%, rgba(123,198,126,0.88) 100%),
                url('/images/service_6_1775586683_69d54d7b8b55b.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(135deg, rgba(74,144,184,0.92) 0%, rgba(123,198,126,0.88) 100%),
                url('/images/service_6_1775586683_69d54d7b8b55b.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.page-hero {
    position: relative;
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, rgba(74, 144, 184, 0.92) 0%, rgba(123, 198, 126, 0.88) 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.page-hero p {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-bar {
    width: 70px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
    margin: 22px auto 0;
    opacity: 0.6;
}

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

.sitemap-section.alt {
    background: #f0f5f8;
}

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

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

.sitemap-block-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid rgba(74, 144, 184, 0.12);
}

.sitemap-block-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #4A90B8, #7BC67E);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(74, 144, 184, 0.25);
}

.sitemap-block-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.3;
}

.sitemap-block-subtitle {
    color: #777;
    font-size: 0.92rem;
    margin-top: 2px;
}

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 2px solid #e8ecef;
    color: #4A90B8;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease, color 0.3s ease;
    line-height: 1.3;
}

.chip:hover {
    border-color: #4A90B8;
    background: rgba(74, 144, 184, 0.06);
    transform: translateY(-2px);
    color: #3a7a9e;
}

.chip i {
    font-size: 0.85rem;
    color: #7BC67E;
}

.chip.chip-primary {
    background: linear-gradient(135deg, #4A90B8, #7BC67E);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(74, 144, 184, 0.25);
}

.chip.chip-primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #3a7a9e, #6bb56e);
}

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

.service-pages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

.service-page-card {
    background: #fff;
    border: 2px solid #e8ecef;
    border-radius: 14px;
    padding: 18px 20px;
    text-decoration: none;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.service-page-card:hover {
    border-color: #4A90B8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 184, 0.12);
}

.service-page-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(74, 144, 184, 0.12), rgba(123, 198, 126, 0.12));
    color: #4A90B8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.service-page-text {
    flex: 1;
    min-width: 0;
}

.service-page-title {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.35;
    color: #2c3e50;
}

.service-page-arrow {
    color: #4A90B8;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.service-city-group {
    background: #fff;
    border-radius: 16px;
    padding: 26px 28px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 18px;
    border-left: 4px solid #4A90B8;
}

.service-city-group:last-child {
    margin-bottom: 0;
}

.service-city-group-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-city-group-title i {
    color: #7BC67E;
    font-size: 0.95rem;
}

.footer {
    background: #1f2d3a;
    color: #cbd5dd;
    padding: 60px 20px 25px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #a8b4bf;
}

.footer-heading {
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 16px;
}

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

.footer-links a {
    color: #a8b4bf;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-contact-item i {
    color: #7BC67E;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: #a8b4bf;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
    color: #888f96;
}

.footer-bottom a {
    color: #a8b4bf;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 4px;
        display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

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

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

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 20px 60px;
    }

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

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

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

    .sitemap-block-header {
        gap: 12px;
    }

    .sitemap-block-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

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

    .service-pages {
        grid-template-columns: 1fr;
    }

    .service-city-group {
        padding: 22px 20px;
    }
}

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

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