:root {
            --primary: #0A2D6E;
            --primary-dark: #061d4a;
            --primary-light: #1e4a9e;
            --secondary: #E1000F;
            --secondary-dark: #b8000c;
            --white: #FFFFFF;
            --gray-light: #F4F6FA;
            --gray-mid: #d8dde8;
            --text: #1A1A2E;
            --text-soft: #555;
            --gold: #C9A961;
            --shadow-sm: 0 2px 8px rgba(10,45,110,.06);
            --shadow-md: 0 8px 24px rgba(10,45,110,.10);
            --shadow-lg: 0 20px 48px rgba(10,45,110,.16);
            --radius: 8px;
            --radius-lg: 14px;
            --transition: .3s cubic-bezier(.4,.0,.2,1);
        }

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

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

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

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

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--primary); }

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

.tricolore-stripe { display: inline-flex; gap: 4px; height: 32px; }

.tricolore-stripe span { width: 8px; height: 100%; }

.tricolore-stripe span:nth-child(1) { background: var(--primary); }

.tricolore-stripe span:nth-child(2) { background: var(--white); border: 1px solid var(--gray-mid); }

.tricolore-stripe span:nth-child(3) { background: var(--secondary); }

.topbar {
            background: var(--primary-dark);
            color: var(--white);
            font-size: .85rem;
            padding: 8px 0;
        }

.topbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }

.topbar-left a { display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }

.topbar-left a:hover { color: var(--gold); }

.topbar-badge {
            background: var(--secondary);
            color: var(--white);
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 600;
            font-size: .8rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

.header {
            position: sticky;
            top: 0;
            background: var(--white);
            box-shadow: var(--shadow-sm);
            z-index: 1000;
            border-bottom: 3px solid var(--secondary);
        }

.header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 24px;
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

.logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--primary);
        }

.logo img { height: 48px; width: auto; }

.logo-text { font-size: 1.1rem; line-height: 1.1; max-width: 180px; }

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

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

.nav a {
            font-weight: 500;
            color: var(--primary);
            position: relative;
            padding: 6px 0;
            transition: var(--transition);
        }

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

.nav a:not(.btn-cta-nav):hover::after { width: 100%; }

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

.nav .btn-cta-nav {
            background: var(--secondary);
            color: var(--white) !important;
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(225,0,15,.25);
        }

.nav .btn-cta-nav:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(225,0,15,.4);
        }

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

.hero {
            position: relative;
            min-height: 92vh;
            display: flex;
            align-items: center;
            color: var(--white);
            overflow: hidden;
            padding: 80px 0 60px;
        }

.hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(6,29,74,.85), rgba(10,45,110,.75)), url('https://webflash.pro/images/hero_1778166117_69fca965a22f5.webp');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

.hero-tricolore {
            position: absolute;
            top: 0;
            left: 30px;
            width: 6px;
            height: 100%;
            display: flex;
            flex-direction: column;
            z-index: 2;
        }

.hero-tricolore span { flex: 1; }

.hero-tricolore span:nth-child(1) { background: var(--primary-light); }

.hero-tricolore span:nth-child(2) { background: var(--white); }

.hero-tricolore span:nth-child(3) { background: var(--secondary); }

.hero-content { position: relative; z-index: 3; width: 100%; }

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

.hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,.12);
            border: 1px solid rgba(255,255,255,.25);
            padding: 8px 18px;
            border-radius: 30px;
            font-size: .9rem;
            font-weight: 500;
            margin-bottom: 24px;
            backdrop-filter: blur(8px);
        }

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

.hero h1 {
            color: var(--white);
            font-size: clamp(2.2rem, 5vw, 3.6rem);
            font-weight: 800;
            margin-bottom: 18px;
        }

.hero h1 strong { color: var(--gold); display: block; }

.hero-divider {
            width: 80px;
            height: 4px;
            background: var(--secondary);
            margin: 22px 0;
        }

.hero p.lead {
            font-size: 1.15rem;
            line-height: 1.7;
            margin-bottom: 32px;
            opacity: .94;
            max-width: 580px;
        }

.hero-cta {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 38px;
        }

.btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

.btn-primary {
            background: var(--secondary);
            color: var(--white);
            box-shadow: 0 8px 22px rgba(225,0,15,.35);
        }

.btn-primary:hover {
            background: var(--secondary-dark);
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(225,0,15,.5);
        }

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

.btn-outline:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-3px);
        }

.hero-badges {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
            max-width: 580px;
        }

.hero-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: rgba(255,255,255,.08);
            border-left: 3px solid var(--secondary);
            border-radius: 6px;
            font-size: .92rem;
            backdrop-filter: blur(6px);
        }

.hero-badge i {
            color: var(--gold);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

.hero-devis-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 30px;
            box-shadow: var(--shadow-lg);
            color: var(--text);
            position: relative;
        }

.hero-devis-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--primary) 0% 33%, var(--white) 33% 66%, var(--secondary) 66% 100%);
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        }

.hero-devis-card h2 {
            font-size: 1.5rem;
            margin-bottom: 6px;
            margin-top: 8px;
        }

.hero-devis-card .subtitle {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 18px;
            font-size: .95rem;
        }

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

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

.form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 11px 14px;
            border: 1.5px solid var(--gray-mid);
            border-radius: var(--radius);
            font-family: inherit;
            font-size: .95rem;
            transition: var(--transition);
            background: var(--white);
            color: var(--text);
        }

.form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(10,45,110,.12);
        }

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

.btn-form {
            width: 100%;
            background: var(--secondary);
            color: var(--white);
            border: none;
            padding: 14px;
            border-radius: var(--radius);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: inherit;
        }

.btn-form:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(225,0,15,.3);
        }

.form-status { margin-top: 12px; text-align: center; }

.rush-banner {
            background: var(--secondary);
            color: var(--white);
            text-align: center;
            padding: 18px 24px;
            font-weight: 600;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }

.rush-banner i { font-size: 1.3rem; }

section { padding: 90px 0; }

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

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

.section-head h2 {
            font-size: clamp(2rem, 4vw, 2.6rem);
            margin-bottom: 18px;
        }

.section-head .underline {
            width: 80px;
            height: 4px;
            background: var(--secondary);
            margin: 0 auto 18px;
        }

.section-head p {
            color: var(--text-soft);
            max-width: 720px;
            margin: 0 auto;
            font-size: 1.05rem;
        }

.stats {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
            padding: 70px 0;
        }

.stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-light) 0% 33%, var(--white) 33% 66%, var(--secondary) 66% 100%);
        }

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

.stat-item .stat-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 14px;
            background: rgba(255,255,255,.1);
            border: 2px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--gold);
        }

.stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
            margin-bottom: 8px;
        }

.stat-label {
            font-size: .95rem;
            opacity: .9;
            font-weight: 500;
        }

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

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

.service-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            border-left: 4px solid transparent;
            width: calc((100% - 56px) / 3);
            min-width: 280px;
            max-width: 380px;
        }

.service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-left-color: var(--secondary);
        }

.service-image {
            position: relative;
            width: 100%;
            padding-top: 60%;
            background: var(--gray-mid);
        }

.service-image img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }

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

.service-icon-badge {
            position: absolute;
            bottom: -22px;
            left: 22px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: var(--shadow-md);
            border: 3px solid var(--white);
        }

.service-card:hover .service-icon-badge { background: var(--secondary); }

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

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

.service-body p {
            color: var(--text-soft);
            font-size: .95rem;
            line-height: 1.6;
            flex: 1;
        }

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

.service-link:hover { gap: 12px; }

.why-us {
            background: var(--white);
            position: relative;
        }

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

.why-card {
            text-align: center;
            padding: 32px 18px;
            background: var(--gray-light);
            border-radius: var(--radius-lg);
            transition: var(--transition);
            border-top: 4px solid var(--primary);
            position: relative;
        }

.why-card:nth-child(odd) { border-top-color: var(--secondary); }

.why-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            background: var(--white);
        }

.why-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 18px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            border: 3px solid var(--gold);
            transition: var(--transition);
        }

.why-card:nth-child(odd) .why-icon { background: var(--secondary); }

.why-card:hover .why-icon { transform: scale(1.08) rotate(-5deg); }

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

.why-card p {
            font-size: .88rem;
            color: var(--text-soft);
            line-height: 1.5;
        }

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

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

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

.about-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 420px;
        }

.about-image-wrap::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary) 0% 33%, var(--white) 33% 66%, var(--secondary) 66% 100%);
            z-index: -1;
            border-radius: var(--radius);
        }

.about-text h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 20px; }

.about-text .underline-left {
            width: 60px;
            height: 4px;
            background: var(--secondary);
            margin-bottom: 22px;
        }

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

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

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

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

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

.zones::before, .zones::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 6px;
            background: linear-gradient(180deg, var(--primary) 0% 33%, var(--white) 33% 66%, var(--secondary) 66% 100%);
        }

.zones::before { left: 0; }

.zones::after { right: 0; }

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

.zones-text h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 18px; }

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

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

.zones-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 14px 16px;
            background: var(--gray-light);
            border-radius: var(--radius);
            border-left: 3px solid var(--primary);
            transition: var(--transition);
        }

.zones-list li:nth-child(odd) { border-left-color: var(--secondary); }

.zones-list li:hover {
            transform: translateX(4px);
            background: var(--white);
            box-shadow: var(--shadow-sm);
        }

.zones-list li i {
            color: var(--secondary);
            margin-top: 4px;
            flex-shrink: 0;
        }

.zones-list li strong { display: block; color: var(--primary); margin-bottom: 2px; }

.zones-list li span { font-size: .85rem; color: var(--text-soft); }

.zones-visual {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: var(--radius-lg);
            padding: 50px 30px;
            color: var(--white);
            text-align: center;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }

.zones-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(225,0,15,.2), transparent 50%);
        }

.zones-visual i {
            font-size: 5rem;
            color: var(--gold);
            margin-bottom: 20px;
        }

.zones-visual h3 {
            color: var(--white);
            font-size: 1.8rem;
            margin-bottom: 12px;
            position: relative;
        }

.zones-visual p { opacity: .9; position: relative; }

.cta-band {
            background: var(--secondary);
            color: var(--white);
            padding: 70px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

.cta-band::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0% 33%, var(--white) 33% 66%, var(--secondary-dark) 66% 100%);
        }

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

.cta-band p { font-size: 1.1rem; margin-bottom: 28px; opacity: .95; }

.cta-band .btn-primary {
            background: var(--white);
            color: var(--secondary);
            box-shadow: 0 8px 22px rgba(0,0,0,.2);
        }

.cta-band .btn-primary:hover {
            background: var(--primary);
            color: var(--white);
        }

.faq { background: var(--gray-light); }

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

.faq-item {
            background: var(--white);
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

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

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

.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: var(--transition);
            flex-shrink: 0;
        }

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

.faq-item .faq-answer {
            padding: 0 24px 22px;
            color: var(--text-soft);
            line-height: 1.7;
        }

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

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

.contact-info-card,
        .hours-card,
        .contact-form-card {
            background: var(--gray-light);
            border-radius: var(--radius-lg);
            padding: 32px;
            border-top: 4px solid var(--primary);
        }

.contact-info-card h3,
        .hours-card h3,
        .contact-form-card h3 {
            font-size: 1.4rem;
            margin-bottom: 22px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

.contact-info-card h3 i,
        .hours-card h3 i { color: var(--secondary); }

.info-item {
            display: flex;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid var(--gray-mid);
        }

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

.info-icon {
            width: 42px;
            height: 42px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: .95rem;
        }

.info-item:nth-child(even) .info-icon { background: var(--secondary); }

.info-item span.info-label {
            display: block;
            font-size: .8rem;
            color: var(--text-soft);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            margin-bottom: 2px;
        }

.info-item p, .info-item a { color: var(--primary); font-weight: 500; }

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

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

.hours-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 13px 0;
            border-bottom: 1px solid var(--gray-mid);
            font-size: .95rem;
        }

.hours-list li:last-child { border-bottom: none; }

.hours-list .day { font-weight: 600; color: var(--primary); }

.hours-list .hours { color: var(--text-soft); text-align: right; }

.hours-list .closed { color: var(--secondary); font-weight: 500; }

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

.map-wrap {
            margin-top: 50px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 4px solid var(--white);
            outline: 1px solid var(--gray-mid);
        }

.map-wrap iframe { display: block; width: 100%; }

.sticky-devis {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: var(--secondary);
            color: var(--white);
            padding: 14px 22px;
            border-radius: 30px;
            font-weight: 700;
            box-shadow: 0 10px 28px rgba(225,0,15,.4);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 999;
            transition: var(--transition);
            animation: pulseSticky 2.4s infinite;
        }

.sticky-devis:hover {
            background: var(--secondary-dark);
            transform: translateY(-3px);
            color: var(--white);
        }

@keyframes pulseSticky {
            0%, 100% { box-shadow: 0 10px 28px rgba(225,0,15,.4); }
            50% { box-shadow: 0 10px 28px rgba(225,0,15,.7), 0 0 0 8px rgba(225,0,15,.15); }
        }

footer {
            background: var(--primary-dark);
            color: rgba(255,255,255,.85);
            padding: 70px 0 0;
            position: relative;
        }

footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-light) 0% 33%, var(--white) 33% 66%, var(--secondary) 66% 100%);
        }

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

.footer-col p.footer-title {
            color: var(--white);
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 18px;
            position: relative;
            padding-bottom: 10px;
        }

.footer-col p.footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 36px;
            height: 3px;
            background: var(--secondary);
        }

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

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

.footer-logo span {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            color: var(--white);
            font-weight: 700;
        }

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

.footer-col ul li {
            margin-bottom: 10px;
            font-size: .92rem;
        }

.footer-col ul li a {
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

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

.footer-col ul li i { color: var(--secondary); width: 16px; }

.footer-engagement {
            background: rgba(255,255,255,.08);
            padding: 14px;
            border-radius: var(--radius);
            margin-top: 14px;
            border-left: 3px solid var(--gold);
            font-size: .88rem;
        }

.footer-engagement strong { color: var(--gold); }

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

.footer-bottom a { color: rgba(255,255,255,.7); transition: var(--transition); }

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

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

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

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

.modal-content {
            background: var(--white);
            border-radius: var(--radius-lg);
            max-width: 600px;
            width: 100%;
            max-height: 85vh;
            overflow-y: auto;
            padding: 36px;
            position: relative;
            border-top: 6px solid var(--secondary);
        }

.modal-close {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 36px;
            height: 36px;
            background: var(--gray-light);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1rem;
            color: var(--primary);
            transition: var(--transition);
        }

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

.modal-content p.modal-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 18px;
        }

.modal-content dl { margin-bottom: 12px; }

.modal-content dt { font-weight: 600; color: var(--primary); margin-top: 12px; }

.modal-content dd { color: var(--text-soft); margin-left: 0; }

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

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

.gallery-item {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            aspect-ratio: 4 / 3;
            background: var(--gray-mid);
            transition: var(--transition);
            border-bottom: 4px solid var(--secondary);
        }

.gallery-item:nth-child(even) { border-bottom-color: var(--primary); }

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

.gallery-item:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

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

.gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 55%, rgba(6,29,74,.55) 100%);
            pointer-events: none;
            transition: var(--transition);
        }

.gallery-item:hover::after { background: linear-gradient(180deg, transparent 40%, rgba(225,0,15,.45) 100%); }

a.gallery-item { display: block; cursor: zoom-in; color: inherit; }

.gallery-zoom-icon {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,.95);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .95rem;
            z-index: 2;
            opacity: 0;
            transform: scale(.7);
            transition: var(--transition);
            pointer-events: none;
            box-shadow: var(--shadow-md);
        }

.gallery-item:hover .gallery-zoom-icon,
        .gallery-item:focus-visible .gallery-zoom-icon { opacity: 1; transform: scale(1); color: var(--secondary); }

.lightbox-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(6,29,74,.93);
            z-index: 3000;
            justify-content: center;
            align-items: center;
            padding: 24px;
            animation: lightboxFade .25s ease;
        }

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

.lightbox-content {
            position: relative;
            max-width: min(1200px, 96vw);
            max-height: 92vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.lightbox-content img {
            max-width: 100%;
            max-height: 92vh;
            width: auto;
            height: auto;
            display: block;
            border-radius: var(--radius);
            box-shadow: 0 30px 60px rgba(0,0,0,.55);
            object-fit: contain;
            background: var(--white);
        }

.lightbox-close {
            position: absolute;
            top: -14px;
            right: -14px;
            width: 44px;
            height: 44px;
            background: var(--secondary);
            color: var(--white);
            border: 3px solid var(--white);
            border-radius: 50%;
            cursor: pointer;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            transition: var(--transition);
            font-family: inherit;
        }

.lightbox-close:hover { background: var(--secondary-dark); transform: scale(1.05); }

.lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,.92);
            color: var(--primary);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            transition: var(--transition);
            font-family: inherit;
        }

.lightbox-nav:hover { background: var(--white); color: var(--secondary); transform: translateY(-50%) scale(1.05); }

.lightbox-prev { left: -22px; }

.lightbox-next { right: -22px; }

.lightbox-counter {
            position: absolute;
            bottom: -34px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--white);
            font-size: .9rem;
            font-weight: 500;
            opacity: .85;
            white-space: nowrap;
        }

@keyframes lightboxFade {
            from { opacity: 0; }
            to { opacity: 1; }
        }

@media (max-width: 768px) {
            .lightbox-overlay { padding: 12px; }
            .lightbox-close { top: 6px; right: 6px; width: 38px; height: 38px; }
            .lightbox-prev { left: 6px; }
            .lightbox-next { right: 6px; }
            .lightbox-nav { width: 40px; height: 40px; }
            .lightbox-counter { bottom: -28px; font-size: .82rem; }
            .gallery-zoom-icon { width: 34px; height: 34px; opacity: 1; transform: scale(1); }
        }

@media (max-width: 1024px) {
            .hero-grid { grid-template-columns: 1fr; gap: 40px; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .why-grid { grid-template-columns: repeat(3, 1fr); }
            .about-grid, .zones-content, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .service-card { width: calc((100% - 28px) / 2); }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
        }

@media (max-width: 768px) {
            section { padding: 60px 0; }
            .container { padding: 0 16px; }
            .header-inner { padding: 12px 16px; }
            .logo-text { font-size: .9rem; max-width: 140px; }
            .logo img { height: 40px; }
            .hero { min-height: auto; padding: 100px 0 50px; }
            .hero-tricolore { left: 10px; width: 4px; }
            .hero-badges { grid-template-columns: 1fr; }
            .hero-cta { flex-direction: column; }
            .hero-cta .btn { width: 100%; justify-content: center; }
            .hero-devis-card { padding: 22px; }
            .stats-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
            .stat-number { font-size: 2.2rem; }
            .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
            .service-card { width: 100%; max-width: 420px; }
            .zones-list { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .contact-form-card .form-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .sticky-devis { padding: 12px 18px; font-size: .9rem; bottom: 16px; right: 16px; }
            .topbar { font-size: .78rem; }
            .topbar-inner { justify-content: center; }
            .modal-content { padding: 24px; }
            .about-image-wrap img { min-height: 280px; }
            .gallery-grid { grid-template-columns: 1fr; gap: 18px; }
        }

@media (max-width: 480px) {
            .why-grid { grid-template-columns: 1fr; }
            .topbar-left { gap: 10px; font-size: .75rem; }
            .stats-grid { grid-template-columns: 1fr 1fr; }
        }

@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%; }

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

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

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

.sct-tpl-service-hub { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #1A1A2E; line-height: 1.65; }

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

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 70px 0 70px;
    color: #fff;
    background-image: linear-gradient(rgba(6,29,74,.88), rgba(10,45,110,.78)), url('/images/service_1_1778166137_69fca9798628a.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 30px;
    width: 6px; height: 100%;
    background: linear-gradient(180deg, #1e4a9e 0% 33%, #ffffff 33% 66%, #E1000F 66% 100%);
    z-index: 1;
}

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

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

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

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

.sct-tpl-service-hub .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: .88rem;
    margin-bottom: 22px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 30px;
    padding: 8px 16px;
    backdrop-filter: blur(6px);
}

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

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

.sct-tpl-service-hub .sct-bc-sep { opacity: .5; }

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

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

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 30px;
    font-size: .82rem;
    font-weight: 500;
    backdrop-filter: blur(6px);
}

.sct-tpl-service-hub .sct-hero-badge i { color: #C9A961; }

.sct-tpl-service-hub .sct-hero-text h1 {
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 18px;
}

.sct-tpl-service-hub .sct-hero-text h1 strong { color: #C9A961; display: block; font-weight: 800; }

.sct-tpl-service-hub .sct-hero-divider {
    width: 70px; height: 4px;
    background: #E1000F;
    margin: 18px 0;
}

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 28px;
    opacity: .94;
    max-width: 580px;
}

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

.sct-tpl-service-hub .sct-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 26px;
    border-radius: 30px;
    font-weight: 600;
    font-size: .98rem;
    transition: .3s;
    cursor: pointer;
}

.sct-tpl-service-hub .sct-btn-primary {
    background: #E1000F; color: #fff;
    box-shadow: 0 8px 22px rgba(225,0,15,.35);
}

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: #b8000c;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(225,0,15,.5);
}

.sct-tpl-service-hub .sct-btn-outline {
    background: transparent; color: #fff;
    border: 2px solid #fff;
}

.sct-tpl-service-hub .sct-btn-outline:hover {
    background: #fff; color: #0A2D6E;
    transform: translateY(-3px);
}

.sct-tpl-service-hub .sct-hero-trust {
    display: flex; flex-wrap: wrap; gap: 18px;
    font-size: .88rem;
}

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

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

.sct-tpl-service-hub .sct-hero-card {
    background: #fff;
    color: #1A1A2E;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 20px 48px rgba(10,45,110,.25);
    position: relative;
}

.sct-tpl-service-hub .sct-hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0A2D6E 0% 33%, #ffffff 33% 66%, #E1000F 66% 100%);
    border-radius: 14px 14px 0 0;
}

.sct-tpl-service-hub .sct-hero-card h2 {
    font-size: 1.4rem;
    margin: 8px 0 18px;
    color: #0A2D6E;
}

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

.sct-tpl-service-hub .sct-hero-card-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eef0f6;
    font-size: .94rem;
}

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

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

.sct-tpl-service-hub .sct-hero-card-list strong { display: block; color: #0A2D6E; margin-bottom: 2px; }

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

.sct-tpl-service-hub .sct-stats-band {
    background: linear-gradient(135deg, #0A2D6E 0%, #061d4a 100%);
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-stats-band::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e4a9e 0% 33%, #ffffff 33% 66%, #E1000F 66% 100%);
}

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

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

.sct-tpl-service-hub .sct-stat-icon {
    width: 60px; height: 60px;
    margin: 0 auto 14px;
    background: rgba(255,255,255,.08);
    border: 2px solid #C9A961;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: #C9A961;
}

.sct-tpl-service-hub .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.sct-tpl-service-hub .sct-stat-label {
    font-size: .92rem;
    opacity: .9;
    font-weight: 500;
}

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

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

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

.sct-tpl-service-hub .sct-section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    margin-bottom: 16px;
}

.sct-tpl-service-hub .sct-section-underline {
    width: 70px; height: 4px;
    background: #E1000F;
    margin: 0 auto 16px;
}

.sct-tpl-service-hub .sct-section-lead {
    color: #555;
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.02rem;
}

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

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

.sct-tpl-service-hub .sct-intro-content p {
    margin-bottom: 18px;
    color: #444;
    font-size: 1.04rem;
    line-height: 1.8;
}

.sct-tpl-service-hub .sct-intro-content p strong { color: #0A2D6E; }

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

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

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

.sct-tpl-service-hub .sct-service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(10,45,110,.06);
    transition: .3s;
    border-left: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(10,45,110,.16);
    border-left-color: #E1000F;
}

.sct-tpl-service-hub .sct-service-image {
    position: relative;
    width: 100%;
    padding-top: 60%;
    background: #d8dde8;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-service-image img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

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

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

.sct-tpl-service-hub .sct-service-body h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0A2D6E;
}

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

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

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

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

.sct-tpl-service-hub .sct-process-step {
    text-align: center;
    padding: 26px 16px;
    background: #F4F6FA;
    border-radius: 14px;
    border-top: 4px solid #0A2D6E;
    position: relative;
    transition: .3s;
}

.sct-tpl-service-hub .sct-process-step:nth-child(even) { border-top-color: #E1000F; }

.sct-tpl-service-hub .sct-process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(10,45,110,.12);
    background: #fff;
}

.sct-tpl-service-hub .sct-process-num {
    position: absolute;
    top: -16px; right: 16px;
    width: 32px; height: 32px;
    background: #C9A961;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    font-family: 'Playfair Display', serif;
}

.sct-tpl-service-hub .sct-process-icon {
    width: 60px; height: 60px;
    margin: 0 auto 14px;
    background: #0A2D6E;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    transition: .3s;
}

.sct-tpl-service-hub .sct-process-step:nth-child(even) .sct-process-icon { background: #E1000F; }

.sct-tpl-service-hub .sct-process-step:hover .sct-process-icon { transform: scale(1.08); }

.sct-tpl-service-hub .sct-process-step h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #0A2D6E;
}

.sct-tpl-service-hub .sct-process-step p {
    font-size: .85rem;
    color: #555;
    line-height: 1.5;
}

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

.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: #fff;
    padding: 32px 22px;
    border-radius: 14px;
    text-align: center;
    transition: .3s;
    border-top: 4px solid #0A2D6E;
}

.sct-tpl-service-hub .sct-why-card:nth-child(odd) { border-top-color: #E1000F; }

.sct-tpl-service-hub .sct-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(10,45,110,.12);
}

.sct-tpl-service-hub .sct-why-icon {
    width: 70px; height: 70px;
    margin: 0 auto 16px;
    background: #0A2D6E;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    border: 3px solid #C9A961;
    transition: .3s;
}

.sct-tpl-service-hub .sct-why-card:nth-child(odd) .sct-why-icon { background: #E1000F; }

.sct-tpl-service-hub .sct-why-card:hover .sct-why-icon { transform: scale(1.08) rotate(-5deg); }

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

.sct-tpl-service-hub .sct-why-card p {
    font-size: .9rem;
    color: #555;
    line-height: 1.6;
}

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

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

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

.sct-tpl-service-hub .sct-usecase-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(10,45,110,.16);
}

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

.sct-tpl-service-hub .sct-usecase-text h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    margin-bottom: 16px;
}

.sct-tpl-service-hub .sct-usecase-text .sct-section-underline { margin: 0 0 18px; }

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

.sct-tpl-service-hub .sct-usecase-text strong { color: #0A2D6E; }

.sct-tpl-service-hub .sct-engagements-section { background: #F4F6FA; }

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

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

.sct-tpl-service-hub .sct-engagement-card {
    background: linear-gradient(135deg, #0A2D6E 0%, #061d4a 100%);
    color: #fff;
    padding: 36px 26px;
    border-radius: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

.sct-tpl-service-hub .sct-engagement-card:nth-child(2) {
    background: linear-gradient(135deg, #E1000F 0%, #b8000c 100%);
}

.sct-tpl-service-hub .sct-engagement-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #C9A961;
}

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

.sct-tpl-service-hub .sct-engagement-icon {
    font-size: 2.4rem;
    color: #C9A961;
    margin-bottom: 14px;
}

.sct-tpl-service-hub .sct-engagement-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-engagement-card p {
    font-size: .95rem;
    line-height: 1.6;
    opacity: .92;
}

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

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

.sct-tpl-service-hub .sct-faq-item {
    background: #F4F6FA;
    border-radius: 10px;
    margin-bottom: 14px;
    border-left: 4px solid #0A2D6E;
    overflow: hidden;
    transition: .3s;
}

.sct-tpl-service-hub .sct-faq-item:nth-child(even) { border-left-color: #E1000F; }

.sct-tpl-service-hub .sct-faq-item:hover { box-shadow: 0 8px 24px rgba(10,45,110,.10); }

.sct-tpl-service-hub .sct-faq-q {
    padding: 20px 24px;
    font-weight: 600;
    color: #0A2D6E;
    font-size: 1.02rem;
    display: flex; align-items: flex-start; gap: 12px;
}

.sct-tpl-service-hub .sct-faq-q i { color: #E1000F; margin-top: 4px; flex-shrink: 0; }

.sct-tpl-service-hub .sct-faq-a {
    padding: 0 24px 20px 50px;
    color: #555;
    font-size: .96rem;
    line-height: 1.7;
}

.sct-tpl-service-hub .sct-maillage-section {
    background: #F4F6FA;
    padding: 70px 0;
    position: relative;
}

.sct-tpl-service-hub .sct-maillage-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0A2D6E 0% 33%, #ffffff 33% 66%, #E1000F 66% 100%);
}

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

.sct-tpl-service-hub .sct-maillage-section + .sct-maillage-section::before { display: none; }

.sct-tpl-service-hub .sct-maillage-head {
    text-align: center;
    margin-bottom: 40px;
}

.sct-tpl-service-hub .sct-maillage-head h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    margin-bottom: 14px;
}

.sct-tpl-service-hub .sct-maillage-head .sct-section-underline { margin: 0 auto 16px; }

.sct-tpl-service-hub .sct-maillage-head p {
    color: #555;
    max-width: 720px;
    margin: 0 auto;
    font-size: 1rem;
}

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

.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: 12px 16px;
    background: #fff;
    border: 1.5px solid #d8dde8;
    border-radius: 8px;
    color: #0A2D6E;
    font-weight: 500;
    font-size: .94rem;
    transition: .3s;
    border-left: 3px solid #0A2D6E;
}

.sct-tpl-service-hub .sct-maillage-cities a:nth-child(even) { border-left-color: #E1000F; }

.sct-tpl-service-hub .sct-maillage-cities a:hover {
    background: #0A2D6E;
    color: #fff;
    border-color: #0A2D6E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10,45,110,.18);
}

.sct-tpl-service-hub .sct-maillage-cities a i {
    color: #E1000F;
    flex-shrink: 0;
    transition: .3s;
}

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

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

.sct-tpl-service-hub .sct-maillage-services a {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px;
    background: #F4F6FA;
    border: 1.5px solid #d8dde8;
    border-radius: 30px;
    color: #0A2D6E;
    font-weight: 500;
    font-size: .92rem;
    transition: .3s;
}

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

.sct-tpl-service-hub .sct-maillage-services a i { color: #E1000F; }

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

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

.sct-tpl-service-hub .sct-cta-final::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0A2D6E 0% 33%, #ffffff 33% 66%, #C9A961 66% 100%);
}

.sct-tpl-service-hub .sct-cta-final h2 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 16px;
}

.sct-tpl-service-hub .sct-cta-final p {
    font-size: 1.08rem;
    margin-bottom: 28px;
    opacity: .96;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

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

.sct-tpl-service-hub .sct-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: .3s;
}

.sct-tpl-service-hub .sct-cta-btn-white {
    background: #fff;
    color: #E1000F;
    box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.sct-tpl-service-hub .sct-cta-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,.28);
}

.sct-tpl-service-hub .sct-cta-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.sct-tpl-service-hub .sct-cta-btn-outline:hover {
    background: #fff;
    color: #E1000F;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-service-hub .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-maillage-cities { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-service-hub section { padding: 60px 0; }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 120px 0 50px; }
    .sct-tpl-service-hub .sct-hero::before { left: 14px; width: 4px; }
    .sct-tpl-service-hub .sct-breadcrumb { font-size: .82rem; padding: 7px 12px; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-hub .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-service-hub .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-hero-card { padding: 24px; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
    .sct-tpl-service-hub .sct-stat-value { font-size: 2rem; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-maillage-cities { grid-template-columns: 1fr 1fr; gap: 10px; }
    .sct-tpl-service-hub .sct-maillage-cities a { padding: 10px 12px; font-size: .88rem; }
    .sct-tpl-service-hub .sct-faq-q { padding: 16px 18px; font-size: .96rem; }
    .sct-tpl-service-hub .sct-faq-a { padding: 0 18px 16px 44px; }
    .sct-tpl-service-hub .sct-cta-btns { flex-direction: column; align-items: stretch; }
    .sct-tpl-service-hub .sct-cta-btn { justify-content: center; }
    .sct-tpl-service-hub section { padding: 50px 0; }
    .sct-tpl-service-hub .sct-section-head { margin-bottom: 36px; }
}

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

.sct-tpl-zone h1, .sct-tpl-zone h2, .sct-tpl-zone h3, .sct-tpl-zone h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: #0A2D6E; }

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 70px 0 70px;
    color: #fff;
    background-image: linear-gradient(rgba(6,29,74,.88), rgba(10,45,110,.78)), url('/images/service_1_1778166137_69fca9798628a.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 30px;
    width: 6px; height: 100%;
    background: linear-gradient(180deg, #1e4a9e 0% 33%, #ffffff 33% 66%, #E1000F 66% 100%);
    z-index: 1;
}

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

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

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

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

.sct-tpl-zone .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: .88rem;
    margin-bottom: 22px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 30px;
    padding: 8px 16px;
    backdrop-filter: blur(6px);
}

.sct-tpl-zone .sct-breadcrumb a { color: rgba(255,255,255,.85); transition: .25s; }

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

.sct-tpl-zone .sct-bc-sep { opacity: .5; }

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

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

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 30px;
    font-size: .82rem;
    font-weight: 500;
    backdrop-filter: blur(6px);
}

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

.sct-tpl-zone .sct-hero-text h1 {
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-hero-text h1 strong { color: #C9A961; display: block; font-weight: 800; }

.sct-tpl-zone .sct-hero-divider {
    width: 70px; height: 4px;
    background: #E1000F;
    margin: 18px 0;
}

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 28px;
    opacity: .94;
    max-width: 580px;
}

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

.sct-tpl-zone .sct-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 26px;
    border-radius: 30px;
    font-weight: 600;
    font-size: .98rem;
    transition: .3s;
    cursor: pointer;
}

.sct-tpl-zone .sct-btn-primary {
    background: #E1000F; color: #fff;
    box-shadow: 0 8px 22px rgba(225,0,15,.35);
}

.sct-tpl-zone .sct-btn-primary:hover {
    background: #b8000c;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(225,0,15,.5);
}

.sct-tpl-zone .sct-btn-outline {
    background: transparent; color: #fff;
    border: 2px solid #fff;
}

.sct-tpl-zone .sct-btn-outline:hover {
    background: #fff; color: #0A2D6E;
    transform: translateY(-3px);
}

.sct-tpl-zone .sct-hero-trust {
    display: flex; flex-wrap: wrap; gap: 18px;
    font-size: .88rem;
}

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

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

.sct-tpl-zone .sct-hero-card {
    background: #fff;
    color: #1A1A2E;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 20px 48px rgba(10,45,110,.25);
    position: relative;
}

.sct-tpl-zone .sct-hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0A2D6E 0% 33%, #ffffff 33% 66%, #E1000F 66% 100%);
    border-radius: 14px 14px 0 0;
}

.sct-tpl-zone .sct-hero-card h2 {
    font-size: 1.4rem;
    margin: 8px 0 18px;
    color: #0A2D6E;
}

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

.sct-tpl-zone .sct-hero-card-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eef0f6;
    font-size: .94rem;
}

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

.sct-tpl-zone .sct-hero-card-list i {
    color: #E1000F;
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
}

.sct-tpl-zone .sct-hero-card-list strong { display: block; color: #0A2D6E; margin-bottom: 2px; }

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

.sct-tpl-zone .sct-stats-band {
    background: linear-gradient(135deg, #0A2D6E 0%, #061d4a 100%);
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.sct-tpl-zone .sct-stats-band::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e4a9e 0% 33%, #ffffff 33% 66%, #E1000F 66% 100%);
}

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

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

.sct-tpl-zone .sct-stat-icon {
    width: 60px; height: 60px;
    margin: 0 auto 14px;
    background: rgba(255,255,255,.08);
    border: 2px solid #C9A961;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: #C9A961;
}

.sct-tpl-zone .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.sct-tpl-zone .sct-stat-label {
    font-size: .92rem;
    opacity: .9;
    font-weight: 500;
}

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

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

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

.sct-tpl-zone .sct-section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    margin-bottom: 16px;
}

.sct-tpl-zone .sct-section-underline {
    width: 70px; height: 4px;
    background: #E1000F;
    margin: 0 auto 16px;
}

.sct-tpl-zone .sct-section-lead {
    color: #555;
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.02rem;
}

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

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

.sct-tpl-zone .sct-intro-content p {
    margin-bottom: 18px;
    color: #444;
    font-size: 1.04rem;
    line-height: 1.8;
}

.sct-tpl-zone .sct-intro-content p strong { color: #0A2D6E; }

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

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

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

.sct-tpl-zone .sct-services-grid a,
.sct-tpl-zone .sct-services-grid .sct-service-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(10,45,110,.06);
    transition: .3s;
    border-left: 4px solid #0A2D6E;
    color: #1A1A2E;
}

.sct-tpl-zone .sct-services-grid a:nth-child(even),
.sct-tpl-zone .sct-services-grid .sct-service-card:nth-child(even) { border-left-color: #E1000F; }

.sct-tpl-zone .sct-services-grid a:hover,
.sct-tpl-zone .sct-services-grid .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(10,45,110,.16);
}

.sct-tpl-zone .sct-services-grid .sct-service-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: #0A2D6E;
    color: #fff;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}

.sct-tpl-zone .sct-services-grid a:nth-child(even) .sct-service-icon,
.sct-tpl-zone .sct-services-grid .sct-service-card:nth-child(even) .sct-service-icon { background: #E1000F; }

.sct-tpl-zone .sct-services-grid h3 {
    font-size: 1.08rem;
    margin-bottom: 6px;
    color: #0A2D6E;
}

.sct-tpl-zone .sct-services-grid p {
    color: #555;
    font-size: .9rem;
    line-height: 1.55;
    margin: 0;
}

.sct-tpl-zone .sct-services-grid .sct-service-arrow {
    margin-top: 8px;
    color: #E1000F;
    font-weight: 600;
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.sct-tpl-zone .sct-zones-section {
    background: #fff;
    position: relative;
}

.sct-tpl-zone .sct-zones-section::before,
.sct-tpl-zone .sct-zones-section::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #0A2D6E 0% 33%, #ffffff 33% 66%, #E1000F 66% 100%);
}

.sct-tpl-zone .sct-zones-section::before { left: 0; }

.sct-tpl-zone .sct-zones-section::after { right: 0; }

.sct-tpl-zone .sct-zones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    list-style: none;
    padding: 0;
}

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

.sct-tpl-zone .sct-zones-grid li {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px;
    background: #F4F6FA;
    border-radius: 8px;
    border-left: 3px solid #0A2D6E;
    transition: .3s;
    font-weight: 500;
    color: #0A2D6E;
}

.sct-tpl-zone .sct-zones-grid li:nth-child(even) { border-left-color: #E1000F; }

.sct-tpl-zone .sct-zones-grid li:hover {
    transform: translateX(4px);
    background: #fff;
    box-shadow: 0 2px 8px rgba(10,45,110,.06);
}

.sct-tpl-zone .sct-zones-grid li i { color: #E1000F; flex-shrink: 0; }

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

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

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

.sct-tpl-zone .sct-usecase-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(10,45,110,.16);
}

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

.sct-tpl-zone .sct-usecase-text h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    margin-bottom: 16px;
}

.sct-tpl-zone .sct-usecase-text .sct-section-underline { margin: 0 0 18px; }

.sct-tpl-zone .sct-usecase-text p {
    margin-bottom: 14px;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.sct-tpl-zone .sct-usecase-text strong { color: #0A2D6E; }

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

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

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

.sct-tpl-zone .sct-engagement-card {
    background: linear-gradient(135deg, #0A2D6E 0%, #061d4a 100%);
    color: #fff;
    padding: 36px 26px;
    border-radius: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

.sct-tpl-zone .sct-engagement-card:nth-child(2) {
    background: linear-gradient(135deg, #E1000F 0%, #b8000c 100%);
}

.sct-tpl-zone .sct-engagement-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #C9A961;
}

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

.sct-tpl-zone .sct-engagement-icon {
    font-size: 2.4rem;
    color: #C9A961;
    margin-bottom: 14px;
}

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

.sct-tpl-zone .sct-engagement-card p {
    font-size: .95rem;
    line-height: 1.6;
    opacity: .92;
}

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

.sct-tpl-zone .sct-local-spec-content {
    max-width: 920px;
    margin: 0 auto;
    padding: 36px;
    background: #fff;
    border-left: 4px solid #E1000F;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(10,45,110,.10);
}

.sct-tpl-zone .sct-local-spec-content h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #0A2D6E;
}

.sct-tpl-zone .sct-local-spec-content p {
    color: #444;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 12px;
}

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

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

.sct-tpl-zone .sct-faq-item {
    background: #F4F6FA;
    border-radius: 10px;
    margin-bottom: 14px;
    border-left: 4px solid #0A2D6E;
    overflow: hidden;
    transition: .3s;
}

.sct-tpl-zone .sct-faq-item:nth-child(even) { border-left-color: #E1000F; }

.sct-tpl-zone .sct-faq-item:hover { box-shadow: 0 8px 24px rgba(10,45,110,.10); }

.sct-tpl-zone .sct-faq-q {
    padding: 20px 24px;
    font-weight: 600;
    color: #0A2D6E;
    font-size: 1.02rem;
    display: flex; align-items: flex-start; gap: 12px;
}

.sct-tpl-zone .sct-faq-q i { color: #E1000F; margin-top: 4px; flex-shrink: 0; }

.sct-tpl-zone .sct-faq-a {
    padding: 0 24px 20px 50px;
    color: #555;
    font-size: .96rem;
    line-height: 1.7;
}

.sct-tpl-zone .sct-maillage-section {
    background: #F4F6FA;
    padding: 70px 0;
}

.sct-tpl-zone .sct-maillage-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 14px;
    color: #0A2D6E;
}

.sct-tpl-zone .sct-maillage-section .sct-section-underline { margin: 0 auto 26px; }

.sct-tpl-zone .sct-maillage-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.sct-tpl-zone .sct-maillage-grid a {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px;
    background: #fff;
    border: 1.5px solid #d8dde8;
    border-radius: 30px;
    color: #0A2D6E;
    font-weight: 500;
    font-size: .92rem;
    transition: .3s;
}

.sct-tpl-zone .sct-maillage-grid a:hover {
    background: #0A2D6E;
    color: #fff;
    border-color: #0A2D6E;
    transform: translateY(-2px);
}

.sct-tpl-zone .sct-maillage-grid a i { color: #E1000F; }

.sct-tpl-zone .sct-maillage-grid a:hover i { color: #C9A961; }

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

.sct-tpl-zone .sct-cta-final::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0A2D6E 0% 33%, #ffffff 33% 66%, #C9A961 66% 100%);
}

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

.sct-tpl-zone .sct-cta-final p {
    font-size: 1.08rem;
    margin-bottom: 28px;
    opacity: .96;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

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

.sct-tpl-zone .sct-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: .3s;
}

.sct-tpl-zone .sct-cta-btn-white {
    background: #fff;
    color: #E1000F;
    box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.sct-tpl-zone .sct-cta-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,.28);
}

.sct-tpl-zone .sct-cta-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.sct-tpl-zone .sct-cta-btn-outline:hover {
    background: #fff;
    color: #E1000F;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-tpl-zone .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-zones-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-usecase-grid { grid-template-columns: 1fr; gap: 36px; }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone section { padding: 60px 0; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 120px 0 50px; }
    .sct-tpl-zone .sct-hero::before { left: 14px; width: 4px; }
    .sct-tpl-zone .sct-breadcrumb { font-size: .82rem; padding: 7px 12px; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-zone .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-zone .sct-hero-btns { flex-direction: column; }
    .sct-tpl-zone .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-hero-card { padding: 24px; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
    .sct-tpl-zone .sct-stat-value { font-size: 2rem; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-zones-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-local-spec-content { padding: 26px 22px; }
    .sct-tpl-zone .sct-faq-q { padding: 16px 18px; font-size: .96rem; }
    .sct-tpl-zone .sct-faq-a { padding: 0 18px 16px 44px; }
    .sct-tpl-zone .sct-cta-btns { flex-direction: column; align-items: stretch; }
    .sct-tpl-zone .sct-cta-btn { justify-content: center; }
    .sct-tpl-zone section { padding: 50px 0; }
    .sct-tpl-zone .sct-section-head { margin-bottom: 36px; }
}

.sct-tpl-service-city { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #1A1A2E; line-height: 1.65; }

.sct-tpl-service-city h1, .sct-tpl-service-city h2, .sct-tpl-service-city h3, .sct-tpl-service-city h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: #0A2D6E; }

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 70px 0 70px;
    color: #fff;
    background-image: linear-gradient(rgba(6,29,74,.88), rgba(10,45,110,.78)), url('/images/service_3_1778166174_69fca99e2a046.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 30px;
    width: 6px; height: 100%;
    background: linear-gradient(180deg, #1e4a9e 0% 33%, #ffffff 33% 66%, #E1000F 66% 100%);
    z-index: 1;
}

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

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

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

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

.sct-tpl-service-city .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: .88rem;
    margin-bottom: 22px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 30px;
    padding: 8px 16px;
    backdrop-filter: blur(6px);
}

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

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

.sct-tpl-service-city .sct-bc-sep { opacity: .5; }

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

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

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 30px;
    font-size: .82rem;
    font-weight: 500;
    backdrop-filter: blur(6px);
}

.sct-tpl-service-city .sct-hero-badge i { color: #C9A961; }

.sct-tpl-service-city .sct-hero-text h1 {
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-hero-text h1 strong { color: #C9A961; display: block; font-weight: 800; }

.sct-tpl-service-city .sct-hero-divider {
    width: 70px; height: 4px;
    background: #E1000F;
    margin: 18px 0;
}

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 28px;
    opacity: .94;
    max-width: 580px;
}

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

.sct-tpl-service-city .sct-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 26px;
    border-radius: 30px;
    font-weight: 600;
    font-size: .98rem;
    transition: .3s;
    cursor: pointer;
}

.sct-tpl-service-city .sct-btn-primary {
    background: #E1000F; color: #fff;
    box-shadow: 0 8px 22px rgba(225,0,15,.35);
}

.sct-tpl-service-city .sct-btn-primary:hover {
    background: #b8000c;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(225,0,15,.5);
}

.sct-tpl-service-city .sct-btn-outline {
    background: transparent; color: #fff;
    border: 2px solid #fff;
}

.sct-tpl-service-city .sct-btn-outline:hover {
    background: #fff; color: #0A2D6E;
    transform: translateY(-3px);
}

.sct-tpl-service-city .sct-hero-trust {
    display: flex; flex-wrap: wrap; gap: 18px;
    font-size: .88rem;
}

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

.sct-tpl-service-city .sct-hero-card {
    background: #fff;
    color: #1A1A2E;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 20px 48px rgba(10,45,110,.25);
    position: relative;
}

.sct-tpl-service-city .sct-hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0A2D6E 0% 33%, #ffffff 33% 66%, #E1000F 66% 100%);
    border-radius: 14px 14px 0 0;
}

.sct-tpl-service-city .sct-hero-card h2 {
    font-size: 1.4rem;
    margin: 8px 0 18px;
    color: #0A2D6E;
}

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

.sct-tpl-service-city .sct-hero-card-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eef0f6;
    font-size: .94rem;
}

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

.sct-tpl-service-city .sct-hero-card-list i {
    color: #E1000F;
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
}

.sct-tpl-service-city .sct-hero-card-list strong { display: block; color: #0A2D6E; margin-bottom: 2px; }

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

.sct-tpl-service-city .sct-stats-band {
    background: linear-gradient(135deg, #0A2D6E 0%, #061d4a 100%);
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-city .sct-stats-band::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e4a9e 0% 33%, #ffffff 33% 66%, #E1000F 66% 100%);
}

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

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

.sct-tpl-service-city .sct-stat-icon {
    width: 60px; height: 60px;
    margin: 0 auto 14px;
    background: rgba(255,255,255,.08);
    border: 2px solid #C9A961;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: #C9A961;
}

.sct-tpl-service-city .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.sct-tpl-service-city .sct-stat-label {
    font-size: .92rem;
    opacity: .9;
    font-weight: 500;
}

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

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

.sct-tpl-service-city .sct-section-tag {
    display: inline-block;
    color: #E1000F;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .82rem;
    margin-bottom: 12px;
}

.sct-tpl-service-city .sct-section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    margin-bottom: 16px;
}

.sct-tpl-service-city .sct-section-underline {
    width: 70px; height: 4px;
    background: #E1000F;
    margin: 0 auto 16px;
}

.sct-tpl-service-city .sct-section-lead {
    color: #555;
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.02rem;
}

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

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

.sct-tpl-service-city .sct-intro-content p {
    margin-bottom: 18px;
    color: #444;
    font-size: 1.04rem;
    line-height: 1.8;
}

.sct-tpl-service-city .sct-intro-content p strong { color: #0A2D6E; }

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

.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: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(10,45,110,.06);
    transition: .3s;
    border-left: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(10,45,110,.16);
    border-left-color: #E1000F;
}

.sct-tpl-service-city .sct-service-image {
    position: relative;
    width: 100%;
    padding-top: 60%;
    background: #d8dde8;
    overflow: hidden;
}

.sct-tpl-service-city .sct-service-image img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

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

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

.sct-tpl-service-city .sct-service-body h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0A2D6E;
}

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

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

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

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

.sct-tpl-service-city .sct-process-step {
    text-align: center;
    padding: 26px 16px;
    background: #F4F6FA;
    border-radius: 14px;
    border-top: 4px solid #0A2D6E;
    position: relative;
    transition: .3s;
}

.sct-tpl-service-city .sct-process-step:nth-child(even) { border-top-color: #E1000F; }

.sct-tpl-service-city .sct-process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(10,45,110,.12);
    background: #fff;
}

.sct-tpl-service-city .sct-process-num {
    position: absolute;
    top: -16px; right: 16px;
    width: 32px; height: 32px;
    background: #C9A961;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    font-family: 'Playfair Display', serif;
}

.sct-tpl-service-city .sct-process-icon {
    width: 60px; height: 60px;
    margin: 0 auto 14px;
    background: #0A2D6E;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    transition: .3s;
}

.sct-tpl-service-city .sct-process-step:nth-child(even) .sct-process-icon { background: #E1000F; }

.sct-tpl-service-city .sct-process-step:hover .sct-process-icon { transform: scale(1.08); }

.sct-tpl-service-city .sct-process-step h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #0A2D6E;
}

.sct-tpl-service-city .sct-process-step p {
    font-size: .85rem;
    color: #555;
    line-height: 1.5;
}

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

.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;
    padding: 32px 22px;
    border-radius: 14px;
    text-align: center;
    transition: .3s;
    border-top: 4px solid #0A2D6E;
}

.sct-tpl-service-city .sct-why-card:nth-child(odd) { border-top-color: #E1000F; }

.sct-tpl-service-city .sct-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(10,45,110,.12);
}

.sct-tpl-service-city .sct-why-icon {
    width: 70px; height: 70px;
    margin: 0 auto 16px;
    background: #0A2D6E;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    border: 3px solid #C9A961;
    transition: .3s;
}

.sct-tpl-service-city .sct-why-card:nth-child(odd) .sct-why-icon { background: #E1000F; }

.sct-tpl-service-city .sct-why-card:hover .sct-why-icon { transform: scale(1.08) rotate(-5deg); }

.sct-tpl-service-city .sct-why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #0A2D6E;
}

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

.sct-tpl-service-city .sct-zones-section {
    background: #fff;
    position: relative;
}

.sct-tpl-service-city .sct-zones-section::before,
.sct-tpl-service-city .sct-zones-section::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #0A2D6E 0% 33%, #ffffff 33% 66%, #E1000F 66% 100%);
}

.sct-tpl-service-city .sct-zones-section::before { left: 0; }

.sct-tpl-service-city .sct-zones-section::after { right: 0; }

.sct-tpl-service-city .sct-zones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    list-style: none;
    padding: 0;
}

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

.sct-tpl-service-city .sct-zones-grid li {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px;
    background: #F4F6FA;
    border-radius: 8px;
    border-left: 3px solid #0A2D6E;
    transition: .3s;
    font-weight: 500;
    color: #0A2D6E;
}

.sct-tpl-service-city .sct-zones-grid li:nth-child(even) { border-left-color: #E1000F; }

.sct-tpl-service-city .sct-zones-grid li:hover {
    transform: translateX(4px);
    background: #fff;
    box-shadow: 0 2px 8px rgba(10,45,110,.06);
}

.sct-tpl-service-city .sct-zones-grid li i { color: #E1000F; flex-shrink: 0; }

.sct-tpl-service-city .sct-usecase-section { background: #F4F6FA; }

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

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

.sct-tpl-service-city .sct-usecase-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(10,45,110,.16);
}

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

.sct-tpl-service-city .sct-usecase-text h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    margin-bottom: 16px;
}

.sct-tpl-service-city .sct-usecase-text .sct-section-underline { margin: 0 0 18px; }

.sct-tpl-service-city .sct-usecase-text p {
    margin-bottom: 14px;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

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

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

.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: linear-gradient(135deg, #0A2D6E 0%, #061d4a 100%);
    color: #fff;
    padding: 36px 26px;
    border-radius: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

.sct-tpl-service-city .sct-engagement-card:nth-child(2) {
    background: linear-gradient(135deg, #E1000F 0%, #b8000c 100%);
}

.sct-tpl-service-city .sct-engagement-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #C9A961;
}

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

.sct-tpl-service-city .sct-engagement-icon {
    font-size: 2.4rem;
    color: #C9A961;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-engagement-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-engagement-card p {
    font-size: .95rem;
    line-height: 1.6;
    opacity: .92;
}

.sct-tpl-service-city .sct-local-spec {
    background: #F4F6FA;
}

.sct-tpl-service-city .sct-local-spec-content {
    max-width: 920px;
    margin: 0 auto;
    padding: 36px;
    background: #fff;
    border-left: 4px solid #E1000F;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(10,45,110,.10);
}

.sct-tpl-service-city .sct-local-spec-content h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #0A2D6E;
}

.sct-tpl-service-city .sct-local-spec-content p {
    color: #444;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 12px;
}

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

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

.sct-tpl-service-city .sct-faq-item {
    background: #F4F6FA;
    border-radius: 10px;
    margin-bottom: 14px;
    border-left: 4px solid #0A2D6E;
    overflow: hidden;
    transition: .3s;
}

.sct-tpl-service-city .sct-faq-item:nth-child(even) { border-left-color: #E1000F; }

.sct-tpl-service-city .sct-faq-item:hover { box-shadow: 0 8px 24px rgba(10,45,110,.10); }

.sct-tpl-service-city .sct-faq-q {
    padding: 20px 24px;
    font-weight: 600;
    color: #0A2D6E;
    font-size: 1.02rem;
    display: flex; align-items: flex-start; gap: 12px;
}

.sct-tpl-service-city .sct-faq-q i { color: #E1000F; margin-top: 4px; flex-shrink: 0; }

.sct-tpl-service-city .sct-faq-a {
    padding: 0 24px 20px 50px;
    color: #555;
    font-size: .96rem;
    line-height: 1.7;
}

.sct-tpl-service-city .sct-maillage-section {
    background: #F4F6FA;
    padding: 60px 0;
}

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

.sct-tpl-service-city .sct-maillage-title {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 26px;
    color: #0A2D6E;
}

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

.sct-tpl-service-city .sct-maillage-grid a {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px;
    background: #fff;
    border: 1.5px solid #d8dde8;
    border-radius: 30px;
    color: #0A2D6E;
    font-weight: 500;
    font-size: .92rem;
    transition: .3s;
}

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

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

.sct-tpl-service-city .sct-maillage-grid a i { color: #E1000F; }

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

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

.sct-tpl-service-city .sct-cta-final::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0A2D6E 0% 33%, #ffffff 33% 66%, #C9A961 66% 100%);
}

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

.sct-tpl-service-city .sct-cta-final p {
    font-size: 1.08rem;
    margin-bottom: 28px;
    opacity: .96;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

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

.sct-tpl-service-city .sct-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: .3s;
}

.sct-tpl-service-city .sct-cta-btn-white {
    background: #fff;
    color: #E1000F;
    box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.sct-tpl-service-city .sct-cta-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,.28);
}

.sct-tpl-service-city .sct-cta-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.sct-tpl-service-city .sct-cta-btn-outline:hover {
    background: #fff;
    color: #E1000F;
    transform: translateY(-3px);
}

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

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 50px; }
    .sct-tpl-service-city .sct-hero::before { left: 14px; width: 4px; }
    .sct-tpl-service-city .sct-breadcrumb { font-size: .82rem; padding: 7px 12px; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-city .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-service-city .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-hero-card { padding: 24px; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
    .sct-tpl-service-city .sct-stat-value { font-size: 2rem; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-zones-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-local-spec-content { padding: 26px 22px; }
    .sct-tpl-service-city .sct-faq-q { padding: 16px 18px; font-size: .96rem; }
    .sct-tpl-service-city .sct-faq-a { padding: 0 18px 16px 44px; }
    .sct-tpl-service-city .sct-cta-btns { flex-direction: column; align-items: stretch; }
    .sct-tpl-service-city .sct-cta-btn { justify-content: center; }
    .sct-tpl-service-city section { padding: 50px 0; }
    .sct-tpl-service-city .sct-section-head { margin-bottom: 36px; }
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 70px 0 70px;
    color: #fff;
    background-image: linear-gradient(rgba(6,29,74,.88), rgba(10,45,110,.78)), url('/images/service_5_1778166214_69fca9c63555b.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 70px 0 70px;
    color: #fff;
    background-image: linear-gradient(rgba(6,29,74,.88), rgba(10,45,110,.78)), url('/images/service_1_1778166137_69fca9798628a.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 70px 0 70px;
    color: #fff;
    background-image: linear-gradient(rgba(6,29,74,.88), rgba(10,45,110,.78)), url('/images/service_2_1778166156_69fca98c4b4ab.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 70px 0 70px;
    color: #fff;
    background-image: linear-gradient(rgba(6,29,74,.88), rgba(10,45,110,.78)), url('/images/service_2_1778166156_69fca98c4b4ab.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 70px 0 70px;
    color: #fff;
    background-image: linear-gradient(rgba(6,29,74,.88), rgba(10,45,110,.78)), url('/images/service_2_1778166156_69fca98c4b4ab.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 70px 0 70px;
    color: #fff;
    background-image: linear-gradient(rgba(6,29,74,.88), rgba(10,45,110,.78)), url('/images/service_3_1778166174_69fca99e2a046.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 70px 0 70px;
    color: #fff;
    background-image: linear-gradient(rgba(6,29,74,.88), rgba(10,45,110,.78)), url('/images/service_3_1778166174_69fca99e2a046.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 70px 0 70px;
    color: #fff;
    background-image: linear-gradient(rgba(6,29,74,.88), rgba(10,45,110,.78)), url('/images/service_6_1778166231_69fca9d7727c0.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 70px 0 70px;
    color: #fff;
    background-image: linear-gradient(rgba(6,29,74,.88), rgba(10,45,110,.78)), url('/images/service_4_1778166194_69fca9b245e66.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 70px 0 70px;
    color: #fff;
    background-image: linear-gradient(rgba(6,29,74,.88), rgba(10,45,110,.78)), url('/images/service_4_1778166194_69fca9b245e66.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 70px 0 70px;
    color: #fff;
    background-image: linear-gradient(rgba(6,29,74,.88), rgba(10,45,110,.78)), url('/images/service_4_1778166194_69fca9b245e66.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 70px 0 70px;
    color: #fff;
    background-image: linear-gradient(rgba(6,29,74,.88), rgba(10,45,110,.78)), url('/images/service_5_1778166214_69fca9c63555b.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 70px 0 70px;
    color: #fff;
    background-image: linear-gradient(rgba(6,29,74,.88), rgba(10,45,110,.78)), url('/images/service_5_1778166214_69fca9c63555b.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 70px 0 70px;
    color: #fff;
    background-image: linear-gradient(rgba(6,29,74,.88), rgba(10,45,110,.78)), url('/images/service_6_1778166231_69fca9d7727c0.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 70px 0 70px;
    color: #fff;
    background-image: linear-gradient(rgba(6,29,74,.88), rgba(10,45,110,.78)), url('/images/service_6_1778166231_69fca9d7727c0.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

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

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

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-light) 0% 33%, var(--white) 33% 66%, var(--secondary) 66% 100%);
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(225,0,15,.18), transparent 55%),
                radial-gradient(circle at bottom left, rgba(201,169,97,.12), transparent 55%);
    pointer-events: none;
}

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

.page-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: .9rem;
    font-weight: 500;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
}

.page-hero .eyebrow i { color: var(--gold); }

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero .divider {
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 18px auto 22px;
}

.page-hero p {
    font-size: 1.15rem;
    opacity: .94;
    max-width: 640px;
    margin: 0 auto 28px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    background: rgba(255,255,255,.08);
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.18);
}

.breadcrumb a { color: var(--gold); font-weight: 600; }

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

.breadcrumb i { font-size: .7rem; opacity: .6; }

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

.sitemap-block {
    margin-bottom: 70px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary);
    transition: var(--transition);
}

.sitemap-block:nth-of-type(even) { border-left-color: var(--secondary); }

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

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

.sitemap-block-head .icon-wrap {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}

.sitemap-block:nth-of-type(even) .sitemap-block-head .icon-wrap {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.sitemap-block-head h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0;
}

.sitemap-block-head .count {
    margin-left: auto;
    background: var(--gray-light);
    color: var(--primary);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .85rem;
    border: 1px solid var(--gray-mid);
}

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--gray-light);
    color: var(--primary);
    border-radius: 30px;
    font-size: .92rem;
    font-weight: 500;
    border: 1.5px solid var(--gray-mid);
    transition: var(--transition);
}

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

.chip:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

.chip.chip-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

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

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

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

.subgroup {
    background: var(--gray-light);
    padding: 26px;
    border-radius: var(--radius);
    margin-bottom: 22px;
    border-left: 3px solid var(--primary);
    transition: var(--transition);
}

.subgroup:nth-child(even) { border-left-color: var(--secondary); }

.subgroup:hover { background: var(--white); box-shadow: var(--shadow-sm); }

.subgroup-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.subgroup-title i {
    color: var(--secondary);
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    box-shadow: var(--shadow-sm);
}

.cta-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0% 33%, var(--white) 33% 66%, var(--primary-dark) 66% 100%);
}

.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 14px; }

.cta-band p { font-size: 1.1rem; opacity: .95; margin-bottom: 28px; max-width: 640px; margin-left: auto; margin-right: auto; }

.cta-band .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    background: var(--white);
    color: var(--secondary);
    transition: var(--transition);
    box-shadow: 0 8px 22px rgba(0,0,0,.2);
}

.cta-band .btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
}

.footer-logo img { height: 44px; width: auto; background: var(--white); padding: 4px; border-radius: 6px; }

.footer-engagement {
    margin-top: 18px;
    padding: 14px;
    background: rgba(255,255,255,.05);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    font-size: .88rem;
    line-height: 1.5;
}

.footer-engagement i { margin-right: 6px; }

.footer-title {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}

.footer-col ul li { margin-bottom: 10px; font-size: .9rem; }

.footer-col ul li a {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); transform: translateX(4px); }

.footer-col ul li i { color: var(--secondary); font-size: .8rem; margin-top: 5px; }

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

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

.footer-bottom-links a { transition: var(--transition); }

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

@media (max-width: 980px) {
    .footer-grid { grid-template-columns: 1fr 1fr !important; }
    .sitemap-block { padding: 28px 22px; }
    .sitemap-block-head { flex-wrap: wrap; }
    .sitemap-block-head .count { margin-left: 0; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr !important; }
    .page-hero { padding: 60px 0 80px; }
    .sitemap { padding: 50px 0; }
    .sitemap-block { margin-bottom: 40px; padding: 22px 18px; }
    .chip { font-size: .85rem; padding: 8px 14px; }
    .subgroup { padding: 18px; }
}