:root {
            --primary: #C8531C;
            --primary-dark: #A8431A;
            --primary-light: #E0683A;
            --secondary: #1F2A37;
            --secondary-light: #2D3A4A;
            --beige: #F5F1EC;
            --sand: #E8DFD3;
            --gold: #D4A574;
            --white: #FFFFFF;
            --text: #1F2A37;
            --text-light: #5A6573;
            --border: #E5DDD3;
            --shadow-sm: 0 2px 8px rgba(31,42,55,0.06);
            --shadow-md: 0 8px 24px rgba(31,42,55,0.10);
            --shadow-lg: 0 20px 50px rgba(31,42,55,0.15);
            --radius: 8px;
            --radius-lg: 16px;
        }

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

html { scroll-behavior: smooth; }

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

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }

h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }

h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

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

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

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

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

section { padding: 80px 0; }

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

.section-eyebrow {
            display: inline-block;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary);
            margin-bottom: 12px;
        }

.section-header h2 { margin-bottom: 16px; }

.section-header p {
            max-width: 640px;
            margin: 0 auto;
            font-size: 1.05rem;
        }

.btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 28px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: var(--radius);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

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

.btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

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

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

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

.btn-secondary:hover {
            background: var(--secondary-light);
            transform: translateY(-2px);
        }

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

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

.logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--secondary);
        }

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

.logo-text { white-space: nowrap; }

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

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

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

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

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

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

.nav .btn-cta-nav {
            background: var(--primary);
            color: var(--white) !important;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
        }

.nav .btn-cta-nav:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(200,83,28,0.3);
        }

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

.hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: var(--white);
            padding-top: 120px;
            padding-bottom: 80px;
            overflow: hidden;
        }

.hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('/images/hero_1779897359_6a17140f190c1.webp');
            background-size: cover;
            background-position: center;
            z-index: 1;
        }

.hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(31,42,55,0.88) 0%, rgba(31,42,55,0.65) 60%, rgba(200,83,28,0.55) 100%);
            z-index: 2;
        }

.hero-content {
            position: relative;
            z-index: 3;
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 60px;
            align-items: center;
            width: 100%;
        }

.hero-text .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: rgba(212,165,116,0.2);
            border: 1px solid rgba(212,165,116,0.4);
            color: var(--gold);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 24px;
        }

.hero-text h1 {
            color: var(--white);
            margin-bottom: 24px;
            line-height: 1.1;
        }

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

.hero-text p.lead {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 36px;
            max-width: 540px;
        }

.hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

.hero-trust {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }

.hero-trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255,255,255,0.85);
            font-size: 0.9rem;
        }

.hero-trust-item i { color: var(--gold); }

.hero-devis {
            background: var(--white);
            padding: 36px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            color: var(--text);
            border-top: 4px solid var(--primary);
        }

.hero-devis-header {
            text-align: center;
            margin-bottom: 24px;
        }

.hero-devis-header h3 {
            color: var(--secondary);
            margin-bottom: 6px;
            font-size: 1.5rem;
        }

.hero-devis-header p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

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

.hero-devis input,
        .hero-devis textarea {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 0.95rem;
            background: var(--beige);
            transition: all 0.2s ease;
        }

.hero-devis input:focus,
        .hero-devis textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(200,83,28,0.1);
        }

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

.hero-devis button {
            width: 100%;
            padding: 14px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-top: 6px;
            font-family: inherit;
        }

.hero-devis button:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

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

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

@media (max-width: 768px) {
            .hero { padding-top: 110px; min-height: auto; }
            .hero-devis { padding: 24px; }
            .hero-cta .btn { flex: 1; min-width: 140px; }
        }

.stats {
            background: var(--secondary);
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

.stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), var(--primary), var(--gold), transparent);
        }

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

.stat {
            text-align: center;
            color: var(--white);
            padding: 0 12px;
            position: relative;
        }

.stat:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -16px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 50px;
            background: rgba(255,255,255,0.15);
        }

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

.stat-label {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

@media (max-width: 768px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
            .stat:not(:last-child)::after { display: none; }
            .stat-number { font-size: 2.25rem; }
        }

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

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

.service-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            transition: all 0.35s ease;
            display: flex;
            flex-direction: column;
            width: calc(33.333% - 20px);
            min-width: 280px;
            max-width: 380px;
            border: 1px solid transparent;
            position: relative;
        }

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

.service-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--primary);
            color: var(--white);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 4px 12px rgba(200,83,28,0.4);
            z-index: 2;
        }

.service-image {
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        }

.service-image img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
            transition: transform 0.5s ease;
        }

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

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

.service-icon {
            width: 48px;
            height: 48px;
            background: var(--beige);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 16px;
        }

.service-card h3 {
            margin-bottom: 12px;
            font-size: 1.3rem;
        }

.service-body p {
            flex: 1;
            font-size: 0.95rem;
            margin-bottom: 18px;
        }

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

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

@media (max-width: 768px) {
            .service-card { width: 100%; max-width: 480px; }
        }

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

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

.why-card {
            text-align: center;
            padding: 32px 20px;
            background: var(--beige);
            border-radius: var(--radius-lg);
            transition: all 0.3s ease;
            border-top: 3px solid transparent;
        }

.why-card:hover {
            border-top-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

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

.why-card h3 {
            font-size: 1.15rem;
            margin-bottom: 10px;
        }

.why-card p { font-size: 0.92rem; }

@media (max-width: 768px) {
            .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
            .why-card { padding: 24px 16px; }
        }

.about { background: var(--beige); }

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

.about-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
        }

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

.about-image::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: var(--radius-lg);
            background: linear-gradient(180deg, transparent 60%, rgba(31,42,55,0.4) 100%);
        }

.about-experience {
            position: absolute;
            bottom: 24px;
            left: 24px;
            background: var(--primary);
            color: var(--white);
            padding: 20px 24px;
            border-radius: var(--radius);
            z-index: 2;
            box-shadow: var(--shadow-md);
        }

.about-experience strong {
            display: block;
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: var(--white);
        }

.about-experience span {
            font-size: 0.85rem;
            opacity: 0.95;
        }

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

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

.about-content p { margin-bottom: 16px; }

.about-quote {
            background: var(--white);
            border-left: 4px solid var(--primary);
            padding: 20px 24px;
            margin: 24px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
            font-style: italic;
            color: var(--secondary);
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
        }

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

.about-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
            color: var(--text);
            font-weight: 500;
        }

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

@media (max-width: 1024px) {
            .about-grid { grid-template-columns: 1fr; gap: 40px; }
            .about-image img { height: 420px; }
        }

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

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

.gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius);
            cursor: pointer;
        }

.gallery-item:nth-child(1) { grid-column: span 3; grid-row: span 2; }

.gallery-item:nth-child(2) { grid-column: span 3; }

.gallery-item:nth-child(3) { grid-column: span 2; }

.gallery-item:nth-child(4) { grid-column: span 1; }

.gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 1; }

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

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

.gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(200,83,28,0.85) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: flex-end;
            padding: 20px;
            color: var(--white);
        }

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

.gallery-overlay i {
            background: var(--white);
            color: var(--primary);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

@media (max-width: 1024px) {
            .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; }
            .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
            .gallery-item:nth-child(2) { grid-column: span 2; }
            .gallery-item:nth-child(3) { grid-column: span 2; }
            .gallery-item:nth-child(4) { grid-column: span 2; }
            .gallery-item:nth-child(5) { grid-column: span 4; }
        }

@media (max-width: 640px) {
            .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
            .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
            .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
            .gallery-item:nth-child(5) { grid-column: span 2; }
        }

.zones {
            background: var(--secondary);
            color: var(--white);
            position: relative;
        }

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

.zones .section-header p { color: rgba(255,255,255,0.8); }

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

.zones-info h3 {
            color: var(--gold);
            margin-bottom: 20px;
            font-size: 1.4rem;
        }

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

.zones-cities {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 24px;
        }

.zone-pill {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(212,165,116,0.3);
            color: var(--white);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            transition: all 0.2s ease;
        }

.zone-pill:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

.service-cities a:hover { text-decoration: underline; }

.zones-map {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius-lg);
            padding: 32px;
            text-align: center;
        }

.zones-map-icon {
            width: 80px;
            height: 80px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
        }

.zones-map h3 { color: var(--white); margin-bottom: 12px; }

.zones-map p { color: rgba(255,255,255,0.75); margin-bottom: 20px; }

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

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

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

.faq-item {
            background: var(--white);
            border-radius: var(--radius);
            margin-bottom: 12px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            border-left: 3px solid var(--primary);
        }

.faq-item summary {
            padding: 20px 24px;
            font-weight: 600;
            font-size: 1.05rem;
            cursor: pointer;
            color: var(--secondary);
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            transition: background 0.2s ease;
        }

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

.faq-item summary::after {
            content: '\f067';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--primary);
            font-size: 0.9rem;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

.faq-item[open] summary::after { content: '\f068'; }

.faq-item summary:hover { background: var(--beige); }

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

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

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

.contact-info {
            background: var(--secondary);
            color: var(--white);
            padding: 40px;
            border-radius: var(--radius-lg);
        }

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

.contact-item {
            display: flex;
            gap: 16px;
            padding: 18px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

.contact-item:last-of-type { border-bottom: none; }

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

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

.contact-item-text a, .contact-item-text p {
            color: var(--white);
            font-size: 1rem;
            font-weight: 500;
        }

.hours-card {
            background: var(--white);
            margin-top: 24px;
            padding: 24px;
            border-radius: var(--radius);
        }

.hours-card h4 {
            color: var(--secondary);
            margin-bottom: 16px;
            font-size: 1.1rem;
        }

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

.hours-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.92rem;
        }

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

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

.hours-time { color: var(--text-light); text-align: right; }

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

.contact-form-wrapper {
            background: var(--beige);
            padding: 40px;
            border-radius: var(--radius-lg);
        }

.contact-form-wrapper h3 { margin-bottom: 8px; }

.contact-form-wrapper > p { margin-bottom: 24px; font-size: 0.95rem; }

#contactForm .form-group { margin-bottom: 16px; }

#contactForm label {
            display: block;
            margin-bottom: 6px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--secondary);
        }

#contactForm input,
        #contactForm textarea {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 0.95rem;
            background: var(--white);
            transition: all 0.2s ease;
        }

#contactForm input:focus,
        #contactForm textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(200,83,28,0.1);
        }

#contactForm textarea { resize: vertical; min-height: 110px; }

#contactForm button {
            background: var(--primary);
            color: var(--white);
            padding: 14px 32px;
            border: none;
            border-radius: var(--radius);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: inherit;
        }

#contactForm button:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

.map-section {
            padding: 0;
        }

.map-container {
            width: 100%;
            line-height: 0;
        }

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

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

@media (max-width: 768px) {
            .contact-info, .contact-form-wrapper { padding: 28px 20px; }
        }

.footer {
            background: #14202D;
            color: rgba(255,255,255,0.75);
            padding: 60px 0 0;
        }

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

.footer-col h4 {
            color: var(--white);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 10px;
        }

.footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--primary);
        }

.footer-brand img {
            height: 50px;
            width: auto;
            margin-bottom: 16px;
            background: var(--white);
            padding: 8px;
            border-radius: var(--radius);
        }

.footer-brand p { font-size: 0.9rem; margin-bottom: 16px; }

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

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

.footer-col ul a {
            color: rgba(255,255,255,0.7);
            font-size: 0.92rem;
            transition: color 0.2s ease;
        }

.footer-col ul a:hover { color: var(--primary-light); }

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

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

.footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 20px 0;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
        }

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

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

.footer-bottom-links {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 8px;
        }

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

@media (max-width: 640px) {
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            section { padding: 60px 0; }
            .section-header { margin-bottom: 40px; }
        }

.modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.7);
            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%;
            max-height: 85vh;
            overflow-y: auto;
            border-radius: var(--radius-lg);
            padding: 32px;
            position: relative;
        }

.modal-content h3 {
            margin-bottom: 20px;
            color: var(--secondary);
        }

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

.modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--beige);
            color: var(--secondary);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

.mobile-cta-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--white);
            box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
            padding: 10px;
            z-index: 999;
            gap: 8px;
        }

.mobile-cta-bar a {
            flex: 1;
            text-align: center;
            padding: 12px;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

.mobile-cta-bar .cta-call {
            background: var(--secondary);
            color: var(--white);
        }

.mobile-cta-bar .cta-quote {
            background: var(--primary);
            color: var(--white);
        }

@media (max-width: 768px) {
            .mobile-cta-bar { display: flex; }
            body { padding-bottom: 70px; }
        }

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

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

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

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

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

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 165px 0 90px;
    background: linear-gradient(135deg, rgba(31,42,55,0.93) 0%, rgba(31,42,55,0.80) 55%, rgba(200,83,28,0.72) 100%), url('/images/service_1_1779897379_6a1714237e8d7.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4A574, #C8531C, #D4A574, transparent);
}

.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.83rem;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.72);
}

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

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

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

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

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

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    background: rgba(212,165,116,0.18);
    border: 1px solid rgba(212,165,116,0.42);
    color: #D4A574;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.sct-tpl-service-hub .sct-hero-text h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.95rem, 4.4vw, 3.1rem);
    line-height: 1.15;
    color: #FFFFFF;
    margin: 0 0 20px;
}

.sct-tpl-service-hub .sct-hero-text h1 .sct-accent {
    color: #D4A574;
    font-style: italic;
}

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 0 32px;
}

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

.sct-tpl-service-hub .sct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-btn-primary { background: #C8531C; color: #FFFFFF; }

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: #A8431A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,83,28,0.35);
}

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

.sct-tpl-service-hub .sct-btn-outline:hover { background: #FFFFFF; color: #1F2A37; }

.sct-tpl-service-hub .sct-btn-dark { background: #1F2A37; color: #FFFFFF; }

.sct-tpl-service-hub .sct-btn-dark:hover { background: #2D3A4A; transform: translateY(-2px); }

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

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

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

.sct-tpl-service-hub .sct-hero-card {
    background: #FFFFFF;
    border-radius: 16px;
    border-top: 4px solid #C8531C;
    box-shadow: 0 20px 50px rgba(31,42,55,0.28);
    padding: 32px 28px;
    color: #1F2A37;
}

.sct-tpl-service-hub .sct-hero-card h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: #1F2A37;
    margin: 0 0 6px;
    text-align: center;
}

.sct-tpl-service-hub .sct-hero-card-sub {
    text-align: center;
    font-size: 0.88rem;
    color: #5A6573;
    margin: 0 0 22px;
}

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

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

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

.sct-tpl-service-hub .sct-hci {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #F5F1EC;
    color: #C8531C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.sct-tpl-service-hub .sct-hc-label {
    display: block;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5A6573;
    margin-bottom: 2px;
}

.sct-tpl-service-hub .sct-hc-value { font-weight: 600; color: #1F2A37; word-break: break-word; }

.sct-tpl-service-hub .sct-hc-value a { color: #1F2A37; text-decoration: none; }

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

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

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

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

.sct-tpl-service-hub .sct-stat { text-align: center; color: #FFFFFF; padding: 0 10px; }

.sct-tpl-service-hub .sct-stat-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    font-weight: 800;
    color: #D4A574;
    line-height: 1.1;
    margin-bottom: 8px;
}

.sct-tpl-service-hub .sct-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.sct-tpl-service-hub .sct-section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C8531C;
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    line-height: 1.22;
    color: #1F2A37;
    margin: 0 0 15px;
}

.sct-tpl-service-hub .sct-section-sub {
    max-width: 700px;
    margin: 0 auto;
    color: #5A6573;
    font-size: 1.02rem;
    line-height: 1.7;
}

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

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

.sct-tpl-service-hub .sct-intro-inner p {
    color: #5A6573;
    font-size: 1.04rem;
    line-height: 1.85;
    margin: 0 0 20px;
}

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

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

.sct-tpl-service-hub .sct-intro-rule {
    width: 64px;
    height: 3px;
    background: #C8531C;
    border-radius: 3px;
    margin: 0 0 26px;
}

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

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

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

.sct-tpl-service-hub .sct-service-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(31,42,55,0.06);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(31,42,55,0.15);
    border-color: #E8DFD3;
}

.sct-tpl-service-hub .sct-service-media { position: relative; overflow: hidden; }

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

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

.sct-tpl-service-hub .sct-service-num {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #C8531C;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 4px 12px rgba(200,83,28,0.4);
}

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

.sct-tpl-service-hub .sct-service-body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.24rem;
    color: #1F2A37;
    margin: 0 0 11px;
    line-height: 1.3;
}

.sct-tpl-service-hub .sct-service-body p {
    color: #5A6573;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

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

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

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

.sct-tpl-service-hub .sct-step {
    position: relative;
    text-align: center;
    padding: 30px 18px 26px;
    background: #F5F1EC;
    border-radius: 16px;
    border-top: 3px solid transparent;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-step:hover {
    border-top-color: #D4A574;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(31,42,55,0.1);
}

.sct-tpl-service-hub .sct-step-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #1F2A37;
    color: #D4A574;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.sct-tpl-service-hub .sct-step-num {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #C8531C;
    margin-bottom: 8px;
}

.sct-tpl-service-hub .sct-step h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.08rem;
    color: #1F2A37;
    margin: 0 0 9px;
    line-height: 1.3;
}

.sct-tpl-service-hub .sct-step p {
    color: #5A6573;
    font-size: 0.89rem;
    line-height: 1.65;
    margin: 0;
}

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

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

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

.sct-tpl-service-hub .sct-why-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(31,42,55,0.06);
    border-top: 3px solid transparent;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-why-card:hover {
    border-top-color: #C8531C;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(31,42,55,0.1);
}

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

.sct-tpl-service-hub .sct-why-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.13rem;
    color: #1F2A37;
    margin: 0 0 10px;
    line-height: 1.3;
}

.sct-tpl-service-hub .sct-why-card p {
    color: #5A6573;
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

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

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

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

.sct-tpl-service-hub .sct-usecase-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

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

.sct-tpl-service-hub .sct-usecase-tag {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: #C8531C;
    color: #FFFFFF;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(31,42,55,0.22);
}

.sct-tpl-service-hub .sct-usecase-content p {
    color: #5A6573;
    font-size: 1.01rem;
    line-height: 1.82;
    margin: 0 0 18px;
}

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

.sct-tpl-service-hub .sct-usecase-quote {
    background: #F5F1EC;
    border-left: 4px solid #C8531C;
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.06rem;
    color: #1F2A37;
    margin: 26px 0 0;
}

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

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

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

.sct-tpl-service-hub .sct-engagement {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 34px 28px;
    box-shadow: 0 2px 8px rgba(31,42,55,0.06);
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-engagement:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(31,42,55,0.1);
}

.sct-tpl-service-hub .sct-engagement-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: #1F2A37;
    color: #D4A574;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.28rem;
    margin-bottom: 18px;
}

.sct-tpl-service-hub .sct-engagement h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.18rem;
    color: #1F2A37;
    margin: 0 0 10px;
    line-height: 1.3;
}

.sct-tpl-service-hub .sct-engagement p {
    color: #5A6573;
    font-size: 0.94rem;
    line-height: 1.72;
    margin: 0;
}

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

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

.sct-tpl-service-hub .sct-faq-item {
    background: #FFFFFF;
    border: 1px solid #E5DDD3;
    border-left: 3px solid transparent;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(31,42,55,0.06);
    margin-bottom: 14px;
    padding: 26px 30px;
    transition: border-color 0.3s ease;
}

.sct-tpl-service-hub .sct-faq-item:hover { border-left-color: #C8531C; }

.sct-tpl-service-hub .sct-faq-item h3 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    color: #1F2A37;
    margin: 0 0 12px;
    line-height: 1.4;
}

.sct-tpl-service-hub .sct-faq-item h3::before {
    content: '\f059';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #C8531C;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.sct-tpl-service-hub .sct-faq-item p {
    color: #5A6573;
    font-size: 0.96rem;
    line-height: 1.78;
    margin: 0;
}

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

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

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

.sct-tpl-service-hub .sct-maillage-head h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    color: #1F2A37;
    margin: 0 0 12px;
    line-height: 1.26;
}

.sct-tpl-service-hub .sct-maillage-head p {
    color: #5A6573;
    font-size: 0.99rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.sct-tpl-service-hub .sct-maillage-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #FFFFFF;
    border: 1px solid #E5DDD3;
    color: #1F2A37;
    padding: 11px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.sct-tpl-service-hub .sct-maillage-links a:hover {
    background: #C8531C;
    border-color: #C8531C;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(200,83,28,0.25);
}

.sct-tpl-service-hub .sct-maillage-links a::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #C8531C;
    font-size: 0.82rem;
    transition: color 0.25s ease;
}

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

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

.sct-tpl-service-hub .sct-maillage-alt .sct-maillage-links a::before { content: '\f105'; font-size: 0.95rem; }

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

.sct-tpl-service-hub .sct-maillage-note {
    text-align: center;
    color: #5A6573;
    font-size: 0.92rem;
    margin: 30px auto 0;
    max-width: 700px;
    line-height: 1.7;
}

.sct-tpl-service-hub .sct-cta-final {
    position: relative;
    padding: 84px 0;
    background: linear-gradient(135deg, #1F2A37 0%, #2D3A4A 55%, #A8431A 130%);
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-cta-final::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4A574, #C8531C, #D4A574, transparent);
}

.sct-tpl-service-hub .sct-cta-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }

.sct-tpl-service-hub .sct-cta-final h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    color: #FFFFFF;
    margin: 0 0 16px;
    line-height: 1.25;
}

.sct-tpl-service-hub .sct-cta-final h2 .sct-accent { color: #D4A574; font-style: italic; }

.sct-tpl-service-hub .sct-cta-final p {
    color: rgba(255,255,255,0.86);
    font-size: 1.04rem;
    line-height: 1.75;
    margin: 0 0 32px;
}

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

.sct-tpl-service-hub .sct-cta-note {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    margin: 0;
}

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

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero { padding: 145px 0 76px; }
    .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-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-service-hub .sct-usecase-media img { height: 380px; }
    .sct-tpl-service-hub .sct-section,
    .sct-tpl-service-hub .sct-intro-section,
    .sct-tpl-service-hub .sct-prestations-section,
    .sct-tpl-service-hub .sct-processus-section,
    .sct-tpl-service-hub .sct-why-section,
    .sct-tpl-service-hub .sct-usecase-section,
    .sct-tpl-service-hub .sct-engagements-section,
    .sct-tpl-service-hub .sct-faq-section,
    .sct-tpl-service-hub .sct-maillage-section { padding: 64px 0; }
}

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

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 122px 0 62px; }
    .sct-tpl-service-hub .sct-breadcrumb { font-size: 0.78rem; margin-bottom: 18px; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-hub .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-service-hub .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-hero-trust { gap: 10px; }
    .sct-tpl-service-hub .sct-hero-card { padding: 26px 22px; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-usecase-media img { height: 280px; }
    .sct-tpl-service-hub .sct-faq-item { padding: 22px 20px; }
    .sct-tpl-service-hub .sct-maillage-links { gap: 10px; }
    .sct-tpl-service-hub .sct-maillage-links a { font-size: 0.86rem; padding: 10px 17px; }
    .sct-tpl-service-hub .sct-cta-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-cta-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-section,
    .sct-tpl-service-hub .sct-intro-section,
    .sct-tpl-service-hub .sct-prestations-section,
    .sct-tpl-service-hub .sct-processus-section,
    .sct-tpl-service-hub .sct-why-section,
    .sct-tpl-service-hub .sct-usecase-section,
    .sct-tpl-service-hub .sct-engagements-section,
    .sct-tpl-service-hub .sct-faq-section,
    .sct-tpl-service-hub .sct-maillage-section { padding: 54px 0; }
    .sct-tpl-service-hub .sct-cta-final { padding: 62px 0; }
    .sct-tpl-service-hub .sct-section-head { margin-bottom: 38px; }
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 165px 0 90px;
    background: linear-gradient(135deg, rgba(31,42,55,0.93) 0%, rgba(31,42,55,0.80) 55%, rgba(200,83,28,0.72) 100%), url('/images/service_1_1779897379_6a1714237e8d7.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4A574, #C8531C, #D4A574, transparent);
}

.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.83rem;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.72);
}

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

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

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

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

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

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    background: rgba(212,165,116,0.18);
    border: 1px solid rgba(212,165,116,0.42);
    color: #D4A574;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.sct-tpl-service-city .sct-hero-text h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.95rem, 4.4vw, 3.1rem);
    line-height: 1.15;
    color: #FFFFFF;
    margin: 0 0 20px;
}

.sct-tpl-service-city .sct-hero-text h1 .sct-accent {
    color: #D4A574;
    font-style: italic;
}

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 0 32px;
}

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

.sct-tpl-service-city .sct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-btn-primary { background: #C8531C; color: #FFFFFF; }

.sct-tpl-service-city .sct-btn-primary:hover {
    background: #A8431A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,83,28,0.35);
}

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

.sct-tpl-service-city .sct-btn-outline:hover { background: #FFFFFF; color: #1F2A37; }

.sct-tpl-service-city .sct-btn-dark { background: #1F2A37; color: #FFFFFF; }

.sct-tpl-service-city .sct-btn-dark:hover { background: #2D3A4A; transform: translateY(-2px); }

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

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

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

.sct-tpl-service-city .sct-hero-card {
    background: #FFFFFF;
    border-radius: 16px;
    border-top: 4px solid #C8531C;
    box-shadow: 0 20px 50px rgba(31,42,55,0.28);
    padding: 32px 28px;
    color: #1F2A37;
}

.sct-tpl-service-city .sct-hero-card h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: #1F2A37;
    margin: 0 0 6px;
    text-align: center;
}

.sct-tpl-service-city .sct-hero-card-sub {
    text-align: center;
    font-size: 0.88rem;
    color: #5A6573;
    margin: 0 0 22px;
}

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

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

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

.sct-tpl-service-city .sct-hci {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #F5F1EC;
    color: #C8531C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.sct-tpl-service-city .sct-hc-label {
    display: block;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5A6573;
    margin-bottom: 2px;
}

.sct-tpl-service-city .sct-hc-value { font-weight: 600; color: #1F2A37; word-break: break-word; }

.sct-tpl-service-city .sct-hc-value a { color: #1F2A37; text-decoration: none; }

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

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

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

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

.sct-tpl-service-city .sct-stat { text-align: center; color: #FFFFFF; padding: 0 10px; }

.sct-tpl-service-city .sct-stat-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    font-weight: 800;
    color: #D4A574;
    line-height: 1.1;
    margin-bottom: 8px;
}

.sct-tpl-service-city .sct-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.sct-tpl-service-city .sct-section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C8531C;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    line-height: 1.22;
    color: #1F2A37;
    margin: 0 0 15px;
}

.sct-tpl-service-city .sct-section-sub {
    max-width: 700px;
    margin: 0 auto;
    color: #5A6573;
    font-size: 1.02rem;
    line-height: 1.7;
}

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

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

.sct-tpl-service-city .sct-intro-inner p {
    color: #5A6573;
    font-size: 1.04rem;
    line-height: 1.85;
    margin: 0 0 20px;
}

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

.sct-tpl-service-city .sct-intro-inner strong { color: #1F2A37; font-weight: 600; }

.sct-tpl-service-city .sct-intro-rule {
    width: 64px;
    height: 3px;
    background: #C8531C;
    border-radius: 3px;
    margin: 0 0 26px;
}

.sct-tpl-service-city .sct-prestations-section { background: #F5F1EC; padding: 82px 0; }

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

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

.sct-tpl-service-city .sct-service-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(31,42,55,0.06);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(31,42,55,0.15);
    border-color: #E8DFD3;
}

.sct-tpl-service-city .sct-service-media { position: relative; overflow: hidden; }

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

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

.sct-tpl-service-city .sct-service-num {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #C8531C;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 4px 12px rgba(200,83,28,0.4);
}

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

.sct-tpl-service-city .sct-service-body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.24rem;
    color: #1F2A37;
    margin: 0 0 11px;
    line-height: 1.3;
}

.sct-tpl-service-city .sct-service-body p {
    color: #5A6573;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

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

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

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

.sct-tpl-service-city .sct-step {
    position: relative;
    text-align: center;
    padding: 30px 18px 26px;
    background: #F5F1EC;
    border-radius: 16px;
    border-top: 3px solid transparent;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-step:hover {
    border-top-color: #D4A574;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(31,42,55,0.1);
}

.sct-tpl-service-city .sct-step-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #1F2A37;
    color: #D4A574;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.sct-tpl-service-city .sct-step-num {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #C8531C;
    margin-bottom: 8px;
}

.sct-tpl-service-city .sct-step h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.08rem;
    color: #1F2A37;
    margin: 0 0 9px;
    line-height: 1.3;
}

.sct-tpl-service-city .sct-step p {
    color: #5A6573;
    font-size: 0.89rem;
    line-height: 1.65;
    margin: 0;
}

.sct-tpl-service-city .sct-why-section { background: #F5F1EC; padding: 82px 0; }

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

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

.sct-tpl-service-city .sct-why-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(31,42,55,0.06);
    border-top: 3px solid transparent;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-why-card:hover {
    border-top-color: #C8531C;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(31,42,55,0.1);
}

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

.sct-tpl-service-city .sct-why-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.13rem;
    color: #1F2A37;
    margin: 0 0 10px;
    line-height: 1.3;
}

.sct-tpl-service-city .sct-why-card p {
    color: #5A6573;
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

.sct-tpl-service-city .sct-zones-section {
    background: #1F2A37;
    padding: 82px 0;
    color: #FFFFFF;
}

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

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

.sct-tpl-service-city .sct-zones-section .sct-section-tag { color: #D4A574; }

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

.sct-tpl-service-city .sct-zones-list span,
.sct-tpl-service-city .sct-zones-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(212,165,116,0.3);
    color: #FFFFFF;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 0.87rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.sct-tpl-service-city .sct-zones-list span:hover,
.sct-tpl-service-city .sct-zones-list a:hover {
    background: #C8531C;
    border-color: #C8531C;
}

.sct-tpl-service-city .sct-zones-note {
    text-align: center;
    color: rgba(255,255,255,0.72);
    font-size: 0.94rem;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

.sct-tpl-service-city .sct-usecase-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

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

.sct-tpl-service-city .sct-usecase-tag {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: #C8531C;
    color: #FFFFFF;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(31,42,55,0.22);
}

.sct-tpl-service-city .sct-usecase-content p {
    color: #5A6573;
    font-size: 1.01rem;
    line-height: 1.82;
    margin: 0 0 18px;
}

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

.sct-tpl-service-city .sct-usecase-quote {
    background: #F5F1EC;
    border-left: 4px solid #C8531C;
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.06rem;
    color: #1F2A37;
    margin: 26px 0 0;
}

.sct-tpl-service-city .sct-engagements-section { background: #F5F1EC; padding: 82px 0; }

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

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

.sct-tpl-service-city .sct-engagement {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 34px 28px;
    box-shadow: 0 2px 8px rgba(31,42,55,0.06);
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-engagement:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(31,42,55,0.1);
}

.sct-tpl-service-city .sct-engagement-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: #1F2A37;
    color: #D4A574;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.28rem;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-engagement h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.18rem;
    color: #1F2A37;
    margin: 0 0 10px;
    line-height: 1.3;
}

.sct-tpl-service-city .sct-engagement p {
    color: #5A6573;
    font-size: 0.94rem;
    line-height: 1.72;
    margin: 0;
}

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

.sct-tpl-service-city .sct-local-box {
    max-width: 900px;
    margin: 0 auto;
    background: #F5F1EC;
    border: 1px solid #E5DDD3;
    border-left: 5px solid #D4A574;
    border-radius: 0 16px 16px 0;
    padding: 36px 38px;
}

.sct-tpl-service-city .sct-local-box h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    color: #1F2A37;
    margin: 0 0 16px;
    line-height: 1.28;
}

.sct-tpl-service-city .sct-local-box p {
    color: #5A6573;
    font-size: 1rem;
    line-height: 1.82;
    margin: 0 0 16px;
}

.sct-tpl-service-city .sct-local-box p:last-child { margin-bottom: 0; }

.sct-tpl-service-city .sct-local-box strong { color: #1F2A37; font-weight: 600; }

.sct-tpl-service-city .sct-faq-section { background: #F5F1EC; padding: 82px 0; }

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

.sct-tpl-service-city .sct-faq-item {
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(31,42,55,0.06);
    margin-bottom: 14px;
    padding: 26px 30px;
    border-left: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.sct-tpl-service-city .sct-faq-item:hover { border-left-color: #C8531C; }

.sct-tpl-service-city .sct-faq-item h3 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    color: #1F2A37;
    margin: 0 0 12px;
    line-height: 1.4;
}

.sct-tpl-service-city .sct-faq-item h3::before {
    content: '\f059';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #C8531C;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.sct-tpl-service-city .sct-faq-item p {
    color: #5A6573;
    font-size: 0.96rem;
    line-height: 1.78;
    margin: 0;
}

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

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

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

.sct-tpl-service-city .sct-maillage-head h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.4rem, 2.9vw, 1.95rem);
    color: #1F2A37;
    margin: 0 0 12px;
    line-height: 1.28;
}

.sct-tpl-service-city .sct-maillage-head p {
    color: #5A6573;
    font-size: 0.98rem;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.sct-tpl-service-city .sct-maillage-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #FFFFFF;
    border: 1px solid #E5DDD3;
    color: #1F2A37;
    padding: 11px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

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

.sct-tpl-service-city .sct-maillage-links a:hover {
    background: #C8531C;
    border-color: #C8531C;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(200,83,28,0.25);
}

.sct-tpl-service-city .sct-maillage-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #C8531C;
    transition: color 0.25s ease;
}

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

.sct-tpl-service-city .sct-cta-final {
    position: relative;
    padding: 84px 0;
    background: linear-gradient(135deg, #1F2A37 0%, #2D3A4A 55%, #A8431A 130%);
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.sct-tpl-service-city .sct-cta-final::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4A574, #C8531C, #D4A574, transparent);
}

.sct-tpl-service-city .sct-cta-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }

.sct-tpl-service-city .sct-cta-final h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    color: #FFFFFF;
    margin: 0 0 16px;
    line-height: 1.25;
}

.sct-tpl-service-city .sct-cta-final h2 .sct-accent { color: #D4A574; font-style: italic; }

.sct-tpl-service-city .sct-cta-final p {
    color: rgba(255,255,255,0.86);
    font-size: 1.04rem;
    line-height: 1.75;
    margin: 0 0 32px;
}

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

.sct-tpl-service-city .sct-cta-note {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    margin: 0;
}

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

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero { padding: 145px 0 76px; }
    .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-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-service-city .sct-usecase-media img { height: 380px; }
    .sct-tpl-service-city .sct-section,
    .sct-tpl-service-city .sct-intro-section,
    .sct-tpl-service-city .sct-prestations-section,
    .sct-tpl-service-city .sct-processus-section,
    .sct-tpl-service-city .sct-why-section,
    .sct-tpl-service-city .sct-zones-section,
    .sct-tpl-service-city .sct-usecase-section,
    .sct-tpl-service-city .sct-engagements-section,
    .sct-tpl-service-city .sct-local-spec,
    .sct-tpl-service-city .sct-faq-section { padding: 64px 0; }
}

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

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 122px 0 62px; }
    .sct-tpl-service-city .sct-breadcrumb { font-size: 0.78rem; margin-bottom: 18px; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-city .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-service-city .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-hero-trust { gap: 10px; }
    .sct-tpl-service-city .sct-hero-card { padding: 26px 22px; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-usecase-media img { height: 280px; }
    .sct-tpl-service-city .sct-faq-item { padding: 22px 20px; }
    .sct-tpl-service-city .sct-local-box { border-radius: 0 12px 12px 0; padding: 24px 20px; }
    .sct-tpl-service-city .sct-cta-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-cta-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-section,
    .sct-tpl-service-city .sct-intro-section,
    .sct-tpl-service-city .sct-prestations-section,
    .sct-tpl-service-city .sct-processus-section,
    .sct-tpl-service-city .sct-why-section,
    .sct-tpl-service-city .sct-zones-section,
    .sct-tpl-service-city .sct-usecase-section,
    .sct-tpl-service-city .sct-engagements-section,
    .sct-tpl-service-city .sct-local-spec,
    .sct-tpl-service-city .sct-faq-section,
    .sct-tpl-service-city .sct-maillage-section { padding: 54px 0; }
    .sct-tpl-service-city .sct-cta-final { padding: 62px 0; }
    .sct-tpl-service-city .sct-section-head { margin-bottom: 38px; }
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 165px 0 90px;
    background: linear-gradient(135deg, rgba(31,42,55,0.93) 0%, rgba(31,42,55,0.80) 55%, rgba(200,83,28,0.72) 100%), url('/images/service_5_1779897494_6a171496b89d5.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 165px 0 90px;
    background: linear-gradient(135deg, rgba(31,42,55,0.93) 0%, rgba(31,42,55,0.80) 55%, rgba(200,83,28,0.72) 100%), url('/images/service_1_1779897379_6a1714237e8d7.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4A574, #C8531C, #D4A574, transparent);
}

.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.83rem;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.72);
}

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

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

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

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

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

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    background: rgba(212,165,116,0.18);
    border: 1px solid rgba(212,165,116,0.42);
    color: #D4A574;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.sct-tpl-zone .sct-hero-text h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.95rem, 4.4vw, 3.1rem);
    line-height: 1.15;
    color: #FFFFFF;
    margin: 0 0 20px;
}

.sct-tpl-zone .sct-hero-text h1 .sct-accent {
    color: #D4A574;
    font-style: italic;
}

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 0 32px;
}

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

.sct-tpl-zone .sct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-btn-primary { background: #C8531C; color: #FFFFFF; }

.sct-tpl-zone .sct-btn-primary:hover {
    background: #A8431A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,83,28,0.35);
}

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

.sct-tpl-zone .sct-btn-outline:hover { background: #FFFFFF; color: #1F2A37; }

.sct-tpl-zone .sct-btn-dark { background: #1F2A37; color: #FFFFFF; }

.sct-tpl-zone .sct-btn-dark:hover { background: #2D3A4A; transform: translateY(-2px); }

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

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

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

.sct-tpl-zone .sct-hero-card {
    background: #FFFFFF;
    border-radius: 16px;
    border-top: 4px solid #C8531C;
    box-shadow: 0 20px 50px rgba(31,42,55,0.28);
    padding: 32px 28px;
    color: #1F2A37;
}

.sct-tpl-zone .sct-hero-card h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: #1F2A37;
    margin: 0 0 6px;
    text-align: center;
}

.sct-tpl-zone .sct-hero-card-sub {
    text-align: center;
    font-size: 0.88rem;
    color: #5A6573;
    margin: 0 0 22px;
}

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

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

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

.sct-tpl-zone .sct-hci {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #F5F1EC;
    color: #C8531C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.sct-tpl-zone .sct-hc-label {
    display: block;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5A6573;
    margin-bottom: 2px;
}

.sct-tpl-zone .sct-hc-value { font-weight: 600; color: #1F2A37; word-break: break-word; }

.sct-tpl-zone .sct-hc-value a { color: #1F2A37; text-decoration: none; }

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

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

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

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

.sct-tpl-zone .sct-stat { text-align: center; color: #FFFFFF; padding: 0 10px; }

.sct-tpl-zone .sct-stat-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    font-weight: 800;
    color: #D4A574;
    line-height: 1.1;
    margin-bottom: 8px;
}

.sct-tpl-zone .sct-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.sct-tpl-zone .sct-section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C8531C;
    margin-bottom: 12px;
}

.sct-tpl-zone .sct-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    line-height: 1.22;
    color: #1F2A37;
    margin: 0 0 15px;
}

.sct-tpl-zone .sct-section-sub {
    max-width: 700px;
    margin: 0 auto;
    color: #5A6573;
    font-size: 1.02rem;
    line-height: 1.7;
}

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

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

.sct-tpl-zone .sct-intro-inner p {
    color: #5A6573;
    font-size: 1.04rem;
    line-height: 1.85;
    margin: 0 0 20px;
}

.sct-tpl-zone .sct-intro-inner p:last-child { margin-bottom: 0; }

.sct-tpl-zone .sct-intro-inner strong { color: #1F2A37; font-weight: 600; }

.sct-tpl-zone .sct-intro-rule {
    width: 64px;
    height: 3px;
    background: #C8531C;
    border-radius: 3px;
    margin: 0 0 26px;
}

.sct-tpl-zone .sct-prestations-section { background: #F5F1EC; padding: 82px 0; }

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

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

.sct-tpl-zone .sct-service-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(31,42,55,0.06);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s ease;
}

.sct-tpl-zone .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(31,42,55,0.15);
    border-color: #E8DFD3;
}

.sct-tpl-zone .sct-service-media { position: relative; overflow: hidden; }

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

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

.sct-tpl-zone .sct-service-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #C8531C;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(200,83,28,0.4);
}

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

.sct-tpl-zone .sct-service-body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.22rem;
    color: #1F2A37;
    margin: 0 0 11px;
    line-height: 1.3;
}

.sct-tpl-zone .sct-service-body p {
    color: #5A6573;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 16px;
    flex: 1;
}

.sct-tpl-zone .sct-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C8531C;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

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

.sct-tpl-zone .sct-zones-section {
    background: #1F2A37;
    padding: 82px 0;
    color: #FFFFFF;
}

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

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

.sct-tpl-zone .sct-zones-section .sct-section-tag { color: #D4A574; }

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

.sct-tpl-zone .sct-zones-list span,
.sct-tpl-zone .sct-zones-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(212,165,116,0.3);
    color: #FFFFFF;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 0.87rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.sct-tpl-zone .sct-zones-list span:hover,
.sct-tpl-zone .sct-zones-list a:hover {
    background: #C8531C;
    border-color: #C8531C;
}

.sct-tpl-zone .sct-zones-note {
    text-align: center;
    color: rgba(255,255,255,0.72);
    font-size: 0.94rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

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

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

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

.sct-tpl-zone .sct-usecase-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.sct-tpl-zone .sct-usecase-media img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.sct-tpl-zone .sct-usecase-tag {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: #C8531C;
    color: #FFFFFF;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(31,42,55,0.22);
}

.sct-tpl-zone .sct-usecase-content p {
    color: #5A6573;
    font-size: 1.01rem;
    line-height: 1.82;
    margin: 0 0 18px;
}

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

.sct-tpl-zone .sct-usecase-quote {
    background: #F5F1EC;
    border-left: 4px solid #C8531C;
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.06rem;
    color: #1F2A37;
    margin: 26px 0 0;
}

.sct-tpl-zone .sct-engagements-section { background: #F5F1EC; padding: 82px 0; }

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

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

.sct-tpl-zone .sct-engagement {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 34px 28px;
    box-shadow: 0 2px 8px rgba(31,42,55,0.06);
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-engagement:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(31,42,55,0.1);
}

.sct-tpl-zone .sct-engagement-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: #1F2A37;
    color: #D4A574;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.28rem;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-engagement h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.18rem;
    color: #1F2A37;
    margin: 0 0 10px;
    line-height: 1.3;
}

.sct-tpl-zone .sct-engagement p {
    color: #5A6573;
    font-size: 0.94rem;
    line-height: 1.72;
    margin: 0;
}

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

.sct-tpl-zone .sct-local-box {
    max-width: 900px;
    margin: 0 auto;
    background: #F5F1EC;
    border: 1px solid #E5DDD3;
    border-left: 5px solid #D4A574;
    border-radius: 0 16px 16px 0;
    padding: 36px 38px;
}

.sct-tpl-zone .sct-local-box h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    color: #1F2A37;
    margin: 0 0 16px;
    line-height: 1.28;
}

.sct-tpl-zone .sct-local-box p {
    color: #5A6573;
    font-size: 1rem;
    line-height: 1.82;
    margin: 0 0 16px;
}

.sct-tpl-zone .sct-local-box p:last-child { margin-bottom: 0; }

.sct-tpl-zone .sct-local-box strong { color: #1F2A37; font-weight: 600; }

.sct-tpl-zone .sct-faq-section { background: #F5F1EC; padding: 82px 0; }

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

.sct-tpl-zone .sct-faq-item {
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(31,42,55,0.06);
    margin-bottom: 14px;
    padding: 26px 30px;
    border-left: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.sct-tpl-zone .sct-faq-item:hover { border-left-color: #C8531C; }

.sct-tpl-zone .sct-faq-item h3 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    color: #1F2A37;
    margin: 0 0 12px;
    line-height: 1.4;
}

.sct-tpl-zone .sct-faq-item h3::before {
    content: '\f059';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #C8531C;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.sct-tpl-zone .sct-faq-item p {
    color: #5A6573;
    font-size: 0.96rem;
    line-height: 1.78;
    margin: 0;
}

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

.sct-tpl-zone .sct-maillage-head { text-align: center; margin-bottom: 34px; }

.sct-tpl-zone .sct-maillage-head h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.45rem, 3vw, 2.05rem);
    color: #1F2A37;
    margin: 0 0 12px;
    line-height: 1.26;
}

.sct-tpl-zone .sct-maillage-head p {
    color: #5A6573;
    font-size: 0.99rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.sct-tpl-zone .sct-maillage-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #F5F1EC;
    border: 1px solid #E5DDD3;
    color: #1F2A37;
    padding: 11px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.sct-tpl-zone .sct-maillage-links a::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #C8531C;
    font-size: 0.82rem;
    transition: color 0.25s ease;
}

.sct-tpl-zone .sct-maillage-links a:hover {
    background: #C8531C;
    border-color: #C8531C;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(200,83,28,0.25);
}

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

.sct-tpl-zone .sct-maillage-note {
    text-align: center;
    color: #5A6573;
    font-size: 0.92rem;
    margin: 30px auto 0;
    max-width: 700px;
    line-height: 1.7;
}

.sct-tpl-zone .sct-cta-final {
    position: relative;
    padding: 84px 0;
    background: linear-gradient(135deg, #1F2A37 0%, #2D3A4A 55%, #A8431A 130%);
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.sct-tpl-zone .sct-cta-final::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4A574, #C8531C, #D4A574, transparent);
}

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

.sct-tpl-zone .sct-cta-final h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    color: #FFFFFF;
    margin: 0 0 16px;
    line-height: 1.25;
}

.sct-tpl-zone .sct-cta-final h2 .sct-accent { color: #D4A574; font-style: italic; }

.sct-tpl-zone .sct-cta-final p {
    color: rgba(255,255,255,0.86);
    font-size: 1.04rem;
    line-height: 1.75;
    margin: 0 0 32px;
}

.sct-tpl-zone .sct-cta-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 26px;
}

.sct-tpl-zone .sct-cta-note {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    margin: 0;
}

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero { padding: 145px 0 76px; }
    .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-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-zone .sct-usecase-media img { height: 380px; }
    .sct-tpl-zone .sct-section,
    .sct-tpl-zone .sct-intro-section,
    .sct-tpl-zone .sct-prestations-section,
    .sct-tpl-zone .sct-zones-section,
    .sct-tpl-zone .sct-usecase-section,
    .sct-tpl-zone .sct-engagements-section,
    .sct-tpl-zone .sct-local-spec,
    .sct-tpl-zone .sct-faq-section,
    .sct-tpl-zone .sct-maillage-section { padding: 64px 0; }
}

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

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 122px 0 62px; }
    .sct-tpl-zone .sct-breadcrumb { font-size: 0.78rem; margin-bottom: 18px; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-zone .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-zone .sct-hero-btns { flex-direction: column; }
    .sct-tpl-zone .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-hero-trust { gap: 10px; }
    .sct-tpl-zone .sct-hero-card { padding: 26px 22px; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-usecase-media img { height: 280px; }
    .sct-tpl-zone .sct-faq-item { padding: 22px 20px; }
    .sct-tpl-zone .sct-local-box { border-radius: 0 12px 12px 0; padding: 24px 20px; }
    .sct-tpl-zone .sct-maillage-links { gap: 10px; }
    .sct-tpl-zone .sct-maillage-links a { font-size: 0.86rem; padding: 10px 17px; }
    .sct-tpl-zone .sct-cta-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-section,
    .sct-tpl-zone .sct-intro-section,
    .sct-tpl-zone .sct-prestations-section,
    .sct-tpl-zone .sct-zones-section,
    .sct-tpl-zone .sct-usecase-section,
    .sct-tpl-zone .sct-engagements-section,
    .sct-tpl-zone .sct-local-spec,
    .sct-tpl-zone .sct-faq-section,
    .sct-tpl-zone .sct-maillage-section { padding: 54px 0; }
    .sct-tpl-zone .sct-cta-final { padding: 62px 0; }
    .sct-tpl-zone .sct-section-head { margin-bottom: 38px; }
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 165px 0 90px;
    background: linear-gradient(135deg, rgba(31,42,55,0.93) 0%, rgba(31,42,55,0.80) 55%, rgba(200,83,28,0.72) 100%), url('/images/service_2_1779897404_6a17143c06ca4.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 165px 0 90px;
    background: linear-gradient(135deg, rgba(31,42,55,0.93) 0%, rgba(31,42,55,0.80) 55%, rgba(200,83,28,0.72) 100%), url('/images/service_3_1779897428_6a171454760b2.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 165px 0 90px;
    background: linear-gradient(135deg, rgba(31,42,55,0.93) 0%, rgba(31,42,55,0.80) 55%, rgba(200,83,28,0.72) 100%), url('/images/service_4_1779897452_6a17146c220f0.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 165px 0 90px;
    background: linear-gradient(135deg, rgba(31,42,55,0.93) 0%, rgba(31,42,55,0.80) 55%, rgba(200,83,28,0.72) 100%), url('/images/service_2_1779897404_6a17143c06ca4.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 165px 0 90px;
    background: linear-gradient(135deg, rgba(31,42,55,0.93) 0%, rgba(31,42,55,0.80) 55%, rgba(200,83,28,0.72) 100%), url('/images/service_6_1779897516_6a1714ac61dfc.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 165px 0 90px;
    background: linear-gradient(135deg, rgba(31,42,55,0.93) 0%, rgba(31,42,55,0.80) 55%, rgba(200,83,28,0.72) 100%), url('/images/service_5_1779897494_6a171496b89d5.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 165px 0 90px;
    background: linear-gradient(135deg, rgba(31,42,55,0.93) 0%, rgba(31,42,55,0.80) 55%, rgba(200,83,28,0.72) 100%), url('/images/service_6_1779897516_6a1714ac61dfc.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 165px 0 90px;
    background: linear-gradient(135deg, rgba(31,42,55,0.93) 0%, rgba(31,42,55,0.80) 55%, rgba(200,83,28,0.72) 100%), url('/images/service_3_1779897428_6a171454760b2.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 165px 0 90px;
    background: linear-gradient(135deg, rgba(31,42,55,0.93) 0%, rgba(31,42,55,0.80) 55%, rgba(200,83,28,0.72) 100%), url('/images/service_4_1779897452_6a17146c220f0.webp') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.page-banner {
            position: relative;
            padding: 180px 0 90px;
            background: var(--secondary);
            color: var(--white);
            overflow: hidden;
            text-align: center;
        }

.page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(31,42,55,0.95) 0%, rgba(31,42,55,0.85) 55%, rgba(200,83,28,0.65) 100%);
            z-index: 2;
        }

.page-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), var(--primary), var(--gold), transparent);
            z-index: 3;
        }

.page-banner-bg {
            position: absolute;
            inset: 0;
            background-image: url('/images/hero_1779897359_6a17140f190c1.webp');
            background-size: cover;
            background-position: center;
            z-index: 1;
        }

.page-banner .container { position: relative; z-index: 4; }

.page-banner .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: rgba(212,165,116,0.2);
            border: 1px solid rgba(212,165,116,0.4);
            color: var(--gold);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 24px;
        }

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

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

.breadcrumb {
            background: var(--beige);
            border-bottom: 1px solid var(--border);
            padding: 14px 0;
            font-size: 0.88rem;
        }

.breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            color: var(--text-light);
        }

.breadcrumb a { color: var(--primary); font-weight: 500; }

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

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

.sitemap-block { border-bottom: 1px solid var(--border); }

.sitemap-block:last-of-type { border-bottom: none; }

.sitemap-block.alt { background: var(--beige); }

.block-head {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 32px;
        }

.block-head .block-icon {
            width: 58px;
            height: 58px;
            flex-shrink: 0;
            border-radius: 50%;
            background: var(--secondary);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
        }

.sitemap-block.alt .block-head .block-icon {
            background: var(--primary);
            color: var(--white);
        }

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

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

.chip-list {
            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(--secondary);
            font-weight: 500;
            font-size: 0.95rem;
            box-shadow: var(--shadow-sm);
            transition: all 0.25s ease;
        }

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

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

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

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

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

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

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

.service-group {
            background: var(--white);
            border: 1px solid var(--border);
            border-left: 4px solid var(--primary);
            border-radius: var(--radius);
            padding: 26px 28px;
            margin-bottom: 20px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

.service-group:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }

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

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

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

.service-group h3 a:hover { color: var(--primary); }

.service-group .chip {
            background: var(--beige);
            box-shadow: none;
            font-size: 0.9rem;
            padding: 9px 18px;
        }

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

.zones-chips .chip {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(212,165,116,0.35);
            color: var(--white);
            box-shadow: none;
        }

.zones-chips .chip i { color: var(--gold); }

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

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

.sitemap-cta {
            background: var(--beige);
            text-align: center;
        }

.sitemap-cta-inner {
            background: var(--white);
            border-top: 4px solid var(--primary);
            border-radius: var(--radius-lg);
            padding: 48px 32px;
            box-shadow: var(--shadow-md);
            max-width: 860px;
            margin: 0 auto;
        }

.sitemap-cta-inner h2 { margin-bottom: 14px; }

.sitemap-cta-inner p { margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }

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

@media (max-width: 768px) {
            section { padding: 56px 0; }
            .page-banner { padding: 140px 0 64px; }
            .block-head { gap: 14px; margin-bottom: 24px; }
            .block-head .block-icon { width: 48px; height: 48px; font-size: 1.15rem; }
            .service-group { padding: 20px; }
            .chip { padding: 10px 18px; font-size: 0.9rem; }
            .cta-buttons .btn { flex: 1; min-width: 160px; }
        }

.footer {
            background: var(--secondary);
            color: rgba(255,255,255,0.75);
            padding: 70px 0 0;
        }

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

.footer-col h4 {
            color: var(--white);
            font-size: 1.05rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 12px;
        }

.footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 36px;
            height: 2px;
            background: var(--primary);
        }

.footer-col ul li a {
            color: rgba(255,255,255,0.75);
            font-size: 0.92rem;
            transition: all 0.2s ease;
        }

.footer-col ul li a:hover { color: var(--gold); padding-left: 5px; }

.footer-brand img {
            height: 56px;
            width: auto;
            margin-bottom: 18px;
        }

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

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

.footer-contact-item a { color: rgba(255,255,255,0.75); transition: color 0.2s ease; }

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

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

.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 0.87rem; }

.footer-bottom-links {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255,255,255,0.4);
        }

.footer-bottom-links a { color: rgba(255,255,255,0.6); transition: color 0.2s ease; }

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

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

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