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

:root {
            --primary: #2D5016;
            --primary-dark: #1f3810;
            --primary-light: #7A9B5C;
            --accent: #C8954A;
            --accent-dark: #a87836;
            --cream: #F5F1E8;
            --cream-dark: #ebe5d5;
            --white: #ffffff;
            --text: #2a2a2a;
            --text-light: #5a5a5a;
            --border: #e0dccf;
            --shadow: 0 10px 30px rgba(45, 80, 22, 0.08);
            --shadow-lg: 0 20px 50px rgba(45, 80, 22, 0.15);
        }

html { scroll-behavior: smooth; }

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

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

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }

h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }

h3 { font-size: 1.35rem; }

p { color: var(--text-light); }

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

section { padding: 90px 0; position: relative; }

@media (max-width: 768px) {
            section { padding: 60px 0; }
            .container { padding: 0 16px; }
        }

.header {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
        }

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

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--primary); font-weight: 700; }

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

.logo-text { font-family: 'Playfair Display', serif; font-size: 1.25rem; }

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

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

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

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

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

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

.nav .btn-cta-nav {
            background: var(--accent); color: var(--white) !important;
            padding: 10px 22px; border-radius: 30px;
            transition: all 0.3s ease; box-shadow: 0 4px 14px rgba(200, 149, 74, 0.3);
        }

.nav .btn-cta-nav:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(200, 149, 74, 0.45); }

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

.hero {
            position: relative;
            min-height: 100vh;
            padding-top: 120px;
            padding-bottom: 60px;
            display: flex; align-items: center;
            background: linear-gradient(135deg, rgba(31, 56, 16, 0.85) 0%, rgba(45, 80, 22, 0.75) 100%), url('/images/hero_1778612027_6a03773be0232.webp') center/cover no-repeat;
            color: var(--white);
        }

.hero::after {
            content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px;
            background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path fill='%23F5F1E8' d='M0,30 C360,60 720,0 1080,30 C1260,45 1380,55 1440,40 L1440,60 L0,60 Z'/></svg>") center/cover no-repeat;
        }

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

.hero-content h1 { color: var(--white); margin-bottom: 20px; }

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

.hero-tag {
            display: inline-block; padding: 8px 18px;
            background: rgba(200, 149, 74, 0.25); border: 1px solid var(--accent);
            border-radius: 30px; font-size: 0.85rem; letter-spacing: 1px;
            text-transform: uppercase; margin-bottom: 22px; color: var(--accent);
        }

.hero-content p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 32px; max-width: 540px; }

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

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

.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 6px 20px rgba(200, 149, 74, 0.4); }

.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200, 149, 74, 0.55); }

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

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

.hero-devis {
            background: var(--white); color: var(--text);
            border-radius: 20px; padding: 32px;
            box-shadow: var(--shadow-lg);
            position: relative;
        }

.hero-devis::before {
            content: ''; position: absolute; top: -12px; left: 32px;
            background: var(--accent); color: var(--white);
            padding: 6px 16px; border-radius: 20px;
            font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px;
        }

.hero-devis h2 { font-size: 1.6rem; margin-bottom: 6px; }

.hero-devis .subtitle { font-size: 0.9rem; color: var(--text-light); margin-bottom: 22px; }

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

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

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

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

.form-group textarea { resize: vertical; min-height: 90px; }

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

.hero-devis .btn { width: 100%; justify-content: center; margin-top: 6px; }

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

@media (max-width: 900px) {
            .hero-grid { grid-template-columns: 1fr; gap: 40px; }
            .hero { min-height: auto; padding-top: 130px; }
        }

@media (max-width: 768px) {
            .form-row { grid-template-columns: 1fr; }
            .hero-devis { padding: 24px; }
        }

.stats { background: var(--cream); padding: 70px 0; }

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

.stat-item { text-align: center; padding: 20px; }

.stat-item i { font-size: 2.2rem; color: var(--accent); margin-bottom: 14px; }

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

.stat-label { font-size: 0.95rem; color: var(--text-light); margin-top: 8px; }

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

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

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

.section-head p { font-size: 1.05rem; }

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

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

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

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

.service-img {
            width: 100%; height: 220px;
            background-size: cover; background-position: center;
            position: relative;
        }

.service-img::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(45,80,22,0.4) 100%);
        }

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

.service-body h3 { margin-bottom: 10px; font-size: 1.3rem; }

.service-body p { font-size: 0.95rem; }

.service-body .service-link {
            display: inline-flex; align-items: center; gap: 8px;
            margin-top: 16px; color: var(--accent); text-decoration: none;
            font-weight: 600; font-size: 0.9rem; transition: gap 0.3s ease;
        }

.service-body .service-link:hover { gap: 14px; }

@media (max-width: 768px) { .service-card { flex: 0 1 100%; max-width: 420px; } }

.why-us {
            background: var(--primary);
            color: var(--white);
            position: relative;
        }

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

.why-us .section-eyebrow { color: var(--accent); }

.why-us .section-head p { color: rgba(255,255,255,0.85); }

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

.why-card {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px; padding: 32px 24px;
            text-align: center;
            transition: all 0.3s ease;
        }

.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }

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

.why-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }

.why-card p { color: rgba(255,255,255,0.8); font-size: 0.92rem; }

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

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

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

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

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

.about-img {
            width: 100%; height: 500px;
            background: url('/images/about_1778612067_6a037763ed2bb.webp') center/cover no-repeat;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
        }

.about-badge {
            position: absolute; bottom: -25px; right: -10px;
            width: 140px; height: 140px;
            background: var(--accent); color: var(--white);
            border-radius: 50%;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            text-align: center; padding: 12px;
            box-shadow: var(--shadow-lg);
            font-family: 'Playfair Display', serif;
        }

.about-badge strong { font-size: 1.8rem; line-height: 1; display: block; margin-bottom: 4px; }

.about-badge span { font-size: 0.78rem; line-height: 1.2; font-family: 'Inter', sans-serif; }

.about-content .section-eyebrow { margin-bottom: 12px; }

.about-content p { margin-bottom: 16px; font-size: 1.02rem; }

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

.about-features li {
            display: flex; align-items: flex-start; gap: 14px;
            padding: 10px 0; color: var(--text);
        }

.about-features li i { color: var(--accent); font-size: 1.1rem; margin-top: 4px; flex-shrink: 0; }

@media (max-width: 900px) {
            .about-grid { grid-template-columns: 1fr; gap: 50px; }
            .about-img { height: 380px; }
            .about-badge { width: 110px; height: 110px; right: 20px; bottom: -20px; }
            .about-badge strong { font-size: 1.4rem; }
        }

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

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

.gallery-item {
            border-radius: 14px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

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

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

.gallery-item::after {
            content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
            position: absolute; inset: 0;
            background: rgba(45, 80, 22, 0.7);
            color: var(--white); font-size: 1.6rem;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; transition: opacity 0.3s ease;
        }

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

.gallery-item.tall { grid-row: span 2; }

.gallery-item.wide { grid-column: span 2; }

@media (max-width: 900px) {
            .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
            .gallery-item.wide { grid-column: span 1; }
        }

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

.reviews-head { text-align: center; margin-bottom: 50px; }

.reviews-rating { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 20px; flex-wrap: wrap; }

.reviews-rating .score { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; color: var(--primary); }

.reviews-stars { color: var(--accent); font-size: 1.2rem; }

.reviews-meta { color: var(--text-light); font-size: 0.95rem; }

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

.review-card {
            background: var(--white);
            padding: 32px 28px;
            border-radius: 18px;
            box-shadow: var(--shadow);
            position: relative;
            border-top: 4px solid var(--accent);
        }

.review-card .quote-icon {
            position: absolute; top: 22px; right: 26px;
            color: var(--cream-dark); font-size: 2.5rem;
        }

.review-stars { color: var(--accent); margin-bottom: 14px; }

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

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

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

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

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

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

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

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

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

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

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

.zones-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }

.zone-pill {
            display: flex; align-items: center; gap: 10px;
            background: var(--cream); padding: 14px 18px;
            border-radius: 12px; border-left: 3px solid var(--accent);
            color: var(--text); font-weight: 500;
        }

.zone-pill i { color: var(--primary); }

a.zone-pill { text-decoration: none; transition: all 0.3s ease; }

a.zone-pill:hover { background: var(--cream-dark); border-left-color: var(--primary); transform: translateX(4px); }

.service-cities { margin-top: 14px; font-size: 0.85rem; color: var(--text-light); line-height: 1.8; }

.service-cities strong { color: var(--primary); font-weight: 600; }

.service-cities a { color: var(--accent); text-decoration: none; font-weight: 500; }

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

.zones-visual {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            position: relative;
        }

.zones-visual i.big-icon { font-size: 4rem; color: var(--accent); margin-bottom: 20px; }

.zones-visual h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 12px; }

.zones-visual p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }

.zones-visual .btn-primary { box-shadow: 0 4px 14px rgba(0,0,0,0.2); }

@media (max-width: 768px) {
            .zones-content { grid-template-columns: 1fr; gap: 40px; }
            .zones-visual { padding: 40px 24px; }
        }

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

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

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

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

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

.faq-item summary::after {
            content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
            color: var(--accent); transition: transform 0.3s ease;
        }

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

.faq-item .answer { padding: 0 26px 24px; color: var(--text-light); line-height: 1.7; }

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

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

.hours-card {
            background: var(--cream);
            border-radius: 18px;
            padding: 32px;
            box-shadow: var(--shadow);
        }

.hours-card h3 { margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }

.hours-card h3 i { color: var(--accent); }

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

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

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

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

.hours-list .time { color: var(--text-light); font-variant-numeric: tabular-nums; }

.hours-list li.closed .day, .hours-list li.closed .time { color: #b0a89a; font-style: italic; }

.contact-info-card {
            background: var(--primary);
            color: var(--white);
            border-radius: 18px;
            padding: 32px;
            margin-top: 20px;
        }

.contact-info-card h3 { color: var(--white); margin-bottom: 22px; }

.contact-info-item {
            display: flex; align-items: flex-start; gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

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

.contact-info-item i {
            color: var(--accent); font-size: 1.1rem;
            background: rgba(200,149,74,0.15);
            width: 40px; height: 40px;
            display: flex; align-items: center; justify-content: center;
            border-radius: 50%; flex-shrink: 0;
        }

.contact-info-item .label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.7); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }

.contact-info-item a, .contact-info-item span.value { color: var(--white); text-decoration: none; font-weight: 500; }

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

.contact-form-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 36px;
            box-shadow: var(--shadow);
        }

.contact-form-card h3 { margin-bottom: 20px; }

.contact-form-card .btn { width: 100%; justify-content: center; }

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

.map-wrap iframe { display: block; width: 100%; }

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

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

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

.footer h4, .footer .footer-title {
            color: var(--white); font-family: 'Playfair Display', serif;
            font-size: 1.15rem; margin-bottom: 18px;
            display: block;
        }

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

.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.92rem; }

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

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

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

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

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

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

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

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

.footer-social { display: flex; gap: 12px; margin-top: 16px; }

.footer-social a {
            width: 40px; height: 40px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: var(--white); text-decoration: none;
            transition: all 0.3s ease;
        }

.footer-social a:hover { background: var(--accent); transform: translateY(-3px); }

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

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

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

.footer-bottom-right { display: flex; gap: 18px; flex-wrap: wrap; }

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

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

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

.float-call {
            position: fixed; bottom: 20px; right: 20px; z-index: 999;
            width: 60px; height: 60px;
            background: var(--accent); color: var(--white);
            border-radius: 50%;
            display: none; align-items: center; justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 8px 20px rgba(200, 149, 74, 0.5);
            text-decoration: none;
            animation: pulse 2s infinite;
        }

@keyframes pulse {
            0%, 100% { box-shadow: 0 8px 20px rgba(200, 149, 74, 0.5); }
            50% { box-shadow: 0 8px 30px rgba(200, 149, 74, 0.8); }
        }

@media (max-width: 768px) { .float-call { display: flex; } }

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

.modal.active { display: flex; }

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

.modal-close {
            position: absolute; top: 16px; right: 18px;
            background: var(--cream); border: none;
            width: 36px; height: 36px; border-radius: 50%;
            cursor: pointer; color: var(--primary); font-size: 1.1rem;
        }

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

.modal-content p.section-title { font-weight: 600; color: var(--primary); margin-top: 16px; margin-bottom: 6px; }

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

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

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

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

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

.sct-tpl-service-hub { font-family: 'Inter', -apple-system, sans-serif; color: var(--text, #2a2a2a); background: #ffffff; line-height: 1.6; }

.sct-tpl-service-hub h1,
.sct-tpl-service-hub h2,
.sct-tpl-service-hub h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; color: var(--primary, #2D5016); line-height: 1.2; }

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

.sct-tpl-service-hub .sct-eyebrow { display: inline-block; font-size: 0.82rem; letter-spacing: 2px; color: var(--accent, #C8954A); text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }

.sct-tpl-service-hub .sct-sec-title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 16px; }

.sct-tpl-service-hub .sct-sec-sub { color: var(--text-light, #5a5a5a); font-size: 1.03rem; }

.sct-tpl-service-hub .sct-section { padding: 88px 0; position: relative; }

@media (max-width: 768px) { .sct-tpl-service-hub .sct-section { padding: 58px 0; } .sct-tpl-service-hub .sct-sec-head { margin-bottom: 38px; } }

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 165px 0 95px;
    background: linear-gradient(135deg, rgba(31,56,16,0.90) 0%, rgba(45,80,22,0.78) 100%), url('/images/service_1_1778612087_6a037777d9f6c.webp') center/cover no-repeat;
    color: #ffffff;
}

.sct-tpl-service-hub .sct-hero::after {
    content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 55px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path fill='%23F5F1E8' d='M0,30 C360,60 720,0 1080,30 C1260,45 1380,55 1440,40 L1440,60 L0,60 Z'/></svg>") center/cover no-repeat;
    pointer-events: none;
}

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

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

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

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

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

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

.sct-tpl-service-hub .sct-breadcrumb a:hover { color: var(--accent, #C8954A); }

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

.sct-tpl-service-hub .sct-bc-current { color: var(--accent, #C8954A); font-weight: 600; }

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

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px; border-radius: 30px;
    background: rgba(200,149,74,0.22); border: 1px solid rgba(200,149,74,0.85);
    color: #F0D9B0; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase;
}

.sct-tpl-service-hub .sct-hero-text h1 { color: #ffffff; font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 18px; }

.sct-tpl-service-hub .sct-hero-text h1 .sct-accent { color: var(--accent, #C8954A); font-style: italic; }

.sct-tpl-service-hub .sct-hero-subtitle { color: rgba(255,255,255,0.92); font-size: 1.08rem; margin-bottom: 30px; max-width: 620px; }

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

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

.sct-tpl-service-hub .sct-btn-primary { background: var(--accent, #C8954A); color: #ffffff; box-shadow: 0 6px 20px rgba(200,149,74,0.4); }

.sct-tpl-service-hub .sct-btn-primary:hover { background: var(--accent-dark, #a87836); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,149,74,0.55); }

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

.sct-tpl-service-hub .sct-btn-outline:hover { background: #ffffff; color: var(--primary, #2D5016); border-color: #ffffff; }

.sct-tpl-service-hub .sct-btn-dark { background: var(--primary, #2D5016); color: #ffffff; }

.sct-tpl-service-hub .sct-btn-dark:hover { background: var(--primary-dark, #1f3810); transform: translateY(-2px); }

.sct-tpl-service-hub .sct-hero-trust { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 30px; }

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

.sct-tpl-service-hub .sct-hero-trust i { color: var(--accent, #C8954A); }

.sct-tpl-service-hub .sct-hero-card {
    background: #ffffff; color: var(--text, #2a2a2a);
    border-radius: 20px; padding: 32px 28px;
    box-shadow: 0 20px 50px rgba(45,80,22,0.28);
    border-top: 5px solid var(--accent, #C8954A);
}

.sct-tpl-service-hub .sct-hero-card h2 { font-size: 1.45rem; margin-bottom: 6px; }

.sct-tpl-service-hub .sct-hero-card-sub { font-size: 0.9rem; color: var(--text-light, #5a5a5a); margin-bottom: 20px; }

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

.sct-tpl-service-hub .sct-hero-card-list li {
    display: flex; align-items: flex-start; gap: 13px;
    padding: 13px 0; border-bottom: 1px solid var(--border, #e0dccf);
}

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

.sct-tpl-service-hub .sct-hero-card-list i {
    color: var(--accent, #C8954A); font-size: 1rem;
    background: rgba(200,149,74,0.14);
    width: 38px; height: 38px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
}

.sct-tpl-service-hub .sct-hcl-label { display: block; font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light, #5a5a5a); margin-bottom: 2px; }

.sct-tpl-service-hub .sct-hcl-value { display: block; font-weight: 600; color: var(--primary, #2D5016); font-size: 0.97rem; overflow-wrap: anywhere; }

.sct-tpl-service-hub .sct-hcl-value a { color: var(--primary, #2D5016); text-decoration: none; }

.sct-tpl-service-hub .sct-hcl-value a:hover { color: var(--accent, #C8954A); }

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

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

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

.sct-tpl-service-hub .sct-stats-band { background: var(--cream, #F5F1E8); padding: 62px 0; }

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

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

.sct-tpl-service-hub .sct-stat-item { text-align: center; padding: 14px 10px; }

.sct-tpl-service-hub .sct-stat-value {
    font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800; color: var(--primary, #2D5016); display: block; line-height: 1.05;
    overflow-wrap: anywhere;
}

.sct-tpl-service-hub .sct-stat-label { font-size: 0.92rem; color: var(--text-light, #5a5a5a); margin-top: 9px; display: block; }

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

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

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

.sct-tpl-service-hub .sct-intro-inner h2 { font-size: clamp(1.65rem, 3.4vw, 2.4rem); margin-bottom: 22px; }

.sct-tpl-service-hub .sct-intro-inner p { color: var(--text-light, #5a5a5a); font-size: 1.04rem; margin-bottom: 18px; line-height: 1.8; }

.sct-tpl-service-hub .sct-intro-inner p strong { color: var(--primary, #2D5016); font-weight: 600; }

.sct-tpl-service-hub .sct-intro-rule { width: 70px; height: 3px; background: var(--accent, #C8954A); border-radius: 3px; margin-bottom: 26px; }

.sct-tpl-service-hub .sct-services-section { background: var(--cream, #F5F1E8); }

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

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

.sct-tpl-service-hub .sct-service-card {
    background: #ffffff; border-radius: 18px; overflow: hidden;
    border: 1px solid var(--border, #e0dccf);
    box-shadow: 0 10px 30px rgba(45,80,22,0.08);
    transition: all 0.4s ease; display: flex; flex-direction: column;
}

.sct-tpl-service-hub .sct-service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(45,80,22,0.15); border-color: var(--primary-light, #7A9B5C); }

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

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

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

.sct-tpl-service-hub .sct-service-body p { font-size: 0.95rem; color: var(--text-light, #5a5a5a); }

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

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

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

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

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

.sct-tpl-service-hub .sct-step-card {
    background: var(--cream, #F5F1E8); border-radius: 16px;
    padding: 30px 22px; text-align: center; position: relative;
    border: 1px solid var(--border, #e0dccf); transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-step-card:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(45,80,22,0.12); }

.sct-tpl-service-hub .sct-step-num {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--primary, #2D5016); color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700;
}

.sct-tpl-service-hub .sct-step-icon { font-size: 1.75rem; color: var(--accent, #C8954A); margin: 10px 0 15px; }

.sct-tpl-service-hub .sct-step-card h3 { font-size: 1.08rem; margin-bottom: 9px; }

.sct-tpl-service-hub .sct-step-card p { font-size: 0.9rem; color: var(--text-light, #5a5a5a); }

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

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

.sct-tpl-service-hub .sct-why-section { background: var(--primary, #2D5016); color: #ffffff; }

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

.sct-tpl-service-hub .sct-why-section .sct-sec-sub { color: rgba(255,255,255,0.86); }

.sct-tpl-service-hub .sct-why-section .sct-eyebrow { color: var(--accent, #C8954A); }

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

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

.sct-tpl-service-hub .sct-why-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.11);
    border-radius: 16px; padding: 32px 24px; text-align: center; transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-why-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-5px); }

.sct-tpl-service-hub .sct-why-icon {
    width: 62px; height: 62px; border-radius: 50%;
    background: var(--accent, #C8954A); color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.45rem; margin: 0 auto 18px;
}

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

.sct-tpl-service-hub .sct-why-card p { color: rgba(255,255,255,0.82); font-size: 0.92rem; }

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

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

.sct-tpl-service-hub .sct-usecase-section { background: var(--cream, #F5F1E8); }

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

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

.sct-tpl-service-hub .sct-usecase-img-wrap { position: relative; }

.sct-tpl-service-hub .sct-usecase-img {
    width: 100%; height: 420px; object-fit: cover;
    border-radius: 20px; box-shadow: 0 20px 50px rgba(45,80,22,0.15); display: block;
}

.sct-tpl-service-hub .sct-usecase-badge {
    position: absolute; bottom: -22px; right: 18px;
    background: var(--accent, #C8954A); color: #ffffff;
    padding: 16px 24px; border-radius: 14px;
    box-shadow: 0 14px 32px rgba(45,80,22,0.22);
    font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem;
    display: flex; align-items: center; gap: 11px;
}

.sct-tpl-service-hub .sct-usecase-content h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: 18px; }

.sct-tpl-service-hub .sct-usecase-content p { color: var(--text-light, #5a5a5a); margin-bottom: 16px; font-size: 1.01rem; line-height: 1.8; }

.sct-tpl-service-hub .sct-usecase-content strong { color: var(--primary, #2D5016); }

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

.sct-tpl-service-hub .sct-usecase-content ul li { display: flex; align-items: flex-start; gap: 13px; padding: 9px 0; color: var(--text, #2a2a2a); }

.sct-tpl-service-hub .sct-usecase-content ul li::before {
    content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: var(--accent, #C8954A); flex-shrink: 0; margin-top: 3px;
}

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

@media (max-width: 640px) { .sct-tpl-service-hub .sct-usecase-img { height: 250px; } .sct-tpl-service-hub .sct-usecase-badge { right: 12px; padding: 13px 18px; font-size: 0.9rem; } }

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

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

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

.sct-tpl-service-hub .sct-engagement-card {
    background: #ffffff; border: 1px solid var(--border, #e0dccf);
    border-radius: 18px; padding: 34px 28px;
    box-shadow: 0 10px 30px rgba(45,80,22,0.07);
    border-top: 4px solid var(--accent, #C8954A);
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-engagement-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(45,80,22,0.14); }

.sct-tpl-service-hub .sct-engagement-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--cream, #F5F1E8); color: var(--primary, #2D5016);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; margin-bottom: 18px;
}

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

.sct-tpl-service-hub .sct-engagement-card p { color: var(--text-light, #5a5a5a); font-size: 0.95rem; }

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

.sct-tpl-service-hub .sct-faq-section { background: var(--cream, #F5F1E8); }

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

.sct-tpl-service-hub .sct-faq-item {
    background: #ffffff; border-radius: 14px;
    margin-bottom: 14px; overflow: hidden;
    border: 1px solid var(--border, #e0dccf);
}

.sct-tpl-service-hub .sct-faq-item summary {
    padding: 21px 25px; font-weight: 600; color: var(--primary, #2D5016);
    cursor: pointer; list-style: none;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-size: 1.02rem; font-family: 'Playfair Display', Georgia, serif;
}

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

.sct-tpl-service-hub .sct-faq-item summary::after {
    content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: var(--accent, #C8954A); font-size: 0.85rem; flex-shrink: 0; transition: transform 0.3s ease;
}

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

.sct-tpl-service-hub .sct-faq-answer { padding: 0 25px 23px; color: var(--text-light, #5a5a5a); line-height: 1.75; font-size: 0.97rem; }

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

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

.sct-tpl-service-hub .sct-maillage-section.sct-maillage-alt { background: var(--cream, #F5F1E8); padding: 66px 0; }

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

.sct-tpl-service-hub .sct-maillage-head h2 { font-size: clamp(1.55rem, 3.2vw, 2.3rem); margin-bottom: 12px; }

.sct-tpl-service-hub .sct-maillage-head p { color: var(--text-light, #5a5a5a); font-size: 1rem; }

.sct-tpl-service-hub .sct-maillage-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.sct-tpl-service-hub .sct-maillage-links a {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--cream, #F5F1E8); color: var(--primary, #2D5016);
    border: 1px solid var(--border, #e0dccf);
    padding: 11px 20px; border-radius: 30px;
    text-decoration: none; font-size: 0.92rem; font-weight: 500;
    transition: all 0.3s ease; overflow-wrap: anywhere;
}

.sct-tpl-service-hub .sct-maillage-section.sct-maillage-alt .sct-maillage-links a { background: #ffffff; }

.sct-tpl-service-hub .sct-maillage-links a:hover { background: var(--primary, #2D5016); color: #ffffff; border-color: var(--primary, #2D5016); transform: translateY(-2px); }

.sct-tpl-service-hub .sct-maillage-links a::before {
    content: '\f3c5'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--accent, #C8954A); font-size: 0.85rem;
}

.sct-tpl-service-hub .sct-maillage-section.sct-maillage-alt .sct-maillage-links a::before { content: '\f105'; }

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

.sct-tpl-service-hub .sct-maillage-note {
    text-align: center; margin-top: 32px;
    color: var(--text-light, #5a5a5a); font-size: 0.95rem;
    max-width: 700px; margin-left: auto; margin-right: auto;
}

.sct-tpl-service-hub .sct-maillage-note i { color: var(--accent, #C8954A); margin-right: 6px; }

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

.sct-tpl-service-hub .sct-maillage-note a:hover { color: var(--accent, #C8954A); }

.sct-tpl-service-hub .sct-cta-final {
    background: linear-gradient(135deg, var(--primary, #2D5016) 0%, var(--primary-dark, #1f3810) 100%);
    color: #ffffff; padding: 78px 0; text-align: center;
}

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

.sct-tpl-service-hub .sct-cta-final p { color: rgba(255,255,255,0.88); max-width: 640px; margin: 0 auto 32px; font-size: 1.04rem; }

.sct-tpl-service-hub .sct-cta-icon { font-size: 2.6rem; color: var(--accent, #C8954A); margin-bottom: 20px; }

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

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-cta-btns { flex-direction: column; align-items: stretch; }
    .sct-tpl-service-hub .sct-cta-btns > * { width: 100%; }
}

.sct-tpl-zone { font-family: 'Inter', -apple-system, sans-serif; color: var(--text, #2a2a2a); background: #ffffff; line-height: 1.6; }

.sct-tpl-zone h1,
.sct-tpl-zone h2,
.sct-tpl-zone h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; color: var(--primary, #2D5016); line-height: 1.2; }

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

.sct-tpl-zone .sct-eyebrow { display: inline-block; font-size: 0.82rem; letter-spacing: 2px; color: var(--accent, #C8954A); text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }

.sct-tpl-zone .sct-sec-title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 16px; }

.sct-tpl-zone .sct-sec-sub { color: var(--text-light, #5a5a5a); font-size: 1.03rem; }

.sct-tpl-zone .sct-section { padding: 88px 0; position: relative; }

@media (max-width: 768px) { .sct-tpl-zone .sct-section { padding: 58px 0; } .sct-tpl-zone .sct-sec-head { margin-bottom: 38px; } }

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 165px 0 95px;
    background: linear-gradient(135deg, rgba(31,56,16,0.90) 0%, rgba(45,80,22,0.78) 100%), url('/images/service_2_1778612108_6a03778cdeb2b.webp') center/cover no-repeat;
    color: #ffffff;
}

.sct-tpl-zone .sct-hero::after {
    content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 55px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path fill='%23F5F1E8' d='M0,30 C360,60 720,0 1080,30 C1260,45 1380,55 1440,40 L1440,60 L0,60 Z'/></svg>") center/cover no-repeat;
    pointer-events: none;
}

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

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

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

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

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

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

.sct-tpl-zone .sct-breadcrumb a:hover { color: var(--accent, #C8954A); }

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

.sct-tpl-zone .sct-bc-current { color: var(--accent, #C8954A); font-weight: 600; }

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

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px; border-radius: 30px;
    background: rgba(200,149,74,0.22); border: 1px solid rgba(200,149,74,0.85);
    color: #F0D9B0; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase;
}

.sct-tpl-zone .sct-hero-text h1 { color: #ffffff; font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 18px; }

.sct-tpl-zone .sct-hero-text h1 .sct-accent { color: var(--accent, #C8954A); font-style: italic; }

.sct-tpl-zone .sct-hero-subtitle { color: rgba(255,255,255,0.92); font-size: 1.08rem; margin-bottom: 30px; max-width: 620px; }

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

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

.sct-tpl-zone .sct-btn-primary { background: var(--accent, #C8954A); color: #ffffff; box-shadow: 0 6px 20px rgba(200,149,74,0.4); }

.sct-tpl-zone .sct-btn-primary:hover { background: var(--accent-dark, #a87836); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,149,74,0.55); }

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

.sct-tpl-zone .sct-btn-outline:hover { background: #ffffff; color: var(--primary, #2D5016); border-color: #ffffff; }

.sct-tpl-zone .sct-btn-dark { background: var(--primary, #2D5016); color: #ffffff; }

.sct-tpl-zone .sct-btn-dark:hover { background: var(--primary-dark, #1f3810); transform: translateY(-2px); }

.sct-tpl-zone .sct-hero-trust { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 30px; }

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

.sct-tpl-zone .sct-hero-trust i { color: var(--accent, #C8954A); }

.sct-tpl-zone .sct-hero-card {
    background: #ffffff; color: var(--text, #2a2a2a);
    border-radius: 20px; padding: 32px 28px;
    box-shadow: 0 20px 50px rgba(45,80,22,0.28);
    border-top: 5px solid var(--accent, #C8954A);
}

.sct-tpl-zone .sct-hero-card h2 { font-size: 1.45rem; margin-bottom: 6px; }

.sct-tpl-zone .sct-hero-card-sub { font-size: 0.9rem; color: var(--text-light, #5a5a5a); margin-bottom: 20px; }

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

.sct-tpl-zone .sct-hero-card-list li {
    display: flex; align-items: flex-start; gap: 13px;
    padding: 13px 0; border-bottom: 1px solid var(--border, #e0dccf);
}

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

.sct-tpl-zone .sct-hero-card-list i {
    color: var(--accent, #C8954A); font-size: 1rem;
    background: rgba(200,149,74,0.14);
    width: 38px; height: 38px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
}

.sct-tpl-zone .sct-hcl-label { display: block; font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light, #5a5a5a); margin-bottom: 2px; }

.sct-tpl-zone .sct-hcl-value { display: block; font-weight: 600; color: var(--primary, #2D5016); font-size: 0.97rem; overflow-wrap: anywhere; }

.sct-tpl-zone .sct-hcl-value a { color: var(--primary, #2D5016); text-decoration: none; }

.sct-tpl-zone .sct-hcl-value a:hover { color: var(--accent, #C8954A); }

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

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

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 120px 0 70px; }
    .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-breadcrumb { font-size: 0.78rem; gap: 6px; }
    .sct-tpl-zone .sct-hero-card { padding: 26px 22px; }
}

.sct-tpl-zone .sct-stats-band { background: var(--cream, #F5F1E8); padding: 62px 0; }

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

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

.sct-tpl-zone .sct-stat-item { text-align: center; padding: 14px 10px; }

.sct-tpl-zone .sct-stat-value {
    font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800; color: var(--primary, #2D5016); display: block; line-height: 1.05;
    overflow-wrap: anywhere;
}

.sct-tpl-zone .sct-stat-label { font-size: 0.92rem; color: var(--text-light, #5a5a5a); margin-top: 9px; display: block; }

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

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

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

.sct-tpl-zone .sct-intro-inner h2 { font-size: clamp(1.65rem, 3.4vw, 2.4rem); margin-bottom: 22px; }

.sct-tpl-zone .sct-intro-inner p { color: var(--text-light, #5a5a5a); font-size: 1.04rem; margin-bottom: 18px; line-height: 1.8; }

.sct-tpl-zone .sct-intro-inner p strong { color: var(--primary, #2D5016); font-weight: 600; }

.sct-tpl-zone .sct-intro-rule { width: 70px; height: 3px; background: var(--accent, #C8954A); border-radius: 3px; margin-bottom: 26px; }

.sct-tpl-zone .sct-services-section { background: var(--cream, #F5F1E8); }

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

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

.sct-tpl-zone .sct-service-card {
    background: #ffffff; border-radius: 18px; overflow: hidden;
    border: 1px solid var(--border, #e0dccf);
    box-shadow: 0 10px 30px rgba(45,80,22,0.08);
    transition: all 0.4s ease; display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
}

.sct-tpl-zone .sct-service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(45,80,22,0.15); border-color: var(--primary-light, #7A9B5C); }

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

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

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

.sct-tpl-zone .sct-service-body p { font-size: 0.95rem; color: var(--text-light, #5a5a5a); }

.sct-tpl-zone .sct-service-link {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: auto; padding-top: 16px;
    color: var(--accent, #C8954A); text-decoration: none;
    font-weight: 600; font-size: 0.9rem; transition: gap 0.3s ease;
}

.sct-tpl-zone .sct-service-link:hover { gap: 14px; }

.sct-tpl-zone .sct-service-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--cream, #F5F1E8); color: var(--primary, #2D5016);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; margin-bottom: 16px;
}

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

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

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

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

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

.sct-tpl-zone .sct-zones-list li {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--cream, #F5F1E8); color: var(--text, #2a2a2a);
    padding: 12px 20px; border-radius: 30px;
    border-left: 3px solid var(--accent, #C8954A);
    font-weight: 500; font-size: 0.93rem; overflow-wrap: anywhere;
}

.sct-tpl-zone .sct-zones-list li::before {
    content: '\f3c5'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: var(--primary, #2D5016); font-size: 0.85rem;
}

.sct-tpl-zone .sct-zones-list li a { color: inherit; text-decoration: none; }

.sct-tpl-zone .sct-zones-list li a:hover { color: var(--accent-dark, #a87836); }

.sct-tpl-zone .sct-zones-note { text-align: center; margin-top: 26px; color: var(--text-light, #5a5a5a); font-size: 0.95rem; }

.sct-tpl-zone .sct-zones-note i { color: var(--accent, #C8954A); margin-right: 6px; }

.sct-tpl-zone .sct-zones-note a { color: var(--primary, #2D5016); font-weight: 600; text-decoration: none; }

.sct-tpl-zone .sct-zones-note a:hover { color: var(--accent, #C8954A); }

.sct-tpl-zone .sct-usecase-section { background: var(--cream, #F5F1E8); }

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

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

.sct-tpl-zone .sct-usecase-img-wrap { position: relative; }

.sct-tpl-zone .sct-usecase-img {
    width: 100%; height: 420px; object-fit: cover;
    border-radius: 20px; box-shadow: 0 20px 50px rgba(45,80,22,0.15); display: block;
}

.sct-tpl-zone .sct-usecase-badge {
    position: absolute; bottom: -22px; right: 18px;
    background: var(--accent, #C8954A); color: #ffffff;
    padding: 16px 24px; border-radius: 14px;
    box-shadow: 0 14px 32px rgba(45,80,22,0.22);
    font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem;
    display: flex; align-items: center; gap: 11px;
}

.sct-tpl-zone .sct-usecase-content h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: 18px; }

.sct-tpl-zone .sct-usecase-content p { color: var(--text-light, #5a5a5a); margin-bottom: 16px; font-size: 1.01rem; line-height: 1.8; }

.sct-tpl-zone .sct-usecase-content strong { color: var(--primary, #2D5016); }

.sct-tpl-zone .sct-usecase-content ul { list-style: none; padding: 0; margin: 22px 0 0; }

.sct-tpl-zone .sct-usecase-content ul li { display: flex; align-items: flex-start; gap: 13px; padding: 9px 0; color: var(--text, #2a2a2a); }

.sct-tpl-zone .sct-usecase-content ul li::before {
    content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: var(--accent, #C8954A); flex-shrink: 0; margin-top: 3px;
}

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

@media (max-width: 640px) { .sct-tpl-zone .sct-usecase-img { height: 250px; } .sct-tpl-zone .sct-usecase-badge { right: 12px; padding: 13px 18px; font-size: 0.9rem; } }

.sct-tpl-zone .sct-engagements-section { background: var(--primary, #2D5016); color: #ffffff; }

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

.sct-tpl-zone .sct-engagements-section .sct-sec-sub { color: rgba(255,255,255,0.86); }

.sct-tpl-zone .sct-engagements-section .sct-eyebrow { color: var(--accent, #C8954A); }

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

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

.sct-tpl-zone .sct-engagement-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.11);
    border-radius: 18px; padding: 34px 28px; transition: all 0.3s ease;
}

.sct-tpl-zone .sct-engagement-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-6px); }

.sct-tpl-zone .sct-engagement-icon {
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--accent, #C8954A); color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; margin-bottom: 18px;
}

.sct-tpl-zone .sct-engagement-card h3 { color: #ffffff; font-size: 1.17rem; margin-bottom: 10px; }

.sct-tpl-zone .sct-engagement-card p { color: rgba(255,255,255,0.82); font-size: 0.95rem; }

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

.sct-tpl-zone .sct-local-spec { background: #ffffff; }

.sct-tpl-zone .sct-local-inner {
    max-width: 900px; margin: 0 auto;
    background: var(--cream, #F5F1E8); border-radius: 20px;
    padding: 44px 42px;
    box-shadow: 0 10px 30px rgba(45,80,22,0.08);
    border-left: 5px solid var(--primary-light, #7A9B5C);
}

.sct-tpl-zone .sct-local-inner h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 18px; }

.sct-tpl-zone .sct-local-inner p { color: var(--text-light, #5a5a5a); margin-bottom: 15px; line-height: 1.8; }

.sct-tpl-zone .sct-local-inner strong { color: var(--primary, #2D5016); }

.sct-tpl-zone .sct-local-inner ul { padding-left: 20px; color: var(--text-light, #5a5a5a); }

.sct-tpl-zone .sct-local-inner li { margin-bottom: 9px; }

@media (max-width: 640px) { .sct-tpl-zone .sct-local-inner { padding: 30px 24px; } }

.sct-tpl-zone .sct-faq-section { background: var(--cream, #F5F1E8); }

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

.sct-tpl-zone .sct-faq-item {
    background: #ffffff; border-radius: 14px;
    margin-bottom: 14px; overflow: hidden;
    border: 1px solid var(--border, #e0dccf);
}

.sct-tpl-zone .sct-faq-item summary {
    padding: 21px 25px; font-weight: 600; color: var(--primary, #2D5016);
    cursor: pointer; list-style: none;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-size: 1.02rem; font-family: 'Playfair Display', Georgia, serif;
}

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

.sct-tpl-zone .sct-faq-item summary::after {
    content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: var(--accent, #C8954A); font-size: 0.85rem; flex-shrink: 0; transition: transform 0.3s ease;
}

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

.sct-tpl-zone .sct-faq-answer { padding: 0 25px 23px; color: var(--text-light, #5a5a5a); line-height: 1.75; font-size: 0.97rem; }

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

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

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

.sct-tpl-zone .sct-maillage-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 11px; }

.sct-tpl-zone .sct-maillage-head p { color: var(--text-light, #5a5a5a); font-size: 0.98rem; }

.sct-tpl-zone .sct-maillage-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.sct-tpl-zone .sct-maillage-links a {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--cream, #F5F1E8); color: var(--primary, #2D5016);
    border: 1px solid var(--border, #e0dccf);
    padding: 11px 20px; border-radius: 30px;
    text-decoration: none; font-size: 0.92rem; font-weight: 500;
    transition: all 0.3s ease; overflow-wrap: anywhere;
}

.sct-tpl-zone .sct-maillage-links a:hover { background: var(--primary, #2D5016); color: #ffffff; border-color: var(--primary, #2D5016); transform: translateY(-2px); }

.sct-tpl-zone .sct-maillage-links a::before {
    content: '\f3c5'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--accent, #C8954A); font-size: 0.85rem;
}

.sct-tpl-zone .sct-maillage-links a:hover::before { color: #ffffff; }

.sct-tpl-zone .sct-cta-final {
    background: linear-gradient(135deg, var(--primary, #2D5016) 0%, var(--primary-dark, #1f3810) 100%);
    color: #ffffff; padding: 78px 0; text-align: center;
}

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

.sct-tpl-zone .sct-cta-final p { color: rgba(255,255,255,0.88); max-width: 640px; margin: 0 auto 32px; font-size: 1.04rem; }

.sct-tpl-zone .sct-cta-icon { font-size: 2.6rem; color: var(--accent, #C8954A); margin-bottom: 20px; }

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

@media (max-width: 640px) {
    .sct-tpl-zone .sct-cta-btns { flex-direction: column; align-items: stretch; }
    .sct-tpl-zone .sct-cta-btns > * { width: 100%; }
}

.sct-tpl-service-city { font-family: 'Inter', -apple-system, sans-serif; color: var(--text, #2a2a2a); background: #ffffff; line-height: 1.6; }

.sct-tpl-service-city h1,
.sct-tpl-service-city h2,
.sct-tpl-service-city h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; color: var(--primary, #2D5016); line-height: 1.2; }

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

.sct-tpl-service-city .sct-eyebrow { display: inline-block; font-size: 0.82rem; letter-spacing: 2px; color: var(--accent, #C8954A); text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }

.sct-tpl-service-city .sct-sec-title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 16px; }

.sct-tpl-service-city .sct-sec-sub { color: var(--text-light, #5a5a5a); font-size: 1.03rem; }

.sct-tpl-service-city .sct-section { padding: 88px 0; position: relative; }

@media (max-width: 768px) { .sct-tpl-service-city .sct-section { padding: 58px 0; } .sct-tpl-service-city .sct-sec-head { margin-bottom: 38px; } }

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 165px 0 95px;
    background: linear-gradient(135deg, rgba(31,56,16,0.90) 0%, rgba(45,80,22,0.78) 100%), url('/images/service_1_1778612087_6a037777d9f6c.webp') center/cover no-repeat;
    color: #ffffff;
}

.sct-tpl-service-city .sct-hero::after {
    content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 55px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path fill='%23F5F1E8' d='M0,30 C360,60 720,0 1080,30 C1260,45 1380,55 1440,40 L1440,60 L0,60 Z'/></svg>") center/cover no-repeat;
    pointer-events: none;
}

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

.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;
}

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

.sct-tpl-service-city .sct-breadcrumb a:hover { color: var(--accent, #C8954A); }

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

.sct-tpl-service-city .sct-bc-current { color: var(--accent, #C8954A); 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: 8px;
    padding: 7px 16px; border-radius: 30px;
    background: rgba(200,149,74,0.22); border: 1px solid rgba(200,149,74,0.85);
    color: #F0D9B0; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase;
}

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

.sct-tpl-service-city .sct-hero-text h1 .sct-accent { color: var(--accent, #C8954A); font-style: italic; }

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

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

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

.sct-tpl-service-city .sct-btn-primary { background: var(--accent, #C8954A); color: #ffffff; box-shadow: 0 6px 20px rgba(200,149,74,0.4); }

.sct-tpl-service-city .sct-btn-primary:hover { background: var(--accent-dark, #a87836); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,149,74,0.55); }

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

.sct-tpl-service-city .sct-btn-outline:hover { background: #ffffff; color: var(--primary, #2D5016); border-color: #ffffff; }

.sct-tpl-service-city .sct-btn-dark { background: var(--primary, #2D5016); color: #ffffff; }

.sct-tpl-service-city .sct-btn-dark:hover { background: var(--primary-dark, #1f3810); transform: translateY(-2px); }

.sct-tpl-service-city .sct-hero-trust { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 30px; }

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

.sct-tpl-service-city .sct-hero-trust i { color: var(--accent, #C8954A); }

.sct-tpl-service-city .sct-hero-card {
    background: #ffffff; color: var(--text, #2a2a2a);
    border-radius: 20px; padding: 32px 28px;
    box-shadow: 0 20px 50px rgba(45,80,22,0.28);
    border-top: 5px solid var(--accent, #C8954A);
}

.sct-tpl-service-city .sct-hero-card h2 { font-size: 1.45rem; margin-bottom: 6px; }

.sct-tpl-service-city .sct-hero-card-sub { font-size: 0.9rem; color: var(--text-light, #5a5a5a); margin-bottom: 20px; }

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

.sct-tpl-service-city .sct-hero-card-list li {
    display: flex; align-items: flex-start; gap: 13px;
    padding: 13px 0; border-bottom: 1px solid var(--border, #e0dccf);
}

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

.sct-tpl-service-city .sct-hero-card-list i {
    color: var(--accent, #C8954A); font-size: 1rem;
    background: rgba(200,149,74,0.14);
    width: 38px; height: 38px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
}

.sct-tpl-service-city .sct-hcl-label { display: block; font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light, #5a5a5a); margin-bottom: 2px; }

.sct-tpl-service-city .sct-hcl-value { display: block; font-weight: 600; color: var(--primary, #2D5016); font-size: 0.97rem; overflow-wrap: anywhere; }

.sct-tpl-service-city .sct-hcl-value a { color: var(--primary, #2D5016); text-decoration: none; }

.sct-tpl-service-city .sct-hcl-value a:hover { color: var(--accent, #C8954A); }

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

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

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 70px; }
    .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-breadcrumb { font-size: 0.78rem; gap: 6px; }
    .sct-tpl-service-city .sct-hero-card { padding: 26px 22px; }
}

.sct-tpl-service-city .sct-stats-band { background: var(--cream, #F5F1E8); padding: 62px 0; }

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

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

.sct-tpl-service-city .sct-stat-item { text-align: center; padding: 14px 10px; }

.sct-tpl-service-city .sct-stat-value {
    font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800; color: var(--primary, #2D5016); display: block; line-height: 1.05;
    overflow-wrap: anywhere;
}

.sct-tpl-service-city .sct-stat-label { font-size: 0.92rem; color: var(--text-light, #5a5a5a); margin-top: 9px; display: block; }

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

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

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

.sct-tpl-service-city .sct-intro-inner h2 { font-size: clamp(1.65rem, 3.4vw, 2.4rem); margin-bottom: 22px; }

.sct-tpl-service-city .sct-intro-inner p { color: var(--text-light, #5a5a5a); font-size: 1.04rem; margin-bottom: 18px; line-height: 1.8; }

.sct-tpl-service-city .sct-intro-inner p strong { color: var(--primary, #2D5016); font-weight: 600; }

.sct-tpl-service-city .sct-intro-rule { width: 70px; height: 3px; background: var(--accent, #C8954A); border-radius: 3px; margin-bottom: 26px; }

.sct-tpl-service-city .sct-services-section { background: var(--cream, #F5F1E8); }

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

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

.sct-tpl-service-city .sct-service-card {
    background: #ffffff; border-radius: 18px; overflow: hidden;
    border: 1px solid var(--border, #e0dccf);
    box-shadow: 0 10px 30px rgba(45,80,22,0.08);
    transition: all 0.4s ease; display: flex; flex-direction: column;
}

.sct-tpl-service-city .sct-service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(45,80,22,0.15); border-color: var(--primary-light, #7A9B5C); }

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

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

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

.sct-tpl-service-city .sct-service-body p { font-size: 0.95rem; color: var(--text-light, #5a5a5a); }

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

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

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

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

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

.sct-tpl-service-city .sct-step-card {
    background: var(--cream, #F5F1E8); border-radius: 16px;
    padding: 30px 22px; text-align: center; position: relative;
    border: 1px solid var(--border, #e0dccf); transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-step-card:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(45,80,22,0.12); }

.sct-tpl-service-city .sct-step-num {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--primary, #2D5016); color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700;
}

.sct-tpl-service-city .sct-step-icon { font-size: 1.75rem; color: var(--accent, #C8954A); margin: 10px 0 15px; }

.sct-tpl-service-city .sct-step-card h3 { font-size: 1.08rem; margin-bottom: 9px; }

.sct-tpl-service-city .sct-step-card p { font-size: 0.9rem; color: var(--text-light, #5a5a5a); }

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

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

.sct-tpl-service-city .sct-why-section { background: var(--primary, #2D5016); color: #ffffff; }

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

.sct-tpl-service-city .sct-why-section .sct-sec-sub { color: rgba(255,255,255,0.86); }

.sct-tpl-service-city .sct-why-section .sct-eyebrow { color: var(--accent, #C8954A); }

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

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

.sct-tpl-service-city .sct-why-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.11);
    border-radius: 16px; padding: 32px 24px; text-align: center; transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-why-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-5px); }

.sct-tpl-service-city .sct-why-icon {
    width: 62px; height: 62px; border-radius: 50%;
    background: var(--accent, #C8954A); color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.45rem; margin: 0 auto 18px;
}

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

.sct-tpl-service-city .sct-why-card p { color: rgba(255,255,255,0.82); font-size: 0.92rem; }

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

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

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

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

.sct-tpl-service-city .sct-zones-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; list-style: none; padding: 0; margin: 0; }

.sct-tpl-service-city .sct-zones-list li {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--cream, #F5F1E8); color: var(--text, #2a2a2a);
    padding: 12px 20px; border-radius: 30px;
    border-left: 3px solid var(--accent, #C8954A);
    font-weight: 500; font-size: 0.93rem; overflow-wrap: anywhere;
}

.sct-tpl-service-city .sct-zones-list li::before {
    content: '\f3c5'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: var(--primary, #2D5016); font-size: 0.85rem;
}

.sct-tpl-service-city .sct-zones-list li a { color: inherit; text-decoration: none; }

.sct-tpl-service-city .sct-zones-list li a:hover { color: var(--accent-dark, #a87836); }

.sct-tpl-service-city .sct-zones-note { text-align: center; margin-top: 26px; color: var(--text-light, #5a5a5a); font-size: 0.95rem; }

.sct-tpl-service-city .sct-usecase-section { background: var(--cream, #F5F1E8); }

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

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

.sct-tpl-service-city .sct-usecase-img-wrap { position: relative; }

.sct-tpl-service-city .sct-usecase-img {
    width: 100%; height: 420px; object-fit: cover;
    border-radius: 20px; box-shadow: 0 20px 50px rgba(45,80,22,0.15); display: block;
}

.sct-tpl-service-city .sct-usecase-badge {
    position: absolute; bottom: -22px; right: 18px;
    background: var(--accent, #C8954A); color: #ffffff;
    padding: 16px 24px; border-radius: 14px;
    box-shadow: 0 14px 32px rgba(45,80,22,0.22);
    font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem;
    display: flex; align-items: center; gap: 11px;
}

.sct-tpl-service-city .sct-usecase-content h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: 18px; }

.sct-tpl-service-city .sct-usecase-content p { color: var(--text-light, #5a5a5a); margin-bottom: 16px; font-size: 1.01rem; line-height: 1.8; }

.sct-tpl-service-city .sct-usecase-content strong { color: var(--primary, #2D5016); }

.sct-tpl-service-city .sct-usecase-content ul { list-style: none; padding: 0; margin: 22px 0 0; }

.sct-tpl-service-city .sct-usecase-content ul li { display: flex; align-items: flex-start; gap: 13px; padding: 9px 0; color: var(--text, #2a2a2a); }

.sct-tpl-service-city .sct-usecase-content ul li::before {
    content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: var(--accent, #C8954A); flex-shrink: 0; margin-top: 3px;
}

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

@media (max-width: 640px) { .sct-tpl-service-city .sct-usecase-img { height: 250px; } .sct-tpl-service-city .sct-usecase-badge { right: 12px; padding: 13px 18px; font-size: 0.9rem; } }

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

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

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

.sct-tpl-service-city .sct-engagement-card {
    background: #ffffff; border: 1px solid var(--border, #e0dccf);
    border-radius: 18px; padding: 34px 28px;
    box-shadow: 0 10px 30px rgba(45,80,22,0.07);
    border-top: 4px solid var(--accent, #C8954A);
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-engagement-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(45,80,22,0.14); }

.sct-tpl-service-city .sct-engagement-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--cream, #F5F1E8); color: var(--primary, #2D5016);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; margin-bottom: 18px;
}

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

.sct-tpl-service-city .sct-engagement-card p { color: var(--text-light, #5a5a5a); font-size: 0.95rem; }

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

.sct-tpl-service-city .sct-local-spec { background: var(--cream, #F5F1E8); }

.sct-tpl-service-city .sct-local-inner {
    max-width: 900px; margin: 0 auto;
    background: #ffffff; border-radius: 20px;
    padding: 44px 42px;
    box-shadow: 0 10px 30px rgba(45,80,22,0.08);
    border-left: 5px solid var(--primary-light, #7A9B5C);
}

.sct-tpl-service-city .sct-local-inner h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 18px; }

.sct-tpl-service-city .sct-local-inner p { color: var(--text-light, #5a5a5a); margin-bottom: 15px; line-height: 1.8; }

.sct-tpl-service-city .sct-local-inner strong { color: var(--primary, #2D5016); }

.sct-tpl-service-city .sct-local-inner ul { padding-left: 20px; color: var(--text-light, #5a5a5a); }

.sct-tpl-service-city .sct-local-inner li { margin-bottom: 9px; }

@media (max-width: 640px) { .sct-tpl-service-city .sct-local-inner { padding: 30px 24px; } }

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

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

.sct-tpl-service-city .sct-faq-item {
    background: var(--cream, #F5F1E8); border-radius: 14px;
    margin-bottom: 14px; overflow: hidden;
    border: 1px solid var(--border, #e0dccf);
}

.sct-tpl-service-city .sct-faq-item summary {
    padding: 21px 25px; font-weight: 600; color: var(--primary, #2D5016);
    cursor: pointer; list-style: none;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-size: 1.02rem; font-family: 'Playfair Display', Georgia, serif;
}

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

.sct-tpl-service-city .sct-faq-item summary::after {
    content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: var(--accent, #C8954A); font-size: 0.85rem; flex-shrink: 0; transition: transform 0.3s ease;
}

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

.sct-tpl-service-city .sct-faq-answer { padding: 0 25px 23px; color: var(--text-light, #5a5a5a); line-height: 1.75; font-size: 0.97rem; }

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

.sct-tpl-service-city .sct-maillage-section { background: var(--cream, #F5F1E8); padding: 66px 0; }

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

.sct-tpl-service-city .sct-maillage-head { text-align: center; max-width: 720px; margin: 0 auto 32px; }

.sct-tpl-service-city .sct-maillage-head h2 { font-size: clamp(1.4rem, 2.8vw, 1.95rem); margin-bottom: 10px; }

.sct-tpl-service-city .sct-maillage-head p { color: var(--text-light, #5a5a5a); font-size: 0.97rem; }

.sct-tpl-service-city .sct-maillage-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.sct-tpl-service-city .sct-maillage-links a {
    display: inline-flex; align-items: center; gap: 9px;
    background: #ffffff; color: var(--primary, #2D5016);
    border: 1px solid var(--border, #e0dccf);
    padding: 11px 20px; border-radius: 30px;
    text-decoration: none; font-size: 0.92rem; font-weight: 500;
    transition: all 0.3s ease; overflow-wrap: anywhere;
}

.sct-tpl-service-city .sct-maillage-section.sct-maillage-alt .sct-maillage-links a { background: var(--cream, #F5F1E8); }

.sct-tpl-service-city .sct-maillage-links a:hover { background: var(--primary, #2D5016); color: #ffffff; border-color: var(--primary, #2D5016); transform: translateY(-2px); }

.sct-tpl-service-city .sct-maillage-links a::before {
    content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--accent, #C8954A);
}

.sct-tpl-service-city .sct-maillage-links a:hover::before { color: #ffffff; }

.sct-tpl-service-city .sct-cta-final {
    background: linear-gradient(135deg, var(--primary, #2D5016) 0%, var(--primary-dark, #1f3810) 100%);
    color: #ffffff; padding: 78px 0; text-align: center;
}

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

.sct-tpl-service-city .sct-cta-final p { color: rgba(255,255,255,0.88); max-width: 640px; margin: 0 auto 32px; font-size: 1.04rem; }

.sct-tpl-service-city .sct-cta-icon { font-size: 2.6rem; color: var(--accent, #C8954A); margin-bottom: 20px; }

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

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-cta-btns { flex-direction: column; align-items: stretch; }
    .sct-tpl-service-city .sct-cta-btns > * { width: 100%; }
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 165px 0 95px;
    background: linear-gradient(135deg, rgba(31,56,16,0.90) 0%, rgba(45,80,22,0.78) 100%), url('/images/service_2_1778612108_6a03778cdeb2b.webp') center/cover no-repeat;
    color: #ffffff;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 165px 0 95px;
    background: linear-gradient(135deg, rgba(31,56,16,0.90) 0%, rgba(45,80,22,0.78) 100%), url('/images/service_5_1778612172_6a0377ccb1800.webp') center/cover no-repeat;
    color: #ffffff;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 165px 0 95px;
    background: linear-gradient(135deg, rgba(31,56,16,0.90) 0%, rgba(45,80,22,0.78) 100%), url('/images/service_1_1778612087_6a037777d9f6c.webp') center/cover no-repeat;
    color: #ffffff;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 165px 0 95px;
    background: linear-gradient(135deg, rgba(31,56,16,0.90) 0%, rgba(45,80,22,0.78) 100%), url('/images/service_3_1778612126_6a03779edc74a.webp') center/cover no-repeat;
    color: #ffffff;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 165px 0 95px;
    background: linear-gradient(135deg, rgba(31,56,16,0.90) 0%, rgba(45,80,22,0.78) 100%), url('/images/service_5_1778612172_6a0377ccb1800.webp') center/cover no-repeat;
    color: #ffffff;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 165px 0 95px;
    background: linear-gradient(135deg, rgba(31,56,16,0.90) 0%, rgba(45,80,22,0.78) 100%), url('/images/service_4_1778612147_6a0377b3778b0.webp') center/cover no-repeat;
    color: #ffffff;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 165px 0 95px;
    background: linear-gradient(135deg, rgba(31,56,16,0.90) 0%, rgba(45,80,22,0.78) 100%), url('/images/service_5_1778612172_6a0377ccb1800.webp') center/cover no-repeat;
    color: #ffffff;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 165px 0 95px;
    background: linear-gradient(135deg, rgba(31,56,16,0.90) 0%, rgba(45,80,22,0.78) 100%), url('/images/service_2_1778612108_6a03778cdeb2b.webp') center/cover no-repeat;
    color: #ffffff;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 165px 0 95px;
    background: linear-gradient(135deg, rgba(31,56,16,0.90) 0%, rgba(45,80,22,0.78) 100%), url('/images/service_6_1778612191_6a0377df01dc0.webp') center/cover no-repeat;
    color: #ffffff;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 165px 0 95px;
    background: linear-gradient(135deg, rgba(31,56,16,0.90) 0%, rgba(45,80,22,0.78) 100%), url('/images/service_6_1778612191_6a0377df01dc0.webp') center/cover no-repeat;
    color: #ffffff;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 165px 0 95px;
    background: linear-gradient(135deg, rgba(31,56,16,0.90) 0%, rgba(45,80,22,0.78) 100%), url('/images/service_3_1778612126_6a03779edc74a.webp') center/cover no-repeat;
    color: #ffffff;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 165px 0 95px;
    background: linear-gradient(135deg, rgba(31,56,16,0.90) 0%, rgba(45,80,22,0.78) 100%), url('/images/service_4_1778612147_6a0377b3778b0.webp') center/cover no-repeat;
    color: #ffffff;
}

.footer-social { display: flex; gap: 12px; margin-top: 18px; }

.footer-social a {
            width: 40px; height: 40px; border-radius: 50%;
            background: rgba(255,255,255,0.1); color: var(--white);
            display: flex; align-items: center; justify-content: center;
            text-decoration: none; transition: all 0.3s ease;
        }

.footer-contact-item {
            display: flex; align-items: flex-start; gap: 12px;
            margin-bottom: 14px; font-size: 0.92rem;
            color: rgba(255,255,255,0.75);
        }

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

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

.footer-bottom-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

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

@media (max-width: 600px) {
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }

.page-hero {
            position: relative;
            padding: 190px 0 130px;
            display: flex; align-items: center;
            background: linear-gradient(135deg, rgba(31, 56, 16, 0.88) 0%, rgba(45, 80, 22, 0.78) 100%), url('/images/hero_1778612027_6a03773be0232.webp') center/cover no-repeat;
            color: var(--white);
            text-align: center;
        }

.page-hero::after {
            content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px;
            background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path fill='%23ffffff' d='M0,30 C360,60 720,0 1080,30 C1260,45 1380,55 1440,40 L1440,60 L0,60 Z'/></svg>") center/cover no-repeat;
        }

.page-hero h1 { color: var(--white); margin-bottom: 16px; }

.page-hero p { color: rgba(255,255,255,0.9); font-size: 1.12rem; max-width: 620px; margin: 0 auto; }

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

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

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

.breadcrumb i { font-size: 0.7rem; color: var(--accent); }

@media (max-width: 768px) { .page-hero { padding: 150px 0 100px; } }

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

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

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

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

.block-icon {
            width: 54px; height: 54px; flex-shrink: 0;
            background: var(--primary); color: var(--white);
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.25rem;
        }

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

.block-head p { font-size: 0.93rem; }

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

.chip {
            display: inline-flex; align-items: center; gap: 10px;
            background: var(--cream);
            border: 1px solid var(--border);
            border-left: 3px solid var(--accent);
            border-radius: 30px;
            padding: 12px 22px;
            color: var(--text); font-weight: 500; font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

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

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

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

.chip-lg {
            flex: 0 1 calc(33.333% - 10px);
            min-width: 260px;
            border-radius: 14px;
            padding: 18px 22px;
            background: var(--white);
            box-shadow: var(--shadow);
        }

.chip-home {
            background: var(--accent); color: var(--white);
            border-color: var(--accent); border-left-color: var(--primary);
            box-shadow: 0 6px 20px rgba(200, 149, 74, 0.35);
        }

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

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

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

.service-group {
            background: var(--cream);
            border-radius: 18px;
            padding: 28px 26px;
            margin-bottom: 20px;
            border: 1px solid var(--border);
        }

.service-group h3 {
            display: flex; align-items: center; gap: 12px;
            font-size: 1.2rem; margin-bottom: 18px;
        }

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

.service-group .chip { background: var(--white); }

.sitemap-cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            margin-top: 80px;
        }

.sitemap-cta i.big-icon { font-size: 3.2rem; color: var(--accent); margin-bottom: 18px; }

.sitemap-cta h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 12px; }

.sitemap-cta p { color: rgba(255,255,255,0.85); margin-bottom: 26px; }

.sitemap-cta .hero-buttons { justify-content: center; }

@media (max-width: 768px) {
            .chip-lg { flex: 0 1 100%; }
            .service-group { padding: 22px 18px; }
            .sitemap-cta { padding: 40px 24px; }
            .block-head { gap: 12px; }
            .block-icon { width: 46px; height: 46px; font-size: 1.05rem; }
        }