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

:root {
    --secondary: #0c3683;
    --accent: #f15a17;
    --secondary-light: #0B4C50;
    --primary: #B8410E;
    --primary-dark: #8A3009;
    --primary-light: #D9582A;
    --accent-dark: #C8932F;
    --beige: #F5F1EA;
    --beige-dark: #ECE5D8;
    --white: #FFFFFF;
    --text: #2A2A2A;
    --text-light: #5C5C5C;
    --border: #E5DDD0;
    --success: #2E7D32;
    --danger: #C62828;
    --shadow-sm: 0 2px 8px rgba(28,46,61,0.08);
    --shadow-md: 0 8px 24px rgba(28,46,61,0.12);
    --shadow-lg: 0 16px 48px rgba(28,46,61,0.18);
    --radius: 8px;
    --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

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

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

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

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

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

a:hover { color: var(--primary-dark); }

.urgence-banner {
    background: linear-gradient(90deg, var(--danger), #A02020);
    color: var(--white);
    text-align: center;
    padding: 10px 16px;
    font-size: 0.92rem;
    font-weight: 500;
    position: relative;
    z-index: 1001;
}

.urgence-banner i { margin-right: 8px; animation: pulseLight 1.6s infinite; }

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

@keyframes pulseLight {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
}

.header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    z-index: 1000;
}

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

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

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

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.3px;
}

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

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

.nav a {
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 4px;
    position: relative;
    transition: color 0.25s ease;
}

.nav a:not(.btn-cta-nav):hover { color: var(--primary); }

.nav a:not(.btn-cta-nav)::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 4px;
    right: 4px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav a:not(.btn-cta-nav):hover::after { transform: scaleX(1); }

.nav .btn-cta-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 11px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(184,65,14,0.3);
}

.nav .btn-cta-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(184,65,14,0.4);
    color: var(--white) !important;
}

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

.hero {
    position: relative;
    min-height: 92vh;
    background: linear-gradient(135deg, rgba(28,46,61,0.85) 0%, rgba(184,65,14,0.75) 100%), url('https://webflash.pro/images/hero_1778942261_6a088135b9411.webp') center/cover no-repeat;
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

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

.hero-tag i { color: var(--accent); }

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    color: var(--white);
    margin-bottom: 22px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

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

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 540px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(184,65,14,0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(184,65,14,0.55);
}

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

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    font-size: 0.92rem;
}

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

.hero-trust i { color: var(--accent); }

.hero-devis-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
    position: relative;
    color: var(--text);
    border-top: 5px solid var(--accent);
}

.hero-devis-card::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    border-top-right-radius: var(--radius-lg);
}

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

.devis-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 22px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.93rem;
    background: var(--beige);
    transition: all 0.25s ease;
}

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

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

.devis-submit {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 14px;
    border-radius: var(--radius);
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 6px;
}

.devis-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(184,65,14,0.4);
}

.form-status { margin-top: 12px; font-size: 0.9rem; }

.stats {
    background: var(--secondary);
    color: var(--white);
    padding: 50px 0;
    margin-top: -1px;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

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

.stat-item { padding: 20px; }

.stat-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

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

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    letter-spacing: 0.3px;
}

section { padding: 90px 0; }

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

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    position: relative;
    padding-left: 36px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: var(--primary);
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

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

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex: 1 1 320px;
    max-width: 360px;
    transition: all 0.35s ease;
    border: 1px solid var(--border);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: var(--accent);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    transition: all 0.3s ease;
}

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

.service-card:hover::after { background: var(--primary); }

.service-image {
    height: 220px;
    background: var(--secondary-light);
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

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

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    margin-top: -50px;
    box-shadow: var(--shadow-md);
    color: var(--white);
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 18px;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link i { transition: transform 0.3s ease; }

.service-card:hover .service-link i { transform: translateX(6px); }

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

.process-timeline {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 3px;
}

.process-step {
    display: flex;
    gap: 28px;
    margin-bottom: 36px;
    position: relative;
    align-items: flex-start;
}

.process-step:last-child { margin-bottom: 0; }

.step-number {
    flex-shrink: 0;
    width: 66px;
    height: 66px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.step-content {
    flex: 1;
    background: var(--beige);
    padding: 22px 28px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--secondary);
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.engagements {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.engagements::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,176,75,0.15), transparent 70%);
    border-radius: 50%;
}

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

.engagements .section-header p { color: rgba(255,255,255,0.85); }

.engagements .section-tag { color: var(--accent); }

.engagements .section-tag::before { background: var(--accent); }

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

.engagement-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.35s ease;
}

.engagement-card:hover {
    background: rgba(232,176,75,0.12);
    border-color: var(--accent);
    transform: translateY(-6px);
}

.engagement-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.engagement-card h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.engagement-card p {
    color: rgba(255,255,255,0.78);
    font-size: 0.92rem;
    margin: 0;
}

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

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

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

.about-image-wrap img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -28px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 4px solid var(--white);
}

.about-badge i {
    font-size: 1.8rem;
    color: var(--accent);
    display: block;
    margin-bottom: 6px;
}

.about-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    line-height: 1.1;
}

.about-badge span { font-size: 0.82rem; opacity: 0.95; }

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

.about-content > p {
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.8;
}

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

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    color: var(--text);
}

.about-features i {
    color: var(--primary);
    font-size: 1.05rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.zones { background: var(--beige); }

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

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

.zones-content > p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 28px;
}

.city-item {
    background: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 3px solid var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary);
    transition: all 0.25s ease;
}

.city-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.city-item i { color: var(--primary); font-size: 0.85rem; }

.zones-map {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border);
}

.zones-map .map-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.zones-map h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.zones-map p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.zones-map .dpt-code {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

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

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

.faq-item {
    background: var(--beige);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

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

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

.faq-item summary::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: '\f068';
    transform: rotate(180deg);
}

.faq-item[open] { box-shadow: var(--shadow-sm); }

.faq-item summary:hover { color: var(--primary); }

.faq-content {
    padding: 0 26px 22px;
    color: var(--text-light);
    line-height: 1.75;
}

.horaires {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    padding: 70px 0;
}

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

.horaires .section-header p { color: rgba(255,255,255,0.85); }

.horaires .section-tag { color: var(--accent); }

.horaires .section-tag::before { background: var(--accent); }

.horaires-card {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    backdrop-filter: blur(10px);
}

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

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

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

.horaires-list .day { font-weight: 600; color: var(--white); }

.horaires-list .hours { color: var(--accent); font-weight: 500; }

.horaires-note {
    text-align: center;
    margin-top: 24px;
    padding: 16px;
    background: rgba(232,176,75,0.15);
    border: 1px solid rgba(232,176,75,0.3);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 0.95rem;
}

.horaires-note i { color: var(--accent); margin-right: 8px; }

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

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

.contact-info-cards {
    display: grid;
    gap: 18px;
}

.contact-card {
    background: var(--white);
    padding: 24px 26px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 18px;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

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

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

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

.contact-card-body p {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.05rem;
    margin: 0;
}

.contact-card-body a {
    color: var(--secondary);
    font-weight: 600;
}

.contact-card-body a:hover { color: var(--primary); }

.contact-form-wrap {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

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

.contact-form-wrap button[type="submit"] {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 14px;
    border-radius: var(--radius);
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 6px;
    font-family: inherit;
}

.contact-form-wrap button[type="submit"]:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(184,65,14,0.4);
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

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

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    aspect-ratio: 1 / 1;
    background: var(--beige);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    background: linear-gradient(135deg, rgba(28,46,61,0.55), rgba(184,65,14,0.55));
    opacity: 0;
    transition: opacity 0.35s ease;
}

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

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

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

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

.lightbox:target { display: flex; }

.lightbox img {
    max-width: 95%;
    max-height: 88vh;
    border-radius: var(--radius);
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    background: var(--white);
    color: var(--secondary);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.lightbox-close:hover { background: var(--primary); color: var(--white); }

.sticky-urgence {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--danger);
    color: var(--white);
    padding: 14px 22px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(198,40,40,0.5);
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sticky-urgence:hover {
    background: #A02020;
    color: var(--white);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 30px rgba(198,40,40,0.6);
}

.sticky-urgence i { animation: pulseLight 1.5s infinite; }

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

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

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

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

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

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

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

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

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

.footer-col ul li a,
.footer-col ul li {
    color: rgba(255,255,255,0.75);
    font-size: 0.93rem;
    transition: color 0.25s ease;
}

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

.footer-col ul li i {
    color: var(--accent);
    margin-right: 8px;
    width: 16px;
}

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

.footer-bottom a { color: rgba(255,255,255,0.75); }

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

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

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

.modal.active { display: flex; }

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

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--beige);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--secondary);
    transition: all 0.25s ease;
}

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

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

.modal-content .modal-body p { margin-bottom: 12px; font-size: 0.95rem; }

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

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

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-grid, .zones-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .engagements-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    section { padding: 70px 0; }
}

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

    .hero { min-height: auto; padding-top: 80px; padding-bottom: 60px; }
    .hero h1 { font-size: 2rem; }
    .hero-devis-card { padding: 28px 22px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-number { font-size: 2.1rem; }
    .stat-item { padding: 14px; }

    .services-grid { gap: 22px; }
    .service-card { max-width: 100%; }

    .engagements-grid { grid-template-columns: 1fr; gap: 18px; }

    .process-timeline::before { left: 24px; }
    .step-number { width: 50px; height: 50px; font-size: 1.3rem; }
    .step-content { padding: 18px 20px; }
    .process-step { gap: 18px; }

    .about-badge { right: 16px; bottom: -20px; padding: 16px 20px; }
    .about-badge strong { font-size: 1.15rem; }

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

    .horaires-card { padding: 28px 22px; }
    .horaires-list li { font-size: 0.95rem; padding: 12px 0; }

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

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

    .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }

    .sticky-urgence { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 0.88rem; }

    section { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }

    .urgence-banner { font-size: 0.82rem; padding: 8px 12px; }

    .modal-content { padding: 28px 22px; }
}

@media (max-width: 640px) {
    .hero h1 { font-size: 1.7rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-trust { gap: 14px; font-size: 0.85rem; }
    .stat-number { font-size: 1.8rem; }
}

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

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

@media (max-width: 768px) {
    .garantie { padding: 60px 0 !important; }
}

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

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

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

.sct-tpl-service-hub .sct-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(12,54,131,0.92) 0%, rgba(184,65,14,0.82) 100%), url('/images/service_1_1778942281_6a088149d25f6.webp') center/cover no-repeat;
    color: #fff;
    padding: 70px 0 90px;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 70px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

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

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

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

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

.sct-tpl-service-hub .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.88rem;
    margin-bottom: 22px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.18);
    width: fit-content;
}

.sct-tpl-service-hub .sct-breadcrumb a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    transition: color 0.25s ease;
}

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

.sct-tpl-service-hub .sct-bc-sep { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

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

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

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.22);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
}

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

.sct-tpl-service-hub .sct-hero-text h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 4.2vw, 3.4rem);
    font-weight: 800;
    line-height: 1.18;
    color: #fff;
    margin-bottom: 22px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

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

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.08rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 560px;
}

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

.sct-tpl-service-hub .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.sct-tpl-service-hub .sct-btn-primary {
    background: #B8410E;
    color: #fff;
    box-shadow: 0 6px 20px rgba(184,65,14,0.4);
}

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: #8A3009;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(184,65,14,0.55);
}

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

.sct-tpl-service-hub .sct-btn-outline:hover {
    background: #fff;
    color: #0c3683;
}

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

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

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

.sct-tpl-service-hub .sct-hero-card {
    background: #fff;
    color: #2A2A2A;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
    border-top: 5px solid #f15a17;
    position: relative;
}

.sct-tpl-service-hub .sct-hero-card::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 55px;
    height: 55px;
    background: #f15a17;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    border-top-right-radius: 16px;
}

.sct-tpl-service-hub .sct-hero-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    color: #0c3683;
    margin-bottom: 8px;
    font-weight: 700;
}

.sct-tpl-service-hub .sct-hero-card-subtitle {
    color: #5C5C5C;
    font-size: 0.9rem;
    margin-bottom: 22px;
}

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

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

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

.sct-tpl-service-hub .sct-hero-card-info i {
    color: #B8410E;
    font-size: 1.05rem;
    margin-top: 3px;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-hero-card-info .sct-info-label {
    display: block;
    font-size: 0.78rem;
    color: #5C5C5C;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
    font-weight: 600;
}

.sct-tpl-service-hub .sct-hero-card-info strong { color: #0c3683; font-weight: 600; }

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

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

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { 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-subtitle { font-size: 1rem; }
    .sct-tpl-service-hub .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-breadcrumb { font-size: 0.8rem; padding: 7px 12px; }
}

.sct-tpl-service-hub .sct-stats-band {
    background: #0c3683;
    color: #fff;
    padding: 60px 0;
}

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

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

.sct-tpl-service-hub .sct-stat-item { padding: 16px; }

.sct-tpl-service-hub .sct-stat-item i {
    font-size: 1.9rem;
    color: #f15a17;
    margin-bottom: 12px;
    display: block;
}

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

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

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

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-stats-band { padding: 45px 0; }
    .sct-tpl-service-hub .sct-stat-value { font-size: 2rem; }
}

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

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

.sct-tpl-service-hub .sct-section-tag {
    display: inline-block;
    color: #B8410E;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    position: relative;
    padding-left: 36px;
}

.sct-tpl-service-hub .sct-section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: #B8410E;
}

.sct-tpl-service-hub .sct-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    font-weight: 700;
    color: #0c3683;
    margin-bottom: 16px;
    line-height: 1.2;
}

.sct-tpl-service-hub .sct-section-subtitle {
    color: #5C5C5C;
    font-size: 1.02rem;
    line-height: 1.7;
}

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

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

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

.sct-tpl-service-hub .sct-intro-content p {
    color: #3A3A3A;
    font-size: 1.04rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

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

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

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

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

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

.sct-tpl-service-hub .sct-service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E5DDD0;
    transition: all 0.35s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.sct-tpl-service-hub .sct-service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: #f15a17;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    transition: background 0.3s ease;
    z-index: 2;
}

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(28,46,61,0.18);
    border-color: #D9582A;
}

.sct-tpl-service-hub .sct-service-card:hover::after { background: #B8410E; }

.sct-tpl-service-hub .sct-service-image { height: 210px; overflow: hidden; }

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

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

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

.sct-tpl-service-hub .sct-service-body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.22rem;
    color: #0c3683;
    margin-bottom: 10px;
    font-weight: 700;
}

.sct-tpl-service-hub .sct-service-body p {
    color: #5C5C5C;
    font-size: 0.94rem;
    line-height: 1.65;
    flex: 1;
}

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

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

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

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

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

.sct-tpl-service-hub .sct-process-step {
    background: #F5F1EA;
    border-radius: 16px;
    padding: 30px 22px 26px;
    text-align: center;
    position: relative;
    border-top: 4px solid #B8410E;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(28,46,61,0.12);
}

.sct-tpl-service-hub .sct-process-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 38px;
    background: #B8410E;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 800;
    font-size: 1.05rem;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(184,65,14,0.35);
}

.sct-tpl-service-hub .sct-process-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #B8410E, #D9582A);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin: 8px 0 16px;
}

.sct-tpl-service-hub .sct-process-step h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    color: #0c3683;
    margin-bottom: 8px;
    font-weight: 700;
}

.sct-tpl-service-hub .sct-process-step p {
    color: #5C5C5C;
    font-size: 0.88rem;
    line-height: 1.55;
}

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

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

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

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

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

.sct-tpl-service-hub .sct-why-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid #E5DDD0;
    border-left: 4px solid #f15a17;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(28,46,61,0.12);
    border-left-color: #B8410E;
}

.sct-tpl-service-hub .sct-why-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0c3683, #0B4C50);
    color: #fff;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.sct-tpl-service-hub .sct-why-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.12rem;
    color: #0c3683;
    margin-bottom: 10px;
    font-weight: 700;
}

.sct-tpl-service-hub .sct-why-card p {
    color: #5C5C5C;
    font-size: 0.93rem;
    line-height: 1.65;
}

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

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

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

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

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

.sct-tpl-service-hub .sct-usecase-image {
    position: relative;
    border-radius: 16px;
}

.sct-tpl-service-hub .sct-usecase-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(28,46,61,0.18);
}

.sct-tpl-service-hub .sct-usecase-badge {
    position: absolute;
    bottom: -22px;
    right: -16px;
    background: #B8410E;
    color: #fff;
    padding: 18px 24px;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(28,46,61,0.18);
    text-align: center;
    border: 4px solid #fff;
}

.sct-tpl-service-hub .sct-usecase-badge i {
    font-size: 1.6rem;
    color: #f15a17;
    display: block;
    margin-bottom: 4px;
}

.sct-tpl-service-hub .sct-usecase-badge strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.1;
}

.sct-tpl-service-hub .sct-usecase-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: #0c3683;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.sct-tpl-service-hub .sct-usecase-content p {
    color: #3A3A3A;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.sct-tpl-service-hub .sct-usecase-content strong { color: #0c3683; font-weight: 600; }

@media (max-width: 992px) {
    .sct-tpl-service-hub .sct-usecase-grid { grid-template-columns: 1fr; gap: 50px; }
    .sct-tpl-service-hub .sct-usecase-badge { right: 16px; bottom: -18px; padding: 14px 20px; }
}

.sct-tpl-service-hub .sct-engagements-section {
    background: linear-gradient(135deg, #0c3683 0%, #0B4C50 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-engagements-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(241,90,23,0.18), transparent 70%);
    border-radius: 50%;
}

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

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

.sct-tpl-service-hub .sct-engagements-section .sct-section-tag { color: #f15a17; }

.sct-tpl-service-hub .sct-engagements-section .sct-section-tag::before { background: #f15a17; }

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

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

.sct-tpl-service-hub .sct-engagement-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 32px 26px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.35s ease;
}

.sct-tpl-service-hub .sct-engagement-card:hover {
    background: rgba(241,90,23,0.12);
    border-color: #f15a17;
    transform: translateY(-6px);
}

.sct-tpl-service-hub .sct-engagement-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #B8410E, #D9582A);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.sct-tpl-service-hub .sct-engagement-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 700;
}

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

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

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

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

.sct-tpl-service-hub .sct-faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    border-left: 4px solid #B8410E;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-faq-item summary {
    padding: 20px 26px;
    cursor: pointer;
    font-weight: 600;
    color: #0c3683;
    font-size: 1rem;
    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: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #B8410E;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.sct-tpl-service-hub .sct-faq-item[open] { box-shadow: 0 4px 14px rgba(28,46,61,0.08); }

.sct-tpl-service-hub .sct-faq-item summary:hover { color: #B8410E; }

.sct-tpl-service-hub .sct-faq-content {
    padding: 0 26px 22px;
    color: #5C5C5C;
    line-height: 1.75;
    font-size: 0.96rem;
}

.sct-tpl-service-hub .sct-faq-content p { margin-bottom: 10px; }

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

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

.sct-tpl-service-hub .sct-maillage-section.sct-maillage-cities {
    background: linear-gradient(135deg, #F5F1EA, #ECE5D8);
}

.sct-tpl-service-hub .sct-maillage-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.sct-tpl-service-hub .sct-maillage-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: #0c3683;
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.sct-tpl-service-hub .sct-maillage-header p {
    color: #5C5C5C;
    font-size: 1rem;
    line-height: 1.7;
}

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

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

.sct-tpl-service-hub .sct-maillage-cities-grid a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #E5DDD0;
    border-left: 3px solid #B8410E;
    color: #0c3683;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.93rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.sct-tpl-service-hub .sct-maillage-cities-grid a:hover {
    background: #B8410E;
    border-color: #B8410E;
    color: #fff;
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(184,65,14,0.25);
}

.sct-tpl-service-hub .sct-maillage-cities-grid a i { color: #B8410E; font-size: 0.85rem; transition: color 0.25s ease; }

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

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

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

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

.sct-tpl-service-hub .sct-maillage-services-grid a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F5F1EA;
    border: 1px solid #E5DDD0;
    color: #0c3683;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.sct-tpl-service-hub .sct-maillage-services-grid a:hover {
    background: #B8410E;
    border-color: #B8410E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(184,65,14,0.25);
}

.sct-tpl-service-hub .sct-maillage-services-grid a i { font-size: 0.8rem; color: #B8410E; transition: color 0.25s ease; }

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

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

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

.sct-tpl-service-hub .sct-cta-final::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(12,54,131,0.2), transparent 70%);
    border-radius: 50%;
}

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

.sct-tpl-service-hub .sct-cta-final h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.sct-tpl-service-hub .sct-cta-final p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
}

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

.sct-tpl-service-hub .sct-cta-final .sct-btn-primary {
    background: #fff;
    color: #B8410E;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

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

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

.sct-tpl-service-hub .sct-cta-final .sct-btn-outline:hover {
    background: #fff;
    color: #B8410E;
}

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

.sct-tpl-zone .sct-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(12,54,131,0.92) 0%, rgba(184,65,14,0.82) 100%), url('/images/service_1_1778942281_6a088149d25f6.webp') center/cover no-repeat;
    color: #fff;
    padding: 70px 0 90px;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 70px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

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

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

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

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

.sct-tpl-zone .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.88rem;
    margin-bottom: 22px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.18);
    width: fit-content;
}

.sct-tpl-zone .sct-breadcrumb a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    transition: color 0.25s ease;
}

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

.sct-tpl-zone .sct-bc-sep { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

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

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

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.22);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
}

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

.sct-tpl-zone .sct-hero-text h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 4.2vw, 3.4rem);
    font-weight: 800;
    line-height: 1.18;
    color: #fff;
    margin-bottom: 22px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

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

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.08rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 560px;
}

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

.sct-tpl-zone .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.sct-tpl-zone .sct-btn-primary {
    background: #B8410E;
    color: #fff;
    box-shadow: 0 6px 20px rgba(184,65,14,0.4);
}

.sct-tpl-zone .sct-btn-primary:hover {
    background: #8A3009;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(184,65,14,0.55);
}

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

.sct-tpl-zone .sct-btn-outline:hover {
    background: #fff;
    color: #0c3683;
}

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

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

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

.sct-tpl-zone .sct-hero-card {
    background: #fff;
    color: #2A2A2A;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
    border-top: 5px solid #f15a17;
    position: relative;
}

.sct-tpl-zone .sct-hero-card::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 55px;
    height: 55px;
    background: #f15a17;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    border-top-right-radius: 16px;
}

.sct-tpl-zone .sct-hero-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    color: #0c3683;
    margin-bottom: 8px;
    font-weight: 700;
}

.sct-tpl-zone .sct-hero-card-subtitle {
    color: #5C5C5C;
    font-size: 0.9rem;
    margin-bottom: 22px;
}

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

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

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

.sct-tpl-zone .sct-hero-card-info i {
    color: #B8410E;
    font-size: 1.05rem;
    margin-top: 3px;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-hero-card-info .sct-info-label {
    display: block;
    font-size: 0.78rem;
    color: #5C5C5C;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
    font-weight: 600;
}

.sct-tpl-zone .sct-hero-card-info strong { color: #0c3683; font-weight: 600; }

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

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero { padding: 50px 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: 40px 0 70px; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-zone .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-zone .sct-hero-btns { flex-direction: column; }
    .sct-tpl-zone .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-breadcrumb { font-size: 0.8rem; padding: 7px 12px; }
}

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

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

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

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

.sct-tpl-zone .sct-stat-item i {
    font-size: 1.9rem;
    color: #f15a17;
    margin-bottom: 12px;
    display: block;
}

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

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

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

@media (max-width: 640px) {
    .sct-tpl-zone .sct-stats-band { padding: 45px 0; }
    .sct-tpl-zone .sct-stat-value { font-size: 2rem; }
}

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

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

.sct-tpl-zone .sct-section-tag {
    display: inline-block;
    color: #B8410E;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    position: relative;
    padding-left: 36px;
}

.sct-tpl-zone .sct-section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: #B8410E;
}

.sct-tpl-zone .sct-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    font-weight: 700;
    color: #0c3683;
    margin-bottom: 16px;
    line-height: 1.2;
}

.sct-tpl-zone .sct-section-subtitle {
    color: #5C5C5C;
    font-size: 1.02rem;
    line-height: 1.7;
}

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

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

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

.sct-tpl-zone .sct-intro-content p {
    color: #3A3A3A;
    font-size: 1.04rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

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

.sct-tpl-zone .sct-intro-content strong { color: #0c3683; font-weight: 600; }

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

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

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

.sct-tpl-zone .sct-service-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 26px;
    border: 1px solid #E5DDD0;
    border-top: 4px solid #B8410E;
    transition: all 0.35s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
}

.sct-tpl-zone .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(28,46,61,0.18);
    border-top-color: #f15a17;
}

.sct-tpl-zone .sct-service-card .sct-service-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #B8410E, #D9582A);
    color: #fff;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-service-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.18rem;
    color: #0c3683;
    margin-bottom: 10px;
    font-weight: 700;
}

.sct-tpl-zone .sct-service-card p {
    color: #5C5C5C;
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}

.sct-tpl-zone .sct-service-card .sct-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #B8410E;
    font-weight: 600;
    font-size: 0.9rem;
}

.sct-tpl-zone .sct-service-card .sct-service-link i { transition: transform 0.3s ease; }

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

@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-zones-section { background: #fff; }

.sct-tpl-zone .sct-zones-wrap {
    background: linear-gradient(135deg, #F5F1EA, #ECE5D8);
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid #E5DDD0;
}

.sct-tpl-zone .sct-zones-intro {
    text-align: center;
    color: #5C5C5C;
    max-width: 720px;
    margin: 0 auto 30px;
    font-size: 1rem;
    line-height: 1.7;
}

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

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

.sct-tpl-zone .sct-zones-list li {
    background: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 3px solid #B8410E;
    font-size: 0.93rem;
    font-weight: 500;
    color: #0c3683;
    transition: all 0.25s ease;
}

.sct-tpl-zone .sct-zones-list li:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(28,46,61,0.08);
}

.sct-tpl-zone .sct-zones-list i { color: #B8410E; font-size: 0.85rem; }

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

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

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

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

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

.sct-tpl-zone .sct-usecase-image {
    position: relative;
    border-radius: 16px;
}

.sct-tpl-zone .sct-usecase-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(28,46,61,0.18);
}

.sct-tpl-zone .sct-usecase-badge {
    position: absolute;
    bottom: -22px;
    right: -16px;
    background: #B8410E;
    color: #fff;
    padding: 18px 24px;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(28,46,61,0.18);
    text-align: center;
    border: 4px solid #F5F1EA;
}

.sct-tpl-zone .sct-usecase-badge i {
    font-size: 1.6rem;
    color: #f15a17;
    display: block;
    margin-bottom: 4px;
}

.sct-tpl-zone .sct-usecase-badge strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.1;
}

.sct-tpl-zone .sct-usecase-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: #0c3683;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.sct-tpl-zone .sct-usecase-content p {
    color: #3A3A3A;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.sct-tpl-zone .sct-usecase-content strong { color: #0c3683; font-weight: 600; }

@media (max-width: 992px) {
    .sct-tpl-zone .sct-usecase-grid { grid-template-columns: 1fr; gap: 50px; }
    .sct-tpl-zone .sct-usecase-badge { right: 16px; bottom: -18px; padding: 14px 20px; }
}

.sct-tpl-zone .sct-engagements-section {
    background: linear-gradient(135deg, #0c3683 0%, #0B4C50 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sct-tpl-zone .sct-engagements-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(241,90,23,0.18), transparent 70%);
    border-radius: 50%;
}

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

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

.sct-tpl-zone .sct-engagements-section .sct-section-tag { color: #f15a17; }

.sct-tpl-zone .sct-engagements-section .sct-section-tag::before { background: #f15a17; }

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

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

.sct-tpl-zone .sct-engagement-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 32px 26px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.35s ease;
}

.sct-tpl-zone .sct-engagement-card:hover {
    background: rgba(241,90,23,0.12);
    border-color: #f15a17;
    transform: translateY(-6px);
}

.sct-tpl-zone .sct-engagement-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #B8410E, #D9582A);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-engagement-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 700;
}

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

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

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

.sct-tpl-zone .sct-local-spec-wrap {
    max-width: 920px;
    margin: 0 auto;
    background: linear-gradient(135deg, #F5F1EA, #ECE5D8);
    border-radius: 20px;
    padding: 44px 40px;
    border-left: 5px solid #f15a17;
}

.sct-tpl-zone .sct-local-spec-wrap h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: #0c3683;
    margin-bottom: 16px;
    font-weight: 700;
}

.sct-tpl-zone .sct-local-spec-wrap p {
    color: #3A3A3A;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

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

.sct-tpl-zone .sct-local-spec-wrap strong { color: #0c3683; font-weight: 600; }

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

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

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

.sct-tpl-zone .sct-faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    border-left: 4px solid #B8410E;
    transition: all 0.3s ease;
}

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

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

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

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

.sct-tpl-zone .sct-faq-item[open] { box-shadow: 0 4px 14px rgba(28,46,61,0.08); }

.sct-tpl-zone .sct-faq-item summary:hover { color: #B8410E; }

.sct-tpl-zone .sct-faq-content {
    padding: 0 26px 22px;
    color: #5C5C5C;
    line-height: 1.75;
    font-size: 0.96rem;
}

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

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

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

.sct-tpl-zone .sct-maillage-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
}

.sct-tpl-zone .sct-maillage-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    color: #0c3683;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.sct-tpl-zone .sct-maillage-header p {
    color: #5C5C5C;
    font-size: 1rem;
    line-height: 1.7;
}

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

.sct-tpl-zone .sct-maillage-grid a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F5F1EA;
    border: 1px solid #E5DDD0;
    color: #0c3683;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.sct-tpl-zone .sct-maillage-grid a:hover {
    background: #B8410E;
    border-color: #B8410E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(184,65,14,0.25);
}

.sct-tpl-zone .sct-maillage-grid a i { font-size: 0.8rem; color: #B8410E; transition: color 0.25s ease; }

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

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

.sct-tpl-zone .sct-cta-final::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
    border-radius: 50%;
}

.sct-tpl-zone .sct-cta-final::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(12,54,131,0.2), transparent 70%);
    border-radius: 50%;
}

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

.sct-tpl-zone .sct-cta-final h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.sct-tpl-zone .sct-cta-final p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
}

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

.sct-tpl-zone .sct-cta-final .sct-btn-primary {
    background: #fff;
    color: #B8410E;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.sct-tpl-zone .sct-cta-final .sct-btn-primary:hover {
    background: #0c3683;
    color: #fff;
}

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

.sct-tpl-zone .sct-cta-final .sct-btn-outline:hover {
    background: #fff;
    color: #B8410E;
}

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

.sct-tpl-service-city .sct-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(12,54,131,0.92) 0%, rgba(184,65,14,0.82) 100%), url('/images/service_1_1778942281_6a088149d25f6.webp') center/cover no-repeat;
    color: #fff;
    padding: 70px 0 90px;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 70px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.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.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

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

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

.sct-tpl-service-city .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.88rem;
    margin-bottom: 22px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.18);
    width: fit-content;
}

.sct-tpl-service-city .sct-breadcrumb a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    transition: color 0.25s ease;
}

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

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

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

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

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.22);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
}

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

.sct-tpl-service-city .sct-hero-text h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 4.2vw, 3.4rem);
    font-weight: 800;
    line-height: 1.18;
    color: #fff;
    margin-bottom: 22px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.sct-tpl-service-city .sct-hero-text h1 .sct-accent { color: #f15a17; display: block; }

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.08rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 560px;
}

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

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

.sct-tpl-service-city .sct-btn-primary {
    background: #B8410E;
    color: #fff;
    box-shadow: 0 6px 20px rgba(184,65,14,0.4);
}

.sct-tpl-service-city .sct-btn-primary:hover {
    background: #8A3009;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(184,65,14,0.55);
}

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

.sct-tpl-service-city .sct-btn-outline:hover {
    background: #fff;
    color: #0c3683;
}

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

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

.sct-tpl-service-city .sct-hero-card {
    background: #fff;
    color: #2A2A2A;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
    border-top: 5px solid #f15a17;
    position: relative;
}

.sct-tpl-service-city .sct-hero-card::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 55px;
    height: 55px;
    background: #f15a17;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    border-top-right-radius: 16px;
}

.sct-tpl-service-city .sct-hero-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    color: #0c3683;
    margin-bottom: 8px;
    font-weight: 700;
}

.sct-tpl-service-city .sct-hero-card-subtitle {
    color: #5C5C5C;
    font-size: 0.9rem;
    margin-bottom: 22px;
}

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

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

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

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

.sct-tpl-service-city .sct-hero-card-info .sct-info-label {
    display: block;
    font-size: 0.78rem;
    color: #5C5C5C;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
    font-weight: 600;
}

.sct-tpl-service-city .sct-hero-card-info strong { color: #0c3683; font-weight: 600; }

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

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero { padding: 50px 0 80px; }
    .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: 40px 0 70px; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-city .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-service-city .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-breadcrumb { font-size: 0.8rem; padding: 7px 12px; }
}

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

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

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

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

.sct-tpl-service-city .sct-stat-item i {
    font-size: 1.9rem;
    color: #f15a17;
    margin-bottom: 12px;
    display: block;
}

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

.sct-tpl-service-city .sct-stat-label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

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

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-stats-band { padding: 45px 0; }
    .sct-tpl-service-city .sct-stat-value { font-size: 2rem; }
}

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

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

.sct-tpl-service-city .sct-section-tag {
    display: inline-block;
    color: #B8410E;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    position: relative;
    padding-left: 36px;
}

.sct-tpl-service-city .sct-section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: #B8410E;
}

.sct-tpl-service-city .sct-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    font-weight: 700;
    color: #0c3683;
    margin-bottom: 16px;
    line-height: 1.2;
}

.sct-tpl-service-city .sct-section-subtitle {
    color: #5C5C5C;
    font-size: 1.02rem;
    line-height: 1.7;
}

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

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

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

.sct-tpl-service-city .sct-intro-content p {
    color: #3A3A3A;
    font-size: 1.04rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

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

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

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

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

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

.sct-tpl-service-city .sct-service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E5DDD0;
    transition: all 0.35s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.sct-tpl-service-city .sct-service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: #f15a17;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    transition: background 0.3s ease;
    z-index: 2;
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(28,46,61,0.18);
    border-color: #D9582A;
}

.sct-tpl-service-city .sct-service-card:hover::after { background: #B8410E; }

.sct-tpl-service-city .sct-service-image {
    height: 210px;
    overflow: hidden;
}

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

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

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

.sct-tpl-service-city .sct-service-body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.22rem;
    color: #0c3683;
    margin-bottom: 10px;
    font-weight: 700;
}

.sct-tpl-service-city .sct-service-body p {
    color: #5C5C5C;
    font-size: 0.94rem;
    line-height: 1.65;
    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; gap: 22px; }
}

.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: 20px;
    position: relative;
}

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

.sct-tpl-service-city .sct-process-step {
    background: #F5F1EA;
    border-radius: 16px;
    padding: 30px 22px 26px;
    text-align: center;
    position: relative;
    border-top: 4px solid #B8410E;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(28,46,61,0.12);
}

.sct-tpl-service-city .sct-process-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 38px;
    background: #B8410E;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 800;
    font-size: 1.05rem;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(184,65,14,0.35);
}

.sct-tpl-service-city .sct-process-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #B8410E, #D9582A);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin: 8px 0 16px;
}

.sct-tpl-service-city .sct-process-step h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    color: #0c3683;
    margin-bottom: 8px;
    font-weight: 700;
}

.sct-tpl-service-city .sct-process-step p {
    color: #5C5C5C;
    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); gap: 30px; }
}

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

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

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

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

.sct-tpl-service-city .sct-why-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid #E5DDD0;
    border-left: 4px solid #f15a17;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(28,46,61,0.12);
    border-left-color: #B8410E;
}

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

.sct-tpl-service-city .sct-why-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.12rem;
    color: #0c3683;
    margin-bottom: 10px;
    font-weight: 700;
}

.sct-tpl-service-city .sct-why-card p {
    color: #5C5C5C;
    font-size: 0.93rem;
    line-height: 1.65;
}

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

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

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

.sct-tpl-service-city .sct-zones-wrap {
    background: linear-gradient(135deg, #F5F1EA, #ECE5D8);
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid #E5DDD0;
}

.sct-tpl-service-city .sct-zones-intro {
    text-align: center;
    color: #5C5C5C;
    max-width: 720px;
    margin: 0 auto 30px;
    font-size: 1rem;
    line-height: 1.7;
}

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

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

.sct-tpl-service-city .sct-zones-list li {
    background: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 3px solid #B8410E;
    font-size: 0.93rem;
    font-weight: 500;
    color: #0c3683;
    transition: all 0.25s ease;
}

.sct-tpl-service-city .sct-zones-list li:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(28,46,61,0.08);
}

.sct-tpl-service-city .sct-zones-list i { color: #B8410E; font-size: 0.85rem; }

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-zones-list { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-zones-wrap { padding: 40px 28px; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-zones-list { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-zones-wrap { padding: 32px 20px; }
}

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

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

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

.sct-tpl-service-city .sct-usecase-image {
    position: relative;
    border-radius: 16px;
}

.sct-tpl-service-city .sct-usecase-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(28,46,61,0.18);
}

.sct-tpl-service-city .sct-usecase-badge {
    position: absolute;
    bottom: -22px;
    right: -16px;
    background: #B8410E;
    color: #fff;
    padding: 18px 24px;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(28,46,61,0.18);
    text-align: center;
    border: 4px solid #F5F1EA;
}

.sct-tpl-service-city .sct-usecase-badge i {
    font-size: 1.6rem;
    color: #f15a17;
    display: block;
    margin-bottom: 4px;
}

.sct-tpl-service-city .sct-usecase-badge strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.1;
}

.sct-tpl-service-city .sct-usecase-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: #0c3683;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.sct-tpl-service-city .sct-usecase-content p {
    color: #3A3A3A;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-usecase-grid { grid-template-columns: 1fr; gap: 50px; }
    .sct-tpl-service-city .sct-usecase-badge { right: 16px; bottom: -18px; padding: 14px 20px; }
}

.sct-tpl-service-city .sct-engagements-section {
    background: linear-gradient(135deg, #0c3683 0%, #0B4C50 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-city .sct-engagements-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(241,90,23,0.18), transparent 70%);
    border-radius: 50%;
}

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

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

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

.sct-tpl-service-city .sct-engagements-section .sct-section-tag::before { background: #f15a17; }

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

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

.sct-tpl-service-city .sct-engagement-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 32px 26px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.35s ease;
}

.sct-tpl-service-city .sct-engagement-card:hover {
    background: rgba(241,90,23,0.12);
    border-color: #f15a17;
    transform: translateY(-6px);
}

.sct-tpl-service-city .sct-engagement-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #B8410E, #D9582A);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

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

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

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

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

.sct-tpl-service-city .sct-local-spec-wrap {
    max-width: 920px;
    margin: 0 auto;
    background: linear-gradient(135deg, #F5F1EA, #ECE5D8);
    border-radius: 20px;
    padding: 44px 40px;
    border-left: 5px solid #f15a17;
}

.sct-tpl-service-city .sct-local-spec-wrap h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: #0c3683;
    margin-bottom: 16px;
    font-weight: 700;
}

.sct-tpl-service-city .sct-local-spec-wrap p {
    color: #3A3A3A;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.sct-tpl-service-city .sct-local-spec-wrap p:last-child { margin-bottom: 0; }

.sct-tpl-service-city .sct-local-spec-wrap strong { color: #0c3683; font-weight: 600; }

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

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

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

.sct-tpl-service-city .sct-faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    border-left: 4px solid #B8410E;
    transition: all 0.3s ease;
}

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

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

.sct-tpl-service-city .sct-faq-item summary::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #B8410E;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.sct-tpl-service-city .sct-faq-item[open] { box-shadow: 0 4px 14px rgba(28,46,61,0.08); }

.sct-tpl-service-city .sct-faq-item summary:hover { color: #B8410E; }

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

.sct-tpl-service-city .sct-faq-content p { margin-bottom: 10px; }

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

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

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

.sct-tpl-service-city .sct-maillage-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: #0c3683;
    margin-bottom: 22px;
    text-align: center;
    font-weight: 700;
}

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

.sct-tpl-service-city .sct-maillage-grid a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #E5DDD0;
    color: #0c3683;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

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

.sct-tpl-service-city .sct-maillage-grid a:hover {
    background: #B8410E;
    border-color: #B8410E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(184,65,14,0.25);
}

.sct-tpl-service-city .sct-maillage-grid a i { font-size: 0.8rem; color: #B8410E; transition: color 0.25s ease; }

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

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

.sct-tpl-service-city .sct-cta-final::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
    border-radius: 50%;
}

.sct-tpl-service-city .sct-cta-final::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(12,54,131,0.2), transparent 70%);
    border-radius: 50%;
}

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

.sct-tpl-service-city .sct-cta-final h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.sct-tpl-service-city .sct-cta-final p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
}

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

.sct-tpl-service-city .sct-cta-final .sct-btn-primary {
    background: #fff;
    color: #B8410E;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.sct-tpl-service-city .sct-cta-final .sct-btn-primary:hover {
    background: #0c3683;
    color: #fff;
}

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

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

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-cta-final { padding: 55px 0; }
    .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;
    background: linear-gradient(135deg, rgba(12,54,131,0.92) 0%, rgba(184,65,14,0.82) 100%), url('/images/service_4_1778942338_6a08818220cb4.webp') center/cover no-repeat;
    color: #fff;
    padding: 70px 0 90px;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(12,54,131,0.92) 0%, rgba(184,65,14,0.82) 100%), url('/images/service_2_1778942299_6a08815b6c1d6.webp') center/cover no-repeat;
    color: #fff;
    padding: 70px 0 90px;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(12,54,131,0.92) 0%, rgba(184,65,14,0.82) 100%), url('/images/service_2_1778942299_6a08815b6c1d6.webp') center/cover no-repeat;
    color: #fff;
    padding: 70px 0 90px;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(12,54,131,0.92) 0%, rgba(184,65,14,0.82) 100%), url('/images/service_2_1778942299_6a08815b6c1d6.webp') center/cover no-repeat;
    color: #fff;
    padding: 70px 0 90px;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(12,54,131,0.92) 0%, rgba(184,65,14,0.82) 100%), url('/images/service_5_1778942395_6a0881bb9bb56.webp') center/cover no-repeat;
    color: #fff;
    padding: 70px 0 90px;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(12,54,131,0.92) 0%, rgba(184,65,14,0.82) 100%), url('/images/service_3_1778942318_6a08816e9818c.webp') center/cover no-repeat;
    color: #fff;
    padding: 70px 0 90px;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(12,54,131,0.92) 0%, rgba(184,65,14,0.82) 100%), url('/images/service_3_1778942318_6a08816e9818c.webp') center/cover no-repeat;
    color: #fff;
    padding: 70px 0 90px;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(12,54,131,0.92) 0%, rgba(184,65,14,0.82) 100%), url('/images/service_4_1778942338_6a08818220cb4.webp') center/cover no-repeat;
    color: #fff;
    padding: 70px 0 90px;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(12,54,131,0.92) 0%, rgba(184,65,14,0.82) 100%), url('/images/service_4_1778942338_6a08818220cb4.webp') center/cover no-repeat;
    color: #fff;
    padding: 70px 0 90px;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(12,54,131,0.92) 0%, rgba(184,65,14,0.82) 100%), url('/images/service_5_1778942395_6a0881bb9bb56.webp') center/cover no-repeat;
    color: #fff;
    padding: 70px 0 90px;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(12,54,131,0.92) 0%, rgba(184,65,14,0.82) 100%), url('/images/service_5_1778942395_6a0881bb9bb56.webp') center/cover no-repeat;
    color: #fff;
    padding: 70px 0 90px;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(12,54,131,0.92) 0%, rgba(184,65,14,0.82) 100%), url('/images/service_6_1778942415_6a0881cfe8e38.webp') center/cover no-repeat;
    color: #fff;
    padding: 70px 0 90px;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(12,54,131,0.92) 0%, rgba(184,65,14,0.82) 100%), url('/images/service_6_1778942415_6a0881cfe8e38.webp') center/cover no-repeat;
    color: #fff;
    padding: 70px 0 90px;
    overflow: hidden;
}

.menu-toggle { display: none; cursor: pointer; font-size: 1.4rem; color: var(--secondary); }

.menu-check { display: none; }

.hero-plan {
    position: relative;
    background: linear-gradient(135deg, rgba(12,54,131,0.95) 0%, rgba(184,65,14,0.85) 100%), url('https://webflash.pro/images/hero_1778942261_6a088135b9411.webp') center/cover no-repeat;
    color: var(--white);
    padding: 110px 0 130px;
    text-align: center;
    overflow: hidden;
}

.hero-plan::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hero-plan .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 22px;
}

.hero-plan .breadcrumb i { color: var(--accent); }

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

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

.hero-plan h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    color: var(--white);
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-plan p {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 620px;
    margin: 0 auto;
}

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

.plan-section.alt { background: var(--beige); }

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

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

.plan-block-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--border);
}

.plan-block-header .icon-wrap {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.plan-block-header h2 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    margin: 0;
}

.plan-block-header p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 4px 0 0;
}

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--secondary);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.94rem;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

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

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

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

.chip.home {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    border-color: var(--secondary);
    padding: 14px 26px;
}

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

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

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

.subblock {
    background: var(--white);
    padding: 26px 28px;
    border-radius: var(--radius-lg);
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.subblock:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

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

.subblock-title i {
    color: var(--primary);
    font-size: 1rem;
}

.subblock .chips-wrap { gap: 10px; }

.subblock .chip {
    background: var(--beige);
    padding: 9px 16px;
    font-size: 0.88rem;
    border-color: transparent;
    box-shadow: none;
}

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

.cta-final {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(241,90,23,0.2), transparent 70%);
    border-radius: 50%;
}

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

.cta-final p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-final .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(184,65,14,0.4);
    transition: all 0.3s ease;
    position: relative;
}

.cta-final .btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(184,65,14,0.55);
}

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

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

.footer-brand img {
    height: 50px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

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

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

.footer-col .col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 0.92rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-col ul li i {
    color: var(--accent);
    margin-top: 4px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.78);
    transition: color 0.25s ease;
}

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

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.footer-legal a {
    color: rgba(255,255,255,0.78);
    transition: color 0.25s ease;
}

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

@media (max-width: 960px) {
    .menu-toggle { display: block; }
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 16px 24px;
        box-shadow: var(--shadow-md);
        display: none;
    }
    .menu-check:checked ~ .nav { display: flex; }
    .nav a { width: 100%; padding: 12px 0; }

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

    .plan-block-header { flex-wrap: wrap; }

    .hero-plan { padding: 80px 0 100px; }
    .plan-section { padding: 60px 0; }
}

@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .chip { font-size: 0.88rem; padding: 10px 16px; }
    .subblock { padding: 20px 18px; }
}