:root {
            --primary: #B8421C;
            --primary-dark: #8E2F12;
            --primary-light: #D85A30;
            --secondary: #1C2E3D;
            --secondary-light: #2C4257;
            --cream: #F5F1EC;
            --sand: #E8A87C;
            --white: #FFFFFF;
            --text: #2A2A2A;
            --text-muted: #6B6B6B;
            --border: #E5DED5;
            --shadow-sm: 0 2px 8px rgba(28, 46, 61, 0.08);
            --shadow-md: 0 8px 24px rgba(28, 46, 61, 0.12);
            --shadow-lg: 0 20px 50px rgba(28, 46, 61, 0.18);
        }

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
            font-family: 'Playfair Display', Georgia, serif;
            color: var(--secondary);
            line-height: 1.2;
            font-weight: 700;
        }

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

a { color: inherit; text-decoration: none; }

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

.btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
        }

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

.btn-secondary {
            background: var(--white);
            color: var(--secondary);
            border: 2px solid var(--secondary);
        }

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

.section { padding: 80px 0; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }

.section-tag {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary);
            margin-bottom: 12px;
        }

.section-title { font-size: 2.5rem; margin-bottom: 16px; }

.section-subtitle { font-size: 1.1rem; color: var(--text-muted); }

.header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--white);
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            z-index: 1000;
        }

.header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            position: relative;
        }

.logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Playfair Display', serif;
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--secondary);
        }

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

.menu-toggle { display: none; cursor: pointer; }

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

.nav a {
            font-weight: 500;
            color: var(--secondary);
            transition: color 0.2s;
            font-size: 0.95rem;
        }

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

.nav .btn-cta-nav {
            background: var(--primary);
            color: var(--white);
            padding: 10px 22px;
            border-radius: 4px;
            font-weight: 600;
        }

.nav .btn-cta-nav:hover { background: var(--primary-dark); color: var(--white); }

@media (max-width: 768px) {
            .menu-toggle {
                display: inline-flex; align-items: center; justify-content: center;
                font-size: 1.5rem; padding: 8px; color: var(--primary);
                background: none; border: none;
            }
            .nav {
                display: none;
                position: absolute; top: 100%; left: 0; right: 0;
                flex-direction: column; gap: 12px; align-items: stretch;
                background: var(--white); padding: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }
            .nav a { padding: 10px 0; border-bottom: 1px solid var(--border); }
            .nav a:last-child { border-bottom: none; }
            .nav .btn-cta-nav { text-align: center; }
            .menu-check:checked ~ .nav { display: flex; }
            .menu-check:checked ~ .menu-toggle .fa-bars::before { content: "\f00d"; }
        }

.hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding-top: 140px;
            padding-bottom: 80px;
            background:
                linear-gradient(135deg, rgba(28, 46, 61, 0.85) 0%, rgba(28, 46, 61, 0.55) 100%),
                url('https://webflash.pro/images/hero_admin_1778942022_6a088046dd32f.jpg') center/cover no-repeat;
            color: var(--white);
        }

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

.hero-content h1 {
            font-size: 3.5rem;
            color: var(--white);
            margin-bottom: 24px;
            line-height: 1.1;
        }

.hero-content h1 span { color: var(--sand); font-style: italic; }

.hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 32px;
            opacity: 0.95;
            max-width: 540px;
        }

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

.hero-actions .btn-secondary {
            background: transparent;
            color: var(--white);
            border-color: var(--white);
        }

.hero-actions .btn-secondary:hover { background: var(--white); color: var(--secondary); }

.hero-trust {
            margin-top: 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            font-size: 0.95rem;
        }

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

.hero-trust i { color: var(--sand); }

.devis-card {
            background: var(--white);
            color: var(--text);
            border-radius: 8px;
            padding: 36px;
            box-shadow: var(--shadow-lg);
            position: relative;
        }

.devis-card::before {
            content: '';
            position: absolute;
            top: -8px; left: -8px;
            width: 60px; height: 60px;
            background: var(--primary);
            border-radius: 6px;
            z-index: -1;
        }

.devis-card h2 {
            font-size: 1.7rem;
            margin-bottom: 8px;
        }

.devis-card .devis-sub {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 24px;
        }

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

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

.form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--border);
            border-radius: 4px;
            font-family: inherit;
            font-size: 0.95rem;
            background: var(--cream);
            transition: border-color 0.2s, background 0.2s;
        }

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

.devis-card button[type="submit"] {
            width: 100%;
            justify-content: center;
            margin-top: 8px;
        }

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

.stats {
            background: var(--secondary);
            color: var(--white);
            padding: 50px 0;
        }

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

.stat-item i {
            font-size: 2rem;
            color: var(--sand);
            margin-bottom: 12px;
        }

.stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--white);
            display: block;
            line-height: 1;
        }

.stat-label {
            font-size: 0.9rem;
            opacity: 0.85;
            margin-top: 8px;
            display: block;
        }

.services { background: var(--cream); }

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

.service-card {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 360px;
            flex: 1 1 300px;
            position: relative;
        }

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

.service-card .service-image {
            width: 100%;
            height: 220px;
            background: var(--secondary);
            position: relative;
        }

.service-card .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.service-card .service-image::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 40px;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4));
        }

.service-body { padding: 24px; flex: 1; }

.service-body h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--secondary);
        }

.service-body p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

.service-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 14px;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.95rem;
            transition: gap 0.2s;
        }

.service-link:hover { gap: 10px; color: var(--primary-dark); }

.service-cities {
            margin-top: 14px;
            padding-top: 12px;
            border-top: 1px solid var(--border);
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

.service-cities strong {
            display: block;
            color: var(--secondary);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 6px;
        }

.service-cities a {
            color: var(--primary);
            font-weight: 500;
        }

.service-cities a:hover { color: var(--primary-dark); text-decoration: underline; }

.zones-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 14px;
            margin-top: 30px;
        }

.zone-card {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 16px 20px;
            background: var(--cream);
            border: 1px solid var(--border);
            border-radius: 4px;
            color: var(--secondary);
            font-weight: 500;
            transition: all 0.3s;
        }

.zone-card::before {
            content: '\f3c5';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--primary);
            font-size: 0.9rem;
        }

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

.zone-card:hover::before { color: var(--white); }

.service-card .service-icon {
            position: absolute;
            top: 200px; right: 20px;
            width: 48px; height: 48px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            box-shadow: var(--shadow-md);
        }

.extra-services {
            margin-top: 60px;
            background: var(--white);
            border-radius: 8px;
            padding: 40px;
            box-shadow: var(--shadow-sm);
        }

.extra-services h3 {
            text-align: center;
            font-size: 1.6rem;
            margin-bottom: 28px;
            color: var(--secondary);
        }

.extra-services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }

.extra-services-grid li {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            background: var(--cream);
            border-radius: 4px;
            font-size: 0.92rem;
            color: var(--text);
        }

.extra-services-grid li i { color: var(--primary); font-size: 0.8rem; }

.why-us { background: var(--white); }

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

.why-item {
            text-align: center;
            padding: 32px 20px;
            border: 1px solid var(--border);
            border-radius: 8px;
            transition: all 0.3s;
            background: var(--cream);
        }

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

.why-icon {
            width: 70px; height: 70px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.6rem;
            margin: 0 auto 20px;
        }

.why-item h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

.why-item p {
            color: var(--text-muted);
            font-size: 0.92rem;
        }

.about { background: var(--cream); position: relative; }

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

.about-image-wrap {
            position: relative;
        }

.about-image-wrap img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 8px;
        }

.about-image-wrap::before {
            content: '';
            position: absolute;
            top: -16px; left: -16px;
            width: 100%; height: 100%;
            border: 4px solid var(--primary);
            border-radius: 8px;
            z-index: 0;
        }

.about-image-wrap img {
            position: relative;
            z-index: 1;
        }

.about-content h2 { font-size: 2.3rem; margin-bottom: 20px; }

.about-content p {
            color: var(--text-muted);
            margin-bottom: 16px;
            font-size: 1rem;
        }

.about-features {
            margin-top: 24px;
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

.about-features li {
            display: flex; align-items: center; gap: 10px;
            font-weight: 500;
            color: var(--secondary);
        }

.about-features i {
            color: var(--primary);
            background: rgba(184, 66, 28, 0.1);
            width: 28px; height: 28px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.8rem;
        }

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

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

.zones-info h2 { font-size: 2.2rem; margin-bottom: 16px; }

.zones-info p { color: var(--text-muted); margin-bottom: 20px; }

.zones-info .btn { margin-top: 10px; }

.zones-cities {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            background: var(--cream);
            padding: 32px;
            border-radius: 8px;
        }

.zones-cities li {
            list-style: none;
            display: flex; align-items: center; gap: 10px;
            font-size: 0.95rem;
            color: var(--secondary);
        }

.zones-cities i {
            color: var(--primary);
            font-size: 0.9rem;
        }

.gallery { background: var(--cream); }

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

.gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            aspect-ratio: 4/3;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
        }

.gallery-item img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

.gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(184, 66, 28, 0.7), transparent 60%);
            opacity: 0;
            transition: opacity 0.3s;
        }

.gallery-item:hover img { transform: scale(1.08); }

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

.testimonials { background: var(--white); }

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

.google-rating {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--cream);
            padding: 10px 20px;
            border-radius: 30px;
            margin-bottom: 20px;
            font-weight: 600;
        }

.google-rating .stars { color: #FBBC04; }

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

.testimonial-card {
            background: var(--white);
            padding: 32px;
            border-radius: 8px;
            border: 1px solid var(--border);
            position: relative;
            transition: all 0.3s;
        }

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

.testimonial-card .quote-icon {
            position: absolute;
            top: 20px; right: 24px;
            color: var(--primary);
            opacity: 0.15;
            font-size: 2.5rem;
        }

.testimonial-stars {
            color: #FBBC04;
            margin-bottom: 14px;
            font-size: 1.05rem;
        }

.testimonial-text {
            color: var(--text);
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 22px;
        }

.testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
            border-top: 1px solid var(--border);
            padding-top: 18px;
        }

.author-avatar {
            width: 48px; height: 48px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
        }

.author-name { font-weight: 600; color: var(--secondary); }

.author-source { font-size: 0.85rem; color: var(--text-muted); }

.testimonials-cta { text-align: center; }

.faq { background: var(--cream); }

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

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

.faq-item summary {
            padding: 22px 28px;
            cursor: pointer;
            font-weight: 600;
            color: var(--secondary);
            display: flex;
            justify-content: space-between;
            align-items: center;
            list-style: none;
            font-size: 1.05rem;
        }

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

.faq-item summary::after {
            content: '+';
            font-size: 1.6rem;
            color: var(--primary);
            transition: transform 0.3s;
            font-weight: 300;
        }

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-content {
            padding: 0 28px 22px;
            color: var(--text-muted);
        }

.hours { background: var(--white); }

.hours-card {
            max-width: 600px;
            margin: 0 auto;
            background: var(--cream);
            border-radius: 8px;
            padding: 40px;
            box-shadow: var(--shadow-sm);
        }

.hours-card .hours-icon {
            text-align: center;
            margin-bottom: 24px;
        }

.hours-card .hours-icon i {
            width: 64px; height: 64px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: inline-flex;
            align-items: center; justify-content: center;
            font-size: 1.5rem;
        }

.hours-list { list-style: none; }

.hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
            font-size: 1rem;
        }

.hours-list li:last-child { border-bottom: none; }

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

.hours-list .time { color: var(--text); }

.hours-list .closed { color: var(--primary); font-style: italic; }

.contact { background: var(--cream); }

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

.contact-info { background: var(--secondary); color: var(--white); padding: 40px; border-radius: 8px; }

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

.contact-info > p { opacity: 0.85; margin-bottom: 28px; }

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

.contact-item i {
            width: 44px; height: 44px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }

.contact-item span.label {
            display: block;
            font-size: 0.85rem;
            opacity: 0.7;
            margin-bottom: 2px;
        }

.contact-item p { color: var(--white); font-weight: 500; }

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

.contact-form-wrap h2 { font-size: 1.6rem; margin-bottom: 8px; }

.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 24px; }

.contact-form-wrap button[type="submit"] {
            width: 100%;
            justify-content: center;
        }

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

.map-wrap iframe { display: block; }

.footer {
            background: var(--secondary);
            color: var(--white);
            padding: 60px 0 24px;
        }

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

.footer-brand img { height: 50px; width: auto; margin-bottom: 16px; }

.footer-brand p { opacity: 0.8; font-size: 0.92rem; }

.footer-col p.footer-title {
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            color: var(--white);
            margin-bottom: 18px;
        }

.footer-col ul { list-style: none; }

.footer-col ul li {
            margin-bottom: 10px;
            font-size: 0.92rem;
            opacity: 0.85;
        }

.footer-col ul li a:hover { color: var(--sand); }

.footer-col ul li i { color: var(--sand); margin-right: 8px; width: 14px; }

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

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

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

.mobile-call {
            display: none;
            position: fixed;
            bottom: 20px; right: 20px;
            width: 60px; height: 60px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            align-items: center; justify-content: center;
            font-size: 1.5rem;
            box-shadow: var(--shadow-lg);
            z-index: 999;
            animation: pulse 2s infinite;
        }

@keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.08); }
        }

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

.modal:target { display: flex; }

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

.modal-content p.modal-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 20px;
        }

.modal-content p { margin-bottom: 10px; font-size: 0.95rem; }

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

@media (max-width: 1024px) {
            .hero-content h1 { font-size: 2.8rem; }
            .section-title { font-size: 2.1rem; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
            .why-grid { grid-template-columns: repeat(2, 1fr); }
            .extra-services-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .zones-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
        }

@media (max-width: 768px) {
            .section { padding: 60px 0; }
            .section-title { font-size: 1.9rem; }
            .hero { min-height: auto; padding-top: 110px; padding-bottom: 60px; }
            .hero-grid { grid-template-columns: 1fr; gap: 40px; }
            .hero-content h1 { font-size: 2.2rem; }
            .hero-subtitle { font-size: 1.05rem; }
            .hero-actions { flex-direction: column; align-items: stretch; }
            .hero-actions .btn { justify-content: center; }
            .devis-card { padding: 28px 22px; }
            .about-grid { grid-template-columns: 1fr; gap: 40px; }
            .about-image-wrap img { height: 350px; }
            .about-features { grid-template-columns: 1fr; }
            .zones-content { grid-template-columns: 1fr; gap: 30px; }
            .zones-cities { grid-template-columns: repeat(2, 1fr); padding: 24px; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            .contact-info, .contact-form-wrap { padding: 28px 22px; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
            .footer-col ul li i { margin-right: 8px; }
            .extra-services { padding: 28px 20px; }
            .extra-services-grid { grid-template-columns: 1fr; }
            .mobile-call { display: inline-flex; }
            .hours-card { padding: 28px 22px; }
            .stat-number { font-size: 2rem; }
        }

@media (max-width: 640px) {
            .gallery-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr; }
            .hero-content h1 { font-size: 1.9rem; }
        }

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

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

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

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

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

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.88) 0%, rgba(28, 46, 61, 0.62) 100%),
        url('/images/service_1_1778942369_6a0881a1f3851.webp') center/cover no-repeat;
    color: #FFFFFF;
}

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

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

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

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

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

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

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

.sct-tpl-service-hub .sct-hero-badge i { color: #E8A87C; }

.sct-tpl-service-hub .sct-hero-text h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #FFFFFF;
    font-weight: 700;
}

.sct-tpl-service-hub .sct-hero-text h1 span {
    color: #E8A87C;
    font-style: italic;
}

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 580px;
}

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

.sct-tpl-service-hub .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.sct-tpl-service-hub .sct-btn-primary {
    background: #B8421C;
    color: #FFFFFF;
    border-color: #B8421C;
}

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: #8E2F12;
    border-color: #8E2F12;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(28,46,61,0.18);
}

.sct-tpl-service-hub .sct-btn-outline {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.sct-tpl-service-hub .sct-btn-outline:hover {
    background: #FFFFFF;
    color: #1C2E3D;
}

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

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

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

.sct-tpl-service-hub .sct-hero-card {
    background: #FFFFFF;
    color: #2A2A2A;
    border-radius: 8px;
    padding: 34px;
    box-shadow: 0 20px 50px rgba(28, 46, 61, 0.25);
    position: relative;
}

.sct-tpl-service-hub .sct-hero-card::before {
    content: '';
    position: absolute;
    top: -8px; left: -8px;
    width: 60px; height: 60px;
    background: #B8421C;
    border-radius: 6px;
    z-index: -1;
}

.sct-tpl-service-hub .sct-hero-card h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #1C2E3D;
    margin-bottom: 6px;
}

.sct-tpl-service-hub .sct-hero-card-sub {
    color: #6B6B6B;
    font-size: 0.92rem;
    margin-bottom: 22px;
}

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

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

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

.sct-tpl-service-hub .sct-hero-card-list i {
    width: 36px; height: 36px;
    background: rgba(184, 66, 28, 0.1);
    color: #B8421C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.sct-tpl-service-hub .sct-hero-card-list .sct-label {
    display: block;
    font-size: 0.78rem;
    color: #6B6B6B;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.sct-tpl-service-hub .sct-hero-card-list .sct-value {
    color: #1C2E3D;
    font-weight: 600;
}

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

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

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

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

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

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

.sct-tpl-service-hub .sct-stat-item i {
    font-size: 1.9rem;
    color: #E8A87C;
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: #FFFFFF;
    display: block;
    line-height: 1;
}

.sct-tpl-service-hub .sct-stat-label {
    font-size: 0.88rem;
    opacity: 0.85;
    margin-top: 8px;
    display: block;
}

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

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .sct-tpl-service-hub .sct-stat-number { font-size: 1.9rem; }
}

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

.sct-tpl-service-hub .sct-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.sct-tpl-service-hub .sct-section-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #B8421C;
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.3rem;
    color: #1C2E3D;
    margin-bottom: 14px;
    line-height: 1.2;
    font-weight: 700;
}

.sct-tpl-service-hub .sct-section-subtitle {
    font-size: 1.05rem;
    color: #6B6B6B;
    line-height: 1.6;
}

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

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

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

.sct-tpl-service-hub .sct-intro-wrap p {
    color: #2A2A2A;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sct-tpl-service-hub .sct-intro-wrap p strong {
    color: #1C2E3D;
    font-weight: 700;
}

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

.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: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(28, 46, 61, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(28, 46, 61, 0.15);
}

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

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

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

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

.sct-tpl-service-hub .sct-service-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: #1C2E3D;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-service-card p {
    color: #6B6B6B;
    font-size: 0.95rem;
    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-section { background: #FFFFFF; }

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

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

.sct-tpl-service-hub .sct-step {
    text-align: center;
    padding: 24px 16px;
    background: #F5F1EC;
    border-radius: 8px;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-step:hover {
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(28, 46, 61, 0.12);
    transform: translateY(-4px);
}

.sct-tpl-service-hub .sct-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    background: #1C2E3D;
    color: #E8A87C;
    border-radius: 50%;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 14px;
}

.sct-tpl-service-hub .sct-step-icon {
    width: 56px; height: 56px;
    background: #B8421C;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 16px;
}

.sct-tpl-service-hub .sct-step h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    color: #1C2E3D;
    margin-bottom: 8px;
}

.sct-tpl-service-hub .sct-step p {
    color: #6B6B6B;
    font-size: 0.88rem;
    line-height: 1.5;
}

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

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

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

.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 {
    background: #FFFFFF;
    border: 1px solid #E5DED5;
    border-radius: 8px;
    padding: 32px 22px;
    text-align: center;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-why-item:hover {
    border-color: #B8421C;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(28, 46, 61, 0.12);
}

.sct-tpl-service-hub .sct-why-icon {
    width: 70px; height: 70px;
    background: #B8421C;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.sct-tpl-service-hub .sct-why-item h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    color: #1C2E3D;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-why-item p {
    color: #6B6B6B;
    font-size: 0.92rem;
    line-height: 1.6;
}

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

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

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

.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 {
    position: relative;
}

.sct-tpl-service-hub .sct-usecase-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.sct-tpl-service-hub .sct-usecase-img::before {
    content: '';
    position: absolute;
    top: -16px; left: -16px;
    width: 100%; height: 100%;
    border: 4px solid #B8421C;
    border-radius: 8px;
    z-index: 0;
}

.sct-tpl-service-hub .sct-usecase-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.1rem;
    color: #1C2E3D;
    margin-bottom: 18px;
    line-height: 1.2;
}

.sct-tpl-service-hub .sct-usecase-content p {
    color: #2A2A2A;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.sct-tpl-service-hub .sct-usecase-content strong { color: #B8421C; }

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

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-usecase-content h2 { font-size: 1.6rem; }
    .sct-tpl-service-hub .sct-usecase-img img { height: 280px; }
}

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

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

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

.sct-tpl-service-hub .sct-engagement {
    background: #FFFFFF;
    padding: 36px 28px;
    border-radius: 8px;
    border-left: 4px solid #B8421C;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-engagement:hover {
    box-shadow: 0 8px 24px rgba(28, 46, 61, 0.12);
    transform: translateY(-4px);
}

.sct-tpl-service-hub .sct-engagement i {
    font-size: 2rem;
    color: #B8421C;
    margin-bottom: 18px;
}

.sct-tpl-service-hub .sct-engagement h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    color: #1C2E3D;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-engagement p {
    color: #6B6B6B;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

.sct-tpl-service-hub .sct-faq-item {
    background: #F5F1EC;
    border-radius: 8px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(28, 46, 61, 0.06);
}

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

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

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

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

.sct-tpl-service-hub .sct-faq-item .sct-faq-content {
    padding: 0 26px 22px;
    color: #6B6B6B;
    line-height: 1.7;
    font-size: 0.96rem;
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-faq-item summary { padding: 18px 20px; font-size: 0.95rem; }
    .sct-tpl-service-hub .sct-faq-item .sct-faq-content { padding: 0 20px 18px; }
}

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

.sct-tpl-service-hub .sct-maillage-section + .sct-maillage-section { padding-top: 0; }

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

.sct-tpl-service-hub .sct-maillage-wrap {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 36px;
    box-shadow: 0 2px 8px rgba(28, 46, 61, 0.06);
}

.sct-tpl-service-hub .sct-maillage-cities .sct-maillage-wrap {
    background: #F5F1EC;
    box-shadow: none;
}

.sct-tpl-service-hub .sct-maillage-wrap h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: #1C2E3D;
    margin-bottom: 10px;
    text-align: center;
}

.sct-tpl-service-hub .sct-maillage-wrap > p {
    color: #6B6B6B;
    text-align: center;
    margin-bottom: 28px;
    font-size: 1rem;
}

.sct-tpl-service-hub .sct-maillage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0; padding: 0;
    justify-content: center;
}

.sct-tpl-service-hub .sct-maillage-list li { list-style: none; }

.sct-tpl-service-hub .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: #FFFFFF;
    color: #1C2E3D;
    border: 1px solid #E5DED5;
    border-radius: 30px;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

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

.sct-tpl-service-hub .sct-maillage-list a:hover {
    background: #B8421C;
    color: #FFFFFF;
    border-color: #B8421C;
}

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

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-maillage-wrap { padding: 26px 18px; }
    .sct-tpl-service-hub .sct-maillage-wrap h2 { font-size: 1.35rem; }
}

.sct-tpl-service-hub .sct-cta-final {
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.92) 0%, rgba(184, 66, 28, 0.85) 100%),
        url('/images/service_1_1778942369_6a0881a1f3851.webp') center/cover no-repeat;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.sct-tpl-service-hub .sct-cta-final h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.3rem;
    color: #FFFFFF;
    margin-bottom: 14px;
    line-height: 1.2;
}

.sct-tpl-service-hub .sct-cta-final p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.88) 0%, rgba(28, 46, 61, 0.62) 100%),
        url('/images/service_1_1778942369_6a0881a1f3851.webp') center/cover no-repeat;
    color: #FFFFFF;
}

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

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

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

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

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

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

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

.sct-tpl-zone .sct-hero-badge i { color: #E8A87C; }

.sct-tpl-zone .sct-hero-text h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #FFFFFF;
    font-weight: 700;
}

.sct-tpl-zone .sct-hero-text h1 span {
    color: #E8A87C;
    font-style: italic;
}

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 580px;
}

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

.sct-tpl-zone .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.sct-tpl-zone .sct-btn-primary {
    background: #B8421C;
    color: #FFFFFF;
    border-color: #B8421C;
}

.sct-tpl-zone .sct-btn-primary:hover {
    background: #8E2F12;
    border-color: #8E2F12;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(28,46,61,0.18);
}

.sct-tpl-zone .sct-btn-outline {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.sct-tpl-zone .sct-btn-outline:hover {
    background: #FFFFFF;
    color: #1C2E3D;
}

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

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

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

.sct-tpl-zone .sct-hero-card {
    background: #FFFFFF;
    color: #2A2A2A;
    border-radius: 8px;
    padding: 34px;
    box-shadow: 0 20px 50px rgba(28, 46, 61, 0.25);
    position: relative;
}

.sct-tpl-zone .sct-hero-card::before {
    content: '';
    position: absolute;
    top: -8px; left: -8px;
    width: 60px; height: 60px;
    background: #B8421C;
    border-radius: 6px;
    z-index: -1;
}

.sct-tpl-zone .sct-hero-card h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #1C2E3D;
    margin-bottom: 6px;
}

.sct-tpl-zone .sct-hero-card-sub {
    color: #6B6B6B;
    font-size: 0.92rem;
    margin-bottom: 22px;
}

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

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

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

.sct-tpl-zone .sct-hero-card-list i {
    width: 36px; height: 36px;
    background: rgba(184, 66, 28, 0.1);
    color: #B8421C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.sct-tpl-zone .sct-hero-card-list .sct-label {
    display: block;
    font-size: 0.78rem;
    color: #6B6B6B;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.sct-tpl-zone .sct-hero-card-list .sct-value {
    color: #1C2E3D;
    font-weight: 600;
}

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

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

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

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

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

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

.sct-tpl-zone .sct-stat-item i {
    font-size: 1.9rem;
    color: #E8A87C;
    margin-bottom: 12px;
}

.sct-tpl-zone .sct-stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: #FFFFFF;
    display: block;
    line-height: 1;
}

.sct-tpl-zone .sct-stat-label {
    font-size: 0.88rem;
    opacity: 0.85;
    margin-top: 8px;
    display: block;
}

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

@media (max-width: 640px) {
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .sct-tpl-zone .sct-stat-number { font-size: 1.9rem; }
}

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

.sct-tpl-zone .sct-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

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

.sct-tpl-zone .sct-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.3rem;
    color: #1C2E3D;
    margin-bottom: 14px;
    line-height: 1.2;
    font-weight: 700;
}

.sct-tpl-zone .sct-section-subtitle {
    font-size: 1.05rem;
    color: #6B6B6B;
    line-height: 1.6;
}

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

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

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

.sct-tpl-zone .sct-intro-wrap p {
    color: #2A2A2A;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sct-tpl-zone .sct-intro-wrap p strong {
    color: #1C2E3D;
    font-weight: 700;
}

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

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

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

.sct-tpl-zone .sct-service-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 28px 24px;
    box-shadow: 0 2px 8px rgba(28, 46, 61, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
}

.sct-tpl-zone .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(28, 46, 61, 0.15);
    border-color: #B8421C;
}

.sct-tpl-zone .sct-service-card .sct-service-icon {
    width: 56px; height: 56px;
    background: #B8421C;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-service-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    color: #1C2E3D;
    margin-bottom: 10px;
}

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

.sct-tpl-zone .sct-service-card .sct-service-link {
    color: #B8421C;
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sct-tpl-zone .sct-service-card:hover .sct-service-link { color: #8E2F12; }

@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-section { background: #FFFFFF; }

.sct-tpl-zone .sct-zones-wrap {
    background: #F5F1EC;
    border-radius: 8px;
    padding: 40px;
}

.sct-tpl-zone .sct-zones-wrap ul {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

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

.sct-tpl-zone .sct-zones-wrap li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #FFFFFF;
    border-radius: 4px;
    font-size: 0.92rem;
    color: #1C2E3D;
}

.sct-tpl-zone .sct-zones-wrap li::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #B8421C;
    font-size: 0.9rem;
}

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

@media (max-width: 640px) {
    .sct-tpl-zone .sct-zones-wrap { padding: 24px; }
    .sct-tpl-zone .sct-zones-wrap ul { grid-template-columns: 1fr; }
}

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

.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 {
    position: relative;
}

.sct-tpl-zone .sct-usecase-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.sct-tpl-zone .sct-usecase-img::before {
    content: '';
    position: absolute;
    top: -16px; left: -16px;
    width: 100%; height: 100%;
    border: 4px solid #B8421C;
    border-radius: 8px;
    z-index: 0;
}

.sct-tpl-zone .sct-usecase-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.1rem;
    color: #1C2E3D;
    margin-bottom: 18px;
    line-height: 1.2;
}

.sct-tpl-zone .sct-usecase-content p {
    color: #2A2A2A;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.sct-tpl-zone .sct-usecase-content strong { color: #B8421C; }

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

@media (max-width: 640px) {
    .sct-tpl-zone .sct-usecase-content h2 { font-size: 1.6rem; }
    .sct-tpl-zone .sct-usecase-img img { height: 280px; }
}

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

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

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

.sct-tpl-zone .sct-engagement {
    background: #F5F1EC;
    padding: 36px 28px;
    border-radius: 8px;
    border-left: 4px solid #B8421C;
    transition: all 0.3s;
}

.sct-tpl-zone .sct-engagement:hover {
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(28, 46, 61, 0.12);
    transform: translateY(-4px);
}

.sct-tpl-zone .sct-engagement i {
    font-size: 2rem;
    color: #B8421C;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-engagement h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    color: #1C2E3D;
    margin-bottom: 10px;
}

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

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

.sct-tpl-zone .sct-local-spec {
    background: #1C2E3D;
    color: #FFFFFF;
    padding: 70px 0;
}

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

.sct-tpl-zone .sct-local-spec-wrap .sct-section-tag { color: #E8A87C; }

.sct-tpl-zone .sct-local-spec-wrap h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #FFFFFF;
    font-size: 2rem;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-local-spec-wrap p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    line-height: 1.75;
}

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

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

.sct-tpl-zone .sct-faq-item {
    background: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(28, 46, 61, 0.06);
}

.sct-tpl-zone .sct-faq-item summary {
    padding: 22px 26px;
    cursor: pointer;
    font-weight: 600;
    color: #1C2E3D;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    font-size: 1.02rem;
    gap: 16px;
}

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

.sct-tpl-zone .sct-faq-item summary::after {
    content: '+';
    font-size: 1.6rem;
    color: #B8421C;
    transition: transform 0.3s;
    font-weight: 300;
    flex-shrink: 0;
}

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

.sct-tpl-zone .sct-faq-item .sct-faq-content {
    padding: 0 26px 22px;
    color: #6B6B6B;
    line-height: 1.7;
    font-size: 0.96rem;
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-faq-item summary { padding: 18px 20px; font-size: 0.95rem; }
    .sct-tpl-zone .sct-faq-item .sct-faq-content { padding: 0 20px 18px; }
}

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

.sct-tpl-zone .sct-maillage-wrap {
    background: #F5F1EC;
    border-radius: 8px;
    padding: 36px;
}

.sct-tpl-zone .sct-maillage-wrap h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #1C2E3D;
    margin-bottom: 10px;
    text-align: center;
}

.sct-tpl-zone .sct-maillage-wrap > p {
    color: #6B6B6B;
    text-align: center;
    margin-bottom: 24px;
    font-size: 1rem;
}

.sct-tpl-zone .sct-maillage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0; padding: 0;
    justify-content: center;
}

.sct-tpl-zone .sct-maillage-list li { list-style: none; }

.sct-tpl-zone .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: #FFFFFF;
    color: #1C2E3D;
    border: 1px solid #E5DED5;
    border-radius: 30px;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

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

.sct-tpl-zone .sct-maillage-list a:hover {
    background: #B8421C;
    color: #FFFFFF;
    border-color: #B8421C;
}

.sct-tpl-zone .sct-maillage-list a:hover::before { color: #FFFFFF; }

@media (max-width: 640px) {
    .sct-tpl-zone .sct-maillage-wrap { padding: 26px 18px; }
    .sct-tpl-zone .sct-maillage-wrap h2 { font-size: 1.3rem; }
}

.sct-tpl-zone .sct-cta-final {
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.92) 0%, rgba(184, 66, 28, 0.85) 100%),
        url('/images/service_1_1778942369_6a0881a1f3851.webp') center/cover no-repeat;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.sct-tpl-zone .sct-cta-final h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.3rem;
    color: #FFFFFF;
    margin-bottom: 14px;
    line-height: 1.2;
}

.sct-tpl-zone .sct-cta-final p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.88) 0%, rgba(28, 46, 61, 0.62) 100%),
        url('/images/service_2_1778942387_6a0881b3ade0d.webp') center/cover no-repeat;
    color: #FFFFFF;
}

.sct-tpl-service-hub .sct-cta-final {
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.92) 0%, rgba(184, 66, 28, 0.85) 100%),
        url('/images/service_2_1778942387_6a0881b3ade0d.webp') center/cover no-repeat;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.88) 0%, rgba(28, 46, 61, 0.62) 100%),
        url('/images/service_1_1778942369_6a0881a1f3851.webp') center/cover no-repeat;
    color: #FFFFFF;
}

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-hero-badge i { color: #E8A87C; }

.sct-tpl-service-city .sct-hero-text h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #FFFFFF;
    font-weight: 700;
}

.sct-tpl-service-city .sct-hero-text h1 span {
    color: #E8A87C;
    font-style: italic;
}

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 580px;
}

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

.sct-tpl-service-city .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.sct-tpl-service-city .sct-btn-primary {
    background: #B8421C;
    color: #FFFFFF;
    border-color: #B8421C;
}

.sct-tpl-service-city .sct-btn-primary:hover {
    background: #8E2F12;
    border-color: #8E2F12;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(28,46,61,0.18);
}

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

.sct-tpl-service-city .sct-btn-outline:hover {
    background: #FFFFFF;
    color: #1C2E3D;
}

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

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

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

.sct-tpl-service-city .sct-hero-card {
    background: #FFFFFF;
    color: #2A2A2A;
    border-radius: 8px;
    padding: 34px;
    box-shadow: 0 20px 50px rgba(28, 46, 61, 0.25);
    position: relative;
}

.sct-tpl-service-city .sct-hero-card::before {
    content: '';
    position: absolute;
    top: -8px; left: -8px;
    width: 60px; height: 60px;
    background: #B8421C;
    border-radius: 6px;
    z-index: -1;
}

.sct-tpl-service-city .sct-hero-card h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #1C2E3D;
    margin-bottom: 6px;
}

.sct-tpl-service-city .sct-hero-card-sub {
    color: #6B6B6B;
    font-size: 0.92rem;
    margin-bottom: 22px;
}

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

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

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

.sct-tpl-service-city .sct-hero-card-list i {
    width: 36px; height: 36px;
    background: rgba(184, 66, 28, 0.1);
    color: #B8421C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.sct-tpl-service-city .sct-hero-card-list .sct-label {
    display: block;
    font-size: 0.78rem;
    color: #6B6B6B;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.sct-tpl-service-city .sct-hero-card-list .sct-value {
    color: #1C2E3D;
    font-weight: 600;
}

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

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

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

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

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

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

.sct-tpl-service-city .sct-stat-item i {
    font-size: 1.9rem;
    color: #E8A87C;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: #FFFFFF;
    display: block;
    line-height: 1;
}

.sct-tpl-service-city .sct-stat-label {
    font-size: 0.88rem;
    opacity: 0.85;
    margin-top: 8px;
    display: block;
}

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

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .sct-tpl-service-city .sct-stat-number { font-size: 1.9rem; }
}

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

.sct-tpl-service-city .sct-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.sct-tpl-service-city .sct-section-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #B8421C;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.3rem;
    color: #1C2E3D;
    margin-bottom: 14px;
    line-height: 1.2;
    font-weight: 700;
}

.sct-tpl-service-city .sct-section-subtitle {
    font-size: 1.05rem;
    color: #6B6B6B;
    line-height: 1.6;
}

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

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

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

.sct-tpl-service-city .sct-intro-wrap p {
    color: #2A2A2A;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sct-tpl-service-city .sct-intro-wrap p strong {
    color: #1C2E3D;
    font-weight: 700;
}

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

.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: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(28, 46, 61, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(28, 46, 61, 0.15);
}

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

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

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

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

.sct-tpl-service-city .sct-service-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: #1C2E3D;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-service-card p {
    color: #6B6B6B;
    font-size: 0.95rem;
    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-section { background: #FFFFFF; }

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

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

.sct-tpl-service-city .sct-step {
    text-align: center;
    padding: 24px 16px;
    background: #F5F1EC;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-step:hover {
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(28, 46, 61, 0.12);
    transform: translateY(-4px);
}

.sct-tpl-service-city .sct-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    background: #1C2E3D;
    color: #E8A87C;
    border-radius: 50%;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-step-icon {
    width: 56px; height: 56px;
    background: #B8421C;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 16px;
}

.sct-tpl-service-city .sct-step h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    color: #1C2E3D;
    margin-bottom: 8px;
}

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

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

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

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

.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 {
    background: #FFFFFF;
    border: 1px solid #E5DED5;
    border-radius: 8px;
    padding: 32px 22px;
    text-align: center;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-why-item:hover {
    border-color: #B8421C;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(28, 46, 61, 0.12);
}

.sct-tpl-service-city .sct-why-icon {
    width: 70px; height: 70px;
    background: #B8421C;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.sct-tpl-service-city .sct-why-item h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    color: #1C2E3D;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-why-item p {
    color: #6B6B6B;
    font-size: 0.92rem;
    line-height: 1.6;
}

@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-section { background: #FFFFFF; }

.sct-tpl-service-city .sct-zones-wrap {
    background: #F5F1EC;
    border-radius: 8px;
    padding: 40px;
}

.sct-tpl-service-city .sct-zones-wrap ul {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.sct-tpl-service-city .sct-zones-wrap > * { min-width: 0; }

.sct-tpl-service-city .sct-zones-wrap li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #FFFFFF;
    border-radius: 4px;
    font-size: 0.92rem;
    color: #1C2E3D;
}

.sct-tpl-service-city .sct-zones-wrap li::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #B8421C;
    font-size: 0.9rem;
}

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

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-zones-wrap { padding: 24px; }
    .sct-tpl-service-city .sct-zones-wrap ul { grid-template-columns: 1fr; }
}

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

.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 {
    position: relative;
}

.sct-tpl-service-city .sct-usecase-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.sct-tpl-service-city .sct-usecase-img::before {
    content: '';
    position: absolute;
    top: -16px; left: -16px;
    width: 100%; height: 100%;
    border: 4px solid #B8421C;
    border-radius: 8px;
    z-index: 0;
}

.sct-tpl-service-city .sct-usecase-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.1rem;
    color: #1C2E3D;
    margin-bottom: 18px;
    line-height: 1.2;
}

.sct-tpl-service-city .sct-usecase-content p {
    color: #2A2A2A;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.sct-tpl-service-city .sct-usecase-content strong { color: #B8421C; }

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

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-usecase-content h2 { font-size: 1.6rem; }
    .sct-tpl-service-city .sct-usecase-img img { height: 280px; }
}

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

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

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

.sct-tpl-service-city .sct-engagement {
    background: #F5F1EC;
    padding: 36px 28px;
    border-radius: 8px;
    border-left: 4px solid #B8421C;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-engagement:hover {
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(28, 46, 61, 0.12);
    transform: translateY(-4px);
}

.sct-tpl-service-city .sct-engagement i {
    font-size: 2rem;
    color: #B8421C;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-engagement h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    color: #1C2E3D;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-engagement p {
    color: #6B6B6B;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.sct-tpl-service-city .sct-local-spec {
    background: #1C2E3D;
    color: #FFFFFF;
    padding: 70px 0;
}

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

.sct-tpl-service-city .sct-local-spec-wrap .sct-section-tag { color: #E8A87C; }

.sct-tpl-service-city .sct-local-spec-wrap h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #FFFFFF;
    font-size: 2rem;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-local-spec-wrap p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    line-height: 1.75;
}

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

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

.sct-tpl-service-city .sct-faq-item {
    background: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(28, 46, 61, 0.06);
}

.sct-tpl-service-city .sct-faq-item summary {
    padding: 22px 26px;
    cursor: pointer;
    font-weight: 600;
    color: #1C2E3D;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    font-size: 1.02rem;
    gap: 16px;
}

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

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

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

.sct-tpl-service-city .sct-faq-item .sct-faq-content {
    padding: 0 26px 22px;
    color: #6B6B6B;
    line-height: 1.7;
    font-size: 0.96rem;
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-faq-item summary { padding: 18px 20px; font-size: 0.95rem; }
    .sct-tpl-service-city .sct-faq-item .sct-faq-content { padding: 0 20px 18px; }
}

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

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

.sct-tpl-service-city .sct-maillage-wrap {
    background: #F5F1EC;
    border-radius: 8px;
    padding: 36px;
}

.sct-tpl-service-city .sct-maillage-wrap h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: #1C2E3D;
    margin-bottom: 20px;
}

.sct-tpl-service-city .sct-maillage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0; padding: 0;
}

.sct-tpl-service-city .sct-maillage-list li { list-style: none; }

.sct-tpl-service-city .sct-maillage-list a {
    display: inline-block;
    padding: 8px 16px;
    background: #FFFFFF;
    color: #1C2E3D;
    border: 1px solid #E5DED5;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}

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

.sct-tpl-service-city .sct-cta-final {
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.92) 0%, rgba(184, 66, 28, 0.85) 100%),
        url('/images/service_1_1778942369_6a0881a1f3851.webp') center/cover no-repeat;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.sct-tpl-service-city .sct-cta-final h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.3rem;
    color: #FFFFFF;
    margin-bottom: 14px;
    line-height: 1.2;
}

.sct-tpl-service-city .sct-cta-final p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.88) 0%, rgba(28, 46, 61, 0.62) 100%),
        url('/images/service_2_1778942387_6a0881b3ade0d.webp') center/cover no-repeat;
    color: #FFFFFF;
}

.sct-tpl-zone .sct-cta-final {
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.92) 0%, rgba(184, 66, 28, 0.85) 100%),
        url('/images/service_2_1778942387_6a0881b3ade0d.webp') center/cover no-repeat;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.88) 0%, rgba(28, 46, 61, 0.62) 100%),
        url('/images/service_3_1778942426_6a0881daa47c8.webp') center/cover no-repeat;
    color: #FFFFFF;
}

.sct-tpl-service-hub .sct-cta-final {
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.92) 0%, rgba(184, 66, 28, 0.85) 100%),
        url('/images/service_3_1778942426_6a0881daa47c8.webp') center/cover no-repeat;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.88) 0%, rgba(28, 46, 61, 0.62) 100%),
        url('/images/service_4_1778942444_6a0881ecce177.webp') center/cover no-repeat;
    color: #FFFFFF;
}

.sct-tpl-service-hub .sct-cta-final {
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.92) 0%, rgba(184, 66, 28, 0.85) 100%),
        url('/images/service_4_1778942444_6a0881ecce177.webp') center/cover no-repeat;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.88) 0%, rgba(28, 46, 61, 0.62) 100%),
        url('/images/service_2_1778942387_6a0881b3ade0d.webp') center/cover no-repeat;
    color: #FFFFFF;
}

.sct-tpl-service-city .sct-cta-final {
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.92) 0%, rgba(184, 66, 28, 0.85) 100%),
        url('/images/service_2_1778942387_6a0881b3ade0d.webp') center/cover no-repeat;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.88) 0%, rgba(28, 46, 61, 0.62) 100%),
        url('/images/service_5_1778942463_6a0881ffcb244.webp') center/cover no-repeat;
    color: #FFFFFF;
}

.sct-tpl-service-hub .sct-cta-final {
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.92) 0%, rgba(184, 66, 28, 0.85) 100%),
        url('/images/service_5_1778942463_6a0881ffcb244.webp') center/cover no-repeat;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.88) 0%, rgba(28, 46, 61, 0.62) 100%),
        url('/images/service_6_1778942482_6a088212014a2.webp') center/cover no-repeat;
    color: #FFFFFF;
}

.sct-tpl-service-hub .sct-cta-final {
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.92) 0%, rgba(184, 66, 28, 0.85) 100%),
        url('/images/service_6_1778942482_6a088212014a2.webp') center/cover no-repeat;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.88) 0%, rgba(28, 46, 61, 0.62) 100%),
        url('/images/service_3_1778942426_6a0881daa47c8.webp') center/cover no-repeat;
    color: #FFFFFF;
}

.sct-tpl-service-city .sct-cta-final {
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.92) 0%, rgba(184, 66, 28, 0.85) 100%),
        url('/images/service_3_1778942426_6a0881daa47c8.webp') center/cover no-repeat;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.88) 0%, rgba(28, 46, 61, 0.62) 100%),
        url('/images/service_4_1778942444_6a0881ecce177.webp') center/cover no-repeat;
    color: #FFFFFF;
}

.sct-tpl-service-city .sct-cta-final {
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.92) 0%, rgba(184, 66, 28, 0.85) 100%),
        url('/images/service_4_1778942444_6a0881ecce177.webp') center/cover no-repeat;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.88) 0%, rgba(28, 46, 61, 0.62) 100%),
        url('/images/service_5_1778942463_6a0881ffcb244.webp') center/cover no-repeat;
    color: #FFFFFF;
}

.sct-tpl-service-city .sct-cta-final {
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.92) 0%, rgba(184, 66, 28, 0.85) 100%),
        url('/images/service_5_1778942463_6a0881ffcb244.webp') center/cover no-repeat;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.88) 0%, rgba(28, 46, 61, 0.62) 100%),
        url('/images/service_6_1778942482_6a088212014a2.webp') center/cover no-repeat;
    color: #FFFFFF;
}

.sct-tpl-service-city .sct-cta-final {
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.92) 0%, rgba(184, 66, 28, 0.85) 100%),
        url('/images/service_6_1778942482_6a088212014a2.webp') center/cover no-repeat;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: inline-flex; align-items: center; justify-content: center;
        font-size: 1.5rem; padding: 8px; color: var(--primary);
        background: none; border: none;
    }
    .nav {
        display: none;
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; gap: 12px; align-items: stretch;
        background: var(--white); padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .nav a { padding: 10px 0; border-bottom: 1px solid var(--border); }
    .nav a:last-child { border-bottom: none; }
    .nav .btn-cta-nav { text-align: center; }
    .menu-check:checked ~ .nav { display: flex; }
}

.sitemap-hero {
    position: relative;
    padding: 180px 0 80px;
    background:
        linear-gradient(135deg, rgba(28, 46, 61, 0.92) 0%, rgba(184, 66, 28, 0.75) 100%),
        url('https://webflash.pro/images/hero_admin_1778942022_6a088046dd32f.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.sitemap-hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--white));
}

.sitemap-hero h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.sitemap-hero h1 span {
    color: var(--sand);
    font-style: italic;
}

.sitemap-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.breadcrumb a { opacity: 0.9; }

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

.breadcrumb i { font-size: 0.75rem; opacity: 0.7; }

.sitemap-section { padding: 80px 0; background: var(--white); }

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

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

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

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

.sitemap-block-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.sitemap-block-title h2 {
    font-size: 1.9rem;
    margin-bottom: 4px;
}

.sitemap-block-title p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

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

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

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

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

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

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

.service-group {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s;
}

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

.service-group-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--border);
}

.service-group-header .sg-icon {
    width: 42px;
    height: 42px;
    background: rgba(184, 66, 28, 0.1);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.service-group-header h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
}

.service-group .chips-grid { gap: 10px; }

.service-group .chip {
    background: var(--cream);
    border-color: transparent;
    box-shadow: none;
    padding: 10px 16px;
    font-size: 0.9rem;
}

.service-group .chip:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.quick-nav {
    background: var(--cream);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    border-left: 4px solid var(--primary);
}

.quick-nav-label {
    font-weight: 600;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.quick-nav-label i { color: var(--primary); }

.quick-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
    padding: 6px 14px;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.2s;
}

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

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

.sitemap-cta::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(184, 66, 28, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

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

.sitemap-cta p {
    opacity: 0.9;
    margin-bottom: 26px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.sitemap-cta .btn { position: relative; }

.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img { height: 56px; margin-bottom: 16px; filter: brightness(0) invert(1); }

.footer-brand p { opacity: 0.75; font-size: 0.92rem; line-height: 1.7; }

.footer-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: var(--white);
}

.footer-col ul li { margin-bottom: 10px; font-size: 0.9rem; opacity: 0.8; }

.footer-col ul li a { transition: color 0.2s, opacity 0.2s; }

.footer-col ul li a:hover { color: var(--sand); opacity: 1; }

.footer-col ul li i { color: var(--primary-light); margin-right: 6px; font-size: 0.85rem; }

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
    opacity: 0.7;
}

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .sitemap-hero h1 { font-size: 2.4rem; }
    .sitemap-block-title h2 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .sitemap-hero { padding: 140px 0 60px; }
    .sitemap-hero h1 { font-size: 2rem; }
    .sitemap-hero p { font-size: 1rem; }
    .sitemap-section { padding: 50px 0; }
    .sitemap-block { margin-bottom: 50px; }
    .sitemap-block-header { flex-direction: column; align-items: flex-start; text-align: left; gap: 12px; }
    .sitemap-block-icon { width: 48px; height: 48px; font-size: 1.1rem; }
    .sitemap-block-title h2 { font-size: 1.4rem; }
    .service-group { padding: 22px; }
    .chip { padding: 10px 16px; font-size: 0.88rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .sitemap-cta { padding: 40px 24px; }
    .sitemap-cta h2 { font-size: 1.5rem; }
    .quick-nav { flex-direction: column; align-items: flex-start; }
}