:root {
            --primary: #0F2B5B;
            --primary-dark: #1B2A4A;
            --accent: #C9A96E;
            --accent-dark: #A88A52;
            --ivory: #F7F5F0;
            --beige: #E8E2D5;
            --slate: #2C3E50;
            --muted: #6B7280;
            --white: #FFFFFF;
            --line: rgba(15, 43, 91, 0.12);
            --shadow-sm: 0 2px 12px rgba(15, 43, 91, 0.06);
            --shadow-md: 0 8px 32px rgba(15, 43, 91, 0.10);
            --shadow-lg: 0 20px 60px rgba(15, 43, 91, 0.14);
        }

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
            font-family: 'Inter', sans-serif;
            color: var(--slate);
            background: var(--white);
            line-height: 1.7;
            font-size: 16px;
            overflow-x: hidden;
        }

h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            color: var(--primary);
            font-weight: 600;
            line-height: 1.25;
            letter-spacing: -0.01em;
        }

a { color: var(--primary); text-decoration: none; transition: color .2s ease; }

a:hover { color: var(--accent); }

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

.container {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

.section-padding { padding: 110px 0; }

.surtitre {
            display: inline-block;
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--accent);
            font-size: 1.1rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            margin-bottom: 14px;
        }

.surtitre::before { content: "— "; }

.surtitre::after { content: " —"; }

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

.section-intro {
            color: var(--muted);
            font-size: 1.05rem;
            max-width: 720px;
            margin: 0 auto 60px;
            text-align: center;
        }

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

.section-head .section-intro { margin-bottom: 0; }

.gold-line {
            width: 60px; height: 1px;
            background: var(--accent);
            margin: 22px auto;
        }

.header {
            position: fixed; top: 0; left: 0; right: 0;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 1000;
            border-bottom: 1px solid var(--line);
        }

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

.logo {
            display: flex; align-items: center; gap: 12px;
            color: var(--primary); font-weight: 600;
        }

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

.logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            color: var(--primary);
        }

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

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

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

.nav a:not(.btn-cta-nav)::after {
            content: ""; position: absolute; bottom: 0; left: 0;
            width: 0; height: 1px; background: var(--accent);
            transition: width .3s ease;
        }

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

.nav .btn-cta-nav {
            background: var(--accent);
            color: var(--white) !important;
            padding: 11px 22px;
            border-radius: 2px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            transition: background .25s ease, transform .25s ease;
        }

.nav .btn-cta-nav:hover {
            background: var(--primary);
            color: var(--white) !important;
            transform: translateY(-1px);
        }

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

.hero {
            position: relative;
            min-height: 100vh;
            display: flex; align-items: center;
            padding-top: 120px; padding-bottom: 80px;
            background: linear-gradient(135deg, rgba(15, 43, 91, 0.92) 0%, rgba(27, 42, 74, 0.88) 100%), url('https://webflash.pro/storage/generated/342/hero_1777228064_69ee59200cd99.webp') center/cover no-repeat;
            color: var(--white);
            overflow: hidden;
        }

.hero::before {
            content: ""; position: absolute; inset: 0;
            background: radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

.hero-content {
            position: relative; z-index: 2;
            max-width: 880px; margin: 0 auto;
            text-align: center;
            padding-left: 0; padding-right: 0;
        }

.hero-cartouche {
            display: inline-block;
            border-top: 1px solid var(--accent);
            border-bottom: 1px solid var(--accent);
            padding: 38px 60px;
            margin-bottom: 38px;
            position: relative;
        }

.hero-cartouche::before, .hero-cartouche::after {
            content: ""; position: absolute;
            width: 1px; height: 30px; background: var(--accent);
            top: 50%; transform: translateY(-50%);
        }

.hero-cartouche::before { left: 12px; }

.hero-cartouche::after { right: 12px; }

.hero-surtitre {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--accent);
            font-size: 1.15rem;
            letter-spacing: 0.06em;
            margin-bottom: 16px;
        }

.hero h1 {
            color: var(--white);
            font-size: clamp(2.2rem, 5vw, 4rem);
            font-weight: 600;
            line-height: 1.1;
            letter-spacing: 0.01em;
            margin-bottom: 18px;
        }

.hero-poles {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--accent);
            font-size: 1.3rem;
            letter-spacing: 0.08em;
        }

.hero-tagline {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 720px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

.hero-cta-row {
            display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
        }

.btn {
            display: inline-flex; align-items: center; gap: 12px;
            padding: 16px 36px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border: 1px solid transparent;
            border-radius: 2px;
            cursor: pointer;
            transition: all .3s ease;
            font-family: 'Inter', sans-serif;
        }

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

.btn-primary:hover {
            background: transparent;
            color: var(--accent);
            border-color: var(--accent);
            transform: translateY(-2px);
        }

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

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

.devis-section {
            background: var(--ivory);
            padding: 90px 0;
            position: relative;
        }

.devis-wrap {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 70px;
            align-items: center;
        }

.devis-text .surtitre { color: var(--accent); }

.devis-text h2 {
            font-size: clamp(1.8rem, 3.2vw, 2.6rem);
            margin-bottom: 22px;
        }

.devis-text p {
            color: var(--muted);
            margin-bottom: 22px;
            font-size: 1.05rem;
        }

.devis-features {
            list-style: none;
            margin-top: 28px;
        }

.devis-features li {
            display: flex; align-items: center; gap: 14px;
            padding: 10px 0;
            color: var(--slate);
            font-weight: 500;
        }

.devis-features li i {
            color: var(--accent);
            font-size: 1rem;
            width: 24px;
            text-align: center;
        }

.devis-card {
            background: var(--white);
            padding: 48px;
            box-shadow: var(--shadow-lg);
            border-top: 3px solid var(--accent);
            position: relative;
        }

.devis-card h3 {
            font-size: 1.6rem;
            margin-bottom: 8px;
        }

.devis-card .form-sub {
            color: var(--muted);
            margin-bottom: 28px;
            font-size: 0.95rem;
        }

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

.form-group label {
            display: block;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 8px;
        }

.form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid var(--line);
            background: var(--white);
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: var(--slate);
            transition: border-color .2s ease, box-shadow .2s ease;
            border-radius: 2px;
        }

.form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
        }

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

.btn-submit {
            width: 100%;
            padding: 16px;
            background: var(--primary);
            color: var(--white);
            border: none;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: background .25s ease, transform .25s ease;
            border-radius: 2px;
            margin-top: 8px;
        }

.btn-submit:hover {
            background: var(--accent);
            transform: translateY(-1px);
        }

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

.form-status p { margin-top: 14px; font-size: 0.95rem; }

.stats-section {
            background: var(--primary);
            color: var(--white);
            padding: 80px 0;
            position: relative;
        }

.stats-section::before {
            content: ""; position: absolute; inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(201, 169, 110, 0.04) 100%);
            pointer-events: none;
        }

.stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative; z-index: 1;
        }

.stat-item {
            text-align: center;
            padding: 20px;
            border-left: 1px solid rgba(201, 169, 110, 0.3);
        }

.stat-item:first-child { border-left: none; }

.stat-icon {
            color: var(--accent);
            font-size: 1.4rem;
            margin-bottom: 14px;
        }

.stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.6rem;
            color: var(--accent);
            font-weight: 600;
            line-height: 1;
            margin-bottom: 10px;
        }

.stat-label {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95rem;
            line-height: 1.4;
        }

.poles-section {
            background: var(--white);
            padding: 110px 0;
        }

.poles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

.pole-col {
            padding: 56px 40px;
            border-right: 1px solid var(--line);
            position: relative;
            text-align: center;
        }

.pole-col:last-child { border-right: none; }

.pole-roman {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 5rem;
            color: var(--beige);
            line-height: 1;
            margin-bottom: 14px;
            font-weight: 400;
        }

.pole-col h3 {
            font-size: 1.7rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

.pole-col p {
            color: var(--muted);
            font-size: 0.98rem;
            margin-bottom: 18px;
        }

.pole-list {
            list-style: none;
            text-align: left;
            margin-top: 18px;
        }

.pole-list li {
            padding: 8px 0;
            font-size: 0.93rem;
            color: var(--slate);
            border-bottom: 1px dashed var(--line);
            display: flex; align-items: flex-start; gap: 10px;
        }

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

.pole-list li i {
            color: var(--accent);
            font-size: 0.7rem;
            margin-top: 7px;
        }

.approche-section {
            background: var(--ivory);
            padding: 110px 0;
        }

.approche-wrap {
            max-width: 920px; margin: 0 auto;
            text-align: center;
        }

.approche-quote {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-size: clamp(1.4rem, 2.3vw, 1.9rem);
            color: var(--primary);
            line-height: 1.5;
            margin-bottom: 30px;
        }

.approche-quote::before, .approche-quote::after {
            color: var(--accent);
            font-size: 2rem;
            font-style: normal;
        }

.approche-quote::before { content: "“ "; }

.approche-quote::after { content: " ”"; }

.approche-warning {
            display: inline-block;
            background: var(--white);
            border: 1px solid var(--line);
            border-left: 3px solid var(--accent);
            padding: 22px 32px;
            margin-top: 30px;
            text-align: left;
            font-size: 0.98rem;
            color: var(--slate);
            max-width: 720px;
        }

.approche-warning strong { color: var(--primary); }

.services-section {
            background: var(--white);
            padding: 110px 0;
        }

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

.service-card {
            flex: 1 1 280px;
            max-width: 380px;
            background: var(--white);
            border: 1px solid var(--line);
            transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
            display: flex; flex-direction: column;
            position: relative;
        }

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

.service-card-num {
            position: absolute;
            top: 18px; left: 22px;
            font-family: 'Playfair Display', serif;
            font-style: italic;
            color: var(--accent);
            font-size: 1.1rem;
            z-index: 2;
            background: rgba(255,255,255,0.95);
            width: 36px; height: 36px;
            display: flex; align-items: center; justify-content: center;
            border: 1px solid var(--accent);
        }

.service-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            background: var(--ivory);
            display:none;
        }

.service-content {
            padding: 32px 28px;
            flex: 1;
            display: flex; flex-direction: column;
        }

.service-icon {
            color: var(--accent);
            font-size: 1.4rem;
            margin-bottom: 16px;
        }

.service-content h3 {
            font-size: 1.2rem;
            margin-bottom: 14px;
            line-height: 1.35;
            color: var(--primary);
        }

.service-content p {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.6;
            flex: 1;
        }

.service-tag {
            display: inline-block;
            margin-top: 18px;
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--accent);
            font-size: 0.95rem;
            letter-spacing: 0.04em;
        }

.usp-section {
            background: var(--primary);
            color: var(--white);
            padding: 90px 0;
        }

.usp-section .section-title { color: var(--white); }

.usp-section .surtitre { color: var(--accent); }

.usp-section .section-intro { color: rgba(255,255,255,0.78); }

.usp-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            margin-top: 30px;
        }

.usp-item {
            padding: 28px 22px;
            border: 1px solid rgba(201, 169, 110, 0.25);
            text-align: center;
            transition: background .3s ease, border-color .3s ease;
        }

.usp-item:hover {
            background: rgba(201, 169, 110, 0.08);
            border-color: var(--accent);
        }

.usp-icon {
            color: var(--accent);
            font-size: 1.6rem;
            margin-bottom: 16px;
        }

.usp-item h4 {
            color: var(--white);
            font-size: 1.05rem;
            margin-bottom: 10px;
            font-weight: 500;
        }

.usp-item p {
            color: rgba(255,255,255,0.72);
            font-size: 0.88rem;
            line-height: 1.55;
        }

.about-section {
            background: var(--white);
            padding: 110px 0;
        }

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

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

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

.about-img-wrap::after {
            content: "";
            position: absolute;
            top: 24px; left: 24px;
            width: 100%; height: 100%;
            border: 1px solid var(--accent);
            z-index: -1;
        }

.about-text h2 { margin-bottom: 24px; }

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

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

.about-list li {
            display: flex; align-items: flex-start; gap: 14px;
            padding: 10px 0;
            color: var(--slate);
        }

.about-list li i {
            color: var(--accent);
            font-size: 0.95rem;
            margin-top: 5px;
        }

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

.intl-section::before {
            content: "";
            position: absolute;
            right: -100px; top: 50%;
            transform: translateY(-50%);
            width: 500px; height: 500px;
            border: 1px solid rgba(201, 169, 110, 0.15);
            border-radius: 50%;
        }

.intl-section::after {
            content: "";
            position: absolute;
            right: 50px; top: 50%;
            transform: translateY(-50%);
            width: 300px; height: 300px;
            border: 1px solid rgba(201, 169, 110, 0.2);
            border-radius: 50%;
        }

.intl-wrap {
            max-width: 720px;
            position: relative; z-index: 2;
        }

.intl-wrap .surtitre { color: var(--accent); }

.intl-wrap h2 {
            color: var(--white);
            font-size: clamp(1.9rem, 3.5vw, 2.8rem);
            margin-bottom: 24px;
        }

.intl-wrap p {
            color: rgba(255,255,255,0.85);
            font-size: 1.05rem;
            margin-bottom: 18px;
        }

.intl-tags {
            display: flex; flex-wrap: wrap; gap: 12px;
            margin-top: 30px;
        }

.intl-tag {
            padding: 8px 18px;
            border: 1px solid var(--accent);
            color: var(--accent);
            font-size: 0.82rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

.zones-section {
            background: var(--ivory);
            padding: 100px 0;
        }

.zones-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            margin-top: 40px;
        }

.zone-card {
            background: var(--white);
            padding: 26px 22px;
            border: 1px solid var(--line);
            text-align: center;
            transition: border-color .3s ease, transform .3s ease;
        }

.zone-card:hover {
            border-color: var(--accent);
            transform: translateY(-3px);
        }

.zone-card i {
            color: var(--accent);
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

.zone-card h4 {
            font-size: 1rem;
            color: var(--primary);
            margin-bottom: 6px;
            font-family: 'Playfair Display', serif;
        }

.zone-card span {
            color: var(--muted);
            font-size: 0.82rem;
        }

.zones-note {
            text-align: center;
            margin-top: 36px;
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--primary);
            font-size: 1.15rem;
        }

.faq-section {
            background: var(--white);
            padding: 110px 0;
        }

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

.faq-item {
            border-bottom: 1px solid var(--line);
            padding: 4px 0;
        }

.faq-item summary {
            cursor: pointer;
            padding: 26px 0;
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 500;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            list-style: none;
            transition: color .25s ease;
        }

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

.faq-item summary::after {
            content: "+";
            font-family: 'Inter', sans-serif;
            color: var(--accent);
            font-size: 1.6rem;
            font-weight: 300;
            transition: transform .3s ease;
            flex-shrink: 0;
        }

.faq-item[open] summary::after { content: "—"; }

.faq-item[open] summary { color: var(--accent); }

.faq-item p {
            color: var(--muted);
            padding: 0 0 26px 0;
            font-size: 1rem;
            line-height: 1.75;
        }

.schedule-section {
            background: var(--ivory);
            padding: 100px 0;
        }

.schedule-wrap {
            max-width: 760px;
            margin: 0 auto;
            background: var(--white);
            padding: 60px 50px;
            position: relative;
            border-top: 1px solid var(--accent);
            border-bottom: 1px solid var(--accent);
        }

.schedule-wrap::before, .schedule-wrap::after {
            content: ""; position: absolute;
            width: 1px; height: 30px; background: var(--accent);
        }

.schedule-wrap::before { top: 16px; left: 16px; }

.schedule-wrap::after { bottom: 16px; right: 16px; }

.schedule-head {
            text-align: center;
            margin-bottom: 40px;
        }

.schedule-head h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

.schedule-head .schedule-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--accent);
            font-size: 1.15rem;
        }

.schedule-list {
            list-style: none;
            margin-bottom: 30px;
        }

.schedule-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
            border-bottom: 1px solid var(--line);
            font-size: 1rem;
        }

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

.schedule-day {
            font-weight: 500;
            color: var(--primary);
        }

.schedule-hours { color: var(--slate); }

.schedule-row.closed .schedule-hours {
            color: #B0B5BA;
            font-style: italic;
        }

.schedule-text {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: var(--muted);
            text-align: center;
            line-height: 1.75;
            padding-top: 20px;
            border-top: 1px solid var(--line);
        }

.contact-section {
            background: var(--white);
            padding: 110px 0;
        }

.contact-wrap {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            margin-top: 30px;
        }

.contact-info-card {
            background: var(--primary);
            color: var(--white);
            padding: 46px 40px;
        }

.contact-info-card h3 {
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 28px;
        }

.contact-info-list {
            list-style: none;
        }

.contact-info-list li {
            display: flex;
            gap: 18px;
            align-items: flex-start;
            padding: 18px 0;
            border-bottom: 1px solid rgba(201,169,110,0.18);
        }

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

.contact-info-list i {
            color: var(--accent);
            font-size: 1.05rem;
            margin-top: 5px;
            width: 22px;
        }

.contact-info-list .info-label {
            display: block;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent);
            margin-bottom: 4px;
            font-weight: 500;
        }

.contact-info-list .info-value {
            color: var(--white);
            font-size: 0.98rem;
        }

.contact-info-list a.info-value { color: var(--white); }

.contact-info-list a.info-value:hover { color: var(--accent); }

.contact-form-wrap {
            background: var(--ivory);
            padding: 46px 40px;
        }

.contact-form-wrap h3 {
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

.contact-form-wrap > p {
            color: var(--muted);
            margin-bottom: 28px;
            font-size: 0.95rem;
        }

.map-wrap {
            margin-top: 50px;
            border-top: 1px solid var(--line);
        }

.map-wrap iframe { display: block; filter: grayscale(0.3) contrast(1.05); }

.footer {
            background: var(--primary-dark);
            color: rgba(255,255,255,0.75);
            padding: 80px 0 30px;
        }

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

.footer-brand img {
            height: 50px; width: auto;
            margin-bottom: 18px;
        }

.footer-brand-name {
            font-family: 'Playfair Display', serif;
            color: var(--white);
            font-size: 1.25rem;
            margin-bottom: 14px;
        }

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

.footer-col-title {
            display: block;
            font-family: 'Playfair Display', serif;
            color: var(--accent);
            font-size: 1.05rem;
            margin-bottom: 22px;
            padding-bottom: 14px;
            border-bottom: 1px solid rgba(201,169,110,0.25);
            letter-spacing: 0.02em;
        }

.footer ul { list-style: none; }

.footer ul li {
            padding: 6px 0;
            font-size: 0.92rem;
        }

.footer ul li a { color: rgba(255,255,255,0.75); transition: color .2s ease, padding .25s ease; }

.footer ul li a:hover { color: var(--accent); padding-left: 4px; }

.footer ul li i { color: var(--accent); margin-right: 8px; font-size: 0.85rem; }

.footer-bottom {
            border-top: 1px solid rgba(201,169,110,0.18);
            padding-top: 25px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

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

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

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

.modal.active { display: flex; }

.modal-content {
            background: var(--white);
            max-width: 720px; width: 100%;
            max-height: 86vh;
            overflow-y: auto;
            padding: 50px 45px;
            position: relative;
            border-top: 3px solid var(--accent);
        }

.modal-close {
            position: absolute; top: 16px; right: 18px;
            background: none; border: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: var(--primary);
        }

.modal-content p {
            margin-bottom: 14px;
            font-size: 0.95rem;
            color: var(--slate);
        }

.modal-content .modal-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.7rem;
            color: var(--primary);
            margin-bottom: 26px;
            border-bottom: 1px solid var(--line);
            padding-bottom: 14px;
        }

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

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

.fade-in {
            animation: fadeUp .9s ease-out both;
        }

@media (max-width: 1024px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
            .stat-item:nth-child(odd) { border-left: none; }
            .usp-grid { grid-template-columns: repeat(2, 1fr); }
            .zones-grid { grid-template-columns: repeat(3, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
            .poles-grid { grid-template-columns: 1fr; }
            .pole-col { border-right: none; border-bottom: 1px solid var(--line); }
            .pole-col:last-child { border-bottom: none; }
        }

@media (max-width: 768px) {
            .section-padding { padding: 70px 0; }
            .hero { min-height: auto; padding-top: 130px; padding-bottom: 60px; }
            .hero-cartouche { padding: 28px 22px; }
            .hero-cta-row { flex-direction: column; align-items: stretch; }
            .btn { width: 100%; justify-content: center; }
            .devis-wrap { grid-template-columns: 1fr; gap: 40px; }
            .devis-card { padding: 30px 22px; }
            .stats-grid { grid-template-columns: 1fr; gap: 30px; }
            .stat-item { border-left: none; border-top: 1px solid rgba(201,169,110,0.2); padding: 26px 0; }
            .stat-item:first-child { border-top: none; }
            .about-wrap { grid-template-columns: 1fr; gap: 50px; }
            .about-img-wrap img { height: 380px; }
            .contact-wrap { grid-template-columns: 1fr; gap: 30px; }
            .contact-info-card, .contact-form-wrap { padding: 32px 24px; }
            .schedule-wrap { padding: 40px 22px; }
            .zones-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr; gap: 35px; }
            .container { padding-left: 18px; padding-right: 18px; }
            .usp-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }

@media (max-width: 480px) {
            h1 { font-size: 1.9rem !important; }
            .hero-poles { font-size: 1.05rem; }
            .schedule-row { flex-direction: column; align-items: flex-start; gap: 4px; }
            .pole-roman { font-size: 4rem; }
        }

@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 { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

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

.sct-tpl-service-city { color: var(--slate, #2C3E50); }

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(15, 43, 91, 0.93) 0%, rgba(27, 42, 74, 0.90) 100%),
        url('') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-bc-sep { color: rgba(201,169,110,0.7); }

.sct-tpl-service-city .sct-bc-current { color: #C9A96E; font-style: italic; }

.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;
    border: 1px solid rgba(201, 169, 110, 0.5);
    color: #C9A96E;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sct-tpl-service-city .sct-hero-badge i { font-size: 0.75rem; }

.sct-tpl-service-city .sct-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    line-height: 1.15;
    color: #fff;
    margin-bottom: 22px;
    font-weight: 600;
}

.sct-tpl-service-city .sct-hero-text h1 strong { color: #C9A96E; font-weight: 600; }

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 620px;
}

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

.sct-tpl-service-city .sct-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 15px 30px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all .3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.sct-tpl-service-city .sct-btn-primary {
    background: #C9A96E;
    color: #fff;
    border-color: #C9A96E;
}

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

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

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

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

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

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

.sct-tpl-service-city .sct-hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201, 169, 110, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 38px 34px;
    border-top: 3px solid #C9A96E;
}

.sct-tpl-service-city .sct-hero-card h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.sct-tpl-service-city .sct-hero-card-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #C9A96E;
    font-size: 1rem;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
}

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

.sct-tpl-service-city .sct-hero-card-list li {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.18);
    color: rgba(255,255,255,0.92);
    font-size: 0.93rem;
}

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

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

.sct-tpl-service-city .sct-hero-card-list strong { color: #fff; font-weight: 600; }

.sct-tpl-service-city .sct-hero-card-cta {
    display: block;
    text-align: center;
    padding: 14px;
    background: #C9A96E;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: background .25s ease;
}

.sct-tpl-service-city .sct-hero-card-cta:hover { background: #A88A52; color: #fff; }

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

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

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

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

.sct-tpl-service-city .sct-surtitre {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #C9A96E;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-surtitre::before { content: "— "; }

.sct-tpl-service-city .sct-surtitre::after { content: " —"; }

.sct-tpl-service-city .sct-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    color: #0F2B5B;
    margin-bottom: 18px;
    font-weight: 600;
    line-height: 1.25;
}

.sct-tpl-service-city .sct-section-intro {
    color: #6B7280;
    font-size: 1.02rem;
    line-height: 1.7;
}

.sct-tpl-service-city .sct-stats-band {
    background: #0F2B5B;
    padding: 70px 0;
    color: #fff;
}

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

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

.sct-tpl-service-city .sct-stat-item {
    text-align: center;
    padding: 18px;
    border-left: 1px solid rgba(201,169,110,0.3);
}

.sct-tpl-service-city .sct-stat-item:first-child { border-left: none; }

.sct-tpl-service-city .sct-stat-icon { color: #C9A96E; font-size: 1.3rem; margin-bottom: 12px; }

.sct-tpl-service-city .sct-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #C9A96E;
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 600;
}

.sct-tpl-service-city .sct-stat-label {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    line-height: 1.4;
}

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

@media (max-width: 480px) {
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-stat-item { border-left: none; border-top: 1px solid rgba(201,169,110,0.3); padding-top: 24px; }
    .sct-tpl-service-city .sct-stat-item:first-child { border-top: none; }
}

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

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

.sct-tpl-service-city .sct-intro-wrap p {
    color: #4B5563;
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 22px;
}

.sct-tpl-service-city .sct-intro-wrap strong { color: #0F2B5B; font-weight: 600; }

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

.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: 1px solid rgba(15, 43, 91, 0.10);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    display: flex; flex-direction: column;
    overflow: hidden;
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(15,43,91,0.14);
    border-color: #C9A96E;
}

.sct-tpl-service-city .sct-service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #E8E2D5;
}

.sct-tpl-service-city .sct-service-content {
    padding: 30px 28px;
    flex: 1;
    display: flex; flex-direction: column;
}

.sct-tpl-service-city .sct-service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #0F2B5B;
    margin-bottom: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.sct-tpl-service-city .sct-service-content p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

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

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

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

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

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

.sct-tpl-service-city .sct-process-step {
    text-align: center;
    padding: 28px 18px;
    border: 1px solid rgba(15, 43, 91, 0.10);
    background: #fff;
    position: relative;
    transition: border-color .3s ease, transform .3s ease;
}

.sct-tpl-service-city .sct-process-step:hover {
    border-color: #C9A96E;
    transform: translateY(-3px);
}

.sct-tpl-service-city .sct-process-num {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    width: 32px; height: 32px;
    background: #C9A96E;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}

.sct-tpl-service-city .sct-process-icon {
    color: #C9A96E;
    font-size: 1.6rem;
    margin: 14px 0 16px;
}

.sct-tpl-service-city .sct-process-step h4 {
    font-family: 'Playfair Display', serif;
    color: #0F2B5B;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.sct-tpl-service-city .sct-process-step p {
    color: #6B7280;
    font-size: 0.88rem;
    line-height: 1.55;
}

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

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

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

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

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

.sct-tpl-service-city .sct-why-card {
    background: #fff;
    padding: 32px 26px;
    border: 1px solid rgba(15, 43, 91, 0.10);
    text-align: center;
    transition: border-color .3s ease, transform .3s ease;
}

.sct-tpl-service-city .sct-why-card:hover {
    border-color: #C9A96E;
    transform: translateY(-3px);
}

.sct-tpl-service-city .sct-why-icon {
    color: #C9A96E;
    font-size: 1.7rem;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-why-card h4 {
    font-family: 'Playfair Display', serif;
    color: #0F2B5B;
    font-size: 1.05rem;
    margin-bottom: 12px;
    font-weight: 600;
}

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

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

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

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

.sct-tpl-service-city .sct-zones-wrap {
    max-width: 980px;
    margin: 0 auto;
    background: #F7F5F0;
    padding: 50px;
    border-left: 3px solid #C9A96E;
}

.sct-tpl-service-city .sct-zones-wrap h3 {
    font-family: 'Playfair Display', serif;
    color: #0F2B5B;
    font-size: 1.4rem;
    margin-bottom: 22px;
    font-weight: 600;
}

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

.sct-tpl-service-city .sct-zones-list li {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid rgba(15,43,91,0.10);
    color: #2C3E50;
    font-size: 0.88rem;
    transition: border-color .2s ease, color .2s ease;
}

.sct-tpl-service-city .sct-zones-list li:hover {
    border-color: #C9A96E;
    color: #0F2B5B;
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-zones-wrap { padding: 32px 22px; }
}

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

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

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

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

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

.sct-tpl-service-city .sct-usecase-img::after {
    content: "";
    position: absolute;
    top: 22px; left: 22px;
    width: 100%; height: 100%;
    border: 1px solid #C9A96E;
    z-index: -1;
}

.sct-tpl-service-city .sct-usecase-text h2 { margin-bottom: 24px; }

.sct-tpl-service-city .sct-usecase-text p {
    color: #4B5563;
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-usecase-text strong { color: #0F2B5B; font-weight: 600; }

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

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

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

.sct-tpl-service-city .sct-engagements-section .sct-section-intro { color: rgba(255,255,255,0.78); }

.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 {
    padding: 36px 28px;
    border: 1px solid rgba(201, 169, 110, 0.25);
    text-align: center;
    transition: background .3s ease, border-color .3s ease;
}

.sct-tpl-service-city .sct-engagement-card:hover {
    background: rgba(201, 169, 110, 0.08);
    border-color: #C9A96E;
}

.sct-tpl-service-city .sct-engagement-icon {
    color: #C9A96E;
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-engagement-card h4 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 500;
}

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

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

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

.sct-tpl-service-city .sct-local-wrap {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    padding: 44px 36px;
    background: #F7F5F0;
    border-top: 3px solid #C9A96E;
}

.sct-tpl-service-city .sct-local-wrap h3 {
    font-family: 'Playfair Display', serif;
    color: #0F2B5B;
    font-size: 1.5rem;
    margin-bottom: 18px;
    font-weight: 600;
}

.sct-tpl-service-city .sct-local-wrap p {
    color: #4B5563;
    font-size: 1rem;
    line-height: 1.75;
}

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

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

.sct-tpl-service-city .sct-faq-item {
    background: #fff;
    border: 1px solid rgba(15, 43, 91, 0.10);
    margin-bottom: 14px;
    transition: border-color .3s ease;
}

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

.sct-tpl-service-city .sct-faq-q {
    padding: 22px 26px;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 20px;
    list-style: none;
    font-family: 'Playfair Display', serif;
    color: #0F2B5B;
    font-size: 1.05rem;
    font-weight: 500;
}

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

.sct-tpl-service-city .sct-faq-q::after {
    content: "\2b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #C9A96E;
    font-size: 0.95rem;
    transition: transform .3s ease;
    flex-shrink: 0;
}

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

.sct-tpl-service-city .sct-faq-a {
    padding: 0 26px 22px;
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.7;
}

.sct-tpl-service-city .sct-maillage-section { background: #fff; padding: 70px 0; border-top: 1px solid rgba(15,43,91,0.08); }

.sct-tpl-service-city .sct-maillage-section + .sct-maillage-section { border-top: 1px dashed rgba(15,43,91,0.10); }

.sct-tpl-service-city .sct-maillage-title {
    font-family: 'Playfair Display', serif;
    color: #0F2B5B;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 26px;
    font-weight: 600;
}

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

.sct-tpl-service-city .sct-maillage-list li a {
    display: inline-block;
    padding: 9px 18px;
    background: #F7F5F0;
    border: 1px solid rgba(15, 43, 91, 0.10);
    color: #0F2B5B;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all .25s ease;
}

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

.sct-tpl-service-city .sct-cta-final {
    background: linear-gradient(135deg, #1B2A4A 0%, #0F2B5B 100%);
    color: #fff;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-city .sct-cta-final::before {
    content: "";
    position: absolute;
    right: -100px; top: 50%;
    transform: translateY(-50%);
    width: 400px; height: 400px;
    border: 1px solid rgba(201, 169, 110, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.sct-tpl-service-city .sct-cta-final-wrap {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative; z-index: 2;
}

.sct-tpl-service-city .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    margin-bottom: 18px;
    font-weight: 600;
}

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

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

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

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(15, 43, 91, 0.93) 0%, rgba(27, 42, 74, 0.90) 100%),
        url('/images/cabinet-conseil.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(15, 43, 91, 0.93) 0%, rgba(27, 42, 74, 0.90) 100%),
        url('https://webflash.pro/storage/uploads/342/logo_1777227160_69ee55984e13c.jpg') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(15, 43, 91, 0.93) 0%, rgba(27, 42, 74, 0.90) 100%),
        url('/images/hero-copropriete-neuilly.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(15, 43, 91, 0.93) 0%, rgba(27, 42, 74, 0.90) 100%),
        url('/images/hero-boulogne-billancourt.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        linear-gradient(135deg, rgba(15, 43, 91, 0.93) 0%, rgba(27, 42, 74, 0.90) 100%),
        url('/images/hero-gestion-administrative-immobilier.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-service-hub {
    font-family: 'Inter', sans-serif;
    color: #2C3E50;
    background: #FFFFFF;
    line-height: 1.7;
}

.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;
    color: #0F2B5B;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.sct-tpl-service-hub a { color: #0F2B5B; text-decoration: none; transition: color .2s ease; }

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

.sct-tpl-service-hub .sct-surtitre {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #C9A96E;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

.sct-tpl-service-hub .sct-surtitre::before { content: "— "; }

.sct-tpl-service-hub .sct-surtitre::after { content: " —"; }

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

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

.sct-tpl-service-hub .sct-section-intro {
    color: #6B7280;
    font-size: 1.02rem;
}

.sct-tpl-service-hub .sct-breadcrumb-wrap {
    background: #F7F5F0;
    padding: 100px 0 18px;
    border-bottom: 1px solid rgba(15, 43, 91, 0.08);
}

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

.sct-tpl-service-hub .sct-breadcrumb a { color: #0F2B5B; }

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

.sct-tpl-service-hub .sct-breadcrumb span[aria-current] { color: #C9A96E; font-weight: 500; }

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 60px 0 90px;
    background: linear-gradient(135deg, rgba(15, 43, 91, 0.92) 0%, rgba(27, 42, 74, 0.88) 100%), url('') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

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

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

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

.sct-tpl-service-hub .sct-hero-surtitre {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #C9A96E;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.5);
}

.sct-tpl-service-hub .sct-hero-text h1 {
    color: #FFFFFF;
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    line-height: 1.15;
    margin-bottom: 22px;
    overflow-wrap: anywhere;
}

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 32px;
    max-width: 600px;
}

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

.sct-tpl-service-hub .sct-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 32px;
    font-size: 0.84rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: all .3s ease;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.sct-tpl-service-hub .sct-btn-primary {
    background: #C9A96E;
    color: #FFFFFF;
    border-color: #C9A96E;
}

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: transparent;
    color: #C9A96E;
    transform: translateY(-2px);
}

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

.sct-tpl-service-hub .sct-btn-outline:hover {
    background: #FFFFFF;
    color: #0F2B5B;
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.sct-tpl-service-hub .sct-hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201, 169, 110, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 36px 32px;
    border-radius: 2px;
}

.sct-tpl-service-hub .sct-hero-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #C9A96E;
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
}

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

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

.sct-tpl-service-hub .sct-hero-card li i {
    color: #C9A96E;
    font-size: 0.85rem;
    margin-top: 6px;
}

.sct-tpl-service-hub .sct-stats-band {
    background: #0F2B5B;
    color: #FFFFFF;
    padding: 60px 0;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

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

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

.sct-tpl-service-hub .sct-stat-item {
    text-align: center;
    padding: 20px 16px;
    border-left: 1px solid rgba(201, 169, 110, 0.25);
}

.sct-tpl-service-hub .sct-stat-item:first-child { border-left: none; }

.sct-tpl-service-hub .sct-stat-icon { color: #C9A96E; font-size: 1.3rem; margin-bottom: 10px; }

.sct-tpl-service-hub .sct-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    color: #C9A96E;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
}

.sct-tpl-service-hub .sct-stat-label {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

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

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

.sct-tpl-service-hub .sct-intro-wrap p {
    color: #4B5563;
    font-size: 1.04rem;
    line-height: 1.85;
    margin-bottom: 22px;
}

.sct-tpl-service-hub .sct-intro-wrap p:first-of-type::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 3.4rem;
    float: left;
    line-height: 1;
    padding: 6px 14px 0 0;
    color: #C9A96E;
}

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

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

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

.sct-tpl-service-hub .sct-service-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 43, 91, 0.1);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    display: flex; flex-direction: column;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(15, 43, 91, 0.12);
    border-color: #C9A96E;
}

.sct-tpl-service-hub .sct-service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #E8E2D5;
}

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

.sct-tpl-service-hub .sct-service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 14px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.sct-tpl-service-hub .sct-service-content p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

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

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

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

.sct-tpl-service-hub .sct-step-card {
    background: #F7F5F0;
    padding: 30px 22px;
    text-align: center;
    border-top: 3px solid #C9A96E;
    position: relative;
}

.sct-tpl-service-hub .sct-step-num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.4rem;
    color: #C9A96E;
    line-height: 1;
    margin-bottom: 14px;
    font-weight: 500;
}

.sct-tpl-service-hub .sct-step-card h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #0F2B5B;
    overflow-wrap: anywhere;
}

.sct-tpl-service-hub .sct-step-card p {
    color: #6B7280;
    font-size: 0.88rem;
    line-height: 1.55;
}

.sct-tpl-service-hub .sct-why-section {
    background: #0F2B5B;
    color: #FFFFFF;
    padding: 100px 0;
}

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

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

.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-item {
    padding: 30px 22px;
    border: 1px solid rgba(201, 169, 110, 0.25);
    text-align: center;
    transition: background .3s ease, border-color .3s ease;
}

.sct-tpl-service-hub .sct-why-item:hover {
    background: rgba(201, 169, 110, 0.08);
    border-color: #C9A96E;
}

.sct-tpl-service-hub .sct-why-icon {
    color: #C9A96E;
    font-size: 1.7rem;
    margin-bottom: 16px;
}

.sct-tpl-service-hub .sct-why-item h4 {
    color: #FFFFFF;
    font-size: 1.08rem;
    margin-bottom: 10px;
    font-weight: 500;
}

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

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

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

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

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

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

.sct-tpl-service-hub .sct-usecase-img-wrap::after {
    content: "";
    position: absolute;
    top: 22px; left: 22px;
    width: 100%; height: 100%;
    border: 1px solid #C9A96E;
    z-index: -1;
}

.sct-tpl-service-hub .sct-usecase-text h2 { margin-bottom: 22px; font-size: clamp(1.7rem, 3vw, 2.3rem); }

.sct-tpl-service-hub .sct-usecase-text p {
    color: #6B7280;
    font-size: 1rem;
    margin-bottom: 16px;
}

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

.sct-tpl-service-hub .sct-usecase-list li {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 10px 0;
    color: #2C3E50;
    border-bottom: 1px dashed rgba(15, 43, 91, 0.12);
}

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

.sct-tpl-service-hub .sct-usecase-list li i {
    color: #C9A96E;
    font-size: 0.95rem;
    margin-top: 5px;
}

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

.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-item {
    background: #F7F5F0;
    padding: 40px 32px;
    border-left: 3px solid #C9A96E;
    text-align: left;
}

.sct-tpl-service-hub .sct-engagement-icon {
    color: #C9A96E;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.sct-tpl-service-hub .sct-engagement-item h4 {
    color: #0F2B5B;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-engagement-item p {
    color: #6B7280;
    font-size: 0.96rem;
    line-height: 1.65;
}

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

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

.sct-tpl-service-hub .sct-faq-item {
    background: #FFFFFF;
    margin-bottom: 14px;
    border: 1px solid rgba(15, 43, 91, 0.1);
    border-left: 3px solid #C9A96E;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #0F2B5B;
    font-weight: 500;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
}

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

.sct-tpl-service-hub .sct-faq-item summary::after {
    content: "+";
    color: #C9A96E;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform .3s ease;
}

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

.sct-tpl-service-hub .sct-faq-item .sct-faq-answer {
    padding: 0 28px 22px;
    color: #4B5563;
    font-size: 0.97rem;
    line-height: 1.75;
}

.sct-tpl-service-hub .sct-maillage-section {
    background: #FFFFFF;
    padding: 100px 0;
    border-top: 1px solid rgba(15, 43, 91, 0.08);
}

.sct-tpl-service-hub .sct-maillage-section + .sct-maillage-section {
    background: #F7F5F0;
    border-top: none;
}

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

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

.sct-tpl-service-hub .sct-maillage-card {
    background: #F7F5F0;
    padding: 18px 20px;
    border: 1px solid rgba(15, 43, 91, 0.08);
    transition: border-color .3s ease, transform .3s ease, background .3s ease;
    display: flex; align-items: center; gap: 12px;
    color: #0F2B5B;
    font-size: 0.92rem;
    overflow-wrap: anywhere;
}

.sct-tpl-service-hub .sct-maillage-card:hover {
    border-color: #C9A96E;
    transform: translateY(-2px);
    background: #FFFFFF;
    color: #C9A96E;
}

.sct-tpl-service-hub .sct-maillage-card i {
    color: #C9A96E;
    font-size: 0.9rem;
    flex-shrink: 0;
}

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

.sct-tpl-service-hub .sct-maillage-section + .sct-maillage-section .sct-maillage-card:hover {
    background: #F7F5F0;
}

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

.sct-tpl-service-hub .sct-cta-final::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201, 169, 110, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

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

.sct-tpl-service-hub .sct-cta-final h2 {
    color: #FFFFFF;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 20px;
}

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

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

@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-stat-item:nth-child(3) { border-left: none; }
    .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-wrap { grid-template-columns: 1fr; gap: 50px; }
    .sct-tpl-service-hub .sct-usecase-img-wrap img { height: 420px; }
    .sct-tpl-service-hub .sct-engagements-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-maillage-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 40px 0 70px; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-hub .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-stat-item { border-left: none; border-top: 1px solid rgba(201, 169, 110, 0.2); padding-top: 24px; }
    .sct-tpl-service-hub .sct-stat-item:first-child { border-top: none; padding-top: 0; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-maillage-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-intro-section,
    .sct-tpl-service-hub .sct-services-section,
    .sct-tpl-service-hub .sct-processus-section,
    .sct-tpl-service-hub .sct-why-section,
    .sct-tpl-service-hub .sct-usecase-section,
    .sct-tpl-service-hub .sct-engagements-section,
    .sct-tpl-service-hub .sct-faq-section,
    .sct-tpl-service-hub .sct-maillage-section,
    .sct-tpl-service-hub .sct-cta-final { padding: 70px 0; }
    .sct-tpl-service-hub .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-usecase-img-wrap img { height: 320px; }
    .sct-tpl-service-hub .sct-usecase-img-wrap::after { display: none; }
    .sct-tpl-service-hub .sct-faq-item summary { padding: 18px 20px; font-size: 0.98rem; }
    .sct-tpl-service-hub .sct-faq-item .sct-faq-answer { padding: 0 20px 18px; }
}

.sct-tpl-zone { color: var(--slate, #2C3E50); }

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(15, 43, 91, 0.92) 0%, rgba(27, 42, 74, 0.88) 100%), url('/images/hero-boulogne-billancourt.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

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

.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-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
}

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

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

.sct-tpl-zone .sct-breadcrumb i { font-size: 0.65rem; color: rgba(255,255,255,0.4); }

.sct-tpl-zone .sct-hero-surtitre {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #C9A96E;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.sct-tpl-zone .sct-hero-surtitre::before { content: "— "; }

.sct-tpl-zone .sct-hero-surtitre::after { content: " —"; }

.sct-tpl-zone .sct-hero-text h1 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: 0.005em;
}

.sct-tpl-zone .sct-hero-text h1 em {
    font-style: italic;
    color: #C9A96E;
    font-weight: 500;
}

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
}

.sct-tpl-zone .sct-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin-bottom: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(201, 169, 110, 0.3);
}

.sct-tpl-zone .sct-hero-meta-item {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
}

.sct-tpl-zone .sct-hero-meta-item i {
    color: #C9A96E;
    font-size: 0.95rem;
}

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

.sct-tpl-zone .sct-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none;
}

.sct-tpl-zone .sct-btn-primary {
    background: #C9A96E;
    color: #fff;
    border-color: #C9A96E;
}

.sct-tpl-zone .sct-btn-primary:hover {
    background: transparent;
    color: #C9A96E;
    transform: translateY(-2px);
}

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

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

.sct-tpl-zone .sct-hero-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 169, 110, 0.4);
    padding: 38px 34px;
    position: relative;
}

.sct-tpl-zone .sct-hero-card::before, .sct-tpl-zone .sct-hero-card::after {
    content: "";
    position: absolute;
    width: 24px; height: 24px;
    border: 1px solid #C9A96E;
}

.sct-tpl-zone .sct-hero-card::before {
    top: -1px; left: -1px;
    border-right: none; border-bottom: none;
}

.sct-tpl-zone .sct-hero-card::after {
    bottom: -1px; right: -1px;
    border-left: none; border-top: none;
}

.sct-tpl-zone .sct-hero-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #C9A96E;
    font-size: 1rem;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.sct-tpl-zone .sct-hero-card h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 22px;
    line-height: 1.3;
}

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

.sct-tpl-zone .sct-hero-card-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 11px 0;
    color: rgba(255,255,255,0.88);
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(201,169,110,0.18);
}

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

.sct-tpl-zone .sct-hero-card-list li i {
    color: #C9A96E;
    font-size: 0.78rem;
    margin-top: 5px;
}

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

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 130px 0 70px; }
    .sct-tpl-zone .sct-hero-btns { flex-direction: column; }
    .sct-tpl-zone .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 2rem; line-height: 1.2; }
    .sct-tpl-zone .sct-hero-card { padding: 30px 24px; }
}

.sct-tpl-zone .sct-stats-band {
    background: #0F2B5B;
    color: #fff;
    padding: 60px 0;
    position: relative;
}

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

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

.sct-tpl-zone .sct-stat-item {
    text-align: center;
    padding: 14px 10px;
    border-left: 1px solid rgba(201, 169, 110, 0.3);
}

.sct-tpl-zone .sct-stat-item:first-child { border-left: none; }

.sct-tpl-zone .sct-stat-icon {
    color: #C9A96E;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

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

.sct-tpl-zone .sct-stat-label {
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    line-height: 1.4;
}

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

@media (max-width: 480px) {
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-stat-item { border-left: none; border-top: 1px solid rgba(201,169,110,0.3); padding-top: 24px; }
    .sct-tpl-zone .sct-stat-item:first-child { border-top: none; padding-top: 14px; }
}

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

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

.sct-tpl-zone .sct-surtitre {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #C9A96E;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-surtitre::before { content: "— "; }

.sct-tpl-zone .sct-surtitre::after { content: " —"; }

.sct-tpl-zone .sct-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.6vw, 2.7rem);
    color: #0F2B5B;
    margin-bottom: 18px;
    line-height: 1.2;
    font-weight: 600;
}

.sct-tpl-zone .sct-section-intro {
    color: #6B7280;
    font-size: 1.02rem;
    line-height: 1.7;
}

.sct-tpl-zone .sct-gold-line {
    width: 60px; height: 1px;
    background: #C9A96E;
    margin: 22px auto;
}

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

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

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

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

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

.sct-tpl-zone .sct-intro-img-wrap::after {
    content: "";
    position: absolute;
    top: 24px; left: 24px;
    width: 100%; height: 100%;
    border: 1px solid #C9A96E;
    z-index: -1;
}

.sct-tpl-zone .sct-intro-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 3vw, 2.4rem); color: #0F2B5B; margin-bottom: 24px; line-height: 1.25; font-weight: 600; }

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

.sct-tpl-zone .sct-intro-text p strong { color: #0F2B5B; font-weight: 600; }

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

.sct-tpl-zone .sct-services-section { background: #F7F5F0; padding: 110px 0; }

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

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

.sct-tpl-zone .sct-service-card {
    background: #fff;
    border: 1px solid rgba(15, 43, 91, 0.12);
    padding: 36px 30px;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    display: flex; flex-direction: column;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.sct-tpl-zone .sct-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(15, 43, 91, 0.14);
    border-color: #C9A96E;
}

.sct-tpl-zone .sct-service-num {
    position: absolute;
    top: 22px; right: 22px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #C9A96E;
    font-size: 0.95rem;
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid #C9A96E;
}

.sct-tpl-zone .sct-service-icon {
    color: #C9A96E;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #0F2B5B;
    margin-bottom: 14px;
    line-height: 1.35;
    font-weight: 600;
}

.sct-tpl-zone .sct-service-card p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}

.sct-tpl-zone .sct-service-link {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #C9A96E;
    font-size: 0.98rem;
    letter-spacing: 0.04em;
    display: inline-flex; align-items: center; gap: 8px;
}

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

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

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

@media (max-width: 640px) {
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; gap: 20px; }
    .sct-tpl-zone .sct-service-card { padding: 28px 24px; }
}

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

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

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

.sct-tpl-zone .sct-zone-card {
    background: #F7F5F0;
    padding: 26px 20px;
    border: 1px solid rgba(15, 43, 91, 0.08);
    text-align: center;
    transition: border-color .3s ease, transform .3s ease, background .3s ease;
}

.sct-tpl-zone .sct-zone-card:hover {
    border-color: #C9A96E;
    background: #fff;
    transform: translateY(-3px);
}

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

.sct-tpl-zone .sct-zone-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.98rem;
    color: #0F2B5B;
    margin-bottom: 4px;
    font-weight: 600;
}

.sct-tpl-zone .sct-zone-card span {
    color: #6B7280;
    font-size: 0.8rem;
}

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

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

.sct-tpl-zone .sct-usecase-section {
    background: #F7F5F0;
    padding: 110px 0;
}

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

.sct-tpl-zone .sct-usecase-card {
    background: #fff;
    border: 1px solid rgba(15, 43, 91, 0.08);
    border-left: 3px solid #C9A96E;
    padding: 50px 56px;
    box-shadow: 0 8px 32px rgba(15, 43, 91, 0.08);
    position: relative;
}

.sct-tpl-zone .sct-usecase-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #C9A96E;
    line-height: 1;
    margin-bottom: 14px;
    font-style: italic;
}

.sct-tpl-zone .sct-usecase-card p {
    color: #2C3E50;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.sct-tpl-zone .sct-usecase-card p strong { color: #0F2B5B; }

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

.sct-tpl-zone .sct-engagements-section {
    background: #0F2B5B;
    color: #fff;
    padding: 100px 0;
}

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

.sct-tpl-zone .sct-engagements-section .sct-section-intro { color: rgba(255,255,255,0.78); }

.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-item {
    padding: 40px 30px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    text-align: center;
    transition: background .3s ease, border-color .3s ease;
}

.sct-tpl-zone .sct-engagement-item:hover {
    background: rgba(201, 169, 110, 0.08);
    border-color: #C9A96E;
}

.sct-tpl-zone .sct-engagement-icon {
    color: #C9A96E;
    font-size: 2rem;
    margin-bottom: 20px;
}

.sct-tpl-zone .sct-engagement-item h4 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 14px;
    font-weight: 600;
}

.sct-tpl-zone .sct-engagement-item p {
    color: rgba(255,255,255,0.78);
    font-size: 0.93rem;
    line-height: 1.65;
}

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

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

.sct-tpl-zone .sct-local-spec-wrap {
    max-width: 920px; margin: 0 auto;
    background: #F7F5F0;
    border: 1px solid rgba(15, 43, 91, 0.08);
    border-top: 3px solid #C9A96E;
    padding: 50px 56px;
}

.sct-tpl-zone .sct-local-spec-wrap h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    color: #0F2B5B;
    margin-bottom: 22px;
    font-weight: 600;
}

.sct-tpl-zone .sct-local-spec-wrap p {
    color: #6B7280;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.75;
}

.sct-tpl-zone .sct-local-spec-wrap strong { color: #0F2B5B; }

.sct-tpl-zone .sct-local-spec-wrap ul {
    list-style: none; padding: 0; margin: 18px 0;
}

.sct-tpl-zone .sct-local-spec-wrap ul li {
    padding: 10px 0 10px 26px;
    position: relative;
    color: #2C3E50;
    border-bottom: 1px dashed rgba(15, 43, 91, 0.12);
}

.sct-tpl-zone .sct-local-spec-wrap ul li:last-child { border-bottom: none; }

.sct-tpl-zone .sct-local-spec-wrap ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0; top: 12px;
    color: #C9A96E;
    font-size: 0.85rem;
}

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

.sct-tpl-zone .sct-faq-section {
    background: #F7F5F0;
    padding: 110px 0;
}

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

.sct-tpl-zone .sct-faq-item {
    background: #fff;
    border: 1px solid rgba(15, 43, 91, 0.08);
    margin-bottom: 14px;
    transition: border-color .3s ease, box-shadow .3s ease;
}

.sct-tpl-zone .sct-faq-item:hover {
    border-color: #C9A96E;
    box-shadow: 0 8px 24px rgba(15,43,91,0.06);
}

.sct-tpl-zone .sct-faq-item summary {
    padding: 24px 56px 24px 30px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    color: #0F2B5B;
    font-weight: 600;
    list-style: none;
    position: relative;
    line-height: 1.4;
}

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

.sct-tpl-zone .sct-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 26px; top: 50%;
    transform: translateY(-50%);
    color: #C9A96E;
    font-size: 1.6rem;
    font-weight: 300;
    transition: transform .3s ease;
}

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

.sct-tpl-zone .sct-faq-item-content {
    padding: 0 30px 26px;
    color: #6B7280;
    font-size: 0.98rem;
    line-height: 1.75;
}

.sct-tpl-zone .sct-faq-item-content p { margin-bottom: 12px; }

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

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

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

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

.sct-tpl-zone .sct-maillage-card {
    background: #F7F5F0;
    border: 1px solid rgba(15, 43, 91, 0.08);
    padding: 22px 20px;
    text-align: center;
    transition: all .3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

.sct-tpl-zone .sct-maillage-card:hover {
    border-color: #C9A96E;
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15,43,91,0.06);
}

.sct-tpl-zone .sct-maillage-card i {
    color: #C9A96E;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.sct-tpl-zone .sct-maillage-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.98rem;
    color: #0F2B5B;
    margin-bottom: 4px;
    font-weight: 600;
}

.sct-tpl-zone .sct-maillage-card span {
    color: #6B7280;
    font-size: 0.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

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

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

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

.sct-tpl-zone .sct-cta-final::before {
    content: "";
    position: absolute;
    right: -80px; top: 50%;
    transform: translateY(-50%);
    width: 420px; height: 420px;
    border: 1px solid rgba(201, 169, 110, 0.18);
    border-radius: 50%;
}

.sct-tpl-zone .sct-cta-final::after {
    content: "";
    position: absolute;
    right: 60px; top: 50%;
    transform: translateY(-50%);
    width: 260px; height: 260px;
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: 50%;
}

.sct-tpl-zone .sct-cta-final-wrap {
    max-width: 720px;
    position: relative; z-index: 2;
}

.sct-tpl-zone .sct-cta-final-wrap .sct-surtitre { color: #C9A96E; }

.sct-tpl-zone .sct-cta-final-wrap h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    margin-bottom: 20px;
    line-height: 1.25;
    font-weight: 600;
}

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

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

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

@media (max-width: 992px) {
    .sct-tpl-zone .sct-section,
    .sct-tpl-zone .sct-intro-section,
    .sct-tpl-zone .sct-services-section,
    .sct-tpl-zone .sct-zones-section,
    .sct-tpl-zone .sct-usecase-section,
    .sct-tpl-zone .sct-engagements-section,
    .sct-tpl-zone .sct-local-spec,
    .sct-tpl-zone .sct-faq-section,
    .sct-tpl-zone .sct-maillage-section,
    .sct-tpl-zone .sct-cta-final { padding: 80px 0; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-section-head { margin-bottom: 50px; }
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(15, 43, 91, 0.92) 0%, rgba(27, 42, 74, 0.88) 100%), url('/images/hero-paris.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(15, 43, 91, 0.92) 0%, rgba(27, 42, 74, 0.88) 100%), url('/images/hero-neuilly-sur-seine.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.page-hero {
    position: relative;
    padding: 200px 0 110px;
    background: linear-gradient(135deg, rgba(15, 43, 91, 0.94) 0%, rgba(27, 42, 74, 0.90) 100%), url('https://webflash.pro/storage/generated/342/hero_1777228064_69ee59200cd99.webp') center/cover no-repeat;
    color: var(--white);
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

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

.page-hero-cartouche {
    display: inline-block;
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    padding: 30px 50px;
    position: relative;
}

.page-hero-cartouche::before, .page-hero-cartouche::after {
    content: ""; position: absolute;
    width: 1px; height: 26px; background: var(--accent);
    top: 50%; transform: translateY(-50%);
}

.page-hero-cartouche::before { left: 12px; }

.page-hero-cartouche::after { right: 12px; }

.page-hero-surtitre {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--accent);
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    display: block;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 16px;
}

.page-hero-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    margin: 26px auto 0;
}

.breadcrumb {
    margin-top: 30px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.04em;
}

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

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

.breadcrumb i { font-size: 0.65rem; margin: 0 10px; opacity: 0.6; }

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

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

.sitemap-block {
    margin-bottom: 70px;
}

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

.sitemap-block-head {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 36px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.sitemap-block-icon {
    flex-shrink: 0;
    width: 56px; height: 56px;
    border: 1px solid var(--accent);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}

.sitemap-block-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--primary);
    margin-bottom: 4px;
}

.sitemap-block-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--muted);
    font-size: 1rem;
}

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--slate);
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: 2px;
    transition: all .25s ease;
    box-shadow: var(--shadow-sm);
}

.chip i {
    color: var(--accent);
    font-size: 0.78rem;
    transition: transform .25s ease;
}

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

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

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

.service-group {
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 3px solid var(--accent);
    padding: 32px 34px;
    margin-bottom: 22px;
    transition: box-shadow .3s ease, transform .3s ease;
}

.service-group:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

.service-group-title i {
    color: var(--accent);
    font-size: 0.9rem;
}

.service-group .chips-row { gap: 10px; }

.service-group .chip {
    padding: 9px 16px;
    font-size: 0.86rem;
    background: var(--ivory);
}

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

.home-chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--primary);
    color: var(--white) !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 2px;
    transition: all .3s ease;
}

.home-chip i { color: var(--accent); }

.home-chip:hover {
    background: var(--accent);
    color: var(--white) !important;
    transform: translateY(-2px);
}

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

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

.cta-final::before {
    content: "";
    position: absolute;
    right: -100px; top: 50%;
    transform: translateY(-50%);
    width: 400px; height: 400px;
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 50%;
}

.cta-final::after {
    content: "";
    position: absolute;
    left: -100px; top: 50%;
    transform: translateY(-50%);
    width: 400px; height: 400px;
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 50%;
}

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

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

.cta-final p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 32px; }

.btn-primary:hover {
    background: transparent;
    color: var(--accent) !important;
    border-color: var(--accent);
    transform: translateY(-2px);
}

.footer {
    background: #0a1f44;
    color: rgba(255,255,255,0.78);
    padding: 80px 0 0;
}

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

.footer-brand img { height: 50px; margin-bottom: 16px; }

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

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

.footer-col-title {
    display: block;
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 22px;
    letter-spacing: 0.03em;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.72);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color .25s ease, transform .25s ease;
}

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

.footer-col ul li i {
    color: var(--accent);
    font-size: 0.7rem;
}

.footer-col ul li > i {
    margin-right: 8px;
}

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

.footer-legal-links a { color: rgba(255,255,255,0.7); }

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

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

@media (max-width: 768px) {
    .page-hero { padding: 160px 0 80px; }
    .sitemap-section { padding: 70px 0; }
    .sitemap-block-head { flex-direction: column; align-items: flex-start; gap: 16px; text-align: left; }
    .footer-grid { grid-template-columns: 1fr !important; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .service-group { padding: 24px 22px; }
}