:root {
            --primary: #2D5016;
            --primary-dark: #1E3A0E;
            --primary-light: #3D6B1E;
            --secondary: #D4A843;
            --secondary-light: #E8C56E;
            --secondary-dark: #B8912E;
            --dark: #1A1A1A;
            --dark-soft: #2C2C2C;
            --light: #FAFAF5;
            --light-warm: #F5F0E6;
            --gray: #6B7280;
            --gray-light: #E5E7EB;
            --white: #FFFFFF;
            --danger: #DC2626;
            --danger-dark: #B91C1C;
            --shadow: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
            --radius: 12px;
            --radius-lg: 20px;
        }

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

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

body {
            font-family: 'Outfit', sans-serif;
            color: var(--dark);
            background: var(--white);
            line-height: 1.7;
            overflow-x: hidden;
        }

.urgency-banner {
            background: linear-gradient(135deg, var(--danger), var(--danger-dark));
            color: var(--white);
            text-align: center;
            padding: 10px 20px;
            font-size: 0.9rem;
            font-weight: 600;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

.urgency-banner .pulse-dot {
            width: 10px;
            height: 10px;
            background: var(--white);
            border-radius: 50%;
            animation: pulse 1.5s ease-in-out infinite;
        }

.urgency-banner a {
            color: var(--white);
            text-decoration: none;
            font-weight: 700;
        }

.urgency-banner a:hover { text-decoration: underline; }

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

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

.header.scrolled {
            box-shadow: 0 4px 30px rgba(0,0,0,0.1);
        }

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

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

.logo-area img {
            height: 48px;
            width: auto;
            border-radius: 8px;
        }

.logo-text {
            display: flex;
            flex-direction: column;
        }

.logo-text .name {
            font-family: 'Playfair Display', serif;
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
        }

.logo-text .tagline {
            font-size: 0.72rem;
            color: var(--secondary-dark);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

.nav-desktop {
            display: none;
            align-items: center;
            gap: 32px;
        }

.nav-desktop a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 0.92rem;
            position: relative;
            transition: color 0.3s;
        }

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

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

.nav-desktop a:hover::after { width: 100%; }

.nav-cta {
            background: var(--primary) !important;
            color: var(--white) !important;
            padding: 10px 22px !important;
            border-radius: 50px !important;
            font-weight: 600 !important;
            transition: all 0.3s !important;
        }

.nav-cta:hover {
            background: var(--primary-dark) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(45,80,22,0.3);
        }

.nav-cta::after { display: none !important; }

.burger {
            display: flex;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 1003;
        }

.burger span {
            width: 26px;
            height: 2.5px;
            background: var(--primary);
            border-radius: 2px;
            transition: all 0.3s;
        }

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

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

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

.nav-mobile {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: var(--white);
            z-index: 1002;
            padding: 100px 30px 30px;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        }

.nav-mobile.open { right: 0; }

.nav-mobile a {
            display: block;
            padding: 14px 0;
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 1.05rem;
            border-bottom: 1px solid var(--gray-light);
            transition: color 0.3s;
        }

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

.nav-mobile .mobile-cta {
            display: block;
            text-align: center;
            margin-top: 24px;
            background: var(--primary);
            color: var(--white);
            padding: 14px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
        }

.nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.4);
            z-index: 1001;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

.nav-overlay.active { opacity: 1; pointer-events: all; }

.hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding-top: 112px;
        }

.hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

.hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(30, 58, 14, 0.88) 0%,
                rgba(45, 80, 22, 0.75) 40%,
                rgba(45, 80, 22, 0.6) 100%
            );
        }

.hero-trees {
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            z-index: 1;
            height: 120px;
            width:100%;
        }

.hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 40px 24px;
        }

.hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(212, 168, 67, 0.2);
            border: 1px solid rgba(212, 168, 67, 0.5);
            padding: 8px 20px;
            border-radius: 50px;
            color: var(--secondary-light);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
        }

.hero-badge i { font-size: 0.8rem; }

.hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            color: var(--white);
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 10px;
        }

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

.hero-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: rgba(255,255,255,0.9);
            font-weight: 300;
            margin-bottom: 5px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

.hero-subtitle2 {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: rgba(255,255,255,0.9);
            font-weight: 300;
            margin-bottom: 36px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

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

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

.btn-primary {
            background: var(--secondary);
            color: var(--dark);
        }

.btn-primary:hover {
            background: var(--secondary-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 168, 67, 0.4);
        }

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

.btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--white);
            transform: translateY(-3px);
        }

.btn-green {
            background: var(--primary);
            color: var(--white);
        }

.btn-green:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(45,80,22,0.4);
        }

.trust-bar {
            background: var(--primary);
            padding: 0;
            position: relative;
        }

.trust-bar-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
        }

.trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 28px 16px;
            text-align: center;
            border-right: 1px solid rgba(255,255,255,0.1);
            transition: background 0.3s;
        }

.trust-item:last-child { border-right: none; }

.trust-item:hover { background: rgba(255,255,255,0.05); }

.trust-item i {
            font-size: 1.6rem;
            color: var(--secondary);
            margin-bottom: 8px;
        }

.trust-item .trust-value {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.2;
        }

.trust-item .trust-label {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.7);
            font-weight: 400;
            margin-top: 2px;
        }

.section {
            padding: 90px 24px;
        }

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

.section-header {
            text-align: center;
            margin-bottom: 56px;
        }

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

.section-header .overline::before,
        .section-header .overline::after {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--secondary);
        }

.section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 14px;
            line-height: 1.2;
        }

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

.tree-separator {
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

.tree-separator svg { display: block; width: 100%; }

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

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

.service-card {
            width: calc(50% - 14px);
            max-width: 540px;
            perspective: 1000px;
            min-height: 380px;
        }

.service-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 380px;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
        }

.service-card:hover .service-card-inner {
            transform: rotateY(180deg);
        }

.service-front, .service-back {
            position: absolute;
            inset: 0;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            border-radius: var(--radius-lg);
            overflow: hidden;
        }

.service-front {
            background: var(--white);
            box-shadow: var(--shadow);
        }

.service-front-img {
            height: 200px;
            overflow: hidden;
        }

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

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

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

.service-front-body h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.08rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 8px;
            line-height: 1.35;
        }

.service-front-body .service-hint {
            font-size: 0.85rem;
            color: var(--gray);
            display: flex;
            align-items: center;
            gap: 6px;
        }

.service-back {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            transform: rotateY(180deg);
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: var(--white);
        }

.service-back h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 16px;
            line-height: 1.35;
        }

.service-back p {
            font-size: 0.92rem;
            line-height: 1.7;
            color: rgba(255,255,255,0.9);
            margin-bottom: 20px;
        }

.service-back .btn-service {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--secondary);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: gap 0.3s;
        }

.service-back .btn-service:hover { gap: 14px; }

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

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

.about-image {
            position: relative;
        }

.about-image img {
            width: 100%;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            object-fit: cover;
            max-height: 500px;
        }

.about-image .experience-badge {
            position: absolute;
            bottom: -16px;
            right: -8px;
            background: var(--secondary);
            color: var(--dark);
            padding: 16px 24px;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow-lg);
        }

.experience-badge .years {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 900;
            line-height: 1;
        }

.experience-badge .label {
            font-size: 0.72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.about-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

.about-content h2 span { color: var(--secondary-dark); }

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

.about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 28px;
        }

.about-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

.about-feature i {
            color: var(--primary);
            font-size: 1.1rem;
            margin-top: 3px;
            flex-shrink: 0;
        }

.about-feature span {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--dark);
        }

.about-assurance {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 24px;
            background: var(--light-warm);
            padding: 12px 20px;
            border-radius: 50px;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--primary-dark);
            border: 1px solid rgba(45,80,22,0.1);
        }

.about-assurance i { color: var(--secondary-dark); }

.why-section { background: var(--light); }

.why-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

.why-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px 24px;
            display: flex;
            align-items: flex-start;
            gap: 18px;
            box-shadow: var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
        }

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

.why-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

.why-icon i { color: var(--white); font-size: 1.2rem; }

.why-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 4px;
        }

.why-text p {
            font-size: 0.88rem;
            color: var(--gray);
        }

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

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

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

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

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

.gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(30,58,14,0.7), transparent);
            opacity: 0;
            transition: opacity 0.3s;
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }

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

.gallery-overlay i {
            color: var(--white);
            font-size: 1.6rem;
            margin-left: auto;
            margin-bottom: 0;
            background: rgba(255,255,255,0.2);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

.lightbox.active { display: flex; }

.lightbox img {
            max-width: 90%;
            max-height: 85vh;
            border-radius: var(--radius);
            object-fit: contain;
        }

.lightbox-close {
            position: absolute;
            top: 24px;
            right: 24px;
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            border: none;
            transition: background 0.3s;
        }

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            border: none;
            transition: background 0.3s;
        }

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

.lightbox-prev { left: 24px; }

.lightbox-next { right: 24px; }

.zone-section { background: var(--light); }

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

.zone-cities {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

.zone-chip {
            background: var(--white);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--primary-dark);
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            border: 1px solid rgba(45,80,22,0.1);
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

.zone-chip:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
            text-decoration: none;
        }

.zone-depts {
            text-align: center;
            margin-top: 20px;
            color: var(--gray);
            font-size: 0.9rem;
        }

.zone-depts strong { color: var(--primary-dark); }

.zone-map {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

.zone-map iframe {
            display: block;
            border-radius: var(--radius-lg);
        }

.horaires-section {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: var(--white);
        }

.horaires-section .section-header .overline { color: var(--secondary); }

.horaires-section .section-header .overline::before,
        .horaires-section .section-header .overline::after { background: var(--secondary); }

.horaires-section .section-header h2 { color: var(--white); }

.horaires-section .section-header p { color: rgba(255,255,255,0.7); }

.horaires-card {
            max-width: 550px;
            margin: 0 auto;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            backdrop-filter: blur(10px);
        }

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

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

.horaire-row .day {
            font-weight: 500;
            font-size: 0.95rem;
        }

.horaire-row .hours {
            background: rgba(212, 168, 67, 0.2);
            padding: 4px 14px;
            border-radius: 50px;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--secondary-light);
        }

.horaires-urgence {
            text-align: center;
            margin-top: 28px;
            padding: 20px;
            background: rgba(220, 38, 38, 0.15);
            border: 1px solid rgba(220, 38, 38, 0.3);
            border-radius: var(--radius);
        }

.horaires-urgence i { color: #FCA5A5; margin-right: 8px; }

.horaires-urgence p { font-size: 0.92rem; color: rgba(255,255,255,0.9); }

.horaires-urgence strong { color: var(--white); }

.horaires-urgence a { color: var(--secondary); text-decoration: none; font-weight: 700; }

.horaires-urgence a:hover { text-decoration: underline; }

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

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

.contact-info-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            margin-bottom: 20px;
        }

.contact-info-card {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--white);
            padding: 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }

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

.contact-info-card .icon-wrap {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

.contact-info-card .icon-wrap i { color: var(--white); font-size: 1.1rem; }

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

.contact-info-card .info-text span {
            font-weight: 600;
            color: var(--dark);
            font-size: 0.95rem;
        }

.contact-info-card .info-text a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

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

.contact-form-wrap {
            background: var(--white);
            padding: 36px 28px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
        }

.contact-form-wrap h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 24px;
        }

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

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

.form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--gray-light);
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: 'Outfit', sans-serif;
            transition: border-color 0.3s, box-shadow 0.3s;
            background: var(--light);
        }

.form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(45,80,22,0.1);
            background: var(--white);
        }

.form-group textarea { resize: vertical; }

.contact-form-wrap button[type="submit"] {
            width: 100%;
            padding: 14px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            font-family: 'Outfit', sans-serif;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

.contact-form-wrap button[type="submit"]:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(45,80,22,0.3);
        }

#formStatus { margin-top: 12px; text-align: center; }

.contact-map {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            margin-top: 24px;
        }

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

.footer-inner {
            max-width: 1180px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 36px;
            padding-bottom: 40px;
        }

.footer-brand .name {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 12px;
        }

.footer-brand p {
            font-size: 0.88rem;
            line-height: 1.7;
            margin-bottom: 16px;
        }

.footer-brand .footer-assurance {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.06);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--secondary);
        }

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

.footer-links a {
            display: block;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.88rem;
            padding: 5px 0;
            transition: color 0.3s;
        }

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

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

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

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

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

.footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 20px 24px;
            text-align: center;
        }

.footer-bottom-inner {
            max-width: 1180px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px 24px;
            font-size: 0.82rem;
        }

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

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

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

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

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

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

.modal-close:hover { background: var(--gray-light); color: var(--dark); }

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

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

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

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

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

.back-to-top {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 48px;
            height: 48px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s;
            z-index: 900;
            box-shadow: 0 4px 15px rgba(45,80,22,0.3);
        }

.back-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

.back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }

@media (min-width: 640px) {
            .gallery-grid { grid-template-columns: repeat(3, 1fr); }
            .contact-info-cards { grid-template-columns: 1fr 1fr; }
            .why-grid { grid-template-columns: 1fr 1fr; }
        }

@media (min-width: 768px) {
            .nav-desktop { display: flex; }
            .burger { display: none; }
            .about-grid { grid-template-columns: 1fr 1fr; }
            .contact-grid { grid-template-columns: 1fr 1fr; }
            .footer-inner { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
            .zone-content { grid-template-columns: 1fr 1fr; }
        }

@media (min-width: 1024px) {
            .section { padding: 110px 24px; }
            .service-card { width: calc(50% - 14px); }
            .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
            .trust-bar-inner { grid-template-columns: repeat(4, 1fr); }
            .why-grid { grid-template-columns: repeat(4, 1fr); }
        }

@media (max-width: 767px) {
            .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
            .trust-item { padding: 18px 12px; }
            .trust-item .trust-value { font-size: 1.2rem; }
            .service-card { width: 100%; }
            .service-card-inner { min-height: 350px; }
            .about-features { grid-template-columns: 1fr; }
            .horaires-card { padding: 24px 20px; }
            .contact-form-wrap { padding: 28px 20px; }
            .footer-inner { text-align: center; }
        }

@media (max-width: 639px) {
            .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .hero h1 { font-size: 1.9rem; }
            .urgency-banner { font-size: 0.78rem; padding: 8px 12px; }
            .urgency-banner span.urgency-text-long { display: none; }
            .urgency-banner span.urgency-text-short { display: inline; }
        }

@media (min-width: 640px) {
            .urgency-banner span.urgency-text-short { display: none; }
        }

@media (max-width: 639px) {
            .urgency-banner span.urgency-text-long { display: none; }
        }

@media (min-width: 640px) {
            .urgency-banner span.urgency-text-long { display: inline; }
        }

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

.urgency-banner {
            background: linear-gradient(135deg, var(--danger), var(--danger-dark));
            color: var(--white);
            text-align: center;
            padding: 8px 14px;
            font-size: 0.82rem;
            font-weight: 600;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 3px;
            line-height: 1.3;
            min-height: 56px;
            box-sizing: border-box;
        }

.urgency-banner .urgency-line {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

.urgency-banner .urgency-line.primary {
            font-weight: 700;
            letter-spacing: 0.2px;
        }

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

.hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding-top: 132px;
        }

.service-card:hover .service-card-inner,
        .service-card:focus-within .service-card-inner,
        .service-card.flipped .service-card-inner {
            transform: rotateY(180deg);
        }

@media (max-width: 767px) {
            .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
            .trust-item { padding: 18px 12px; }
            .trust-item .trust-value { font-size: 1.2rem; }

            
            .services-grid { gap: 20px; }
            .service-card {
                width: 100%;
                min-height: 0;
                perspective: none;
                border-radius: var(--radius-lg);
                overflow: hidden;
                background: var(--white);
                box-shadow: var(--shadow) !important;
            }
            .service-card-inner {
                position: static;
                min-height: 0;
                height: auto;
                transform: none !important;
                transform-style: flat;
                transition: none;
            }
            .service-card:hover .service-card-inner,
            .service-card:focus-within .service-card-inner,
            .service-card.flipped .service-card-inner {
                transform: none !important;
            }
            .service-front, .service-back {
                position: relative;
                inset: auto;
                backface-visibility: visible;
                -webkit-backface-visibility: visible;
                transform: none !important;
                border-radius: 0;
                box-shadow: none;
            }
            .service-front-body { padding: 18px 20px 20px; }
            .service-front-body .service-hint { display: none; }
            .service-front-body h3 { font-size: 1.05rem !important; }
            .service-back {
                padding: 22px 20px 24px;
            }
            .service-back h3 {
                font-size: 0.98rem;
                margin-bottom: 12px;
            }
            .service-back p {
                font-size: 0.9rem;
                margin-bottom: 14px;
            }

            .about-features { grid-template-columns: 1fr; }
            .horaires-card { padding: 24px 20px; }
            .contact-form-wrap { padding: 28px 20px; }
            .footer-inner { text-align: center; }
        }

@media (max-width: 639px) {
            .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .hero h1 { font-size: 1.9rem; }
            .urgency-banner {
                font-size: 0.74rem;
                padding: 6px 10px;
                gap: 2px;
                min-height: 50px;
            }
            .urgency-banner .urgency-line { gap: 8px; }
            .urgency-banner .urgency-line.primary { font-size: 0.78rem; }
            .header { top: 50px; }
            .hero { padding-top: 126px; }
        }

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-city {
    font-family: 'Outfit', sans-serif;
    color: #1A1A1A;
    line-height: 1.7;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(30,58,14,0.92) 0%, rgba(45,80,22,0.85) 100%), url('/images/service_2_1770861271_698d32d7f3088.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 130px 0 60px; }
}

.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;
    font-size: 0.85rem;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.85);
}

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

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

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

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

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

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(212,168,67,0.2);
    border: 1px solid rgba(212,168,67,0.5);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #E8C56E;
}

.sct-tpl-service-city .sct-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #fff;
}

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

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,0.92);
    font-weight: 300;
    margin-bottom: 28px;
    max-width: 580px;
}

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

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

.sct-tpl-service-city .sct-btn-primary {
    background: #D4A843;
    color: #1A1A1A;
}

.sct-tpl-service-city .sct-btn-primary:hover {
    background: #E8C56E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212,168,67,0.4);
}

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

.sct-tpl-service-city .sct-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

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

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

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

.sct-tpl-service-city .sct-hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.sct-tpl-service-city .sct-hero-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #D4A843;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.sct-tpl-service-city .sct-hero-card-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.92);
}

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

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-stat-item {
    text-align: center;
    padding: 32px 16px;
    border-right: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

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

.sct-tpl-service-city .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 900;
    color: #D4A843;
    line-height: 1.1;
}

.sct-tpl-service-city .sct-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    margin-top: 6px;
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-stat-item:nth-child(2) { border-right: none; }
    .sct-tpl-service-city .sct-stat-item:nth-child(1),
    .sct-tpl-service-city .sct-stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
}

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

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

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

.sct-tpl-service-city .sct-section-tag::before,
.sct-tpl-service-city .sct-section-tag::after {
    content: '';
    width: 28px;
    height: 2px;
    background: #D4A843;
}

.sct-tpl-service-city .sct-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 800;
    color: #1E3A0E;
    line-height: 1.2;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-section-subtitle {
    color: #6B7280;
    font-size: 1rem;
}

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

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

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

.sct-tpl-service-city .sct-intro-content p strong { color: #1E3A0E; font-weight: 600; }

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

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

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

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

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

.sct-tpl-service-city .sct-service-card-img {
    height: 200px;
    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: 24px; }

.sct-tpl-service-city .sct-service-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1E3A0E;
    margin-bottom: 10px;
    line-height: 1.3;
}

.sct-tpl-service-city .sct-service-card-body p {
    font-size: 0.92rem;
    color: #6B7280;
    line-height: 1.7;
}

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

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

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

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

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

.sct-tpl-service-city .sct-processus-step {
    text-align: center;
    padding: 24px 16px;
    position: relative;
}

.sct-tpl-service-city .sct-processus-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2D5016, #3D6B1E);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A843;
    font-size: 1.3rem;
    position: relative;
}

.sct-tpl-service-city .sct-processus-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: #D4A843;
    color: #1A1A1A;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

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

.sct-tpl-service-city .sct-processus-step p {
    font-size: 0.85rem;
    color: #6B7280;
    line-height: 1.6;
}

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

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

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

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

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

.sct-tpl-service-city .sct-why-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    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(0,0,0,0.1);
}

.sct-tpl-service-city .sct-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2D5016, #3D6B1E);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sct-tpl-service-city .sct-why-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1E3A0E;
    margin-bottom: 6px;
}

.sct-tpl-service-city .sct-why-text p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.6;
}

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

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

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

.sct-tpl-service-city .sct-zone-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #F5F0E6;
    border: 1px solid rgba(45,80,22,0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1E3A0E;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-zone-chip:hover {
    background: #2D5016;
    color: #fff;
    border-color: #2D5016;
}

.sct-tpl-service-city .sct-zone-chip i { color: #D4A843; }

.sct-tpl-service-city .sct-zone-chip:hover i { color: #D4A843; }

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

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

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

.sct-tpl-service-city .sct-usecase-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    max-height: 460px;
    object-fit: cover;
}

.sct-tpl-service-city .sct-usecase-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: #1E3A0E;
    margin-bottom: 18px;
    line-height: 1.25;
}

.sct-tpl-service-city .sct-usecase-content p {
    color: #3d3d3d;
    margin-bottom: 14px;
    font-size: 0.98rem;
    line-height: 1.75;
}

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

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

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

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

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

.sct-tpl-service-city .sct-engagement-card {
    background: linear-gradient(135deg, #FAFAF5, #F5F0E6);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(45,80,22,0.08);
    transition: transform 0.3s;
}

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

.sct-tpl-service-city .sct-engagement-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: #2D5016;
    color: #D4A843;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

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

.sct-tpl-service-city .sct-engagement-card p {
    font-size: 0.92rem;
    color: #6B7280;
    line-height: 1.7;
}

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

.sct-tpl-service-city .sct-local-spec {
    background: #2D5016;
    color: #fff;
    padding: 60px 0;
}

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

.sct-tpl-service-city .sct-local-spec h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    color: #D4A843;
    margin-bottom: 16px;
    font-weight: 800;
}

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

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

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

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

.sct-tpl-service-city .sct-faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    color: #1E3A0E;
    font-size: 1rem;
    transition: background 0.3s;
}

.sct-tpl-service-city .sct-faq-question:hover { background: #FAFAF5; }

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

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

.sct-tpl-service-city .sct-faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: #6B7280;
    line-height: 1.75;
    font-size: 0.95rem;
}

.sct-tpl-service-city .sct-faq-item.active .sct-faq-answer {
    max-height: 500px;
    padding: 0 24px 22px;
}

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

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

.sct-tpl-service-city .sct-maillage-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1E3A0E;
    text-align: center;
    margin-bottom: 24px;
}

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

.sct-tpl-service-city .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: #fff;
    border: 1px solid rgba(45,80,22,0.15);
    border-radius: 50px;
    font-size: 0.88rem;
    color: #1E3A0E;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-maillage-list a:hover {
    background: #2D5016;
    color: #fff;
    border-color: #2D5016;
    transform: translateY(-2px);
}

.sct-tpl-service-city .sct-cta-final {
    background: linear-gradient(135deg, #1E3A0E, #2D5016);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-city .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212,168,67,0.12) 0%, transparent 50%);
}

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

.sct-tpl-service-city .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.sct-tpl-service-city .sct-cta-final h2 span { color: #D4A843; }

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

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

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

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(30,58,14,0.92) 0%, rgba(45,80,22,0.85) 100%), url('/images/service_1_1770861250_698d32c297fe3.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(30,58,14,0.92) 0%, rgba(45,80,22,0.85) 100%), url('/images/service_4_1770861316_698d3304eca9c.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-breadcrumb-bar {
    background: var(--light-warm, #F5F0E6);
    padding: 120px 0 20px;
    border-bottom: 1px solid rgba(45,80,22,0.08);
}

.sct-tpl-service-hub .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.88rem;
    color: var(--gray, #6B7280);
}

.sct-tpl-service-hub .sct-breadcrumb a {
    color: var(--primary, #2D5016);
    text-decoration: none;
    font-weight: 500;
}

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

.sct-tpl-service-hub .sct-breadcrumb i { font-size: 0.7rem; color: var(--gray, #6B7280); }

.sct-tpl-service-hub .sct-breadcrumb span[aria-current="page"] { color: var(--dark, #1A1A1A); font-weight: 600; }

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 60px 0 90px;
    background: linear-gradient(135deg, #1E3A0E 0%, #2D5016 100%);
    overflow: hidden;
}

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

.sct-tpl-service-hub .sct-hero-inner {
    position: relative;
    z-index: 1;
}

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

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

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

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, 0.2);
    border: 1px solid rgba(212, 168, 67, 0.5);
    padding: 8px 20px;
    border-radius: 50px;
    color: #E8C56E;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.sct-tpl-service-hub .sct-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    color: #fff;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
}

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

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

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

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

.sct-tpl-service-hub .sct-btn-primary {
    background: #D4A843;
    color: #1A1A1A;
}

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: #E8C56E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212,168,67,0.4);
}

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

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

.sct-tpl-service-hub .sct-hero-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 32px 28px;
    color: #fff;
}

.sct-tpl-service-hub .sct-hero-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #D4A843;
    margin-bottom: 18px;
}

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

.sct-tpl-service-hub .sct-hero-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.94rem;
}

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

.sct-tpl-service-hub .sct-hero-card ul li i { color: #D4A843; }

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

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

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

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

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

.sct-tpl-service-hub .sct-stat-item i {
    font-size: 1.7rem;
    color: #D4A843;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.sct-tpl-service-hub .sct-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    margin-top: 4px;
}

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

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

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

.sct-tpl-service-hub .sct-section-tag::before,
.sct-tpl-service-hub .sct-section-tag::after {
    content: '';
    width: 30px;
    height: 2px;
    background: #D4A843;
}

.sct-tpl-service-hub .sct-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color: #1E3A0E;
    margin-bottom: 14px;
    line-height: 1.2;
}

.sct-tpl-service-hub .sct-section-intro {
    color: #6B7280;
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto;
}

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

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

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

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

.sct-tpl-service-hub .sct-intro-content strong { color: #1E3A0E; font-weight: 600; }

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

.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-prestation-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.sct-tpl-service-hub .sct-prestation-img {
    height: 220px;
    overflow: hidden;
}

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

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

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

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

.sct-tpl-service-hub .sct-prestation-body p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.7;
}

.sct-tpl-service-hub .sct-processus-section { background: #F5F0E6; }

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

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

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

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

.sct-tpl-service-hub .sct-step-number {
    counter-increment: step;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2D5016, #3D6B1E);
    color: #D4A843;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.sct-tpl-service-hub .sct-step-number::before { content: counter(step); }

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

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

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

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

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

.sct-tpl-service-hub .sct-why-card {
    background: #FAFAF5;
    border-radius: 16px;
    padding: 30px 26px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(45,80,22,0.06);
}

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

.sct-tpl-service-hub .sct-why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2D5016, #3D6B1E);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-why-icon i { color: #D4A843; font-size: 1.3rem; }

.sct-tpl-service-hub .sct-why-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1E3A0E;
    margin-bottom: 8px;
}

.sct-tpl-service-hub .sct-why-text p {
    color: #6B7280;
    font-size: 0.93rem;
    line-height: 1.7;
}

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

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

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

.sct-tpl-service-hub .sct-usecase-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    max-height: 520px;
    object-fit: cover;
}

.sct-tpl-service-hub .sct-usecase-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: #1E3A0E;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sct-tpl-service-hub .sct-usecase-content h2 span { color: #B8912E; }

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

.sct-tpl-service-hub .sct-usecase-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(45,80,22,0.12);
    font-size: 0.97rem;
    color: #2C2C2C;
    line-height: 1.6;
}

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

.sct-tpl-service-hub .sct-usecase-list li i {
    color: #2D5016;
    margin-top: 4px;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-usecase-list li strong { color: #1E3A0E; }

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

.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: 36px 26px;
    background: linear-gradient(135deg, #FAFAF5, #F5F0E6);
    border-radius: 20px;
    border: 1px solid rgba(45,80,22,0.08);
    transition: transform 0.3s;
}

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

.sct-tpl-service-hub .sct-engagement-icon {
    width: 72px;
    height: 72px;
    background: #D4A843;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sct-tpl-service-hub .sct-engagement-icon i { color: #1A1A1A; font-size: 1.6rem; }

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

.sct-tpl-service-hub .sct-engagement-card p {
    color: #6B7280;
    font-size: 0.94rem;
    line-height: 1.7;
}

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

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

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

.sct-tpl-service-hub .sct-faq-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }

.sct-tpl-service-hub .sct-faq-question {
    padding: 22px 26px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1E3A0E;
    gap: 16px;
}

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

.sct-tpl-service-hub .sct-faq-item.open .sct-faq-question i { transform: rotate(45deg); }

.sct-tpl-service-hub .sct-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 26px;
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.75;
}

.sct-tpl-service-hub .sct-faq-item.open .sct-faq-answer {
    max-height: 400px;
    padding: 0 26px 22px;
}

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

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

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

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

.sct-tpl-service-hub .sct-city-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid rgba(45,80,22,0.1);
    border-radius: 12px;
    color: #1E3A0E;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.93rem;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-maillage-alt .sct-city-link { background: #FAFAF5; }

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

.sct-tpl-service-hub .sct-city-link i {
    color: #D4A843;
    font-size: 0.85rem;
}

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

.sct-tpl-service-hub .sct-other-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.sct-tpl-service-hub .sct-other-service-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(45,80,22,0.1);
    color: #1E3A0E;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.sct-tpl-service-hub .sct-other-service-link:hover {
    background: #2D5016;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45,80,22,0.2);
}

.sct-tpl-service-hub .sct-other-service-link i {
    color: #D4A843;
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.sct-tpl-service-hub .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("/images/service_1_1770861250_698d32c297fe3.webp");
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

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

.sct-tpl-service-hub .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: #fff;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.sct-tpl-service-hub .sct-cta-final h2 span { color: #D4A843; }

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

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

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero-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-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-stat-item:nth-child(2) { border-right: none; }
    .sct-tpl-service-hub .sct-stat-item:nth-child(1),
    .sct-tpl-service-hub .sct-stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .sct-tpl-service-hub .sct-maillage-cities { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-other-services { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-section { padding: 70px 0; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-breadcrumb-bar { padding: 110px 0 16px; }
    .sct-tpl-service-hub .sct-hero { padding: 40px 0 70px; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-hub .sct-hero-subtitle { font-size: 0.98rem; }
    .sct-tpl-service-hub .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-hero-card { padding: 24px 22px; }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-maillage-cities { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-other-services { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-section { padding: 60px 0; }
    .sct-tpl-service-hub .sct-stat-item { padding: 22px 10px; }
    .sct-tpl-service-hub .sct-stat-value { font-size: 1.4rem; }
    .sct-tpl-service-hub .sct-faq-question { font-size: 0.98rem; padding: 18px 20px; }
    .sct-tpl-service-hub .sct-faq-answer { padding: 0 20px; font-size: 0.9rem; }
    .sct-tpl-service-hub .sct-faq-item.open .sct-faq-answer { padding: 0 20px 18px; }
}

.sct-tpl-zone .sct-breadcrumb-wrap {
    padding: 130px 0 20px;
    background: var(--light-warm);
}

.sct-tpl-zone .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.88rem;
    color: var(--gray);
}

.sct-tpl-zone .sct-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

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

.sct-tpl-zone .sct-breadcrumb .sct-crumb-sep { color: var(--gray-light); }

.sct-tpl-zone .sct-breadcrumb .sct-crumb-current {
    color: var(--dark);
    font-weight: 600;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 40px 0 90px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    overflow: hidden;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/hero_1770861226_698d32aaebae4.webp') center/cover no-repeat;
    opacity: 0.22;
    z-index: 0;
}

.sct-tpl-zone .sct-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,58,14,0.85) 0%, rgba(45,80,22,0.7) 100%);
    z-index: 1;
}

.sct-tpl-zone .sct-hero-grid {
    position: relative;
    z-index: 2;
    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-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, 0.2);
    border: 1px solid rgba(212, 168, 67, 0.5);
    padding: 8px 18px;
    border-radius: 50px;
    color: var(--secondary-light);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.sct-tpl-zone .sct-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    color: var(--white);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-hero-text h1 span { color: var(--secondary); }

.sct-tpl-zone .sct-hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.08rem;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

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

.sct-tpl-zone .sct-btn-primary { background: var(--secondary); color: var(--dark); }

.sct-tpl-zone .sct-btn-primary:hover { background: var(--secondary-light); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(212,168,67,0.4); }

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

.sct-tpl-zone .sct-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-3px); }

.sct-tpl-zone .sct-hero-card {
    background: rgba(255,255,255,0.97);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--secondary);
}

.sct-tpl-zone .sct-hero-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-hero-card-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.92rem;
}

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

.sct-tpl-zone .sct-hero-card-item i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-hero-card-item strong { color: var(--dark); display: block; margin-bottom: 2px; }

.sct-tpl-zone .sct-hero-card-item span { color: var(--gray); font-size: 0.85rem; }

.sct-tpl-zone .sct-stats-band {
    background: var(--primary);
    padding: 0;
}

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

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

.sct-tpl-zone .sct-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 14px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
}

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

.sct-tpl-zone .sct-stat-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.sct-tpl-zone .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.sct-tpl-zone .sct-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
}

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

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

.sct-tpl-zone .sct-overline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.sct-tpl-zone .sct-overline::before,
.sct-tpl-zone .sct-overline::after {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--secondary);
}

.sct-tpl-zone .sct-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 14px;
    line-height: 1.2;
}

.sct-tpl-zone .sct-section h2 span { color: var(--secondary-dark); }

.sct-tpl-zone .sct-section-header p {
    color: var(--gray);
    font-size: 1rem;
}

.sct-tpl-zone .sct-intro-section { background: var(--white); }

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

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

.sct-tpl-zone .sct-intro-text p {
    color: var(--dark-soft);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.98rem;
}

.sct-tpl-zone .sct-intro-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sct-tpl-zone .sct-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
}

.sct-tpl-zone .sct-intro-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--secondary);
    color: var(--dark);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sct-tpl-zone .sct-services-section { background: var(--light); }

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

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

.sct-tpl-zone .sct-service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.sct-tpl-zone .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.sct-tpl-zone .sct-service-img {
    height: 190px;
    overflow: hidden;
}

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

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

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

.sct-tpl-zone .sct-service-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
    line-height: 1.35;
}

.sct-tpl-zone .sct-service-body p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
    flex: 1;
}

.sct-tpl-zone .sct-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    transition: gap 0.3s;
}

.sct-tpl-zone .sct-service-card:hover .sct-service-link { gap: 14px; color: var(--secondary-dark); }

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

.sct-tpl-zone .sct-zones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 960px;
    margin: 0 auto;
}

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

.sct-tpl-zone .sct-zone-item {
    background: var(--light-warm);
    padding: 14px 16px;
    border-radius: var(--radius);
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    border: 1px solid transparent;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.sct-tpl-zone .sct-zone-item i { color: var(--secondary-dark); font-size: 0.85rem; }

.sct-tpl-zone .sct-zone-item:hover {
    background: var(--white);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.sct-tpl-zone .sct-usecase-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.sct-tpl-zone .sct-usecase-section .sct-section-header h2 { color: var(--white); }

.sct-tpl-zone .sct-usecase-section .sct-overline { color: var(--secondary-light); }

.sct-tpl-zone .sct-usecase-section .sct-overline::before,
.sct-tpl-zone .sct-usecase-section .sct-overline::after { background: var(--secondary); }

.sct-tpl-zone .sct-usecase-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.sct-tpl-zone .sct-usecase-box p {
    color: rgba(255,255,255,0.92);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}

.sct-tpl-zone .sct-usecase-box strong { color: var(--secondary-light); }

.sct-tpl-zone .sct-engagements-section { background: var(--light); }

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

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

.sct-tpl-zone .sct-engagement-card {
    background: var(--white);
    padding: 32px 26px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.sct-tpl-zone .sct-engagement-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.sct-tpl-zone .sct-engagement-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sct-tpl-zone .sct-engagement-icon i { color: var(--white); font-size: 1.5rem; }

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

.sct-tpl-zone .sct-engagement-card p { color: var(--gray); font-size: 0.92rem; }

.sct-tpl-zone .sct-local-spec { background: var(--white); }

.sct-tpl-zone .sct-local-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--light-warm);
    border-left: 4px solid var(--secondary);
    padding: 30px 32px;
    border-radius: var(--radius);
}

.sct-tpl-zone .sct-local-box h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sct-tpl-zone .sct-local-box h3 i { color: var(--secondary-dark); }

.sct-tpl-zone .sct-local-box p {
    color: var(--dark-soft);
    line-height: 1.75;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.sct-tpl-zone .sct-faq-section { background: var(--light); }

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

.sct-tpl-zone .sct-faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.sct-tpl-zone .sct-faq-q {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1rem;
    transition: background 0.3s;
}

.sct-tpl-zone .sct-faq-q:hover { background: var(--light-warm); }

.sct-tpl-zone .sct-faq-q i { color: var(--secondary-dark); transition: transform 0.3s; flex-shrink: 0; }

.sct-tpl-zone .sct-faq-item.active .sct-faq-q i { transform: rotate(45deg); }

.sct-tpl-zone .sct-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 24px;
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.94rem;
}

.sct-tpl-zone .sct-faq-item.active .sct-faq-a { max-height: 400px; padding: 0 24px 22px; }

.sct-tpl-zone .sct-maillage-section { background: var(--white); }

.sct-tpl-zone .sct-maillage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

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

.sct-tpl-zone .sct-maillage-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light);
    padding: 14px 18px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.92rem;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.sct-tpl-zone .sct-maillage-link i { color: var(--primary); font-size: 0.9rem; }

.sct-tpl-zone .sct-maillage-link:hover {
    background: var(--white);
    border-color: var(--secondary);
    color: var(--primary);
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.sct-tpl-zone .sct-cta-final {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.sct-tpl-zone .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212,168,67,0.15), transparent 50%);
}

.sct-tpl-zone .sct-cta-final-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; padding: 0 20px; }

.sct-tpl-zone .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 14px;
    color: var(--white);
}

.sct-tpl-zone .sct-cta-final h2 span { color: var(--secondary); }

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

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

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-zone .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-zone .sct-intro-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-zones-grid { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-maillage-grid { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-zone .sct-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-stat-item:nth-child(2) { border-right: none; }
    .sct-tpl-zone .sct-stat-item:nth-child(1),
    .sct-tpl-zone .sct-stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-section { padding: 60px 0; }
    .sct-tpl-zone .sct-hero { padding: 30px 0 60px; }
    .sct-tpl-zone .sct-hero-btns { flex-direction: column; }
    .sct-tpl-zone .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-zone .sct-hero-card { padding: 24px; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-zones-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-maillage-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-stats-inner { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .sct-tpl-zone .sct-stat-item:last-child { border-bottom: none; }
    .sct-tpl-zone .sct-usecase-box { padding: 26px 22px; }
    .sct-tpl-zone .sct-local-box { padding: 24px 22px; }
    .sct-tpl-zone .sct-cta-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-breadcrumb-wrap { padding: 110px 0 16px; }
}

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

.page-hero {
    position: relative;
    padding: 160px 24px 100px;
    background:
        linear-gradient(135deg, rgba(30, 58, 14, 0.92) 0%, rgba(45, 80, 22, 0.82) 100%),
        url('https://images.unsplash.com/photo-1542273917363-3b1817f69a2d?w=1600&q=80') center/cover no-repeat;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 168, 67, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212, 168, 67, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

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

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, 0.2);
    border: 1px solid rgba(212, 168, 67, 0.5);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--secondary-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--white);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
}

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

.page-hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
}

.breadcrumb a {
    color: var(--secondary-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

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

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

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

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

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

.sitemap-block-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.2);
}

.sitemap-block-icon i {
    color: var(--secondary);
    font-size: 1.4rem;
}

.sitemap-block-title {
    flex: 1;
}

.sitemap-block-title .overline {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary-dark);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 4px;
    display: block;
}

.sitemap-block-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
}

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--light-warm);
    color: var(--primary-dark);
    border: 1px solid rgba(45, 80, 22, 0.08);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    line-height: 1.3;
}

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

.chip:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.25);
}

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

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

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

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

.service-subgroup {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
    border-left: 4px solid var(--secondary);
}

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

.service-subgroup h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-subgroup h3 i {
    color: var(--secondary-dark);
    font-size: 1rem;
}

.feature-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
}

.feature-card:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card-icon i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.feature-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
    line-height: 1.35;
}

.feature-card-content p {
    font-size: 0.88rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.feature-card-content p i { font-size: 0.75rem; }

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 80px 24px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(212, 168, 67, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 50%, rgba(212, 168, 67, 0.12) 0%, transparent 40%);
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-section h2 span { color: var(--secondary); }

.cta-section p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 24px 0;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-brand .name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer-assurance {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--secondary-light);
    font-size: 0.85rem;
    font-weight: 600;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.footer-contact-item i {
    color: var(--secondary);
    margin-top: 4px;
    flex-shrink: 0;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
}

.footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
    text-align: center;
}

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

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

@media (min-width: 768px) {
    .nav-desktop { display: flex; }
    .burger { display: none; }
    .feature-cards { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

@media (max-width: 767px) {
    .page-hero { padding: 130px 20px 70px; }
    .sitemap-section { padding: 60px 20px; }
    .sitemap-block { margin-bottom: 48px; }
    .sitemap-block-header { gap: 14px; margin-bottom: 24px; }
    .sitemap-block-icon { width: 48px; height: 48px; }
    .service-subgroup { padding: 22px; }
    .chip { padding: 10px 16px; font-size: 0.88rem; }
    .feature-card { padding: 22px; gap: 16px; }
    .cta-section { padding: 60px 20px; }
}