.menu-check { display: none !important; }

#menuCheck:checked ~ .nav-mobile {
    display: flex !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 100vh !important;
    pointer-events: auto !important;
    right: 0 !important;
}

#menuCheck:checked ~ .header-inner .burger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

#menuCheck:checked ~ .header-inner .burger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

#menuCheck:checked ~ .header-inner .burger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.menu-toggle {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
}

#menuCheck:checked ~ .nav-mobile a {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

#menuCheck:checked ~ .nav-mobile a:nth-child(1) { transition-delay: 0.15s; }

#menuCheck:checked ~ .nav-mobile a:nth-child(2) { transition-delay: 0.2s; }

#menuCheck:checked ~ .nav-mobile a:nth-child(3) { transition-delay: 0.25s; }

#menuCheck:checked ~ .nav-mobile a:nth-child(4) { transition-delay: 0.3s; }

#menuCheck:checked ~ .nav-mobile a:nth-child(5) { transition-delay: 0.35s; }

#menuCheck:checked ~ .nav-mobile a:nth-child(6) { transition-delay: 0.4s; }

#menuCheck:checked ~ .nav-mobile a:nth-child(7) { transition-delay: 0.45s; }

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

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

:root {
            --primary: #1B2A4A;
            --primary-dark: #0F1A2E;
            --primary-light: #2A3F6A;
            --secondary: #E86A2E;
            --secondary-light: #FF8A50;
            --secondary-dark: #C4551F;
            --slate-50: #f8fafc;
            --slate-100: #f1f5f9;
            --slate-200: #e2e8f0;
            --slate-300: #cbd5e1;
            --slate-400: #94a3b8;
            --slate-500: #64748b;
            --slate-600: #475569;
            --slate-700: #334155;
            --slate-800: #1e293b;
            --slate-900: #0f172a;
            --white: #ffffff;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
            --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
            --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
            --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
        }

html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

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

h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

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

a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

.header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

.header.scrolled {
            background: rgba(15, 26, 46, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 0.6rem 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

.header-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

.logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            z-index: 1001;
        }

.logo img {
            height: 44px;
            width: auto;
            border-radius: 8px;
        }

.logo-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

.nav-desktop {
            display: none;
            align-items: center;
            gap: 2rem;
        }

.nav-desktop a {
            color: rgba(255,255,255,0.85);
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            position: relative;
            padding: 0.25rem 0;
            transition: color 0.3s ease;
        }

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

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

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

.nav-cta {
  display: none;
  background: var(--secondary);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  text-transform: uppercase;
  letter-spacing: 0.05em !important;
  transition: ;
  gap: 10px;
  align-items: center;
}

.nav-cta:hover {
            background: var(--secondary-light);
            transform: translateY(-1px);
        }

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

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

.burger span {
            width: 28px;
            height: 2.5px;
            background: var(--white);
            border-radius: 2px;
            transition: all 0.3s ease;
            transform-origin: center;
        }

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

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

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

.nav-mobile {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: var(--primary-dark);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
        }

.nav-mobile.open {
            right: 0;
        }

.nav-mobile a {
            color: var(--white);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.3s ease;
        }

.nav-mobile.open a {
            opacity: 1;
            transform: translateX(0);
        }

.nav-mobile.open a:nth-child(1) { transition-delay: 0.15s; }

.nav-mobile.open a:nth-child(2) { transition-delay: 0.2s; }

.nav-mobile.open a:nth-child(3) { transition-delay: 0.25s; }

.nav-mobile.open a:nth-child(4) { transition-delay: 0.3s; }

.nav-mobile.open a:nth-child(5) { transition-delay: 0.35s; }

.nav-mobile.open a:nth-child(6) { transition-delay: 0.4s; }

.nav-mobile.open a:nth-child(7) { transition-delay: 0.45s; }

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

.hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            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-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15,26,46,0.92) 0%, rgba(27,42,74,0.75) 50%, rgba(15,26,46,0.5) 100%);
            z-index: 1;
        }

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

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

.hero-content {
            position: relative;
            z-index: 3;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

.hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(232, 106, 46, 0.15);
            border: 1px solid rgba(232, 106, 46, 0.4);
            color: var(--secondary-light);
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

.hero h1 {
            font-size: clamp(2.2rem, 6vw, 4.5rem);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1rem;
            line-height: 1.05;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

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

.hero-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: rgba(255,255,255,0.75);
            max-width: 550px;
            margin-bottom: 2.5rem;
            font-weight: 300;
            line-height: 1.7;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

.hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            animation: fadeInUp 0.8s ease 0.8s both;
        }

.btn {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

.btn-primary {
            background: var(--secondary);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(232, 106, 46, 0.4);
        }

.btn-primary:hover {
            background: var(--secondary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(232, 106, 46, 0.5);
        }

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

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

.section-diagonal-top {
            clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
            margin-top: -60px;
            padding-top: calc(60px + 5rem);
        }

.section-diagonal-both {
            clip-path: polygon(0 60px, 100% 0, 100% calc(100% - 60px), 0 100%);
            margin-top: -60px;
            padding-top: calc(60px + 5rem);
            padding-bottom: calc(60px + 5rem);
        }

.section-diagonal-bottom {
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
            padding-bottom: calc(60px + 5rem);
        }

.section {
            padding: 5rem 0;
        }

.container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

.section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

.section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--secondary);
            margin-bottom: 0.75rem;
        }

.section-header h2 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
        }

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

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

.section-header.light p {
            color: rgba(255,255,255,0.7);
        }

.section-header.light .section-label {
            color: var(--secondary-light);
        }

.counters {
            background: var(--secondary);
            padding: 3rem 0;
            position: relative;
            z-index: 5;
        }

.counters-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            text-align: center;
        }

.counter-item {
            color: var(--white);
        }

.counter-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 700;
            line-height: 1;
            margin-bottom: 0.3rem;
        }

.counter-label {
            font-size: 0.85rem;
            font-weight: 500;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

.services-section {
            background: var(--slate-50);
        }

.services-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }

.service-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            width: 100%;
            max-width: 400px;
        }

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

.service-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

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

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

.service-image-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, transparent 0%, rgba(27,42,74,0.4) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

.service-card:hover .service-image-overlay {
            opacity: 1;
        }

.service-image-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 60px;
            height: 60px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.3rem;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

.service-card:hover .service-image-icon {
            transform: translate(-50%, -50%) scale(1);
        }

.service-body {
            padding: 1.5rem;
        }

.service-body h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 0.02em;
        }

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

.service-link {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            color: var(--secondary);
            font-weight: 600;
            font-size: 0.85rem;
            margin-top: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: gap 0.3s ease;
        }

.service-link:hover {
            gap: 0.8rem;
        }

.gallery-section {
            background: var(--primary);
            position: relative;
        }

.gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }

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

.gallery-item:first-child {
            grid-row: span 2;
            aspect-ratio: auto;
        }

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

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

.gallery-item-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15,26,46,0.7) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
        }

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

.gallery-item-overlay i {
            color: var(--white);
            font-size: 1.5rem;
            background: var(--secondary);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.lightbox {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0,0,0,0.92);
            display: none;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            cursor: pointer;
        }

.lightbox.active {
            display: flex;
        }

.lightbox img {
            max-width: 90vw;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }

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

.lightbox-close:hover {
            background: rgba(255,255,255,0.2);
        }

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

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

.lightbox-prev { left: 1.5rem; }

.lightbox-next { right: 1.5rem; }

.about-section {
            background: var(--white);
        }

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

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

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

.about-image-accent {
            position: absolute;
            bottom: -15px;
            right: -15px;
            width: 120px;
            height: 120px;
            background: var(--secondary);
            border-radius: 12px;
            z-index: -1;
        }

.about-content h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

.about-content h2 span {
            color: var(--secondary);
        }

.about-content p {
            font-size: 1rem;
            color: var(--slate-600);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

.about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }

.about-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

.about-feature-icon {
            width: 40px;
            height: 40px;
            background: rgba(232, 106, 46, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 1rem;
            flex-shrink: 0;
        }

.about-feature span {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--slate-700);
        }

.testimonials-section {
            background: var(--slate-50);
        }

.testimonials-top {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

.google-rating {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

.google-rating img {
            height: 28px;
        }

.google-stars {
            color: #FBBC04;
            font-size: 1.2rem;
        }

.google-score {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary);
        }

.google-count {
            font-size: 0.9rem;
            color: var(--slate-500);
        }

.testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

.testimonial-card {
            background: var(--white);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--shadow);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

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

.testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

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

.testimonial-name {
            font-weight: 700;
            color: var(--primary);
            font-size: 1rem;
        }

.testimonial-stars {
            color: #FBBC04;
            font-size: 0.85rem;
        }

.testimonial-text {
            font-size: 0.95rem;
            color: var(--slate-600);
            line-height: 1.7;
            font-style: italic;
        }

.testimonial-text::before {
            content: '\201C';
            font-size: 3rem;
            color: var(--secondary);
            line-height: 0;
            vertical-align: -0.5em;
            margin-right: 0.1em;
            font-family: Georgia, serif;
        }

.google-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--white);
            border: 2px solid var(--slate-200);
            border-radius: 50px;
            padding: 0.7rem 1.5rem;
            margin-top: 2.5rem;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--primary);
            transition: all 0.3s ease;
        }

.google-badge:hover {
            border-color: var(--secondary);
            box-shadow: var(--shadow);
        }

.google-badge i {
            color: #4285F4;
        }

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

.schedule-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: start;
        }

.schedule-info h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            color: var(--white);
            margin-bottom: 1rem;
        }

.schedule-info p {
            color: rgba(255,255,255,0.7);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

.schedule-contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

.schedule-contact-icon {
            width: 44px;
            height: 44px;
            background: rgba(232, 106, 46, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 1rem;
            flex-shrink: 0;
        }

.schedule-contact-text {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.85);
        }

.schedule-contact-text strong {
            display: block;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.5);
            margin-bottom: 0.15rem;
        }

.schedule-table {
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
        }

.schedule-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.07);
            transition: background 0.3s ease;
        }

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

.schedule-row:hover {
            background: rgba(255,255,255,0.05);
        }

.schedule-row.today {
            background: rgba(232, 106, 46, 0.15);
            border-left: 3px solid var(--secondary);
        }

.schedule-day {
            font-weight: 600;
            font-size: 0.95rem;
        }

.schedule-hours {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.75);
        }

.schedule-closed {
            color: #ef4444;
            font-weight: 600;
            font-size: 0.85rem;
        }

.schedule-open-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(5, 150, 105, 0.2);
            color: #34d399;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            margin-left: 0.5rem;
        }

.schedule-open-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #34d399;
            border-radius: 50%;
            animation: pulse-dot 2s infinite;
        }

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

.contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

.contact-form-wrap {
            background: var(--slate-50);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: var(--shadow);
        }

.contact-form-wrap h3 {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

.contact-form-wrap > p {
            color: var(--slate-500);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }

.form-group {
            margin-bottom: 1.25rem;
        }

.form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--slate-700);
            margin-bottom: 0.4rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

.form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid var(--slate-200);
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: var(--slate-800);
            transition: all 0.3s ease;
            background: var(--white);
        }

.form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(232, 106, 46, 0.15);
        }

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

.form-submit-btn {
            width: 100%;
            padding: 1rem;
            background: var(--secondary);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            cursor: pointer;
            transition: all 0.3s ease;
        }

.form-submit-btn:hover {
            background: var(--secondary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(232, 106, 46, 0.4);
        }

.form-submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

#formStatus p {
            margin-top: 1rem;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
        }

.contact-map {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            min-height: 350px;
        }

.contact-map iframe {
            width: 100%;
            height: 100%;
            min-height: 350px;
            display: block;
        }

.footer {
            background: var(--primary-dark);
            color: var(--white);
            padding: 3rem 0 0;
        }

.footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

.footer-brand .logo-text {
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

.footer-brand p {
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
            line-height: 1.7;
        }

.footer h4 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--secondary);
            margin-bottom: 1.2rem;
        }

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

.footer-links li {
            margin-bottom: 0.6rem;
        }

.footer-links a {
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

.footer-links a:hover {
            color: var(--white);
            padding-left: 4px;
        }

.footer-contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.8rem;
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }

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

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

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

.footer-bottom-links {
            display: flex;
            gap: 1.5rem;
        }

.footer-bottom-links a {
            color: rgba(255,255,255,0.4);
            font-size: 0.8rem;
            transition: color 0.3s ease;
        }

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

.floating-cta {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            align-items: flex-end;
        }

.floating-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--white);
            box-shadow: var(--shadow-lg);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

.floating-btn:hover {
            transform: scale(1.1);
        }

.floating-btn-phone {
            background: var(--secondary);
            animation: float-pulse 3s ease infinite;
        }

.floating-btn-top {
            background: var(--primary);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

.floating-btn-top.visible {
            opacity: 1;
            visibility: visible;
        }

.modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

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

.modal {
            background: var(--white);
            border-radius: 16px;
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 2.5rem;
            position: relative;
        }

.modal h2 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

.modal p {
            font-size: 0.9rem;
            color: var(--slate-600);
            line-height: 1.7;
            margin-bottom: 0.5rem;
        }

.modal p strong {
            color: var(--slate-800);
        }

.modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--slate-100);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--slate-500);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

.modal-close:hover {
            background: var(--slate-200);
            color: var(--slate-800);
        }

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

@keyframes float-pulse {
            0%, 100% {
                box-shadow: 0 4px 15px rgba(232, 106, 46, 0.4);
            }
            50% {
                box-shadow: 0 4px 30px rgba(232, 106, 46, 0.7);
            }
        }

@keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

.animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

.animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

.hero-reassurance {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.18);
            color: #FFD9B8;
            font-size: 0.95rem;
            font-weight: 600;
            padding: 0.55rem 1rem;
            border-radius: 50px;
            margin-bottom: 1.75rem;
            animation: fadeInUp 0.8s ease 0.5s both;
        }

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

.hero-subtitle {
            margin-top: 1.5rem;
        }

.hero-rating {
            display: inline-flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.55rem 0.75rem;
            background: rgba(255,255,255,0.10);
            border: 1px solid rgba(255,255,255,0.22);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            padding: 0.5rem 0.95rem;
            border-radius: 50px;
            margin-bottom: 1.1rem;
            color: var(--white);
            animation: fadeInUp 0.8s ease 0.3s both;
        }

.hero-rating .g-logo { color: #fff; background:#4285F4; width:22px; height:22px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; font-size:0.75rem; }

.hero-rating .score { font-family: 'Space Grotesk', sans-serif; font-weight:700; font-size:1.05rem; color:#fff; }

.hero-rating .stars { color: #FBBC04; font-size: 0.9rem; letter-spacing: 1px; }

.hero-rating .count { font-size: 0.85rem; color: rgba(255,255,255,0.85); }

.hero-rating .sep { width:4px; height:4px; border-radius:50%; background: rgba(255,255,255,0.4); display:inline-block; }

.hero-rating .pitch { font-size: 0.85rem; color: #FFD9B8; font-weight: 600; }

.hero-zones {
            margin-top: 1.5rem;
            display: flex;
            align-items: flex-start;
            gap: 0.55rem;
            color: rgba(255,255,255,0.85);
            font-size: 0.9rem;
            max-width: 640px;
            line-height: 1.55;
            animation: fadeInUp 0.8s ease 1s both;
        }

.hero-zones i { color: var(--secondary-light); margin-top: 0.25rem; }

.hero-zones strong {
            display: block;
            color: #fff;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.72rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 0.2rem;
        }

.quote-rating {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            background: var(--slate-50);
            border: 1px solid var(--slate-200);
            border-radius: 10px;
            padding: 0.6rem 0.8rem;
            margin-bottom: 1.1rem;
        }

.quote-rating .g-logo { color: #4285F4; font-size: 1rem; }

.quote-rating .score { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; color: var(--primary); }

.quote-rating .stars { color: #FBBC04; font-size: 0.85rem; }

.quote-rating .count { font-size: 0.82rem; color: var(--slate-600); }

.quote-rating .pitch { font-size: 0.78rem; color: var(--slate-700); font-weight: 600; margin-left: auto; }

.trust-bar {
            background: var(--white);
            padding: 2.25rem 0;
            border-bottom: 1px solid var(--slate-200);
            position: relative;
            z-index: 5;
        }

.trust-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.75rem;
            align-items: center;
            text-align: center;
        }

.trust-rating {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
            justify-content: center;
        }

.trust-rating .score {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 2rem;
            color: var(--primary);
            line-height: 1;
        }

.trust-rating .stars { color: #FBBC04; font-size: 1.1rem; }

.trust-rating .count { font-size: 0.9rem; color: var(--slate-500); }

.trust-rating .g-logo { color: #4285F4; font-size: 1.3rem; }

.trust-labels {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

.trust-label {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(232, 106, 46, 0.1);
            color: var(--secondary-dark);
            font-weight: 600;
            font-size: 0.82rem;
            padding: 0.45rem 0.9rem;
            border-radius: 50px;
            border: 1px solid rgba(232, 106, 46, 0.25);
            white-space: nowrap;
        }

.trust-label i { color: var(--secondary); }

.trust-communes {
            font-size: 0.88rem;
            color: var(--slate-600);
            line-height: 1.6;
        }

.trust-communes strong {
            display: block;
            color: var(--primary);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.35rem;
        }

.quote-urgence-section {
            background: var(--slate-50);
            padding: 4rem 0;
        }

.qu-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.75rem;
        }

.urgence-card {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }

.urgence-card::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(232,106,46,0.35), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

.urgence-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--secondary);
            color: var(--white);
            font-weight: 700;
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.4rem 0.9rem;
            border-radius: 50px;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

.urgence-tag i { animation: pulse-dot 1.5s infinite; }

.urgence-card h3 {
            font-size: 1.55rem;
            margin-bottom: 0.5rem;
            color: var(--white);
            position: relative;
            z-index: 1;
        }

.urgence-card > p {
            color: rgba(255,255,255,0.8);
            font-size: 0.95rem;
            margin-bottom: 1.25rem;
            position: relative;
            z-index: 1;
        }

.urgence-phone {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--secondary);
            color: var(--white) !important;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
            padding: 0.9rem 1.4rem;
            border-radius: 10px;
            margin-bottom: 1.25rem;
            position: relative;
            z-index: 1;
            box-shadow: 0 6px 20px rgba(232,106,46,0.35);
            transition: all 0.3s ease;
        }

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

.urgence-meta {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.85rem;
            position: relative;
            z-index: 1;
        }

.urgence-meta-item {
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.85);
        }

.urgence-meta-item i {
            color: var(--secondary-light);
            margin-top: 0.15rem;
            width: 18px;
            text-align: center;
        }

.urgence-meta-item strong {
            display: block;
            color: var(--white);
            margin-bottom: 0.1rem;
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

#devis-form { scroll-margin-top: 80px; }

.quote-form-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--secondary);
        }

.quote-form-card h3 {
            font-size: 1.35rem;
            color: var(--primary);
            margin-bottom: 0.35rem;
        }

.quote-form-card > p {
            font-size: 0.9rem;
            color: var(--slate-500);
            margin-bottom: 1.5rem;
        }

.quote-form-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.8rem;
            margin-bottom: 0.8rem;
        }

.quote-form-card input,
        .quote-form-card textarea {
            width: 100%;
            padding: 0.85rem 1rem;
            border: 2px solid var(--slate-200);
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: var(--slate-800);
            background: var(--white);
            transition: all 0.3s ease;
        }

.quote-form-card input:focus,
        .quote-form-card textarea:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(232, 106, 46, 0.15);
        }

.quote-form-card textarea {
            resize: vertical;
            min-height: 80px;
            margin-bottom: 0.8rem;
        }

.quote-submit {
            width: 100%;
            padding: 1rem;
            background: var(--secondary);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            cursor: pointer;
            transition: all 0.3s ease;
        }

.quote-submit:hover {
            background: var(--secondary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(232, 106, 46, 0.4);
        }

.quote-form-note {
            text-align: center;
            margin-top: 0.75rem;
            font-size: 0.8rem;
            color: var(--slate-500);
        }

@media (min-width: 640px) {
            .quote-form-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

@media (min-width: 768px) {
            .trust-grid {
                grid-template-columns: auto 1fr auto;
                gap: 2.5rem;
                text-align: left;
            }
            .trust-communes { text-align: left; }
            .trust-labels { justify-content: flex-end; }
            .qu-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
            .urgence-meta {
                grid-template-columns: 1fr 1fr;
            }
        }

@media (min-width: 640px) {
            .services-grid {
                gap: 1.5rem;
            }

            .service-card {
                width: calc(50% - 0.75rem);
            }

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

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

            .counters-grid {
                grid-template-columns: repeat(4, 1fr);
            }

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

@media (min-width: 768px) {
            .about-grid {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }

            .about-image img {
                height: 450px;
            }

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

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

            .contact-form-wrap {
                padding: 2.5rem;
            }
        }

@media (min-width: 1024px) {
            .nav-desktop {
                display: flex;
            }

            .nav-cta {
                display: inline-flex;
            }

            .burger {
                display: none;
            }

            .services-grid {
                gap: 2rem;
            }

            .service-card {
                width: calc(33.333% - 1.34rem);
            }

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

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

            .footer-grid {
                grid-template-columns: 1.8fr 1fr 1fr 1fr 1.4fr;
            }
        }

html { overflow-x: hidden; }

.nav-mobile {
            right: 0 !important;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        }

.nav-mobile.open,
        #menuCheck:checked ~ .nav-mobile {
            transform: translateX(0) !important;
        }

.hero-zones, .hero-zones > div, .trust-communes,
        .trust-rating, .trust-rating .count {
            min-width: 0;
            overflow-wrap: break-word;
        }

.hero h1, .hero-subtitle {
            min-width: 0;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

@media (max-width: 640px) {
            
            .hero {
                height: auto;
                min-height: 0;
                padding: 5.5rem 0 3rem;
            }
            .hero-content { padding: 0 1.25rem; }
            .hero-diagonal { display: none; }

            .hero-badge {
                font-size: 0.68rem;
                padding: 0.4rem 0.85rem;
                margin-bottom: 0.9rem;
                letter-spacing: 0.06em;
            }
            .hero-rating {
                padding: 0.4rem 0.8rem;
                margin-bottom: 0.9rem;
                gap: 0.4rem 0.55rem;
            }
            .hero-rating .pitch { display: none; }
            .hero-rating .sep { display: none; }

            .hero h1 {
                font-size: 1.65rem;
                line-height: 1.2;
                margin-bottom: 0.85rem;
                letter-spacing: -0.01em;
            }
            .hero-reassurance {
                font-size: 0.82rem;
                padding: 0.45rem 0.85rem;
                margin-bottom: 1.1rem;
            }

            .hero-buttons {
                gap: 0.6rem;
                flex-direction: column;
                margin-bottom: 1rem;
            }
            .hero-buttons .btn {
                width: 100%;
                padding: 0.85rem 1rem;
                font-size: 0.9rem;
                white-space: nowrap;
            }

            
            .hero-zones { display: none; }

            .hero-subtitle {
                font-size: 0.9rem;
                line-height: 1.55;
                margin-top: 0.5rem;
                margin-bottom: 0;
            }

            
            .header { padding: 0.65rem 0; }
            .header-inner { padding: 0 1.25rem; }
            .logo img { height: 36px; }
            .logo span { font-size: 0.95rem; }

            
            .section { padding: 3rem 0; }
            .container { padding: 0 1.25rem; }
            .section-header { margin-bottom: 2rem; }

            
            .trust-bar { padding: 1.5rem 0; }
            .trust-grid { gap: 1.25rem; }
            .trust-communes { font-size: 0.82rem; }

            
            .counters { padding: 2.5rem 0; }
            .counters-grid { gap: 1.25rem; }
        }

@media (max-width: 380px) {
            .hero h1 { font-size: 1.7rem; }
            .hero-content { padding: 0 1rem; }
            .container { padding: 0 1rem; }
            .header-inner { padding: 0 1rem; }
            .logo span { font-size: 0.85rem; }
        }

.service-cities {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--slate-200);
            font-size: 0.82rem;
            color: var(--slate-500);
            line-height: 1.7;
        }

.service-cities strong {
            display: block;
            color: var(--primary);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.45rem;
            font-weight: 700;
        }

.service-cities a {
            color: var(--secondary);
            font-weight: 500;
            transition: color 0.3s ease;
        }

.service-cities a:hover {
            color: var(--secondary-dark);
            text-decoration: underline;
        }

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

.zones-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1rem;
            max-width: 960px;
            margin: 0 auto;
        }

.zone-card {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.1rem 1.25rem;
            background: var(--slate-50);
            border: 1px solid var(--slate-200);
            border-radius: 10px;
            color: var(--primary);
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

.zone-card i {
            color: var(--secondary);
            font-size: 1rem;
            transition: color 0.3s ease;
        }

.zone-card:hover {
            background: var(--secondary);
            color: var(--white);
            border-color: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(232, 106, 46, 0.25);
        }

.zone-card:hover i {
            color: var(--white);
        }

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

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

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

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

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, #0F1A2E 0%, #1B2A4A 60%, #2A3F6A 100%);
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_1_1774043506_69bdc17299fda.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-zone .sct-hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 80px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

.sct-tpl-zone .sct-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(232, 106, 46, 0.15);
    border: 1px solid rgba(232, 106, 46, 0.4);
    color: #FF8A50;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
}

.sct-tpl-zone .sct-hero-text h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
    color: #fff;
}

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

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 580px;
    font-weight: 300;
}

.sct-tpl-zone .sct-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.sct-tpl-zone .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.8rem;
    border-radius: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.sct-tpl-zone .sct-btn-primary {
    background: #E86A2E;
    color: #fff;
    box-shadow: 0 4px 15px rgba(232, 106, 46, 0.4);
}

.sct-tpl-zone .sct-btn-primary:hover {
    background: #FF8A50;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 106, 46, 0.5);
}

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

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

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

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

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

.sct-tpl-zone .sct-hero-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.sct-tpl-zone .sct-hero-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.4rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.sct-tpl-zone .sct-hero-card-line {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.7rem 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
}

.sct-tpl-zone .sct-hero-card-line i {
    color: #E86A2E;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.sct-tpl-zone .sct-hero-card-line strong {
    color: #fff;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sct-tpl-zone .sct-hero-card-cta {
    display: block;
    text-align: center;
    margin-top: 1.4rem;
    padding: 0.9rem 1.2rem;
    background: #E86A2E;
    color: #fff;
    border-radius: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-hero-card-cta:hover {
    background: #FF8A50;
    transform: translateY(-2px);
}

.sct-tpl-zone .sct-stats-band {
    background: #E86A2E;
    padding: 2.8rem 0;
    position: relative;
    z-index: 3;
}

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

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

.sct-tpl-zone .sct-stat-item { color: #fff; }

.sct-tpl-zone .sct-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.sct-tpl-zone .sct-stat-label {
    font-size: 0.82rem;
    font-weight: 500;
    opacity: 0.92;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sct-tpl-zone .sct-intro-section {
    padding: 5rem 0;
    background: #fff;
}

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

.sct-tpl-zone .sct-intro-content p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.85;
    margin-bottom: 1.4rem;
}

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

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

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

.sct-tpl-zone .sct-section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #E86A2E;
    margin-bottom: 0.75rem;
}

.sct-tpl-zone .sct-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sct-tpl-zone .sct-section-subtitle {
    font-size: 1.02rem;
    color: #64748b;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.sct-tpl-zone .sct-services-section {
    padding: 5rem 0;
    background: #f8fafc;
}

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

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

.sct-tpl-zone .sct-zones-section {
    padding: 5rem 0;
    background: #fff;
}

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

.sct-tpl-zone .sct-zones-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    margin-top: 2rem;
}

.sct-tpl-zone .sct-zones-list span,
.sct-tpl-zone .sct-zones-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f8fafc;
    color: #334155;
    padding: 0.6rem 1.1rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-zones-list span::before,
.sct-tpl-zone .sct-zones-list a::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #E86A2E;
    font-size: 0.8rem;
}

.sct-tpl-zone .sct-zones-list a:hover {
    background: #E86A2E;
    color: #fff;
    border-color: #E86A2E;
    transform: translateY(-2px);
}

.sct-tpl-zone .sct-zones-list a:hover::before { color: #fff; }

.sct-tpl-zone .sct-usecase-section {
    padding: 5rem 0;
    background: #1B2A4A;
    color: #fff;
}

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

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

.sct-tpl-zone .sct-usecase-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.35);
}

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

.sct-tpl-zone .sct-usecase-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 110px;
    height: 110px;
    background: #E86A2E;
    border-radius: 12px;
    z-index: -1;
}

.sct-tpl-zone .sct-usecase-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    margin-bottom: 1.4rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sct-tpl-zone .sct-usecase-content h2 span { color: #FF8A50; }

.sct-tpl-zone .sct-usecase-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.sct-tpl-zone .sct-engagements-section {
    padding: 5rem 0;
    background: #f8fafc;
}

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

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

.sct-tpl-zone .sct-engagement-card {
    background: #fff;
    padding: 2.2rem 1.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.06);
    border-left: 4px solid #E86A2E;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-engagement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.12);
}

.sct-tpl-zone .sct-engagement-icon {
    width: 56px;
    height: 56px;
    background: rgba(232, 106, 46, 0.1);
    color: #E86A2E;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.3rem;
}

.sct-tpl-zone .sct-engagement-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.sct-tpl-zone .sct-engagement-card p {
    font-size: 0.93rem;
    color: #64748b;
    line-height: 1.7;
}

.sct-tpl-zone .sct-local-spec {
    padding: 4rem 0;
    background: #fff;
}

.sct-tpl-zone .sct-local-spec-box {
    max-width: 880px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 14px;
    padding: 2.5rem;
    border-left: 4px solid #E86A2E;
}

.sct-tpl-zone .sct-local-spec-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: #1B2A4A;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.sct-tpl-zone .sct-local-spec-box p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
}

.sct-tpl-zone .sct-faq-section {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.sct-tpl-zone .sct-faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-faq-item:hover {
    border-color: #E86A2E;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08);
}

.sct-tpl-zone .sct-faq-item summary {
    cursor: pointer;
    padding: 1.3rem 1.6rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.02rem;
    color: #1B2A4A;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    list-style: none;
}

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

.sct-tpl-zone .sct-faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: #E86A2E;
    font-weight: 400;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-faq-item[open] summary::after { content: '−'; }

.sct-tpl-zone .sct-faq-answer {
    padding: 0 1.6rem 1.4rem;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
}

.sct-tpl-zone .sct-maillage-section {
    padding: 4rem 0;
    background: #fff;
    border-top: 1px solid #e2e8f0;
}

.sct-tpl-zone .sct-maillage-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    color: #1B2A4A;
    text-align: center;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sct-tpl-zone .sct-maillage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
}

.sct-tpl-zone .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f8fafc;
    color: #334155;
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    font-size: 0.87rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

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

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

.sct-tpl-zone .sct-maillage-list a:hover::before { color: #FF8A50; }

.sct-tpl-zone .sct-cta-final {
    padding: 5rem 0;
    background: linear-gradient(135deg, #E86A2E 0%, #C4551F 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.sct-tpl-zone .sct-cta-final-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

.sct-tpl-zone .sct-cta-final h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sct-tpl-zone .sct-cta-final p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.sct-tpl-zone .sct-cta-final .sct-btn-primary {
    background: #fff;
    color: #C4551F;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.sct-tpl-zone .sct-cta-final .sct-btn-primary:hover {
    background: #1B2A4A;
    color: #fff;
}

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

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

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero { padding: 140px 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); gap: 1.8rem; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .sct-tpl-zone .sct-usecase-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .sct-tpl-zone .sct-usecase-image { max-width: 560px; margin: 0 auto; }
    .sct-tpl-zone .sct-usecase-image img { height: 320px; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-zone .sct-hero-subtitle { font-size: 0.98rem; }
    .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: 1.5rem; }
    .sct-tpl-zone .sct-hero-trust { flex-direction: column; gap: 0.6rem; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-intro-content p { font-size: 0.98rem; }
    .sct-tpl-zone .sct-section-header { margin-bottom: 2.5rem; }
    .sct-tpl-zone .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-local-spec-box { padding: 1.8rem 1.4rem; }
    .sct-tpl-zone .sct-faq-item summary { padding: 1.1rem 1.2rem; font-size: 0.96rem; }
    .sct-tpl-zone .sct-faq-answer { padding: 0 1.2rem 1.2rem; }
    .sct-tpl-zone .sct-intro-section,
    .sct-tpl-zone .sct-services-section,
    .sct-tpl-zone .sct-zones-section,
    .sct-tpl-zone .sct-usecase-section,
    .sct-tpl-zone .sct-engagements-section,
    .sct-tpl-zone .sct-faq-section,
    .sct-tpl-zone .sct-cta-final { padding: 3.5rem 0; }
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, #0F1A2E 0%, #1B2A4A 60%, #2A3F6A 100%);
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_2_1774043527_69bdc1876ef7f.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-service-hub .sct-hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 80px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

.sct-tpl-service-hub .sct-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(232, 106, 46, 0.15);
    border: 1px solid rgba(232, 106, 46, 0.4);
    color: #FF8A50;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
}

.sct-tpl-service-hub .sct-hero-text h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
    color: #fff;
}

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

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 580px;
    font-weight: 300;
}

.sct-tpl-service-hub .sct-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.sct-tpl-service-hub .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.8rem;
    border-radius: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.sct-tpl-service-hub .sct-btn-primary {
    background: #E86A2E;
    color: #fff;
    box-shadow: 0 4px 15px rgba(232, 106, 46, 0.4);
}

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: #FF8A50;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 106, 46, 0.5);
}

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

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

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

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

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

.sct-tpl-service-hub .sct-hero-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.sct-tpl-service-hub .sct-hero-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.4rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.sct-tpl-service-hub .sct-hero-card-line {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.7rem 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
}

.sct-tpl-service-hub .sct-hero-card-line i {
    color: #E86A2E;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

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

.sct-tpl-service-hub .sct-hero-card-cta {
    display: block;
    text-align: center;
    margin-top: 1.4rem;
    padding: 0.9rem 1.2rem;
    background: #E86A2E;
    color: #fff;
    border-radius: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-hero-card-cta:hover {
    background: #FF8A50;
    transform: translateY(-2px);
}

.sct-tpl-service-hub .sct-stats-band {
    background: #E86A2E;
    padding: 2.8rem 0;
    position: relative;
    z-index: 3;
}

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

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

.sct-tpl-service-hub .sct-stat-item { color: #fff; }

.sct-tpl-service-hub .sct-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.sct-tpl-service-hub .sct-stat-label {
    font-size: 0.82rem;
    font-weight: 500;
    opacity: 0.92;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sct-tpl-service-hub .sct-intro-section {
    padding: 5rem 0;
    background: #fff;
}

.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;
    color: #475569;
    line-height: 1.85;
    margin-bottom: 1.4rem;
}

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

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

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

.sct-tpl-service-hub .sct-section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #E86A2E;
    margin-bottom: 0.75rem;
}

.sct-tpl-service-hub .sct-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sct-tpl-service-hub .sct-section-subtitle {
    font-size: 1.02rem;
    color: #64748b;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.sct-tpl-service-hub .sct-services-section {
    padding: 5rem 0;
    background: #f8fafc;
}

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

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

.sct-tpl-service-hub .sct-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.18);
}

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

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

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

.sct-tpl-service-hub .sct-service-card-body { padding: 1.5rem; }

.sct-tpl-service-hub .sct-service-card-body h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

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

.sct-tpl-service-hub .sct-processus-section {
    padding: 5rem 0;
    background: #fff;
}

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

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

.sct-tpl-service-hub .sct-step-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border-top: 3px solid #E86A2E;
    transition: transform 0.3s ease;
}

.sct-tpl-service-hub .sct-step-item:hover { transform: translateY(-4px); }

.sct-tpl-service-hub .sct-step-num {
    width: 50px;
    height: 50px;
    background: #1B2A4A;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.sct-tpl-service-hub .sct-step-icon {
    color: #E86A2E;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.sct-tpl-service-hub .sct-step-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

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

.sct-tpl-service-hub .sct-why-section {
    padding: 5rem 0;
    background: #1B2A4A;
    color: #fff;
}

.sct-tpl-service-hub .sct-why-section .sct-section-title { color: #fff; }

.sct-tpl-service-hub .sct-why-section .sct-section-tag { color: #FF8A50; }

.sct-tpl-service-hub .sct-why-section .sct-section-subtitle { color: rgba(255,255,255,0.7); }

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

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

.sct-tpl-service-hub .sct-why-item {
    text-align: center;
    padding: 2rem 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-why-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    border-color: rgba(232, 106, 46, 0.4);
}

.sct-tpl-service-hub .sct-why-icon {
    width: 64px;
    height: 64px;
    background: rgba(232, 106, 46, 0.15);
    color: #FF8A50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.2rem;
}

.sct-tpl-service-hub .sct-why-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.sct-tpl-service-hub .sct-why-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
}

.sct-tpl-service-hub .sct-usecase-section {
    padding: 5rem 0;
    background: #fff;
}

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

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

.sct-tpl-service-hub .sct-usecase-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.12);
}

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

.sct-tpl-service-hub .sct-usecase-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 110px;
    height: 110px;
    background: #E86A2E;
    border-radius: 12px;
    z-index: -1;
}

.sct-tpl-service-hub .sct-usecase-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #1B2A4A;
    margin-bottom: 1.4rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sct-tpl-service-hub .sct-usecase-content h2 span { color: #E86A2E; }

.sct-tpl-service-hub .sct-usecase-content p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.sct-tpl-service-hub .sct-engagements-section {
    padding: 5rem 0;
    background: #f8fafc;
}

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

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

.sct-tpl-service-hub .sct-engagement-card {
    background: #fff;
    padding: 2.2rem 1.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.06);
    border-left: 4px solid #E86A2E;
    transition: all 0.3s ease;
}

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

.sct-tpl-service-hub .sct-engagement-icon {
    width: 56px;
    height: 56px;
    background: rgba(232, 106, 46, 0.1);
    color: #E86A2E;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.3rem;
}

.sct-tpl-service-hub .sct-engagement-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.sct-tpl-service-hub .sct-engagement-card p {
    font-size: 0.93rem;
    color: #64748b;
    line-height: 1.7;
}

.sct-tpl-service-hub .sct-faq-section {
    padding: 5rem 0;
    background: #fff;
}

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

.sct-tpl-service-hub .sct-faq-item {
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-faq-item:hover {
    border-color: #E86A2E;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08);
}

.sct-tpl-service-hub .sct-faq-item summary {
    cursor: pointer;
    padding: 1.3rem 1.6rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.02rem;
    color: #1B2A4A;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    list-style: none;
}

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

.sct-tpl-service-hub .sct-faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: #E86A2E;
    font-weight: 400;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.sct-tpl-service-hub .sct-faq-answer {
    padding: 0 1.6rem 1.4rem;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
}

.sct-tpl-service-hub .sct-maillage-section {
    padding: 5rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

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

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

.sct-tpl-service-hub .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    color: #334155;
    padding: 0.6rem 1.1rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-maillage-section--alt .sct-maillage-list a {
    background: #f8fafc;
}

.sct-tpl-service-hub .sct-maillage-list a::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #E86A2E;
    font-size: 0.8rem;
}

.sct-tpl-service-hub .sct-maillage-section--alt .sct-maillage-list a::before {
    content: '\f0a4';
    color: #1B2A4A;
}

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

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

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

.sct-tpl-service-hub .sct-cta-final {
    padding: 5rem 0;
    background: linear-gradient(135deg, #E86A2E 0%, #C4551F 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

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

.sct-tpl-service-hub .sct-cta-final h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sct-tpl-service-hub .sct-cta-final p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.sct-tpl-service-hub .sct-cta-final .sct-btn-primary {
    background: #fff;
    color: #C4551F;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.sct-tpl-service-hub .sct-cta-final .sct-btn-primary:hover {
    background: #1B2A4A;
    color: #fff;
}

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

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

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero { padding: 140px 0 70px; }
    .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); gap: 1.8rem; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .sct-tpl-service-hub .sct-usecase-image { max-width: 560px; margin: 0 auto; }
    .sct-tpl-service-hub .sct-usecase-image img { height: 320px; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-hub .sct-hero-subtitle { font-size: 0.98rem; }
    .sct-tpl-service-hub .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-hero-card { padding: 1.5rem; }
    .sct-tpl-service-hub .sct-hero-trust { flex-direction: column; gap: 0.6rem; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
    .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-intro-content p { font-size: 0.98rem; }
    .sct-tpl-service-hub .sct-section-header { margin-bottom: 2.5rem; }
    .sct-tpl-service-hub .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-faq-item summary { padding: 1.1rem 1.2rem; font-size: 0.96rem; }
    .sct-tpl-service-hub .sct-faq-answer { padding: 0 1.2rem 1.2rem; }
    .sct-tpl-service-hub .sct-intro-section,
    .sct-tpl-service-hub .sct-services-section,
    .sct-tpl-service-hub .sct-processus-section,
    .sct-tpl-service-hub .sct-why-section,
    .sct-tpl-service-hub .sct-usecase-section,
    .sct-tpl-service-hub .sct-engagements-section,
    .sct-tpl-service-hub .sct-faq-section,
    .sct-tpl-service-hub .sct-maillage-section,
    .sct-tpl-service-hub .sct-cta-final { padding: 3.5rem 0; }
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, #0F1A2E 0%, #1B2A4A 60%, #2A3F6A 100%);
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_2_1774043527_69bdc1876ef7f.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-service-city .sct-hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 80px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 1;
}

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

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

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(232, 106, 46, 0.15);
    border: 1px solid rgba(232, 106, 46, 0.4);
    color: #FF8A50;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
}

.sct-tpl-service-city .sct-hero-text h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
    color: #fff;
}

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

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 580px;
    font-weight: 300;
}

.sct-tpl-service-city .sct-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.sct-tpl-service-city .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.8rem;
    border-radius: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.sct-tpl-service-city .sct-btn-primary {
    background: #E86A2E;
    color: #fff;
    box-shadow: 0 4px 15px rgba(232, 106, 46, 0.4);
}

.sct-tpl-service-city .sct-btn-primary:hover {
    background: #FF8A50;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 106, 46, 0.5);
}

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

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

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

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

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

.sct-tpl-service-city .sct-hero-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.sct-tpl-service-city .sct-hero-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.4rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.sct-tpl-service-city .sct-hero-card-line {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.7rem 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
}

.sct-tpl-service-city .sct-hero-card-line i {
    color: #E86A2E;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

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

.sct-tpl-service-city .sct-hero-card-cta {
    display: block;
    text-align: center;
    margin-top: 1.4rem;
    padding: 0.9rem 1.2rem;
    background: #E86A2E;
    color: #fff;
    border-radius: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-hero-card-cta:hover {
    background: #FF8A50;
    transform: translateY(-2px);
}

.sct-tpl-service-city .sct-stats-band {
    background: #E86A2E;
    padding: 2.8rem 0;
    position: relative;
    z-index: 3;
}

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

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

.sct-tpl-service-city .sct-stat-item { color: #fff; }

.sct-tpl-service-city .sct-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.sct-tpl-service-city .sct-stat-label {
    font-size: 0.82rem;
    font-weight: 500;
    opacity: 0.92;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sct-tpl-service-city .sct-intro-section {
    padding: 5rem 0;
    background: #fff;
}

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

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

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

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

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

.sct-tpl-service-city .sct-section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #E86A2E;
    margin-bottom: 0.75rem;
}

.sct-tpl-service-city .sct-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sct-tpl-service-city .sct-section-subtitle {
    font-size: 1.02rem;
    color: #64748b;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.sct-tpl-service-city .sct-services-section {
    padding: 5rem 0;
    background: #f8fafc;
}

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

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

.sct-tpl-service-city .sct-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.18);
}

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

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

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

.sct-tpl-service-city .sct-service-card-body { padding: 1.5rem; }

.sct-tpl-service-city .sct-service-card-body h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

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

.sct-tpl-service-city .sct-processus-section {
    padding: 5rem 0;
    background: #fff;
}

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

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

.sct-tpl-service-city .sct-step-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border-top: 3px solid #E86A2E;
    position: relative;
    transition: transform 0.3s ease;
}

.sct-tpl-service-city .sct-step-item:hover { transform: translateY(-4px); }

.sct-tpl-service-city .sct-step-num {
    width: 50px;
    height: 50px;
    background: #1B2A4A;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.sct-tpl-service-city .sct-step-icon {
    color: #E86A2E;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.sct-tpl-service-city .sct-step-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

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

.sct-tpl-service-city .sct-why-section {
    padding: 5rem 0;
    background: #1B2A4A;
    color: #fff;
}

.sct-tpl-service-city .sct-why-section .sct-section-title { color: #fff; }

.sct-tpl-service-city .sct-why-section .sct-section-tag { color: #FF8A50; }

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

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

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

.sct-tpl-service-city .sct-why-item {
    text-align: center;
    padding: 2rem 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-why-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    border-color: rgba(232, 106, 46, 0.4);
}

.sct-tpl-service-city .sct-why-icon {
    width: 64px;
    height: 64px;
    background: rgba(232, 106, 46, 0.15);
    color: #FF8A50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.2rem;
}

.sct-tpl-service-city .sct-why-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.sct-tpl-service-city .sct-why-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
}

.sct-tpl-service-city .sct-zones-section {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.sct-tpl-service-city .sct-zones-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    margin-top: 2rem;
}

.sct-tpl-service-city .sct-zones-list span,
.sct-tpl-service-city .sct-zones-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    color: #334155;
    padding: 0.6rem 1.1rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-zones-list span::before,
.sct-tpl-service-city .sct-zones-list a::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #E86A2E;
    font-size: 0.8rem;
}

.sct-tpl-service-city .sct-zones-list a:hover {
    background: #E86A2E;
    color: #fff;
    border-color: #E86A2E;
    transform: translateY(-2px);
}

.sct-tpl-service-city .sct-zones-list a:hover::before { color: #fff; }

.sct-tpl-service-city .sct-usecase-section {
    padding: 5rem 0;
    background: #fff;
}

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

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

.sct-tpl-service-city .sct-usecase-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.12);
}

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

.sct-tpl-service-city .sct-usecase-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 110px;
    height: 110px;
    background: #E86A2E;
    border-radius: 12px;
    z-index: -1;
}

.sct-tpl-service-city .sct-usecase-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #1B2A4A;
    margin-bottom: 1.4rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sct-tpl-service-city .sct-usecase-content h2 span { color: #E86A2E; }

.sct-tpl-service-city .sct-usecase-content p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.sct-tpl-service-city .sct-engagements-section {
    padding: 5rem 0;
    background: #f8fafc;
}

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

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

.sct-tpl-service-city .sct-engagement-card {
    background: #fff;
    padding: 2.2rem 1.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.06);
    border-left: 4px solid #E86A2E;
    transition: all 0.3s ease;
}

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

.sct-tpl-service-city .sct-engagement-icon {
    width: 56px;
    height: 56px;
    background: rgba(232, 106, 46, 0.1);
    color: #E86A2E;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.3rem;
}

.sct-tpl-service-city .sct-engagement-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.sct-tpl-service-city .sct-engagement-card p {
    font-size: 0.93rem;
    color: #64748b;
    line-height: 1.7;
}

.sct-tpl-service-city .sct-local-spec {
    padding: 4rem 0;
    background: #fff;
}

.sct-tpl-service-city .sct-local-spec-box {
    max-width: 880px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 14px;
    padding: 2.5rem;
    border-left: 4px solid #E86A2E;
}

.sct-tpl-service-city .sct-local-spec-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: #1B2A4A;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.sct-tpl-service-city .sct-local-spec-box p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
}

.sct-tpl-service-city .sct-faq-section {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.sct-tpl-service-city .sct-faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-faq-item:hover {
    border-color: #E86A2E;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08);
}

.sct-tpl-service-city .sct-faq-item summary {
    cursor: pointer;
    padding: 1.3rem 1.6rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.02rem;
    color: #1B2A4A;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    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: '+';
    font-size: 1.5rem;
    color: #E86A2E;
    font-weight: 400;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.sct-tpl-service-city .sct-faq-item[open] summary::after {
    content: '−';
}

.sct-tpl-service-city .sct-faq-answer {
    padding: 0 1.6rem 1.4rem;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
}

.sct-tpl-service-city .sct-maillage-section {
    padding: 4rem 0;
    background: #fff;
    border-top: 1px solid #e2e8f0;
}

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

.sct-tpl-service-city .sct-maillage-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    color: #1B2A4A;
    text-align: center;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sct-tpl-service-city .sct-maillage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
}

.sct-tpl-service-city .sct-maillage-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f8fafc;
    color: #334155;
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    font-size: 0.87rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

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

.sct-tpl-service-city .sct-cta-final {
    padding: 5rem 0;
    background: linear-gradient(135deg, #E86A2E 0%, #C4551F 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-city .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.sct-tpl-service-city .sct-cta-final-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

.sct-tpl-service-city .sct-cta-final h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sct-tpl-service-city .sct-cta-final p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.sct-tpl-service-city .sct-cta-final .sct-btn-primary {
    background: #fff;
    color: #C4551F;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

.sct-tpl-service-city .sct-cta-final .sct-btn-outline {
    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.15);
    border-color: #fff;
}

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero { padding: 140px 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); gap: 1.8rem; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .sct-tpl-service-city .sct-usecase-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .sct-tpl-service-city .sct-usecase-image { max-width: 560px; margin: 0 auto; }
    .sct-tpl-service-city .sct-usecase-image img { height: 320px; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-city .sct-hero-subtitle { font-size: 0.98rem; }
    .sct-tpl-service-city .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-hero-card { padding: 1.5rem; }
    .sct-tpl-service-city .sct-hero-trust { flex-direction: column; gap: 0.6rem; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
    .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-intro-content p { font-size: 0.98rem; }
    .sct-tpl-service-city .sct-section-header { margin-bottom: 2.5rem; }
    .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-local-spec-box { padding: 1.8rem 1.4rem; }
    .sct-tpl-service-city .sct-faq-item summary { padding: 1.1rem 1.2rem; font-size: 0.96rem; }
    .sct-tpl-service-city .sct-faq-answer { padding: 0 1.2rem 1.2rem; }
    .sct-tpl-service-city .sct-intro-section,
    .sct-tpl-service-city .sct-services-section,
    .sct-tpl-service-city .sct-processus-section,
    .sct-tpl-service-city .sct-why-section,
    .sct-tpl-service-city .sct-zones-section,
    .sct-tpl-service-city .sct-usecase-section,
    .sct-tpl-service-city .sct-engagements-section,
    .sct-tpl-service-city .sct-faq-section,
    .sct-tpl-service-city .sct-cta-final { padding: 3.5rem 0; }
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_1_1774043506_69bdc17299fda.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_3_1774043546_69bdc19ad0524.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_2_1774043527_69bdc1876ef7f.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_6_1774043608_69bdc1d8c671f.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_3_1774043546_69bdc19ad0524.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_1_1774043506_69bdc17299fda.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_4_1774043568_69bdc1b0d037b.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_4_1774043568_69bdc1b0d037b.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_5_1774043588_69bdc1c453ee8.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_3_1774043546_69bdc19ad0524.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_6_1774043608_69bdc1d8c671f.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_5_1774043588_69bdc1c453ee8.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_4_1774043568_69bdc1b0d037b.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/service_5_1774043588_69bdc1c453ee8.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(15, 26, 46, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(15, 26, 46, 0.95);
    padding: 0.6rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-cta {
    display: none;
    background: var(--secondary);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05em !important;
    gap: 10px;
    align-items: center;
}

.page-hero {
    position: relative;
    padding: 10rem 0 7rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(232,106,46,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232,106,46,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 80px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 106, 46, 0.15);
    border: 1px solid rgba(232, 106, 46, 0.4);
    color: var(--secondary-light);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.05;
}

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

.page-hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.sitemap-section { padding: 5rem 0 6rem; background: var(--white); }

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

.sitemap-block { margin-bottom: 4rem; }

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

.sitemap-block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--slate-200);
}

.sitemap-block-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 18px rgba(232,106,46,0.35);
    flex-shrink: 0;
}

.sitemap-block-title {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    color: var(--primary);
    font-weight: 700;
}

.sitemap-block-title small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--slate-500);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 0.25rem;
}

.chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1.15rem;
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    color: var(--slate-700);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}

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

.chip:hover {
    border-color: var(--secondary);
    color: var(--primary);
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(27,42,74,0.08);
}

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

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

.sub-block {
    background: var(--white);
    border-radius: 14px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary);
}

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

.sub-block-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.05rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sub-block-title i { color: var(--secondary); }

.chip-city {
    background: var(--slate-50);
    border-color: var(--slate-200);
    font-size: 0.85rem;
    padding: 0.55rem 1rem;
}

.chip-city:hover { background: var(--white); }

.chip-featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-color: transparent;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
}

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

.chip-featured:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    border-color: transparent;
}

.chip-zone {
    background: rgba(232,106,46,0.08);
    border-color: rgba(232,106,46,0.25);
    color: var(--primary);
    font-weight: 600;
}

.chip-zone i { color: var(--secondary); }

.chip-zone:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

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

.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
}

.footer-brand .logo-text { color: var(--white); margin-bottom: 1rem; font-size: 1.4rem; }

.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links a { font-size: 0.9rem; transition: color 0.3s ease; }

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

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

.footer-contact-item i { color: var(--secondary); width: 20px; flex-shrink: 0; }

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

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

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

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

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .nav-desktop { display: flex; }
    .nav-cta { display: inline-flex; }
    .burger { display: none; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr; }
}

@media (max-width: 600px) {
    .sitemap-block-header { flex-wrap: wrap; }
    .sub-block { padding: 1.25rem; }
    .chip { font-size: 0.85rem; padding: 0.6rem 1rem; }
}