:root {
            --primary: #3A5A6C;
            --primary-dark: #2C3E4A;
            --secondary: #A8B89E;
            --accent: #C9A96E;
            --cream: #F5F2EC;
            --white: #FFFFFF;
            --text: #2C3E4A;
            --text-light: #6B7C8A;
            --border: #E8E2D8;
        }

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

html { scroll-behavior: smooth; }

body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            line-height: 1.7;
            background: var(--white);
            font-weight: 400;
        }

h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            line-height: 1.2;
            color: var(--primary-dark);
        }

h2 { font-size: 2.5rem; margin-bottom: 16px; }

h3 { font-size: 1.5rem; }

a { text-decoration: none; color: inherit; }

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

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

.header {
            position: fixed;
            top: 0; left: 0; right: 0;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(58,90,108,0.08);
            z-index: 1000;
        }

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

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

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

.logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: 0.5px;
        }

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

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

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

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

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

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

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

.btn-cta-nav:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(58,90,108,0.25);
        }

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

.hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding-top: 140px;
            padding-bottom: 80px;
            background: linear-gradient(135deg, rgba(58,90,108,0.85) 0%, rgba(44,62,74,0.75) 100%), url('https://webflash.pro/images/hero_1778664324_6a0443843fcdb.webp') center/cover;
            color: var(--white);
        }

.hero-content { max-width: 780px; }

.hero-eyebrow {
            display: inline-block;
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-size: 1.1rem;
            color: var(--accent);
            margin-bottom: 16px;
            letter-spacing: 1px;
        }

.hero h1 {
            font-size: 3.4rem;
            color: var(--white);
            margin-bottom: 24px;
            line-height: 1.15;
        }

.hero-subtitle {
            font-size: 1.2rem;
            line-height: 1.7;
            margin-bottom: 36px;
            max-width: 600px;
            opacity: 0.95;
        }

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

.btn-primary {
            background: var(--accent);
            color: var(--primary-dark);
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

.btn-primary:hover {
            background: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

.btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 500;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            border: 1.5px solid rgba(255,255,255,0.5);
        }

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

.devis-section {
            background: var(--cream);
            padding: 80px 0;
            position: relative;
        }

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

.devis-intro h2 { margin-bottom: 20px; }

.devis-intro .ornament {
            display: inline-block;
            width: 60px;
            height: 1px;
            background: var(--accent);
            margin-bottom: 20px;
            vertical-align: middle;
        }

.devis-intro p {
            color: var(--text-light);
            margin-bottom: 24px;
            font-size: 1.05rem;
        }

.devis-perks { list-style: none; }

.devis-perks li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
            color: var(--text);
        }

.devis-perks i { color: var(--secondary); margin-top: 4px; }

.devis-card {
            background: var(--white);
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(58,90,108,0.12);
            border-top: 4px solid var(--accent);
        }

.devis-card h3 {
            margin-bottom: 24px;
            color: var(--primary);
        }

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

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

.form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            background: var(--cream);
            transition: all 0.3s;
        }

.form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--white);
        }

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

.form-submit {
            background: var(--primary);
            color: var(--white);
            padding: 14px 32px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

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

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

.stats-section {
            background: var(--primary);
            padding: 60px 0;
            color: var(--white);
        }

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

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

.stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 600;
            line-height: 1;
            margin-bottom: 8px;
            color: var(--white);
        }

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

.section { padding: 100px 0; }

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

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

.section-eyebrow {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--accent);
            font-size: 1.1rem;
            margin-bottom: 8px;
            display: block;
        }

.section-header p {
            color: var(--text-light);
            margin-top: 16px;
            font-size: 1.05rem;
        }

.ornament-center {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-top: 16px;
        }

.ornament-center span {
            width: 40px;
            height: 1px;
            background: var(--accent);
        }

.ornament-center i {
            color: var(--accent);
            font-size: 0.9rem;
        }

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

.service-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(58,90,108,0.08);
            transition: all 0.4s;
            max-width: 520px;
            width: 100%;
            border: 1px solid var(--border);
        }

.service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(58,90,108,0.15);
        }

.service-image {
            height: 280px;
            background-size: cover;
            background-position: center;
        }

.service-body { padding: 32px; }

.service-body h3 {
            color: var(--primary);
            margin-bottom: 12px;
        }

.service-body p {
            color: var(--text-light);
            margin-bottom: 20px;
        }

.service-features {
            list-style: none;
            border-top: 1px solid var(--border);
            padding-top: 20px;
        }

.service-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 0;
            color: var(--text);
            font-size: 0.95rem;
        }

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

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

.timeline {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

.timeline::before {
            content: '';
            position: absolute;
            left: 32px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--accent), var(--secondary), transparent);
        }

.timeline-item {
            position: relative;
            padding-left: 88px;
            padding-bottom: 40px;
        }

.timeline-icon {
            position: absolute;
            left: 0;
            top: 0;
            width: 64px;
            height: 64px;
            background: var(--white);
            border: 2px solid var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--primary);
            box-shadow: 0 4px 12px rgba(58,90,108,0.1);
        }

.timeline-item h4 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 6px;
        }

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

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

.about-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(58,90,108,0.18);
        }

.about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 480px;
        }

.about-image::after {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 2px solid var(--accent);
            border-radius: 12px;
            z-index: -1;
        }

.about-content .ornament {
            display: inline-block;
            width: 60px;
            height: 1px;
            background: var(--accent);
            margin-bottom: 20px;
        }

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

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

.about-signature {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--primary);
            font-size: 1.2rem;
            margin-top: 24px;
            padding-left: 16px;
            border-left: 3px solid var(--accent);
        }

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

.why-card {
            text-align: center;
            padding: 36px 24px;
            background: var(--white);
            border-radius: 12px;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }

.why-card:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(58,90,108,0.1);
        }

.why-icon {
            width: 72px;
            height: 72px;
            background: var(--cream);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary);
            font-size: 1.6rem;
        }

.why-card h3 {
            font-size: 1.25rem;
            margin-bottom: 12px;
            color: var(--primary);
        }

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

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

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

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

.zones-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 48px;
        }

.zone-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 40px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

.zone-card-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }

.zone-card-header i {
            font-size: 2rem;
            color: var(--accent);
        }

.zone-card h3 {
            color: var(--white);
            font-size: 1.6rem;
        }

.zone-card-num {
            color: var(--accent);
            font-size: 0.95rem;
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
        }

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

.zone-cities span {
            background: rgba(255,255,255,0.08);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.9rem;
            border: 1px solid rgba(255,255,255,0.1);
        }

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

.process-card {
            text-align: center;
            padding: 32px 20px;
            background: var(--white);
            border-radius: 12px;
            border: 1px solid var(--border);
            position: relative;
        }

.process-number {
            width: 48px;
            height: 48px;
            background: var(--accent);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 600;
            margin: 0 auto 16px;
        }

.process-card h4 {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 8px;
        }

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

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

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

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

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

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

.faq-question i {
            color: var(--accent);
            transition: transform 0.3s;
        }

details[open] .faq-question i { transform: rotate(180deg); }

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

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

.hours-card,
        .contact-info-card {
            background: var(--white);
            padding: 40px;
            border-radius: 12px;
            border: 1px solid var(--border);
            box-shadow: 0 10px 30px rgba(58,90,108,0.05);
        }

.hours-card h3,
        .contact-info-card h3 {
            color: var(--primary);
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border);
        }

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

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

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

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

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

.hours-time.closed { color: var(--text-light); font-style: italic; }

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

.contact-item-icon {
            width: 44px;
            height: 44px;
            background: var(--cream);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            flex-shrink: 0;
        }

.contact-item-content span {
            display: block;
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.contact-item-content a,
        .contact-item-content p {
            color: var(--text);
            font-weight: 500;
            line-height: 1.5;
        }

.contact-item-content a:hover { color: var(--primary); }

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

.contact-form-wrapper {
            background: var(--white);
            padding: 40px;
            border-radius: 12px;
            border: 1px solid var(--border);
            box-shadow: 0 10px 30px rgba(58,90,108,0.05);
        }

.contact-form-wrapper h3 {
            color: var(--primary);
            margin-bottom: 24px;
        }

.map-wrapper {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(58,90,108,0.1);
            height: 100%;
            min-height: 500px;
        }

.map-wrapper iframe {
            width: 100%;
            height: 100%;
            min-height: 500px;
            border: none;
            display: block;
        }

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

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

.footer-brand .logo-text { color: var(--white); }

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

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

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

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

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

.footer-col p.footer-title {
            color: var(--white);
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

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

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

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

.footer-col i {
            color: var(--accent);
            margin-right: 8px;
            font-size: 0.85rem;
        }

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

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

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

.footer-legal-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

.footer-legal-links a { cursor: pointer; }

.modal {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(44,62,74,0.85);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

.modal:target { display: flex; }

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

.modal-content p.modal-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 24px;
            font-weight: 600;
        }

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

.modal-content dl dt {
            font-weight: 600;
            color: var(--primary);
            margin-top: 12px;
        }

.modal-content dl dd {
            color: var(--text-light);
            margin-left: 0;
            margin-bottom: 8px;
        }

@media (max-width: 1024px) {
            .why-grid { grid-template-columns: repeat(2, 1fr); }
            .process-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
        }

@media (max-width: 768px) {
            .container { padding-left: 16px; padding-right: 16px; }
            h2 { font-size: 2rem; }
            .hero { padding-top: 120px; padding-bottom: 60px; min-height: auto; }
            .hero h1 { font-size: 2.2rem; }
            .hero-subtitle { font-size: 1.05rem; }
            .section { padding: 60px 0; }
            .devis-section { padding: 60px 0; }
            .devis-card { padding: 28px; }
            .devis-wrapper { grid-template-columns: 1fr; gap: 32px; }
            .about-grid { grid-template-columns: 1fr; gap: 40px; }
            .about-image::after { display: none; }
            .about-image img { min-height: 320px; }
            .zones-grid { grid-template-columns: 1fr; gap: 24px; }
            .zone-card { padding: 28px; }
            .hours-contact-grid { grid-template-columns: 1fr; gap: 24px; }
            .hours-card, .contact-info-card { padding: 28px; }
            .contact-grid { grid-template-columns: 1fr; gap: 28px; }
            .contact-form-wrapper { padding: 28px; }
            .map-wrapper, .map-wrapper iframe { min-height: 350px; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .timeline::before { left: 24px; }
            .timeline-item { padding-left: 72px; }
            .timeline-icon { width: 48px; height: 48px; font-size: 1.1rem; }
            .section-header { margin-bottom: 40px; }
            .stat-number { font-size: 2.4rem; }
            .hero-buttons { flex-direction: column; }
            .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; justify-content: center; }
        }

@media (max-width: 640px) {
            .stats-grid { grid-template-columns: 1fr; gap: 32px; }
            .why-grid { grid-template-columns: 1fr; }
            .process-grid { grid-template-columns: 1fr; }
        }

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

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

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

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

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

.sct-tpl-zone { color: var(--text, #2C3E4A); }

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(58,90,108,0.92) 0%, rgba(44,62,74,0.86) 100%), url('/images/service_1_1778664344_6a04439887a3c.webp') center/cover no-repeat;
    color: #FFFFFF;
}

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

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

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

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

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

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

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

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

.sct-tpl-zone .sct-bc-current { color: #C9A96E; font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1rem; }

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

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,169,110,0.18);
    border: 1px solid rgba(201,169,110,0.4);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #F5F2EC;
}

.sct-tpl-zone .sct-hero-badge i { color: #C9A96E; font-size: 0.8rem; }

.sct-tpl-zone .sct-hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #FFFFFF;
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 22px;
}

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 600px;
}

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

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

.sct-tpl-zone .sct-btn-primary:hover {
    background: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

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

.sct-tpl-zone .sct-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

.sct-tpl-zone .sct-hero-trust span { display: inline-flex; align-items: center; gap: 8px; }

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

.sct-tpl-zone .sct-hero-card {
    background: rgba(255,255,255,0.97);
    color: #2C3E4A;
    padding: 36px 32px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    border-top: 4px solid #C9A96E;
}

.sct-tpl-zone .sct-hero-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #3A5A6C;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.sct-tpl-zone .sct-hero-card-sub {
    color: #6B7C8A;
    font-size: 0.92rem;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #E8E2D8;
}

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

.sct-tpl-zone .sct-hero-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    font-size: 0.95rem;
}

.sct-tpl-zone .sct-hero-card-list li i {
    color: #3A5A6C;
    width: 32px;
    height: 32px;
    background: #F5F2EC;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.sct-tpl-zone .sct-hero-card-list li span { line-height: 1.45; }

.sct-tpl-zone .sct-hero-card-list li strong { display: block; color: #2C3E4A; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }

.sct-tpl-zone .sct-hero-card-list li span span { color: #6B7C8A; font-size: 0.92rem; }

.sct-tpl-zone .sct-hero-card-cta {
    display: block;
    text-align: center;
    background: #3A5A6C;
    color: #FFFFFF;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.sct-tpl-zone .sct-hero-card-cta:hover {
    background: #2C3E4A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(58,90,108,0.25);
}

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-zone .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 2.4rem; }
}

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

.sct-tpl-zone .sct-stats-band {
    background: #3A5A6C;
    padding: 60px 0;
    color: #FFFFFF;
}

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

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

.sct-tpl-zone .sct-stat-item i { font-size: 1.8rem; color: #C9A96E; margin-bottom: 12px; }

.sct-tpl-zone .sct-stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 6px;
    color: #FFFFFF;
}

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

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

@media (max-width: 640px) {
    .sct-tpl-zone .sct-stat-value { font-size: 2.2rem; }
}

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

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

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

.sct-tpl-zone .sct-section-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #C9A96E;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.sct-tpl-zone .sct-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #2C3E4A;
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-section-subtitle { color: #6B7C8A; font-size: 1.05rem; margin-top: 8px; }

.sct-tpl-zone .sct-ornament-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 16px;
}

.sct-tpl-zone .sct-ornament-center span { width: 40px; height: 1px; background: #C9A96E; }

.sct-tpl-zone .sct-ornament-center i { color: #C9A96E; font-size: 0.9rem; }

@media (max-width: 640px) {
    .sct-tpl-zone .sct-section { padding: 64px 0; }
    .sct-tpl-zone .sct-section-title { font-size: 1.8rem; }
}

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

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

.sct-tpl-zone .sct-intro-content p {
    color: #4A5868;
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.sct-tpl-zone .sct-intro-content strong { color: #3A5A6C; font-weight: 600; }

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

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

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

.sct-tpl-zone .sct-service-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(58,90,108,0.08);
    border: 1px solid #E8E2D8;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.sct-tpl-zone .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(58,90,108,0.15);
    border-color: #C9A96E;
}

.sct-tpl-zone .sct-service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

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

.sct-tpl-zone .sct-service-body h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #3A5A6C;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.sct-tpl-zone .sct-service-body p { color: #6B7C8A; font-size: 0.96rem; line-height: 1.7; margin-bottom: 20px; flex: 1; }

.sct-tpl-zone .sct-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C9A96E;
    font-weight: 600;
    font-size: 0.92rem;
    margin-top: auto;
}

.sct-tpl-zone .sct-service-card:hover .sct-service-link { color: #3A5A6C; }

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

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

.sct-tpl-zone .sct-zones-section {
    background: linear-gradient(135deg, #3A5A6C 0%, #2C3E4A 100%);
    color: #FFFFFF;
}

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

.sct-tpl-zone .sct-zones-section .sct-section-eyebrow { color: #C9A96E; }

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

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

.sct-tpl-zone .sct-zones-list span {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.sct-tpl-zone .sct-zones-list span:hover {
    background: rgba(201,169,110,0.18);
    border-color: rgba(201,169,110,0.5);
}

.sct-tpl-zone .sct-zones-list span i { color: #C9A96E; font-size: 0.8rem; }

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

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

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

.sct-tpl-zone .sct-usecase-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(58,90,108,0.18);
}

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

.sct-tpl-zone .sct-usecase-content .sct-ornament {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: #C9A96E;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-usecase-content h2 {
    font-family: 'Cormorant Garamond', serif;
    color: #2C3E4A;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

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

.sct-tpl-zone .sct-usecase-signature {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #3A5A6C;
    font-size: 1.15rem;
    margin-top: 22px;
    padding-left: 16px;
    border-left: 3px solid #C9A96E;
}

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

@media (max-width: 640px) {
    .sct-tpl-zone .sct-usecase-content h2 { font-size: 1.7rem; }
}

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

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

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

.sct-tpl-zone .sct-engagement-card {
    background: #FFFFFF;
    padding: 36px 30px;
    border-radius: 12px;
    border-top: 4px solid #C9A96E;
    box-shadow: 0 10px 30px rgba(58,90,108,0.06);
}

.sct-tpl-zone .sct-engagement-icon {
    width: 60px;
    height: 60px;
    background: #F5F2EC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3A5A6C;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.sct-tpl-zone .sct-engagement-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #3A5A6C;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.sct-tpl-zone .sct-engagement-card p { color: #6B7C8A; font-size: 0.98rem; line-height: 1.7; }

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

.sct-tpl-zone .sct-local-spec { background: #FFFFFF; padding: 80px 0; }

.sct-tpl-zone .sct-local-spec-inner {
    max-width: 920px;
    margin: 0 auto;
    background: #F5F2EC;
    border-left: 4px solid #C9A96E;
    border-radius: 8px;
    padding: 40px 44px;
}

.sct-tpl-zone .sct-local-spec-inner h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #3A5A6C;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.sct-tpl-zone .sct-local-spec-inner p { color: #4A5868; font-size: 1rem; line-height: 1.8; margin-bottom: 12px; }

.sct-tpl-zone .sct-local-spec-inner strong { color: #3A5A6C; }

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

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

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

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

.sct-tpl-zone .sct-faq-q {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    color: #3A5A6C;
    list-style: none;
    font-size: 1.02rem;
    gap: 16px;
}

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

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

.sct-tpl-zone details[open] .sct-faq-q i { transform: rotate(180deg); }

.sct-tpl-zone .sct-faq-a {
    padding: 0 28px 22px;
    color: #6B7C8A;
    line-height: 1.75;
    font-size: 0.98rem;
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-faq-q { padding: 18px 20px; font-size: 0.98rem; }
    .sct-tpl-zone .sct-faq-a { padding: 0 20px 18px; }
}

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

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

.sct-tpl-zone .sct-maillage-header .sct-section-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #C9A96E;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.sct-tpl-zone .sct-maillage-header h2 {
    font-family: 'Cormorant Garamond', serif;
    color: #2C3E4A;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.sct-tpl-zone .sct-maillage-header p { color: #6B7C8A; }

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

.sct-tpl-zone .sct-maillage-list a {
    background: #F5F2EC;
    color: #3A5A6C;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid #E8E2D8;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sct-tpl-zone .sct-maillage-list a:hover {
    background: #3A5A6C;
    color: #FFFFFF;
    border-color: #3A5A6C;
    transform: translateY(-2px);
}

.sct-tpl-zone .sct-maillage-list a i { color: #C9A96E; font-size: 0.8rem; }

.sct-tpl-zone .sct-maillage-list a:hover i { color: #FFFFFF; }

.sct-tpl-zone .sct-cta-final {
    background: linear-gradient(135deg, #3A5A6C 0%, #2C3E4A 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.sct-tpl-zone .sct-cta-final h2 {
    font-family: 'Cormorant Garamond', serif;
    color: #FFFFFF;
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

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

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

@media (max-width: 640px) {
    .sct-tpl-zone .sct-cta-final h2 { font-size: 1.8rem; }
    .sct-tpl-zone .sct-cta-final-btns { flex-direction: column; align-items: stretch; padding: 0 24px; }
    .sct-tpl-zone .sct-cta-final-btns > * { width: 100%; justify-content: center; }
}

.sct-tpl-service-city { color: var(--text, #2C3E4A); }

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(58,90,108,0.92) 0%, rgba(44,62,74,0.86) 100%), url('/images/service_1_1778664344_6a04439887a3c.webp') center/cover no-repeat;
    color: #FFFFFF;
}

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

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-bc-current { color: #C9A96E; font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1rem; }

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

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,169,110,0.18);
    border: 1px solid rgba(201,169,110,0.4);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #F5F2EC;
}

.sct-tpl-service-city .sct-hero-badge i { color: #C9A96E; font-size: 0.8rem; }

.sct-tpl-service-city .sct-hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #FFFFFF;
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 22px;
}

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 600px;
}

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

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

.sct-tpl-service-city .sct-btn-primary:hover {
    background: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

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

.sct-tpl-service-city .sct-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

.sct-tpl-service-city .sct-hero-trust span { display: inline-flex; align-items: center; gap: 8px; }

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

.sct-tpl-service-city .sct-hero-card {
    background: rgba(255,255,255,0.97);
    color: #2C3E4A;
    padding: 36px 32px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    border-top: 4px solid #C9A96E;
}

.sct-tpl-service-city .sct-hero-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #3A5A6C;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.sct-tpl-service-city .sct-hero-card-sub {
    color: #6B7C8A;
    font-size: 0.92rem;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #E8E2D8;
}

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

.sct-tpl-service-city .sct-hero-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    font-size: 0.95rem;
}

.sct-tpl-service-city .sct-hero-card-list li i {
    color: #3A5A6C;
    width: 32px;
    height: 32px;
    background: #F5F2EC;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.sct-tpl-service-city .sct-hero-card-list li span { line-height: 1.45; }

.sct-tpl-service-city .sct-hero-card-list li strong { display: block; color: #2C3E4A; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }

.sct-tpl-service-city .sct-hero-card-list li span span { color: #6B7C8A; font-size: 0.92rem; }

.sct-tpl-service-city .sct-hero-card-cta {
    display: block;
    text-align: center;
    background: #3A5A6C;
    color: #FFFFFF;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.sct-tpl-service-city .sct-hero-card-cta:hover {
    background: #2C3E4A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(58,90,108,0.25);
}

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

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

.sct-tpl-service-city .sct-stats-band {
    background: #3A5A6C;
    padding: 60px 0;
    color: #FFFFFF;
}

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

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

.sct-tpl-service-city .sct-stat-item i { font-size: 1.8rem; color: #C9A96E; margin-bottom: 12px; }

.sct-tpl-service-city .sct-stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 6px;
    color: #FFFFFF;
}

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

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

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-stat-value { font-size: 2.2rem; }
}

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

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

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

.sct-tpl-service-city .sct-section-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #C9A96E;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.sct-tpl-service-city .sct-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #2C3E4A;
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-section-subtitle { color: #6B7C8A; font-size: 1.05rem; margin-top: 8px; }

.sct-tpl-service-city .sct-ornament-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 16px;
}

.sct-tpl-service-city .sct-ornament-center span { width: 40px; height: 1px; background: #C9A96E; }

.sct-tpl-service-city .sct-ornament-center i { color: #C9A96E; font-size: 0.9rem; }

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-section { padding: 64px 0; }
    .sct-tpl-service-city .sct-section-title { font-size: 1.8rem; }
}

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

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

.sct-tpl-service-city .sct-intro-content p {
    color: #4A5868;
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.sct-tpl-service-city .sct-intro-content strong { color: #3A5A6C; font-weight: 600; }

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

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

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

.sct-tpl-service-city .sct-service-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(58,90,108,0.08);
    border: 1px solid #E8E2D8;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(58,90,108,0.15);
}

.sct-tpl-service-city .sct-service-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

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

.sct-tpl-service-city .sct-service-body h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #3A5A6C;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

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

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

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

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

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

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

.sct-tpl-service-city .sct-process-card {
    text-align: center;
    padding: 30px 18px;
    background: #FFFFFF;
    border: 1px solid #E8E2D8;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-process-card:hover {
    border-color: #C9A96E;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(58,90,108,0.1);
}

.sct-tpl-service-city .sct-process-num {
    width: 44px;
    height: 44px;
    background: #C9A96E;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 auto 16px;
}

.sct-tpl-service-city .sct-process-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #3A5A6C;
    margin-bottom: 8px;
}

.sct-tpl-service-city .sct-process-card p { color: #6B7C8A; font-size: 0.9rem; line-height: 1.6; }

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

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

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

.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 {
    text-align: center;
    padding: 36px 24px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E8E2D8;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-why-card:hover {
    border-color: #C9A96E;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(58,90,108,0.1);
}

.sct-tpl-service-city .sct-why-icon {
    width: 72px;
    height: 72px;
    background: #F5F2EC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #3A5A6C;
    font-size: 1.5rem;
}

.sct-tpl-service-city .sct-why-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #3A5A6C;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-why-card p { color: #6B7C8A; font-size: 0.94rem; line-height: 1.65; }

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

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

.sct-tpl-service-city .sct-zones-section {
    background: linear-gradient(135deg, #3A5A6C 0%, #2C3E4A 100%);
    color: #FFFFFF;
}

.sct-tpl-service-city .sct-zones-section .sct-section-title { color: #FFFFFF; }

.sct-tpl-service-city .sct-zones-section .sct-section-eyebrow { color: #C9A96E; }

.sct-tpl-service-city .sct-zones-section .sct-section-subtitle { color: rgba(255,255,255,0.85); }

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

.sct-tpl-service-city .sct-zones-list span {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-zones-list span:hover {
    background: rgba(201,169,110,0.18);
    border-color: rgba(201,169,110,0.5);
}

.sct-tpl-service-city .sct-zones-list span i { color: #C9A96E; font-size: 0.8rem; }

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

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

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

.sct-tpl-service-city .sct-usecase-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(58,90,108,0.18);
}

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

.sct-tpl-service-city .sct-usecase-content .sct-ornament {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: #C9A96E;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-usecase-content h2 {
    font-family: 'Cormorant Garamond', serif;
    color: #2C3E4A;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

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

.sct-tpl-service-city .sct-usecase-signature {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #3A5A6C;
    font-size: 1.15rem;
    margin-top: 22px;
    padding-left: 16px;
    border-left: 3px solid #C9A96E;
}

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

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-usecase-content h2 { font-size: 1.7rem; }
}

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

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

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

.sct-tpl-service-city .sct-engagement-card {
    background: #FFFFFF;
    padding: 36px 30px;
    border-radius: 12px;
    border-top: 4px solid #C9A96E;
    box-shadow: 0 10px 30px rgba(58,90,108,0.06);
}

.sct-tpl-service-city .sct-engagement-icon {
    width: 60px;
    height: 60px;
    background: #F5F2EC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3A5A6C;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.sct-tpl-service-city .sct-engagement-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #3A5A6C;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

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

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

.sct-tpl-service-city .sct-local-spec { background: #FFFFFF; padding: 80px 0; }

.sct-tpl-service-city .sct-local-spec-inner {
    max-width: 920px;
    margin: 0 auto;
    background: #F5F2EC;
    border-left: 4px solid #C9A96E;
    border-radius: 8px;
    padding: 40px 44px;
}

.sct-tpl-service-city .sct-local-spec-inner h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #3A5A6C;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.sct-tpl-service-city .sct-local-spec-inner p { color: #4A5868; font-size: 1rem; line-height: 1.8; margin-bottom: 12px; }

.sct-tpl-service-city .sct-local-spec-inner strong { color: #3A5A6C; }

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

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

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

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

.sct-tpl-service-city .sct-faq-q {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    color: #3A5A6C;
    list-style: none;
    font-size: 1.02rem;
    gap: 16px;
}

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

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

.sct-tpl-service-city details[open] .sct-faq-q i { transform: rotate(180deg); }

.sct-tpl-service-city .sct-faq-a {
    padding: 0 28px 22px;
    color: #6B7C8A;
    line-height: 1.75;
    font-size: 0.98rem;
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-faq-q { padding: 18px 20px; font-size: 0.98rem; }
    .sct-tpl-service-city .sct-faq-a { padding: 0 20px 18px; }
}

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

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

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

.sct-tpl-service-city .sct-maillage-header h2 {
    font-family: 'Cormorant Garamond', serif;
    color: #2C3E4A;
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.sct-tpl-service-city .sct-maillage-header p { color: #6B7C8A; }

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

.sct-tpl-service-city .sct-maillage-list a {
    background: #F5F2EC;
    color: #3A5A6C;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid #E8E2D8;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.sct-tpl-service-city .sct-maillage-list a i { color: #C9A96E; font-size: 0.8rem; }

.sct-tpl-service-city .sct-maillage-list a:hover i { color: #FFFFFF; }

.sct-tpl-service-city .sct-cta-final {
    background: linear-gradient(135deg, #3A5A6C 0%, #2C3E4A 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.sct-tpl-service-city .sct-cta-final h2 {
    font-family: 'Cormorant Garamond', serif;
    color: #FFFFFF;
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

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

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

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-cta-final h2 { font-size: 1.8rem; }
    .sct-tpl-service-city .sct-cta-final-btns { flex-direction: column; align-items: stretch; padding: 0 24px; }
    .sct-tpl-service-city .sct-cta-final-btns > * { width: 100%; justify-content: center; }
}

.sct-tpl-service-hub { color: var(--text, #2C3E4A); }

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(58,90,108,0.92) 0%, rgba(44,62,74,0.86) 100%), url('/images/service_1_1778664344_6a04439887a3c.webp') center/cover no-repeat;
    color: #FFFFFF;
}

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

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

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

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

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

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

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

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

.sct-tpl-service-hub .sct-bc-current { color: #C9A96E; font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1rem; }

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

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,169,110,0.18);
    border: 1px solid rgba(201,169,110,0.4);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #F5F2EC;
}

.sct-tpl-service-hub .sct-hero-badge i { color: #C9A96E; font-size: 0.8rem; }

.sct-tpl-service-hub .sct-hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #FFFFFF;
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 22px;
}

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 600px;
}

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

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

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

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

.sct-tpl-service-hub .sct-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

.sct-tpl-service-hub .sct-hero-trust span { display: inline-flex; align-items: center; gap: 8px; }

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

.sct-tpl-service-hub .sct-hero-card {
    background: rgba(255,255,255,0.97);
    color: #2C3E4A;
    padding: 36px 32px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    border-top: 4px solid #C9A96E;
}

.sct-tpl-service-hub .sct-hero-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #3A5A6C;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.sct-tpl-service-hub .sct-hero-card-sub {
    color: #6B7C8A;
    font-size: 0.92rem;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #E8E2D8;
}

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

.sct-tpl-service-hub .sct-hero-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    font-size: 0.95rem;
}

.sct-tpl-service-hub .sct-hero-card-list li i {
    color: #3A5A6C;
    width: 32px;
    height: 32px;
    background: #F5F2EC;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.sct-tpl-service-hub .sct-hero-card-list li span { line-height: 1.45; }

.sct-tpl-service-hub .sct-hero-card-list li strong { display: block; color: #2C3E4A; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }

.sct-tpl-service-hub .sct-hero-card-list li span span { color: #6B7C8A; font-size: 0.92rem; }

.sct-tpl-service-hub .sct-hero-card-cta {
    display: block;
    text-align: center;
    background: #3A5A6C;
    color: #FFFFFF;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.sct-tpl-service-hub .sct-hero-card-cta:hover {
    background: #2C3E4A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(58,90,108,0.25);
}

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

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

.sct-tpl-service-hub .sct-stats-band {
    background: #3A5A6C;
    padding: 60px 0;
    color: #FFFFFF;
}

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

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

.sct-tpl-service-hub .sct-stat-item i { font-size: 1.8rem; color: #C9A96E; margin-bottom: 12px; }

.sct-tpl-service-hub .sct-stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 6px;
    color: #FFFFFF;
}

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

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

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-stat-value { font-size: 2.2rem; }
}

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

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

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

.sct-tpl-service-hub .sct-section-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #C9A96E;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.sct-tpl-service-hub .sct-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #2C3E4A;
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 14px;
}

.sct-tpl-service-hub .sct-section-subtitle { color: #6B7C8A; font-size: 1.05rem; margin-top: 8px; }

.sct-tpl-service-hub .sct-ornament-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 16px;
}

.sct-tpl-service-hub .sct-ornament-center span { width: 40px; height: 1px; background: #C9A96E; }

.sct-tpl-service-hub .sct-ornament-center i { color: #C9A96E; font-size: 0.9rem; }

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-section { padding: 64px 0; }
    .sct-tpl-service-hub .sct-section-title { font-size: 1.8rem; }
}

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

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

.sct-tpl-service-hub .sct-intro-content p {
    color: #4A5868;
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

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

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

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

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

.sct-tpl-service-hub .sct-service-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(58,90,108,0.08);
    border: 1px solid #E8E2D8;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(58,90,108,0.15);
}

.sct-tpl-service-hub .sct-service-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

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

.sct-tpl-service-hub .sct-service-body h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #3A5A6C;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

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

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

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

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

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

.sct-tpl-service-hub .sct-process-card {
    text-align: center;
    padding: 30px 18px;
    background: #FFFFFF;
    border: 1px solid #E8E2D8;
    border-radius: 12px;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-process-card:hover {
    border-color: #C9A96E;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(58,90,108,0.1);
}

.sct-tpl-service-hub .sct-process-num {
    width: 44px;
    height: 44px;
    background: #C9A96E;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 auto 16px;
}

.sct-tpl-service-hub .sct-process-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #3A5A6C;
    margin-bottom: 8px;
}

.sct-tpl-service-hub .sct-process-card p { color: #6B7C8A; font-size: 0.9rem; line-height: 1.6; }

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

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

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

.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 {
    text-align: center;
    padding: 36px 24px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E8E2D8;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-why-card:hover {
    border-color: #C9A96E;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(58,90,108,0.1);
}

.sct-tpl-service-hub .sct-why-icon {
    width: 72px;
    height: 72px;
    background: #F5F2EC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #3A5A6C;
    font-size: 1.5rem;
}

.sct-tpl-service-hub .sct-why-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #3A5A6C;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-why-card p { color: #6B7C8A; font-size: 0.94rem; line-height: 1.65; }

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

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

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

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

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

.sct-tpl-service-hub .sct-usecase-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(58,90,108,0.18);
}

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

.sct-tpl-service-hub .sct-usecase-content .sct-ornament {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: #C9A96E;
    margin-bottom: 18px;
}

.sct-tpl-service-hub .sct-usecase-content h2 {
    font-family: 'Cormorant Garamond', serif;
    color: #2C3E4A;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

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

.sct-tpl-service-hub .sct-usecase-signature {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #3A5A6C;
    font-size: 1.15rem;
    margin-top: 22px;
    padding-left: 16px;
    border-left: 3px solid #C9A96E;
}

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

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-usecase-content h2 { font-size: 1.7rem; }
}

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

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

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

.sct-tpl-service-hub .sct-engagement-card {
    background: #FFFFFF;
    padding: 36px 30px;
    border-radius: 12px;
    border-top: 4px solid #C9A96E;
    box-shadow: 0 10px 30px rgba(58,90,108,0.06);
}

.sct-tpl-service-hub .sct-engagement-icon {
    width: 60px;
    height: 60px;
    background: #F5F2EC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3A5A6C;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.sct-tpl-service-hub .sct-engagement-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #3A5A6C;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

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

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

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

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

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

.sct-tpl-service-hub .sct-faq-q {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    color: #3A5A6C;
    list-style: none;
    font-size: 1.02rem;
    gap: 16px;
}

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

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

.sct-tpl-service-hub details[open] .sct-faq-q i { transform: rotate(180deg); }

.sct-tpl-service-hub .sct-faq-a {
    padding: 0 28px 22px;
    color: #6B7C8A;
    line-height: 1.75;
    font-size: 0.98rem;
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-faq-q { padding: 18px 20px; font-size: 0.98rem; }
    .sct-tpl-service-hub .sct-faq-a { padding: 0 20px 18px; }
}

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

.sct-tpl-service-hub .sct-maillage-section.sct-maillage-alt {
    background: linear-gradient(135deg, #3A5A6C 0%, #2C3E4A 100%);
    color: #FFFFFF;
}

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

.sct-tpl-service-hub .sct-maillage-header .sct-section-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #C9A96E;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.sct-tpl-service-hub .sct-maillage-header h2 {
    font-family: 'Cormorant Garamond', serif;
    color: #2C3E4A;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-maillage-section.sct-maillage-alt .sct-maillage-header h2 { color: #FFFFFF; }

.sct-tpl-service-hub .sct-maillage-header p { color: #6B7C8A; font-size: 1.02rem; }

.sct-tpl-service-hub .sct-maillage-section.sct-maillage-alt .sct-maillage-header p { color: rgba(255,255,255,0.85); }

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

.sct-tpl-service-hub .sct-maillage-list a {
    background: #F5F2EC;
    color: #3A5A6C;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid #E8E2D8;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sct-tpl-service-hub .sct-maillage-list a:hover {
    background: #3A5A6C;
    color: #FFFFFF;
    border-color: #3A5A6C;
    transform: translateY(-2px);
}

.sct-tpl-service-hub .sct-maillage-list a i { color: #C9A96E; font-size: 0.8rem; }

.sct-tpl-service-hub .sct-maillage-list a:hover i { color: #FFFFFF; }

.sct-tpl-service-hub .sct-maillage-section.sct-maillage-alt .sct-maillage-list a {
    background: rgba(255,255,255,0.08);
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.15);
}

.sct-tpl-service-hub .sct-maillage-section.sct-maillage-alt .sct-maillage-list a:hover {
    background: #C9A96E;
    border-color: #C9A96E;
    color: #2C3E4A;
}

.sct-tpl-service-hub .sct-maillage-section.sct-maillage-alt .sct-maillage-list a i { color: #C9A96E; }

.sct-tpl-service-hub .sct-maillage-section.sct-maillage-alt .sct-maillage-list a:hover i { color: #2C3E4A; }

.sct-tpl-service-hub .sct-cta-final {
    background: linear-gradient(135deg, #3A5A6C 0%, #2C3E4A 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.sct-tpl-service-hub .sct-cta-final h2 {
    font-family: 'Cormorant Garamond', serif;
    color: #FFFFFF;
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

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

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

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-cta-final h2 { font-size: 1.8rem; }
    .sct-tpl-service-hub .sct-cta-final-btns { flex-direction: column; align-items: stretch; padding: 0 24px; }
    .sct-tpl-service-hub .sct-cta-final-btns > * { width: 100%; justify-content: center; }
}

.sitemap-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.sitemap-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201,169,110,0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(168,184,158,0.12) 0%, transparent 40%);
    pointer-events: none;
}

.sitemap-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.sitemap-eyebrow {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: 1.5px;
}

.sitemap-hero h1 {
    font-size: 3.6rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.sitemap-hero p {
    font-size: 1.15rem;
    opacity: 0.92;
    margin-bottom: 28px;
}

.sitemap-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.sitemap-ornament span {
    width: 50px;
    height: 1px;
    background: var(--accent);
}

.sitemap-ornament i {
    color: var(--accent);
    font-size: 1rem;
}

.sitemap-section {
    padding: 80px 0;
}

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

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

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

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

.sitemap-block-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(58,90,108,0.08);
}

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

.sitemap-block-header h2 {
    font-size: 2rem;
    margin-bottom: 4px;
    color: var(--primary-dark);
}

.sitemap-block-header p {
    color: var(--text-light);
    font-size: 0.98rem;
    margin: 0;
}

.sitemap-subgroup {
    margin-bottom: 32px;
}

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

.sitemap-subgroup-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 3px solid var(--accent);
}

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(58,90,108,0.04);
}

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

.chip:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(58,90,108,0.18);
}

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

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

.chip-featured {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    padding: 14px 26px;
}

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

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

.chip-home {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
    padding: 14px 28px;
    font-weight: 600;
}

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

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

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

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

.footer-col p.footer-title {
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.footer-col li {
    margin-bottom: 10px;
    font-size: 0.92rem;
    opacity: 0.85;
    line-height: 1.6;
}

.footer-col li a { transition: color 0.3s; }

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

.footer-col li i {
    color: var(--accent);
    margin-right: 8px;
    width: 14px;
}

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

.footer-legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 0.88rem;
}

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

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

@media (max-width: 768px) {
    .sitemap-hero { padding: 140px 0 70px; }
    .sitemap-hero h1 { font-size: 2.4rem; }
    .sitemap-hero p { font-size: 1rem; }
    .sitemap-section { padding: 60px 0; }
    .sitemap-block-header { flex-wrap: wrap; gap: 12px; }
    .sitemap-block-header h2 { font-size: 1.5rem; }
    .chip { padding: 10px 18px; font-size: 0.9rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}