:root {
            --primary: #0A1628;
            --primary-light: #1E2A3D;
            --secondary: #5E7DF3;
            --secondary-dark: #E0A300;
            --accent: #E63946;
            --light: #F5F5F7;
            --gray: #A0AEC0;
            --gray-dark: #4A5568;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0,0,0,0.1);
            --shadow-lg: 0 20px 50px rgba(0,0,0,0.25);
            --radius: 12px;
        }

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            letter-spacing: 0.5px;
            line-height: 1.2;
        }

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

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

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

.emergency-bar {
            background: linear-gradient(90deg, var(--accent) 0%, #c92a37 100%);
            color: var(--white);
            text-align: center;
            padding: 8px 16px;
            font-size: 0.9rem;
            font-weight: 600;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
        }

.emergency-bar i { margin-right: 8px; animation: pulse 2s infinite; }

.emergency-bar a { color: var(--white); font-weight: 700; text-decoration: underline; }

@keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

.header {
            position: fixed;
            top: 36px;
            left: 0; right: 0;
            background: rgba(10, 22, 40, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 184, 0, 0.15);
        }

.header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            position: relative;
        }

.logo {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--white);
        }

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

.logo-text {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 1px;
        }

.menu-toggle { display: none; cursor: pointer; }

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

.nav a {
            color: var(--white);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
            position: relative;
        }

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

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

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

.btn-cta-nav {
            background: var(--secondary);
            color: var(--primary) !important;
            padding: 10px 22px;
            border-radius: 999px;
            font-weight: 700 !important;
            transition: all 0.3s;
            display: inline-block;
        }

.btn-cta-nav:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,184,0,0.4);
        }

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

@media (max-width: 768px) {
            .menu-toggle {
                display: inline-flex; align-items: center; justify-content: center;
                font-size: 1.5rem; padding: 8px; color: var(--secondary);
            }
            .nav {
                display: none;
                position: absolute; top: 100%; left: 0; right: 0;
                flex-direction: column; gap: 12px;
                background: var(--primary); padding: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.4);
                border-top: 1px solid rgba(255,184,0,0.2);
            }
            .menu-check:checked ~ .nav { display: flex; }
            .menu-check:checked ~ .menu-toggle .fa-bars::before { content: "\f00d"; }
            .nav a { width: 100%; padding: 8px 0; }
            .btn-cta-nav { text-align: center; }
        }

.hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(30,42,61,0.85) 100%), url('https://webflash.pro/storage/generated/344/hero_1777328045_69efdfad17e1f.webp') center/cover no-repeat;
            color: var(--white);
            padding: 140px 0 80px;
            overflow: hidden;
        }

.hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,184,0,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,184,0,0.04) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
        }

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

.hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,184,0,0.15);
            border: 1px solid rgba(255,184,0,0.4);
            color: var(--secondary);
            padding: 8px 18px;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.hero h1 {
            font-size: clamp(2rem, 5vw, 3.6rem);
            margin-bottom: 20px;
            line-height: 1.1;
        }

.hero h1 .accent {
            color: var(--secondary);
            position: relative;
            display: inline-block;
        }

.hero p.lead {
            font-size: 1.15rem;
            color: var(--gray);
            margin-bottom: 32px;
            max-width: 560px;
        }

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

.btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            font-family: 'Inter', sans-serif;
        }

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

.btn-primary:hover {
            background: var(--secondary-dark);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(255,184,0,0.4);
        }

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

.btn-outline:hover {
            border-color: var(--secondary);
            color: var(--secondary);
        }

.hero-card {
            background: rgba(30,42,61,0.85);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,184,0,0.25);
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: var(--shadow-lg);
        }

.hero-card h3 {
            font-size: 1.4rem;
            color: var(--secondary);
            margin-bottom: 8px;
        }

.hero-card p {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

.hero-card .quick-features {
            list-style: none;
            margin-bottom: 24px;
        }

.hero-card .quick-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            color: var(--white);
            font-size: 0.95rem;
        }

.hero-card .quick-features i {
            color: var(--secondary);
            font-size: 1rem;
        }

section {
            padding: 90px 0;
            position: relative;
        }

.section-head {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

.section-tag {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

.section-head h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            color: var(--primary);
            margin-bottom: 16px;
        }

.section-head p {
            color: var(--gray-dark);
            font-size: 1.05rem;
        }

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

.dark-section .section-head h2 { color: var(--white); }

.dark-section .section-head p { color: var(--gray); }

.devis-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: var(--white);
            position: relative;
        }

.devis-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 20% 50%, rgba(255,184,0,0.08) 0%, transparent 50%);
            pointer-events: none;
        }

.devis-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            align-items: center;
            position: relative;
        }

.devis-info h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.4rem);
            margin-bottom: 20px;
            color: var(--white);
        }

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

.devis-info p {
            color: var(--gray);
            margin-bottom: 24px;
            font-size: 1.05rem;
        }

.devis-perks {
            list-style: none;
        }

.devis-perks li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            color: var(--white);
        }

.devis-perks i {
            color: var(--secondary);
            font-size: 1.2rem;
            margin-top: 2px;
        }

.form-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 36px;
            box-shadow: var(--shadow-lg);
            color: var(--primary);
        }

.form-card h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 8px;
        }

.form-card .form-sub {
            color: var(--gray-dark);
            font-size: 0.95rem;
            margin-bottom: 24px;
        }

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

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

.form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 14px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.95rem;
            transition: border-color 0.3s, box-shadow 0.3s;
            background: #fafafa;
        }

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

.form-card button[type="submit"] {
            width: 100%;
            background: var(--primary);
            color: var(--white);
            padding: 14px;
            border: none;
            border-radius: 999px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
            margin-top: 8px;
        }

.form-card button[type="submit"]:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255,184,0,0.3);
        }

.stats {
            background: var(--primary);
            color: var(--white);
            padding: 70px 0;
            border-top: 1px solid rgba(255,184,0,0.15);
            border-bottom: 1px solid rgba(255,184,0,0.15);
        }

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

.stat-item {
            padding: 20px;
            border-right: 1px solid rgba(255,255,255,0.08);
        }

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

.stat-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 16px;
            background: rgba(255,184,0,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 1.5rem;
        }

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

.stat-label {
            color: var(--gray);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

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

.service-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(10,22,40,0.08);
            transition: all 0.4s;
            width: calc(33.333% - 19px);
            max-width: 380px;
            display: flex;
            flex-direction: column;
            border: 1px solid transparent;
        }

.service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(10,22,40,0.15);
            border-color: rgba(255,184,0,0.4);
        }

.service-img {
            width: 100%;
            height: 220px;
            overflow: hidden;
            position: relative;
        }

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

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

.service-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(10,22,40,0.4) 100%);
        }

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

.service-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--secondary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 16px;
            margin-top: -50px;
            position: relative;
            z-index: 2;
            box-shadow: 0 6px 20px rgba(10,22,40,0.3);
        }

.service-body h3 {
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 12px;
        }

.service-body p {
            color: var(--gray-dark);
            font-size: 0.95rem;
            flex: 1;
        }

.service-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            margin-top: 16px;
            transition: gap 0.3s, color 0.3s;
        }

.service-link:hover {
            color: var(--secondary-dark);
            gap: 10px;
        }

@media (max-width: 1024px) {
            .service-card { width: calc(50% - 14px); }
        }

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

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

.why-card {
            background: var(--white);
            border: 1px solid #e2e8f0;
            border-radius: var(--radius);
            padding: 32px 24px;
            text-align: center;
            transition: all 0.3s;
        }

.why-card:hover {
            border-color: var(--secondary);
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255,184,0,0.15);
        }

.why-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
        }

.why-card h3 {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 12px;
        }

.why-card p {
            color: var(--gray-dark);
            font-size: 0.95rem;
        }

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

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

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

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

.about-img::before {
            content: '';
            position: absolute;
            top: 20px; left: 20px; right: -20px; bottom: -20px;
            background: var(--secondary);
            border-radius: var(--radius);
            z-index: -1;
        }

.about-content h2 {
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            color: var(--primary);
            margin-bottom: 20px;
        }

.about-content p {
            color: var(--gray-dark);
            margin-bottom: 18px;
            font-size: 1.02rem;
        }

.about-features {
            list-style: none;
            margin-top: 24px;
        }

.about-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            color: var(--primary);
            font-weight: 500;
        }

.about-features i {
            color: var(--secondary);
            background: rgba(255,184,0,0.15);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

.zones-text h2 {
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            color: var(--white);
            margin-bottom: 20px;
        }

.zones-text p {
            color: var(--gray);
            margin-bottom: 24px;
        }

.zones-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            list-style: none;
        }

.zones-list li {
            background: rgba(255,184,0,0.12);
            border: 1px solid rgba(255,184,0,0.3);
            color: var(--secondary);
            padding: 8px 16px;
            border-radius: 999px;
            font-size: 0.9rem;
            font-weight: 500;
        }

.zones-map {
            background: var(--primary-light);
            border: 1px solid rgba(255,184,0,0.2);
            border-radius: var(--radius);
            padding: 40px;
            text-align: center;
        }

.zones-map .big-icon {
            font-size: 4rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }

.zones-map h3 {
            color: var(--white);
            font-size: 1.4rem;
            margin-bottom: 12px;
        }

.zones-map p {
            color: var(--gray);
            margin-bottom: 24px;
        }

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

.faq-list {
            max-width: 820px;
            margin: 0 auto;
        }

.faq-item {
            background: var(--light);
            border-radius: var(--radius);
            margin-bottom: 14px;
            border: 1px solid transparent;
            transition: border-color 0.3s;
            overflow: hidden;
        }

.faq-item[open] {
            border-color: var(--secondary);
        }

.faq-item summary {
            cursor: pointer;
            padding: 20px 24px;
            font-weight: 600;
            color: var(--primary);
            display: flex;
            justify-content: space-between;
            align-items: center;
            list-style: none;
            font-size: 1.05rem;
        }

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

.faq-item summary::after {
            content: '\f067';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--secondary);
            transition: transform 0.3s;
        }

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

.faq-item p {
            padding: 0 24px 22px;
            color: var(--gray-dark);
            line-height: 1.7;
        }

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

.horaires-card {
            max-width: 600px;
            margin: 0 auto;
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--secondary);
        }

.horaires-status {
            text-align: center;
            margin-bottom: 30px;
        }

.status-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            background: #10b981;
            border-radius: 50%;
            margin-right: 8px;
            animation: pulse 2s infinite;
        }

.horaires-status span {
            color: #10b981;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

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

.horaire-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
            border-bottom: 1px solid #e2e8f0;
        }

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

.horaire-row .day {
            font-weight: 600;
            color: var(--primary);
        }

.horaire-row .hours {
            color: var(--gray-dark);
            font-weight: 500;
        }

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

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

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

.contact-card {
            background: var(--light);
            border-radius: var(--radius);
            padding: 24px;
            display: flex;
            align-items: flex-start;
            gap: 18px;
            border-left: 4px solid var(--secondary);
            transition: transform 0.3s, box-shadow 0.3s;
        }

.contact-card:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow);
        }

.contact-card-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--secondary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

.contact-card .label {
            display: block;
            font-size: 0.85rem;
            color: var(--gray-dark);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }

.contact-card .value {
            display: block;
            color: var(--primary);
            font-weight: 600;
            font-size: 1.05rem;
        }

.contact-card .value a:hover { color: var(--secondary-dark); }

.map-wrap {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-top: 30px;
        }

.map-wrap iframe { display: block; }

.contact-form-wrap {
            background: var(--light);
            border-radius: var(--radius);
            padding: 36px;
        }

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

.contact-form-wrap > p {
            color: var(--gray-dark);
            margin-bottom: 24px;
        }

#contactForm button[type="submit"] {
            width: 100%;
            background: var(--primary);
            color: var(--white);
            padding: 14px;
            border: none;
            border-radius: 999px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
            margin-top: 8px;
        }

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

footer {
            background: #050d18;
            color: var(--gray);
            padding: 70px 0 0;
            border-top: 1px solid rgba(255,184,0,0.15);
        }

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

.footer-col p { font-size: 0.95rem; line-height: 1.7; }

.footer-col .footer-title {
            display: block;
            color: var(--white);
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

.footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

.footer-logo img {
            height: 40px;
            width: auto;
        }

.footer-logo span {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--white);
        }

.footer-col ul {
            list-style: none;
        }

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

.footer-col ul li a {
            color: var(--gray);
            font-size: 0.95rem;
            transition: color 0.3s;
        }

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

.footer-contact-item {
            display: flex;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 0.95rem;
        }

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

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

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

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

.footer-bottom .legal-links {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }

.floating-cta {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
            flex-direction: column;
            gap: 10px;
        }

.floating-cta a {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.4rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            transition: transform 0.3s;
        }

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

.floating-cta .fcall { background: var(--accent); }

.floating-cta .fwhat { background: #25D366; }

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

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

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

.modal-close {
            position: absolute;
            top: 16px;
            right: 20px;
            font-size: 1.5rem;
            color: var(--gray-dark);
            text-decoration: none;
        }

.modal-box p.modal-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
        }

.modal-box p { margin-bottom: 12px; color: var(--gray-dark); }

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

@media (max-width: 1024px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .stat-item:nth-child(2) { border-right: none; }
            .why-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

@media (max-width: 768px) {
            .emergency-bar { font-size: 0.78rem; padding: 6px 12px; }
            .header { top: 30px; }
            .hero { padding: 130px 16px 60px; min-height: auto; }
            .hero-grid { grid-template-columns: 1fr; gap: 40px; }
            .hero-card { padding: 24px; }
            section { padding: 60px 0; }
            .container { padding: 0 16px; }
            .devis-grid,
            .about-grid,
            .zones-content,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            .form-card { padding: 24px; }
            .about-img img { height: 350px; }
            .about-img::before { top: 12px; left: 12px; right: -12px; bottom: -12px; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { justify-content: center; text-align: center; flex-direction: column; }
            .floating-cta { display: flex; }
        }

@media (max-width: 640px) {
            .stats-grid { grid-template-columns: 1fr; }
            .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 24px; }
            .stat-item:last-child { border-bottom: none; }
            .why-grid { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2rem; }
            .hero-cta { flex-direction: column; }
            .hero-cta .btn { width: 100%; justify-content: center; }
        }

@media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }

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

.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: #1a202c; }

.sct-tpl-service-city a { text-decoration: none; color: var(--white); }

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

.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: var(--secondary); }

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

.sct-tpl-service-city .sct-bc-current { color: var(--secondary); font-weight: 600; }

.sct-tpl-service-city .sct-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(10,22,40,0.94) 0%, rgba(30,42,61,0.88) 100%), url('/images/service_3_1777328115_69efdff35d495.webp') center/cover no-repeat;
    color: #fff;
    padding: 160px 0 90px;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,184,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,184,0,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.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-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,184,0,0.15);
    border: 1px solid rgba(255,184,0,0.4);
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sct-tpl-service-city .sct-hero-text h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #fff;
}

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

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
    max-width: 580px;
    line-height: 1.6;
}

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

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

.sct-tpl-service-city .sct-btn-primary {
    background: var(--secondary);
    color: var(--primary);
}

.sct-tpl-service-city .sct-btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,184,0,0.4);
}

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

.sct-tpl-service-city .sct-btn-outline:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

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

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

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

.sct-tpl-service-city .sct-hero-card {
    background: rgba(30,42,61,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,184,0,0.25);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.sct-tpl-service-city .sct-hero-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 18px;
}

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

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

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

.sct-tpl-service-city .sct-hero-card-list i {
    color: var(--secondary);
    width: 20px;
    margin-top: 3px;
}

.sct-tpl-service-city .sct-hero-card-cta {
    display: block;
    background: var(--secondary);
    color: var(--primary);
    text-align: center;
    padding: 12px;
    border-radius: 999px;
    font-weight: 700;
    transition: all 0.3s;
}

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

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-city .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-service-city .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
}

.sct-tpl-service-city .sct-stats-band {
    background: var(--primary);
    color: #fff;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,184,0,0.15);
}

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

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

.sct-tpl-service-city .sct-stat-item { padding: 14px; }

.sct-tpl-service-city .sct-stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: rgba(255,184,0,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.3rem;
}

.sct-tpl-service-city .sct-stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 6px;
}

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

@media (max-width: 768px) {
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.sct-tpl-service-city .sct-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.sct-tpl-service-city .sct-section-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
    font-weight: 700;
}

.sct-tpl-service-city .sct-section-sub {
    color: #4A5568;
    font-size: 1.02rem;
    line-height: 1.65;
}

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

.sct-tpl-service-city .sct-intro-content {
    max-width: 880px;
    margin: 0 auto;
    color: #4A5568;
    font-size: 1.05rem;
    line-height: 1.75;
}

.sct-tpl-service-city .sct-intro-content p { margin-bottom: 20px; }

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

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

.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: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(10,22,40,0.08);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10,22,40,0.15);
    border-color: rgba(255,184,0,0.4);
}

.sct-tpl-service-city .sct-service-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.sct-tpl-service-city .sct-service-body { padding: 26px; flex: 1; }

.sct-tpl-service-city .sct-service-body h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.sct-tpl-service-city .sct-service-body p {
    color: #4A5568;
    font-size: 0.95rem;
    line-height: 1.65;
}

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

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

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

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

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

.sct-tpl-service-city .sct-step-card {
    text-align: center;
    padding: 28px 18px;
    background: #F5F5F7;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.sct-tpl-service-city .sct-step-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.sct-tpl-service-city .sct-step-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Rajdhani', sans-serif;
}

.sct-tpl-service-city .sct-step-icon {
    width: 56px;
    height: 56px;
    margin: 14px auto 18px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.sct-tpl-service-city .sct-step-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-step-card p {
    color: #4A5568;
    font-size: 0.88rem;
    line-height: 1.55;
}

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

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

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

.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: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px 22px;
    text-align: center;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-why-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255,184,0,0.15);
}

.sct-tpl-service-city .sct-why-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light, #1E2A3D));
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.sct-tpl-service-city .sct-why-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.18rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-why-card p {
    color: #4A5568;
    font-size: 0.92rem;
    line-height: 1.6;
}

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

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

.sct-tpl-service-city .sct-zones-section {
    background: var(--primary);
    color: #fff;
    padding: 90px 0;
}

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

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

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

.sct-tpl-service-city .sct-zones-list li {
    background: rgba(255,184,0,0.12);
    border: 1px solid rgba(255,184,0,0.3);
    color: var(--secondary);
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

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

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

.sct-tpl-service-city .sct-usecase-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--primary);
    margin-bottom: 18px;
    line-height: 1.2;
}

.sct-tpl-service-city .sct-usecase-content {
    color: #4A5568;
    line-height: 1.7;
    font-size: 1rem;
}

.sct-tpl-service-city .sct-usecase-content p { margin-bottom: 14px; }

.sct-tpl-service-city .sct-usecase-content strong { color: var(--primary); }

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-service-city .sct-usecase-img img { height: 360px; }
}

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

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

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

.sct-tpl-service-city .sct-engagement-card {
    background: #fff;
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    border-top: 4px solid var(--secondary);
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-engagement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(10,22,40,0.12);
}

.sct-tpl-service-city .sct-engagement-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255,184,0,0.15);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.sct-tpl-service-city .sct-engagement-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-engagement-card p {
    color: #4A5568;
    font-size: 0.95rem;
    line-height: 1.65;
}

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: 1fr; }
}

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

.sct-tpl-service-city .sct-local-spec-inner {
    max-width: 880px;
    margin: 0 auto;
    background: linear-gradient(135deg, #F5F5F7 0%, #fff 100%);
    border-left: 4px solid var(--secondary);
    padding: 36px 40px;
    border-radius: 12px;
    color: #4A5568;
    line-height: 1.75;
    box-shadow: 0 8px 24px rgba(10,22,40,0.06);
}

.sct-tpl-service-city .sct-local-spec-inner h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-local-spec-inner strong { color: var(--primary); }

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-local-spec-inner { padding: 26px 22px; }
}

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

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

.sct-tpl-service-city .sct-faq-item {
    background: #F5F5F7;
    border-radius: 12px;
    margin-bottom: 14px;
    border: 1px solid transparent;
    transition: border-color 0.3s;
    overflow: hidden;
}

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

.sct-tpl-service-city .sct-faq-item summary {
    cursor: pointer;
    padding: 20px 24px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    font-size: 1.02rem;
    gap: 16px;
}

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

.sct-tpl-service-city .sct-faq-item summary::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary);
    flex-shrink: 0;
}

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

.sct-tpl-service-city .sct-faq-item p {
    padding: 0 24px 22px;
    color: #4A5568;
    line-height: 1.7;
}

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

.sct-tpl-service-city .sct-maillage-section + .sct-maillage-section { background: #fff; }

.sct-tpl-service-city .sct-maillage-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.sct-tpl-service-city .sct-maillage-list a {
    display: inline-block;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: var(--primary);
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.sct-tpl-service-city .sct-maillage-list a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
}

.sct-tpl-service-city .sct-maillage-section + .sct-maillage-section .sct-maillage-list a {
    background: #F5F5F7;
}

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

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

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

.sct-tpl-service-city .sct-cta-final h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: 16px;
    color: #fff;
}

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

.sct-tpl-service-city .sct-cta-final p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

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

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-cta-final-btns > * { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-section,
    .sct-tpl-service-city .sct-intro-section,
    .sct-tpl-service-city .sct-services-section,
    .sct-tpl-service-city .sct-processus-section,
    .sct-tpl-service-city .sct-why-section,
    .sct-tpl-service-city .sct-zones-section,
    .sct-tpl-service-city .sct-usecase-section,
    .sct-tpl-service-city .sct-engagements-section,
    .sct-tpl-service-city .sct-faq-section { padding: 60px 0; }
    .sct-tpl-service-city .sct-section-head { margin-bottom: 40px; }
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(10,22,40,0.94) 0%, rgba(30,42,61,0.88) 100%), url('/images/service_1_1777328071_69efdfc73b43a.webp') center/cover no-repeat;
    color: #fff;
    padding: 160px 0 90px;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(10,22,40,0.94) 0%, rgba(30,42,61,0.88) 100%), url('/images/service_5_1777328159_69efe01fda4fc.webp') center/cover no-repeat;
    color: #fff;
    padding: 160px 0 90px;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(10,22,40,0.94) 0%, rgba(30,42,61,0.88) 100%), url('/images/service_2_1777328092_69efdfdcef621.webp') center/cover no-repeat;
    color: #fff;
    padding: 160px 0 90px;
    overflow: hidden;
}

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

.sct-tpl-service-hub { color: #1a202c; font-family: 'Inter', sans-serif; line-height: 1.6; }

.sct-tpl-service-hub h1, .sct-tpl-service-hub h2, .sct-tpl-service-hub h3, .sct-tpl-service-hub h4 {
    font-family: 'Rajdhani', sans-serif; font-weight: 700; letter-spacing: 0.5px; line-height: 1.2;
}

.sct-tpl-service-hub .sct-breadcrumb-wrap {
    background: #F5F5F7;
    padding: 100px 0 18px;
    border-bottom: 1px solid #e2e8f0;
}

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

.sct-tpl-service-hub .sct-breadcrumb a { color: #0A1628; font-weight: 600; }

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

.sct-tpl-service-hub .sct-breadcrumb .sep { color: #A0AEC0; }

.sct-tpl-service-hub .sct-breadcrumb .current { color: #5E7DF3; font-weight: 600; }

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 70px 0 90px;
    background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(30,42,61,0.85) 100%), url('/images/service_1_1777328071_69efdfc73b43a.webp') center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(94,125,243,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(94,125,243,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

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

.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(94,125,243,0.18);
    border: 1px solid rgba(94,125,243,0.45);
    color: #5E7DF3;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sct-tpl-service-hub .sct-hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.sct-tpl-service-hub .sct-hero h1 .accent { color: #5E7DF3; }

.sct-tpl-service-hub .sct-hero p.sct-lead {
    font-size: 1.1rem;
    color: #cbd5e0;
    margin-bottom: 30px;
    max-width: 560px;
}

.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;
    padding: 15px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.sct-tpl-service-hub .sct-btn-primary { background: #5E7DF3; color: #0A1628; }

.sct-tpl-service-hub .sct-btn-primary:hover { background: #E0A300; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(94,125,243,0.4); }

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

.sct-tpl-service-hub .sct-btn-outline:hover { border-color: #5E7DF3; color: #5E7DF3; }

.sct-tpl-service-hub .sct-hero-card {
    background: rgba(30,42,61,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(94,125,243,0.25);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.sct-tpl-service-hub .sct-hero-card h3 { font-size: 1.3rem; color: #5E7DF3; margin-bottom: 8px; }

.sct-tpl-service-hub .sct-hero-card p { color: #cbd5e0; margin-bottom: 20px; font-size: 0.95rem; }

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

.sct-tpl-service-hub .sct-hero-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #ffffff;
    font-size: 0.95rem;
}

.sct-tpl-service-hub .sct-hero-card li i { color: #5E7DF3; }

.sct-tpl-service-hub .sct-hero-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(94,125,243,0.12);
    border: 1px solid rgba(94,125,243,0.3);
    border-radius: 10px;
    padding: 14px 16px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-hero-phone:hover { background: rgba(94,125,243,0.2); }

.sct-tpl-service-hub .sct-hero-phone i { color: #5E7DF3; font-size: 1.2rem; }

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
}

.sct-tpl-service-hub .sct-stats-band {
    background: #0A1628;
    color: #ffffff;
    padding: 60px 0;
    border-top: 1px solid rgba(94,125,243,0.15);
    border-bottom: 1px solid rgba(94,125,243,0.15);
}

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

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

.sct-tpl-service-hub .sct-stat-item {
    padding: 20px 12px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

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

.sct-tpl-service-hub .sct-stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: rgba(94,125,243,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5E7DF3;
    font-size: 1.4rem;
}

.sct-tpl-service-hub .sct-stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #5E7DF3;
    line-height: 1;
    margin-bottom: 6px;
}

.sct-tpl-service-hub .sct-stat-label {
    color: #A0AEC0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

@media (max-width: 480px) {
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .sct-tpl-service-hub .sct-stat-item:last-child { border-bottom: none; }
}

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

.sct-tpl-service-hub .sct-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.sct-tpl-service-hub .sct-section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #5E7DF3;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #0A1628;
    margin-bottom: 16px;
}

.sct-tpl-service-hub .sct-section-sub {
    color: #4A5568;
    font-size: 1.05rem;
}

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

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

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

.sct-tpl-service-hub .sct-intro-content p:first-of-type::first-letter {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.4rem;
    font-weight: 700;
    color: #5E7DF3;
    float: left;
    line-height: 1;
    padding: 6px 12px 0 0;
}

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

.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: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(10,22,40,0.08);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10,22,40,0.15);
    border-color: rgba(94,125,243,0.4);
}

.sct-tpl-service-hub .sct-service-img {
    width: 100%;
    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;
}

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

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

.sct-tpl-service-hub .sct-service-body h3 { font-size: 1.3rem; color: #0A1628; margin-bottom: 12px; }

.sct-tpl-service-hub .sct-service-body p { color: #4A5568; font-size: 0.95rem; flex: 1; }

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

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

.sct-tpl-service-hub .sct-processus-section { background: #ffffff; }

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

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

.sct-tpl-service-hub .sct-step-card {
    text-align: center;
    padding: 30px 20px;
    background: #F5F5F7;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.sct-tpl-service-hub .sct-step-card:hover {
    border-color: #5E7DF3;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(94,125,243,0.15);
}

.sct-tpl-service-hub .sct-step-num {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #0A1628, #1E2A3D);
    color: #5E7DF3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.sct-tpl-service-hub .sct-step-card h3 { font-size: 1.05rem; color: #0A1628; margin-bottom: 10px; }

.sct-tpl-service-hub .sct-step-card p { color: #4A5568; font-size: 0.9rem; }

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

@media (max-width: 480px) { .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: 1fr; } }

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

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

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

.sct-tpl-service-hub .sct-why-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px 22px;
    text-align: center;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-why-card:hover {
    border-color: #5E7DF3;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(94,125,243,0.15);
}

.sct-tpl-service-hub .sct-why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0A1628, #1E2A3D);
    color: #5E7DF3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
}

.sct-tpl-service-hub .sct-why-card h3 { font-size: 1.15rem; color: #0A1628; margin-bottom: 10px; }

.sct-tpl-service-hub .sct-why-card p { color: #4A5568; font-size: 0.95rem; }

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

@media (max-width: 480px) { .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; } }

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

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

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

.sct-tpl-service-hub .sct-usecase-content h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: #0A1628;
    margin-bottom: 18px;
}

.sct-tpl-service-hub .sct-usecase-content p {
    color: #4A5568;
    margin-bottom: 16px;
    font-size: 1rem;
}

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

.sct-tpl-service-hub .sct-usecase-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #1a202c;
    font-weight: 500;
}

.sct-tpl-service-hub .sct-usecase-list i {
    color: #5E7DF3;
    background: rgba(94,125,243,0.15);
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-usecase-img img { height: 360px; }
}

.sct-tpl-service-hub .sct-engagements-section {
    background: linear-gradient(135deg, #0A1628 0%, #1E2A3D 100%);
    color: #ffffff;
    position: relative;
}

.sct-tpl-service-hub .sct-engagements-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(94,125,243,0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.sct-tpl-service-hub .sct-engagements-section .sct-section-sub { color: #A0AEC0; }

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

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

.sct-tpl-service-hub .sct-engagement-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(94,125,243,0.2);
    border-radius: 12px;
    padding: 36px 28px;
    transition: all 0.3s;
}

.sct-tpl-service-hub .sct-engagement-card:hover {
    background: rgba(94,125,243,0.08);
    border-color: #5E7DF3;
    transform: translateY(-4px);
}

.sct-tpl-service-hub .sct-engagement-icon {
    width: 60px;
    height: 60px;
    background: rgba(94,125,243,0.18);
    color: #5E7DF3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.sct-tpl-service-hub .sct-engagement-card h3 { font-size: 1.25rem; color: #ffffff; margin-bottom: 12px; }

.sct-tpl-service-hub .sct-engagement-card p { color: #cbd5e0; font-size: 0.95rem; }

@media (max-width: 992px) { .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; } }

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

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

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

.sct-tpl-service-hub .sct-faq-item[open] { border-color: #5E7DF3; }

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

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

.sct-tpl-service-hub .sct-faq-item summary::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #5E7DF3;
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.sct-tpl-service-hub .sct-faq-item p {
    padding: 0 24px 22px;
    color: #4A5568;
    line-height: 1.7;
}

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

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

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

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

.sct-tpl-service-hub .sct-maillage-cities a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #0A1628;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.25s;
    overflow-wrap: anywhere;
}

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

.sct-tpl-service-hub .sct-maillage-cities a:hover {
    border-color: #5E7DF3;
    color: #5E7DF3;
    transform: translateX(4px);
    box-shadow: 0 6px 18px rgba(94,125,243,0.12);
}

.sct-tpl-service-hub .sct-maillage-cities a i { color: #5E7DF3; font-size: 0.85rem; flex-shrink: 0; }

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

@media (max-width: 480px) { .sct-tpl-service-hub .sct-maillage-cities { grid-template-columns: 1fr; } }

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

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

.sct-tpl-service-hub .sct-maillage-services a {
    display: block;
    padding: 24px;
    background: #F5F5F7;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s;
    color: #0A1628;
}

.sct-tpl-service-hub .sct-maillage-services a:hover {
    border-color: #5E7DF3;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(94,125,243,0.12);
}

.sct-tpl-service-hub .sct-maillage-services a i {
    color: #5E7DF3;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-maillage-services a h3 {
    font-size: 1.1rem;
    color: #0A1628;
    margin-bottom: 6px;
}

.sct-tpl-service-hub .sct-maillage-services a p {
    color: #4A5568;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) { .sct-tpl-service-hub .sct-maillage-services { grid-template-columns: 1fr; } }

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

.sct-tpl-service-hub .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(94,125,243,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(94,125,243,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.sct-tpl-service-hub .sct-cta-final h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
}

.sct-tpl-service-hub .sct-cta-final p {
    color: #A0AEC0;
    font-size: 1.05rem;
    margin-bottom: 32px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

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

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

.sct-tpl-zone { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #1a202c; line-height: 1.6; }

.sct-tpl-zone h1, .sct-tpl-zone h2, .sct-tpl-zone h3, .sct-tpl-zone h4 {
    font-family: 'Rajdhani', sans-serif; font-weight: 700; letter-spacing: 0.5px; line-height: 1.2;
}

.sct-tpl-zone .sct-breadcrumb-wrap {
    background: #F5F5F7;
    padding: 110px 0 18px;
    border-bottom: 1px solid #e2e8f0;
}

.sct-tpl-zone .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.88rem;
    color: #4A5568;
    list-style: none;
}

.sct-tpl-zone .sct-breadcrumb a { color: #0A1628; font-weight: 500; }

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

.sct-tpl-zone .sct-breadcrumb i { font-size: 0.7rem; color: #A0AEC0; }

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

.sct-tpl-zone .sct-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(30,42,61,0.88) 100%), url('/images/service_1_1777328071_69efdfc73b43a.webp') center/cover no-repeat;
    color: #fff;
    padding: 80px 0 70px;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(94,125,243,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(94,125,243,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

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

.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(94,125,243,0.18);
    border: 1px solid rgba(94,125,243,0.45);
    color: #5E7DF3;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sct-tpl-zone .sct-hero-badge i { color: #E63946; }

.sct-tpl-zone .sct-hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin-bottom: 18px;
    line-height: 1.1;
    color: #fff;
}

.sct-tpl-zone .sct-hero-text h1 .sct-accent { color: #5E7DF3; }

.sct-tpl-zone .sct-hero-text .sct-lead {
    font-size: 1.1rem;
    color: #A0AEC0;
    margin-bottom: 28px;
    max-width: 580px;
}

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

.sct-tpl-zone .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.98rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.sct-tpl-zone .sct-btn-primary { background: #5E7DF3; color: #fff; }

.sct-tpl-zone .sct-btn-primary:hover { background: #4862c9; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(94,125,243,0.4); }

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

.sct-tpl-zone .sct-btn-outline:hover { border-color: #5E7DF3; color: #5E7DF3; }

.sct-tpl-zone .sct-hero-card {
    background: rgba(30,42,61,0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(94,125,243,0.3);
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.sct-tpl-zone .sct-hero-card h3 {
    font-size: 1.3rem;
    color: #5E7DF3;
    margin-bottom: 8px;
}

.sct-tpl-zone .sct-hero-card p {
    color: #A0AEC0;
    margin-bottom: 18px;
    font-size: 0.92rem;
}

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

.sct-tpl-zone .sct-hero-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    color: #fff;
    font-size: 0.93rem;
}

.sct-tpl-zone .sct-hero-card ul i { color: #5E7DF3; }

.sct-tpl-zone .sct-hero-card .sct-card-cta {
    display: block;
    text-align: center;
    background: #5E7DF3;
    color: #fff;
    padding: 13px;
    border-radius: 999px;
    font-weight: 700;
    transition: all 0.3s;
}

.sct-tpl-zone .sct-hero-card .sct-card-cta:hover { background: #4862c9; }

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-zone .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
}

@media (max-width: 640px) {
    .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: #0A1628;
    color: #fff;
    padding: 50px 0;
    border-top: 1px solid rgba(94,125,243,0.18);
    border-bottom: 1px solid rgba(94,125,243,0.18);
}

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

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

.sct-tpl-zone .sct-stat-item { padding: 12px; }

.sct-tpl-zone .sct-stat-icon {
    width: 54px; height: 54px; margin: 0 auto 12px;
    background: rgba(94,125,243,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #5E7DF3; font-size: 1.4rem;
}

.sct-tpl-zone .sct-stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.3rem; font-weight: 700;
    color: #5E7DF3; line-height: 1; margin-bottom: 5px;
}

.sct-tpl-zone .sct-stat-label {
    color: #A0AEC0; font-size: 0.82rem;
    text-transform: uppercase; letter-spacing: 1px;
}

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

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

.sct-tpl-zone .sct-section-head {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 50px;
}

.sct-tpl-zone .sct-section-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #5E7DF3;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.sct-tpl-zone .sct-section-head h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #0A1628;
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-section-head p {
    color: #4A5568;
    font-size: 1rem;
}

.sct-tpl-zone .sct-section-dark { background: #0A1628; color: #fff; }

.sct-tpl-zone .sct-section-dark .sct-section-head h2 { color: #fff; }

.sct-tpl-zone .sct-section-dark .sct-section-head p { color: #A0AEC0; }

.sct-tpl-zone .sct-section-light { background: #F5F5F7; }

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

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

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

.sct-tpl-zone .sct-intro-img {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.sct-tpl-zone .sct-intro-img img { width: 100%; height: 460px; object-fit: cover; }

.sct-tpl-zone .sct-intro-text h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: #0A1628;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-intro-text p {
    color: #4A5568;
    margin-bottom: 16px;
    font-size: 1rem;
}

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

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

.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: 14px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(10,22,40,0.08);
    transition: all 0.4s;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.sct-tpl-zone .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10,22,40,0.15);
    border-color: rgba(94,125,243,0.4);
}

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

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

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

.sct-tpl-zone .sct-service-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,22,40,0.45) 100%);
}

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

.sct-tpl-zone .sct-service-icon {
    width: 48px; height: 48px;
    background: #0A1628;
    color: #5E7DF3;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 14px;
    margin-top: -45px;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(10,22,40,0.3);
}

.sct-tpl-zone .sct-service-body h3 {
    font-size: 1.18rem;
    color: #0A1628;
    margin-bottom: 10px;
}

.sct-tpl-zone .sct-service-body p {
    color: #4A5568;
    font-size: 0.93rem;
    flex: 1;
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0A1628;
    font-weight: 600;
    font-size: 0.88rem;
    transition: gap 0.3s, color 0.3s;
}

.sct-tpl-zone .sct-service-link:hover { color: #5E7DF3; gap: 10px; }

@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: #0A1628; color: #fff; }

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

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

.sct-tpl-zone .sct-zones-text h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: #fff;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-zones-text p {
    color: #A0AEC0;
    margin-bottom: 22px;
}

.sct-tpl-zone .sct-zones-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.sct-tpl-zone .sct-zones-list li {
    background: rgba(94,125,243,0.14);
    border: 1px solid rgba(94,125,243,0.35);
    color: #5E7DF3;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.sct-tpl-zone .sct-zones-list li i { font-size: 0.75rem; }

.sct-tpl-zone .sct-zones-map {
    background: #1E2A3D;
    border: 1px solid rgba(94,125,243,0.25);
    border-radius: 14px;
    padding: 36px;
    text-align: center;
}

.sct-tpl-zone .sct-zones-map .sct-map-icon {
    font-size: 3.6rem;
    color: #5E7DF3;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-zones-map h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.sct-tpl-zone .sct-zones-map p {
    color: #A0AEC0;
    margin-bottom: 22px;
}

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

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

.sct-tpl-zone .sct-usecase-card {
    max-width: 880px;
    margin: 0 auto;
    background: #fff;
    border-left: 4px solid #5E7DF3;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.sct-tpl-zone .sct-usecase-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.sct-tpl-zone .sct-usecase-icon {
    width: 56px; height: 56px;
    background: rgba(94,125,243,0.15);
    color: #5E7DF3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-usecase-card h3 {
    font-size: 1.4rem;
    color: #0A1628;
}

.sct-tpl-zone .sct-usecase-card p {
    color: #4A5568;
    margin-bottom: 14px;
    line-height: 1.7;
}

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

@media (max-width: 640px) {
    .sct-tpl-zone .sct-usecase-card { padding: 28px 22px; }
}

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

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

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

.sct-tpl-zone .sct-engagement-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.sct-tpl-zone .sct-engagement-card:hover {
    border-color: #5E7DF3;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(94,125,243,0.15);
}

.sct-tpl-zone .sct-engagement-icon {
    width: 68px; height: 68px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #0A1628, #1E2A3D);
    color: #5E7DF3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.sct-tpl-zone .sct-engagement-card h3 {
    font-size: 1.15rem;
    color: #0A1628;
    margin-bottom: 10px;
}

.sct-tpl-zone .sct-engagement-card p {
    color: #4A5568;
    font-size: 0.93rem;
}

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

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

.sct-tpl-zone .sct-local-spec-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-top: 4px solid #5E7DF3;
}

.sct-tpl-zone .sct-local-spec-card h3 {
    font-size: 1.4rem;
    color: #0A1628;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.sct-tpl-zone .sct-local-spec-card p {
    color: #4A5568;
    margin-bottom: 14px;
    line-height: 1.7;
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-local-spec-card { padding: 28px 22px; }
}

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

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

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

.sct-tpl-zone .sct-faq-item[open] { border-color: #5E7DF3; }

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

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

.sct-tpl-zone .sct-faq-item summary::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #5E7DF3;
    flex-shrink: 0;
}

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

.sct-tpl-zone .sct-faq-item p {
    padding: 0 24px 22px;
    color: #4A5568;
    line-height: 1.7;
}

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

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

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

.sct-tpl-zone .sct-maillage-link {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 18px;
    color: #0A1628;
    font-weight: 500;
    font-size: 0.93rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sct-tpl-zone .sct-maillage-link:hover {
    border-color: #5E7DF3;
    color: #5E7DF3;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(94,125,243,0.15);
}

.sct-tpl-zone .sct-maillage-link i { color: #5E7DF3; font-size: 0.85rem; }

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

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

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

.sct-tpl-zone .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(94,125,243,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.sct-tpl-zone .sct-cta-final-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.sct-tpl-zone .sct-cta-final h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 18px;
    color: #fff;
}

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

.sct-tpl-zone .sct-cta-final p {
    color: #A0AEC0;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

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

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

@media (max-width: 768px) {
            .emergency-bar { font-size: 0.78rem; padding: 6px 12px; }
            .header { top: 52px; }
            .hero { padding: 130px 16px 60px; min-height: auto; }
            .hero-grid { grid-template-columns: 1fr; gap: 40px; }
            .hero-card { padding: 24px; }
            section { padding: 60px 0; }
            .container { padding: 0 16px; }
            .devis-grid,
            .about-grid,
            .zones-content,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            .form-card { padding: 24px; }
            .about-img img { height: 350px; }
            .about-img::before { top: 12px; left: 12px; right: -12px; bottom: -12px; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { justify-content: center; text-align: center; flex-direction: column; }
            .floating-cta { display: flex; }
        }

.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(30,42,61,0.85) 100%), url('https://webflash.pro/storage/generated/344/hero_1777328045_69efdfad17e1f.webp') center/cover no-repeat;
    color: var(--white);
    padding: 180px 0 100px;
    text-align: center;
    overflow: hidden;
}

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

.page-hero-inner { position: relative; z-index: 1; max-width: 800px; padding: 0 20px; }

.page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,184,0,0.15);
    border: 1px solid rgba(255,184,0,0.4);
    color: var(--secondary);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: 18px;
}

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

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

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(30,42,61,0.6);
    border: 1px solid rgba(255,184,0,0.2);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--gray);
}

.breadcrumb a { color: var(--white); transition: color 0.3s; }

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

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

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

.sitemap-section + .sitemap-section { padding-top: 0; }

.sitemap-block {
    background: var(--light);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid #e2e8f0;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.sitemap-block:hover {
    border-color: rgba(255,184,0,0.4);
    box-shadow: 0 12px 30px rgba(10,22,40,0.06);
}

.sitemap-block-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.sitemap-icon {
    width: 56px; height: 56px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 18px rgba(10,22,40,0.18);
}

.sitemap-block h2 {
    font-size: 1.7rem;
    color: var(--primary);
    margin: 0;
}

.sitemap-block .block-sub {
    color: var(--gray-dark);
    font-size: 0.95rem;
    margin: 6px 0 24px 72px;
}

@media (max-width: 600px) {
    .sitemap-block { padding: 28px 22px; }
    .sitemap-block .block-sub { margin-left: 0; }
}

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.3s;
    line-height: 1.3;
}

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

.chip:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10,22,40,0.18);
}

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

.chip.featured {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
    font-weight: 700;
}

.chip.featured:hover {
    background: var(--secondary-dark);
    color: var(--primary);
    border-color: var(--secondary-dark);
}

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

.subgroup {
    background: var(--white);
    border-radius: 10px;
    padding: 24px 26px;
    margin-bottom: 18px;
    border-left: 4px solid var(--secondary);
    box-shadow: 0 3px 12px rgba(10,22,40,0.04);
}

.subgroup h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subgroup h3 i {
    color: var(--secondary);
    font-size: 1rem;
}

.subgroup .chips .chip {
    background: var(--light);
}

.subgroup .chips .chip:hover {
    background: var(--primary);
    color: var(--white);
}

.cta-block {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: var(--radius);
    padding: 50px 40px;
    text-align: center;
    margin: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(255,184,0,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.cta-block h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
}

.cta-block h2 span { color: var(--secondary); }

.cta-block p {
    color: var(--gray);
    margin-bottom: 28px;
    font-size: 1.05rem;
    position: relative;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

footer {
    background: var(--primary);
    color: var(--gray);
    padding: 70px 0 30px;
    border-top: 1px solid rgba(255,184,0,0.15);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

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

.footer-logo span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.footer-col p { font-size: 0.92rem; line-height: 1.7; }

.footer-title {
    display: block;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.footer-col ul a {
    color: var(--gray);
    transition: color 0.3s, padding-left 0.3s;
    font-size: 0.92rem;
}

.footer-col ul a:hover {
    color: var(--secondary);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.92rem;
}

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

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

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

.legal-links { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }

.legal-links a { color: var(--gray); transition: color 0.3s; }

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

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

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}