.menu-check { display: none; }

.burger.menu-toggle { cursor: pointer; font-size:24px; }

.burger.menu-toggle .menu-icon-close { display: none; }

.burger.menu-toggle .menu-icon-open { display: block; }

.menu-check:checked ~ .container .burger.menu-toggle .menu-icon-open { display: none; }

.menu-check:checked ~ .container .burger.menu-toggle .menu-icon-close { display: block; }

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

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

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

:root {
            --primary: #0D47A1;
            --primary-light: #1565C0;
            --primary-dark: #0A3680;
            --secondary: #E6B700;
            --secondary-dark: #C89600;
            --white: #FFFFFF;
            --off-white: #F5F7FA;
            --gray-50: #F8FAFC;
            --gray-100: #EEF2F7;
            --gray-200: #E2E8F0;
            --gray-300: #CBD5E1;
            --gray-400: #94A3B8;
            --gray-500: #64748B;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-800: #1E293B;
            --gray-900: #0F172A;
            --gold: #F59E0B;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
            --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
            --radius: 12px;
            --radius-lg: 20px;
        }

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

body {
            font-family: 'Poppins', sans-serif;
            color: var(--gray-700);
            line-height: 1.7;
            background: var(--white);
            overflow-x: hidden;
        }

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

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

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

.top-bar {
            background: var(--primary-dark);
            color: var(--white);
            padding: 8px 0;
            font-size: 0.82rem;
            font-weight: 400;
            letter-spacing: 0.3px;
        }

.top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

.top-bar a {
            color: var(--white);
            opacity: 0.9;
        }

.top-bar a:hover {
            opacity: 1;
            color: var(--secondary);
        }

.top-bar-left {
            display: flex;
            gap: 20px;
            align-items: center;
        }

.top-bar-right {
            display: flex;
            gap: 15px;
            align-items: center;
        }

.top-bar i {
            margin-right: 6px;
            color: var(--secondary);
        }

.header {
            background: var(--white);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease;
        }

.header.scrolled {
            box-shadow: 0 2px 20px rgba(13,71,161,0.15);
        }

.header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 12px;
            padding-bottom: 12px;
        }

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

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

.logo-text {
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
            line-height: 1.1;
        }

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

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

.nav-desktop a {
            color: var(--gray-600);
            font-weight: 500;
            font-size: 0.88rem;
            padding: 8px 14px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

.nav-desktop a:hover {
            color: var(--primary);
            background: var(--gray-50);
        }

.btn-devis-nav {
            background: var(--secondary);
            color: var(--gray-900) !important;
            font-weight: 700 !important;
            padding: 10px 22px !important;
            border-radius: 50px !important;
            box-shadow: 0 4px 15px rgba(0,230,118,0.35);
            animation: pulseGreen 2s infinite;
        }

.btn-devis-nav:hover {
            background: var(--secondary-dark) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 183, 0, 0.45) !important;
        }

@keyframes pulseGreen {
            0%, 100% { box-shadow: 0 4px 15px rgba(230, 226, 0, 0.35); }
            50% { box-shadow: 0 4px 25px rgba(230, 162, 0, 0.55); }
        }

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

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

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

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

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

.nav-mobile {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(10px);
            z-index: 1050;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

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

.nav-mobile a {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--gray-700);
            padding: 12px 30px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

.nav-mobile a:hover {
            color: var(--primary);
            background: var(--gray-50);
        }

.hero {
            position: relative;
            min-height: 92vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--gray-900);
        }

.hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

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

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

.hero-overlay-left {
            background: linear-gradient(105deg, rgba(13,71,161,0.95) 0%, rgba(13,71,161,0.88) 40%, rgba(13,71,161,0.4) 65%, transparent 80%);
        }

.hero .container {
            position: relative;
            z-index: 3;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            min-height: 92vh;
            padding-top: 40px;
            padding-bottom: 40px;
        }

.hero-content {
            max-width: 580px;
        }

.hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0,230,118,0.15);
            border: 1px solid rgba(0,230,118,0.3);
            color: var(--secondary);
            font-size: 0.82rem;
            font-weight: 600;
            padding: 8px 18px;
            border-radius: 50px;
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
        }

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

.hero h1 {
            font-size: clamp(2.2rem, 5vw, 3.4rem);
            font-weight: 900;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 10px;
            letter-spacing: -1px;
        }

.hero h1 .highlight {
            color: var(--secondary);
            position: relative;
        }

.hero-subtitle {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.85);
            margin-bottom: 30px;
            line-height: 1.6;
            font-weight: 300;
        }

.hero-stats {
            display: flex;
            gap: 30px;
            margin-bottom: 35px;
        }

.hero-stat {
            text-align: center;
        }

.hero-stat-number {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--secondary);
            line-height: 1;
        }

.hero-stat-label {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.7);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 4px;
        }

.hero-ctas {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

.btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 14px 30px;
            border-radius: 50px;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }

.btn-primary {
            background: var(--secondary);
            color: var(--gray-900);
            box-shadow: 0 4px 20px rgba(0,230,118,0.4);
        }

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

.btn-blue {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 20px rgba(13,71,161,0.4);
        }

.btn-blue:hover {
            background: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(13,71,161,0.5);
        }

.hero-google-badge {
            margin-top: 30px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 12px 22px;
            border-radius: 60px;
            border: 1px solid rgba(255,255,255,0.15);
        }

.hero-google-badge .stars {
            display: flex;
            gap: 3px;
        }

.hero-google-badge .stars i {
            color: var(--gold);
            font-size: 0.85rem;
        }

.hero-google-badge span {
            color: rgba(255,255,255,0.9);
            font-size: 0.82rem;
            font-weight: 500;
        }

.trust-bar {
            background: var(--white);
            padding: 30px 0;
            border-bottom: 1px solid var(--gray-100);
            position: relative;
            z-index: 5;
        }

.trust-items {
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
        }

.trust-item {
            display: flex;
            align-items: center;
            gap: 14px;
        }

.trust-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

.trust-text strong {
            display: block;
            font-size: 0.9rem;
            color: var(--gray-800);
        }

.trust-text span {
            font-size: 0.78rem;
            color: var(--gray-400);
        }

.section {
            padding: 90px 0;
        }

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

.section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(13,71,161,0.08);
            color: var(--primary);
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 16px;
        }

.section-header h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

.section-header h2 span {
            color: var(--primary);
        }

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

.services {
            background: var(--off-white);
        }

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

.service-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            width: calc(33.333% - 19px);
            min-width: 280px;
            perspective: 1000px;
        }

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

.service-card-inner {
            position: relative;
            width: 100%;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            transform-style: preserve-3d;
        }

.service-card:hover .service-card-inner {
            transform: rotateY(180deg);
        }

.service-front, .service-back {
            backface-visibility: hidden;
        }

.service-front {
            position: relative;
        }

.service-back {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transform: rotateY(180deg);
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
            color: var(--white);
            text-align: center;
        }

.service-back i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            opacity: 0.9;
        }

.service-back h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

.service-back p {
            font-size: 0.88rem;
            opacity: 0.9;
            line-height: 1.6;
            margin-bottom: 20px;
        }

.service-back .btn-service {
            background: var(--secondary);
            color: var(--gray-900);
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

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

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

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

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

.service-img-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60%;
            background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
        }

.service-body {
            padding: 22px;
        }

.service-body h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--gray-800);
            margin-bottom: 8px;
            line-height: 1.3;
        }

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

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

.service-pill {
            background: var(--white);
            border: 2px solid var(--gray-200);
            padding: 14px 26px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--gray-700);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

.service-pill i {
            color: var(--primary);
        }

.service-pill:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(13,71,161,0.04);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

.devis-section {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            position: relative;
            overflow: hidden;
        }

.devis-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: rgba(0,230,118,0.08);
            border-radius: 50%;
        }

.devis-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.04);
            border-radius: 50%;
        }

.devis-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

.devis-left h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

.devis-left h2 span {
            color: var(--secondary);
        }

.devis-left p {
            color: rgba(255,255,255,0.85);
            font-size: 1.05rem;
            margin-bottom: 30px;
            line-height: 1.7;
        }

.devis-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

.devis-features li {
            display: flex;
            align-items: center;
            gap: 14px;
            color: rgba(255,255,255,0.9);
            font-weight: 500;
            font-size: 0.95rem;
        }

.devis-features li .check-circle {
            width: 32px;
            height: 32px;
            background: rgba(0,230,118,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

.devis-features li .check-circle i {
            color: var(--secondary);
            font-size: 0.85rem;
        }

.devis-form-wrap {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 40px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.3);
        }

.devis-form-wrap h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 6px;
            text-align: center;
        }

.devis-form-wrap .form-sub {
            text-align: center;
            font-size: 0.85rem;
            color: var(--gray-400);
            margin-bottom: 25px;
        }

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

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

.form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--gray-200);
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            color: var(--gray-700);
            background: var(--gray-50);
            transition: all 0.3s ease;
        }

.form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(13,71,161,0.1);
        }

.form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

.btn-submit {
            width: 100%;
            padding: 15px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

.btn-submit:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(13,71,161,0.35);
        }

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

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

.about-img-wrap img {
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            width: 100%;
            height: 450px;
            object-fit: cover;
        }

.about-img-wrap::before {
            content: '';
            position: absolute;
            top: -15px;
            left: -15px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--secondary);
            border-radius: var(--radius-lg);
            z-index: -1;
        }

.about-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(13,71,161,0.08);
            color: var(--primary);
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 16px;
        }

.about-text h2 {
            font-size: clamp(1.6rem, 3.5vw, 2.2rem);
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

.about-text h2 span {
            color: var(--primary);
        }

.about-text p {
            color: var(--gray-500);
            margin-bottom: 16px;
            font-size: 0.95rem;
        }

.about-checklist {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 24px;
        }

.about-checklist li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--gray-700);
        }

.about-checklist li i {
            color: var(--secondary-dark);
            font-size: 0.75rem;
        }

.avant-apres {
            background: var(--off-white);
        }

.aa-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

.aa-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
        }

.aa-card:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: var(--shadow-xl);
        }

.aa-card img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

.aa-label {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--primary);
            color: var(--white);
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 6px 14px;
            border-radius: 50px;
        }

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

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

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

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

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

.lightbox-prev { left: 20px; }

.lightbox-next { right: 20px; }

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

.testimonials-header-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 10px;
        }

.global-rating {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--gray-50);
            padding: 12px 24px;
            border-radius: 60px;
            border: 1px solid var(--gray-200);
        }

.global-rating .rating-num {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--gray-900);
        }

.global-rating .stars {
            display: flex;
            gap: 3px;
        }

.global-rating .stars i {
            color: var(--gold);
            font-size: 1rem;
        }

.global-rating span.txt {
            font-size: 0.82rem;
            color: var(--gray-400);
        }

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

.testimonial-card {
            background: var(--gray-50);
            border: 1px solid var(--gray-100);
            border-radius: var(--radius-lg);
            padding: 32px;
            transition: all 0.4s ease;
            position: relative;
        }

.testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

.testimonial-card .quote-icon {
            font-size: 2rem;
            color: var(--primary);
            opacity: 0.15;
            position: absolute;
            top: 20px;
            right: 25px;
        }

.testimonial-card .stars {
            display: flex;
            gap: 3px;
            margin-bottom: 16px;
        }

.testimonial-card .stars i {
            color: var(--gold);
            font-size: 0.9rem;
        }

.testimonial-card p {
            font-size: 0.95rem;
            color: var(--gray-600);
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 20px;
        }

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

.testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
        }

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

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

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

.horaires-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

.horaires-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-md);
        }

.horaires-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

.horaires-card h3 i {
            color: var(--primary);
        }

.horaire-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
            border-bottom: 1px solid var(--gray-100);
        }

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

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

.horaire-time {
            font-weight: 500;
            color: var(--primary);
            font-size: 0.9rem;
            background: rgba(13,71,161,0.06);
            padding: 5px 14px;
            border-radius: 50px;
        }

.horaire-row.today {
            background: rgba(13,71,161,0.04);
            margin: 0 -20px;
            padding: 14px 20px;
            border-radius: 10px;
        }

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

.horaire-row.today .horaire-time {
            background: var(--primary);
            color: var(--white);
        }

.horaires-info-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-md);
        }

.info-block {
            display: flex;
            gap: 16px;
            margin-bottom: 28px;
        }

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

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

.info-details h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--gray-800);
            margin-bottom: 4px;
        }

.info-details p, .info-details a {
            font-size: 0.88rem;
            color: var(--gray-500);
        }

.info-details a:hover {
            color: var(--primary);
        }

.zone-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 8px;
        }

.zone-tag {
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            padding: 5px 14px;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--gray-600);
        }

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

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

.contact-form-card {
            background: var(--gray-50);
            border-radius: var(--radius-lg);
            padding: 40px;
            border: 1px solid var(--gray-100);
        }

.contact-form-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 6px;
        }

.contact-form-card .form-desc {
            font-size: 0.85rem;
            color: var(--gray-400);
            margin-bottom: 25px;
        }

.map-wrap {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            height: 100%;
            min-height: 400px;
        }

.map-wrap iframe {
            width: 100%;
            height: 100%;
            min-height: 400px;
        }

.footer {
            background: var(--gray-900);
            color: rgba(255,255,255,0.7);
            padding: 60px 0 0;
        }

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

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

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

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

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

.footer-social a {
            width: 42px;
            height: 42px;
            background: rgba(255,255,255,0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.7);
            transition: all 0.3s ease;
        }

.footer-social a:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
        }

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

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

.footer-links li a {
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 0.7;
        }

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

.footer-links li a i {
            font-size: 0.65rem;
            color: var(--secondary);
        }

.footer-contact-info {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

.footer-contact-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

.footer-contact-item i {
            color: var(--secondary);
            margin-top: 3px;
            width: 16px;
        }

.footer-contact-item span {
            font-size: 0.85rem;
        }

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

.footer-bottom a {
            opacity: 0.7;
        }

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

.floating-cta {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 900;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

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

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

.float-btn-phone {
            background: var(--secondary-dark);
            animation: pulseGreen 2s infinite;
        }

.float-btn-up {
            background: var(--primary);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
        }

.float-btn-up.visible {
            opacity: 1;
            pointer-events: auto;
        }

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

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

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

.modal-box h2 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 20px;
        }

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

.modal-box strong {
            color: var(--gray-800);
        }

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

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

.fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
        }

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

.fade-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
        }

.fade-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

.fade-right {
            opacity: 0;
            transform: translateX(40px);
            transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
        }

.fade-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

@media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                min-height: auto;
                padding-top: 60px;
                padding-bottom: 60px;
            }

            .hero-overlay-left {
                background: linear-gradient(180deg, rgba(13,71,161,0.92) 0%, rgba(13,71,161,0.85) 100%);
            }

            .hero-content {
                max-width: 100%;
                text-align: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-ctas {
                justify-content: center;
            }

            .hero-google-badge {
                margin-left: auto;
                margin-right: auto;
            }

            .devis-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .devis-left {
                text-align: center;
            }

            .devis-features {
                align-items: center;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-img-wrap {
                order: -1;
            }

            .horaires-content {
                grid-template-columns: 1fr;
            }

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

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

@media (max-width: 768px) {
            .top-bar .container {
                justify-content: center;
            }

            .top-bar-left, .top-bar-right {
                gap: 12px;
            }

            .nav-desktop {
                display: none;
            }

            .burger {
                display: flex;
            }

            .hero {
                min-height: 80vh;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-stats {
                gap: 20px;
            }

            .hero-stat-number {
                font-size: 1.6rem;
            }

            .trust-items {
                gap: 25px;
            }

            .service-card {
                width: calc(50% - 14px);
                min-width: 240px;
            }

            .service-card:hover .service-card-inner {
                transform: none;
            }

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

            .section {
                padding: 60px 0;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

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

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

@media (max-width: 640px) {
            .top-bar {
                display: none;
            }

            .service-card {
                width: 100%;
            }

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

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

            .btn {
                width: 100%;
                justify-content: center;
            }

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

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

            .devis-form-wrap {
                padding: 25px;
            }

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

            .floating-cta {
                bottom: 15px;
                right: 15px;
            }
        }

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: #334155; font-family: 'Poppins', sans-serif; }

.sct-tpl-service-city a { text-decoration: none; color: inherit; }

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 60px 0 80px;
    background: linear-gradient(135deg, rgba(13,71,161,0.93) 0%, rgba(10,54,128,0.88) 100%), url('/images/service_2_1774105794_69beb4c2c24c5.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(230,183,0,0.08);
    border-radius: 50%;
}

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

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

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

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230,183,0,0.18);
    border: 1px solid rgba(230,183,0,0.35);
    color: #E6B700;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 50px;
}

.sct-tpl-service-city .sct-hero-text h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
    color: #fff;
}

.sct-tpl-service-city .sct-hero-text h1 .sct-highlight { color: #E6B700; }

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    margin-bottom: 30px;
    font-weight: 300;
}

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

.sct-tpl-service-city .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sct-tpl-service-city .sct-btn-primary {
    background: #E6B700;
    color: #0F172A;
    box-shadow: 0 4px 18px rgba(230,183,0,0.4);
}

.sct-tpl-service-city .sct-btn-primary:hover {
    background: #C89600;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230,183,0,0.5);
}

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

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

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

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

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

.sct-tpl-service-city .sct-hero-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    color: #334155;
}

.sct-tpl-service-city .sct-hero-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0D47A1;
    margin-bottom: 22px;
    text-align: center;
}

.sct-tpl-service-city .sct-hero-card-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.sct-tpl-service-city .sct-info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px;
    background: #F8FAFC;
    border-radius: 10px;
}

.sct-tpl-service-city .sct-info-row i {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0D47A1, #1565C0);
    color: #fff;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.sct-tpl-service-city .sct-info-row strong {
    display: block;
    font-size: 0.78rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    font-weight: 600;
}

.sct-tpl-service-city .sct-info-row span { font-size: 0.92rem; color: #1E293B; font-weight: 500; }

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

.sct-tpl-service-city .sct-stats-band {
    background: #fff;
    padding: 50px 0;
    border-bottom: 1px solid #EEF2F7;
}

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

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

.sct-tpl-service-city .sct-stat-item {
    text-align: center;
    padding: 20px;
}

.sct-tpl-service-city .sct-stat-value {
    font-size: 2.4rem;
    font-weight: 900;
    color: #0D47A1;
    line-height: 1;
    margin-bottom: 8px;
}

.sct-tpl-service-city .sct-stat-label {
    font-size: 0.85rem;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

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

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

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

.sct-tpl-service-city .sct-intro-content strong { color: #0D47A1; font-weight: 700; }

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

.sct-tpl-service-city .sct-section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.sct-tpl-service-city .sct-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13,71,161,0.08);
    color: #0D47A1;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.sct-tpl-service-city .sct-section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-section-title span { color: #0D47A1; }

.sct-tpl-service-city .sct-section-subtitle {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.7;
}

.sct-tpl-service-city .sct-services { background: #fff; }

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

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

.sct-tpl-service-city .sct-service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #EEF2F7;
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13,71,161,0.15);
}

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

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

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

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

.sct-tpl-service-city .sct-service-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 10px;
    line-height: 1.3;
}

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

.sct-tpl-service-city .sct-processus { background: #F8FAFC; }

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

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

.sct-tpl-service-city .sct-step {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
}

.sct-tpl-service-city .sct-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(13,71,161,0.12);
}

.sct-tpl-service-city .sct-step-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: #E6B700;
    color: #0F172A;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.95rem;
}

.sct-tpl-service-city .sct-step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0D47A1, #1565C0);
    border-radius: 14px;
    color: #fff;
    font-size: 1.4rem;
    margin: 12px auto 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sct-tpl-service-city .sct-step h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 8px;
}

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

.sct-tpl-service-city .sct-why { background: #fff; }

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

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

.sct-tpl-service-city .sct-why-card {
    background: linear-gradient(135deg, #F8FAFC, #fff);
    border: 1px solid #EEF2F7;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-why-card:hover {
    border-color: #0D47A1;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13,71,161,0.12);
}

.sct-tpl-service-city .sct-why-icon {
    width: 64px;
    height: 64px;
    background: rgba(13,71,161,0.1);
    color: #0D47A1;
    border-radius: 16px;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-why-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-why-card p {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.65;
}

.sct-tpl-service-city .sct-zones-section {
    padding: 80px 0;
    background: #F8FAFC;
}

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

.sct-tpl-service-city .sct-zones-list a, .sct-tpl-service-city .sct-zones-list span {
    background: #fff;
    border: 2px solid #E2E8F0;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #475569;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sct-tpl-service-city .sct-zones-list a:hover {
    border-color: #0D47A1;
    color: #0D47A1;
    background: rgba(13,71,161,0.04);
    transform: translateY(-2px);
}

.sct-tpl-service-city .sct-zones-list i { color: #0D47A1; font-size: 0.8rem; }

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

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

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

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

.sct-tpl-service-city .sct-usecase-img-wrap img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.sct-tpl-service-city .sct-usecase-img-wrap::before {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    width: 100%;
    height: 100%;
    border: 3px solid #E6B700;
    border-radius: 20px;
    z-index: -1;
}

.sct-tpl-service-city .sct-usecase-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 18px;
    line-height: 1.2;
}

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

.sct-tpl-service-city .sct-usecase-text strong { color: #0D47A1; }

.sct-tpl-service-city .sct-engagements { background: #F8FAFC; }

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

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

.sct-tpl-service-city .sct-engagement-card {
    background: #fff;
    border-radius: 16px;
    padding: 34px 28px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    border-top: 4px solid #E6B700;
    transition: all 0.3s ease;
}

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

.sct-tpl-service-city .sct-engagement-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0D47A1, #1565C0);
    color: #fff;
    border-radius: 14px;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-engagement-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 10px;
}

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

.sct-tpl-service-city .sct-local-spec {
    padding: 70px 0;
    background: linear-gradient(135deg, #0D47A1, #0A3680);
    color: #fff;
}

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

.sct-tpl-service-city .sct-local-spec h3 {
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    font-weight: 800;
    margin-bottom: 18px;
    color: #E6B700;
}

.sct-tpl-service-city .sct-local-spec p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

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

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

.sct-tpl-service-city .sct-faq-item {
    background: #F8FAFC;
    border: 1px solid #EEF2F7;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

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

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

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

.sct-tpl-service-city .sct-faq-item[open] {
    background: #fff;
    border-color: #0D47A1;
    box-shadow: 0 8px 25px rgba(13,71,161,0.08);
}

.sct-tpl-service-city .sct-faq-item .sct-faq-content {
    padding: 0 26px 22px;
    color: #475569;
    font-size: 0.94rem;
    line-height: 1.75;
}

.sct-tpl-service-city .sct-maillage-section {
    padding: 60px 0;
    background: #F8FAFC;
    border-top: 1px solid #EEF2F7;
}

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

.sct-tpl-service-city .sct-maillage-section h3 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 26px;
}

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

.sct-tpl-service-city .sct-maillage-list a {
    background: #fff;
    border: 1px solid #E2E8F0;
    color: #475569;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

.sct-tpl-service-city .sct-cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(230,183,0,0.1);
    border-radius: 50%;
}

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

.sct-tpl-service-city .sct-cta-final h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.sct-tpl-service-city .sct-cta-final h2 span { color: #E6B700; }

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

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

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero { padding: 50px 0 70px; }
    .sct-tpl-service-city .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-city .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-usecase-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-city .sct-usecase-img-wrap img { height: 350px; }
    .sct-tpl-service-city .sct-section { padding: 65px 0; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 110px 0 60px; }
    .sct-tpl-service-city .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-city .sct-hero-card { padding: 24px; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .sct-tpl-service-city .sct-stat-value { font-size: 1.9rem; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-section { padding: 55px 0; }
    .sct-tpl-service-city .sct-section-header { margin-bottom: 36px; }
    .sct-tpl-service-city .sct-intro-section { padding: 55px 0; }
    .sct-tpl-service-city .sct-intro-content p { font-size: 0.96rem; }
    .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-usecase-img-wrap img { height: 280px; }
    .sct-tpl-service-city .sct-usecase-img-wrap::before { top: -8px; left: -8px; }
    .sct-tpl-service-city .sct-faq-item summary { padding: 16px 20px; font-size: 0.94rem; }
    .sct-tpl-service-city .sct-faq-item .sct-faq-content { padding: 0 20px 18px; }
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 60px 0 80px;
    background: linear-gradient(135deg, rgba(13,71,161,0.93) 0%, rgba(10,54,128,0.88) 100%), url('/images/service_1_1774105772_69beb4aca240f.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 60px 0 80px;
    background: linear-gradient(135deg, rgba(13,71,161,0.93) 0%, rgba(10,54,128,0.88) 100%), url('/images/service_4_1774105839_69beb4ef16441.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub { font-family: 'Poppins', sans-serif; color: #334155; line-height: 1.7; }

.sct-tpl-service-hub a { text-decoration: none; color: inherit; }

.sct-tpl-service-hub h1, .sct-tpl-service-hub h2, .sct-tpl-service-hub h3, .sct-tpl-service-hub h4 { font-family: 'Poppins', sans-serif; color: #0F172A; line-height: 1.2; }

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 80px 0 90px;
    background: linear-gradient(135deg, #0A3680 0%, #0D47A1 50%, #1565C0 100%);
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('/images/service_1_1774105772_69beb4aca240f.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 1;
}

.sct-tpl-service-hub .sct-hero::after {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 600px; height: 600px;
    background: rgba(230,183,0,0.08);
    border-radius: 50%;
    z-index: 1;
}

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

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

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

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

.sct-tpl-service-hub .sct-breadcrumb i { font-size: 0.7rem; opacity: 0.6; }

.sct-tpl-service-hub .sct-breadcrumb span { color: #E6B700; font-weight: 600; }

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

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

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

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230,183,0,0.15);
    border: 1px solid rgba(230,183,0,0.4);
    color: #E6B700;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
    backdrop-filter: blur(10px);
}

.sct-tpl-service-hub .sct-hero-text h1 {
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.sct-tpl-service-hub .sct-hero-text h1 strong { color: #E6B700; font-weight: 900; }

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 32px;
    line-height: 1.65;
    font-weight: 300;
}

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

.sct-tpl-service-hub .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.sct-tpl-service-hub .sct-btn-primary {
    background: #E6B700;
    color: #0F172A;
    box-shadow: 0 6px 20px rgba(230,183,0,0.4);
}

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: #C89600;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230,183,0,0.55);
}

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

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

.sct-tpl-service-hub .sct-hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 32px;
    color: #FFFFFF;
}

.sct-tpl-service-hub .sct-hero-card h3 {
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sct-tpl-service-hub .sct-hero-card h3 i { color: #E6B700; }

.sct-tpl-service-hub .sct-hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sct-tpl-service-hub .sct-hero-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.92);
    font-size: 0.92rem;
}

.sct-tpl-service-hub .sct-hero-card-list li i {
    color: #E6B700;
    margin-top: 4px;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-stats-band {
    background: #FFFFFF;
    padding: 50px 0;
    border-bottom: 1px solid #EEF2F7;
}

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

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

.sct-tpl-service-hub .sct-stat-item { text-align: center; }

.sct-tpl-service-hub .sct-stat-icon {
    width: 60px; height: 60px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, #0D47A1, #1565C0);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.4rem;
}

.sct-tpl-service-hub .sct-stat-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: #0D47A1;
    line-height: 1;
    margin-bottom: 6px;
}

.sct-tpl-service-hub .sct-stat-label {
    font-size: 0.82rem;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

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

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

.sct-tpl-service-hub .sct-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13,71,161,0.08);
    color: #0D47A1;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.sct-tpl-service-hub .sct-section-title {
    font-size: clamp(1.75rem, 3.8vw, 2.45rem);
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.sct-tpl-service-hub .sct-section-title span { color: #0D47A1; }

.sct-tpl-service-hub .sct-section-sub {
    font-size: 1.05rem;
    color: #64748B;
    max-width: 680px;
    margin: 0 auto;
}

.sct-tpl-service-hub .sct-intro-section { background: #F8FAFC; }

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

.sct-tpl-service-hub .sct-intro-content p {
    font-size: 1.02rem;
    color: #475569;
    margin-bottom: 22px;
    line-height: 1.85;
}

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

.sct-tpl-service-hub .sct-intro-content strong { color: #0D47A1; font-weight: 700; }

.sct-tpl-service-hub .sct-services-section { background: #FFFFFF; }

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

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

.sct-tpl-service-hub .sct-service-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #EEF2F7;
}

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13,71,161,0.18);
    border-color: rgba(13,71,161,0.15);
}

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

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

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

.sct-tpl-service-hub .sct-service-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(13,71,161,0.4), transparent);
}

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

.sct-tpl-service-hub .sct-service-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
    line-height: 1.3;
}

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

.sct-tpl-service-hub .sct-processus-section {
    background: linear-gradient(135deg, #F5F7FA 0%, #EEF2F7 100%);
}

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

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

.sct-tpl-service-hub .sct-step {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    position: relative;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(13,71,161,0.15);
}

.sct-tpl-service-hub .sct-step-number {
    width: 48px; height: 48px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #0D47A1, #1565C0);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 6px 18px rgba(13,71,161,0.3);
}

.sct-tpl-service-hub .sct-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
}

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

.sct-tpl-service-hub .sct-why-section { background: #FFFFFF; }

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

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

.sct-tpl-service-hub .sct-why-card {
    background: #F8FAFC;
    border-left: 4px solid #E6B700;
    border-radius: 14px;
    padding: 32px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-why-card:hover {
    background: #FFFFFF;
    box-shadow: 0 12px 30px rgba(13,71,161,0.12);
    transform: translateX(4px);
}

.sct-tpl-service-hub .sct-why-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #0D47A1, #1565C0);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-why-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-why-text p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.65;
}

.sct-tpl-service-hub .sct-usecase-section { background: #F8FAFC; }

.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-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(13,71,161,0.18);
    position: relative;
}

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

.sct-tpl-service-hub .sct-usecase-img::before {
    content: '';
    position: absolute;
    top: -15px; left: -15px;
    width: 100%; height: 100%;
    border: 3px solid #E6B700;
    border-radius: 20px;
    z-index: -1;
}

.sct-tpl-service-hub .sct-usecase-text h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.sct-tpl-service-hub .sct-usecase-text h2 span { color: #0D47A1; }

.sct-tpl-service-hub .sct-usecase-text p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 18px;
    line-height: 1.75;
}

.sct-tpl-service-hub .sct-usecase-text strong { color: #0D47A1; font-weight: 700; }

.sct-tpl-service-hub .sct-engagements-section {
    background: linear-gradient(135deg, #0D47A1, #0A3680);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-engagements-section::before {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 500px; height: 500px;
    background: rgba(230,183,0,0.06);
    border-radius: 50%;
}

.sct-tpl-service-hub .sct-engagements-section .sct-section-title { color: #FFFFFF; }

.sct-tpl-service-hub .sct-engagements-section .sct-section-title span { color: #E6B700; }

.sct-tpl-service-hub .sct-engagements-section .sct-section-tag {
    background: rgba(230,183,0,0.18);
    color: #E6B700;
}

.sct-tpl-service-hub .sct-engagements-section .sct-section-sub { color: rgba(255,255,255,0.85); }

.sct-tpl-service-hub .sct-engagements-grid {
    position: relative;
    z-index: 2;
    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: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s ease;
}

.sct-tpl-service-hub .sct-engagement-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-6px);
    border-color: rgba(230,183,0,0.5);
}

.sct-tpl-service-hub .sct-engagement-icon {
    width: 70px; height: 70px;
    margin: 0 auto 20px;
    background: rgba(230,183,0,0.2);
    border: 2px solid #E6B700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E6B700;
    font-size: 1.6rem;
}

.sct-tpl-service-hub .sct-engagement-card h3 {
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.sct-tpl-service-hub .sct-faq-section { background: #FFFFFF; }

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

.sct-tpl-service-hub .sct-faq-item {
    background: #F8FAFC;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #EEF2F7;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-faq-item:hover { border-color: rgba(13,71,161,0.2); }

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

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

.sct-tpl-service-hub .sct-faq-item summary::after {
    content: '+';
    font-size: 1.6rem;
    color: #0D47A1;
    font-weight: 300;
    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-answer {
    padding: 0 26px 22px;
    font-size: 0.94rem;
    color: #475569;
    line-height: 1.75;
}

.sct-tpl-service-hub .sct-maillage-section {
    background: linear-gradient(135deg, #F5F7FA 0%, #EEF2F7 100%);
    padding: 80px 0;
}

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

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

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

.sct-tpl-service-hub .sct-maillage-link {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sct-tpl-service-hub .sct-maillage-link i {
    color: #0D47A1;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.sct-tpl-service-hub .sct-maillage-link:hover {
    background: #0D47A1;
    color: #FFFFFF;
    border-color: #0D47A1;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13,71,161,0.25);
}

.sct-tpl-service-hub .sct-maillage-link:hover i { color: #E6B700; transform: translateX(3px); }

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

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

.sct-tpl-service-hub .sct-maillage-service-card {
    background: #F8FAFC;
    border: 2px solid #E2E8F0;
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 18px;
}

.sct-tpl-service-hub .sct-maillage-service-card:hover {
    background: #FFFFFF;
    border-color: #0D47A1;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(13,71,161,0.15);
}

.sct-tpl-service-hub .sct-maillage-service-card i {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, #0D47A1, #1565C0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-maillage-service-card span {
    font-weight: 600;
    color: #0F172A;
    font-size: 0.95rem;
}

.sct-tpl-service-hub .sct-cta-final {
    background: linear-gradient(135deg, #0D47A1 0%, #0A3680 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-cta-final::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(230,183,0,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

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

.sct-tpl-service-hub .sct-cta-final h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.sct-tpl-service-hub .sct-cta-final h2 span { color: #E6B700; }

.sct-tpl-service-hub .sct-cta-final p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 36px;
    line-height: 1.65;
}

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

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero { padding: 60px 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-section { padding: 70px 0; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 35px; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-usecase-img img { height: 380px; }
    .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); }
    .sct-tpl-service-hub .sct-maillage-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 50px 0 60px; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.95rem; line-height: 1.2; }
    .sct-tpl-service-hub .sct-hero-subtitle { font-size: 0.98rem; }
    .sct-tpl-service-hub .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-hero-card { padding: 26px; }
    .sct-tpl-service-hub .sct-section { padding: 55px 0; }
    .sct-tpl-service-hub .sct-section-header { margin-bottom: 40px; }
    .sct-tpl-service-hub .sct-stats-band { padding: 35px 0; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .sct-tpl-service-hub .sct-stat-value { font-size: 1.8rem; }
    .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-card { flex-direction: column; padding: 24px; }
    .sct-tpl-service-hub .sct-usecase-img img { height: 280px; }
    .sct-tpl-service-hub .sct-engagement-card { padding: 28px 22px; }
    .sct-tpl-service-hub .sct-faq-item summary { padding: 18px 20px; font-size: 0.94rem; }
    .sct-tpl-service-hub .sct-faq-answer { padding: 0 20px 18px; font-size: 0.9rem; }
    .sct-tpl-service-hub .sct-maillage-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-maillage-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-cta-final { padding: 60px 0; }
    .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-zone {
    --sct-primary: #0D47A1;
    --sct-primary-light: #1565C0;
    --sct-primary-dark: #0A3680;
    --sct-secondary: #E6B700;
    --sct-secondary-dark: #C89600;
    --sct-gray-50: #F8FAFC;
    --sct-gray-100: #EEF2F7;
    --sct-gray-200: #E2E8F0;
    --sct-gray-400: #94A3B8;
    --sct-gray-500: #64748B;
    --sct-gray-600: #475569;
    --sct-gray-700: #334155;
    --sct-gray-800: #1E293B;
    --sct-gray-900: #0F172A;
}

.sct-tpl-zone {
    font-family: 'Poppins', sans-serif;
    color: var(--sct-gray-700);
    line-height: 1.7;
}

.sct-tpl-zone .sct-breadcrumb-wrap {
    background: var(--sct-gray-50);
    border-bottom: 1px solid var(--sct-gray-100);
    padding: 14px 0;
}

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

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

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

.sct-tpl-zone .sct-breadcrumb i { font-size: 0.7rem; color: var(--sct-gray-400); }

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

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

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

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

.sct-tpl-zone .sct-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(13,71,161,0.95) 0%, rgba(13,71,161,0.85) 45%, rgba(13,71,161,0.55) 75%, rgba(13,71,161,0.35) 100%);
    z-index: 2;
}

.sct-tpl-zone .sct-hero .sct-container {
    position: relative;
    z-index: 3;
}

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

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

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

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230,183,0,0.18);
    border: 1px solid rgba(230,183,0,0.4);
    color: var(--sct-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sct-tpl-zone .sct-hero-text h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

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

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 300;
}

.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;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.sct-tpl-zone .sct-btn-primary {
    background: var(--sct-secondary);
    color: var(--sct-gray-900);
    box-shadow: 0 4px 20px rgba(230,183,0,0.4);
}

.sct-tpl-zone .sct-btn-primary:hover {
    background: var(--sct-secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(230,183,0,0.5);
}

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

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

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

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

.sct-tpl-zone .sct-hero-card h3 i { color: var(--sct-secondary); }

.sct-tpl-zone .sct-hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sct-tpl-zone .sct-hero-card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.92);
    font-size: 0.92rem;
}

.sct-tpl-zone .sct-hero-card-list li i {
    color: var(--sct-secondary);
    font-size: 0.9rem;
    width: 20px;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-hero-card-phone {
    background: var(--sct-secondary);
    color: var(--sct-gray-900);
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sct-tpl-zone .sct-hero-card-phone:hover {
    background: var(--sct-secondary-dark);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .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%; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 60px 0 50px; }
    .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-stats-band {
    background: #fff;
    padding: 50px 0;
    border-bottom: 1px solid var(--sct-gray-100);
}

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

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

.sct-tpl-zone .sct-stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--sct-gray-100);
}

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

.sct-tpl-zone .sct-stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, var(--sct-primary), var(--sct-primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}

.sct-tpl-zone .sct-stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--sct-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.sct-tpl-zone .sct-stat-label {
    font-size: 0.82rem;
    color: var(--sct-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-stat-item:nth-child(2) { border-right: none; }
    .sct-tpl-zone .sct-stat-item { border-right: none; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: 1fr; gap: 20px; }
    .sct-tpl-zone .sct-stat-item { border-right: none; padding: 14px; }
}

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

.sct-tpl-zone .sct-section-alt { background: var(--sct-gray-50); }

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

.sct-tpl-zone .sct-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13,71,161,0.08);
    color: var(--sct-primary);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.sct-tpl-zone .sct-section-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--sct-gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.sct-tpl-zone .sct-section-title span { color: var(--sct-primary); }

.sct-tpl-zone .sct-section-subtitle {
    font-size: 1rem;
    color: var(--sct-gray-500);
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-section { padding: 60px 0; }
    .sct-tpl-zone .sct-section-header { margin-bottom: 40px; }
}

.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-img-wrap {
    position: relative;
}

.sct-tpl-zone .sct-intro-img-wrap img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.sct-tpl-zone .sct-intro-img-wrap::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--sct-secondary);
    border-radius: 20px;
    z-index: -1;
}

.sct-tpl-zone .sct-intro-text h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--sct-gray-900);
    margin-bottom: 20px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.sct-tpl-zone .sct-intro-text h2 span { color: var(--sct-primary); }

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

@media (max-width: 992px) {
    .sct-tpl-zone .sct-intro-grid { grid-template-columns: 1fr; gap: 50px; }
    .sct-tpl-zone .sct-intro-img-wrap img { height: 380px; }
}

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

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

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

.sct-tpl-zone .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

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

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

.sct-tpl-zone .sct-service-img-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--sct-secondary);
    color: var(--sct-gray-900);
    font-weight: 700;
    font-size: 0.72rem;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.sct-tpl-zone .sct-service-body h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--sct-gray-800);
    margin-bottom: 10px;
    line-height: 1.3;
}

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

.sct-tpl-zone .sct-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sct-primary);
    font-weight: 600;
    font-size: 0.88rem;
    margin-top: auto;
}

.sct-tpl-zone .sct-service-link:hover {
    color: var(--sct-primary-dark);
    gap: 12px;
}

.sct-tpl-zone .sct-service-link i { font-size: 0.78rem; transition: transform 0.3s ease; }

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

@media (max-width: 992px) {
    .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
}

.sct-tpl-zone .sct-zones-section {
    background: linear-gradient(135deg, var(--sct-primary), var(--sct-primary-dark));
    position: relative;
    overflow: hidden;
}

.sct-tpl-zone .sct-zones-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: rgba(230,183,0,0.08);
    border-radius: 50%;
}

.sct-tpl-zone .sct-zones-section .sct-section-header { position: relative; z-index: 2; }

.sct-tpl-zone .sct-zones-section .sct-section-tag {
    background: rgba(255,255,255,0.15);
    color: var(--sct-secondary);
}

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

.sct-tpl-zone .sct-zones-section .sct-section-title span { color: var(--sct-secondary); }

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

.sct-tpl-zone .sct-zones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}

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

.sct-tpl-zone .sct-zone-pill {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    padding: 16px 20px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-zone-pill:hover {
    background: rgba(230,183,0,0.2);
    border-color: var(--sct-secondary);
    transform: translateY(-3px);
}

.sct-tpl-zone .sct-zone-pill i {
    color: var(--sct-secondary);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .sct-tpl-zone .sct-zones-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-zones-grid { grid-template-columns: 1fr; }
}

.sct-tpl-zone .sct-usecase-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-left: 6px solid var(--sct-secondary);
    max-width: 900px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-usecase-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sct-gray-900);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.sct-tpl-zone .sct-usecase-card h3 i {
    color: var(--sct-primary);
    font-size: 1.4rem;
}

.sct-tpl-zone .sct-usecase-card p {
    color: var(--sct-gray-600);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-usecase-card { padding: 30px 24px; }
    .sct-tpl-zone .sct-usecase-card h3 { font-size: 1.2rem; }
}

.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;
    padding: 36px 28px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--sct-gray-100);
}

.sct-tpl-zone .sct-engagement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13,71,161,0.15);
    border-color: transparent;
}

.sct-tpl-zone .sct-engagement-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, var(--sct-primary), var(--sct-primary-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
}

.sct-tpl-zone .sct-engagement-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sct-gray-900);
    margin-bottom: 12px;
}

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

@media (max-width: 992px) {
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.sct-tpl-zone .sct-local-spec {
    background: linear-gradient(135deg, var(--sct-gray-50), #fff);
    padding: 50px;
    border-radius: 20px;
    border-top: 6px solid var(--sct-primary);
    max-width: 1000px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-local-spec h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sct-gray-900);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.sct-tpl-zone .sct-local-spec h3 i {
    color: var(--sct-primary);
    background: rgba(13,71,161,0.1);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

.sct-tpl-zone .sct-local-spec ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sct-tpl-zone .sct-local-spec ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--sct-gray-600);
    font-size: 0.92rem;
}

.sct-tpl-zone .sct-local-spec ul li i {
    color: var(--sct-primary);
    margin-top: 5px;
    font-size: 0.78rem;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-local-spec { padding: 30px 22px; }
    .sct-tpl-zone .sct-local-spec h3 { font-size: 1.2rem; }
}

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

.sct-tpl-zone .sct-faq-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--sct-gray-100);
    overflow: hidden;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-faq-item:hover { border-color: var(--sct-primary); box-shadow: 0 10px 30px rgba(13,71,161,0.08); }

.sct-tpl-zone .sct-faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    font-weight: 600;
    color: var(--sct-gray-900);
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    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: var(--sct-primary);
    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-answer {
    padding: 0 28px 24px;
    color: var(--sct-gray-600);
    font-size: 0.93rem;
    line-height: 1.75;
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-faq-item summary { padding: 18px 20px; font-size: 0.94rem; }
    .sct-tpl-zone .sct-faq-answer { padding: 0 20px 20px; }
}

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

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

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

.sct-tpl-zone .sct-maillage-card {
    background: #fff;
    padding: 18px 22px;
    border-radius: 12px;
    border: 1px solid var(--sct-gray-100);
    color: var(--sct-gray-700);
    font-weight: 600;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-maillage-card:hover {
    border-color: var(--sct-primary);
    color: var(--sct-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13,71,161,0.1);
}

.sct-tpl-zone .sct-maillage-card i {
    color: var(--sct-secondary);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .sct-tpl-zone .sct-maillage-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-maillage-grid { grid-template-columns: 1fr; }
}

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

.sct-tpl-zone .sct-cta-final::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(230,183,0,0.1);
    border-radius: 50%;
}

.sct-tpl-zone .sct-cta-final::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.sct-tpl-zone .sct-cta-final .sct-container { position: relative; z-index: 2; }

.sct-tpl-zone .sct-cta-final h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.sct-tpl-zone .sct-cta-final h2 span { color: var(--sct-secondary); }

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

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

@media (max-width: 640px) {
    .sct-tpl-zone .sct-cta-final { padding: 60px 0; }
    .sct-tpl-zone .sct-cta-final-btns { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
    .sct-tpl-zone .sct-cta-final-btns > * { width: 100%; justify-content: center; }
}

.btn-devis-nav {
    background: var(--secondary);
    color: var(--gray-900) !important;
    font-weight: 700 !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(230,183,0,0.35);
    animation: pulseGreen 2s infinite;
}

.btn-primary {
    background: var(--secondary);
    color: var(--gray-900);
    box-shadow: 0 4px 20px rgba(230,183,0,0.4);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(230,183,0,0.5);
}

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

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(230,183,0,0.12);
    border-radius: 50%;
    filter: blur(20px);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

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

.page-hero .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 18px;
    border-radius: 50px;
    color: rgba(255,255,255,0.9);
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.page-hero .breadcrumb a {
    color: var(--secondary);
    font-weight: 600;
}

.page-hero .breadcrumb a:hover {
    color: var(--white);
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

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

.page-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary);
    border-radius: 4px;
    opacity: 0.5;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 640px;
    margin: 0 auto;
    font-weight: 300;
}

.page-hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.page-hero-shape svg {
    width: 100%;
    height: 60px;
    display: block;
}

.sitemap-main {
    padding: 80px 0 100px;
    background: var(--off-white);
}

.sitemap-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.sitemap-block:hover {
    box-shadow: var(--shadow-md);
}

.sitemap-block-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 2px dashed var(--gray-200);
}

.sitemap-block-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(13,71,161,0.25);
}

.sitemap-block-icon.gold {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--gray-900);
    box-shadow: 0 8px 20px rgba(230,183,0,0.3);
}

.sitemap-block-title h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.sitemap-block-title p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin: 0;
}

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    color: var(--gray-700);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.chip i {
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.chip:hover {
    border-color: var(--primary);
    background: rgba(13,71,161,0.04);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.chip.chip-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(13,71,161,0.25);
}

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

.chip.chip-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13,71,161,0.4);
}

.subgroup {
    margin-bottom: 32px;
}

.subgroup:last-child {
    margin-bottom: 0;
}

.subgroup-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-left: 4px;
}

.subgroup-title::before {
    content: '';
    width: 4px;
    height: 22px;
    background: var(--secondary);
    border-radius: 2px;
}

.subgroup-title .count {
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50px;
    margin-left: auto;
    margin-right: 0;
}

.sitemap-cta {
    margin-top: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sitemap-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(230,183,0,0.1);
    border-radius: 50%;
}

.sitemap-cta-content {
    position: relative;
    z-index: 2;
}

.sitemap-cta h3 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.sitemap-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin-bottom: 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

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

.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.7);
    padding: 70px 0 0;
}

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

.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: 16px;
}

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

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

.footer-social a:hover {
    background: var(--secondary);
    color: var(--gray-900);
    transform: translateY(-3px);
}

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

.footer-links a {
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
}

.footer-links a i {
    color: var(--secondary);
    font-size: 0.7rem;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 0.88rem;
    line-height: 1.5;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

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

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

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    .burger {
        display: flex;
    }
    .page-hero {
        padding: 60px 0 80px;
    }
    .sitemap-main {
        padding: 50px 0 70px;
    }
    .sitemap-block {
        padding: 26px 22px;
    }
    .sitemap-block-header {
        gap: 14px;
        margin-bottom: 22px;
        padding-bottom: 18px;
    }
    .sitemap-block-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        border-radius: 12px;
    }
    .sitemap-block-title h2 {
        font-size: 1.2rem;
    }
    .chip {
        padding: 10px 16px;
        font-size: 0.82rem;
    }
    .sitemap-cta {
        padding: 36px 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}