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

@media (max-width: 768px) {
  .menu-toggle { display: flex !important; cursor: pointer; }

  
  
  .menu-check:checked ~ #nav {
    right: 0 !important;
  }
  
  header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  
  

  
  

  
  

  
  .menu-check:checked ~ .menu-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
  .menu-check:checked ~ .menu-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .menu-check:checked ~ .menu-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
}

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

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

:root {
            --primary: #1B2A4A;
            --primary-light: #2a3f6b;
            --primary-dark: #111c33;
            --secondary: #D4782F;
            --secondary-light: #e89a5a;
            --secondary-dark: #b5621f;
            --text: #2d2d2d;
            --text-light: #6b7280;
            --bg: #f8f7f5;
            --bg-alt: #efeee9;
            --white: #ffffff;
        }

html { scroll-behavior: smooth; }

body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            background: var(--bg);
            line-height: 1.6;
            overflow-x: hidden;
        }

header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(27, 42, 74, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: all 0.3s ease;
            border-bottom: 2px solid var(--secondary);
        }

header.scrolled {
            background: rgba(27, 42, 74, 0.98);
            box-shadow: 0 4px 30px rgba(0,0,0,0.3);
        }

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

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

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

.logo-text {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--white);
            letter-spacing: -0.02em;
        }

.logo-text span {
            color: var(--secondary);
        }

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

nav a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 8px 14px;
            border-radius: 6px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

nav a:hover, nav a.active {
            color: var(--white);
            background: rgba(212, 120, 47, 0.2);
        }

.nav-cta {
            background: var(--secondary) !important;
            color: var(--white) !important;
            padding: 10px 20px !important;
            border-radius: 8px !important;
            font-weight: 700 !important;
        }

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

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

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

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

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

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

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

.hero-bg {
            position: absolute;
            inset: 0;
            background: url('https://webflash.pro/storage/generated/86/hero_1770943658_698e74aa155fb.webp') center/cover no-repeat;
            transform: scale(1.05);
            transition: transform 8s ease;
        }

.hero.visible .hero-bg {
            transform: scale(1);
        }

.hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(27,42,74,0.92) 0%, rgba(27,42,74,0.6) 50%, rgba(212,120,47,0.3) 100%);
        }

.hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 120px 24px 80px;
            text-align: center;
        }

.hero-badge {
            display: inline-block;
            background: rgba(212,120,47,0.2);
            border: 1px solid rgba(212,120,47,0.4);
            color: var(--secondary-light);
            font-size: 0.8rem;
            font-weight: 700;
            padding: 8px 20px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 24px;
            backdrop-filter: blur(8px);
        }

.hero h1 {
            font-size: clamp(2.2rem, 5vw, 4rem);
            font-weight: 900;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: -0.02em;
        }

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

.hero-subtitle {
            font-family: 'Lora', serif;
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: rgba(255,255,255,0.8);
            margin-bottom: 40px;
            font-style: italic;
            line-height: 1.5;
        }

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

.btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            font-size: 0.95rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            border: none;
            cursor: pointer;
        }

.btn-primary {
            background: var(--secondary);
            color: var(--white);
            box-shadow: 0 4px 20px rgba(212,120,47,0.4);
        }

.btn-primary:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(212,120,47,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);
        }

.separator-chevron {
            width: 100%;
            height: 60px;
            position: relative;
            margin-top: -60px;
            z-index: 3;
        }

.separator-chevron svg {
            width: 100%;
            height: 100%;
            display: block;
        }

.counters {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
            padding: 50px 24px;
            position: relative;
            z-index: 4;
        }

.counters-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            text-align: center;
        }

.counter-item .counter-number {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 900;
            color: var(--white);
            line-height: 1;
        }

.counter-item .counter-label {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.85);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-top: 8px;
        }

section {
            padding: 100px 24px;
        }

.section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

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

.section-header .label {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 12px;
        }

.section-header h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 900;
            color: var(--primary);
            line-height: 1.15;
            margin-bottom: 16px;
        }

.section-header .underline {
            width: 70px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
            margin: 0 auto;
            border-radius: 2px;
        }

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

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

.service-card {
            flex: 0 1 360px;
            max-width: 380px;
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            position: relative;
        }

.service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

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

.service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(27,42,74,0.12);
        }

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

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

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

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

.service-card-body h3 {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 12px;
            line-height: 1.3;
        }

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

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

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

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

.about-image-wrap img {
            width: 100%;
            border-radius: 16px;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
            box-shadow: 0 20px 60px rgba(27,42,74,0.15);
        }

.about-image-accent {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
            border-radius: 16px;
            z-index: -1;
        }

.about-text .label {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 12px;
        }

.about-text h2 {
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.2;
        }

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

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

.about-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary);
        }

.about-feature i {
            color: var(--secondary);
            font-size: 1.1rem;
        }

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

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

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

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

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

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

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

.gallery-item-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(27,42,74,0.8) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }

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

.gallery-item-overlay span {
            color: var(--white);
            font-size: 0.85rem;
            font-weight: 600;
        }

.gallery-item-overlay i {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--white);
            font-size: 1.5rem;
            opacity: 0.8;
        }

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

.lightbox.active { display: flex; }

.lightbox img {
            max-width: 90%;
            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: 20px;
            right: 30px;
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            transition: background 0.3s ease;
        }

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

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

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

.lightbox-prev { left: 20px; }

.lightbox-next { right: 20px; }

.zone {
            background: var(--bg-alt);
        }

.zone-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-top: 40px;
        }

.zone-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            padding: 16px 28px;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.06);
            font-weight: 700;
            color: var(--primary);
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

.zone-badge:hover {
            border-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(212,120,47,0.15);
        }

.zone-badge i {
            color: var(--secondary);
            font-size: 1.2rem;
        }

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

.horaires-card {
            max-width: 600px;
            margin: 0 auto;
            background: var(--primary);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(27,42,74,0.2);
        }

.horaires-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

.horaires-row:last-child { border: none; }

.horaires-day {
            font-weight: 700;
            color: var(--white);
            font-size: 0.95rem;
        }

.horaires-time {
            font-weight: 600;
            color: var(--secondary-light);
            font-size: 0.9rem;
        }

.horaires-closed {
            color: rgba(255,255,255,0.4);
            font-style: italic;
        }

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

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

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

.contact-info-card {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--white);
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
            transition: all 0.3s ease;
        }

.contact-info-card:hover {
            transform: translateX(4px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

.contact-info-card .icon-wrap {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.1rem;
            flex-shrink: 0;
        }

.contact-info-card .info-text h4 {
            font-size: 0.8rem;
            text-transform: uppercase;
            color: var(--text-light);
            letter-spacing: 0.06em;
            margin-bottom: 4px;
        }

.contact-info-card .info-text p {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--primary);
        }

.contact-info-card .info-text a {
            color: var(--primary);
            text-decoration: none;
        }

.contact-info-card .info-text a:hover {
            color: var(--secondary);
        }

.contact-map {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

.contact-map iframe {
            display: block;
        }

.contact-form-wrap {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
        }

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

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

.form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

.form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            color: var(--text);
            transition: all 0.3s ease;
            background: var(--bg);
        }

.form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(212,120,47,0.15);
            background: var(--white);
        }

.form-group textarea { resize: vertical; }

.contact-form-wrap button[type="submit"] {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            cursor: pointer;
            transition: all 0.3s ease;
        }

.contact-form-wrap button[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(212,120,47,0.4);
        }

.contact-form-wrap button[type="submit"]:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

#formStatus p {
            margin-top: 16px;
            font-size: 0.9rem;
            font-weight: 600;
            padding: 12px;
            border-radius: 8px;
        }

footer {
            background: var(--primary-dark);
            color: rgba(255,255,255,0.7);
            padding: 60px 24px 30px;
        }

.footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

.footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

.footer-brand .logo-text {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

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

.footer-col h4 {
            color: var(--white);
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 16px;
        }

.footer-col a {
            display: block;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.85rem;
            padding: 4px 0;
            transition: color 0.3s ease;
        }

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

.footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 0.8rem;
        }

.footer-bottom a {
            color: var(--secondary-light);
            text-decoration: none;
        }

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

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

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

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

.modal-content h2 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
        }

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

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

.modal-close:hover { background: var(--bg-alt); }

.floating-cta {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
            background: var(--secondary);
            color: var(--white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(212,120,47,0.5);
            animation: pulse-cta 2s infinite;
            transition: all 0.3s ease;
        }

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

.floating-cta.visible { display: flex; }

@keyframes pulse-cta {
            0%, 100% { box-shadow: 0 4px 20px rgba(212,120,47,0.5); }
            50% { box-shadow: 0 4px 40px rgba(212,120,47,0.8); }
        }

.fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

.fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

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

            .about-image-wrap {
                max-width: 500px;
                margin: 0 auto;
            }

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

@media (max-width: 768px) {
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--primary-dark);
                flex-direction: column;
                justify-content: center;
                padding: 40px;
                transition: right 0.3s ease;
                box-shadow: -4px 0 30px rgba(0,0,0,0.3);
            }

            nav.active { right: 0; }

            nav a {
                font-size: 1rem;
                padding: 14px 20px;
                width: 100%;
                text-align: center;
            }

            .hamburger { display: flex; }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

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

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

            .footer-top {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            section { padding: 70px 20px; }
        }

@media (max-width: 640px) {
            .service-card { flex: 0 1 100%; max-width: 100%; }

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

            .hero-btns { flex-direction: column; align-items: center; }

            .about-features { grid-template-columns: 1fr; }

            .zone-badges { gap: 10px; }
            .zone-badge { padding: 12px 20px; font-size: 0.85rem; }

            .horaires-card { padding: 28px 20px; }

            .contact-form-wrap { padding: 28px 20px; }
        }

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

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

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

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

.sct-tpl-service-city { color: #2d2d2d; font-family: 'Montserrat', sans-serif; }

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 130px 0 80px;
    background: linear-gradient(135deg, #1B2A4A 0%, #2a3f6b 60%, #D4782F 130%);
    color: #fff;
    overflow: hidden;
}

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

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

.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: 22px;
    color: rgba(255,255,255,0.75);
}

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

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

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

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

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

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212,120,47,0.2);
    border: 1px solid rgba(212,120,47,0.4);
    color: #e89a5a;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sct-tpl-service-city .sct-hero-text h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.sct-tpl-service-city .sct-hero-text h1 strong { color: #e89a5a; }

.sct-tpl-service-city .sct-hero-subtitle {
    font-family: 'Lora', serif;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    font-style: italic;
    color: rgba(255,255,255,0.88);
    margin-bottom: 30px;
    line-height: 1.55;
}

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

.sct-tpl-service-city .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sct-tpl-service-city .sct-btn-primary {
    background: #D4782F;
    color: #fff;
    box-shadow: 0 4px 20px rgba(212,120,47,0.45);
}

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

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

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

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

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

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

.sct-tpl-service-city .sct-hero-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.sct-tpl-service-city .sct-hero-card h2 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 2px solid #D4782F;
    padding-bottom: 12px;
}

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

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

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

.sct-tpl-service-city .sct-hero-card-row .sct-row-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2px;
}

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

.sct-tpl-service-city .sct-hero-card-row a {
    color: #fff;
    text-decoration: none;
}

.sct-tpl-service-city .sct-hero-card-row a:hover { color: #e89a5a; }

.sct-tpl-service-city .sct-hero-card-cta {
    display: block;
    margin-top: 20px;
    padding: 14px;
    background: #D4782F;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.sct-tpl-service-city .sct-stats-band {
    background: linear-gradient(135deg, #D4782F 0%, #b5621f 100%);
    padding: 50px 24px;
    color: #fff;
}

.sct-tpl-service-city .sct-stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

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

.sct-tpl-service-city .sct-stat-value {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 900;
    line-height: 1;
}

.sct-tpl-service-city .sct-stat-label {
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.9);
}

.sct-tpl-service-city .sct-intro-section {
    padding: 90px 24px;
    background: #fff;
}

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

.sct-tpl-service-city .sct-intro-section .sct-section-tag {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #D4782F;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    text-align: center;
}

.sct-tpl-service-city .sct-intro-section h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 900;
    color: #1B2A4A;
    text-align: center;
    margin-bottom: 36px;
    line-height: 1.2;
}

.sct-tpl-service-city .sct-intro-section p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-intro-section strong { color: #1B2A4A; }

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

.sct-tpl-service-city .sct-section-header .sct-section-tag {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #D4782F;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-section-header h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #1B2A4A;
    line-height: 1.2;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-section-header .sct-section-underline {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #D4782F, #e89a5a);
    margin: 0 auto;
    border-radius: 2px;
}

.sct-tpl-service-city .sct-section-header p {
    max-width: 700px;
    margin: 18px auto 0;
    color: #6b7280;
    font-size: 0.98rem;
    line-height: 1.7;
}

.sct-tpl-service-city .sct-services-section {
    padding: 90px 24px;
    background: #f8f7f5;
}

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

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

.sct-tpl-service-city .sct-service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
}

.sct-tpl-service-city .sct-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4782F, #e89a5a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(27,42,74,0.12);
}

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

.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: 26px 24px; }

.sct-tpl-service-city .sct-service-card-body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1B2A4A;
    margin-bottom: 12px;
    line-height: 1.3;
}

.sct-tpl-service-city .sct-service-card-body p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.65;
}

.sct-tpl-service-city .sct-processus-section {
    padding: 90px 24px;
    background: #fff;
}

.sct-tpl-service-city .sct-processus-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
}

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

.sct-tpl-service-city .sct-processus-step {
    text-align: center;
    padding: 24px 18px;
    background: #f8f7f5;
    border-radius: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.sct-tpl-service-city .sct-processus-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27,42,74,0.08);
    background: #fff;
}

.sct-tpl-service-city .sct-step-num {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, #D4782F, #e89a5a);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
}

.sct-tpl-service-city .sct-step-icon {
    color: #1B2A4A;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-processus-step h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1B2A4A;
    margin-bottom: 8px;
    line-height: 1.3;
}

.sct-tpl-service-city .sct-processus-step p {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.5;
}

.sct-tpl-service-city .sct-why-section {
    padding: 90px 24px;
    background: #efeee9;
}

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

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

.sct-tpl-service-city .sct-why-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-top: 4px solid #D4782F;
}

.sct-tpl-service-city .sct-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(27,42,74,0.1);
}

.sct-tpl-service-city .sct-why-card i {
    font-size: 2rem;
    color: #D4782F;
    margin-bottom: 16px;
}

.sct-tpl-service-city .sct-why-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #1B2A4A;
    margin-bottom: 10px;
    line-height: 1.3;
}

.sct-tpl-service-city .sct-why-card p {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.6;
}

.sct-tpl-service-city .sct-zones-section {
    padding: 90px 24px;
    background: #fff;
}

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

.sct-tpl-service-city .sct-zone-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f7f5;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1B2A4A;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-zone-chip:hover {
    border-color: #D4782F;
    background: #fff;
    transform: translateY(-2px);
}

.sct-tpl-service-city .sct-zone-chip i { color: #D4782F; }

.sct-tpl-service-city .sct-usecase-section {
    padding: 90px 24px;
    background: #f8f7f5;
}

.sct-tpl-service-city .sct-usecase-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

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

.sct-tpl-service-city .sct-usecase-image img {
    width: 100%;
    border-radius: 16px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    box-shadow: 0 20px 60px rgba(27,42,74,0.15);
}

.sct-tpl-service-city .sct-usecase-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #D4782F, #e89a5a);
    border-radius: 14px;
    z-index: -1;
}

.sct-tpl-service-city .sct-usecase-text .sct-section-tag {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #D4782F;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-usecase-text h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 900;
    color: #1B2A4A;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sct-tpl-service-city .sct-usecase-text p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-usecase-text strong { color: #1B2A4A; }

.sct-tpl-service-city .sct-engagements-section {
    padding: 90px 24px;
    background: #1B2A4A;
    color: #fff;
}

.sct-tpl-service-city .sct-engagements-section .sct-section-header h2 { color: #fff; }

.sct-tpl-service-city .sct-engagements-section .sct-section-tag { color: #e89a5a; }

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

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

.sct-tpl-service-city .sct-engagement-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 32px 26px;
    text-align: center;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-engagement-card:hover {
    transform: translateY(-4px);
    border-color: #D4782F;
    background: rgba(255,255,255,0.08);
}

.sct-tpl-service-city .sct-engagement-card i {
    font-size: 2.2rem;
    color: #e89a5a;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-engagement-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

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

.sct-tpl-service-city .sct-local-spec-inner {
    max-width: 880px;
    margin: 0 auto;
    background: #f8f7f5;
    border-left: 5px solid #D4782F;
    border-radius: 12px;
    padding: 36px 36px;
}

.sct-tpl-service-city .sct-local-spec-inner h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1B2A4A;
    margin-bottom: 16px;
}

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

.sct-tpl-service-city .sct-faq-section {
    padding: 90px 24px;
    background: #efeee9;
}

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

.sct-tpl-service-city .sct-faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    overflow: hidden;
    border-left: 4px solid #D4782F;
}

.sct-tpl-service-city .sct-faq-item summary {
    padding: 22px 26px;
    font-size: 1rem;
    font-weight: 700;
    color: #1B2A4A;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

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

.sct-tpl-service-city .sct-faq-item summary::after {
    content: '+';
    color: #D4782F;
    font-size: 1.6rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.sct-tpl-service-city .sct-faq-item .sct-faq-answer {
    padding: 0 26px 22px;
    font-size: 0.92rem;
    color: #4b5563;
    line-height: 1.7;
}

.sct-tpl-service-city .sct-maillage-section {
    padding: 70px 24px;
    background: #fff;
    border-top: 1px solid #efeee9;
}

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

.sct-tpl-service-city .sct-maillage-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.sct-tpl-service-city .sct-maillage-inner h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1B2A4A;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

.sct-tpl-service-city .sct-maillage-list a {
    display: inline-block;
    padding: 10px 20px;
    background: #f8f7f5;
    color: #1B2A4A;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

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

.sct-tpl-service-city .sct-cta-final {
    padding: 80px 24px;
    background: linear-gradient(135deg, #D4782F 0%, #b5621f 100%);
    color: #fff;
    text-align: center;
}

.sct-tpl-service-city .sct-cta-final-inner { max-width: 800px; margin: 0 auto; }

.sct-tpl-service-city .sct-cta-final h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
    text-transform: uppercase;
}

.sct-tpl-service-city .sct-cta-final p {
    font-size: 1rem;
    color: rgba(255,255,255,0.92);
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.sct-tpl-service-city .sct-cta-final .sct-btn-primary {
    background: #1B2A4A;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.sct-tpl-service-city .sct-cta-final .sct-btn-primary:hover { background: #111c33; }

.sct-tpl-service-city .sct-cta-final .sct-btn-outline { border-color: #fff; }

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-city .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: repeat(3, 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-left: auto; margin-right: auto; }
    .sct-tpl-service-city .sct-usecase-grid { grid-template-columns: 1fr; gap: 40px; }
}

@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-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-hero-card { padding: 26px 22px; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .sct-tpl-service-city .sct-intro-section,
    .sct-tpl-service-city .sct-services-section,
    .sct-tpl-service-city .sct-processus-section,
    .sct-tpl-service-city .sct-why-section,
    .sct-tpl-service-city .sct-zones-section,
    .sct-tpl-service-city .sct-usecase-section,
    .sct-tpl-service-city .sct-engagements-section,
    .sct-tpl-service-city .sct-faq-section,
    .sct-tpl-service-city .sct-cta-final { padding: 70px 20px; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; gap: 22px; }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; gap: 16px; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; gap: 18px; }
    .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-inner { padding: 26px 22px; }
    .sct-tpl-service-city .sct-faq-item summary { padding: 18px 20px; font-size: 0.95rem; }
    .sct-tpl-service-city .sct-faq-item .sct-faq-answer { padding: 0 20px 18px; }
    .sct-tpl-service-city .sct-usecase-image::after { display: none; }
}

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

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

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

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

.sct-tpl-service-hub { font-family: 'Montserrat', sans-serif; color: #2d2d2d; background: #f8f7f5; }

.sct-tpl-service-hub .sct-breadcrumb-wrap { background: #efeee9; padding: 100px 0 20px; }

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

.sct-tpl-service-hub .sct-breadcrumb a { color: #1B2A4A; text-decoration: none; font-weight: 600; }

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

.sct-tpl-service-hub .sct-breadcrumb span { color: #D4782F; }

.sct-tpl-service-hub .sct-breadcrumb i { font-size: 0.65rem; color: #9ca3af; }

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 60px 0 90px;
    background: linear-gradient(135deg, #1B2A4A 0%, #2a3f6b 60%, rgba(212,120,47,0.85) 100%), url('/images/service_1_1770943678_698e74be1cb90.webp') center/cover no-repeat;
    background-blend-mode: multiply;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27,42,74,0.6) 0%, rgba(27,42,74,0.3) 100%);
    z-index: 1;
}

.sct-tpl-service-hub .sct-hero-grid {
    position: relative;
    z-index: 2;
    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-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,120,47,0.25);
    border: 1px solid rgba(212,120,47,0.5);
    color: #ffd9b8;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.sct-tpl-service-hub .sct-hero-text h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

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

.sct-tpl-service-hub .sct-hero-subtitle {
    font-family: 'Lora', serif;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    font-style: italic;
    line-height: 1.6;
}

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

.sct-tpl-service-hub .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
}

.sct-tpl-service-hub .sct-btn-primary {
    background: #D4782F;
    color: #fff;
    box-shadow: 0 4px 20px rgba(212,120,47,0.4);
}

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: #b5621f;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,120,47,0.5);
}

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

.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-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 16px;
    padding: 32px;
}

.sct-tpl-service-hub .sct-hero-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

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

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

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

.sct-tpl-service-hub .sct-stats-band {
    background: linear-gradient(135deg, #D4782F 0%, #b5621f 100%);
    padding: 50px 0;
}

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

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

.sct-tpl-service-hub .sct-stat-value {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.sct-tpl-service-hub .sct-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 8px;
}

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

.sct-tpl-service-hub .sct-section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: #D4782F;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    display: block;
}

.sct-tpl-service-hub .sct-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: #1B2A4A;
    line-height: 1.2;
    margin-bottom: 20px;
}

.sct-tpl-service-hub .sct-section-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 40px;
    font-style: italic;
}

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

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

.sct-tpl-service-hub .sct-services-section { padding: 90px 0; background: #f8f7f5; }

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

.sct-tpl-service-hub .sct-section-underline {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #D4782F, #e89a5a);
    margin: 16px auto 0;
    border-radius: 2px;
}

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

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

.sct-tpl-service-hub .sct-service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
}

.sct-tpl-service-hub .sct-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4782F, #e89a5a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

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

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(27,42,74,0.12);
}

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

.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: 28px 24px; }

.sct-tpl-service-hub .sct-service-card-body h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1B2A4A;
    margin-bottom: 12px;
    line-height: 1.3;
}

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

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

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

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

.sct-tpl-service-hub .sct-processus-step {
    background: #f8f7f5;
    padding: 32px 22px;
    border-radius: 14px;
    position: relative;
    text-align: center;
    counter-increment: step;
    transition: all 0.3s ease;
    border-top: 4px solid #D4782F;
}

.sct-tpl-service-hub .sct-processus-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(27,42,74,0.08);
}

.sct-tpl-service-hub .sct-processus-step::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-size: 2.4rem;
    font-weight: 900;
    color: #D4782F;
    line-height: 1;
    margin-bottom: 16px;
}

.sct-tpl-service-hub .sct-processus-step h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #1B2A4A;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.sct-tpl-service-hub .sct-processus-step p {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.6;
}

.sct-tpl-service-hub .sct-why-section {
    padding: 90px 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: #e89a5a; }

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

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

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

.sct-tpl-service-hub .sct-why-card:hover {
    background: rgba(212,120,47,0.15);
    border-color: rgba(212,120,47,0.4);
    transform: translateY(-4px);
}

.sct-tpl-service-hub .sct-why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4782F, #e89a5a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.sct-tpl-service-hub .sct-why-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.sct-tpl-service-hub .sct-why-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

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

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

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

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

.sct-tpl-service-hub .sct-usecase-image-wrap img {
    width: 100%;
    border-radius: 16px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    box-shadow: 0 20px 60px rgba(27,42,74,0.15);
}

.sct-tpl-service-hub .sct-usecase-accent {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 120px; height: 120px;
    background: linear-gradient(135deg, #D4782F, #e89a5a);
    border-radius: 16px;
    z-index: -1;
}

.sct-tpl-service-hub .sct-usecase-text p {
    font-size: 0.98rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 16px;
}

.sct-tpl-service-hub .sct-usecase-text ul {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.sct-tpl-service-hub .sct-usecase-text ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #2d2d2d;
    font-weight: 600;
}

.sct-tpl-service-hub .sct-usecase-text ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #D4782F;
    font-size: 1rem;
    flex-shrink: 0;
}

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

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

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

.sct-tpl-service-hub .sct-engagement-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.sct-tpl-service-hub .sct-engagement-card:hover {
    transform: translateY(-6px);
    border-bottom-color: #D4782F;
    box-shadow: 0 12px 40px rgba(27,42,74,0.12);
}

.sct-tpl-service-hub .sct-engagement-icon {
    width: 72px; height: 72px;
    margin: 0 auto 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1B2A4A, #2a3f6b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4782F;
    font-size: 1.8rem;
}

.sct-tpl-service-hub .sct-engagement-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1B2A4A;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

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

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

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

.sct-tpl-service-hub .sct-faq-item {
    background: #f8f7f5;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid #efeee9;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-faq-item[open] {
    background: #fff;
    border-color: #D4782F;
    box-shadow: 0 4px 20px rgba(212,120,47,0.1);
}

.sct-tpl-service-hub .sct-faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    font-weight: 700;
    color: #1B2A4A;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    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.6rem;
    color: #D4782F;
    font-weight: 700;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.sct-tpl-service-hub .sct-faq-item-content {
    padding: 0 28px 24px;
    color: #6b7280;
    line-height: 1.8;
    font-size: 0.95rem;
}

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

.sct-tpl-service-hub .sct-maillage-section.sct-dark {
    background: #111c33;
}

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

.sct-tpl-service-hub .sct-maillage-section.sct-dark .sct-section-tag { color: #e89a5a; }

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

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

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

.sct-tpl-service-hub .sct-maillage-grid a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 10px;
    color: #1B2A4A;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #efeee9;
    overflow-wrap: anywhere;
}

.sct-tpl-service-hub .sct-maillage-grid a:hover {
    background: #D4782F;
    color: #fff;
    border-color: #D4782F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,120,47,0.25);
}

.sct-tpl-service-hub .sct-maillage-grid a i {
    color: #D4782F;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

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

.sct-tpl-service-hub .sct-maillage-section.sct-dark .sct-maillage-grid a {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
    color: #fff;
}

.sct-tpl-service-hub .sct-maillage-section.sct-dark .sct-maillage-grid a:hover {
    background: #D4782F;
    border-color: #D4782F;
}

.sct-tpl-service-hub .sct-cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #1B2A4A 0%, #D4782F 100%);
    text-align: center;
    color: #fff;
}

.sct-tpl-service-hub .sct-cta-final h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.sct-tpl-service-hub .sct-cta-final p {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

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

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

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

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero { padding: 40px 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: 24px; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 50px; }
    .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .sct-tpl-service-hub .sct-maillage-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 30px 0 50px; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .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: 24px; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .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-maillage-grid { grid-template-columns: repeat(2, 1fr); }
    .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-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 { padding: 60px 0; }
    .sct-tpl-service-hub .sct-section-header { margin-bottom: 40px; }
    .sct-tpl-service-hub .sct-usecase-image-wrap img { clip-path: none; }
    .sct-tpl-service-hub .sct-usecase-accent { display: none; }
}

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

.sct-tpl-zone { font-family: 'Montserrat', sans-serif; color: #2d2d2d; background: #f8f7f5; }

.sct-tpl-zone .sct-breadcrumb-wrap { background: #efeee9; padding: 100px 0 20px; }

.sct-tpl-zone .sct-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; max-width: 100%; overflow-wrap: anywhere; font-size: 0.85rem; color: #6b7280; }

.sct-tpl-zone .sct-breadcrumb a { color: #1B2A4A; text-decoration: none; font-weight: 600; transition: color 0.3s ease; }

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

.sct-tpl-zone .sct-breadcrumb .sct-current { color: #D4782F; font-weight: 700; }

.sct-tpl-zone .sct-breadcrumb i { font-size: 0.7rem; opacity: 0.5; }

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

.sct-tpl-zone .sct-hero::before { content: ''; position: absolute; inset: 0; background: url('/images/service_2_1770943700_698e74d4eb977.webp') center/cover no-repeat; opacity: 0.18; }

.sct-tpl-zone .sct-hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px; background: linear-gradient(to bottom right, transparent 49.5%, #f8f7f5 50%); }

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

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

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

.sct-tpl-zone .sct-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,120,47,0.2); border: 1px solid rgba(212,120,47,0.4); color: #e89a5a; font-size: 0.78rem; font-weight: 700; padding: 8px 18px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 22px; }

.sct-tpl-zone .sct-hero-text h1 { font-size: clamp(1.9rem, 4.5vw, 3.4rem); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 20px; text-transform: uppercase; letter-spacing: -0.01em; }

.sct-tpl-zone .sct-hero-text h1 span { color: #D4782F; display: block; }

.sct-tpl-zone .sct-hero-subtitle { font-family: 'Lora', serif; font-size: clamp(1rem, 1.7vw, 1.2rem); color: rgba(255,255,255,0.85); margin-bottom: 32px; font-style: italic; line-height: 1.6; }

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

.sct-tpl-zone .sct-btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 28px; font-size: 0.9rem; font-weight: 700; text-decoration: none; border-radius: 10px; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.04em; border: none; cursor: pointer; }

.sct-tpl-zone .sct-btn-primary { background: #D4782F; color: #fff; box-shadow: 0 4px 20px rgba(212,120,47,0.4); }

.sct-tpl-zone .sct-btn-primary:hover { background: #b5621f; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,120,47,0.5); }

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

.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-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.15); border-radius: 18px; padding: 30px; }

.sct-tpl-zone .sct-hero-card h3 { color: #fff; font-size: 1.1rem; font-weight: 800; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }

.sct-tpl-zone .sct-hero-card h3 i { color: #D4782F; }

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

.sct-tpl-zone .sct-hero-card-list li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); font-size: 0.9rem; font-weight: 600; }

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

.sct-tpl-zone .sct-hero-card-list li i { color: #D4782F; font-size: 0.95rem; width: 22px; }

.sct-tpl-zone .sct-stats-band { background: linear-gradient(135deg, #D4782F 0%, #b5621f 100%); padding: 50px 0; position: relative; z-index: 4; }

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

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

.sct-tpl-zone .sct-stat-item .sct-stat-value { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: #fff; line-height: 1; }

.sct-tpl-zone .sct-stat-item .sct-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.9); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 8px; }

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

.sct-tpl-zone .sct-section-header { text-align: center; margin-bottom: 55px; max-width: 800px; margin-left: auto; margin-right: auto; }

.sct-tpl-zone .sct-section-tag { font-size: 0.78rem; font-weight: 700; color: #D4782F; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; }

.sct-tpl-zone .sct-section-title { font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 900; color: #1B2A4A; line-height: 1.18; margin-bottom: 16px; }

.sct-tpl-zone .sct-section-underline { width: 70px; height: 4px; background: linear-gradient(90deg, #D4782F, #e89a5a); margin: 0 auto 16px; border-radius: 2px; }

.sct-tpl-zone .sct-section-subtitle { font-size: 1rem; color: #6b7280; line-height: 1.6; }

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

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

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

.sct-tpl-zone .sct-intro-image { position: relative; }

.sct-tpl-zone .sct-intro-image img { width: 100%; border-radius: 16px; clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%); box-shadow: 0 20px 60px rgba(27,42,74,0.15); }

.sct-tpl-zone .sct-intro-image::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 120px; height: 120px; background: linear-gradient(135deg, #D4782F, #e89a5a); border-radius: 16px; z-index: -1; }

.sct-tpl-zone .sct-intro-text .sct-section-tag { text-align: left; }

.sct-tpl-zone .sct-intro-text h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 900; color: #1B2A4A; margin-bottom: 18px; line-height: 1.2; }

.sct-tpl-zone .sct-intro-text p { font-size: 0.95rem; color: #6b7280; line-height: 1.75; margin-bottom: 14px; }

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

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

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

.sct-tpl-zone .sct-service-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.4s ease; position: relative; display: flex; flex-direction: column; }

.sct-tpl-zone .sct-service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #D4782F, #e89a5a); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left; }

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

.sct-tpl-zone .sct-service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(27,42,74,0.12); }

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

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

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

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

.sct-tpl-zone .sct-service-card-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, #1B2A4A, #2a3f6b); color: #D4782F; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 14px; }

.sct-tpl-zone .sct-service-card-body h3 { font-size: 1.1rem; font-weight: 800; color: #1B2A4A; margin-bottom: 10px; line-height: 1.3; }

.sct-tpl-zone .sct-service-card-body p { font-size: 0.88rem; color: #6b7280; line-height: 1.6; margin-bottom: 18px; flex: 1; }

.sct-tpl-zone .sct-service-card-link { display: inline-flex; align-items: center; gap: 8px; color: #D4782F; font-size: 0.85rem; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 0.04em; transition: gap 0.3s ease; }

.sct-tpl-zone .sct-service-card-link:hover { gap: 12px; color: #b5621f; }

.sct-tpl-zone .sct-zones-section { background: #efeee9; }

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

.sct-tpl-zone .sct-zone-badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; padding: 14px 24px; border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); font-weight: 700; color: #1B2A4A; font-size: 0.92rem; transition: all 0.3s ease; border: 2px solid transparent; }

.sct-tpl-zone .sct-zone-badge:hover { border-color: #D4782F; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(212,120,47,0.15); }

.sct-tpl-zone .sct-zone-badge i { color: #D4782F; font-size: 1rem; }

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

.sct-tpl-zone .sct-usecase-card { max-width: 1000px; margin: 0 auto; background: linear-gradient(135deg, #1B2A4A 0%, #2a3f6b 100%); border-radius: 20px; padding: 50px; color: #fff; position: relative; overflow: hidden; }

.sct-tpl-zone .sct-usecase-card::before { content: '\f3c5'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: -30px; right: -30px; font-size: 14rem; color: rgba(212,120,47,0.08); }

.sct-tpl-zone .sct-usecase-card .sct-section-tag { color: #e89a5a; text-align: left; position: relative; z-index: 2; }

.sct-tpl-zone .sct-usecase-card h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 900; margin-bottom: 20px; position: relative; z-index: 2; }

.sct-tpl-zone .sct-usecase-card p { font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,0.85); margin-bottom: 14px; position: relative; z-index: 2; }

.sct-tpl-zone .sct-usecase-card strong { color: #e89a5a; font-weight: 700; }

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

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

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

.sct-tpl-zone .sct-engagement-card { background: #fff; border-radius: 16px; padding: 36px 28px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.4s ease; border-bottom: 4px solid transparent; }

.sct-tpl-zone .sct-engagement-card:hover { transform: translateY(-6px); border-bottom-color: #D4782F; box-shadow: 0 12px 40px rgba(27,42,74,0.12); }

.sct-tpl-zone .sct-engagement-icon { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, #D4782F, #e89a5a); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 20px; box-shadow: 0 8px 24px rgba(212,120,47,0.3); }

.sct-tpl-zone .sct-engagement-card h3 { font-size: 1.15rem; font-weight: 800; color: #1B2A4A; margin-bottom: 12px; }

.sct-tpl-zone .sct-engagement-card p { font-size: 0.9rem; color: #6b7280; line-height: 1.65; }

.sct-tpl-zone .sct-local-spec { background: #efeee9; }

.sct-tpl-zone .sct-local-spec-card { max-width: 900px; margin: 0 auto; background: #fff; border-left: 5px solid #D4782F; border-radius: 12px; padding: 36px 38px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

.sct-tpl-zone .sct-local-spec-card h3 { display: flex; align-items: center; gap: 12px; font-size: 1.25rem; font-weight: 800; color: #1B2A4A; margin-bottom: 16px; }

.sct-tpl-zone .sct-local-spec-card h3 i { color: #D4782F; }

.sct-tpl-zone .sct-local-spec-card p { font-size: 0.95rem; color: #6b7280; line-height: 1.7; margin-bottom: 12px; }

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

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

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

.sct-tpl-zone .sct-faq-item { background: #f8f7f5; border-radius: 12px; margin-bottom: 14px; overflow: hidden; transition: all 0.3s ease; border: 1px solid transparent; }

.sct-tpl-zone .sct-faq-item[open] { background: #fff; border-color: #D4782F; box-shadow: 0 8px 24px rgba(212,120,47,0.12); }

.sct-tpl-zone .sct-faq-item summary { padding: 22px 28px; cursor: pointer; font-weight: 700; color: #1B2A4A; font-size: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 16px; list-style: none; }

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

.sct-tpl-zone .sct-faq-item summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #D4782F; font-size: 0.85rem; transition: transform 0.3s ease; flex-shrink: 0; }

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

.sct-tpl-zone .sct-faq-item .sct-faq-answer { padding: 0 28px 22px; color: #6b7280; font-size: 0.95rem; line-height: 1.7; }

.sct-tpl-zone .sct-maillage-section { background: #efeee9; }

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

.sct-tpl-zone .sct-maillage-link { display: inline-flex; align-items: center; gap: 8px; background: #fff; padding: 12px 22px; border-radius: 50px; text-decoration: none; color: #1B2A4A; font-weight: 600; font-size: 0.88rem; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: all 0.3s ease; border: 2px solid transparent; }

.sct-tpl-zone .sct-maillage-link:hover { background: #1B2A4A; color: #fff; border-color: #D4782F; transform: translateY(-2px); }

.sct-tpl-zone .sct-maillage-link i { color: #D4782F; font-size: 0.8rem; }

.sct-tpl-zone .sct-maillage-link:hover i { color: #e89a5a; }

.sct-tpl-zone .sct-cta-final { background: linear-gradient(135deg, #1B2A4A 0%, #2a3f6b 50%, #D4782F 200%); padding: 90px 0; position: relative; overflow: hidden; }

.sct-tpl-zone .sct-cta-final::before { content: ''; position: absolute; inset: 0; background: url('/images/service_3_1770943721_698e74e98de25.webp') center/cover no-repeat; opacity: 0.1; }

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

.sct-tpl-zone .sct-cta-final h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: #fff; margin-bottom: 20px; text-transform: uppercase; line-height: 1.15; }

.sct-tpl-zone .sct-cta-final h2 span { color: #D4782F; }

.sct-tpl-zone .sct-cta-final p { font-family: 'Lora', serif; font-size: 1.1rem; color: rgba(255,255,255,0.85); font-style: italic; margin-bottom: 35px; line-height: 1.6; }

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

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero { padding: 50px 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: 30px; }
    .sct-tpl-zone .sct-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .sct-tpl-zone .sct-section { padding: 70px 0; }
    .sct-tpl-zone .sct-usecase-card { padding: 40px 30px; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-breadcrumb-wrap { padding: 90px 0 16px; }
    .sct-tpl-zone .sct-hero-btns { flex-direction: column; }
    .sct-tpl-zone .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-zone .sct-hero-card { padding: 24px; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
    .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-section { padding: 60px 0; }
    .sct-tpl-zone .sct-usecase-card { padding: 32px 22px; }
    .sct-tpl-zone .sct-local-spec-card { padding: 28px 24px; }
    .sct-tpl-zone .sct-faq-item summary { padding: 18px 22px; font-size: 0.95rem; }
    .sct-tpl-zone .sct-faq-item .sct-faq-answer { padding: 0 22px 18px; }
}

.sct-tpl-zone .sct-hero::before { content: ''; position: absolute; inset: 0; background: url('/images/service_1_1770943678_698e74be1cb90.webp') center/cover no-repeat; opacity: 0.18; }

.sct-tpl-zone .sct-cta-final::before { content: ''; position: absolute; inset: 0; background: url('/images/service_2_1770943700_698e74d4eb977.webp') center/cover no-repeat; opacity: 0.1; }

.sct-tpl-zone .sct-cta-final::before { content: ''; position: absolute; inset: 0; background: url('/images/service_1_1770943678_698e74be1cb90.webp') center/cover no-repeat; opacity: 0.1; }

.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 72px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://webflash.pro/storage/generated/86/hero_1770943658_698e74aa155fb.webp') center/cover no-repeat;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,42,74,0.94) 0%, rgba(27,42,74,0.75) 50%, rgba(212,120,47,0.45) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 80px 24px 60px;
    text-align: center;
}

.page-hero-badge {
    display: inline-block;
    background: rgba(212,120,47,0.2);
    border: 1px solid rgba(212,120,47,0.4);
    color: var(--secondary-light);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.page-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.page-hero-subtitle {
    font-family: 'Lora', serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    font-style: italic;
    line-height: 1.5;
}

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

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

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

.sitemap-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-header .label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

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

.category-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.category-header h2 i {
    color: var(--secondary);
    font-size: 0.9em;
}

.sitemap-section.dark .category-header h2 {
    color: var(--white);
}

.category-header .underline {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
    margin: 0 auto;
    border-radius: 2px;
}

.category-header p {
    margin-top: 18px;
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary);
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(27,42,74,0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.chip:hover {
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212,120,47,0.18);
    color: var(--primary);
}

.chip:hover i {
    transform: translateX(3px);
}

.sitemap-section.dark .chip {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
}

.sitemap-section.dark .chip:hover {
    background: rgba(212,120,47,0.15);
    border-color: var(--secondary);
}

.service-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.service-group {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-top: 4px solid var(--secondary);
    transition: all 0.4s ease;
}

.service-group:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(27,42,74,0.12);
}

.service-group-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-group-title i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.service-group-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mini-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg);
    color: var(--primary);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.mini-chip i {
    color: var(--secondary);
    font-size: 0.7rem;
}

.mini-chip:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

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

.home-chip-wrap {
    display: flex;
    justify-content: center;
}

.home-chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 8px 24px rgba(27,42,74,0.2);
    transition: all 0.3s ease;
}

.home-chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(27,42,74,0.3);
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

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

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

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

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

.footer-col h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: right 0.4s ease;
        padding: 80px 30px;
        border-left: 2px solid var(--secondary);
    }

    nav a {
        font-size: 1rem;
        padding: 12px 20px;
        width: 100%;
        text-align: center;
    }

    .hamburger { display: flex; }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .sitemap-section {
        padding: 60px 20px;
    }

    .service-groups {
        grid-template-columns: 1fr;
    }

    .page-hero {
        min-height: 40vh;
    }
}