.menu-check {
    display: none;
}

label.burger {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

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

.menu-check:checked ~ .nav-container .burger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-check:checked ~ .nav-container .burger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-check:checked ~ .nav-container .burger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

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

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

:root {
  --noir: #2424249e;
  --noir-deep: #1a1a1aab;
  --noir-card: #242424;
  --noir-light: #353535;
  --or: #c8a96e;
  --or-light: #dcc595;
  --or-dark: #a8894e;
  --blanc: #ffffff;
  --blanc-casse: #f9f6f1;
  --gris: #999999;
  --gris-light: #cccccc;
        }

html { scroll-behavior: smooth; }

body {
            font-family: 'Montserrat', sans-serif;
            background: var(--noir);
            color: var(--blanc);
            line-height: 1.7;
            font-weight: 300;
            overflow-x: hidden;
        }

h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 500;
        }

.navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.4s ease;
        }

.navbar.scrolled {
            background: rgba(20, 20, 20, 0.88);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 12px 0;
            border-bottom: 1px solid rgba(200, 169, 110, 0.15);
        }

.nav-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

.nav-logo img {
            height: 70px;
            width: auto;
            transition: height 0.4s ease;
        }

.navbar.scrolled .nav-logo img {
            height: 36px;
        }

.nav-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--or);
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

.nav-links {
            display: flex;
            list-style: none;
            gap: 8px;
        }

.nav-links a {
            color: var(--blanc);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 8px 16px;
            border-radius: 2px;
            transition: all 0.3s ease;
            position: relative;
        }

.nav-links a::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1px;
            background: var(--or);
            transition: width 0.3s ease;
        }

.nav-links a:hover::after {
            width: 60%;
        }

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

.nav-cta {
            color: var(--or) !important;
            border: 1px solid var(--or) !important;
            padding: 10px 24px !important;
            border-radius: 0 !important;
            letter-spacing: 2px !important;
            transition: all 0.3s ease !important;
        }

.nav-cta:hover {
            background: var(--or) !important;
            color: var(--noir) !important;
        }

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

.burger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
            background: none;
            border: none;
            padding: 5px;
        }

.burger span {
            width: 28px;
            height: 1.5px;
            background: var(--or);
            transition: all 0.3s ease;
            display: block;
        }

.burger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }

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

.burger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

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

.hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://webflash.pro/images/hero_admin_1773769603_69b99383dba24.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            filter: brightness(0.60);
            transform: scale(1.05);
            transition: transform 8s ease;
        }

.hero:hover .hero-bg {
            transform: scale(1.1);
        }

.hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

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

.hero-badge {
            display: inline-block;
            font-size: 0.75rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--or);
            border: 1px solid rgba(200,169,110,0.4);
            padding: 10px 30px;
            margin-bottom: 30px;
            animation: fadeInDown 1s ease 0.3s both;
        }

.hero h1 {
            font-size: 4.5rem;
            font-weight: 600;
            color: var(--blanc);
            letter-spacing: 6px;
            text-transform: uppercase;
            line-height: 1.15;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease 0.5s both;
        }

.hero h1 span {
            display: block;
            color: var(--or);
            font-style: italic;
            font-weight: 400;
            font-size: 0.45em;
            letter-spacing: 8px;
            margin-top: 10px;
            text-transform: none;
        }

.hero-divider {
            width: 80px;
            height: 1px;
            background: var(--or);
            margin: 25px auto;
            animation: fadeInUp 1s ease 0.7s both;
        }

.hero-sub {
            font-size: 1.05rem;
            color: var(--gris-light);
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 45px;
            animation: fadeInUp 1s ease 0.9s both;
        }

.hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 1.1s both;
        }

.btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 40px;
            background: var(--or);
            color: var(--noir);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

.btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

.btn-primary:hover::before {
            left: 100%;
        }

.btn-primary:hover {
            background: var(--or-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(200,169,110,0.3);
        }

.btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 40px;
            background: transparent;
            color: var(--blanc);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 1px solid rgba(255,255,255,0.3);
            transition: all 0.4s ease;
        }

.btn-outline:hover {
            border-color: var(--or);
            color: var(--or);
            transform: translateY(-2px);
        }

.hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            animation: bounce 2s infinite;
        }

.hero-scroll a {
            color: var(--or);
            font-size: 1.5rem;
            text-decoration: none;
        }

.section {
            padding: 100px 0;
        }

.section-dark {
            background: var(--noir);
        }

.section-light {
            background: var(--blanc-casse);
            color: var(--noir);
        }

.section-deep {
            background: var(--noir-deep);
        }

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

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

.section-header .label {
            font-size: 0.75rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--or);
            margin-bottom: 15px;
            display: block;
        }

.section-header h2 {
            font-size: 2.8rem;
            font-weight: 500;
            margin-bottom: 20px;
            line-height: 1.2;
        }

.section-light .section-header h2 {
            color: var(--noir);
        }

.section-header .divider {
            width: 60px;
            height: 1px;
            background: var(--or);
            margin: 0 auto;
        }

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

.service-card {
            width: calc(33.333% - 20px);
            min-width: 300px;
            max-width: 380px;
            background: var(--noir-card);
            border: 1px solid rgba(200,169,110,0.1);
            overflow: hidden;
            transition: all 0.5s ease;
            position: relative;
        }

.service-card:hover {
            transform: translateY(-8px);
            border-color: rgba(200,169,110,0.3);
            box-shadow: 0 20px 50px rgba(0,0,0,0.35);
        }

.service-card-img {
            position: relative;
            height: 240px;
            overflow: hidden;
        }

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

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

.service-card-img::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(transparent, var(--noir-card));
        }

.service-card-body {
            padding: 28px 30px 32px;
        }

.service-card-body h3 {
            font-size: 1.2rem;
            color: var(--or);
            margin-bottom: 12px;
            font-weight: 500;
        }

.service-card-body p {
            font-size: 0.9rem;
            color: var(--gris);
            line-height: 1.7;
        }

.salon-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto;
            gap: 15px;
        }

.salon-gallery .salon-img:nth-child(1) {
            grid-column: 1 / 3;
            grid-row: 1 / 2;
        }

.salon-gallery .salon-img {
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(200,169,110,0.1);
        }

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

.salon-gallery .salon-img:hover img {
            transform: scale(1.05);
        }

.salon-gallery .salon-img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(200,169,110,0);
            transition: background 0.4s ease;
        }

.salon-gallery .salon-img:hover::after {
            background: rgba(200,169,110,0.08);
        }

.salon-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }

.salon-intro-text h3 {
            font-size: 1.6rem;
            color: var(--or);
            margin-bottom: 20px;
        }

.salon-intro-text p {
            color: var(--gris-light);
            font-size: 0.95rem;
            line-height: 1.9;
        }

.salon-intro-img {
            position: relative;
            overflow: hidden;
        }

.salon-intro-img img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

.salon-intro-img::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 1px solid var(--or);
            z-index: -1;
        }

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

.ba-item {
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(200,169,110,0.15);
        }

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

.ba-item:hover img {
            transform: scale(1.03);
        }

.ba-item .ba-label {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: var(--or);
            color: var(--noir);
            padding: 6px 18px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

.tarifs-section {
            background: var(--noir-deep);
        }

.tarifs-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 6px;
            margin-bottom: 50px;
        }

.tarif-tab {
            padding: 12px 24px;
            background: transparent;
            border: 1px solid rgba(200,169,110,0.2);
            color: var(--gris);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

.tarif-tab:hover,
        .tarif-tab.active {
            background: var(--or);
            color: var(--noir);
            border-color: var(--or);
        }

.tarif-content {
            display: none;
            animation: fadeInUp 0.4s ease;
        }

.tarif-content.active {
            display: block;
        }

.tarif-table {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            border-collapse: collapse;
        }

.tarif-table thead th {
            font-family: 'Playfair Display', serif;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--or);
            text-align: left;
            padding: 15px 20px;
            border-bottom: 1px solid var(--or);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

.tarif-table thead th:last-child {
            text-align: right;
        }

.tarif-table tbody td {
            padding: 14px 20px;
            font-size: 0.88rem;
            color: var(--gris-light);
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

.tarif-table tbody td:last-child {
            text-align: right;
            color: var(--or);
            font-weight: 500;
            white-space: nowrap;
        }

.tarif-table tbody tr:hover {
            background: rgba(200,169,110,0.04);
        }

.tarif-table tbody td:nth-child(2) {
            color: var(--gris);
            font-size: 0.82rem;
        }

.tarifs-booking {
            text-align: center;
            margin-top: 50px;
        }

.tarifs-booking p {
            color: var(--gris);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

.booking-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

.btn-booking {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: var(--or);
            color: var(--noir);
            text-decoration: none;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

.btn-booking:hover {
            background: var(--or-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(200,169,110,0.3);
        }

.btn-booking.outline {
            background: transparent;
            border: 1px solid var(--or);
            color: var(--or);
        }

.btn-booking.outline:hover {
            background: var(--or);
            color: var(--noir);
        }

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

.gallery-item {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1;
            cursor: pointer;
            border: 1px solid rgba(200,169,110,0.08);
        }

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

.gallery-item:hover img {
            transform: scale(1.1);
            filter: brightness(0.7);
        }

.gallery-item .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

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

.gallery-overlay i {
            color: var(--or);
            font-size: 2rem;
        }

.testimonials-wrapper {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

.testimonial-card {
            background: var(--blanc);
            padding: 40px;
            position: relative;
            border-bottom: 3px solid var(--or);
        }

.testimonial-card::before {
            content: '\201C';
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            color: rgba(200,169,110,0.15);
            position: absolute;
            top: 10px;
            left: 25px;
            line-height: 1;
        }

.testimonial-stars {
            color: var(--or);
            font-size: 0.85rem;
            margin-bottom: 18px;
            letter-spacing: 2px;
        }

.testimonial-text {
            font-size: 0.93rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 22px;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

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

.testimonial-avatar {
            width: 48px;
            height: 48px;
            background: var(--or);
            color: var(--noir);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 600;
        }

.testimonial-name {
            font-weight: 600;
            color: var(--noir);
            font-size: 0.9rem;
        }

.google-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--blanc);
            padding: 18px 30px;
            margin-top: 50px;
            border: 1px solid #e0e0e0;
            text-decoration: none;
            transition: all 0.3s ease;
        }

.google-badge:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }

.google-badge .g-icon {
            font-size: 1.5rem;
        }

.google-badge .g-info {
            display: flex;
            flex-direction: column;
        }

.google-badge .g-rating {
            font-weight: 600;
            color: var(--noir);
            font-size: 1rem;
        }

.google-badge .g-count {
            font-size: 0.8rem;
            color: var(--gris);
        }

.google-badge .g-stars {
            color: #fbbc04;
            font-size: 0.9rem;
        }

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

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

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

.about-img-wrap .about-accent {
            position: absolute;
            top: -25px;
            left: -25px;
            width: 120px;
            height: 120px;
            border-left: 2px solid var(--or);
            border-top: 2px solid var(--or);
        }

.about-img-wrap .about-accent-2 {
            position: absolute;
            bottom: -25px;
            right: -25px;
            width: 120px;
            height: 120px;
            border-right: 2px solid var(--or);
            border-bottom: 2px solid var(--or);
        }

.about-text .label {
            font-size: 0.75rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--or);
            margin-bottom: 15px;
            display: block;
        }

.about-text h2 {
            font-size: 2.4rem;
            margin-bottom: 25px;
            line-height: 1.2;
        }

.about-text p {
            color: var(--gris-light);
            font-size: 0.95rem;
            margin-bottom: 18px;
            line-height: 1.9;
        }

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

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

.about-feature i {
            color: var(--or);
            font-size: 1rem;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(200,169,110,0.3);
        }

.about-feature span {
            font-size: 0.85rem;
            color: var(--gris-light);
        }

.horaires-section {
            background: var(--noir);
            position: relative;
            overflow: hidden;
        }

.horaires-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://webflash.pro/images/hero_admin_1773769603_69b99383dba24.jpg') center/cover no-repeat;
            opacity: 0.08;
        }

.horaires-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            position: relative;
            z-index: 1;
        }

.horaires-info h2 {
            font-size: 2.4rem;
            margin-bottom: 15px;
        }

.horaires-info .label {
            font-size: 0.75rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--or);
            margin-bottom: 15px;
            display: block;
        }

.horaires-info p {
            color: var(--gris);
            margin-bottom: 30px;
            font-size: 0.95rem;
        }

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

.horaires-list li {
            display: flex;
            justify-content: space-between;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255,255,255,0.09);
            font-size: 0.92rem;
        }

.horaires-list li .day {
            color: var(--blanc);
            font-weight: 400;
        }

.horaires-list li .hours {
            color: var(--or);
            font-weight: 500;
        }

.horaires-list li .hours.closed {
            color: var(--gris);
            font-style: italic;
        }

.horaires-contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 40px;
        }

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

.contact-info-item i {
            color: var(--or);
            font-size: 1rem;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(200,169,110,0.2);
        }

.contact-info-item .info-text span {
            display: block;
            font-size: 0.75rem;
            color: var(--gris);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 3px;
        }

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

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

.contact-section {
            background: var(--blanc-casse);
            color: var(--noir);
        }

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

.contact-form-wrap h3 {
            font-size: 1.6rem;
            color: var(--noir);
            margin-bottom: 8px;
        }

.contact-form-wrap > p {
            color: var(--gris);
            margin-bottom: 30px;
            font-size: 0.9rem;
        }

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

.form-group label {
            display: block;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--noir);
            margin-bottom: 8px;
        }

.form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            background: var(--blanc);
            border: 1px solid #ddd;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            color: var(--noir);
            transition: border-color 0.3s ease;
            outline: none;
        }

.form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--or);
        }

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

#contactForm button[type="submit"] {
            padding: 16px 45px;
            background: var(--noir);
            color: var(--or);
            border: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

#contactForm button[type="submit"]:hover {
            background: var(--or);
            color: var(--noir);
        }

.contact-map {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

.contact-map iframe {
            width: 100%;
            height: 100%;
            min-height: 400px;
            filter: grayscale(0.5) contrast(1.1);
        }

.footer {
            background: var(--noir-deep);
            padding: 60px 0 0;
        }

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

.footer-brand .nav-logo-text {
            font-size: 1.1rem;
            margin-bottom: 20px;
            display: block;
        }

.footer-brand p {
            color: var(--gris);
            font-size: 0.88rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

.footer h4 {
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--or);
            margin-bottom: 25px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

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

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

.footer-links a {
            color: var(--gris);
            text-decoration: none;
            font-size: 0.88rem;
            transition: color 0.3s ease;
        }

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

.footer-bottom {
            padding: 25px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

.footer-bottom p {
            color: var(--gris);
            font-size: 0.8rem;
        }

.footer-bottom a {
            color: var(--or);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

.footer-legal {
            display: flex;
            gap: 25px;
        }

.footer-legal a {
            color: var(--gris);
            font-size: 0.8rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

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

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

.modal-content {
            background: var(--blanc);
            color: var(--noir);
            max-width: 600px;
            width: 100%;
            padding: 50px;
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
        }

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

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

.modal-content h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--noir);
        }

.modal-content p {
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 10px;
            line-height: 1.7;
        }

.lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            z-index: 3000;
            justify-content: center;
            align-items: center;
            padding: 40px;
        }

.lightbox.active {
            display: flex;
        }

.lightbox img {
            max-width: 90%;
            max-height: 85vh;
            object-fit: contain;
        }

.lightbox-close {
            position: absolute;
            top: 25px;
            right: 35px;
            font-size: 2rem;
            color: var(--blanc);
            cursor: pointer;
            background: none;
            border: none;
            z-index: 3001;
        }

.lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            color: var(--blanc);
            cursor: pointer;
            background: none;
            border: none;
            padding: 20px;
            transition: color 0.3s ease;
        }

.lightbox-nav:hover { color: var(--or); }

.lightbox-prev { left: 20px; }

.lightbox-next { right: 20px; }

@keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

@keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

@keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

.reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

.reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

.mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100%;
            background: rgba(20,20,20,0.96);
            z-index: 999;
            transition: right 0.4s ease;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

.mobile-menu.active {
            right: 0;
        }

.mobile-menu a {
            color: var(--blanc);
            text-decoration: none;
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            padding: 18px 0;
            display: block;
            text-align: center;
            transition: color 0.3s ease;
        }

.mobile-menu a:hover {
            color: var(--or);
        }

@media (max-width: 1024px) {
            .hero h1 { font-size: 3.2rem; }
            .section-header h2 { font-size: 2.2rem; }
            .about-grid { gap: 50px; }
            .about-text h2 { font-size: 2rem; }
            .horaires-wrapper { gap: 40px; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
        }

@media (max-width: 768px) {
            .nav-links { display: none; }
            .burger { display: flex; }
            .mobile-menu { display: flex; }

            .hero { min-height: 600px; }
            .hero h1 { font-size: 2.4rem; letter-spacing: 3px; }
            .hero h1 span { font-size: 0.5em; letter-spacing: 4px; }
            .hero-badge { font-size: 0.65rem; padding: 8px 20px; }
            .hero-bg { background-attachment: scroll; }

            .section { padding: 70px 0; }
            .section-header { margin-bottom: 50px; }
            .section-header h2 { font-size: 1.9rem; }

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

            .salon-intro { grid-template-columns: 1fr; gap: 30px; }
            .salon-intro-img::before { display: none; }
            .salon-gallery { grid-template-columns: 1fr 1fr; }
            .salon-gallery .salon-img:nth-child(1) { grid-column: 1 / -1; }

            .ba-grid { grid-template-columns: 1fr; }
            .ba-item img { height: 280px; }

            .about-grid { grid-template-columns: 1fr; gap: 40px; }
            .about-img-wrap .about-accent,
            .about-img-wrap .about-accent-2 { display: none; }
            .about-img-wrap img { height: 350px; }
            .about-features { grid-template-columns: 1fr; }

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

            .testimonials-wrapper { grid-template-columns: 1fr; }
            .testimonial-card { padding: 30px; }

            .tarifs-tabs { gap: 4px; }
            .tarif-tab { padding: 10px 16px; font-size: 0.65rem; }

            .horaires-wrapper { grid-template-columns: 1fr; }
            .horaires-info h2 { font-size: 2rem; }

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

            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .footer-legal { justify-content: center; }
        }

@media (max-width: 640px) {
            .hero h1 { font-size: 1.8rem; letter-spacing: 2px; }
            .hero-buttons { flex-direction: column; align-items: center; }
            .btn-primary, .btn-outline { width: 100%; max-width: 300px; justify-content: center; }
            .section-header h2 { font-size: 1.6rem; }
            .salon-gallery { grid-template-columns: 1fr; }
            .salon-gallery .salon-img:nth-child(1) { grid-column: auto; }
            .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
            .tarif-table thead th,
            .tarif-table tbody td { padding: 10px 12px; font-size: 0.8rem; }
            .booking-buttons { flex-direction: column; align-items: center; }
        }

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

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

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

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

.sct-tpl-zone { background: var(--noir); color: var(--blanc); }

.sct-tpl-zone h1, .sct-tpl-zone h2, .sct-tpl-zone h3, .sct-tpl-zone h4 { font-family: 'Playfair Display', serif; font-weight: 500; }

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 170px 0 90px;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_1_1773771077_69b999455106f.webp') center/cover no-repeat;
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

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

.sct-tpl-zone .sct-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    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.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.sct-tpl-zone .sct-breadcrumb a {
    color: var(--gris-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sct-tpl-zone .sct-breadcrumb a:hover { color: var(--or); }

.sct-tpl-zone .sct-bc-sep { color: var(--or); }

.sct-tpl-zone .sct-bc-current { color: var(--or); }

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

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid rgba(200,169,110,0.4);
    color: var(--or);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sct-tpl-zone .sct-hero-badge i { font-size: 0.85rem; }

.sct-tpl-zone .sct-hero-text h1 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--blanc);
    letter-spacing: 3px;
    line-height: 1.15;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.sct-tpl-zone .sct-hero-text h1 span {
    display: block;
    color: var(--or);
    font-style: italic;
    font-weight: 400;
    font-size: 0.55em;
    letter-spacing: 4px;
    margin-top: 10px;
    text-transform: none;
}

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.05rem;
    color: var(--gris-light);
    line-height: 1.8;
    margin-bottom: 35px;
}

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

.sct-tpl-zone .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--or);
    color: var(--noir);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.sct-tpl-zone .sct-btn-primary:hover {
    background: var(--or-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200,169,110,0.3);
}

.sct-tpl-zone .sct-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--blanc);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.4s ease;
}

.sct-tpl-zone .sct-btn-outline:hover {
    border-color: var(--or);
    color: var(--or);
    transform: translateY(-2px);
}

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

.sct-tpl-zone .sct-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gris-light);
}

.sct-tpl-zone .sct-hero-trust i { color: var(--or); }

.sct-tpl-zone .sct-hero-card {
    background: rgba(36,36,36,0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(200,169,110,0.25);
    padding: 40px 35px;
    position: relative;
}

.sct-tpl-zone .sct-hero-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 50px;
    height: 50px;
    border-top: 2px solid var(--or);
    border-left: 2px solid var(--or);
}

.sct-tpl-zone .sct-hero-card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 50px;
    height: 50px;
    border-bottom: 2px solid var(--or);
    border-right: 2px solid var(--or);
}

.sct-tpl-zone .sct-hero-card h3 {
    font-size: 1.4rem;
    color: var(--or);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.sct-tpl-zone .sct-hero-card-list {
    list-style: none;
    margin-bottom: 30px;
}

.sct-tpl-zone .sct-hero-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(200,169,110,0.12);
    font-size: 0.88rem;
    color: var(--gris-light);
}

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

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

.sct-tpl-zone .sct-hero-card-list strong {
    color: var(--blanc);
    font-weight: 500;
    display: block;
    margin-bottom: 3px;
}

.sct-tpl-zone .sct-hero-card .sct-btn-primary { width: 100%; justify-content: center; }

.sct-tpl-zone .sct-stats-band {
    background: var(--noir-deep);
    padding: 60px 0;
    border-top: 1px solid rgba(200,169,110,0.15);
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

.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-item {
    text-align: center;
    padding: 0 15px;
    border-right: 1px solid rgba(200,169,110,0.15);
}

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

.sct-tpl-zone .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--or);
    margin-bottom: 8px;
    line-height: 1;
}

.sct-tpl-zone .sct-stat-label {
    font-size: 0.78rem;
    color: var(--gris-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sct-tpl-zone .sct-intro-section {
    padding: 100px 0;
    background: var(--noir);
}

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

.sct-tpl-zone .sct-section-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.sct-tpl-zone .sct-section-title {
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--blanc);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.25;
}

.sct-tpl-zone .sct-section-divider {
    width: 60px;
    height: 1px;
    background: var(--or);
    margin: 0 auto 50px;
}

.sct-tpl-zone .sct-intro-content p {
    font-size: 1rem;
    color: var(--gris-light);
    line-height: 1.9;
    margin-bottom: 22px;
}

.sct-tpl-zone .sct-intro-content strong {
    color: var(--or);
    font-weight: 500;
}

.sct-tpl-zone .sct-services-section {
    padding: 100px 0;
    background: var(--noir-deep);
}

.sct-tpl-zone .sct-services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.sct-tpl-zone .sct-services-list a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    background: var(--noir-card);
    border: 1px solid rgba(200,169,110,0.15);
    color: var(--blanc);
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 0.92rem;
}

.sct-tpl-zone .sct-services-list a::before {
    content: '\f0c8';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--or);
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.sct-tpl-zone .sct-services-list a:hover {
    background: var(--or);
    color: var(--noir);
    border-color: var(--or);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(200,169,110,0.25);
}

.sct-tpl-zone .sct-services-list a:hover::before { color: var(--noir); transform: scale(1.15); }

.sct-tpl-zone .sct-zones-section {
    padding: 100px 0;
    background: var(--noir);
}

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

.sct-tpl-zone .sct-zones-list .sct-zone-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--noir-card);
    border: 1px solid rgba(200,169,110,0.2);
    color: var(--gris-light);
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-zones-list .sct-zone-chip i { color: var(--or); font-size: 0.75rem; }

.sct-tpl-zone .sct-zones-list .sct-zone-chip:hover {
    background: var(--or);
    color: var(--noir);
    border-color: var(--or);
}

.sct-tpl-zone .sct-zones-list .sct-zone-chip:hover i { color: var(--noir); }

.sct-tpl-zone .sct-usecase-section {
    padding: 100px 0;
    background: var(--noir-deep);
}

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

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

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

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

.sct-tpl-zone .sct-usecase-img-wrap::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--or);
    border-left: 2px solid var(--or);
}

.sct-tpl-zone .sct-usecase-img-wrap::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 2px solid var(--or);
    border-right: 2px solid var(--or);
}

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

.sct-tpl-zone .sct-usecase-text .sct-section-divider { margin: 0 0 35px; }

.sct-tpl-zone .sct-usecase-text p {
    font-size: 0.95rem;
    color: var(--gris-light);
    line-height: 1.9;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-usecase-text strong { color: var(--or); font-weight: 500; }

.sct-tpl-zone .sct-engagements-section {
    padding: 100px 0;
    background: var(--noir);
}

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

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

.sct-tpl-zone .sct-engagement-card {
    padding: 45px 35px;
    background: var(--noir-card);
    border: 1px solid rgba(200,169,110,0.1);
    text-align: center;
    transition: all 0.4s ease;
}

.sct-tpl-zone .sct-engagement-card:hover {
    border-color: var(--or);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.sct-tpl-zone .sct-engagement-icon {
    font-size: 2.5rem;
    color: var(--or);
    margin-bottom: 22px;
}

.sct-tpl-zone .sct-engagement-card h3 {
    font-size: 1.2rem;
    color: var(--or);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.sct-tpl-zone .sct-engagement-card p {
    font-size: 0.9rem;
    color: var(--gris-light);
    line-height: 1.8;
}

.sct-tpl-zone .sct-local-spec {
    padding: 90px 0;
    background: var(--noir-deep);
}

.sct-tpl-zone .sct-local-spec-content {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.sct-tpl-zone .sct-local-spec-content p {
    font-size: 1rem;
    color: var(--gris-light);
    line-height: 1.9;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-local-spec-content strong { color: var(--or); font-weight: 500; }

.sct-tpl-zone .sct-faq-section {
    padding: 100px 0;
    background: var(--noir);
}

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

.sct-tpl-zone .sct-faq-item {
    background: var(--noir-card);
    border: 1px solid rgba(200,169,110,0.12);
    margin-bottom: 14px;
    overflow: hidden;
}

.sct-tpl-zone .sct-faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--blanc);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.sct-tpl-zone .sct-faq-item summary::after {
    content: '+';
    color: var(--or);
    font-size: 1.6rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    margin-left: 20px;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-faq-item[open] summary { color: var(--or); }

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

.sct-tpl-zone .sct-faq-answer {
    padding: 0 28px 24px;
    font-size: 0.92rem;
    color: var(--gris-light);
    line-height: 1.85;
}

.sct-tpl-zone .sct-maillage-section {
    padding: 80px 0;
    background: var(--noir-deep);
    border-top: 1px solid rgba(200,169,110,0.12);
}

.sct-tpl-zone .sct-maillage-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--blanc);
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.sct-tpl-zone .sct-maillage-subtitle {
    font-size: 0.9rem;
    color: var(--gris-light);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

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

.sct-tpl-zone .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--noir-card);
    border: 1px solid rgba(200,169,110,0.25);
    color: var(--gris-light);
    text-decoration: none;
    font-size: 0.84rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-maillage-list a::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--or);
    font-size: 0.75rem;
}

.sct-tpl-zone .sct-maillage-list a:hover {
    background: var(--or);
    color: var(--noir);
    border-color: var(--or);
}

.sct-tpl-zone .sct-maillage-list a:hover::before { color: var(--noir); }

.sct-tpl-zone .sct-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_1_1773771077_69b999455106f.webp') center/cover no-repeat;
    text-align: center;
    border-top: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-zone .sct-cta-final .sct-section-label { color: var(--or); }

.sct-tpl-zone .sct-cta-final h2 {
    font-size: 2.6rem;
    color: var(--blanc);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.sct-tpl-zone .sct-cta-final p {
    font-size: 1.05rem;
    color: var(--gris-light);
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero { padding: 150px 0 70px; }
    .sct-tpl-zone .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-zone .sct-hero-card { max-width: 520px; margin: 0 auto; width: 100%; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 2.4rem; letter-spacing: 2px; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .sct-tpl-zone .sct-stat-item:nth-child(2) { border-right: none; }
    .sct-tpl-zone .sct-services-list { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .sct-tpl-zone .sct-usecase-grid { grid-template-columns: 1fr; gap: 50px; }
    .sct-tpl-zone .sct-usecase-text .sct-section-label, .sct-tpl-zone .sct-usecase-text .sct-section-title { text-align: center; }
    .sct-tpl-zone .sct-usecase-text .sct-section-divider { margin: 0 auto 35px; }
    .sct-tpl-zone .sct-section-title { font-size: 2rem; }
    .sct-tpl-zone .sct-cta-final h2 { font-size: 2.1rem; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-zone .sct-hero-container { padding: 0 20px; }
    .sct-tpl-zone .sct-breadcrumb { font-size: 0.7rem; gap: 6px; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; letter-spacing: 1px; }
    .sct-tpl-zone .sct-hero-subtitle { font-size: 0.95rem; }
    .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-card { padding: 30px 22px; }
    .sct-tpl-zone .sct-stats-band { padding: 45px 0; }
    .sct-tpl-zone .sct-stat-value { font-size: 2rem; }
    .sct-tpl-zone .sct-intro-section, .sct-tpl-zone .sct-services-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, .sct-tpl-zone .sct-cta-final { padding: 70px 0; }
    .sct-tpl-zone .sct-services-list { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .sct-tpl-zone .sct-section-title { font-size: 1.7rem; }
    .sct-tpl-zone .sct-cta-final h2 { font-size: 1.7rem; letter-spacing: 1px; }
    .sct-tpl-zone .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-faq-item summary { font-size: 0.95rem; padding: 18px 22px; }
    .sct-tpl-zone .sct-faq-answer { padding: 0 22px 20px; }
    .sct-tpl-zone .sct-usecase-img-wrap img { height: 320px; }
    .sct-tpl-zone .sct-maillage-title { font-size: 1.3rem; }
}

.sct-tpl-service-hub { background: var(--noir); color: var(--blanc); }

.sct-tpl-service-hub h1, .sct-tpl-service-hub h2, .sct-tpl-service-hub h3, .sct-tpl-service-hub h4 { font-family: 'Playfair Display', serif; font-weight: 500; }

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 170px 0 90px;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_1_1773771077_69b999455106f.webp') center/cover no-repeat;
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

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

.sct-tpl-service-hub .sct-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    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.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.sct-tpl-service-hub .sct-breadcrumb a {
    color: var(--gris-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sct-tpl-service-hub .sct-breadcrumb a:hover { color: var(--or); }

.sct-tpl-service-hub .sct-bc-sep { color: var(--or); }

.sct-tpl-service-hub .sct-bc-current { color: var(--or); }

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

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid rgba(200,169,110,0.4);
    color: var(--or);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sct-tpl-service-hub .sct-hero-badge i { font-size: 0.85rem; }

.sct-tpl-service-hub .sct-hero-text h1 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--blanc);
    letter-spacing: 3px;
    line-height: 1.15;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.sct-tpl-service-hub .sct-hero-text h1 span {
    display: block;
    color: var(--or);
    font-style: italic;
    font-weight: 400;
    font-size: 0.55em;
    letter-spacing: 4px;
    margin-top: 10px;
    text-transform: none;
}

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.05rem;
    color: var(--gris-light);
    line-height: 1.8;
    margin-bottom: 35px;
}

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

.sct-tpl-service-hub .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--or);
    color: var(--noir);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: var(--or-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200,169,110,0.3);
}

.sct-tpl-service-hub .sct-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--blanc);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.4s ease;
}

.sct-tpl-service-hub .sct-btn-outline:hover {
    border-color: var(--or);
    color: var(--or);
    transform: translateY(-2px);
}

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

.sct-tpl-service-hub .sct-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gris-light);
}

.sct-tpl-service-hub .sct-hero-trust i { color: var(--or); }

.sct-tpl-service-hub .sct-hero-card {
    background: rgba(36,36,36,0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(200,169,110,0.25);
    padding: 40px 35px;
    position: relative;
}

.sct-tpl-service-hub .sct-hero-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 50px;
    height: 50px;
    border-top: 2px solid var(--or);
    border-left: 2px solid var(--or);
}

.sct-tpl-service-hub .sct-hero-card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 50px;
    height: 50px;
    border-bottom: 2px solid var(--or);
    border-right: 2px solid var(--or);
}

.sct-tpl-service-hub .sct-hero-card h3 {
    font-size: 1.4rem;
    color: var(--or);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.sct-tpl-service-hub .sct-hero-card-list {
    list-style: none;
    margin-bottom: 30px;
}

.sct-tpl-service-hub .sct-hero-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(200,169,110,0.12);
    font-size: 0.88rem;
    color: var(--gris-light);
}

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

.sct-tpl-service-hub .sct-hero-card-list i {
    color: var(--or);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-hero-card-list strong {
    color: var(--blanc);
    font-weight: 500;
    display: block;
    margin-bottom: 3px;
}

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

.sct-tpl-service-hub .sct-stats-band {
    background: var(--noir-deep);
    padding: 60px 0;
    border-top: 1px solid rgba(200,169,110,0.15);
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

.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-item {
    text-align: center;
    padding: 0 15px;
    border-right: 1px solid rgba(200,169,110,0.15);
}

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

.sct-tpl-service-hub .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--or);
    margin-bottom: 8px;
    line-height: 1;
}

.sct-tpl-service-hub .sct-stat-label {
    font-size: 0.78rem;
    color: var(--gris-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sct-tpl-service-hub .sct-intro-section {
    padding: 100px 0;
    background: var(--noir);
}

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

.sct-tpl-service-hub .sct-section-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.sct-tpl-service-hub .sct-section-title {
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--blanc);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.25;
}

.sct-tpl-service-hub .sct-section-divider {
    width: 60px;
    height: 1px;
    background: var(--or);
    margin: 0 auto 50px;
}

.sct-tpl-service-hub .sct-intro-content p {
    font-size: 1rem;
    color: var(--gris-light);
    line-height: 1.9;
    margin-bottom: 22px;
}

.sct-tpl-service-hub .sct-intro-content strong {
    color: var(--or);
    font-weight: 500;
}

.sct-tpl-service-hub .sct-services-section {
    padding: 100px 0;
    background: var(--noir-deep);
}

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

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

.sct-tpl-service-hub .sct-service-card {
    background: var(--noir-card);
    border: 1px solid rgba(200,169,110,0.1);
    overflow: hidden;
    transition: all 0.5s ease;
}

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200,169,110,0.35);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

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

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

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

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

.sct-tpl-service-hub .sct-service-card-body h3 {
    font-size: 1.25rem;
    color: var(--or);
    margin-bottom: 14px;
}

.sct-tpl-service-hub .sct-service-card-body p {
    font-size: 0.9rem;
    color: var(--gris-light);
    line-height: 1.75;
}

.sct-tpl-service-hub .sct-processus-section {
    padding: 100px 0;
    background: var(--noir);
}

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

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

.sct-tpl-service-hub .sct-step-card {
    text-align: center;
    padding: 35px 20px;
    background: var(--noir-card);
    border: 1px solid rgba(200,169,110,0.1);
    position: relative;
    transition: all 0.4s ease;
}

.sct-tpl-service-hub .sct-step-card:hover {
    border-color: rgba(200,169,110,0.35);
    transform: translateY(-5px);
}

.sct-tpl-service-hub .sct-step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--or);
    color: var(--noir);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
}

.sct-tpl-service-hub .sct-step-icon {
    font-size: 2rem;
    color: var(--or);
    margin: 15px 0 18px;
}

.sct-tpl-service-hub .sct-step-card h3 {
    font-size: 1.05rem;
    color: var(--blanc);
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-step-card p {
    font-size: 0.82rem;
    color: var(--gris);
    line-height: 1.7;
}

.sct-tpl-service-hub .sct-why-section {
    padding: 100px 0;
    background: var(--noir-deep);
}

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

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

.sct-tpl-service-hub .sct-why-card {
    padding: 35px 25px;
    background: var(--noir-card);
    border: 1px solid rgba(200,169,110,0.1);
    text-align: center;
    transition: all 0.4s ease;
}

.sct-tpl-service-hub .sct-why-card:hover {
    border-color: rgba(200,169,110,0.35);
    transform: translateY(-5px);
}

.sct-tpl-service-hub .sct-why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--or);
    color: var(--or);
    font-size: 1.5rem;
    border-radius: 50%;
}

.sct-tpl-service-hub .sct-why-card h3 {
    font-size: 1.1rem;
    color: var(--or);
    margin-bottom: 14px;
}

.sct-tpl-service-hub .sct-why-card p {
    font-size: 0.88rem;
    color: var(--gris-light);
    line-height: 1.75;
}

.sct-tpl-service-hub .sct-usecase-section {
    padding: 100px 0;
    background: var(--noir);
}

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

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

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

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

.sct-tpl-service-hub .sct-usecase-img-wrap::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--or);
    border-left: 2px solid var(--or);
}

.sct-tpl-service-hub .sct-usecase-img-wrap::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 2px solid var(--or);
    border-right: 2px solid var(--or);
}

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

.sct-tpl-service-hub .sct-usecase-text .sct-section-divider { margin: 0 0 35px; }

.sct-tpl-service-hub .sct-usecase-text p {
    font-size: 0.95rem;
    color: var(--gris-light);
    line-height: 1.9;
    margin-bottom: 18px;
}

.sct-tpl-service-hub .sct-usecase-text strong { color: var(--or); font-weight: 500; }

.sct-tpl-service-hub .sct-engagements-section {
    padding: 100px 0;
    background: var(--noir-deep);
}

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

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

.sct-tpl-service-hub .sct-engagement-card {
    padding: 45px 35px;
    background: var(--noir-card);
    border: 1px solid rgba(200,169,110,0.1);
    text-align: center;
    transition: all 0.4s ease;
}

.sct-tpl-service-hub .sct-engagement-card:hover {
    border-color: var(--or);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.sct-tpl-service-hub .sct-engagement-icon {
    font-size: 2.5rem;
    color: var(--or);
    margin-bottom: 22px;
}

.sct-tpl-service-hub .sct-engagement-card h3 {
    font-size: 1.2rem;
    color: var(--or);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.sct-tpl-service-hub .sct-engagement-card p {
    font-size: 0.9rem;
    color: var(--gris-light);
    line-height: 1.8;
}

.sct-tpl-service-hub .sct-faq-section {
    padding: 100px 0;
    background: var(--noir);
}

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

.sct-tpl-service-hub .sct-faq-item {
    background: var(--noir-card);
    border: 1px solid rgba(200,169,110,0.12);
    margin-bottom: 14px;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--blanc);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.sct-tpl-service-hub .sct-faq-item summary::after {
    content: '+';
    color: var(--or);
    font-size: 1.6rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    margin-left: 20px;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-faq-item[open] summary { color: var(--or); }

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

.sct-tpl-service-hub .sct-faq-answer {
    padding: 0 28px 24px;
    font-size: 0.92rem;
    color: var(--gris-light);
    line-height: 1.85;
}

.sct-tpl-service-hub .sct-maillage-section {
    padding: 90px 0;
    background: var(--noir-deep);
    border-top: 1px solid rgba(200,169,110,0.12);
}

.sct-tpl-service-hub .sct-maillage-section:nth-of-type(even) { background: var(--noir); }

.sct-tpl-service-hub .sct-maillage-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--blanc);
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.sct-tpl-service-hub .sct-maillage-subtitle {
    font-size: 0.92rem;
    color: var(--gris-light);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

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

.sct-tpl-service-hub .sct-maillage-cities a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--noir-card);
    border: 1px solid rgba(200,169,110,0.2);
    color: var(--gris-light);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-maillage-cities a::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--or);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-maillage-cities a:hover {
    background: var(--or);
    color: var(--noir);
    border-color: var(--or);
    transform: translateY(-2px);
}

.sct-tpl-service-hub .sct-maillage-cities a:hover::before { color: var(--noir); }

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

.sct-tpl-service-hub .sct-maillage-list a {
    display: inline-block;
    padding: 9px 20px;
    background: transparent;
    border: 1px solid rgba(200,169,110,0.25);
    color: var(--gris-light);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-maillage-list a:hover {
    background: var(--or);
    color: var(--noir);
    border-color: var(--or);
}

.sct-tpl-service-hub .sct-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_1_1773771077_69b999455106f.webp') center/cover no-repeat;
    text-align: center;
    border-top: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-service-hub .sct-cta-final .sct-section-label { color: var(--or); }

.sct-tpl-service-hub .sct-cta-final h2 {
    font-size: 2.6rem;
    color: var(--blanc);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.sct-tpl-service-hub .sct-cta-final p {
    font-size: 1.05rem;
    color: var(--gris-light);
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero { padding: 150px 0 70px; }
    .sct-tpl-service-hub .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-hero-card { max-width: 520px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 2.4rem; letter-spacing: 2px; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .sct-tpl-service-hub .sct-stat-item:nth-child(2) { border-right: none; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-processus-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; max-width: 520px; margin: 0 auto; }
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 50px; }
    .sct-tpl-service-hub .sct-usecase-text .sct-section-label, .sct-tpl-service-hub .sct-usecase-text .sct-section-title { text-align: center; }
    .sct-tpl-service-hub .sct-usecase-text .sct-section-divider { margin: 0 auto 35px; }
    .sct-tpl-service-hub .sct-section-title { font-size: 2rem; }
    .sct-tpl-service-hub .sct-cta-final h2 { font-size: 2.1rem; }
    .sct-tpl-service-hub .sct-maillage-cities { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-service-hub .sct-maillage-title { font-size: 1.5rem; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-hub .sct-hero-container { padding: 0 20px; }
    .sct-tpl-service-hub .sct-breadcrumb { font-size: 0.7rem; gap: 6px; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; letter-spacing: 1px; }
    .sct-tpl-service-hub .sct-hero-subtitle { font-size: 0.95rem; }
    .sct-tpl-service-hub .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-hero-card { padding: 30px 22px; }
    .sct-tpl-service-hub .sct-stats-band { padding: 45px 0; }
    .sct-tpl-service-hub .sct-stat-value { font-size: 2rem; }
    .sct-tpl-service-hub .sct-intro-section, .sct-tpl-service-hub .sct-services-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, .sct-tpl-service-hub .sct-cta-final { padding: 70px 0; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .sct-tpl-service-hub .sct-section-title { font-size: 1.7rem; }
    .sct-tpl-service-hub .sct-cta-final h2 { font-size: 1.7rem; letter-spacing: 1px; }
    .sct-tpl-service-hub .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-faq-item summary { font-size: 0.95rem; padding: 18px 22px; }
    .sct-tpl-service-hub .sct-faq-answer { padding: 0 22px 20px; }
    .sct-tpl-service-hub .sct-usecase-img-wrap img { height: 320px; }
    .sct-tpl-service-hub .sct-maillage-cities { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .sct-tpl-service-hub .sct-maillage-title { font-size: 1.3rem; }
}

.sct-tpl-service-city { background: var(--noir); color: var(--blanc); }

.sct-tpl-service-city h1, .sct-tpl-service-city h2, .sct-tpl-service-city h3, .sct-tpl-service-city h4 { font-family: 'Playfair Display', serif; font-weight: 500; }

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 170px 0 90px;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_5_1773771169_69b999a172e87.webp') center/cover no-repeat;
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

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

.sct-tpl-service-city .sct-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    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.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.sct-tpl-service-city .sct-breadcrumb a {
    color: var(--gris-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sct-tpl-service-city .sct-breadcrumb a:hover { color: var(--or); }

.sct-tpl-service-city .sct-bc-sep { color: var(--or); }

.sct-tpl-service-city .sct-bc-current { color: var(--or); }

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

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid rgba(200,169,110,0.4);
    color: var(--or);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sct-tpl-service-city .sct-hero-badge i { font-size: 0.85rem; }

.sct-tpl-service-city .sct-hero-text h1 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--blanc);
    letter-spacing: 3px;
    line-height: 1.15;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.sct-tpl-service-city .sct-hero-text h1 span {
    display: block;
    color: var(--or);
    font-style: italic;
    font-weight: 400;
    font-size: 0.55em;
    letter-spacing: 4px;
    margin-top: 10px;
    text-transform: none;
}

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.05rem;
    color: var(--gris-light);
    line-height: 1.8;
    margin-bottom: 35px;
}

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

.sct-tpl-service-city .sct-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--or);
    color: var(--noir);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.sct-tpl-service-city .sct-btn-primary:hover {
    background: var(--or-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200,169,110,0.3);
}

.sct-tpl-service-city .sct-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--blanc);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.4s ease;
}

.sct-tpl-service-city .sct-btn-outline:hover {
    border-color: var(--or);
    color: var(--or);
    transform: translateY(-2px);
}

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

.sct-tpl-service-city .sct-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gris-light);
}

.sct-tpl-service-city .sct-hero-trust i { color: var(--or); }

.sct-tpl-service-city .sct-hero-card {
    background: rgba(36,36,36,0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(200,169,110,0.25);
    padding: 40px 35px;
    position: relative;
}

.sct-tpl-service-city .sct-hero-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 50px;
    height: 50px;
    border-top: 2px solid var(--or);
    border-left: 2px solid var(--or);
}

.sct-tpl-service-city .sct-hero-card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 50px;
    height: 50px;
    border-bottom: 2px solid var(--or);
    border-right: 2px solid var(--or);
}

.sct-tpl-service-city .sct-hero-card h3 {
    font-size: 1.4rem;
    color: var(--or);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.sct-tpl-service-city .sct-hero-card-list {
    list-style: none;
    margin-bottom: 30px;
}

.sct-tpl-service-city .sct-hero-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(200,169,110,0.12);
    font-size: 0.88rem;
    color: var(--gris-light);
}

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

.sct-tpl-service-city .sct-hero-card-list i {
    color: var(--or);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.sct-tpl-service-city .sct-hero-card-list strong {
    color: var(--blanc);
    font-weight: 500;
    display: block;
    margin-bottom: 3px;
}

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

.sct-tpl-service-city .sct-stats-band {
    background: var(--noir-deep);
    padding: 60px 0;
    border-top: 1px solid rgba(200,169,110,0.15);
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

.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-item {
    text-align: center;
    padding: 0 15px;
    border-right: 1px solid rgba(200,169,110,0.15);
}

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

.sct-tpl-service-city .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--or);
    margin-bottom: 8px;
    line-height: 1;
}

.sct-tpl-service-city .sct-stat-label {
    font-size: 0.78rem;
    color: var(--gris-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sct-tpl-service-city .sct-intro-section {
    padding: 100px 0;
    background: var(--noir);
}

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

.sct-tpl-service-city .sct-section-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.sct-tpl-service-city .sct-section-title {
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--blanc);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.25;
}

.sct-tpl-service-city .sct-section-divider {
    width: 60px;
    height: 1px;
    background: var(--or);
    margin: 0 auto 50px;
}

.sct-tpl-service-city .sct-intro-content p {
    font-size: 1rem;
    color: var(--gris-light);
    line-height: 1.9;
    margin-bottom: 22px;
}

.sct-tpl-service-city .sct-intro-content strong {
    color: var(--or);
    font-weight: 500;
}

.sct-tpl-service-city .sct-services-section {
    padding: 100px 0;
    background: var(--noir-deep);
}

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

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

.sct-tpl-service-city .sct-service-card {
    background: var(--noir-card);
    border: 1px solid rgba(200,169,110,0.1);
    overflow: hidden;
    transition: all 0.5s ease;
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200,169,110,0.35);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

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

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

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

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

.sct-tpl-service-city .sct-service-card-body h3 {
    font-size: 1.25rem;
    color: var(--or);
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-service-card-body p {
    font-size: 0.9rem;
    color: var(--gris-light);
    line-height: 1.75;
}

.sct-tpl-service-city .sct-processus-section {
    padding: 100px 0;
    background: var(--noir);
}

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

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

.sct-tpl-service-city .sct-step-card {
    text-align: center;
    padding: 35px 20px;
    background: var(--noir-card);
    border: 1px solid rgba(200,169,110,0.1);
    position: relative;
    transition: all 0.4s ease;
}

.sct-tpl-service-city .sct-step-card:hover {
    border-color: rgba(200,169,110,0.35);
    transform: translateY(-5px);
}

.sct-tpl-service-city .sct-step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--or);
    color: var(--noir);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
}

.sct-tpl-service-city .sct-step-icon {
    font-size: 2rem;
    color: var(--or);
    margin: 15px 0 18px;
}

.sct-tpl-service-city .sct-step-card h3 {
    font-size: 1.05rem;
    color: var(--blanc);
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-step-card p {
    font-size: 0.82rem;
    color: var(--gris);
    line-height: 1.7;
}

.sct-tpl-service-city .sct-why-section {
    padding: 100px 0;
    background: var(--noir-deep);
}

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

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

.sct-tpl-service-city .sct-why-card {
    padding: 35px 25px;
    background: var(--noir-card);
    border: 1px solid rgba(200,169,110,0.1);
    text-align: center;
    transition: all 0.4s ease;
}

.sct-tpl-service-city .sct-why-card:hover {
    border-color: rgba(200,169,110,0.35);
    transform: translateY(-5px);
}

.sct-tpl-service-city .sct-why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--or);
    color: var(--or);
    font-size: 1.5rem;
    border-radius: 50%;
}

.sct-tpl-service-city .sct-why-card h3 {
    font-size: 1.1rem;
    color: var(--or);
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-why-card p {
    font-size: 0.88rem;
    color: var(--gris-light);
    line-height: 1.75;
}

.sct-tpl-service-city .sct-zones-section {
    padding: 100px 0;
    background: var(--noir);
}

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

.sct-tpl-service-city .sct-zones-list .sct-zone-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--noir-card);
    border: 1px solid rgba(200,169,110,0.2);
    color: var(--gris-light);
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-zones-list .sct-zone-chip i { color: var(--or); font-size: 0.75rem; }

.sct-tpl-service-city .sct-zones-list .sct-zone-chip:hover {
    background: var(--or);
    color: var(--noir);
    border-color: var(--or);
}

.sct-tpl-service-city .sct-zones-list .sct-zone-chip:hover i { color: var(--noir); }

.sct-tpl-service-city .sct-usecase-section {
    padding: 100px 0;
    background: var(--noir-deep);
}

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

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

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

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

.sct-tpl-service-city .sct-usecase-img-wrap::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--or);
    border-left: 2px solid var(--or);
}

.sct-tpl-service-city .sct-usecase-img-wrap::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 2px solid var(--or);
    border-right: 2px solid var(--or);
}

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

.sct-tpl-service-city .sct-usecase-text .sct-section-divider { margin: 0 0 35px; }

.sct-tpl-service-city .sct-usecase-text p {
    font-size: 0.95rem;
    color: var(--gris-light);
    line-height: 1.9;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-usecase-text strong { color: var(--or); font-weight: 500; }

.sct-tpl-service-city .sct-engagements-section {
    padding: 100px 0;
    background: var(--noir);
}

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

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

.sct-tpl-service-city .sct-engagement-card {
    padding: 45px 35px;
    background: var(--noir-card);
    border: 1px solid rgba(200,169,110,0.1);
    text-align: center;
    transition: all 0.4s ease;
}

.sct-tpl-service-city .sct-engagement-card:hover {
    border-color: var(--or);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.sct-tpl-service-city .sct-engagement-icon {
    font-size: 2.5rem;
    color: var(--or);
    margin-bottom: 22px;
}

.sct-tpl-service-city .sct-engagement-card h3 {
    font-size: 1.2rem;
    color: var(--or);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.sct-tpl-service-city .sct-engagement-card p {
    font-size: 0.9rem;
    color: var(--gris-light);
    line-height: 1.8;
}

.sct-tpl-service-city .sct-local-spec {
    padding: 90px 0;
    background: var(--noir-deep);
}

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

.sct-tpl-service-city .sct-local-spec-content p {
    font-size: 1rem;
    color: var(--gris-light);
    line-height: 1.9;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-local-spec-content strong { color: var(--or); font-weight: 500; }

.sct-tpl-service-city .sct-faq-section {
    padding: 100px 0;
    background: var(--noir);
}

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

.sct-tpl-service-city .sct-faq-item {
    background: var(--noir-card);
    border: 1px solid rgba(200,169,110,0.12);
    margin-bottom: 14px;
    overflow: hidden;
}

.sct-tpl-service-city .sct-faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--blanc);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.sct-tpl-service-city .sct-faq-item summary::after {
    content: '+';
    color: var(--or);
    font-size: 1.6rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    margin-left: 20px;
    flex-shrink: 0;
}

.sct-tpl-service-city .sct-faq-item[open] summary { color: var(--or); }

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

.sct-tpl-service-city .sct-faq-answer {
    padding: 0 28px 24px;
    font-size: 0.92rem;
    color: var(--gris-light);
    line-height: 1.85;
}

.sct-tpl-service-city .sct-maillage-section {
    padding: 70px 0;
    background: var(--noir-deep);
    border-top: 1px solid rgba(200,169,110,0.12);
}

.sct-tpl-service-city .sct-maillage-section:nth-of-type(even) { background: var(--noir); }

.sct-tpl-service-city .sct-maillage-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--or);
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

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

.sct-tpl-service-city .sct-maillage-list a {
    display: inline-block;
    padding: 9px 20px;
    background: transparent;
    border: 1px solid rgba(200,169,110,0.25);
    color: var(--gris-light);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-maillage-list a:hover {
    background: var(--or);
    color: var(--noir);
    border-color: var(--or);
}

.sct-tpl-service-city .sct-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_5_1773771169_69b999a172e87.webp') center/cover no-repeat;
    text-align: center;
    border-top: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-service-city .sct-cta-final .sct-section-label { color: var(--or); }

.sct-tpl-service-city .sct-cta-final h2 {
    font-size: 2.6rem;
    color: var(--blanc);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.sct-tpl-service-city .sct-cta-final p {
    font-size: 1.05rem;
    color: var(--gris-light);
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero { padding: 150px 0 70px; }
    .sct-tpl-service-city .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-city .sct-hero-card { max-width: 520px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 2.4rem; letter-spacing: 2px; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .sct-tpl-service-city .sct-stat-item:nth-child(2) { border-right: none; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-processus-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; max-width: 520px; margin: 0 auto; }
    .sct-tpl-service-city .sct-usecase-grid { grid-template-columns: 1fr; gap: 50px; }
    .sct-tpl-service-city .sct-usecase-text .sct-section-label, .sct-tpl-service-city .sct-usecase-text .sct-section-title { text-align: center; }
    .sct-tpl-service-city .sct-usecase-text .sct-section-divider { margin: 0 auto 35px; }
    .sct-tpl-service-city .sct-section-title { font-size: 2rem; }
    .sct-tpl-service-city .sct-cta-final h2 { font-size: 2.1rem; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-city .sct-hero-container { padding: 0 20px; }
    .sct-tpl-service-city .sct-breadcrumb { font-size: 0.7rem; gap: 6px; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; letter-spacing: 1px; }
    .sct-tpl-service-city .sct-hero-subtitle { font-size: 0.95rem; }
    .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-card { padding: 30px 22px; }
    .sct-tpl-service-city .sct-stats-band { padding: 45px 0; }
    .sct-tpl-service-city .sct-stat-value { font-size: 2rem; }
    .sct-tpl-service-city .sct-intro-section, .sct-tpl-service-city .sct-services-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-faq-section, .sct-tpl-service-city .sct-cta-final { padding: 70px 0; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .sct-tpl-service-city .sct-section-title { font-size: 1.7rem; }
    .sct-tpl-service-city .sct-cta-final h2 { font-size: 1.7rem; letter-spacing: 1px; }
    .sct-tpl-service-city .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-faq-item summary { font-size: 0.95rem; padding: 18px 22px; }
    .sct-tpl-service-city .sct-faq-answer { padding: 0 22px 20px; }
    .sct-tpl-service-city .sct-usecase-img-wrap img { height: 320px; }
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 170px 0 90px;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_3_1773771123_69b9997394232.webp') center/cover no-repeat;
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-service-city .sct-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_3_1773771123_69b9997394232.webp') center/cover no-repeat;
    text-align: center;
    border-top: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 170px 0 90px;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_1_1773771077_69b999455106f.webp') center/cover no-repeat;
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-service-city .sct-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_1_1773771077_69b999455106f.webp') center/cover no-repeat;
    text-align: center;
    border-top: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 170px 0 90px;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_3_1773771123_69b9997394232.webp') center/cover no-repeat;
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-zone .sct-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_3_1773771123_69b9997394232.webp') center/cover no-repeat;
    text-align: center;
    border-top: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 170px 0 90px;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_2_1773771099_69b9995b1fa72.webp') center/cover no-repeat;
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-service-hub .sct-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_2_1773771099_69b9995b1fa72.webp') center/cover no-repeat;
    text-align: center;
    border-top: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 170px 0 90px;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_6_1773771193_69b999b93f5a7.webp') center/cover no-repeat;
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-service-city .sct-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_6_1773771193_69b999b93f5a7.webp') center/cover no-repeat;
    text-align: center;
    border-top: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 170px 0 90px;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_5_1773771169_69b999a172e87.webp') center/cover no-repeat;
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-zone .sct-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_5_1773771169_69b999a172e87.webp') center/cover no-repeat;
    text-align: center;
    border-top: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 170px 0 90px;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_3_1773771123_69b9997394232.webp') center/cover no-repeat;
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-service-hub .sct-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_3_1773771123_69b9997394232.webp') center/cover no-repeat;
    text-align: center;
    border-top: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 170px 0 90px;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_2_1773771099_69b9995b1fa72.webp') center/cover no-repeat;
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-zone .sct-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_2_1773771099_69b9995b1fa72.webp') center/cover no-repeat;
    text-align: center;
    border-top: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 170px 0 90px;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_4_1773771146_69b9998a75bac.webp') center/cover no-repeat;
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-service-hub .sct-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_4_1773771146_69b9998a75bac.webp') center/cover no-repeat;
    text-align: center;
    border-top: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 170px 0 90px;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_2_1773771099_69b9995b1fa72.webp') center/cover no-repeat;
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-service-city .sct-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_2_1773771099_69b9995b1fa72.webp') center/cover no-repeat;
    text-align: center;
    border-top: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 170px 0 90px;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_4_1773771146_69b9998a75bac.webp') center/cover no-repeat;
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-zone .sct-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_4_1773771146_69b9998a75bac.webp') center/cover no-repeat;
    text-align: center;
    border-top: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 170px 0 90px;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_5_1773771169_69b999a172e87.webp') center/cover no-repeat;
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-service-hub .sct-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_5_1773771169_69b999a172e87.webp') center/cover no-repeat;
    text-align: center;
    border-top: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 170px 0 90px;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_6_1773771193_69b999b93f5a7.webp') center/cover no-repeat;
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-service-hub .sct-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_6_1773771193_69b999b93f5a7.webp') center/cover no-repeat;
    text-align: center;
    border-top: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 170px 0 90px;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_4_1773771146_69b9998a75bac.webp') center/cover no-repeat;
    border-bottom: 1px solid rgba(200,169,110,0.15);
}

.sct-tpl-service-city .sct-cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.92) 0%, rgba(36,36,36,0.88) 100%), url('/images/service_4_1773771146_69b9998a75bac.webp') center/cover no-repeat;
    text-align: center;
    border-top: 1px solid rgba(200,169,110,0.15);
}

:root {
  --noir: #242424;
  --noir-deep: #1a1a1a;
  --noir-card: #242424;
  --noir-light: #353535;
  --or: #c8a96e;
  --or-light: #dcc595;
  --or-dark: #a8894e;
  --blanc: #ffffff;
  --blanc-casse: #f9f6f1;
  --gris: #999999;
  --gris-light: #cccccc;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: rgba(20, 20, 20, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
}

.navbar.scrolled {
    padding: 12px 0;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: height 0.4s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(20,20,20,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    transition: right 0.4s ease;
    z-index: 999;
    border-left: 1px solid rgba(200,169,110,0.2);
}

.mobile-menu a {
    color: var(--blanc);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.hero-sitemap {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 160px 30px 80px;
    background: linear-gradient(rgba(20,20,20,0.85), rgba(20,20,20,0.95)), url('https://webflash.pro/images/hero_admin_1773769603_69b99383dba24.jpg') center/cover no-repeat;
}

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

.hero-sitemap-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--or);
    border: 1px solid rgba(200,169,110,0.4);
    padding: 10px 30px;
    margin-bottom: 30px;
}

.hero-sitemap h1 {
    font-size: 4rem;
    font-weight: 600;
    color: var(--blanc);
    letter-spacing: 6px;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-sitemap-divider {
    width: 80px;
    height: 1px;
    background: var(--or);
    margin: 25px auto;
}

.hero-sitemap p {
    font-size: 1.05rem;
    color: var(--gris-light);
    font-weight: 300;
    letter-spacing: 1px;
}

.section {
    padding: 90px 0;
}

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

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--noir-card);
    border: 1px solid rgba(200,169,110,0.18);
    color: var(--gris-light);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.chip i {
    color: var(--or);
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.chip:hover {
    background: var(--or);
    color: var(--noir);
    border-color: var(--or);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200,169,110,0.2);
}

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

.chip-featured {
    background: transparent;
    border-color: var(--or);
    color: var(--or);
}

.service-group {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(200,169,110,0.1);
}

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

.service-group-title {
    text-align: center;
    margin-bottom: 25px;
}

.service-group-title h3 {
    font-size: 1.4rem;
    color: var(--or);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 8px;
}

.service-group-title .sub {
    font-size: 0.78rem;
    color: var(--gris);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-section {
    padding: 80px 30px;
    background: var(--noir-deep);
    text-align: center;
    border-top: 1px solid rgba(200,169,110,0.1);
}

.cta-section h2 {
    font-size: 2rem;
    color: var(--blanc);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cta-section p {
    color: var(--gris-light);
    margin-bottom: 35px;
    font-size: 0.95rem;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--or);
    color: var(--noir);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.footer {
    background: var(--noir-deep);
    padding: 70px 0 30px;
    border-top: 1px solid rgba(200,169,110,0.1);
}

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

.footer-brand p {
    color: var(--gris-light);
    font-size: 0.9rem;
    margin: 15px 0 12px;
    line-height: 1.8;
}

.footer h4 {
    color: var(--or);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
}

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

.footer-links a {
    color: var(--gris-light);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.footer-bottom {
    border-top: 1px solid rgba(200,169,110,0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gris);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-legal a {
    color: var(--gris-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.modal.active { display: flex; }

.modal-content {
    background: var(--noir-card);
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 50px 40px;
    position: relative;
    border: 1px solid rgba(200,169,110,0.2);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--or);
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
}

.modal h3 {
    color: var(--or);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.modal p, .modal li {
    color: var(--gris-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

@media (max-width: 968px) {
    .nav-links { display: none; }
    .burger { display: flex; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-sitemap h1 { font-size: 2.5rem; letter-spacing: 3px; }
    .section-header h2 { font-size: 1.9rem; }
    .nav-container { padding: 0 20px; }
}

@media (max-width: 600px) {
    .hero-sitemap { padding: 130px 20px 60px; min-height: 50vh; }
    .hero-sitemap h1 { font-size: 2rem; letter-spacing: 2px; }
    .section { padding: 60px 0; }
    .chip { padding: 10px 16px; font-size: 0.78rem; }
    .cta-section h2 { font-size: 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}