.menu-check{display:none}

.menu-toggle{cursor:pointer;user-select:none}

.menu-check:checked~.nav-links{display:flex!important}

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

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

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

:root {
            --red: #E21A2C;
            --red-dark: #B8101F;
            --red-glow: rgba(226, 26, 44, 0.35);
            --black: #0A0A0A;
            --black-card: #111117;
            --black-light: #16161E;
            --gray-dark: #1E1E2A;
            --gray: #A0A0B8;
            --gray-light: #CDCDD8;
            --white: #FFFFFF;
        }

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5 {
            font-family: 'Barlow Condensed', sans-serif;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 0.02em;
        }

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

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

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

.navbar.scrolled {
            background: rgba(10, 10, 10, 0.97);
            padding: 12px 0;
            backdrop-filter: blur(12px);
            box-shadow: 0 2px 30px rgba(0,0,0,0.5);
        }

.navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

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

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

.navbar-logo span {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

.navbar-logo span em {
            font-style: normal;
            color: var(--red);
        }

.nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

.nav-links a {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--gray-light);
            transition: color 0.3s;
            position: relative;
        }

.nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--red);
            transition: width 0.3s;
        }

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

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

.nav-cta {
            background: var(--red);
            color: var(--white) !important;
            padding: 10px 24px;
            border-radius: 4px;
            font-weight: 700 !important;
            transition: all 0.3s !important;
            letter-spacing: 0.05em;
        }

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

.nav-cta:hover {
            background: var(--red-dark) !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 20px var(--red-glow);
        }

.hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            z-index: 1001;
        }

.hamburger span {
            width: 28px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s;
        }

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

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

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

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

.hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

.hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.85) 100%);
        }

.hero-diagonal {
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 120px;
            z-index: 2;
        }

.hero-diagonal svg { width: 100%; height: 100%; }

.hero-content {
            position: relative;
            z-index: 3;
            max-width: 800px;
            padding-top: 100px;
        }

.hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(226, 26, 44, 0.15);
            border: 1px solid rgba(226, 26, 44, 0.4);
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--red);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 24px;
        }

.hero-badge i { font-size: 0.7rem; }

.hero h1 {
            font-size: clamp(2.8rem, 6vw, 5rem);
            font-weight: 900;
            line-height: 1.05;
            margin-bottom: 20px;
        }

.hero h1 .accent { color: var(--red); }

.hero-desc {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 36px;
            max-width: 550px;
            line-height: 1.7;
        }

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

.btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 4px;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
        }

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

.btn-primary:hover {
            background: var(--red-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 30px var(--red-glow);
        }

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

.btn-outline:hover {
            border-color: var(--white);
            background: rgba(255,255,255,0.05);
            transform: translateY(-2px);
        }

.stats-bar {
            background: var(--red);
            padding: 0;
            position: relative;
            z-index: 5;
        }

.stats-bar .container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
        }

.stat-item {
            text-align: center;
            padding: 32px 20px;
            border-right: 1px solid rgba(255,255,255,0.15);
        }

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

.stat-number {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--white);
            line-height: 1;
            margin-bottom: 6px;
        }

.stat-label {
            font-size: 0.85rem;
            font-weight: 500;
            color: rgba(255,255,255,0.85);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

.section {
            padding: 100px 0;
            position: relative;
        }

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

.section-darker { background: var(--black-light); }

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

.section-header .overline {
            display: inline-block;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--red);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 12px;
        }

.section-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 16px;
        }

.section-header p {
            max-width: 600px;
            margin: 0 auto;
            color: var(--gray);
            font-size: 1.05rem;
        }

.red-line {
            width: 60px;
            height: 3px;
            background: var(--red);
            margin: 16px auto 0;
            border-radius: 2px;
        }

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

.service-card {
            width: calc(33.333% - 16px);
            min-width: 300px;
            max-width: 380px;
            background: var(--black-card);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
        }

.service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--red);
            transform: scaleX(0);
            transition: transform 0.4s;
        }

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
            transform: translateY(-6px);
            border-color: rgba(226, 26, 44, 0.3);
            box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 40px var(--red-glow);
        }

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

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

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

.service-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, var(--black-card) 0%, transparent 50%);
        }

.service-body {
            padding: 24px;
        }

.service-body h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.3;
        }

.service-body p {
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.6;
        }

.pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

.pricing-category {
            background: var(--black-card);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
        }

.pricing-category:hover {
            border-color: rgba(226, 26, 44, 0.25);
            transform: translateY(-4px);
        }

.pricing-header {
            background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
            padding: 20px 24px;
            text-align: center;
        }

.pricing-header h3 {
            font-size: 1.3rem;
            font-weight: 800;
            margin: 0;
            color: var(--white);
        }

.pricing-body {
            padding: 24px;
        }

.pricing-item {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255,255,255,0.04);
            gap: 16px;
        }

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

.pricing-item-name {
            font-size: 0.9rem;
            color: var(--gray-light);
            line-height: 1.4;
            flex: 1;
        }

.pricing-item-price {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--red);
            white-space: nowrap;
        }

.pricing-note {
            font-size: 0.8rem;
            color: var(--gray);
            font-style: italic;
            margin-top: 4px;
        }

.pricing-disclaimer {
            background: var(--black-card);
            border: 1px solid rgba(226, 26, 44, 0.2);
            border-left: 4px solid var(--red);
            border-radius: 8px;
            padding: 24px 28px;
            margin-top: 40px;
        }

.pricing-disclaimer h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--red);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

.pricing-disclaimer p {
            font-size: 0.88rem;
            color: var(--gray);
            line-height: 1.7;
            margin: 0;
        }

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

.about-image {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
        }

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

.about-image::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            width: 100px;
            height: 100px;
            border-top: 4px solid var(--red);
            border-left: 4px solid var(--red);
            z-index: 2;
            border-radius: 2px;
        }

.about-text h2 {
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-align: left;
        }

.about-text h2 .accent { color: var(--red); }

.about-text p {
            margin-bottom: 16px;
            line-height: 1.8;
            color: var(--gray);
        }

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

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

.about-feature i {
            color: var(--red);
            font-size: 1rem;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(226, 26, 44, 0.1);
            border-radius: 50%;
            flex-shrink: 0;
        }

.about-feature span {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--gray-light);
        }

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

.gallery-item {
            position: relative;
            border-radius: 6px;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
        }

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

.gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(226,26,44,0.5) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.4s;
        }

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

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

.gallery-item .gallery-zoom {
            position: absolute;
            bottom: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            background: var(--red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            z-index: 2;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s;
        }

.gallery-item:hover .gallery-zoom {
            opacity: 1;
            transform: translateY(0);
        }

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

.testimonial-card {
            background: var(--black-card);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 8px;
            padding: 32px;
            position: relative;
            transition: all 0.3s;
        }

.testimonial-card:hover {
            border-color: rgba(226, 26, 44, 0.25);
            transform: translateY(-4px);
        }

.testimonial-card .quote-icon {
            position: absolute;
            top: 20px;
            right: 24px;
            font-size: 2.5rem;
            color: rgba(226, 26, 44, 0.12);
        }

.testimonial-stars {
            color: #FFB800;
            font-size: 0.9rem;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }

.testimonial-text {
            font-size: 0.92rem;
            color: var(--gray-light);
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
        }

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

.testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--red);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--white);
            flex-shrink: 0;
        }

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

.testimonial-source {
            font-size: 0.78rem;
            color: var(--gray);
        }

.google-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--black-card);
            border: 1px solid rgba(255,255,255,0.08);
            padding: 16px 28px;
            border-radius: 50px;
            margin-top: 40px;
            transition: all 0.3s;
        }

.google-badge:hover {
            border-color: rgba(226,26,44,0.3);
            transform: translateY(-2px);
        }

.google-badge .rating {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white);
        }

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

.google-badge .stars {
            color: #FFB800;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

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

.horaires-wrapper {
            max-width: 600px;
            margin: 0 auto;
            background: var(--black-card);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 8px;
            overflow: hidden;
        }

.horaires-header {
            background: var(--red);
            padding: 20px 32px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

.horaires-header i {
            font-size: 1.3rem;
            color: var(--white);
        }

.horaires-header h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin: 0;
        }

.horaire-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 32px;
            border-bottom: 1px solid rgba(255,255,255,0.04);
            transition: background 0.3s;
        }

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

.horaire-row:hover { background: rgba(255,255,255,0.02); }

.horaire-row.today {
            background: rgba(226, 26, 44, 0.08);
            border-left: 3px solid var(--red);
        }

.horaire-day {
            font-weight: 600;
            color: var(--gray-light);
            font-size: 0.95rem;
        }

.horaire-time {
            font-size: 0.9rem;
            color: var(--gray);
        }

.horaire-row.today .horaire-day { color: var(--white); }

.horaire-row.today .horaire-time { color: var(--red); font-weight: 600; }

.horaire-closed {
            color: var(--red);
            font-weight: 600;
            font-size: 0.85rem;
        }

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

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

.contact-info-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: var(--black-card);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 8px;
            transition: all 0.3s;
        }

.contact-info-card:hover {
            border-color: rgba(226,26,44,0.3);
            transform: translateX(4px);
        }

.contact-icon {
            width: 48px;
            height: 48px;
            background: rgba(226, 26, 44, 0.12);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--red);
            font-size: 1.1rem;
            flex-shrink: 0;
        }

.contact-info-card .info-label {
            font-size: 0.78rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 2px;
        }

.contact-info-card .info-value {
            font-weight: 600;
            color: var(--white);
            font-size: 0.95rem;
        }

.contact-form-wrap {
            background: var(--black-card);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 8px;
            padding: 36px;
        }

.contact-form-wrap h3 {
            font-size: 1.4rem;
            margin-bottom: 24px;
        }

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

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

.form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            background: var(--black);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 6px;
            color: var(--white);
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            transition: border-color 0.3s;
        }

.form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--red);
            box-shadow: 0 0 0 3px rgba(226,26,44,0.15);
        }

.form-group textarea { resize: vertical; }

.contact-form-wrap button[type="submit"] {
            width: 100%;
            padding: 14px;
            background: var(--red);
            color: var(--white);
            border: none;
            border-radius: 6px;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            cursor: pointer;
            transition: all 0.3s;
        }

.contact-form-wrap button[type="submit"]:hover {
            background: var(--red-dark);
            box-shadow: 0 4px 20px var(--red-glow);
        }

#formStatus p { margin-top: 12px; font-size: 0.9rem; }

.map-container {
            border-radius: 8px;
            overflow: hidden;
            margin-top: 40px;
            border: 1px solid rgba(255,255,255,0.06);
        }

.map-container iframe { display: block; }

.footer {
            background: var(--black-light);
            border-top: 1px solid rgba(255,255,255,0.06);
            padding: 60px 0 0;
        }

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

.footer-brand .navbar-logo { margin-bottom: 16px; }

.footer-brand p {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.7;
            max-width: 340px;
        }

.footer h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--white);
        }

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

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

.footer-links a {
            color: var(--gray);
            font-size: 0.9rem;
            transition: color 0.3s;
        }

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

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

.footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            font-size: 1rem;
            transition: all 0.3s;
        }

.footer-social a:hover {
            background: var(--red);
            border-color: var(--red);
            color: var(--white);
        }

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

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

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

.floating-cta {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 999;
            width: 60px;
            height: 60px;
            background: var(--red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.4rem;
            box-shadow: 0 4px 24px var(--red-glow);
            transition: all 0.3s;
            animation: pulse-float 2s ease-in-out infinite;
        }

.floating-cta:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 32px rgba(226,26,44,0.5);
        }

@keyframes pulse-float {
            0%, 100% { box-shadow: 0 4px 24px var(--red-glow); }
            50% { box-shadow: 0 4px 40px rgba(226,26,44,0.55); }
        }

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

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

.modal-content {
            background: var(--black-card);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 40px;
            position: relative;
        }

.modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.05);
            border: none;
            border-radius: 50%;
            color: var(--gray);
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

.modal-close:hover { background: var(--red); color: var(--white); }

.modal-content h2 {
            font-size: 1.6rem;
            margin-bottom: 24px;
        }

.modal-content p {
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.7;
        }

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

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

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

.lightbox-overlay img {
            max-width: 90vw;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 8px;
        }

.lightbox-close {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.1);
            border: none;
            border-radius: 50%;
            color: var(--white);
            font-size: 1.3rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

.lightbox-close:hover { background: var(--red); }

.lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.08);
            border: none;
            border-radius: 50%;
            color: var(--white);
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

.lightbox-nav:hover { background: var(--red); }

.lightbox-prev { left: 24px; }

.lightbox-next { right: 24px; }

.reveal {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }

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

.reveal-delay-1 { transition-delay: 0.1s; }

.reveal-delay-2 { transition-delay: 0.2s; }

.reveal-delay-3 { transition-delay: 0.3s; }

.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-delay-5 { transition-delay: 0.5s; }

@media (max-width: 1024px) {
            .services-grid { gap: 20px; }
            .service-card { width: calc(50% - 12px); min-width: 260px; }
            .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
            .about-grid { grid-template-columns: 1fr; gap: 40px; }
            .about-text { order: 1; }
            .about-image { order: 2; max-height: 400px; }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .pricing-grid { grid-template-columns: 1fr; }
        }

@media (max-width: 768px) {
            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(10,10,10,0.98);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 28px;
                z-index: 999;
            }

            .nav-links.active { display: flex; }

            .nav-links a { font-size: 1.3rem; }

            .hamburger { display: flex; }

            .hero h1 { font-size: 2.4rem; }
            .hero-desc { font-size: 1rem; }

            .stats-bar .container { grid-template-columns: 1fr; }
            .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 20px; }
            .stat-item:last-child { border-bottom: none; }
            .stat-number { font-size: 2.2rem; }

            .service-card { width: 100%; max-width: 100%; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .about-features { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .pricing-grid { grid-template-columns: 1fr; }
        }

@media (max-width: 640px) {
            .section { padding: 70px 0; }
            .hero-btns { flex-direction: column; }
            .hero-btns .btn { width: 100%; justify-content: center; }
            .gallery-grid { grid-template-columns: 1fr 1fr; }
            .horaire-row { padding: 14px 20px; }
            .contact-form-wrap { padding: 24px; }
        }

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

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

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

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

.sct-tpl-service-city { background: var(--black, #0A0A0A); color: var(--gray, #A0A0B8); }

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background:
        linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.95) 100%),
        url('/images/service_1_1773011191_69ae00f7e238a.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(to bottom, var(--red, #E21A2C), transparent);
}

.sct-tpl-service-city .sct-hero-container { position: relative; z-index: 2; }

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

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

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

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

.sct-tpl-service-city .sct-breadcrumb a { color: var(--gray-light, #CDCDD8); transition: color 0.3s; }

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

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

.sct-tpl-service-city .sct-bc-current { color: var(--red, #E21A2C); font-weight: 600; }

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

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(226, 26, 44, 0.15);
    border: 1px solid rgba(226, 26, 44, 0.4);
    padding: 7px 16px;
    border-radius: 30px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--red, #E21A2C);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sct-tpl-service-city .sct-hero-text h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.08;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sct-tpl-service-city .sct-hero-text h1 .sct-accent { color: var(--red, #E21A2C); }

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-light, #CDCDD8);
    margin-bottom: 30px;
    max-width: 580px;
}

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

.sct-tpl-service-city .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.sct-tpl-service-city .sct-btn-primary { background: var(--red, #E21A2C); color: #fff; }

.sct-tpl-service-city .sct-btn-primary:hover { background: var(--red-dark, #B8101F); transform: translateY(-2px); box-shadow: 0 6px 30px rgba(226,26,44,0.35); }

.sct-tpl-service-city .sct-btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.25); }

.sct-tpl-service-city .sct-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); transform: translateY(-2px); }

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

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

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

.sct-tpl-service-city .sct-hero-card {
    background: rgba(17, 17, 23, 0.95);
    border: 1px solid rgba(226,26,44,0.25);
    border-radius: 8px;
    padding: 32px;
    backdrop-filter: blur(8px);
}

.sct-tpl-service-city .sct-hero-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--red, #E21A2C);
}

.sct-tpl-service-city .sct-hero-card-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sct-tpl-service-city .sct-hero-card-row:last-of-type { border-bottom: none; }

.sct-tpl-service-city .sct-hero-card-row i {
    color: var(--red, #E21A2C);
    width: 20px;
    text-align: center;
    margin-top: 3px;
    flex-shrink: 0;
}

.sct-tpl-service-city .sct-hero-card-row .sct-row-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray, #A0A0B8);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.sct-tpl-service-city .sct-hero-card-row .sct-row-value {
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

.sct-tpl-service-city .sct-hero-card .sct-btn {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

.sct-tpl-service-city .sct-stats-band {
    background: var(--red, #E21A2C);
}

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

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

.sct-tpl-service-city .sct-stat-item {
    text-align: center;
    padding: 32px 16px;
    border-right: 1px solid rgba(255,255,255,0.15);
}

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

.sct-tpl-service-city .sct-stat-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.sct-tpl-service-city .sct-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.sct-tpl-service-city .sct-section-dark { background: var(--black, #0A0A0A); }

.sct-tpl-service-city .sct-section-darker { background: var(--black-light, #16161E); }

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

.sct-tpl-service-city .sct-section-overline {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--red, #E21A2C);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-section-title .sct-accent { color: var(--red, #E21A2C); }

.sct-tpl-service-city .sct-section-subtitle {
    max-width: 640px;
    margin: 0 auto;
    color: var(--gray, #A0A0B8);
    font-size: 1rem;
}

.sct-tpl-service-city .sct-red-line {
    width: 60px;
    height: 3px;
    background: var(--red, #E21A2C);
    margin: 14px auto 0;
    border-radius: 2px;
}

.sct-tpl-service-city .sct-intro-section { padding: 80px 0; background: var(--black-light, #16161E); }

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

.sct-tpl-service-city .sct-intro-wrap p {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--gray-light, #CDCDD8);
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-intro-wrap strong { color: #fff; font-weight: 600; }

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

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

.sct-tpl-service-city .sct-service-card {
    background: var(--black-card, #111117);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.sct-tpl-service-city .sct-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--red, #E21A2C);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.sct-tpl-service-city .sct-service-card:hover::before { transform: scaleX(1); }

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(226,26,44,0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 40px rgba(226,26,44,0.25);
}

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

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

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

.sct-tpl-service-city .sct-service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--black-card, #111117) 0%, transparent 50%);
}

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

.sct-tpl-service-city .sct-service-body h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.3;
}

.sct-tpl-service-city .sct-service-body p {
    font-size: 0.92rem;
    color: var(--gray, #A0A0B8);
    line-height: 1.65;
}

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

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

.sct-tpl-service-city .sct-step {
    text-align: center;
    padding: 28px 18px;
    background: var(--black-card, #111117);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    position: relative;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-step:hover {
    border-color: rgba(226,26,44,0.3);
    transform: translateY(-4px);
}

.sct-tpl-service-city .sct-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--red, #E21A2C);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.sct-tpl-service-city .sct-step-icon {
    color: var(--red, #E21A2C);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-step h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-step p {
    font-size: 0.85rem;
    color: var(--gray, #A0A0B8);
    line-height: 1.55;
}

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

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

.sct-tpl-service-city .sct-why-card {
    background: var(--black-card, #111117);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 28px 22px;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-why-card:hover {
    border-color: rgba(226,26,44,0.3);
    transform: translateY(-4px);
}

.sct-tpl-service-city .sct-why-icon {
    width: 52px; height: 52px;
    background: rgba(226,26,44,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red, #E21A2C);
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-why-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-why-card p {
    font-size: 0.9rem;
    color: var(--gray, #A0A0B8);
    line-height: 1.6;
}

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

.sct-tpl-service-city .sct-zones-list span,
.sct-tpl-service-city .sct-zones-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--black-card, #111117);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    font-size: 0.88rem;
    color: var(--gray-light, #CDCDD8);
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-zones-list a:hover {
    border-color: var(--red, #E21A2C);
    color: #fff;
    background: rgba(226,26,44,0.08);
}

.sct-tpl-service-city .sct-zones-list i { color: var(--red, #E21A2C); font-size: 0.75rem; }

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

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

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

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

.sct-tpl-service-city .sct-usecase-img::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px;
    width: 100px; height: 100px;
    border-top: 4px solid var(--red, #E21A2C);
    border-left: 4px solid var(--red, #E21A2C);
    z-index: 2;
    border-radius: 2px;
}

.sct-tpl-service-city .sct-usecase-text h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-usecase-text h2 .sct-accent { color: var(--red, #E21A2C); }

.sct-tpl-service-city .sct-usecase-text p {
    color: var(--gray, #A0A0B8);
    line-height: 1.8;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-usecase-text strong { color: #fff; font-weight: 600; }

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

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

.sct-tpl-service-city .sct-engagement-card {
    background: var(--black-card, #111117);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 4px solid var(--red, #E21A2C);
    border-radius: 8px;
    padding: 30px 26px;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-engagement-card:hover {
    transform: translateY(-4px);
    border-color: rgba(226,26,44,0.4);
    border-left-color: var(--red, #E21A2C);
}

.sct-tpl-service-city .sct-engagement-icon {
    color: var(--red, #E21A2C);
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.sct-tpl-service-city .sct-engagement-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-engagement-card p {
    font-size: 0.92rem;
    color: var(--gray, #A0A0B8);
    line-height: 1.65;
}

.sct-tpl-service-city .sct-local-spec {
    max-width: 880px;
    margin: 0 auto;
    background: var(--black-card, #111117);
    border: 1px solid rgba(226,26,44,0.2);
    border-left: 4px solid var(--red, #E21A2C);
    border-radius: 8px;
    padding: 30px 32px;
}

.sct-tpl-service-city .sct-local-spec p {
    color: var(--gray-light, #CDCDD8);
    line-height: 1.75;
    margin-bottom: 12px;
}

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

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

.sct-tpl-service-city .sct-faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sct-tpl-service-city .sct-faq-item {
    background: var(--black-card, #111117);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.sct-tpl-service-city .sct-faq-item[open] { border-color: rgba(226,26,44,0.3); }

.sct-tpl-service-city .sct-faq-item summary {
    cursor: pointer;
    padding: 20px 26px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    list-style: none;
}

.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(--red, #E21A2C);
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.sct-tpl-service-city .sct-faq-answer {
    padding: 0 26px 22px;
    color: var(--gray, #A0A0B8);
    line-height: 1.75;
    font-size: 0.95rem;
}

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

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

.sct-tpl-service-city .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--black-card, #111117);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    font-size: 0.88rem;
    color: var(--gray-light, #CDCDD8);
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-maillage-list a:hover {
    border-color: var(--red, #E21A2C);
    color: #fff;
    background: rgba(226,26,44,0.08);
    transform: translateY(-2px);
}

.sct-tpl-service-city .sct-maillage-list i { color: var(--red, #E21A2C); font-size: 0.75rem; }

.sct-tpl-service-city .sct-cta-final {
    padding: 80px 0;
    background:
        linear-gradient(135deg, rgba(184,16,31,0.95) 0%, rgba(226,26,44,0.92) 100%),
        url('/images/service_1_1773011191_69ae00f7e238a.webp') center/cover no-repeat;
    text-align: center;
    position: relative;
}

.sct-tpl-service-city .sct-cta-final h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 16px;
}

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

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

.sct-tpl-service-city .sct-cta-final .sct-btn-primary {
    background: #fff;
    color: var(--red, #E21A2C);
}

.sct-tpl-service-city .sct-cta-final .sct-btn-primary:hover {
    background: #0A0A0A;
    color: #fff;
}

.sct-tpl-service-city .sct-cta-final .sct-btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

.sct-tpl-service-city .sct-cta-final .sct-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero { padding: 130px 0 70px; }
    .sct-tpl-service-city .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-city .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-stat-item:nth-child(2) { border-right: none; }
    .sct-tpl-service-city .sct-stat-item:nth-child(1),
    .sct-tpl-service-city .sct-stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.15); }
    .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-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-section { padding: 70px 0; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-city .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-city .sct-hero-card { padding: 24px; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-stat-value { font-size: 2rem; }
    .sct-tpl-service-city .sct-section { padding: 60px 0; }
    .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 20px; }
    .sct-tpl-service-city .sct-faq-answer { padding: 0 20px 20px; }
}

.sct-tpl-service-hub { background: var(--black); color: var(--gray); }

.sct-tpl-service-hub .sct-breadcrumb-wrap {
    padding: 110px 0 20px;
    background: var(--black);
}

.sct-tpl-service-hub .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.85rem;
    color: var(--gray);
}

.sct-tpl-service-hub .sct-breadcrumb a {
    color: var(--gray-light);
    transition: color 0.3s;
}

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

.sct-tpl-service-hub .sct-breadcrumb i { font-size: 0.7rem; color: var(--red); }

.sct-tpl-service-hub .sct-breadcrumb .sct-current { color: var(--white); font-weight: 600; }

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 60px 0 100px;
    overflow: hidden;
    background: var(--black);
}

.sct-tpl-service-hub .sct-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sct-tpl-service-hub .sct-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.sct-tpl-service-hub .sct-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.92) 100%);
}

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

.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-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(226, 26, 44, 0.15);
    border: 1px solid rgba(226, 26, 44, 0.4);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    font-family: 'Barlow Condensed', sans-serif;
}

.sct-tpl-service-hub .sct-hero-text h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 22px;
}

.sct-tpl-service-hub .sct-hero-text h1 .accent { color: var(--red); }

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 600px;
}

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

.sct-tpl-service-hub .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.sct-tpl-service-hub .sct-btn-primary { background: var(--red); color: var(--white); }

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px var(--red-glow);
}

.sct-tpl-service-hub .sct-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
}

.sct-tpl-service-hub .sct-btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

.sct-tpl-service-hub .sct-hero-card {
    background: rgba(17, 17, 23, 0.85);
    border: 1px solid rgba(226, 26, 44, 0.25);
    border-radius: 10px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.sct-tpl-service-hub .sct-hero-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

.sct-tpl-service-hub .sct-hero-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-light);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.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(--red);
    font-size: 0.9rem;
    margin-top: 4px;
}

.sct-tpl-service-hub .sct-stats-band {
    background: var(--red);
    padding: 0;
}

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

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

.sct-tpl-service-hub .sct-stat-item {
    text-align: center;
    padding: 32px 16px;
    border-right: 1px solid rgba(255,255,255,0.15);
}

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

.sct-tpl-service-hub .sct-stat-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.sct-tpl-service-hub .sct-stat-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.sct-tpl-service-hub .sct-section-dark { background: var(--black); }

.sct-tpl-service-hub .sct-section-darker { background: var(--black-light); }

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

.sct-tpl-service-hub .sct-overline {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-section-header h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.sct-tpl-service-hub .sct-section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.05rem;
}

.sct-tpl-service-hub .sct-red-line {
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 16px auto 0;
    border-radius: 2px;
}

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

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

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

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

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

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

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

.sct-tpl-service-hub .sct-service-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.sct-tpl-service-hub .sct-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.4s;
    z-index: 3;
}

.sct-tpl-service-hub .sct-service-card:hover::before { transform: scaleX(1); }

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(226, 26, 44, 0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 40px var(--red-glow);
}

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

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

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

.sct-tpl-service-hub .sct-service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--black-card) 0%, transparent 50%);
}

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

.sct-tpl-service-hub .sct-service-body h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.3;
}

.sct-tpl-service-hub .sct-service-body p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.7;
}

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

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

.sct-tpl-service-hub .sct-step-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 32px 22px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-step-card:hover {
    border-color: rgba(226, 26, 44, 0.3);
    transform: translateY(-4px);
}

.sct-tpl-service-hub .sct-step-number {
    width: 56px;
    height: 56px;
    background: var(--red);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 4px 20px var(--red-glow);
}

.sct-tpl-service-hub .sct-step-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-step-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

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

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

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

.sct-tpl-service-hub .sct-why-card:hover {
    border-color: rgba(226, 26, 44, 0.3);
    transform: translateY(-4px);
}

.sct-tpl-service-hub .sct-why-icon {
    width: 64px;
    height: 64px;
    background: rgba(226, 26, 44, 0.12);
    color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 20px;
}

.sct-tpl-service-hub .sct-why-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-why-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

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

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

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

.sct-tpl-service-hub .sct-usecase-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.sct-tpl-service-hub .sct-usecase-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100px;
    height: 100px;
    border-top: 4px solid var(--red);
    border-left: 4px solid var(--red);
    z-index: 2;
    border-radius: 2px;
}

.sct-tpl-service-hub .sct-usecase-text h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.sct-tpl-service-hub .sct-usecase-text h2 .accent { color: var(--red); }

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

.sct-tpl-service-hub .sct-usecase-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.sct-tpl-service-hub .sct-usecase-list i {
    color: var(--red);
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
    width: 22px;
}

.sct-tpl-service-hub .sct-usecase-list strong { color: var(--white); }

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

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

.sct-tpl-service-hub .sct-engagement-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 36px 28px;
    text-align: left;
    position: relative;
    transition: all 0.3s;
    border-left: 3px solid var(--red);
}

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

.sct-tpl-service-hub .sct-engagement-icon {
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 18px;
}

.sct-tpl-service-hub .sct-engagement-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-engagement-card p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.7;
}

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

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

.sct-tpl-service-hub .sct-faq-item {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-faq-item:hover { border-color: rgba(226, 26, 44, 0.25); }

.sct-tpl-service-hub .sct-faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

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

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

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

.sct-tpl-service-hub .sct-faq-item .sct-faq-answer {
    padding: 0 28px 22px;
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.75;
}

.sct-tpl-service-hub .sct-maillage-section {
    padding: 100px 0;
    background: var(--black-light);
}

.sct-tpl-service-hub .sct-maillage-section.sct-alt { background: var(--black); }

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

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

.sct-tpl-service-hub .sct-maillage-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 16px 20px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-light);
    font-size: 0.92rem;
    font-weight: 500;
}

.sct-tpl-service-hub .sct-maillage-card:hover {
    border-color: var(--red);
    color: var(--white);
    transform: translateX(4px);
    background: var(--black-card);
}

.sct-tpl-service-hub .sct-maillage-card i {
    color: var(--red);
    font-size: 0.85rem;
    flex-shrink: 0;
}

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

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

.sct-tpl-service-hub .sct-other-service-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--gray-light);
}

.sct-tpl-service-hub .sct-other-service-card:hover {
    border-color: rgba(226, 26, 44, 0.4);
    transform: translateY(-3px);
}

.sct-tpl-service-hub .sct-other-service-card i {
    width: 44px;
    height: 44px;
    background: rgba(226, 26, 44, 0.12);
    color: var(--red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-other-service-card span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

.sct-tpl-service-hub .sct-cta-final {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.sct-tpl-service-hub .sct-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.sct-tpl-service-hub .sct-cta-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.1;
}

.sct-tpl-service-hub .sct-cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 36px;
}

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

.sct-tpl-service-hub .sct-btn-white {
    background: var(--white);
    color: var(--red);
}

.sct-tpl-service-hub .sct-btn-white:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.sct-tpl-service-hub .sct-btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.sct-tpl-service-hub .sct-btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-stat-item:nth-child(2) { border-right: none; }
    .sct-tpl-service-hub .sct-stat-item:nth-child(1), .sct-tpl-service-hub .sct-stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.15); }
    .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-usecase-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-other-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-maillage-grid { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-service-hub .sct-section { padding: 70px 0; }
    .sct-tpl-service-hub .sct-intro-section, .sct-tpl-service-hub .sct-faq-section, .sct-tpl-service-hub .sct-maillage-section { padding: 70px 0; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 40px 0 70px; }
    .sct-tpl-service-hub .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-hub .sct-hero-card { padding: 24px; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
    .sct-tpl-service-hub .sct-stat-item:last-child { border-bottom: none; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-other-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-maillage-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-section-header h2 { font-size: 1.7rem; }
    .sct-tpl-service-hub .sct-cta-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-cta-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-faq-item summary { padding: 18px 20px; font-size: 1rem; }
    .sct-tpl-service-hub .sct-faq-item .sct-faq-answer { padding: 0 20px 18px; }
    .sct-tpl-service-hub .sct-section { padding: 60px 0; }
    .sct-tpl-service-hub .sct-intro-section, .sct-tpl-service-hub .sct-faq-section, .sct-tpl-service-hub .sct-maillage-section { padding: 60px 0; }
    .sct-tpl-service-hub .sct-usecase-image::before { width: 60px; height: 60px; }
}

.sct-tpl-zone { background: var(--black); color: var(--gray); }

.sct-tpl-zone .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.85rem;
    color: var(--gray);
    padding: 18px 0;
    margin-top: 80px;
}

.sct-tpl-zone .sct-breadcrumb a { color: var(--gray-light); transition: color .25s; }

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

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

.sct-tpl-zone .sct-breadcrumb .sct-bc-current { color: var(--red); font-weight: 600; }

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 60px 0 90px;
    overflow: hidden;
    background: var(--black);
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.65) 50%, rgba(10,10,10,0.9) 100%), url('/images/service_1_1773011191_69ae00f7e238a.webp') center/cover no-repeat;
    z-index: 0;
}

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

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

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

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(226, 26, 44, 0.15);
    border: 1px solid rgba(226, 26, 44, 0.4);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 22px;
}

.sct-tpl-zone .sct-hero-text h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-hero-text h1 .sct-accent { color: var(--red); }

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 580px;
}

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

.sct-tpl-zone .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.sct-tpl-zone .sct-btn-primary { background: var(--red); color: var(--white); }

.sct-tpl-zone .sct-btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 30px var(--red-glow); }

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

.sct-tpl-zone .sct-btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); transform: translateY(-2px); }

.sct-tpl-zone .sct-hero-card {
    background: rgba(17, 17, 23, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 30px;
}

.sct-tpl-zone .sct-hero-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--red);
}

.sct-tpl-zone .sct-hero-card-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--gray-light);
    font-size: 0.92rem;
}

.sct-tpl-zone .sct-hero-card-item i { color: var(--red); margin-top: 4px; flex-shrink: 0; }

.sct-tpl-zone .sct-stats-band {
    background: var(--red);
    padding: 0;
}

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

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

.sct-tpl-zone .sct-stat-item {
    text-align: center;
    padding: 32px 16px;
    border-right: 1px solid rgba(255,255,255,0.15);
}

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

.sct-tpl-zone .sct-stat-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.sct-tpl-zone .sct-stat-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.sct-tpl-zone .sct-section-darker { background: var(--black-light); }

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

.sct-tpl-zone .sct-overline {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.sct-tpl-zone .sct-section-header h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 14px;
    line-height: 1.15;
}

.sct-tpl-zone .sct-section-header p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1rem;
}

.sct-tpl-zone .sct-red-line { width: 60px; height: 3px; background: var(--red); margin: 14px auto 0; border-radius: 2px; }

.sct-tpl-zone .sct-intro-section { background: var(--black); }

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

.sct-tpl-zone .sct-intro-content p {
    color: var(--gray-light);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-intro-content p:first-of-type::first-letter {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--red);
    float: left;
    line-height: 0.9;
    margin: 6px 12px 0 0;
}

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

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

.sct-tpl-zone .sct-service-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.sct-tpl-zone .sct-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}

.sct-tpl-zone .sct-service-card:hover::before { transform: scaleX(1); }

.sct-tpl-zone .sct-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(226, 26, 44, 0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 40px var(--red-glow);
}

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

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

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

.sct-tpl-zone .sct-service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--black-card) 0%, transparent 55%);
}

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

.sct-tpl-zone .sct-service-body h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.25;
}

.sct-tpl-zone .sct-service-body p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}

.sct-tpl-zone .sct-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: gap .3s;
}

.sct-tpl-zone .sct-service-link:hover { gap: 14px; color: var(--white); }

.sct-tpl-zone .sct-zones-section { background: var(--black-light); }

.sct-tpl-zone .sct-zones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 980px;
    margin: 0 auto;
}

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

.sct-tpl-zone .sct-zone-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid var(--red);
    padding: 14px 18px;
    border-radius: 4px;
    font-size: 0.92rem;
    color: var(--gray-light);
    font-weight: 500;
    transition: all .3s;
}

.sct-tpl-zone .sct-zone-chip:hover {
    background: rgba(226, 26, 44, 0.08);
    border-color: rgba(226, 26, 44, 0.4);
    transform: translateX(3px);
    color: var(--white);
}

.sct-tpl-zone .sct-zone-chip i { color: var(--red); font-size: 0.9rem; }

.sct-tpl-zone .sct-usecase-section { background: var(--black); }

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

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

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

.sct-tpl-zone .sct-usecase-image img { width: 100%; display: block; border-radius: 8px; }

.sct-tpl-zone .sct-usecase-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100px;
    height: 100px;
    border-top: 4px solid var(--red);
    border-left: 4px solid var(--red);
    z-index: 2;
    border-radius: 2px;
}

.sct-tpl-zone .sct-usecase-text h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 22px;
    line-height: 1.2;
}

.sct-tpl-zone .sct-usecase-text h2 .sct-accent { color: var(--red); }

.sct-tpl-zone .sct-usecase-text p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.98rem;
}

.sct-tpl-zone .sct-usecase-steps { margin-top: 26px; display: flex; flex-direction: column; gap: 18px; }

.sct-tpl-zone .sct-usecase-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sct-tpl-zone .sct-step-num {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sct-tpl-zone .sct-step-text strong {
    display: block;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.sct-tpl-zone .sct-step-text span { color: var(--gray); font-size: 0.92rem; line-height: 1.6; }

.sct-tpl-zone .sct-engagements-section { background: var(--black-light); }

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

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

.sct-tpl-zone .sct-engagement-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 36px 28px;
    text-align: center;
    transition: all .3s;
    position: relative;
}

.sct-tpl-zone .sct-engagement-card:hover {
    border-color: rgba(226,26,44,0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.sct-tpl-zone .sct-engagement-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(226, 26, 44, 0.12);
    color: var(--red);
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: all .3s;
}

.sct-tpl-zone .sct-engagement-card:hover .sct-engagement-icon {
    background: var(--red);
    color: var(--white);
    transform: scale(1.05);
}

.sct-tpl-zone .sct-engagement-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sct-tpl-zone .sct-engagement-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.65; }

.sct-tpl-zone .sct-local-spec { background: var(--black); }

.sct-tpl-zone .sct-local-spec-card {
    max-width: 880px;
    margin: 0 auto;
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 4px solid var(--red);
    border-radius: 8px;
    padding: 36px 40px;
}

.sct-tpl-zone .sct-local-spec-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sct-tpl-zone .sct-local-spec-card h3 i { color: var(--red); }

.sct-tpl-zone .sct-local-spec-card p { color: var(--gray-light); line-height: 1.8; margin-bottom: 12px; font-size: 0.97rem; }

.sct-tpl-zone .sct-faq-section { background: var(--black-light); }

.sct-tpl-zone .sct-faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sct-tpl-zone .sct-faq-item {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    overflow: hidden;
    transition: all .3s;
}

.sct-tpl-zone .sct-faq-item[open] {
    border-color: rgba(226,26,44,0.3);
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.sct-tpl-zone .sct-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

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

.sct-tpl-zone .sct-faq-item summary::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--red);
    font-weight: 400;
    transition: transform .3s;
    flex-shrink: 0;
}

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

.sct-tpl-zone .sct-faq-answer {
    padding: 0 26px 24px;
    color: var(--gray-light);
    line-height: 1.75;
    font-size: 0.95rem;
}

.sct-tpl-zone .sct-maillage-section { background: var(--black); }

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

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

.sct-tpl-zone .sct-maillage-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 16px 20px;
    border-radius: 6px;
    color: var(--gray-light);
    font-size: 0.92rem;
    font-weight: 500;
    transition: all .3s;
}

.sct-tpl-zone .sct-maillage-link:hover {
    background: rgba(226, 26, 44, 0.08);
    border-color: rgba(226, 26, 44, 0.4);
    color: var(--white);
    transform: translateY(-2px);
}

.sct-tpl-zone .sct-maillage-link i { color: var(--red); font-size: 0.85rem; transition: transform .3s; }

.sct-tpl-zone .sct-maillage-link:hover i { transform: translateX(4px); }

.sct-tpl-zone .sct-cta-final {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
}

.sct-tpl-zone .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.sct-tpl-zone .sct-cta-content { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; }

.sct-tpl-zone .sct-cta-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 18px;
    line-height: 1.15;
}

.sct-tpl-zone .sct-cta-content p {
    color: rgba(255,255,255,0.92);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.sct-tpl-zone .sct-cta-btn-white {
    background: var(--white);
    color: var(--red) !important;
    padding: 15px 32px;
    border-radius: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .3s;
}

.sct-tpl-zone .sct-cta-btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

.sct-tpl-zone .sct-cta-btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    padding: 13px 30px;
    border-radius: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .3s;
}

.sct-tpl-zone .sct-cta-btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

@media (max-width: 992px) {
    .sct-tpl-zone .sct-section { padding: 70px 0; }
    .sct-tpl-zone .sct-hero { padding: 40px 0 70px; }
    .sct-tpl-zone .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-zone .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-stat-item:nth-child(2) { border-right: none; }
    .sct-tpl-zone .sct-stat-item:nth-child(1), .sct-tpl-zone .sct-stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.15); }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-zones-grid { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-zone .sct-usecase-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .sct-tpl-zone .sct-maillage-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-section { padding: 55px 0; }
    .sct-tpl-zone .sct-breadcrumb { font-size: 0.78rem; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .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: 24px; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.15); }
    .sct-tpl-zone .sct-stat-item:last-child { border-bottom: none; }
    .sct-tpl-zone .sct-stat-value { font-size: 2.2rem; }
    .sct-tpl-zone .sct-section-header h2 { font-size: 1.6rem; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-zones-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-zone-chip { font-size: 0.85rem; padding: 12px 14px; }
    .sct-tpl-zone .sct-usecase-text h2 { font-size: 1.6rem; }
    .sct-tpl-zone .sct-step-num { width: 36px; height: 36px; font-size: 1.05rem; }
    .sct-tpl-zone .sct-engagement-card { padding: 28px 22px; }
    .sct-tpl-zone .sct-local-spec-card { padding: 26px 22px; }
    .sct-tpl-zone .sct-local-spec-card h3 { font-size: 1.2rem; }
    .sct-tpl-zone .sct-faq-item summary { padding: 18px 20px; font-size: 0.98rem; }
    .sct-tpl-zone .sct-faq-answer { padding: 0 20px 20px; font-size: 0.9rem; }
    .sct-tpl-zone .sct-maillage-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-cta-final { padding: 65px 0; }
    .sct-tpl-zone .sct-cta-content h2 { font-size: 1.7rem; }
    .sct-tpl-zone .sct-cta-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-btns > * { width: 100%; justify-content: center; }
}

.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 18px 0; transition: all 0.4s ease; background: rgba(10, 10, 10, 0.97); backdrop-filter: blur(12px); box-shadow: 0 2px 30px rgba(0,0,0,0.5); }

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

.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, var(--gray-dark) 100%);
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(226, 26, 44, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(226, 26, 44, 0.12) 0%, transparent 45%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

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

.page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(226, 26, 44, 0.15);
    border: 1px solid rgba(226, 26, 44, 0.4);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 18px;
}

.page-hero h1 .accent { color: var(--red); }

.page-hero .subtitle {
    font-size: 1.15rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.red-line { width: 60px; height: 3px; background: var(--red); margin: 0 auto; border-radius: 2px; }

.breadcrumb {
    background: var(--black-light);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.breadcrumb-list a {
    color: var(--gray);
    transition: color 0.3s;
    font-weight: 500;
}

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

.breadcrumb-list i { font-size: 0.7rem; color: var(--gray); opacity: 0.5; }

.breadcrumb-list .current { color: var(--white); font-weight: 600; }

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

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

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

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

.category-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

.category-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
}

.category-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 20px var(--red-glow);
}

.category-header-text { flex: 1; }

.category-header h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.1;
}

.category-header .category-subtitle {
    font-size: 0.9rem;
    color: var(--gray);
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: 0;
}

.category-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(226, 26, 44, 0.12);
    border: 1px solid rgba(226, 26, 44, 0.3);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Inter', sans-serif;
}

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 40px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--gray-light);
    transition: all 0.3s ease;
    line-height: 1.3;
}

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

.chip:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--red-glow);
}

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

.service-ville-block {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 28px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.service-ville-block:hover {
    border-color: rgba(226, 26, 44, 0.25);
    transform: translateY(-2px);
}

.service-ville-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
}

.service-ville-title i {
    color: var(--red);
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(226, 26, 44, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-ville-title h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.chip-ville {
    padding: 10px 18px;
    font-size: 0.88rem;
}

.chip-ville i { font-size: 0.75rem; }

.home-chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: 50px;
    color: var(--white);
    font-weight: 700;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 6px 24px var(--red-glow);
}

.home-chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px var(--red-glow);
}

.home-chip i { font-size: 1.1rem; }

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.cta-section .container { position: relative; z-index: 2; }

.cta-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--white);
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    margin-bottom: 28px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.3s;
}

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

.btn-white:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

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

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.footer {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

.footer-social a:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

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

.footer-links a, .footer-links li {
    color: var(--gray);
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-bottom a { color: var(--gray-light); transition: color 0.3s; }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 18px;
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    .hamburger { display: flex; }
    .page-hero { padding: 140px 0 70px; }
    .category-header { flex-wrap: wrap; gap: 14px; }
    .category-icon { width: 48px; height: 48px; font-size: 1.2rem; }
    .footer-grid { grid-template-columns: 1fr !important; }
    .service-ville-block { padding: 22px; }
    .chip { font-size: 0.85rem; padding: 10px 16px; }
    .sitemap-section { padding: 60px 0; }
    .category-block { margin-bottom: 50px; }
}

@media (max-width: 480px) {
    .chips-grid { gap: 8px; }
    .chip { font-size: 0.82rem; padding: 9px 14px; }
}