:root {
            --primary: #2C3E50;
            --primary-dark: #1A2530;
            --secondary: #D4763A;
            --secondary-dark: #B85F28;
            --stone: #F5F1EA;
            --moss: #7A9E7E;
            --white: #ffffff;
            --text: #2C3E50;
            --text-light: #5A6B7A;
            --border: #E5DED4;
            --shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
            --shadow-lg: 0 12px 40px rgba(44, 62, 80, 0.15);
        }

* { 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.7;
            background: var(--white);
            overflow-x: hidden;
        }

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

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

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

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

.header {
            position: fixed; top: 0; left: 0; right: 0;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 12px rgba(44, 62, 80, 0.06);
            z-index: 1000;
        }

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

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

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

.logo-text {
            font-family: 'Playfair Display', serif;
            font-weight: 700; font-size: 1.2rem; color: var(--primary);
            text-transform: capitalize;
        }

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

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

.nav a {
            font-weight: 500; font-size: 0.95rem; color: var(--text);
            position: relative; padding: 6px 0;
        }

.nav a:not(.btn-cta-nav)::after {
            content: ''; position: absolute; bottom: 0; left: 0;
            width: 0; height: 2px; background: var(--secondary);
            transition: width 0.3s;
        }

.nav a:not(.btn-cta-nav):hover::after { width: 100%; }

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

.nav .btn-cta-nav {
            background: var(--secondary); color: var(--white) !important;
            padding: 10px 22px; border-radius: 50px; font-weight: 600;
            box-shadow: 0 4px 14px rgba(212, 118, 58, 0.35);
        }

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

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

.hero {
            position: relative;
            min-height: 100vh;
            display: flex; align-items: center;
            color: var(--white);
            padding: 140px 0 80px;
            overflow: hidden;
        }

.hero::before {
            content: ''; position: absolute; inset: 0;
            background: url('https://webflash.pro/images/hero_admin_1779105204_6a0afdb4b41e7.jpg') center/cover no-repeat;
            z-index: -2;
        }

.hero::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.75) 100%);
            z-index: -1;
        }

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

.hero-content h1 {
            font-size: clamp(2.2rem, 5vw, 3.6rem);
            color: var(--white); margin-bottom: 24px;
            line-height: 1.15;
        }

.hero-content h1 .accent { color: var(--secondary); }

.hero-tagline {
            font-size: 1.15rem; margin-bottom: 32px; opacity: 0.92;
            max-width: 540px;
        }

.hero-badges {
            display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px;
        }

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

.hero-badge i { color: var(--secondary); }

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

.btn {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 16px 32px; border-radius: 50px;
            font-weight: 600; font-size: 1rem; cursor: pointer;
            transition: all 0.3s; border: none;
            text-decoration: none;
        }

.btn-primary {
            background: var(--secondary); color: var(--white);
            box-shadow: 0 8px 24px rgba(212, 118, 58, 0.45);
        }

.btn-primary:hover { background: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(212, 118, 58, 0.55); }

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

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

.devis-card {
            background: var(--white); border-radius: 18px;
            padding: 32px; box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
            color: var(--text);
        }

.devis-card .badge-top {
            display: inline-block; background: var(--secondary);
            color: var(--white); padding: 5px 14px; border-radius: 50px;
            font-size: 0.78rem; font-weight: 600; margin-bottom: 14px;
            letter-spacing: 0.05em; text-transform: uppercase;
        }

.devis-card h2 {
            font-size: 1.6rem; margin-bottom: 6px; color: var(--primary);
        }

.devis-card .subtitle {
            color: var(--text-light); font-size: 0.92rem; margin-bottom: 20px;
        }

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

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

.form-group input, .form-group textarea, .form-group select {
            width: 100%; padding: 12px 14px;
            border: 1.5px solid var(--border); border-radius: 10px;
            font-family: inherit; font-size: 0.95rem; color: var(--text);
            background: var(--stone); transition: all 0.3s;
        }

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            outline: none; border-color: var(--secondary);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(212, 118, 58, 0.1);
        }

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

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

.form-status p { margin: 0; }

#devisForm button[type="submit"], #contactForm button[type="submit"] {
            width: 100%; background: var(--secondary); color: var(--white);
            padding: 14px; border: none; border-radius: 10px;
            font-size: 1rem; font-weight: 600; cursor: pointer;
            transition: all 0.3s; margin-top: 6px;
        }

#devisForm button[type="submit"]:hover, #contactForm button[type="submit"]:hover {
            background: var(--secondary-dark); transform: translateY(-1px);
        }

#devisForm button[type="submit"]:disabled, #contactForm button[type="submit"]:disabled {
            opacity: 0.6; cursor: not-allowed;
        }

section { padding: 90px 0; }

.section-head { text-align: center; margin-bottom: 60px; }

.section-eyebrow {
            display: inline-block; color: var(--secondary);
            font-size: 0.85rem; font-weight: 600; letter-spacing: 0.15em;
            text-transform: uppercase; margin-bottom: 14px;
        }

.section-head h2 {
            font-size: clamp(1.9rem, 4vw, 2.8rem);
            margin-bottom: 14px;
        }

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

.stats {
            background: var(--primary); color: var(--white);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

.stats::before {
            content: ''; position: absolute; inset: 0;
            background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
            background-size: 30px 30px;
        }

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

.stat {
            text-align: center; padding: 20px 10px;
            border-right: 1px solid rgba(255, 255, 255, 0.12);
        }

.stat:last-child { border-right: none; }

.stat-value {
            font-family: 'Playfair Display', serif;
            font-size: 3rem; font-weight: 800; color: var(--secondary);
            line-height: 1; margin-bottom: 8px;
        }

.stat-label {
            font-size: 0.9rem; opacity: 0.85;
            text-transform: uppercase; letter-spacing: 0.08em;
        }

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

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

.service-card {
            background: var(--white); border-radius: 16px;
            overflow: hidden; box-shadow: var(--shadow);
            transition: all 0.4s;
            flex: 0 1 calc(33.333% - 20px); min-width: 290px;
            display: flex; flex-direction: column;
        }

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

.service-img {
            position: relative; aspect-ratio: 16 / 10;
        }

.service-img img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.5s;
            border-radius: 0;
        }

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

.service-num {
            position: absolute; top: 14px; right: 14px;
            background: var(--secondary); color: var(--white);
            width: 38px; height: 38px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 0.9rem;
            font-family: 'Playfair Display', serif;
        }

.service-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }

.service-icon {
            width: 50px; height: 50px; border-radius: 12px;
            background: rgba(212, 118, 58, 0.12); color: var(--secondary);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.25rem; margin-bottom: 16px;
        }

.service-body h3 {
            font-size: 1.35rem; margin-bottom: 10px;
            text-transform: capitalize;
        }

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

.process {
            background: var(--primary-dark); color: var(--white);
            position: relative; overflow: hidden;
        }

.process .section-head h2 { color: var(--white); }

.process .section-head p { color: rgba(255, 255, 255, 0.75); }

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

.process-step {
            position: relative; padding: 30px 24px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            transition: all 0.3s;
        }

.process-step:hover {
            background: rgba(255, 255, 255, 0.07);
            transform: translateY(-4px);
        }

.process-num {
            font-family: 'Playfair Display', serif;
            font-size: 5rem; font-weight: 800;
            color: var(--secondary); opacity: 0.9;
            line-height: 1; margin-bottom: 12px;
            display: block;
        }

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

.process-step p {
            color: rgba(255, 255, 255, 0.78); font-size: 0.93rem;
        }

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

.gallery-grid {
            display: grid; grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 200px; gap: 14px;
        }

.gallery-item {
            position: relative; overflow: hidden;
            border-radius: 12px; cursor: pointer;
            background: var(--stone);
        }

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

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

.gallery-item::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(26, 37, 48, 0.6), transparent 50%);
            opacity: 0; transition: opacity 0.3s;
        }

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

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

.gallery-item:nth-child(6) { grid-column: span 2; }

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

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

.why-card {
            background: var(--white); padding: 32px 26px;
            border-radius: 14px; text-align: center;
            transition: all 0.3s; border-top: 4px solid var(--secondary);
        }

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

.why-icon {
            width: 64px; height: 64px; border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
            color: var(--white); display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; margin: 0 auto 18px;
        }

.why-card h3 { font-size: 1.15rem; margin-bottom: 10px; }

.why-card p { font-size: 0.93rem; color: var(--text-light); }

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

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

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

.about-img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.about-img::before {
            content: ''; position: absolute; bottom: -20px; right: -20px;
            width: 120px; height: 120px;
            background: var(--secondary); border-radius: 16px;
            z-index: -1;
        }

.about-content h2 { margin-bottom: 20px; }

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

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

.about-points li {
            display: flex; align-items: flex-start; gap: 10px;
            font-size: 0.95rem;
        }

.about-points li i { color: var(--moss); margin-top: 4px; }

.zones {
            background: var(--primary-dark);
            color: var(--white); position: relative; overflow: hidden;
        }

.zones .section-head h2 { color: var(--white); }

.zones .section-head p { color: rgba(255, 255, 255, 0.75); }

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

.zones-text {
            font-size: 1.05rem; color: rgba(255, 255, 255, 0.85);
            margin-bottom: 24px;
        }

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

.zone-pill {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 8px 16px; border-radius: 50px;
            font-size: 0.88rem;
        }

.zone-pill i { color: var(--secondary); margin-right: 6px; }

.zones-map {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px; padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

.zones-map .big-icon {
            font-size: 4rem; color: var(--secondary); margin-bottom: 16px;
        }

.zones-map h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 8px; }

.zones-map p { color: rgba(255, 255, 255, 0.7); margin-bottom: 20px; }

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

.reviews-summary {
            text-align: center; margin-bottom: 40px;
        }

.reviews-summary .stars { color: #FFB400; font-size: 1.4rem; margin-bottom: 8px; }

.reviews-summary .rating { font-size: 1.1rem; font-weight: 600; }

.reviews-summary .rating span { color: var(--text-light); font-weight: 400; }

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

.review-card {
            background: var(--white); padding: 32px;
            border-radius: 14px; box-shadow: var(--shadow);
            position: relative;
        }

.review-card .quote-icon {
            position: absolute; top: 24px; right: 28px;
            font-size: 2.5rem; color: var(--stone); opacity: 0.8;
        }

.review-stars { color: #FFB400; margin-bottom: 14px; }

.review-text {
            color: var(--text-light); font-style: italic;
            margin-bottom: 20px; font-size: 0.98rem;
        }

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

.review-avatar {
            width: 46px; height: 46px; border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
            color: var(--white); display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 1.05rem;
        }

.review-name { font-weight: 600; color: var(--primary); }

.review-source { font-size: 0.82rem; color: var(--text-light); }

.reviews-cta { text-align: center; margin-top: 40px; }

.reviews-cta a {
            display: inline-flex; align-items: center; gap: 10px;
            background: var(--white); color: var(--primary);
            padding: 14px 28px; border-radius: 50px; font-weight: 600;
            border: 2px solid var(--border); transition: all 0.3s;
        }

.reviews-cta a:hover { border-color: var(--secondary); color: var(--secondary); }

.reviews-cta i { color: #4285F4; }

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

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

.faq-item {
            background: var(--stone); border-radius: 12px;
            margin-bottom: 14px; overflow: hidden;
            transition: all 0.3s;
        }

.faq-item summary {
            padding: 22px 26px; cursor: pointer;
            font-weight: 600; color: var(--primary);
            list-style: none; position: relative;
            padding-right: 60px; font-size: 1.05rem;
        }

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

.faq-item summary::after {
            content: '\f067'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
            position: absolute; right: 26px; top: 50%; transform: translateY(-50%);
            color: var(--secondary); transition: transform 0.3s;
            font-size: 0.9rem;
        }

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

.faq-item[open] { background: var(--white); box-shadow: var(--shadow); }

.faq-answer {
            padding: 0 26px 24px; color: var(--text-light);
            font-size: 0.97rem;
        }

.hours-section { background: var(--stone); }

.hours-card {
            max-width: 580px; margin: 0 auto;
            background: var(--white); border-radius: 16px;
            box-shadow: var(--shadow); overflow: hidden;
        }

.hours-header {
            background: var(--primary); color: var(--white);
            padding: 24px 28px; text-align: center;
        }

.hours-header h3 {
            color: var(--white); font-size: 1.3rem;
            display: flex; align-items: center; justify-content: center; gap: 10px;
        }

.hours-list { padding: 14px 28px 24px; }

.hours-row {
            display: flex; justify-content: space-between; align-items: center;
            padding: 14px 0; border-bottom: 1px solid var(--border);
            font-size: 0.97rem;
        }

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

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

.hours-time { color: var(--moss); font-weight: 500; }

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

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

.contact-info-list { display: grid; gap: 18px; margin-bottom: 30px; }

.contact-info-item {
            display: flex; gap: 16px; align-items: flex-start;
            padding: 18px; background: var(--stone); border-radius: 12px;
        }

.contact-info-icon {
            width: 44px; height: 44px; border-radius: 10px;
            background: var(--secondary); color: var(--white);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0; font-size: 1.05rem;
        }

.contact-info-item .label {
            font-size: 0.82rem; color: var(--text-light);
            text-transform: uppercase; letter-spacing: 0.05em;
            margin-bottom: 4px; display: block;
        }

.contact-info-item .value { font-weight: 600; color: var(--primary); }

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

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

.contact-form-card {
            background: var(--stone); padding: 36px;
            border-radius: 16px; border-top: 4px solid var(--secondary);
        }

.contact-form-card h3 { margin-bottom: 8px; font-size: 1.5rem; }

.contact-form-card .subtitle { color: var(--text-light); margin-bottom: 24px; font-size: 0.95rem; }

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

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

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

.footer-brand p { font-size: 0.93rem; line-height: 1.7; }

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

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

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

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

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

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

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

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

.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: 16px; 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(--primary);
            margin-bottom: 20px;
        }

.modal-close {
            position: absolute; top: 16px; right: 20px;
            font-size: 1.6rem; color: var(--text-light);
            text-decoration: none;
        }

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

@media (max-width: 1024px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .stat:nth-child(2) { border-right: none; }
            .process-grid { grid-template-columns: repeat(2, 1fr); }
            .why-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

@media (max-width: 768px) {
            section { padding: 60px 0; }
            .container { padding: 0 16px; }
            .header-inner { padding: 12px 16px; }
            .logo img { height: 40px; }
            .logo-text { font-size: 1rem; }
            .hero { padding: 110px 0 60px; min-height: auto; }
            .hero-grid { grid-template-columns: 1fr; gap: 40px; }
            .hero-content h1 { font-size: 2.1rem; }
            .devis-card { padding: 24px; }
            .form-row { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
            .stat { border-right: none; padding: 14px 6px; }
            .stat:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.12); }
            .stat-value { font-size: 2.2rem; }
            .services-grid { gap: 20px; }
            .service-card { flex: 0 1 100%; min-width: 0; }
            .process-grid { grid-template-columns: 1fr; gap: 18px; }
            .process-num { font-size: 4rem; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 10px; }
            .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
            .gallery-item:nth-child(6) { grid-column: span 2; }
            .why-grid { grid-template-columns: 1fr; }
            .about-grid { grid-template-columns: 1fr; gap: 40px; }
            .about-points { grid-template-columns: 1fr; }
            .zones-grid { grid-template-columns: 1fr; gap: 30px; }
            .reviews-grid { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; gap: 30px; }
            .contact-form-card { padding: 24px; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: left; }
            .footer-bottom { flex-direction: column; align-items: flex-start; }
            .footer-bottom a { margin-left: 0; margin-right: 16px; }
            .hero-cta { flex-direction: column; align-items: stretch; }
            .btn { justify-content: center; }
        }

@media (max-width: 480px) {
            .hero-content h1 { font-size: 1.75rem; }
            .stats-grid { grid-template-columns: 1fr; }
            .stat { border-right: none !important; }
        }

@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 { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

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

.sct-tpl-service-hub { color: #2C3E50; font-family: 'Inter', -apple-system, sans-serif; line-height: 1.7; background: #ffffff; }

.sct-tpl-service-hub h1, .sct-tpl-service-hub h2, .sct-tpl-service-hub h3, .sct-tpl-service-hub h4 {
    font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.25; color: #2C3E50;
}

.sct-tpl-service-hub .sct-hero {
    position: relative; padding: 140px 0 80px; color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.85) 100%), url('/images/service_1_1779105798_6a0b0006e35e3.webp') center/cover no-repeat;
    overflow: hidden;
}

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

.sct-tpl-service-hub .sct-hero-inner {
    max-width: 880px; margin: 0 auto; text-align: center;
}

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

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

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

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

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

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

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

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

.sct-tpl-service-hub .sct-hero-inner h1 {
    font-size: clamp(2.1rem, 5vw, 3.4rem); color: #ffffff; margin-bottom: 20px; line-height: 1.15;
}

.sct-tpl-service-hub .sct-hero-inner h1 .sct-accent { color: #D4763A; }

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.12rem; margin-bottom: 32px; opacity: 0.92;
    color: rgba(255,255,255,0.95); max-width: 720px; margin-left: auto; margin-right: auto;
}

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

.sct-tpl-service-hub .sct-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px; border-radius: 50px;
    font-weight: 600; font-size: 0.98rem; cursor: pointer;
    transition: all 0.3s; border: none; text-decoration: none;
}

.sct-tpl-service-hub .sct-btn-primary {
    background: #D4763A; color: #ffffff;
    box-shadow: 0 8px 24px rgba(212, 118, 58, 0.45);
}

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

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

.sct-tpl-service-hub .sct-btn-outline:hover { background: #ffffff; color: #2C3E50; }

.sct-tpl-service-hub .sct-hero-trust {
    display: flex; flex-wrap: wrap; gap: 18px; justify-content: center;
}

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

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

.sct-tpl-service-hub .sct-stats-band {
    background: #1A2530; color: #ffffff; padding: 60px 0;
    position: relative; overflow: hidden;
}

.sct-tpl-service-hub .sct-stats-band::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 30px 30px;
}

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

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

.sct-tpl-service-hub .sct-stat-item {
    text-align: center; padding: 16px 10px;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.sct-tpl-service-hub .sct-stat-item:last-child { border-right: none; }

.sct-tpl-service-hub .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem; font-weight: 800; color: #D4763A;
    line-height: 1; margin-bottom: 8px;
}

.sct-tpl-service-hub .sct-stat-label {
    font-size: 0.85rem; opacity: 0.85;
    text-transform: uppercase; letter-spacing: 0.08em;
}

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

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

.sct-tpl-service-hub .sct-section-title {
    font-size: clamp(1.8rem, 3.8vw, 2.5rem); margin-bottom: 12px; color: #2C3E50;
}

.sct-tpl-service-hub .sct-section-desc {
    font-size: 1.02rem; color: #5A6B7A; max-width: 640px; margin: 0 auto;
}

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

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

.sct-tpl-service-hub .sct-intro-section p {
    color: #5A6B7A; font-size: 1.04rem; margin-bottom: 18px; line-height: 1.8;
}

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

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

.sct-tpl-service-hub .sct-services-section { padding: 90px 0; background: #F5F1EA; }

.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: 16px;
    overflow: hidden; box-shadow: 0 4px 20px rgba(44,62,80,0.08);
    transition: all 0.4s; display: flex; flex-direction: column;
}

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-8px); box-shadow: 0 12px 40px rgba(44,62,80,0.15);
}

.sct-tpl-service-hub .sct-service-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }

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

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

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

.sct-tpl-service-hub .sct-service-body h3 { font-size: 1.25rem; margin-bottom: 10px; }

.sct-tpl-service-hub .sct-service-body p { color: #5A6B7A; font-size: 0.94rem; flex: 1; }

.sct-tpl-service-hub .sct-processus-section {
    padding: 90px 0; background: #1A2530; color: #ffffff;
}

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

.sct-tpl-service-hub .sct-processus-section .sct-section-desc { color: rgba(255,255,255,0.75); }

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

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

.sct-tpl-service-hub .sct-process-step {
    position: relative; padding: 26px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; transition: all 0.3s;
    text-align: center;
}

.sct-tpl-service-hub .sct-process-step:hover {
    background: rgba(255,255,255,0.07); transform: translateY(-4px);
}

.sct-tpl-service-hub .sct-process-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #D4763A, #B85F28); color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin: 0 auto 14px;
}

.sct-tpl-service-hub .sct-process-num {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem; color: #D4763A;
    letter-spacing: 0.15em; text-transform: uppercase;
    font-weight: 600; margin-bottom: 6px;
}

.sct-tpl-service-hub .sct-process-step h3 {
    font-size: 1.05rem; color: #ffffff; margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-process-step p { color: rgba(255,255,255,0.78); font-size: 0.88rem; }

.sct-tpl-service-hub .sct-why-section { padding: 90px 0; background: #F5F1EA; }

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

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

.sct-tpl-service-hub .sct-why-card {
    background: #ffffff; padding: 30px 24px;
    border-radius: 14px; text-align: center;
    transition: all 0.3s; border-top: 4px solid #D4763A;
}

.sct-tpl-service-hub .sct-why-card:hover {
    transform: translateY(-6px); box-shadow: 0 12px 40px rgba(44,62,80,0.15);
}

.sct-tpl-service-hub .sct-why-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, #D4763A, #B85F28); color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin: 0 auto 16px;
}

.sct-tpl-service-hub .sct-why-card h3 { font-size: 1.1rem; margin-bottom: 10px; }

.sct-tpl-service-hub .sct-why-card p { font-size: 0.92rem; color: #5A6B7A; }

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

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

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

.sct-tpl-service-hub .sct-usecase-img {
    position: relative; border-radius: 16px; overflow: hidden;
    box-shadow: 0 12px 40px rgba(44,62,80,0.15);
}

.sct-tpl-service-hub .sct-usecase-img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.sct-tpl-service-hub .sct-usecase-content h2 { margin-bottom: 20px; font-size: clamp(1.7rem, 3.5vw, 2.2rem); }

.sct-tpl-service-hub .sct-usecase-content p {
    color: #5A6B7A; margin-bottom: 14px; font-size: 1rem; line-height: 1.8;
}

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

.sct-tpl-service-hub .sct-engagements-section { padding: 90px 0; background: #F5F1EA; }

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

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

.sct-tpl-service-hub .sct-engagement-card {
    background: #ffffff; padding: 36px 30px; border-radius: 16px;
    text-align: center; transition: all 0.3s;
}

.sct-tpl-service-hub .sct-engagement-card:hover {
    transform: translateY(-6px); box-shadow: 0 12px 40px rgba(44,62,80,0.15);
}

.sct-tpl-service-hub .sct-engagement-icon {
    width: 70px; height: 70px; border-radius: 18px;
    background: linear-gradient(135deg, #D4763A, #B85F28); color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin: 0 auto 18px;
}

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

.sct-tpl-service-hub .sct-engagement-card p { color: #5A6B7A; font-size: 0.95rem; }

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

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

.sct-tpl-service-hub .sct-faq-item {
    background: #F5F1EA; border-radius: 12px;
    margin-bottom: 14px; overflow: hidden; transition: all 0.3s;
}

.sct-tpl-service-hub .sct-faq-item summary {
    padding: 22px 26px; cursor: pointer;
    font-weight: 600; color: #2C3E50;
    list-style: none; position: relative;
    padding-right: 60px; font-size: 1.02rem;
}

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

.sct-tpl-service-hub .sct-faq-item summary::after {
    content: '\f067'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; right: 26px; top: 50%; transform: translateY(-50%);
    color: #D4763A; transition: transform 0.3s; font-size: 0.88rem;
}

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

.sct-tpl-service-hub .sct-faq-item[open] {
    background: #ffffff; box-shadow: 0 4px 20px rgba(44,62,80,0.08);
    border: 1px solid #E5DED4;
}

.sct-tpl-service-hub .sct-faq-answer {
    padding: 0 26px 24px; color: #5A6B7A; font-size: 0.96rem;
}

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

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

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

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

.sct-tpl-service-hub .sct-maillage-city-link {
    background: #ffffff; border: 1px solid #E5DED4;
    padding: 14px 18px; border-radius: 10px;
    color: #2C3E50; font-size: 0.94rem; font-weight: 500;
    text-decoration: none; transition: all 0.3s;
    display: flex; align-items: center; gap: 10px;
}

.sct-tpl-service-hub .sct-maillage-city-link:hover {
    background: #D4763A; color: #ffffff; border-color: #D4763A; transform: translateY(-2px);
}

.sct-tpl-service-hub .sct-maillage-city-link i { color: #D4763A; flex-shrink: 0; }

.sct-tpl-service-hub .sct-maillage-city-link:hover i { color: #ffffff; }

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

.sct-tpl-service-hub .sct-maillage-link {
    background: #F5F1EA; border: 1px solid #E5DED4;
    padding: 12px 22px; border-radius: 10px;
    color: #2C3E50; font-size: 0.93rem; font-weight: 500;
    text-decoration: none; transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 8px;
}

.sct-tpl-service-hub .sct-maillage-link:hover {
    background: #D4763A; color: #ffffff; border-color: #D4763A; transform: translateY(-2px);
}

.sct-tpl-service-hub .sct-maillage-link i { color: #D4763A; }

.sct-tpl-service-hub .sct-maillage-link:hover i { color: #ffffff; }

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

.sct-tpl-service-hub .sct-cta-final::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(212, 118, 58, 0.08) 1px, transparent 0);
    background-size: 30px 30px;
}

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

.sct-tpl-service-hub .sct-cta-final h2 {
    color: #ffffff; font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 16px;
}

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

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

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero { padding: 130px 0 70px; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-stat-item:nth-child(2) { border-right: none; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-usecase-img { max-width: 460px; margin: 0 auto; }
    .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-maillage-cities-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-hub .sct-hero-inner 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-stats-band { padding: 50px 0; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .sct-tpl-service-hub .sct-stat-value { font-size: 2.2rem; }
    .sct-tpl-service-hub .sct-intro-section,
    .sct-tpl-service-hub .sct-services-section,
    .sct-tpl-service-hub .sct-processus-section,
    .sct-tpl-service-hub .sct-why-section,
    .sct-tpl-service-hub .sct-usecase-section,
    .sct-tpl-service-hub .sct-engagements-section,
    .sct-tpl-service-hub .sct-faq-section { padding: 70px 0; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-maillage-section { padding: 60px 0; }
    .sct-tpl-service-hub .sct-maillage-cities-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.sct-hero-text { min-width: 0; max-width: 100%; }

.sct-tpl-zone { color: #2C3E50; font-family: 'Inter', -apple-system, sans-serif; line-height: 1.7; background: #ffffff; }

.sct-tpl-zone h1, .sct-tpl-zone h2, .sct-tpl-zone h3, .sct-tpl-zone h4 {
    font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.25; color: #2C3E50;
}

.sct-tpl-zone .sct-hero {
    position: relative; padding: 140px 0 80px; color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.85) 100%), url('/images/services_1779110826_1779110826.webp') center/cover no-repeat;
    overflow: hidden;
}

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

.sct-tpl-zone .sct-hero-inner { max-width: 880px; margin: 0 auto; text-align: center; }

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

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

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

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

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

.sct-tpl-zone .sct-hero-badges {
    display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; justify-content: center;
}

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

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

.sct-tpl-zone .sct-hero-inner h1 {
    font-size: clamp(2.1rem, 5vw, 3.4rem); color: #ffffff; margin-bottom: 20px; line-height: 1.15;
}

.sct-tpl-zone .sct-hero-inner h1 .sct-accent { color: #D4763A; }

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.12rem; margin-bottom: 32px; opacity: 0.92;
    color: rgba(255,255,255,0.95); max-width: 720px; margin-left: auto; margin-right: auto;
}

.sct-tpl-zone .sct-hero-btns {
    display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; justify-content: center;
}

.sct-tpl-zone .sct-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px; border-radius: 50px;
    font-weight: 600; font-size: 0.98rem; cursor: pointer;
    transition: all 0.3s; border: none; text-decoration: none;
}

.sct-tpl-zone .sct-btn-primary {
    background: #D4763A; color: #ffffff;
    box-shadow: 0 8px 24px rgba(212, 118, 58, 0.45);
}

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

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

.sct-tpl-zone .sct-btn-outline:hover { background: #ffffff; color: #2C3E50; }

.sct-tpl-zone .sct-hero-trust {
    display: flex; flex-wrap: wrap; gap: 18px; justify-content: center;
}

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

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

.sct-tpl-zone .sct-stats-band {
    background: #1A2530; color: #ffffff; padding: 60px 0;
    position: relative; overflow: hidden;
}

.sct-tpl-zone .sct-stats-band::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 30px 30px;
}

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

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

.sct-tpl-zone .sct-stat-item {
    text-align: center; padding: 16px 10px;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.sct-tpl-zone .sct-stat-item:last-child { border-right: none; }

.sct-tpl-zone .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem; font-weight: 800; color: #D4763A;
    line-height: 1; margin-bottom: 8px;
}

.sct-tpl-zone .sct-stat-label {
    font-size: 0.85rem; opacity: 0.85;
    text-transform: uppercase; letter-spacing: 0.08em;
}

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

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

.sct-tpl-zone .sct-section-title {
    font-size: clamp(1.8rem, 3.8vw, 2.5rem); margin-bottom: 12px; color: #2C3E50;
}

.sct-tpl-zone .sct-section-desc {
    font-size: 1.02rem; color: #5A6B7A; max-width: 640px; margin: 0 auto;
}

.sct-tpl-zone .sct-intro-section { padding: 90px 0; background: #ffffff; }

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

.sct-tpl-zone .sct-intro-section p {
    color: #5A6B7A; font-size: 1.04rem; margin-bottom: 18px; line-height: 1.8;
}

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

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

.sct-tpl-zone .sct-services-section { padding: 90px 0; background: #F5F1EA; }

.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: 16px;
    overflow: hidden; box-shadow: 0 4px 20px rgba(44,62,80,0.08);
    transition: all 0.4s; display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
}

.sct-tpl-zone .sct-service-card:hover {
    transform: translateY(-8px); box-shadow: 0 12px 40px rgba(44,62,80,0.15);
}

.sct-tpl-zone .sct-service-icon-wrap {
    padding: 30px 24px 18px;
    display: flex; align-items: center; gap: 14px;
}

.sct-tpl-zone .sct-service-icon-circle {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, #D4763A, #B85F28); color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
}

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

.sct-tpl-zone .sct-service-body h3 { font-size: 1.2rem; margin-bottom: 10px; }

.sct-tpl-zone .sct-service-body p { color: #5A6B7A; font-size: 0.94rem; flex: 1; margin-bottom: 14px; }

.sct-tpl-zone .sct-service-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: #D4763A; font-weight: 600; font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 0.05em;
}

.sct-tpl-zone .sct-service-link i { transition: transform 0.3s; }

.sct-tpl-zone .sct-service-card:hover .sct-service-link i { transform: translateX(4px); }

.sct-tpl-zone .sct-zones-section {
    padding: 90px 0; background: #1A2530; color: #ffffff;
}

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

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

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

.sct-tpl-zone .sct-zone-pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 9px 18px; border-radius: 50px; font-size: 0.9rem;
    color: rgba(255,255,255,0.95);
    display: inline-flex; align-items: center; gap: 7px;
}

.sct-tpl-zone .sct-zone-pill i { color: #D4763A; }

.sct-tpl-zone .sct-usecase-section { padding: 90px 0; background: #ffffff; }

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

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

.sct-tpl-zone .sct-usecase-img {
    position: relative; border-radius: 16px; overflow: hidden;
    box-shadow: 0 12px 40px rgba(44,62,80,0.15);
}

.sct-tpl-zone .sct-usecase-img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.sct-tpl-zone .sct-usecase-content h2 { margin-bottom: 20px; font-size: clamp(1.7rem, 3.5vw, 2.2rem); }

.sct-tpl-zone .sct-usecase-content p {
    color: #5A6B7A; margin-bottom: 14px; font-size: 1rem; line-height: 1.8;
}

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

.sct-tpl-zone .sct-engagements-section { padding: 90px 0; background: #F5F1EA; }

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

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

.sct-tpl-zone .sct-engagement-card {
    background: #ffffff; padding: 36px 30px; border-radius: 16px;
    text-align: center; transition: all 0.3s;
}

.sct-tpl-zone .sct-engagement-card:hover {
    transform: translateY(-6px); box-shadow: 0 12px 40px rgba(44,62,80,0.15);
}

.sct-tpl-zone .sct-engagement-icon {
    width: 70px; height: 70px; border-radius: 18px;
    background: linear-gradient(135deg, #D4763A, #B85F28); color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin: 0 auto 18px;
}

.sct-tpl-zone .sct-engagement-card h3 { font-size: 1.2rem; margin-bottom: 12px; }

.sct-tpl-zone .sct-engagement-card p { color: #5A6B7A; font-size: 0.95rem; }

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

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

.sct-tpl-zone .sct-local-spec h2 { color: #ffffff; margin-bottom: 20px; font-size: clamp(1.6rem, 3.5vw, 2.1rem); }

.sct-tpl-zone .sct-local-spec p { color: rgba(255,255,255,0.85); font-size: 1.02rem; line-height: 1.8; }

.sct-tpl-zone .sct-local-spec strong { color: #D4763A; }

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

.sct-tpl-zone .sct-faq-section { padding: 90px 0; background: #ffffff; }

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

.sct-tpl-zone .sct-faq-item {
    background: #F5F1EA; border-radius: 12px;
    margin-bottom: 14px; overflow: hidden; transition: all 0.3s;
}

.sct-tpl-zone .sct-faq-item summary {
    padding: 22px 26px; cursor: pointer;
    font-weight: 600; color: #2C3E50;
    list-style: none; position: relative;
    padding-right: 60px; font-size: 1.02rem;
}

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

.sct-tpl-zone .sct-faq-item summary::after {
    content: '\f067'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; right: 26px; top: 50%; transform: translateY(-50%);
    color: #D4763A; transition: transform 0.3s; font-size: 0.88rem;
}

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

.sct-tpl-zone .sct-faq-item[open] {
    background: #ffffff; box-shadow: 0 4px 20px rgba(44,62,80,0.08);
    border: 1px solid #E5DED4;
}

.sct-tpl-zone .sct-faq-answer {
    padding: 0 26px 24px; color: #5A6B7A; font-size: 0.96rem;
}

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

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

.sct-tpl-zone .sct-maillage-link {
    background: #ffffff; border: 1px solid #E5DED4;
    padding: 12px 22px; border-radius: 10px;
    color: #2C3E50; font-size: 0.93rem; font-weight: 500;
    text-decoration: none; transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 8px;
}

.sct-tpl-zone .sct-maillage-link:hover {
    background: #D4763A; color: #ffffff; border-color: #D4763A; transform: translateY(-2px);
}

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

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

.sct-tpl-zone .sct-cta-final {
    padding: 80px 0; background: linear-gradient(135deg, #2C3E50 0%, #1A2530 100%);
    color: #ffffff; text-align: center; position: relative; overflow: hidden;
}

.sct-tpl-zone .sct-cta-final::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(212, 118, 58, 0.08) 1px, transparent 0);
    background-size: 30px 30px;
}

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

.sct-tpl-zone .sct-cta-final h2 {
    color: #ffffff; font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 16px;
}

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

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

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero { padding: 130px 0 70px; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-stat-item:nth-child(2) { border-right: none; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-usecase-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-zone .sct-usecase-img { max-width: 460px; margin: 0 auto; }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-zone .sct-hero-inner h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-zone .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-zone .sct-hero-btns { flex-direction: column; }
    .sct-tpl-zone .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-stats-band { padding: 50px 0; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .sct-tpl-zone .sct-stat-value { font-size: 2.2rem; }
    .sct-tpl-zone .sct-intro-section,
    .sct-tpl-zone .sct-services-section,
    .sct-tpl-zone .sct-zones-section,
    .sct-tpl-zone .sct-usecase-section,
    .sct-tpl-zone .sct-engagements-section,
    .sct-tpl-zone .sct-faq-section { padding: 70px 0; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-maillage-section { padding: 60px 0; }
}

.sct-tpl-service-city { color: #2C3E50; font-family: 'Inter', -apple-system, sans-serif; line-height: 1.7; background: #ffffff; }

.sct-tpl-service-city h1, .sct-tpl-service-city h2, .sct-tpl-service-city h3, .sct-tpl-service-city h4 {
    font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.25; color: #2C3E50;
}

.sct-tpl-service-city .sct-hero {
    position: relative; padding: 140px 0 80px; color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.85) 100%), url('/images/services_1779110826_1779110826.webp') center/cover no-repeat;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-hero-text h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem); color: #ffffff; margin-bottom: 20px; line-height: 1.15;
}

.sct-tpl-service-city .sct-hero-text h1 .sct-accent { color: #D4763A; }

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.1rem; margin-bottom: 30px; opacity: 0.92; max-width: 560px;
    color: rgba(255,255,255,0.95);
}

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

.sct-tpl-service-city .sct-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px; border-radius: 50px;
    font-weight: 600; font-size: 0.98rem; cursor: pointer;
    transition: all 0.3s; border: none; text-decoration: none;
}

.sct-tpl-service-city .sct-btn-primary {
    background: #D4763A; color: #ffffff;
    box-shadow: 0 8px 24px rgba(212, 118, 58, 0.45);
}

.sct-tpl-service-city .sct-btn-primary:hover { background: #B85F28; transform: translateY(-2px); }

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

.sct-tpl-service-city .sct-btn-outline:hover { background: #ffffff; color: #2C3E50; }

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

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

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

.sct-tpl-service-city .sct-hero-card {
    background: #ffffff; border-radius: 18px; padding: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3); color: #2C3E50;
}

.sct-tpl-service-city .sct-hero-card-badge {
    display: inline-block; background: #D4763A; color: #ffffff;
    padding: 5px 14px; border-radius: 50px; font-size: 0.76rem; font-weight: 600;
    margin-bottom: 14px; letter-spacing: 0.05em; text-transform: uppercase;
}

.sct-tpl-service-city .sct-hero-card h2 { font-size: 1.5rem; margin-bottom: 6px; color: #2C3E50; }

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

.sct-tpl-service-city .sct-hero-card-list {
    list-style: none; padding: 0; margin: 0 0 22px;
    display: flex; flex-direction: column; gap: 14px;
}

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

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

.sct-tpl-service-city .sct-hero-card-list i {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(212, 118, 58, 0.12); color: #D4763A;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 0.95rem;
}

.sct-tpl-service-city .sct-hero-card-list .sct-hc-label {
    display: block; font-size: 0.78rem; color: #5A6B7A;
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px;
}

.sct-tpl-service-city .sct-hero-card-list .sct-hc-value { font-weight: 600; color: #2C3E50; font-size: 0.95rem; }

.sct-tpl-service-city .sct-hero-card-cta {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; background: #D4763A; color: #ffffff;
    padding: 14px; border-radius: 10px; font-weight: 600; font-size: 0.98rem;
    text-decoration: none; transition: all 0.3s;
}

.sct-tpl-service-city .sct-hero-card-cta:hover { background: #B85F28; }

.sct-tpl-service-city .sct-stats-band {
    background: #1A2530; color: #ffffff; padding: 60px 0;
    position: relative; overflow: hidden;
}

.sct-tpl-service-city .sct-stats-band::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 30px 30px;
}

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

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

.sct-tpl-service-city .sct-stat-item {
    text-align: center; padding: 16px 10px;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.sct-tpl-service-city .sct-stat-item:last-child { border-right: none; }

.sct-tpl-service-city .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem; font-weight: 800; color: #D4763A;
    line-height: 1; margin-bottom: 8px;
}

.sct-tpl-service-city .sct-stat-label {
    font-size: 0.85rem; opacity: 0.85;
    text-transform: uppercase; letter-spacing: 0.08em;
}

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

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

.sct-tpl-service-city .sct-section-title {
    font-size: clamp(1.8rem, 3.8vw, 2.5rem); margin-bottom: 12px; color: #2C3E50;
}

.sct-tpl-service-city .sct-section-desc {
    font-size: 1.02rem; color: #5A6B7A; max-width: 640px; margin: 0 auto;
}

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

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

.sct-tpl-service-city .sct-intro-section p {
    color: #5A6B7A; font-size: 1.04rem; margin-bottom: 18px; line-height: 1.8;
}

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

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

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

.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: 16px;
    overflow: hidden; box-shadow: 0 4px 20px rgba(44,62,80,0.08);
    transition: all 0.4s; display: flex; flex-direction: column;
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-8px); box-shadow: 0 12px 40px rgba(44,62,80,0.15);
}

.sct-tpl-service-city .sct-service-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }

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

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

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

.sct-tpl-service-city .sct-service-body h3 { font-size: 1.25rem; margin-bottom: 10px; }

.sct-tpl-service-city .sct-service-body p { color: #5A6B7A; font-size: 0.94rem; flex: 1; }

.sct-tpl-service-city .sct-processus-section {
    padding: 90px 0; background: #1A2530; color: #ffffff;
}

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

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

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

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

.sct-tpl-service-city .sct-process-step {
    position: relative; padding: 26px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; transition: all 0.3s;
    text-align: center;
}

.sct-tpl-service-city .sct-process-step:hover {
    background: rgba(255,255,255,0.07); transform: translateY(-4px);
}

.sct-tpl-service-city .sct-process-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #D4763A, #B85F28); color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin: 0 auto 14px;
}

.sct-tpl-service-city .sct-process-num {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem; color: #D4763A;
    letter-spacing: 0.15em; text-transform: uppercase;
    font-weight: 600; margin-bottom: 6px;
}

.sct-tpl-service-city .sct-process-step h3 {
    font-size: 1.05rem; color: #ffffff; margin-bottom: 10px;
}

.sct-tpl-service-city .sct-process-step p { color: rgba(255,255,255,0.78); font-size: 0.88rem; }

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

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

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

.sct-tpl-service-city .sct-why-card {
    background: #ffffff; padding: 30px 24px;
    border-radius: 14px; text-align: center;
    transition: all 0.3s; border-top: 4px solid #D4763A;
}

.sct-tpl-service-city .sct-why-card:hover {
    transform: translateY(-6px); box-shadow: 0 12px 40px rgba(44,62,80,0.15);
}

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

.sct-tpl-service-city .sct-why-card h3 { font-size: 1.1rem; margin-bottom: 10px; }

.sct-tpl-service-city .sct-why-card p { font-size: 0.92rem; color: #5A6B7A; }

.sct-tpl-service-city .sct-zones-section { padding: 90px 0; background: #ffffff; }

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

.sct-tpl-service-city .sct-zone-pill {
    background: #F5F1EA; border: 1px solid #E5DED4;
    padding: 9px 18px; border-radius: 50px; font-size: 0.9rem;
    color: #2C3E50; display: inline-flex; align-items: center; gap: 7px;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-zone-pill:hover { background: #D4763A; color: #ffffff; border-color: #D4763A; }

.sct-tpl-service-city .sct-zone-pill i { color: #D4763A; }

.sct-tpl-service-city .sct-zone-pill:hover i { color: #ffffff; }

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

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

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

.sct-tpl-service-city .sct-usecase-img {
    position: relative; border-radius: 16px; overflow: hidden;
    box-shadow: 0 12px 40px rgba(44,62,80,0.15);
}

.sct-tpl-service-city .sct-usecase-img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.sct-tpl-service-city .sct-usecase-content h2 { margin-bottom: 20px; font-size: clamp(1.7rem, 3.5vw, 2.2rem); }

.sct-tpl-service-city .sct-usecase-content p {
    color: #5A6B7A; margin-bottom: 14px; font-size: 1rem; line-height: 1.8;
}

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

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

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

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

.sct-tpl-service-city .sct-engagement-card {
    background: #F5F1EA; padding: 36px 30px; border-radius: 16px;
    text-align: center; transition: all 0.3s;
}

.sct-tpl-service-city .sct-engagement-card:hover {
    transform: translateY(-6px); box-shadow: 0 12px 40px rgba(44,62,80,0.15);
}

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

.sct-tpl-service-city .sct-engagement-card h3 { font-size: 1.2rem; margin-bottom: 12px; }

.sct-tpl-service-city .sct-engagement-card p { color: #5A6B7A; font-size: 0.95rem; }

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

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

.sct-tpl-service-city .sct-local-spec h2 { color: #ffffff; margin-bottom: 20px; font-size: clamp(1.6rem, 3.5vw, 2.1rem); }

.sct-tpl-service-city .sct-local-spec p { color: rgba(255,255,255,0.85); font-size: 1.02rem; line-height: 1.8; }

.sct-tpl-service-city .sct-local-spec strong { color: #D4763A; }

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

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

.sct-tpl-service-city .sct-faq-item {
    background: #F5F1EA; border-radius: 12px;
    margin-bottom: 14px; overflow: hidden; transition: all 0.3s;
}

.sct-tpl-service-city .sct-faq-item summary {
    padding: 22px 26px; cursor: pointer;
    font-weight: 600; color: #2C3E50;
    list-style: none; position: relative;
    padding-right: 60px; font-size: 1.02rem;
}

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

.sct-tpl-service-city .sct-faq-item summary::after {
    content: '\f067'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; right: 26px; top: 50%; transform: translateY(-50%);
    color: #D4763A; transition: transform 0.3s; font-size: 0.88rem;
}

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

.sct-tpl-service-city .sct-faq-item[open] {
    background: #ffffff; box-shadow: 0 4px 20px rgba(44,62,80,0.08);
}

.sct-tpl-service-city .sct-faq-answer {
    padding: 0 26px 24px; color: #5A6B7A; font-size: 0.96rem;
}

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

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

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

.sct-tpl-service-city .sct-maillage-link {
    background: #ffffff; border: 1px solid #E5DED4;
    padding: 12px 22px; border-radius: 10px;
    color: #2C3E50; font-size: 0.93rem; font-weight: 500;
    text-decoration: none; transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 8px;
}

.sct-tpl-service-city .sct-maillage-link:hover {
    background: #D4763A; color: #ffffff; border-color: #D4763A; transform: translateY(-2px);
}

.sct-tpl-service-city .sct-maillage-link i { color: #D4763A; }

.sct-tpl-service-city .sct-maillage-link:hover i { color: #ffffff; }

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

.sct-tpl-service-city .sct-cta-final {
    padding: 80px 0; background: linear-gradient(135deg, #2C3E50 0%, #1A2530 100%);
    color: #ffffff; text-align: center; position: relative; overflow: hidden;
}

.sct-tpl-service-city .sct-cta-final::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(212, 118, 58, 0.08) 1px, transparent 0);
    background-size: 30px 30px;
}

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

.sct-tpl-service-city .sct-cta-final h2 {
    color: #ffffff; font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 16px;
}

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

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

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero { padding: 130px 0 70px; }
    .sct-tpl-service-city .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-city .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-stat-item:nth-child(2) { border-right: none; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-usecase-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-city .sct-usecase-img { max-width: 460px; margin: 0 auto; }
    .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-city .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-service-city .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-hero-card { padding: 24px; }
    .sct-tpl-service-city .sct-stats-band { padding: 50px 0; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .sct-tpl-service-city .sct-stat-value { font-size: 2.2rem; }
    .sct-tpl-service-city .sct-intro-section,
    .sct-tpl-service-city .sct-services-section,
    .sct-tpl-service-city .sct-processus-section,
    .sct-tpl-service-city .sct-why-section,
    .sct-tpl-service-city .sct-zones-section,
    .sct-tpl-service-city .sct-usecase-section,
    .sct-tpl-service-city .sct-engagements-section,
    .sct-tpl-service-city .sct-faq-section { padding: 70px 0; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-maillage-section { padding: 50px 0; }
}

.sct-tpl-service-city .sct-hero {
    position: relative; padding: 140px 0 80px; color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.85) 100%), url('/images/service_1_1779105798_6a0b0006e35e3.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative; padding: 140px 0 80px; color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.85) 100%), url('/images/service_3_1779105839_6a0b002f4c131.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative; padding: 140px 0 80px; color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.85) 100%), url('/images/service_2_1779105820_6a0b001c73bab.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative; padding: 140px 0 80px; color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.85) 100%), url('/images/services_1779110875_1779110875.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative; padding: 140px 0 80px; color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.85) 100%), url('/images/services_1779110875_1779110875.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative; padding: 140px 0 80px; color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.85) 100%), url('/images/service_3_1779105839_6a0b002f4c131.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative; padding: 140px 0 80px; color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.85) 100%), url('/images/services_1779111948_1779111948.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative; padding: 140px 0 80px; color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.85) 100%), url('/images/services_1779111948_1779111948.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative; padding: 140px 0 80px; color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.85) 100%), url('/images/service_4_1779105861_6a0b0045eb7a4.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative; padding: 140px 0 80px; color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.85) 100%), url('/images/services_1779111981_1779111981.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative; padding: 140px 0 80px; color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.85) 100%), url('/images/services_1779111981_1779111981.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative; padding: 140px 0 80px; color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.85) 100%), url('/images/service_5_1779105878_6a0b0056ed7b1.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative; padding: 140px 0 80px; color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.85) 100%), url('/images/service_4_1779105861_6a0b0045eb7a4.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative; padding: 140px 0 80px; color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.85) 100%), url('/images/service_5_1779105878_6a0b0056ed7b1.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative; padding: 140px 0 80px; color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.85) 100%), url('/images/service_6_1779105897_6a0b00691d1b9.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative; padding: 140px 0 80px; color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.85) 100%), url('/images/service_6_1779105897_6a0b00691d1b9.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative; padding: 140px 0 80px; color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.85) 100%), url('/images/services_1779110826_1779110826.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative; padding: 140px 0 80px; color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.92) 0%, rgba(44, 62, 80, 0.85) 100%), url('/images/services_1779110875_1779110875.webp') center/cover no-repeat;
    overflow: hidden;
}

.hero-sitemap {
    position: relative;
    padding: 180px 0 90px;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-sitemap::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    z-index: -2;
}

.hero-sitemap::after {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
    background-size: 30px 30px;
    z-index: -1;
}

.hero-sitemap .breadcrumb {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px; border-radius: 50px;
    font-size: 0.85rem; margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

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

.hero-sitemap .breadcrumb i { font-size: 0.7rem; opacity: 0.6; }

.hero-sitemap h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--white); margin-bottom: 18px;
}

.hero-sitemap h1 .accent { color: var(--secondary); }

.hero-sitemap p {
    font-size: 1.15rem; opacity: 0.9;
    max-width: 620px; margin: 0 auto;
}

.sitemap { padding: 90px 0; }

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

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

.sitemap-block-head {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 32px; padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.sitemap-block-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(212, 118, 58, 0.35);
}

.sitemap-block-head h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 4px;
}

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

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

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

.chip:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.chip:hover i { transform: translateX(3px); transition: transform 0.3s; }

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

.city-group {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary);
    transition: all 0.3s;
}

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

.city-group h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
    display: flex; align-items: center; gap: 10px;
    color: var(--primary);
}

.city-group h3 i {
    color: var(--secondary);
    font-size: 1rem;
}

.city-group .chip-grid { gap: 8px; }

.city-group .chip {
    padding: 8px 16px;
    font-size: 0.88rem;
    background: var(--stone);
    border-color: transparent;
    box-shadow: none;
}

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

.chip-home {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    border-color: transparent;
    padding: 14px 26px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(212, 118, 58, 0.35);
}

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

.chip-home:hover {
    color: var(--white);
    background: var(--primary);
    transform: translateY(-3px);
}

.sitemap-cta {
    background: var(--stone);
    padding: 70px 0;
    text-align: center;
}

.sitemap-cta h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    margin-bottom: 14px;
}

.sitemap-cta p {
    color: var(--text-light);
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto; margin-right: auto;
}

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

.footer-col ul li i { color: var(--secondary); margin-right: 6px; width: 16px; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex; flex-wrap: wrap; justify-content: space-between;
    align-items: center; gap: 16px;
    font-size: 0.88rem;
}

.footer-bottom a { margin-left: 18px; }

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

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom > div:last-child a { margin: 0 8px; }
    .sitemap-block-head { flex-direction: column; align-items: flex-start; text-align: left; }
    .hero-sitemap { padding: 140px 0 70px; }
}