.menu-check { display: none; }

.menu-icon-close { display: none; }

.menu-check:checked ~ .menu-toggle .menu-icon-open { display: none; }

.menu-check:checked ~ .menu-toggle .menu-icon-close { display: inline-block; }

.menu-check:checked ~ .nav { right: 0 !important; }

@media (max-width: 768px) {
    .header { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
    
    .menu-toggle.hamburger { font-size: 1.8rem !important; padding: 6px 10px !important; color: var(--primary) !important; }
    .menu-toggle.hamburger i { line-height: 1; }
}

body:has(#menuCheck:checked) { overflow: hidden; }

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

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

:root {
            --primary: #1B6B4A;
            --primary-dark: #145236;
            --primary-light: #e8f5ee;
            --secondary: #E8A825;
            --secondary-light: #fdf3dc;
            --text: #1a1a1a;
            --text-light: #555;
            --bg: #ffffff;
            --bg-alt: #f7f9f8;
            --bg-dark: #0f1f18;
            --radius: 12px;
            --shadow: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-hover: 0 8px 32px rgba(0,0,0,0.12);
        }

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

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

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

.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 rgba(27,107,74,0.1);
            transition: box-shadow 0.3s;
        }

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

.header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 12px;
            padding-bottom: 12px;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

.logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--primary);
            font-weight: 800;
            font-size: 1.3rem;
        }

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

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

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

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

.nav .btn-cta-nav {
            background: var(--primary);
            color: #fff !important;
            padding: 10px 22px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: background 0.3s, transform 0.2s;
            white-space: nowrap;
        }

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

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

.hamburger span {
            width: 26px;
            height: 3px;
            background: var(--text);
            border-radius: 2px;
            transition: all 0.3s;
        }

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

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

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

.hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 120px;
            padding-bottom: 60px;
            background: linear-gradient(135deg, rgba(15,31,24,0.85) 0%, rgba(27,107,74,0.7) 100%), url('https://webflash.pro/images/hero_1775394168_69d25d7895a7d.webp') center/cover no-repeat;
            color: #fff;
        }

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

.hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3.2rem);
            line-height: 1.15;
            margin-bottom: 20px;
        }

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

.hero-content p {
            font-size: 1.1rem;
            opacity: 0.92;
            margin-bottom: 28px;
            max-width: 520px;
        }

.hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 30px;
        }

.hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(8px);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.88rem;
            font-weight: 500;
        }

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

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

.btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--secondary);
            color: #1a1a1a;
            padding: 14px 30px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

.btn-primary:hover {
            background: #d49920;
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(232,168,37,0.4);
        }

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

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

.devis-card {
            background: rgba(255,255,255,0.97);
            border-radius: 16px;
            padding: 36px;
            color: var(--text);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

.devis-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 4px;
        }

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

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

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

.devis-card input,
        .devis-card textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: border-color 0.3s, box-shadow 0.3s;
            background: #fff;
        }

.devis-card input:focus,
        .devis-card textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(27,107,74,0.15);
        }

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

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

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

.devis-card .form-note {
            text-align: center;
            font-size: 0.82rem;
            color: var(--text-light);
            margin-top: 12px;
        }

.devis-card .form-note i {
            color: var(--primary);
        }

.aides-section {
            background: linear-gradient(135deg, var(--secondary-light) 0%, #fff8eb 100%);
            padding-top: 60px;
            padding-bottom: 60px;
            border-bottom: 3px solid var(--secondary);
        }

.aides-inner {
            text-align: center;
        }

.aides-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--secondary);
            color: #1a1a1a;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }

.aides-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            color: var(--text);
            margin-bottom: 12px;
        }

.aides-subtitle {
            font-size: 1.05rem;
            color: var(--text-light);
            max-width: 680px;
            margin: 0 auto 36px;
        }

.aides-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 900px;
            margin: 0 auto 30px;
        }

.aide-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 28px 20px;
            text-align: center;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--secondary);
            transition: transform 0.3s, box-shadow 0.3s;
        }

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

.aide-card i {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 12px;
        }

.aide-card-title {
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 8px;
            color: var(--text);
        }

.aide-card-desc {
            font-size: 0.88rem;
            color: var(--text-light);
            line-height: 1.6;
        }

.aides-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: #fff;
            padding: 14px 32px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s;
        }

.aides-cta:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

.chiffres-section {
            background: var(--primary);
            padding-top: 50px;
            padding-bottom: 50px;
        }

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

.chiffre-item .chiffre-value {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 6px;
        }

.chiffre-item .chiffre-label {
            font-size: 0.95rem;
            opacity: 0.9;
        }

.section {
            padding-top: 80px;
            padding-bottom: 80px;
        }

.section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary-light);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

.section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            color: var(--text);
            margin-bottom: 14px;
        }

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

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

.section-header .section-subtitle {
            margin-left: auto;
            margin-right: auto;
        }

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

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

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

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

.service-img-wrap {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

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

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

.service-body {
            padding: 24px;
        }

.service-body h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
        }

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

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

.engagement-card {
            text-align: center;
            padding: 36px 20px;
            background: var(--bg-alt);
            border-radius: var(--radius);
            border: 2px solid transparent;
            transition: all 0.3s;
        }

.engagement-card:hover {
            border-color: var(--primary);
            background: #fff;
            box-shadow: var(--shadow);
        }

.engagement-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-size: 1.5rem;
            color: var(--primary);
            transition: all 0.3s;
        }

.engagement-card:hover .engagement-icon {
            background: var(--primary);
            color: #fff;
        }

.engagement-card h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

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

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

.about-img {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-hover);
        }

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

.about-text .section-tag {
            margin-bottom: 12px;
        }

.about-text .section-title {
            text-align: left;
        }

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

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

.about-highlight {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.92rem;
            font-weight: 600;
        }

.about-highlight i {
            color: var(--primary);
            font-size: 1.1rem;
        }

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

.zones-content {
            text-align: center;
        }

.zones-map-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary);
            color: #fff;
            padding: 14px 28px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

.zones-map-badge i {
            font-size: 1.3rem;
        }

.zones-text {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1rem;
            color: var(--text-light);
        }

.zones-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            max-width: 800px;
            margin: 0 auto;
        }

.zone-tag {
            background: #fff;
            border: 2px solid var(--primary-light);
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--primary);
            transition: all 0.3s;
        }

.zone-tag:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

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

.faq-item {
            background: #fff;
            border-radius: var(--radius);
            margin-bottom: 14px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            overflow: hidden;
            border: 2px solid transparent;
            transition: border-color 0.3s;
        }

.faq-item.active {
            border-color: var(--primary);
        }

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

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

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

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

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

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

.horaires-card {
            max-width: 500px;
            margin: 0 auto;
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
        }

.horaires-card-header {
            background: var(--primary);
            color: #fff;
            padding: 20px 28px;
            text-align: center;
            font-weight: 700;
            font-size: 1.1rem;
        }

.horaires-card-header i {
            margin-right: 8px;
        }

.horaires-list {
            padding: 8px 0;
        }

.horaire-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 28px;
            border-bottom: 1px solid #f0f0f0;
            font-size: 0.95rem;
        }

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

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

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

.horaire-row.ferme .horaire-hours {
            color: #dc2626;
            font-weight: 600;
        }

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

.contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }

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

.contact-info-icon {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            border-radius: 12px;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
        }

.contact-info-text span {
            display: block;
            font-weight: 700;
            font-size: 0.92rem;
            margin-bottom: 2px;
        }

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

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

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

.contact-map iframe {
            display: block;
        }

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

.contact-form-section label {
            display: block;
            font-weight: 600;
            font-size: 0.88rem;
            margin-bottom: 6px;
        }

.contact-form-section input,
        .contact-form-section textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

.contact-form-section input:focus,
        .contact-form-section textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(27,107,74,0.15);
        }

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

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

.contact-form-section .btn-submit:hover {
            background: var(--primary-dark);
        }

.footer {
            background: var(--bg-dark);
            color: rgba(255,255,255,0.8);
            padding-top: 60px;
            padding-bottom: 0;
        }

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

.footer-brand .logo {
            color: #fff;
            margin-bottom: 16px;
        }

.footer-brand .logo img {
            height: 40px;
            width: auto;
        }

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

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

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

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

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

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

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

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

.footer-contact-item a:hover {
            color: #fff;
        }

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

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

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

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

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

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

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

.modal-close:hover {
            color: var(--text);
        }

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

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

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

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

.galerie-item {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 1;
            box-shadow: var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
        }

.galerie-item:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: var(--shadow-hover);
        }

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

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

.galerie-item::after {
            content: '\f00e';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            inset: 0;
            background: rgba(27,107,74,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s;
        }

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

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

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

.lightbox-overlay img {
            max-width: 90vw;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 10px 50px rgba(0,0,0,0.5);
            animation: lightboxIn 0.3s ease;
        }

@keyframes lightboxIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

.lightbox-close {
            position: absolute;
            top: 20px;
            right: 28px;
            background: none;
            border: none;
            color: #fff;
            font-size: 2.2rem;
            cursor: pointer;
            z-index: 3001;
            transition: transform 0.2s, color 0.2s;
            line-height: 1;
        }

.lightbox-close:hover {
            transform: scale(1.2);
            color: var(--secondary);
        }

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

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

.lightbox-prev { left: 20px; }

.lightbox-next { right: 20px; }

@media (max-width: 1024px) {
            .galerie-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

@media (max-width: 768px) {
            .galerie-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }

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

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

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

            .hero-content {
                text-align: center;
            }

            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-badges {
                justify-content: center;
            }

            .hero-cta-group {
                justify-content: center;
            }

            .devis-card {
                max-width: 500px;
                margin: 0 auto;
            }

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

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

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

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }

@media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: #fff;
                flex-direction: column;
                padding: 80px 30px 30px;
                box-shadow: -4px 0 20px rgba(0,0,0,0.15);
                transition: right 0.3s;
                gap: 20px;
                z-index: 999;
            }

            .nav.open {
                right: 0;
            }

            .nav a {
                font-size: 1.05rem;
            }

            .nav .btn-cta-nav {
                text-align: center;
                padding: 12px 24px;
            }

            .hamburger {
                display: flex;
                z-index: 1001;
            }

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

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

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

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

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .section {
                padding-top: 60px;
                padding-bottom: 60px;
            }
        }

@media (max-width: 640px) {
            .chiffres-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

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

            .about-highlights {
                grid-template-columns: 1fr;
            }

            .hero-cta-group {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }
        }

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

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(15,31,24,0.88) 0%, rgba(27,107,74,0.78) 100%), url('/images/service_1_1775394192_69d25d9037dde.webp') center/cover no-repeat;
    color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

.sct-tpl-zone .sct-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    line-height: 1.18;
    margin-bottom: 18px;
    color: #fff;
}

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

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.05rem;
    opacity: 0.93;
    margin-bottom: 26px;
    max-width: 560px;
}

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

.sct-tpl-zone .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E8A825;
    color: #1a1a1a;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    transition: all 0.3s;
}

.sct-tpl-zone .sct-btn-primary:hover { background: #d49920; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,168,37,0.4); }

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

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

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

.sct-tpl-zone .sct-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    opacity: 0.9;
}

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

.sct-tpl-zone .sct-hero-card {
    background: rgba(255,255,255,0.97);
    border-radius: 16px;
    padding: 32px;
    color: #1a1a1a;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.sct-tpl-zone .sct-hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #1B6B4A;
    margin-bottom: 18px;
}

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

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

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

.sct-tpl-zone .sct-hero-card-list i {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #e8f5ee;
    color: #1B6B4A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-hero-card-list strong { display: block; color: #1a1a1a; margin-bottom: 2px; }

.sct-tpl-zone .sct-hero-card-list span { color: #555; }

.sct-tpl-zone .sct-hero-card-cta {
    display: block;
    text-align: center;
    background: #1B6B4A;
    color: #fff;
    padding: 13px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
}

.sct-tpl-zone .sct-hero-card-cta:hover { background: #145236; }

@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%; }
}

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

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

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

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

.sct-tpl-zone .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: #E8A825;
    margin-bottom: 6px;
}

.sct-tpl-zone .sct-stat-label {
    font-size: 0.92rem;
    opacity: 0.92;
}

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

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

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

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

.sct-tpl-zone .sct-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f5ee;
    color: #1B6B4A;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.sct-tpl-zone .sct-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: #1a1a1a;
    margin-bottom: 14px;
    line-height: 1.25;
}

.sct-tpl-zone .sct-section-subtitle {
    font-size: 1.02rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

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

.sct-tpl-zone .sct-intro-content strong { color: #1B6B4A; }

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

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

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

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

.sct-tpl-zone .sct-zones-content { text-align: center; }

.sct-tpl-zone .sct-zones-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1B6B4A;
    color: #fff;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 26px;
}

.sct-tpl-zone .sct-zones-text {
    max-width: 720px;
    margin: 0 auto 28px;
    font-size: 1rem;
    color: #555;
}

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

.sct-tpl-zone .sct-zone-tag {
    background: #fff;
    border: 2px solid #e8f5ee;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #1B6B4A;
    text-decoration: none;
    transition: all 0.3s;
}

.sct-tpl-zone .sct-zone-tag:hover {
    background: #1B6B4A;
    color: #fff;
    border-color: #1B6B4A;
}

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

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

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

.sct-tpl-zone .sct-usecase-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

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

.sct-tpl-zone .sct-usecase-text .sct-section-title { text-align: left; }

.sct-tpl-zone .sct-usecase-text p {
    color: #555;
    margin-bottom: 16px;
    font-size: 0.98rem;
    line-height: 1.75;
}

.sct-tpl-zone .sct-usecase-text strong { color: #1B6B4A; }

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

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

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

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

.sct-tpl-zone .sct-engagement-card {
    text-align: center;
    padding: 36px 22px;
    background: #f7f9f8;
    border-radius: 12px;
    border-bottom: 4px solid #E8A825;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-zone .sct-engagement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.sct-tpl-zone .sct-engagement-icon {
    font-size: 2rem;
    color: #1B6B4A;
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-engagement-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

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

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

.sct-tpl-zone .sct-local-spec {
    background: linear-gradient(135deg, #fdf3dc 0%, #fff8eb 100%);
    border-left: 5px solid #E8A825;
    padding: 36px;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-local-spec h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-local-spec p {
    color: #444;
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 12px;
}

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

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

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

.sct-tpl-zone .sct-faq-item {
    background: #f7f9f8;
    border-radius: 12px;
    margin-bottom: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.sct-tpl-zone .sct-faq-item.sct-active { border-color: #1B6B4A; background: #fff; }

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

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

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

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

.sct-tpl-zone .sct-faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: #555;
    line-height: 1.75;
}

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

.sct-tpl-zone .sct-maillage-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 24px;
}

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

.sct-tpl-zone .sct-maillage-list a {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #1B6B4A;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

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

.sct-tpl-zone .sct-cta-final {
    background: linear-gradient(135deg, #1B6B4A 0%, #145236 100%);
    padding: 70px 0;
    color: #fff;
    text-align: center;
}

.sct-tpl-zone .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin-bottom: 14px;
    color: #fff;
}

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

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

@media (max-width: 640px) {
    .sct-tpl-zone .sct-cta-final-btns { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
    .sct-tpl-zone .sct-cta-final-btns > * { width: 100%; justify-content: center; }
}

.sct-tpl-service-hub { font-family: 'Inter', sans-serif; color: #1a1a1a; line-height: 1.7; }

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(15,31,24,0.88) 0%, rgba(27,107,74,0.78) 100%), url('/images/service_1_1775394192_69d25d9037dde.webp') center/cover no-repeat;
    color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

.sct-tpl-service-hub .sct-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    line-height: 1.18;
    margin-bottom: 18px;
    color: #fff;
}

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

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.05rem;
    opacity: 0.93;
    margin-bottom: 26px;
    max-width: 560px;
}

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

.sct-tpl-service-hub .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E8A825;
    color: #1a1a1a;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-btn-primary:hover { background: #d49920; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,168,37,0.4); }

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

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

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

.sct-tpl-service-hub .sct-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    opacity: 0.9;
}

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

.sct-tpl-service-hub .sct-hero-card {
    background: rgba(255,255,255,0.97);
    border-radius: 16px;
    padding: 32px;
    color: #1a1a1a;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.sct-tpl-service-hub .sct-hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #1B6B4A;
    margin-bottom: 18px;
}

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

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

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

.sct-tpl-service-hub .sct-hero-card-list i {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #e8f5ee;
    color: #1B6B4A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-hero-card-list strong { display: block; color: #1a1a1a; margin-bottom: 2px; }

.sct-tpl-service-hub .sct-hero-card-list span { color: #555; }

.sct-tpl-service-hub .sct-hero-card-cta {
    display: block;
    text-align: center;
    background: #1B6B4A;
    color: #fff;
    padding: 13px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
}

.sct-tpl-service-hub .sct-hero-card-cta:hover { background: #145236; }

@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%; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 120px 0 60px; }
    .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-hero-card { padding: 24px; }
}

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

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

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

.sct-tpl-service-hub .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: #E8A825;
    margin-bottom: 6px;
}

.sct-tpl-service-hub .sct-stat-label {
    font-size: 0.92rem;
    opacity: 0.92;
}

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

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

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

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

.sct-tpl-service-hub .sct-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f5ee;
    color: #1B6B4A;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: #1a1a1a;
    margin-bottom: 14px;
    line-height: 1.25;
}

.sct-tpl-service-hub .sct-section-subtitle {
    font-size: 1.02rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

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

.sct-tpl-service-hub .sct-intro-content strong { color: #1B6B4A; }

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

.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: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.sct-tpl-service-hub .sct-service-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

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

.sct-tpl-service-hub .sct-service-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

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

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

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

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

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

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

.sct-tpl-service-hub .sct-step-card {
    text-align: center;
    padding: 28px 18px;
    background: #f7f9f8;
    border-radius: 12px;
    border-top: 4px solid #1B6B4A;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.sct-tpl-service-hub .sct-step-num {
    counter-increment: step;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1B6B4A;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 14px;
}

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

.sct-tpl-service-hub .sct-step-icon {
    font-size: 1.6rem;
    color: #E8A825;
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-step-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.sct-tpl-service-hub .sct-step-card p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.55;
}

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

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

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

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

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

.sct-tpl-service-hub .sct-why-card {
    background: #fff;
    padding: 32px 22px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-why-card:hover {
    border-color: #1B6B4A;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.sct-tpl-service-hub .sct-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    color: #1B6B4A;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-why-card:hover .sct-why-icon {
    background: #1B6B4A;
    color: #fff;
}

.sct-tpl-service-hub .sct-why-card h3 {
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

@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: #fff; }

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

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

.sct-tpl-service-hub .sct-usecase-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

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

.sct-tpl-service-hub .sct-usecase-text .sct-section-title { text-align: left; }

.sct-tpl-service-hub .sct-usecase-text p {
    color: #555;
    margin-bottom: 16px;
    font-size: 0.98rem;
    line-height: 1.75;
}

.sct-tpl-service-hub .sct-usecase-text strong { color: #1B6B4A; }

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

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

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

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

.sct-tpl-service-hub .sct-engagement-card {
    text-align: center;
    padding: 36px 22px;
    background: #fff;
    border-radius: 12px;
    border-bottom: 4px solid #E8A825;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.sct-tpl-service-hub .sct-engagement-icon {
    font-size: 2rem;
    color: #1B6B4A;
    margin-bottom: 14px;
}

.sct-tpl-service-hub .sct-engagement-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

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

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

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

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

.sct-tpl-service-hub .sct-faq-item.sct-active { border-color: #1B6B4A; background: #fff; }

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

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

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

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

.sct-tpl-service-hub .sct-faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: #555;
    line-height: 1.75;
}

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

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

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

.sct-tpl-service-hub .sct-maillage-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f5ee;
    color: #1B6B4A;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-maillage-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.4vw, 1.9rem);
    color: #1a1a1a;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-maillage-subtitle {
    font-size: 0.98rem;
    color: #555;
    max-width: 640px;
    margin: 0 auto;
}

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

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

.sct-tpl-service-hub .sct-maillage-cities a {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 11px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #1B6B4A;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sct-tpl-service-hub .sct-maillage-cities a::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #E8A825;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-maillage-cities a:hover {
    background: #1B6B4A;
    color: #fff;
    border-color: #1B6B4A;
}

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

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

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

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

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

.sct-tpl-service-hub .sct-maillage-list a {
    background: #f7f9f8;
    border: 1px solid #e2e8f0;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #1B6B4A;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

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

.sct-tpl-service-hub .sct-cta-final {
    background: linear-gradient(135deg, #1B6B4A 0%, #145236 100%);
    padding: 70px 0;
    color: #fff;
    text-align: center;
}

.sct-tpl-service-hub .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin-bottom: 14px;
    color: #fff;
}

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

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

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-cta-final-btns { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
    .sct-tpl-service-hub .sct-cta-final-btns > * { width: 100%; justify-content: center; }
}

.sct-tpl-service-city { font-family: 'Inter', sans-serif; color: var(--text, #1a1a1a); line-height: 1.7; }

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(15,31,24,0.88) 0%, rgba(27,107,74,0.78) 100%), url('/images/service_5_1775394279_69d25de7b6fae.webp') center/cover no-repeat;
    color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.05rem;
    opacity: 0.93;
    margin-bottom: 26px;
    max-width: 560px;
}

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

.sct-tpl-service-city .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E8A825;
    color: #1a1a1a;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-btn-primary:hover {
    background: #d49920;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232,168,37,0.4);
}

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

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

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

.sct-tpl-service-city .sct-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    opacity: 0.9;
}

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

.sct-tpl-service-city .sct-hero-card {
    background: rgba(255,255,255,0.97);
    border-radius: 16px;
    padding: 32px;
    color: #1a1a1a;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.sct-tpl-service-city .sct-hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #1B6B4A;
    margin-bottom: 18px;
}

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

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

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

.sct-tpl-service-city .sct-hero-card-list i {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #e8f5ee;
    color: #1B6B4A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sct-tpl-service-city .sct-hero-card-list strong {
    display: block;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.sct-tpl-service-city .sct-hero-card-list span { color: #555; }

.sct-tpl-service-city .sct-hero-card-cta {
    display: block;
    text-align: center;
    background: #1B6B4A;
    color: #fff;
    padding: 13px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
}

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

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

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 60px; }
    .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-hero-card { padding: 24px; }
}

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

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

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

.sct-tpl-service-city .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    font-weight: 700;
    color: #E8A825;
    margin-bottom: 6px;
}

.sct-tpl-service-city .sct-stat-label {
    font-size: 0.92rem;
    opacity: 0.92;
}

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

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

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

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

.sct-tpl-service-city .sct-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f5ee;
    color: #1B6B4A;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

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

.sct-tpl-service-city .sct-section-subtitle {
    font-size: 1.02rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

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

.sct-tpl-service-city .sct-intro-content strong { color: #1B6B4A; }

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

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

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

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

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

.sct-tpl-service-city .sct-service-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

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

.sct-tpl-service-city .sct-service-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

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

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

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

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

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

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

.sct-tpl-service-city .sct-step-card {
    text-align: center;
    padding: 28px 18px;
    background: #f7f9f8;
    border-radius: 12px;
    border-top: 4px solid #1B6B4A;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-city .sct-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.sct-tpl-service-city .sct-step-num {
    counter-increment: step;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1B6B4A;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-step-num::before { content: counter(step); }

.sct-tpl-service-city .sct-step-icon {
    font-size: 1.6rem;
    color: #E8A825;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-step-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.sct-tpl-service-city .sct-step-card p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.55;
}

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

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

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

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

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

.sct-tpl-service-city .sct-why-card {
    background: #fff;
    padding: 32px 22px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-why-card:hover {
    border-color: #1B6B4A;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.sct-tpl-service-city .sct-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    color: #1B6B4A;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-why-card:hover .sct-why-icon {
    background: #1B6B4A;
    color: #fff;
}

.sct-tpl-service-city .sct-why-card h3 {
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

@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: #fff; }

.sct-tpl-service-city .sct-zones-content { text-align: center; }

.sct-tpl-service-city .sct-zones-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1B6B4A;
    color: #fff;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 26px;
}

.sct-tpl-service-city .sct-zones-text {
    max-width: 720px;
    margin: 0 auto 28px;
    font-size: 1rem;
    color: #555;
}

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

.sct-tpl-service-city .sct-zone-tag {
    background: #fff;
    border: 2px solid #e8f5ee;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #1B6B4A;
    text-decoration: none;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-zone-tag:hover {
    background: #1B6B4A;
    color: #fff;
    border-color: #1B6B4A;
}

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

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

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

.sct-tpl-service-city .sct-usecase-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

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

.sct-tpl-service-city .sct-usecase-text .sct-section-title { text-align: left; }

.sct-tpl-service-city .sct-usecase-text p {
    color: #555;
    margin-bottom: 16px;
    font-size: 0.98rem;
    line-height: 1.75;
}

.sct-tpl-service-city .sct-usecase-text strong { color: #1B6B4A; }

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

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

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

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

.sct-tpl-service-city .sct-engagement-card {
    text-align: center;
    padding: 36px 22px;
    background: #f7f9f8;
    border-radius: 12px;
    border-bottom: 4px solid #E8A825;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sct-tpl-service-city .sct-engagement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.sct-tpl-service-city .sct-engagement-icon {
    font-size: 2rem;
    color: #1B6B4A;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-engagement-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

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

.sct-tpl-service-city .sct-local-spec {
    background: linear-gradient(135deg, #fdf3dc 0%, #fff8eb 100%);
    border-left: 5px solid #E8A825;
    padding: 36px;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.sct-tpl-service-city .sct-local-spec h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-local-spec p {
    color: #444;
    font-size: 0.98rem;
    line-height: 1.75;
}

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

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

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

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

.sct-tpl-service-city .sct-faq-item.sct-active { border-color: #1B6B4A; }

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

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

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

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

.sct-tpl-service-city .sct-faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: #555;
    line-height: 1.75;
}

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

.sct-tpl-service-city .sct-maillage-section + .sct-maillage-section { background: #f7f9f8; padding-top: 50px; }

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

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

.sct-tpl-service-city .sct-maillage-list a {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #1B6B4A;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

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

.sct-tpl-service-city .sct-cta-final {
    background: linear-gradient(135deg, #1B6B4A 0%, #145236 100%);
    padding: 70px 0;
    color: #fff;
    text-align: center;
}

.sct-tpl-service-city .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin-bottom: 14px;
    color: #fff;
}

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

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

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

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(15,31,24,0.88) 0%, rgba(27,107,74,0.78) 100%), url('/images/service_4_1775394258_69d25dd236c2f.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(15,31,24,0.88) 0%, rgba(27,107,74,0.78) 100%), url('/images/service_2_1775394213_69d25da54ca16.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(15,31,24,0.88) 0%, rgba(27,107,74,0.78) 100%), url('/images/service_2_1775394213_69d25da54ca16.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(15,31,24,0.88) 0%, rgba(27,107,74,0.78) 100%), url('/images/service_2_1775394213_69d25da54ca16.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(15,31,24,0.88) 0%, rgba(27,107,74,0.78) 100%), url('/images/service_3_1775394234_69d25dbadab55.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(15,31,24,0.88) 0%, rgba(27,107,74,0.78) 100%), url('/images/service_3_1775394234_69d25dbadab55.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(15,31,24,0.88) 0%, rgba(27,107,74,0.78) 100%), url('/images/service_3_1775394234_69d25dbadab55.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(15,31,24,0.88) 0%, rgba(27,107,74,0.78) 100%), url('/images/service_4_1775394258_69d25dd236c2f.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(15,31,24,0.88) 0%, rgba(27,107,74,0.78) 100%), url('/images/service_4_1775394258_69d25dd236c2f.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(15,31,24,0.88) 0%, rgba(27,107,74,0.78) 100%), url('/images/service_1_1775394192_69d25d9037dde.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(15,31,24,0.88) 0%, rgba(27,107,74,0.78) 100%), url('/images/service_5_1775394279_69d25de7b6fae.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(15,31,24,0.88) 0%, rgba(27,107,74,0.78) 100%), url('/images/service_5_1775394279_69d25de7b6fae.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(15,31,24,0.88) 0%, rgba(27,107,74,0.78) 100%), url('/images/service_6_1775394302_69d25dfeb46f0.webp') center/cover no-repeat;
    color: #fff;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(15,31,24,0.88) 0%, rgba(27,107,74,0.78) 100%), url('/images/service_6_1775394302_69d25dfeb46f0.webp') center/cover no-repeat;
    color: #fff;
}

@media (max-width: 768px) {
    .hamburger {
        display: inline-flex;
    }
    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: #fff;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - 70px);
        padding: 30px 24px;
        gap: 20px;
        align-items: flex-start;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s;
    }
    .nav a {
        font-size: 1rem;
    }
}

.page-hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(232,168,37,0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
}

.page-hero .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 18px;
    color: #fff;
}

.page-hero .breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.page-hero .breadcrumb a:hover {
    text-decoration: underline;
}

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

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 14px;
}

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

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.92;
    max-width: 620px;
    margin: 0 auto;
}

.sitemap-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

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

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

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

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

.sitemap-block-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
}

.sitemap-block-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--text);
    margin-bottom: 2px;
}

.sitemap-block-subtitle {
    font-size: 0.92rem;
    color: var(--text-light);
}

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 2px solid var(--primary-light);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.chip:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(27,107,74,0.25);
}

.chip i {
    font-size: 0.85rem;
}

.chip.chip-secondary {
    border-color: var(--secondary-light);
    color: #8a5a00;
    background: #fffaf0;
}

.chip.chip-secondary:hover {
    background: var(--secondary);
    color: #1a1a1a;
    border-color: var(--secondary);
    box-shadow: 0 6px 16px rgba(232,168,37,0.35);
}

.chip.chip-zone {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    padding: 12px 22px;
    font-size: 0.95rem;
}

.chip.chip-zone:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(27,107,74,0.35);
}

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

.subcat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary);
    transition: transform 0.3s, box-shadow 0.3s;
}

.subcat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.subcat-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

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

.subcat-card .chip-grid {
    gap: 8px;
}

.subcat-card .chip {
    padding: 6px 14px;
    font-size: 0.85rem;
}

.cta-block {
    background: linear-gradient(135deg, var(--secondary-light) 0%, #fff8eb 100%);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    margin-top: 50px;
    border-left: 4px solid var(--secondary);
}

.cta-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--text);
    margin-bottom: 10px;
}

.cta-block p {
    color: var(--text-light);
    margin-bottom: 24px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.cta-block .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}

.cta-block .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27,107,74,0.3);
}

.footer {
    background: var(--bg-dark);
    color: #cbd5d0;
    padding-top: 70px;
    padding-bottom: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 48px;
    margin-bottom: 48px;
}

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

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

.footer-links a {
    color: #cbd5d0;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s;
}

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

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

.footer-contact-item a {
    color: #cbd5d0;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-bottom a {
    color: var(--secondary);
    text-decoration: none;
}

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

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

@media (max-width: 600px) {
    .page-hero {
        padding-top: 110px;
        padding-bottom: 50px;
    }
    .sitemap-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .sitemap-block-header {
        flex-direction: row;
        gap: 12px;
    }
    .sitemap-block-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .subcat-card {
        padding: 20px;
    }
    .cta-block {
        padding: 30px 20px;
    }
}