.menu-check{display:none;}

.menu-toggle{display:none;cursor:pointer;background:transparent;border:none;padding:8px;font-size:1.5rem;line-height:1;color:inherit;align-items:center;justify-content:center;user-select:none;}

@media(max-width:768px){.hamburger{display:none!important;}.menu-toggle{display:flex;}.menu-check:checked~.menu-toggle .fa-bars::before{content:"\f00d";}.menu-check:checked~.nav{display:flex!important;}}

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

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

:root {
            --primary: #8B6F47;
            --primary-dark: #6B5535;
            --secondary: #D4A853;
            --secondary-light: #E8C97A;
            --bg-cream: #F5F0E8;
            --bg-white: #FFFFFF;
            --text-dark: #2C2418;
            --text-body: #5A4E3E;
            --text-light: #8A7E6E;
            --border: #D9D0C3;
            --shadow: rgba(139, 111, 71, 0.12);
            --shadow-lg: rgba(139, 111, 71, 0.2);
        }

html {
            scroll-behavior: smooth;
        }

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

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

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

.logo-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

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

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

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

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

.nav a:hover {
            color: var(--primary);
            background: rgba(139, 111, 71, 0.06);
        }

.nav .btn-cta-nav {
            background: var(--primary);
            color: #fff;
            padding: 10px 22px;
            border-radius: 50px;
            font-weight: 600;
            margin-left: 8px;
            white-space: nowrap;
        }

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

.hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 8px;
        }

.hamburger span {
            width: 26px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
            transition: transform 0.3s, opacity 0.3s;
        }

.hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }

.hamburger.active span:nth-child(2) {
            opacity: 0;
        }

.hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

.hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 120px;
            padding-bottom: 60px;
            background: linear-gradient(135deg, rgba(44, 36, 24, 0.82) 0%, rgba(107, 85, 53, 0.6) 100%),
                        url('https://webflash.pro/images/hero_1775409702_69d29a26a03f2.webp') center/cover no-repeat;
        }

.hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

.hero-content {
            color: #fff;
        }

.hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(212, 168, 83, 0.2);
            border: 1px solid rgba(212, 168, 83, 0.4);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--secondary-light);
            margin-bottom: 24px;
        }

.hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
            color: #fff;
        }

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

.hero-subtitle {
            font-size: 1.15rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 30px;
            max-width: 520px;
        }

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

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

.btn-primary:hover {
            background: var(--secondary-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(212, 168, 83, 0.35);
        }

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

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

.devis-card {
            background: rgba(255, 255, 255, 0.97);
            border-radius: 20px;
            padding: 36px 32px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

.devis-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 6px;
        }

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

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

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

.devis-card input,
        .devis-card textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid var(--border);
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: var(--text-dark);
            background: var(--bg-cream);
            transition: border-color 0.3s, box-shadow 0.3s;
        }

.devis-card input:focus,
        .devis-card textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.12);
        }

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

.devis-card .btn-submit {
            width: 100%;
            background: var(--primary);
            color: #fff;
            padding: 14px;
            border: none;
            border-radius: 50px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
        }

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

.section {
            padding: 90px 20px;
        }

.section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

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

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

.section-bg-dark {
            background: var(--text-dark);
            color: #fff;
        }

.section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

.section-label i {
            font-size: 0.75rem;
        }

.section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 16px;
            line-height: 1.2;
        }

.section-bg-dark .section-title {
            color: #fff;
        }

.section-subtitle {
            font-size: 1.05rem;
            color: var(--text-light);
            max-width: 600px;
            margin-bottom: 50px;
        }

.section-bg-dark .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

.stats-bar {
            background: var(--primary);
            padding: 50px 20px;
        }

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

.stat-item {
            color: #fff;
        }

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

.stat-text {
            font-size: 0.95rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85);
        }

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

.service-card {
            flex: 0 1 calc(33.333% - 20px);
            max-width: 380px;
            background: var(--bg-white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px var(--shadow);
            border: 1px solid var(--border);
            transition: transform 0.3s, box-shadow 0.3s;
        }

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

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

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

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

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

.service-card-body h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

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

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

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

.engagement-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px var(--shadow);
        }

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

.engagement-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

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

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

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

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

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

.about-text {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--text-body);
            margin-bottom: 16px;
        }

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

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

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

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

.zone-card {
            background: var(--bg-white);
            border-radius: 16px;
            padding: 36px;
            border: 1px solid var(--border);
            transition: box-shadow 0.3s;
        }

.zone-card:hover {
            box-shadow: 0 8px 30px var(--shadow);
        }

.zone-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

.zone-card h3 i {
            color: var(--secondary);
        }

.zone-villes {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

.zone-ville {
            background: var(--bg-cream);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--text-body);
            font-weight: 500;
        }

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

.gallery-item {
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
            position: relative;
        }

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

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

.gallery-item::after {
            content: '\f065';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(44, 36, 24, 0.4);
            color: #fff;
            font-size: 1.4rem;
            opacity: 0;
            transition: opacity 0.3s;
        }

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

.lightbox {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0, 0, 0, 0.92);
            align-items: center;
            justify-content: center;
        }

.lightbox.active {
            display: flex;
        }

.lightbox img {
            max-width: 90vw;
            max-height: 90vh;
            border-radius: 8px;
            object-fit: contain;
        }

.lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: #fff;
            font-size: 2rem;
            cursor: pointer;
            background: none;
            border: none;
            padding: 10px;
        }

.lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            font-size: 2rem;
            cursor: pointer;
            background: rgba(255,255,255,0.1);
            border: none;
            padding: 16px 20px;
            border-radius: 50%;
            transition: background 0.3s;
        }

.lightbox-nav:hover {
            background: rgba(255,255,255,0.25);
        }

.lightbox-prev { left: 20px; }

.lightbox-next { right: 20px; }

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

.faq-item {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: 14px;
            overflow: hidden;
        }

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

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

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

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

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

.horaires-card {
            max-width: 500px;
            margin: 0 auto;
            background: var(--bg-white);
            border-radius: 16px;
            padding: 36px;
            box-shadow: 0 8px 30px var(--shadow);
            border: 1px solid var(--border);
        }

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

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

.horaire-jour {
            font-weight: 600;
            color: var(--text-dark);
        }

.horaire-heure {
            font-weight: 500;
            color: var(--primary);
        }

.horaire-ferme {
            color: #c0392b;
            font-weight: 500;
        }

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

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

.contact-info-list li {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid var(--border);
        }

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

.contact-info-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            flex-shrink: 0;
        }

.contact-info-text span {
            display: block;
            font-size: 0.82rem;
            color: var(--text-light);
            font-weight: 500;
            margin-bottom: 2px;
        }

.contact-info-text a,
        .contact-info-text p {
            color: var(--text-dark);
            font-weight: 600;
            text-decoration: none;
            font-size: 0.95rem;
            margin: 0;
        }

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

.contact-form-wrap {
            background: var(--bg-white);
            border-radius: 16px;
            padding: 36px;
            box-shadow: 0 8px 30px var(--shadow);
            border: 1px solid var(--border);
        }

.contact-form-wrap .form-group {
            margin-bottom: 18px;
        }

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

.contact-form-wrap input,
        .contact-form-wrap textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid var(--border);
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: var(--text-dark);
            background: var(--bg-cream);
            transition: border-color 0.3s, box-shadow 0.3s;
        }

.contact-form-wrap input:focus,
        .contact-form-wrap textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.12);
        }

.contact-form-wrap textarea {
            resize: vertical;
        }

.contact-form-wrap .btn-submit {
            width: 100%;
            background: var(--primary);
            color: #fff;
            padding: 14px;
            border: none;
            border-radius: 50px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
        }

.contact-form-wrap .btn-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

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

.footer {
            background: var(--text-dark);
            padding: 60px 20px 30px;
            color: rgba(255, 255, 255, 0.7);
        }

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

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

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

.footer-col-title {
            font-weight: 700;
            color: #fff;
            font-size: 1rem;
            margin-bottom: 16px;
        }

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

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

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

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

.footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.85rem;
        }

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

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

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

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

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

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

.modal-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

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

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

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

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

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

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

            .service-card {
                flex: 0 1 calc(50% - 15px);
            }

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

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

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

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

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

@media (max-width: 768px) {
            .nav {
                display: none;
                position: fixed;
                top: 75px;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 30px var(--shadow);
                gap: 4px;
            }

            .nav.active {
                display: flex;
            }

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

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

            .hamburger {
                display: flex;
            }

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

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

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

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

            .section {
                padding: 60px 16px;
            }

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

            .service-card {
                flex: 0 1 100%;
                max-width: 100%;
            }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sct-tpl-service-hub { background: #F5F0E8; }

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(44, 36, 24, 0.86) 0%, rgba(107, 85, 53, 0.7) 100%),
                url('/images/service_5_1775409846_69d29ab646e18.webp') center/cover no-repeat;
    color: #fff;
}

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

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

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

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

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

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

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

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

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

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 83, 0.2);
    border: 1px solid rgba(212, 168, 83, 0.4);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #E8C97A;
}

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

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

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

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

.sct-tpl-service-hub .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #D4A853;
    color: #2C2418;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: #E8C97A;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 168, 83, 0.4);
}

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

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

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

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

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

.sct-tpl-service-hub .sct-hero-card {
    background: rgba(255,255,255,0.97);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
    color: #2C2418;
}

.sct-tpl-service-hub .sct-hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 6px;
}

.sct-tpl-service-hub .sct-hero-card-sub {
    font-size: 0.88rem;
    color: #8A7E6E;
    margin-bottom: 22px;
}

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

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

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

.sct-tpl-service-hub .sct-hero-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #8B6F47, #D4A853);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

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

.sct-tpl-service-hub .sct-hero-card-text span {
    display: block;
    font-size: 0.78rem;
    color: #8A7E6E;
    font-weight: 500;
    margin-bottom: 2px;
}

.sct-tpl-service-hub .sct-hero-card-text strong {
    display: block;
    font-size: 0.95rem;
    color: #2C2418;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.sct-tpl-service-hub .sct-hero-card-cta {
    display: block;
    width: 100%;
    background: #8B6F47;
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.sct-tpl-service-hub .sct-hero-card-cta:hover {
    background: #6B5535;
    transform: translateY(-2px);
}

.sct-tpl-service-hub .sct-stats-band {
    background: #8B6F47;
    padding: 50px 20px;
}

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

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

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

.sct-tpl-service-hub .sct-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #D4A853;
    line-height: 1;
    margin-bottom: 8px;
    overflow-wrap: anywhere;
}

.sct-tpl-service-hub .sct-stat-text {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
}

.sct-tpl-service-hub .sct-section { padding: 90px 20px; }

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

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

.sct-tpl-service-hub .sct-section-bg-cream { background: #F5F0E8; }

.sct-tpl-service-hub .sct-section-bg-dark { background: #2C2418; color: #fff; }

.sct-tpl-service-hub .sct-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #D4A853;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

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

.sct-tpl-service-hub .sct-section-bg-dark .sct-section-title { color: #fff; }

.sct-tpl-service-hub .sct-section-subtitle {
    font-size: 1.02rem;
    color: #8A7E6E;
    max-width: 680px;
    margin-bottom: 50px;
}

.sct-tpl-service-hub .sct-section-bg-dark .sct-section-subtitle { color: rgba(255,255,255,0.75); }

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

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

.sct-tpl-service-hub .sct-intro-section .sct-intro-text {
    max-width: 880px;
    font-size: 1.02rem;
    line-height: 1.85;
    color: #5A4E3E;
}

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

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

.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(139, 111, 71, 0.12);
    border: 1px solid #D9D0C3;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(139, 111, 71, 0.2);
}

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

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

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

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

.sct-tpl-service-hub .sct-service-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-service-card-body p {
    font-size: 0.92rem;
    color: #5A4E3E;
    line-height: 1.65;
}

.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-step-card {
    background: #FFFFFF;
    border: 1px solid #D9D0C3;
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-hub .sct-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.15);
}

.sct-tpl-service-hub .sct-step-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #D4A853;
    color: #2C2418;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Playfair Display', serif;
}

.sct-tpl-service-hub .sct-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #8B6F47, #D4A853);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin: 8px auto 18px;
}

.sct-tpl-service-hub .sct-step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-step-card p {
    font-size: 0.88rem;
    color: #5A4E3E;
    line-height: 1.6;
}

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

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

.sct-tpl-service-hub .sct-why-card {
    background: #FFFFFF;
    border: 1px solid #D9D0C3;
    border-radius: 16px;
    padding: 36px 26px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-hub .sct-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.15);
}

.sct-tpl-service-hub .sct-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #8B6F47, #D4A853);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.sct-tpl-service-hub .sct-why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-why-card p {
    font-size: 0.9rem;
    color: #8A7E6E;
    line-height: 1.65;
}

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

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

.sct-tpl-service-hub .sct-usecase-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(139, 111, 71, 0.2);
}

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

.sct-tpl-service-hub .sct-usecase-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #5A4E3E;
}

.sct-tpl-service-hub .sct-usecase-text p { margin-bottom: 16px; }

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

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

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

.sct-tpl-service-hub .sct-engagement-card {
    text-align: center;
    padding: 40px 28px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #D9D0C3;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-hub .sct-engagement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.15);
}

.sct-tpl-service-hub .sct-engagement-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #8B6F47, #D4A853);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.sct-tpl-service-hub .sct-engagement-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 10px;
}

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

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

.sct-tpl-service-hub .sct-faq-item {
    background: #FFFFFF;
    border: 1px solid #D9D0C3;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
}

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

.sct-tpl-service-hub .sct-faq-question i {
    color: #8B6F47;
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

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

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

.sct-tpl-service-hub .sct-maillage-section { padding: 70px 20px; background: #FFFFFF; }

.sct-tpl-service-hub .sct-maillage-section.sct-maillage-cream { background: #F5F0E8; }

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

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

.sct-tpl-service-hub .sct-maillage-head { margin-bottom: 30px; }

.sct-tpl-service-hub .sct-maillage-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sct-tpl-service-hub .sct-maillage-title i { color: #D4A853; }

.sct-tpl-service-hub .sct-maillage-sub {
    font-size: 1rem;
    color: #8A7E6E;
    line-height: 1.65;
    max-width: 720px;
}

.sct-tpl-service-hub .sct-maillage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sct-tpl-service-hub .sct-maillage-list a {
    background: #F5F0E8;
    color: #5A4E3E;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #D9D0C3;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.sct-tpl-service-hub .sct-maillage-list a:hover {
    background: #8B6F47;
    color: #fff;
    border-color: #8B6F47;
}

.sct-tpl-service-hub .sct-maillage-cream .sct-maillage-list a { background: #FFFFFF; }

.sct-tpl-service-hub .sct-cta-final {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2C2418 0%, #6B5535 100%);
    text-align: center;
}

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

.sct-tpl-service-hub .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.25;
}

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

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

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero { padding: 130px 0 70px; }
    .sct-tpl-service-hub .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 2.3rem; }
    .sct-tpl-service-hub .sct-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-section-title { font-size: 2rem; }
    .sct-tpl-service-hub .sct-section { padding: 70px 20px; }
    .sct-tpl-service-hub .sct-maillage-title { font-size: 1.5rem; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-hub .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-service-hub .sct-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 22px; }
    .sct-tpl-service-hub .sct-hero-trust { gap: 14px; }
    .sct-tpl-service-hub .sct-stats-inner { grid-template-columns: 1fr; gap: 24px; }
    .sct-tpl-service-hub .sct-stat-number { font-size: 2.2rem; }
    .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-section-title { font-size: 1.7rem; }
    .sct-tpl-service-hub .sct-section { padding: 60px 20px; }
    .sct-tpl-service-hub .sct-maillage-section { padding: 50px 20px; }
    .sct-tpl-service-hub .sct-maillage-title { font-size: 1.4rem; }
    .sct-tpl-service-hub .sct-cta-final h2 { font-size: 1.7rem; }
    .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-faq-question { font-size: 0.95rem; padding: 18px 20px; }
    .sct-tpl-service-hub .sct-breadcrumb { font-size: 0.8rem; }
}

.sct-tpl-zone { background: #F5F0E8; }

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(44, 36, 24, 0.86) 0%, rgba(107, 85, 53, 0.7) 100%),
                url('/images/service_1_1775409723_69d29a3b89aaa.webp') center/cover no-repeat;
    color: #fff;
}

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

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

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

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

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

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

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

.sct-tpl-zone .sct-bc-current { color: #E8C97A; font-weight: 500; }

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

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 83, 0.2);
    border: 1px solid rgba(212, 168, 83, 0.4);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #E8C97A;
}

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

.sct-tpl-zone .sct-hero-text h1 span { color: #D4A853; }

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    margin-bottom: 30px;
    max-width: 580px;
}

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

.sct-tpl-zone .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #D4A853;
    color: #2C2418;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-zone .sct-btn-primary:hover {
    background: #E8C97A;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 168, 83, 0.4);
}

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

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

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

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

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

.sct-tpl-zone .sct-hero-card {
    background: rgba(255,255,255,0.97);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
    color: #2C2418;
}

.sct-tpl-zone .sct-hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 6px;
}

.sct-tpl-zone .sct-hero-card-sub {
    font-size: 0.88rem;
    color: #8A7E6E;
    margin-bottom: 22px;
}

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

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

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

.sct-tpl-zone .sct-hero-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #8B6F47, #D4A853);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-hero-card-text { min-width: 0; }

.sct-tpl-zone .sct-hero-card-text span {
    display: block;
    font-size: 0.78rem;
    color: #8A7E6E;
    font-weight: 500;
    margin-bottom: 2px;
}

.sct-tpl-zone .sct-hero-card-text strong {
    display: block;
    font-size: 0.95rem;
    color: #2C2418;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.sct-tpl-zone .sct-hero-card-cta {
    display: block;
    width: 100%;
    background: #8B6F47;
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.sct-tpl-zone .sct-hero-card-cta:hover {
    background: #6B5535;
    transform: translateY(-2px);
}

.sct-tpl-zone .sct-stats-band {
    background: #8B6F47;
    padding: 50px 20px;
}

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

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

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

.sct-tpl-zone .sct-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #D4A853;
    line-height: 1;
    margin-bottom: 8px;
    overflow-wrap: anywhere;
}

.sct-tpl-zone .sct-stat-text {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
}

.sct-tpl-zone .sct-section { padding: 90px 20px; }

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

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

.sct-tpl-zone .sct-section-bg-cream { background: #F5F0E8; }

.sct-tpl-zone .sct-section-bg-dark { background: #2C2418; color: #fff; }

.sct-tpl-zone .sct-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #D4A853;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

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

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

.sct-tpl-zone .sct-section-subtitle {
    font-size: 1.02rem;
    color: #8A7E6E;
    max-width: 680px;
    margin-bottom: 50px;
}

.sct-tpl-zone .sct-section-bg-dark .sct-section-subtitle { color: rgba(255,255,255,0.75); }

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

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

.sct-tpl-zone .sct-intro-section .sct-intro-text {
    max-width: 880px;
    font-size: 1.02rem;
    line-height: 1.85;
    color: #5A4E3E;
}

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

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

.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-zones-card {
    background: #FFFFFF;
    border: 1px solid #D9D0C3;
    border-radius: 20px;
    padding: 40px;
}

.sct-tpl-zone .sct-zones-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #8B6F47;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sct-tpl-zone .sct-zones-card h3 i { color: #D4A853; }

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

.sct-tpl-zone .sct-zones-ville {
    background: #F5F0E8;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.88rem;
    color: #5A4E3E;
    font-weight: 500;
    border: 1px solid #D9D0C3;
}

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

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

.sct-tpl-zone .sct-usecase-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(139, 111, 71, 0.2);
}

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

.sct-tpl-zone .sct-usecase-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #5A4E3E;
}

.sct-tpl-zone .sct-usecase-text p { margin-bottom: 16px; }

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

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

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

.sct-tpl-zone .sct-engagement-card {
    text-align: center;
    padding: 40px 28px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #D9D0C3;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-zone .sct-engagement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.15);
}

.sct-tpl-zone .sct-engagement-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #8B6F47, #D4A853);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.sct-tpl-zone .sct-engagement-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 10px;
}

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

.sct-tpl-zone .sct-local-spec {
    background: #F5F0E8;
    border-left: 4px solid #D4A853;
    border-radius: 10px;
    padding: 32px 36px;
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.98rem;
    line-height: 1.8;
    color: #5A4E3E;
}

.sct-tpl-zone .sct-local-spec strong { color: #2C2418; font-weight: 600; }

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

.sct-tpl-zone .sct-faq-item {
    background: #FFFFFF;
    border: 1px solid #D9D0C3;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
}

.sct-tpl-zone .sct-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2C2418;
    text-align: left;
}

.sct-tpl-zone .sct-faq-question i {
    color: #8B6F47;
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

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

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

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

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

.sct-tpl-zone .sct-maillage-head { margin-bottom: 30px; }

.sct-tpl-zone .sct-maillage-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sct-tpl-zone .sct-maillage-title i { color: #D4A853; }

.sct-tpl-zone .sct-maillage-sub {
    font-size: 1rem;
    color: #8A7E6E;
    line-height: 1.65;
    max-width: 720px;
}

.sct-tpl-zone .sct-maillage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sct-tpl-zone .sct-maillage-list a {
    background: #F5F0E8;
    color: #5A4E3E;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #D9D0C3;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.sct-tpl-zone .sct-maillage-list a:hover {
    background: #8B6F47;
    color: #fff;
    border-color: #8B6F47;
}

.sct-tpl-zone .sct-cta-final {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2C2418 0%, #6B5535 100%);
    text-align: center;
}

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

.sct-tpl-zone .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.25;
}

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

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

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero { padding: 130px 0 70px; }
    .sct-tpl-zone .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-zone .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 2.3rem; }
    .sct-tpl-zone .sct-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .sct-tpl-zone .sct-usecase-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-zone .sct-section-title { font-size: 2rem; }
    .sct-tpl-zone .sct-section { padding: 70px 20px; }
    .sct-tpl-zone .sct-maillage-title { font-size: 1.5rem; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-zone .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-zone .sct-hero-btns { flex-direction: column; }
    .sct-tpl-zone .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-hero-card { padding: 26px 22px; }
    .sct-tpl-zone .sct-hero-trust { gap: 14px; }
    .sct-tpl-zone .sct-stats-inner { grid-template-columns: 1fr; gap: 24px; }
    .sct-tpl-zone .sct-stat-number { font-size: 2.2rem; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-section-title { font-size: 1.7rem; }
    .sct-tpl-zone .sct-section { padding: 60px 20px; }
    .sct-tpl-zone .sct-zones-card { padding: 28px 22px; }
    .sct-tpl-zone .sct-local-spec { padding: 24px 22px; }
    .sct-tpl-zone .sct-maillage-section { padding: 50px 20px; }
    .sct-tpl-zone .sct-maillage-title { font-size: 1.4rem; }
    .sct-tpl-zone .sct-cta-final h2 { font-size: 1.7rem; }
    .sct-tpl-zone .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-faq-question { font-size: 0.95rem; padding: 18px 20px; }
    .sct-tpl-zone .sct-breadcrumb { font-size: 0.8rem; }
}

.sct-tpl-service-city { background: var(--bg-cream, #F5F0E8); }

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(44, 36, 24, 0.86) 0%, rgba(107, 85, 53, 0.7) 100%),
                url('/images/service_3_1775409771_69d29a6b77272.webp') center/cover no-repeat;
    color: #fff;
}

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

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

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 83, 0.2);
    border: 1px solid rgba(212, 168, 83, 0.4);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #E8C97A;
}

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

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

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

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

.sct-tpl-service-city .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #D4A853;
    color: #2C2418;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-city .sct-btn-primary:hover {
    background: #E8C97A;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 168, 83, 0.4);
}

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

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

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

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

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

.sct-tpl-service-city .sct-hero-card {
    background: rgba(255,255,255,0.97);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
    color: #2C2418;
}

.sct-tpl-service-city .sct-hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 6px;
}

.sct-tpl-service-city .sct-hero-card-sub {
    font-size: 0.88rem;
    color: #8A7E6E;
    margin-bottom: 22px;
}

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

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

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

.sct-tpl-service-city .sct-hero-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #8B6F47, #D4A853);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

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

.sct-tpl-service-city .sct-hero-card-text span {
    display: block;
    font-size: 0.78rem;
    color: #8A7E6E;
    font-weight: 500;
    margin-bottom: 2px;
}

.sct-tpl-service-city .sct-hero-card-text strong {
    display: block;
    font-size: 0.95rem;
    color: #2C2418;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.sct-tpl-service-city .sct-hero-card-cta {
    display: block;
    width: 100%;
    background: #8B6F47;
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.sct-tpl-service-city .sct-hero-card-cta:hover {
    background: #6B5535;
    transform: translateY(-2px);
}

.sct-tpl-service-city .sct-stats-band {
    background: #8B6F47;
    padding: 50px 20px;
}

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

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

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

.sct-tpl-service-city .sct-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #D4A853;
    line-height: 1;
    margin-bottom: 8px;
    overflow-wrap: anywhere;
}

.sct-tpl-service-city .sct-stat-text {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
}

.sct-tpl-service-city .sct-section { padding: 90px 20px; }

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

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

.sct-tpl-service-city .sct-section-bg-cream { background: #F5F0E8; }

.sct-tpl-service-city .sct-section-bg-dark { background: #2C2418; color: #fff; }

.sct-tpl-service-city .sct-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #D4A853;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

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

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

.sct-tpl-service-city .sct-section-subtitle {
    font-size: 1.02rem;
    color: #8A7E6E;
    max-width: 680px;
    margin-bottom: 50px;
}

.sct-tpl-service-city .sct-section-bg-dark .sct-section-subtitle { color: rgba(255,255,255,0.75); }

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

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

.sct-tpl-service-city .sct-intro-section .sct-intro-text {
    max-width: 880px;
    font-size: 1.02rem;
    line-height: 1.85;
    color: #5A4E3E;
}

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

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

.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(139, 111, 71, 0.12);
    border: 1px solid #D9D0C3;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(139, 111, 71, 0.2);
}

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

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

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

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

.sct-tpl-service-city .sct-service-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-service-card-body p {
    font-size: 0.92rem;
    color: #5A4E3E;
    line-height: 1.65;
}

.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-step-card {
    background: #FFFFFF;
    border: 1px solid #D9D0C3;
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-city .sct-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.15);
}

.sct-tpl-service-city .sct-step-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #D4A853;
    color: #2C2418;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Playfair Display', serif;
}

.sct-tpl-service-city .sct-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #8B6F47, #D4A853);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin: 8px auto 18px;
}

.sct-tpl-service-city .sct-step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-step-card p {
    font-size: 0.88rem;
    color: #5A4E3E;
    line-height: 1.6;
}

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

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

.sct-tpl-service-city .sct-why-card {
    background: #FFFFFF;
    border: 1px solid #D9D0C3;
    border-radius: 16px;
    padding: 36px 26px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-city .sct-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.15);
}

.sct-tpl-service-city .sct-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #8B6F47, #D4A853);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.sct-tpl-service-city .sct-why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 10px;
}

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

.sct-tpl-service-city .sct-zones-card {
    background: #FFFFFF;
    border: 1px solid #D9D0C3;
    border-radius: 20px;
    padding: 40px;
}

.sct-tpl-service-city .sct-zones-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #8B6F47;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sct-tpl-service-city .sct-zones-card h3 i { color: #D4A853; }

.sct-tpl-service-city .sct-zones-villes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sct-tpl-service-city .sct-zones-ville {
    background: #F5F0E8;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.88rem;
    color: #5A4E3E;
    font-weight: 500;
    border: 1px solid #D9D0C3;
}

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

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

.sct-tpl-service-city .sct-usecase-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(139, 111, 71, 0.2);
}

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

.sct-tpl-service-city .sct-usecase-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #5A4E3E;
}

.sct-tpl-service-city .sct-usecase-text p { margin-bottom: 16px; }

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

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

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

.sct-tpl-service-city .sct-engagement-card {
    text-align: center;
    padding: 40px 28px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #D9D0C3;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-city .sct-engagement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.15);
}

.sct-tpl-service-city .sct-engagement-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #8B6F47, #D4A853);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.sct-tpl-service-city .sct-engagement-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 10px;
}

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

.sct-tpl-service-city .sct-local-spec {
    background: #F5F0E8;
    border-left: 4px solid #D4A853;
    border-radius: 10px;
    padding: 32px 36px;
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.98rem;
    line-height: 1.8;
    color: #5A4E3E;
}

.sct-tpl-service-city .sct-local-spec strong { color: #2C2418; font-weight: 600; }

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

.sct-tpl-service-city .sct-faq-item {
    background: #FFFFFF;
    border: 1px solid #D9D0C3;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
}

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

.sct-tpl-service-city .sct-faq-question i {
    color: #8B6F47;
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

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

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

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

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

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

.sct-tpl-service-city .sct-maillage-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C2418;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sct-tpl-service-city .sct-maillage-title i { color: #D4A853; }

.sct-tpl-service-city .sct-maillage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sct-tpl-service-city .sct-maillage-list a {
    background: #F5F0E8;
    color: #5A4E3E;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #D9D0C3;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

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

.sct-tpl-service-city .sct-cta-final {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2C2418 0%, #6B5535 100%);
    text-align: center;
}

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

.sct-tpl-service-city .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.25;
}

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

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

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero { padding: 130px 0 70px; }
    .sct-tpl-service-city .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-city .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 2.3rem; }
    .sct-tpl-service-city .sct-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .sct-tpl-service-city .sct-usecase-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-city .sct-section-title { font-size: 2rem; }
    .sct-tpl-service-city .sct-section { padding: 70px 20px; }
}

@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: 26px 22px; }
    .sct-tpl-service-city .sct-hero-trust { gap: 14px; }
    .sct-tpl-service-city .sct-stats-inner { grid-template-columns: 1fr; gap: 24px; }
    .sct-tpl-service-city .sct-stat-number { font-size: 2.2rem; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-section-title { font-size: 1.7rem; }
    .sct-tpl-service-city .sct-section { padding: 60px 20px; }
    .sct-tpl-service-city .sct-zones-card { padding: 28px 22px; }
    .sct-tpl-service-city .sct-local-spec { padding: 24px 22px; }
    .sct-tpl-service-city .sct-cta-final h2 { font-size: 1.7rem; }
    .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-faq-question { font-size: 0.95rem; padding: 18px 20px; }
    .sct-tpl-service-city .sct-breadcrumb { font-size: 0.8rem; }
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(44, 36, 24, 0.86) 0%, rgba(107, 85, 53, 0.7) 100%),
                url('/images/service_2_1775409749_69d29a55a0746.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(44, 36, 24, 0.86) 0%, rgba(107, 85, 53, 0.7) 100%),
                url('/images/service_1_1775409723_69d29a3b89aaa.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(44, 36, 24, 0.86) 0%, rgba(107, 85, 53, 0.7) 100%),
                url('/images/service_6_1775409867_69d29acbb18a9.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(44, 36, 24, 0.86) 0%, rgba(107, 85, 53, 0.7) 100%),
                url('/images/service_2_1775409749_69d29a55a0746.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(44, 36, 24, 0.86) 0%, rgba(107, 85, 53, 0.7) 100%),
                url('/images/service_1_1775409723_69d29a3b89aaa.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(44, 36, 24, 0.86) 0%, rgba(107, 85, 53, 0.7) 100%),
                url('/images/service_5_1775409846_69d29ab646e18.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(44, 36, 24, 0.86) 0%, rgba(107, 85, 53, 0.7) 100%),
                url('/images/service_2_1775409749_69d29a55a0746.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(44, 36, 24, 0.86) 0%, rgba(107, 85, 53, 0.7) 100%),
                url('/images/service_4_1775409793_69d29a81ab292.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(44, 36, 24, 0.86) 0%, rgba(107, 85, 53, 0.7) 100%),
                url('/images/service_3_1775409771_69d29a6b77272.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(44, 36, 24, 0.86) 0%, rgba(107, 85, 53, 0.7) 100%),
                url('/images/service_4_1775409793_69d29a81ab292.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(44, 36, 24, 0.86) 0%, rgba(107, 85, 53, 0.7) 100%),
                url('/images/service_6_1775409867_69d29acbb18a9.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(44, 36, 24, 0.86) 0%, rgba(107, 85, 53, 0.7) 100%),
                url('/images/service_4_1775409793_69d29a81ab292.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(44, 36, 24, 0.86) 0%, rgba(107, 85, 53, 0.7) 100%),
                url('/images/service_5_1775409846_69d29ab646e18.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, rgba(44, 36, 24, 0.86) 0%, rgba(107, 85, 53, 0.7) 100%),
                url('/images/service_6_1775409867_69d29acbb18a9.webp') center/cover no-repeat;
    color: #fff;
}

@media(max-width:768px){
    .nav{
        display:none;
        position:absolute;
        top:75px;
        left:0;
        right:0;
        background:rgba(255,255,255,0.98);
        backdrop-filter:blur(12px);
        flex-direction:column;
        padding:20px;
        gap:8px;
        box-shadow:0 8px 20px var(--shadow);
    }
    .nav a{
        width:100%;
        text-align:center;
        padding:12px;
    }
    .nav .btn-cta-nav{
        margin-left:0;
        margin-top:8px;
    }
}

.page-hero {
    position: relative;
    padding: 160px 20px 80px;
    background: linear-gradient(135deg, rgba(44, 36, 24, 0.88) 0%, rgba(107, 85, 53, 0.7) 100%),
                url('https://webflash.pro/images/hero_1775409702_69d29a26a03f2.webp') center/cover no-repeat;
    text-align: center;
    color: #fff;
}

.page-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 83, 0.2);
    border: 1px solid rgba(212, 168, 83, 0.4);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--secondary-light);
    margin-bottom: 24px;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff;
}

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

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

@media (max-width: 768px) {
    .page-hero {
        padding: 130px 20px 60px;
    }
    .page-hero h1 {
        font-size: 2.2rem;
    }
    .page-hero p {
        font-size: 1rem;
    }
}

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

.sitemap-section:nth-child(even) {
    background: var(--bg-white);
}

.sitemap-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.sitemap-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.sitemap-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.sitemap-section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 600px;
}

.chips-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 8px var(--shadow);
}

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

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

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

.sitemap-section:nth-child(even) .chip {
    background: var(--bg-cream);
}

.sitemap-section:nth-child(even) .chip:hover {
    background: var(--primary);
}

.chip-home {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-color: transparent;
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 600;
}

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

.chip-home:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
}

.chip-home:hover i {
    color: var(--secondary-light);
}

.subcategory {
    margin-bottom: 36px;
}

.subcategory:last-child {
    margin-bottom: 0;
}

.subcategory-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

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

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    max-width: 1100px;
    margin: 0 auto;
}

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

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

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

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

.footer-col-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

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

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .sitemap-section {
        padding: 50px 20px;
    }
    .sitemap-section-title {
        font-size: 1.6rem;
    }
}