.menu-check { display: none; }

.menu-toggle { cursor: pointer; }

@media (max-width: 768px) {
    .menu-check:checked ~ .nav {
        display: flex !important;
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        right: 0 !important;
        pointer-events: auto !important;
    }
    .menu-check:checked ~ .menu-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-check:checked ~ .menu-toggle span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .menu-check:checked ~ .menu-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

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

:root {
            --primary: #D62828;
            --primary-dark: #a51e1e;
            --secondary: #F7B731;
            --secondary-dark: #d99e1a;
            --dark: #1a1a1a;
            --darker: #111111;
            --charcoal: #2a2a2a;
            --slate: #3a3a3a;
            --light: #f5f0eb;
            --cream: #faf6f1;
            --white: #ffffff;
            --text: #e8e8e8;
            --text-muted: #a0a0a0;
            --text-dark: #333333;
        }

html { scroll-behavior: smooth; }

body {
            font-family: 'Inter', sans-serif;
            background: var(--dark);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

.header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(17,17,17,0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(214,40,40,0.2);
            transition: all 0.3s ease;
        }

.header.scrolled {
            background: rgba(17,17,17,0.98);
            box-shadow: 0 4px 30px rgba(0,0,0,0.5);
        }

.header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

.logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

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

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

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

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

.nav a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 8px;
            transition: all 0.3s ease;
            letter-spacing: 0.3px;
        }

.nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-cta {
            background: var(--primary) !important;
            color: var(--white) !important;
            font-weight: 600 !important;
            padding: 10px 20px !important;
            border-radius: 50px !important;
        }

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

.mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

.mobile-toggle span {
            width: 24px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

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

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

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

.annonce-banner {
            background: linear-gradient(135deg, #1a472a 0%, #2d6a4f 50%, #1a472a 100%);
            padding: 0;
            position: relative;
            overflow: hidden;
            border-bottom: 2px solid rgba(247,183,49,0.4);
        }

.annonce-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 120%;
            height: 200%;
            background: radial-gradient(ellipse at center, rgba(247,183,49,0.08) 0%, transparent 70%);
            pointer-events: none;
        }

.annonce-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 18px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            position: relative;
            z-index: 1;
        }

.annonce-icon {
            font-size: 1.8rem;
            animation: bellRing 2s ease infinite;
            flex-shrink: 0;
        }

@keyframes bellRing {
            0%, 100% { transform: rotate(0deg); }
            10% { transform: rotate(-15deg); }
            20% { transform: rotate(15deg); }
            30% { transform: rotate(-10deg); }
            40% { transform: rotate(10deg); }
            50% { transform: rotate(0deg); }
        }

.annonce-text {
            text-align: center;
        }

.annonce-text strong {
            display: block;
            font-size: 1.1rem;
            color: var(--secondary);
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-bottom: 3px;
        }

.annonce-text span {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.85);
        }

.annonce-badges {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

.annonce-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 16px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 600;
            border: 1px solid;
        }

.annonce-badge.sur-place {
            background: rgba(214,40,40,0.2);
            border-color: rgba(214,40,40,0.5);
            color: #ff8080;
        }

.annonce-badge.emporter {
            background: rgba(247,183,49,0.15);
            border-color: rgba(247,183,49,0.4);
            color: var(--secondary);
        }

.promo-banner {
            background: linear-gradient(135deg, #7b0000 0%, var(--primary) 40%, #c0392b 100%);
            padding: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom: 3px solid var(--secondary);
            margin-bottom:20px;
        }

.promo-banner::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 200px;
            height: 200px;
            background: rgba(247,183,49,0.15);
            border-radius: 50%;
        }

.promo-banner::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -30px;
            width: 160px;
            height: 160px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }

.promo-inner {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

.promo-tag {
            background: var(--secondary);
            color: var(--darker);
            font-size: 0.7rem;
            font-weight: 800;
            padding: 4px 12px;
            border-radius: 50px;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 6px;
            animation: promoPulse 2s ease-in-out infinite;
        }

@keyframes promoPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

.promo-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.3rem, 3vw, 1.8rem);
            color: var(--white);
            font-weight: 800;
            line-height: 1.2;
        }

.promo-title span { color: var(--secondary); }

.promo-subtitle {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
            margin-top: 4px;
        }

.promo-circle {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: var(--secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 0 0 6px rgba(247,183,49,0.3), 0 0 0 12px rgba(247,183,49,0.1);
            animation: rotateSlow 8s linear infinite;
        }

@keyframes rotateSlow {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

.promo-circle-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            animation: rotateSlow 8s linear infinite reverse;
        }

.promo-circle .promo-pct {
            font-size: 1.4rem;
            font-weight: 900;
            color: var(--darker);
            line-height: 1;
        }

.promo-circle .promo-pct-label {
            font-size: 0.55rem;
            font-weight: 700;
            color: var(--darker);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-align: center;
        }

.supplements-bar {
            background: var(--slate);
            padding: 12px 20px;
            text-align: center;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

.supplements-bar p {
            font-size: 0.82rem;
            color: var(--text-muted);
        }

.supplements-bar strong { color: var(--secondary); }

.hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

.hero-bg {
            position: absolute;
            inset: 0;
            background: url('https://webflash.pro/storage/generated/84/hero_1770942520_698e7038cf023.webp') center/cover no-repeat;
        }

.hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(17,17,17,0.85) 0%, rgba(26,26,26,0.7) 40%, rgba(214,40,40,0.25) 100%);
        }

.hero-flame {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40%;
            background: linear-gradient(to top, rgba(214,40,40,0.15), rgba(247,183,49,0.05), transparent);
            animation: flameGlow 4s ease-in-out infinite alternate;
        }

@keyframes flameGlow {
            0% { opacity: 0.5; }
            50% { opacity: 1; }
            100% { opacity: 0.6; }
        }

.hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 20px;
            max-width: 800px;
        }

.hero-badge {
            display: inline-block;
            background: rgba(247,183,49,0.15);
            border: 1px solid rgba(247,183,49,0.4);
            color: var(--secondary);
            font-size: 0.8rem;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 50px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 24px;
            animation: fadeInDown 0.8s ease;
        }

.hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.8rem, 7vw, 5rem);
            font-weight: 900;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

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

.hero-sub {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: var(--text-muted);
            max-width: 550px;
            margin: 0 auto 36px;
            font-weight: 300;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

.hero-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

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

.btn-primary {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 25px rgba(214,40,40,0.4);
        }

.btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 35px rgba(214,40,40,0.5);
        }

.btn-secondary {
            background: rgba(255,255,255,0.1);
            color: var(--white);
            border: 1px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
        }

.btn-secondary:hover {
            background: rgba(255,255,255,0.18);
            transform: translateY(-2px);
        }

.hero-scroll {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            animation: bounce 2s infinite;
        }

.hero-scroll i {
            font-size: 1.5rem;
            color: rgba(255,255,255,0.4);
        }

@keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

.status-bar {
            background: var(--charcoal);
            padding: 14px 20px;
            text-align: center;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

.status-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            font-weight: 500;
        }

.status-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

.status-dot.open { background: #22c55e; box-shadow: 0 0 10px rgba(34,197,94,0.5); }

.status-dot.closed { background: #ef4444; box-shadow: 0 0 10px rgba(239,68,68,0.5); }

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

.section {
            padding: 100px 20px;
        }

.section-light {
            background: var(--cream);
            color: var(--text-dark);
        }

.section-dark {
            background: var(--darker);
        }

.section-charcoal {
            background: var(--charcoal);
        }

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

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

.section-tag {
            display: inline-block;
            font-family: 'Caveat', cursive;
            font-size: 1.2rem;
            color: var(--secondary);
            margin-bottom: 10px;
        }

.section-light .section-tag { color: var(--primary); }

.section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--white);
        }

.section-light .section-header h2 { color: var(--dark); }

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

.section-light .section-header p { color: #666; }

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

.service-card {
            flex: 0 1 340px;
            max-width: 360px;
            background: var(--charcoal);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.06);
            transition: all 0.4s ease;
        }

.service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.4);
            border-color: rgba(214,40,40,0.3);
        }

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

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

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

.service-card-body {
            padding: 28px;
        }

.service-card-body h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 10px;
        }

.service-card-body p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

.menu-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }

.menu-tab {
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.06);
            color: var(--text-muted);
            border: 1px solid rgba(255,255,255,0.08);
        }

.menu-tab:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.menu-tab.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

.menu-panel { display: none; }

.menu-panel.active { display: block; animation: fadeIn 0.4s ease; }

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

.menu-category-header {
            text-align: center;
            margin-bottom: 32px;
        }

.menu-category-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: var(--white);
            margin-bottom: 8px;
        }

.menu-section-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            color: var(--secondary);
            text-align: center;
            margin: 36px 0 18px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(247,183,49,0.2);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

.menu-section-title i {
            margin-right: 8px;
            font-size: 1rem;
            opacity: 0.7;
        }

.menu-price-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }

.price-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(247,183,49,0.12);
            border: 1px solid rgba(247,183,49,0.3);
            color: var(--secondary);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
        }

.price-badge .size { color: var(--text-muted); font-weight: 400; }

.menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 16px;
            max-width: 900px;
            margin: 0 auto;
        }

.menu-item {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 14px;
            padding: 20px 24px;
            transition: all 0.3s ease;
        }

.menu-item:hover {
            background: rgba(255,255,255,0.06);
            border-color: rgba(214,40,40,0.2);
        }

.menu-item.special {
            border-color: rgba(247,183,49,0.2);
            background: rgba(247,183,49,0.04);
        }

.menu-item.special:hover {
            background: rgba(247,183,49,0.08);
            border-color: rgba(247,183,49,0.4);
        }

.menu-item-name {
            font-weight: 700;
            color: var(--white);
            font-size: 1rem;
            margin-bottom: 6px;
        }

.menu-item-desc {
            font-size: 0.82rem;
            color: var(--text-muted);
            line-height: 1.5;
            font-style: italic;
        }

.menu-single-price {
            text-align: center;
            margin-bottom: 28px;
        }

.menu-single-price .price-big {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--secondary);
            font-weight: 800;
        }

.menu-note {
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-muted);
            font-style: italic;
            margin-top: 12px;
        }

.pizza-promo-card {
            max-width: 900px;
            margin: 0 auto 36px;
            background: linear-gradient(135deg, rgba(214,40,40,0.12) 0%, rgba(247,183,49,0.08) 100%);
            border: 1px solid rgba(247,183,49,0.3);
            border-radius: 16px;
            padding: 20px 28px;
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

.pizza-promo-card .promo-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }

.pizza-promo-card .promo-content strong {
            display: block;
            color: var(--secondary);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 3px;
        }

.pizza-promo-card .promo-content span {
            font-size: 0.82rem;
            color: var(--text-muted);
        }

.pizza-suppl-card {
            max-width: 900px;
            margin: 0 auto 36px;
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 16px;
            padding: 16px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

.pizza-suppl-card .suppl-label {
            font-size: 0.82rem;
            color: var(--text-muted);
            font-weight: 500;
        }

.pizza-suppl-card .suppl-label strong {
            color: var(--text);
        }

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

.suppl-chip {
            background: rgba(214,40,40,0.12);
            border: 1px solid rgba(214,40,40,0.25);
            color: #ff8080;
            padding: 4px 14px;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 600;
        }

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

.formule-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: rgba(247,183,49,0.15);
            border-radius: 50%;
        }

.formule-badge-time {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.2);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

.formule-banner h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--white);
            margin-bottom: 8px;
        }

.formule-banner h3 span { color: var(--secondary); }

.formule-banner p {
            color: rgba(255,255,255,0.85);
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

.formule-items {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 20px;
            position: relative;
            z-index: 1;
        }

.formule-item {
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 14px;
            padding: 20px 28px;
            backdrop-filter: blur(10px);
            text-align: left;
            min-width: 240px;
        }

.formule-item strong {
            color: var(--white);
            display: block;
            margin-bottom: 4px;
        }

.formule-item span { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

.drinks-info {
            text-align: center;
            margin-top: 20px;
            padding: 16px 24px;
            background: rgba(255,255,255,0.03);
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.06);
        }

.drinks-info p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

.drinks-info strong { color: var(--secondary); }

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

.gallery-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 1;
            cursor: pointer;
        }

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

.gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

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

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

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

.about-img {
            border-radius: 24px;
            overflow: hidden;
            position: relative;
        }

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

.about-img-badge {
            position: absolute;
            bottom: 24px;
            right: 24px;
            background: var(--primary);
            color: var(--white);
            padding: 14px 24px;
            border-radius: 16px;
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 700;
        }

.about-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

.about-content p {
            color: #555;
            margin-bottom: 16px;
            font-size: 1rem;
            line-height: 1.7;
        }

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

.about-feature {
            display: flex;
            align-items: center;
            gap: 12px;
        }

.about-feature i {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(214,40,40,0.1);
            color: var(--primary);
            border-radius: 10px;
            font-size: 1rem;
            flex-shrink: 0;
        }

.about-feature span { font-weight: 600; color: var(--text-dark); font-size: 0.9rem; }

.reviews-header-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(247,183,49,0.1);
            border: 1px solid rgba(247,183,49,0.2);
            padding: 12px 24px;
            border-radius: 50px;
            margin-bottom: 40px;
        }

.reviews-stars { color: var(--secondary); font-size: 1.2rem; letter-spacing: 2px; }

.reviews-score { color: var(--white); font-weight: 700; font-size: 1.1rem; }

.reviews-count { color: var(--text-muted); font-size: 0.85rem; }

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

.review-card {
            background: var(--charcoal);
            border-radius: 20px;
            padding: 32px;
            border: 1px solid rgba(255,255,255,0.06);
            transition: all 0.3s ease;
        }

.review-card:hover {
            transform: translateY(-4px);
            border-color: rgba(247,183,49,0.2);
        }

.review-top {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
        }

.review-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--white);
            font-size: 1.1rem;
            flex-shrink: 0;
        }

.review-name { font-weight: 600; color: var(--white); font-size: 0.95rem; }

.review-stars { color: var(--secondary); font-size: 0.85rem; }

.review-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; font-style: italic; }

.reviews-cta {
            text-align: center;
            margin-top: 40px;
        }

.reviews-cta a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--secondary);
            font-weight: 600;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

.reviews-cta a:hover { color: var(--white); gap: 12px; }

.horaires-wrapper {
            max-width: 600px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
        }

.horaires-top {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            padding: 30px;
            text-align: center;
            color: var(--white);
        }

.horaires-top h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            margin-bottom: 4px;
        }

.horaires-top p { color: rgba(255,255,255,0.8); font-size: 0.85rem; }

.horaires-list { padding: 8px 0; }

.horaire-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 32px;
            border-bottom: 1px solid #f0ebe5;
            transition: background 0.2s ease;
        }

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

.horaire-row:hover { background: rgba(214,40,40,0.03); }

.horaire-row.today { background: rgba(214,40,40,0.06); }

.horaire-day {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 0.95rem;
        }

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

.horaire-time {
            font-size: 0.9rem;
            color: #555;
            text-align: right;
        }

.horaire-closed {
            color: #999;
            font-style: italic;
            font-size: 0.85rem;
        }

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

.contact-form-wrap {
            background: var(--white);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
        }

.contact-form-wrap h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: var(--text-dark);
            margin-bottom: 24px;
        }

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

.form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

.form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border-radius: 12px;
            border: 2px solid #e8e3dd;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: var(--text-dark);
            background: var(--cream);
            transition: all 0.3s ease;
            outline: none;
        }

.form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(214,40,40,0.1);
        }

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

.contact-form-wrap .btn-primary {
            width: 100%;
            justify-content: center;
            padding: 16px;
            font-size: 1rem;
        }

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

.contact-info-card {
            background: var(--white);
            border-radius: 20px;
            padding: 28px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            display: flex;
            align-items: center;
            gap: 18px;
        }

.contact-info-icon {
            width: 52px;
            height: 52px;
            background: rgba(214,40,40,0.08);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

.contact-info-text strong { display: block; color: var(--text-dark); font-size: 0.95rem; margin-bottom: 4px; }

.contact-info-text span { color: #666; font-size: 0.85rem; }

.contact-info-text a { color: var(--primary); text-decoration: none; font-weight: 500; }

.contact-info-text a:hover { text-decoration: underline; }

.map-wrap {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            flex: 1;
        }

.map-wrap iframe { display: block; width: 100%; min-height: 220px; }

.footer {
            background: var(--darker);
            padding: 60px 20px 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

.footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

.footer-brand .logo-text {
            font-size: 1.3rem;
            margin-bottom: 12px;
            display: block;
        }

.footer-brand p { color: var(--text-muted); font-size: 0.85rem; max-width: 300px; line-height: 1.6; }

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

.footer-col a {
            display: block;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            padding: 5px 0;
            transition: color 0.3s ease;
        }

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

.footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }

.footer-bottom a { color: var(--text-muted); font-size: 0.8rem; text-decoration: none; cursor: pointer; }

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

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

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

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

.modal h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--dark);
        }

.modal p { font-size: 0.9rem; margin-bottom: 10px; color: #555; line-height: 1.6; }

.modal-close {
            position: absolute;
            top: 16px;
            right: 20px;
            font-size: 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            color: #999;
            transition: color 0.3s;
        }

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

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

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

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

.lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 2rem;
            color: var(--white);
            background: none;
            border: none;
            cursor: pointer;
        }

.lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            color: var(--white);
            background: rgba(255,255,255,0.1);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

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

.lightbox-prev { left: 20px; }

.lightbox-next { right: 20px; }

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

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

.animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s ease;
        }

.animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

@media (max-width: 1024px) {
            .about-grid { grid-template-columns: 1fr; gap: 40px; }
            .about-img img { height: 300px; }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-inner { grid-template-columns: 1fr; gap: 30px; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
        }

@media (max-width: 768px) {
            .nav { 
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(17,17,17,0.98);
                flex-direction: column;
                padding: 20px;
                gap: 4px;
                border-bottom: 1px solid rgba(255,255,255,0.08);
            }
            .nav.open { display: flex; }
            .nav a { width: 100%; text-align: center; padding: 14px; }
            .mobile-toggle { display: flex; }
            .hero h1 { font-size: 2.5rem; }
            .menu-grid { grid-template-columns: 1fr; }
            .about-features { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .gallery-item:nth-child(1) { grid-column: span 1; }
            .formule-banner { padding: 28px 20px; }
            .reviews-grid { grid-template-columns: 1fr; }
            .annonce-inner { flex-direction: column; gap: 12px; }
            .promo-inner { flex-direction: column; gap: 14px; }
        }

@media (max-width: 640px) {
            .section { padding: 70px 16px; }
            .service-card { flex: 0 1 100%; max-width: 100%; }
            .hero-btns { flex-direction: column; align-items: center; }
            .btn { width: 100%; justify-content: center; }
            .gallery-grid { grid-template-columns: 1fr; }
            .horaire-row { padding: 14px 20px; }
            .contact-form-wrap { padding: 28px 20px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .pizza-promo-card { flex-direction: column; text-align: center; }
            .pizza-suppl-card { flex-direction: column; }
        }

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

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

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

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

.sct-tpl-service-city {
    font-family: 'Inter', sans-serif;
    background: #1a1a1a;
    color: #e8e8e8;
    line-height: 1.6;
}

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

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background:
        linear-gradient(135deg, rgba(17,17,17,0.92) 0%, rgba(26,26,26,0.82) 40%, rgba(214,40,40,0.35) 100%),
        url('/images/service_1_1770942542_698e704e369e5.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(214,40,40,0.15), rgba(247,183,49,0.05), transparent);
    pointer-events: none;
}

.sct-tpl-service-city .sct-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(247,183,49,0.15);
    border: 1px solid rgba(247,183,49,0.4);
    color: #F7B731;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.sct-tpl-service-city .sct-hero-text h1 span { color: #F7B731; }

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.05rem;
    color: #a0a0a0;
    max-width: 620px;
    margin-bottom: 32px;
    font-weight: 300;
}

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

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

.sct-tpl-service-city .sct-btn-primary {
    background: #D62828;
    color: #ffffff;
    box-shadow: 0 4px 25px rgba(214,40,40,0.4);
}

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

.sct-tpl-service-city .sct-btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.sct-tpl-service-city .sct-btn-secondary:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

.sct-tpl-service-city .sct-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sct-tpl-service-city .sct-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
}

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

.sct-tpl-service-city .sct-hero-card {
    background: rgba(42,42,42,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(247,183,49,0.25);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.sct-tpl-service-city .sct-hero-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(247,183,49,0.2);
}

.sct-tpl-service-city .sct-hero-card-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sct-tpl-service-city .sct-hero-card-row:last-of-type { border-bottom: none; }

.sct-tpl-service-city .sct-hero-card-row i {
    color: #F7B731;
    width: 22px;
    font-size: 1rem;
    margin-top: 3px;
}

.sct-tpl-service-city .sct-hero-card-row-content strong {
    display: block;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.sct-tpl-service-city .sct-hero-card-row-content span {
    font-size: 0.85rem;
    color: #a0a0a0;
}

.sct-tpl-service-city .sct-hero-card-cta {
    display: block;
    text-align: center;
    background: #D62828;
    color: #ffffff;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s;
}

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

.sct-tpl-service-city .sct-stats-band {
    background: #2a2a2a;
    padding: 50px 0;
    border-top: 1px solid rgba(247,183,49,0.15);
    border-bottom: 1px solid rgba(247,183,49,0.15);
}

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

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

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

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

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

.sct-tpl-service-city .sct-section-dark { background: #111111; }

.sct-tpl-service-city .sct-section-charcoal { background: #2a2a2a; }

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

.sct-tpl-service-city .sct-section-tag {
    display: inline-block;
    font-family: 'Caveat', cursive;
    font-size: 1.25rem;
    color: #F7B731;
    margin-bottom: 10px;
}

.sct-tpl-service-city .sct-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.sct-tpl-service-city .sct-section-subtitle {
    font-size: 1rem;
    color: #a0a0a0;
}

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

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

.sct-tpl-service-city .sct-intro-wrap p {
    font-size: 1.02rem;
    color: #c8c8c8;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.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: #2a2a2a;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s ease;
}

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-color: rgba(214,40,40,0.3);
}

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

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-step-card {
    background: #1a1a1a;
    border: 1px solid rgba(247,183,49,0.15);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(247,183,49,0.4);
}

.sct-tpl-service-city .sct-step-num {
    counter-increment: step;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #D62828;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-weight: 800;
    font-size: 1.1rem;
}

.sct-tpl-service-city .sct-step-num::before { content: counter(step); }

.sct-tpl-service-city .sct-step-icon {
    font-size: 1.6rem;
    color: #F7B731;
    margin-bottom: 12px;
}

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

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

.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: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px 22px;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-why-card:hover {
    background: rgba(247,183,49,0.04);
    border-color: rgba(247,183,49,0.25);
}

.sct-tpl-service-city .sct-why-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(247,183,49,0.15);
    color: #F7B731;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

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

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

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

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

.sct-tpl-service-city .sct-zones-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
}

.sct-tpl-service-city .sct-zones-list a,
.sct-tpl-service-city .sct-zones-list span {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #e8e8e8;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-zones-list a:hover {
    background: rgba(247,183,49,0.1);
    border-color: rgba(247,183,49,0.35);
    color: #F7B731;
}

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

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

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

.sct-tpl-service-city .sct-usecase-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

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

.sct-tpl-service-city .sct-usecase-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.25;
}

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

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

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

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

.sct-tpl-service-city .sct-engagement-card {
    background: #2a2a2a;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-engagement-card:hover {
    transform: translateY(-6px);
    border-color: rgba(214,40,40,0.3);
}

.sct-tpl-service-city .sct-engagement-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D62828 0%, #a51e1e 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

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

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

.sct-tpl-service-city .sct-local-spec {
    padding: 70px 0;
    background: linear-gradient(135deg, rgba(214,40,40,0.08) 0%, rgba(247,183,49,0.05) 100%);
    border-top: 1px solid rgba(247,183,49,0.15);
    border-bottom: 1px solid rgba(247,183,49,0.15);
}

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

.sct-tpl-service-city .sct-local-spec-wrap h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    color: #ffffff;
    margin-bottom: 18px;
}

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

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

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

.sct-tpl-service-city .sct-faq-item {
    background: #2a2a2a;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
}

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

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

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

.sct-tpl-service-city .sct-faq-item[open] summary::after { transform: rotate(45deg); }

.sct-tpl-service-city .sct-faq-item summary:hover { background: rgba(247,183,49,0.04); }

.sct-tpl-service-city .sct-faq-item .sct-faq-answer {
    padding: 0 26px 22px;
    color: #a0a0a0;
    font-size: 0.93rem;
    line-height: 1.7;
}

.sct-tpl-service-city .sct-maillage-section {
    padding: 70px 0;
    background: #1a1a1a;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

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

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

.sct-tpl-service-city .sct-maillage-links a {
    padding: 10px 20px;
    background: rgba(247,183,49,0.08);
    border: 1px solid rgba(247,183,49,0.25);
    border-radius: 50px;
    color: #F7B731;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-maillage-links a:hover {
    background: #F7B731;
    color: #1a1a1a;
}

.sct-tpl-service-city .sct-cta-final {
    padding: 90px 20px;
    background:
        linear-gradient(135deg, rgba(17,17,17,0.88) 0%, rgba(214,40,40,0.35) 100%),
        url('/images/service_1_1770942542_698e704e369e5.webp') center/cover no-repeat fixed;
    text-align: center;
}

.sct-tpl-service-city .sct-cta-final-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.sct-tpl-service-city .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.25;
}

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

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

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

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 115px 0 50px; }
    .sct-tpl-service-city .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-city .sct-hero-subtitle { font-size: 0.95rem; }
    .sct-tpl-service-city .sct-hero-card { padding: 24px; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-section { padding: 60px 0; }
    .sct-tpl-service-city .sct-intro-section,
    .sct-tpl-service-city .sct-zones-section,
    .sct-tpl-service-city .sct-usecase-section,
    .sct-tpl-service-city .sct-faq-section,
    .sct-tpl-service-city .sct-cta-final { padding: 60px 20px; }
    .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-faq-item summary { padding: 18px 20px; font-size: 0.95rem; }
    .sct-tpl-service-city .sct-faq-item .sct-faq-answer { padding: 0 20px 18px; }
    .sct-tpl-service-city .sct-breadcrumb { font-size: 0.78rem; }
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 140px 0 80px;
    background:
        linear-gradient(135deg, rgba(17,17,17,0.92) 0%, rgba(26,26,26,0.82) 40%, rgba(214,40,40,0.35) 100%),
        url('/images/service_2_1770942562_698e7062e0fbf.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-service-city .sct-cta-final {
    padding: 90px 20px;
    background:
        linear-gradient(135deg, rgba(17,17,17,0.88) 0%, rgba(214,40,40,0.35) 100%),
        url('/images/service_2_1770942562_698e7062e0fbf.webp') center/cover no-repeat fixed;
    text-align: center;
}

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 160px 20px 90px;
    background:
        linear-gradient(135deg, rgba(17,17,17,0.88) 0%, rgba(26,26,26,0.75) 50%, rgba(214,40,40,0.35) 100%),
        url('/images/service_1_1770942542_698e704e369e5.webp') center/cover no-repeat;
    color: var(--white);
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(214,40,40,0.18), rgba(247,183,49,0.06), transparent);
    pointer-events: none;
}

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

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

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

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

.sct-tpl-service-hub .sct-breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
    transition: opacity 0.2s;
}

.sct-tpl-service-hub .sct-breadcrumb a:hover { opacity: 0.8; }

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

.sct-tpl-service-hub .sct-hero-badge {
    display: inline-block;
    background: rgba(247,183,49,0.15);
    border: 1px solid rgba(247,183,49,0.4);
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.sct-tpl-service-hub .sct-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

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

.sct-tpl-service-hub .sct-hero-sub {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    font-weight: 300;
    line-height: 1.7;
}

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

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

.sct-tpl-service-hub .sct-btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 25px rgba(214,40,40,0.4);
}

.sct-tpl-service-hub .sct-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(214,40,40,0.5);
}

.sct-tpl-service-hub .sct-btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
}

.sct-tpl-service-hub .sct-btn-secondary:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

.sct-tpl-service-hub .sct-hero-card {
    background: rgba(26,26,26,0.85);
    border: 1px solid rgba(247,183,49,0.3);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(12px);
}

.sct-tpl-service-hub .sct-hero-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.sct-tpl-service-hub .sct-hero-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.sct-tpl-service-hub .sct-hero-card li i { color: var(--primary); font-size: 0.8rem; }

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

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

.sct-tpl-service-hub .sct-stats-band {
    background: var(--charcoal);
    padding: 50px 20px;
    border-top: 1px solid rgba(247,183,49,0.15);
    border-bottom: 1px solid rgba(247,183,49,0.15);
}

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

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

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

.sct-tpl-service-hub .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.sct-tpl-service-hub .sct-stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 500;
}

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

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

.sct-tpl-service-hub .sct-section-dark { background: var(--darker); }

.sct-tpl-service-hub .sct-section-light {
    background: var(--cream);
    color: var(--text-dark);
}

.sct-tpl-service-hub .sct-section-charcoal { background: var(--charcoal); }

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

.sct-tpl-service-hub .sct-section-tag {
    display: inline-block;
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.sct-tpl-service-hub .sct-section-light .sct-section-tag { color: var(--primary); }

.sct-tpl-service-hub .sct-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--white);
    line-height: 1.2;
}

.sct-tpl-service-hub .sct-section-light .sct-section-title { color: var(--dark); }

.sct-tpl-service-hub .sct-section-subtitle {
    font-size: 1.02rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.sct-tpl-service-hub .sct-section-light .sct-section-subtitle { color: #666; }

.sct-tpl-service-hub .sct-intro-section {
    background: var(--darker);
    padding: 90px 20px;
}

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

.sct-tpl-service-hub .sct-intro-content p {
    font-size: 1.02rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.82);
    margin-bottom: 22px;
}

.sct-tpl-service-hub .sct-intro-content p:first-of-type::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--secondary);
    float: left;
    line-height: 1;
    margin: 4px 12px 0 0;
}

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

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

.sct-tpl-service-hub .sct-service-card {
    background: var(--charcoal);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.sct-tpl-service-hub .sct-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-color: rgba(214,40,40,0.3);
}

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

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

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

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

.sct-tpl-service-hub .sct-service-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-service-card-body p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

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

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

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

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

.sct-tpl-service-hub .sct-step-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.sct-tpl-service-hub .sct-step-card:hover {
    border-color: rgba(247,183,49,0.3);
    background: rgba(247,183,49,0.04);
    transform: translateY(-4px);
}

.sct-tpl-service-hub .sct-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(214,40,40,0.3);
}

.sct-tpl-service-hub .sct-step-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
}

.sct-tpl-service-hub .sct-step-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
}

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

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

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

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

.sct-tpl-service-hub .sct-why-card {
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-why-card:hover {
    border-color: rgba(247,183,49,0.35);
    background: rgba(247,183,49,0.04);
    transform: translateY(-6px);
}

.sct-tpl-service-hub .sct-why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(214,40,40,0.2), rgba(247,183,49,0.15));
    color: var(--secondary);
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.sct-tpl-service-hub .sct-why-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
}

.sct-tpl-service-hub .sct-why-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    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: var(--cream);
    padding: 90px 20px;
    color: var(--text-dark);
}

.sct-tpl-service-hub .sct-usecase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

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

.sct-tpl-service-hub .sct-usecase-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

.sct-tpl-service-hub .sct-usecase-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.25;
}

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

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

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

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

.sct-tpl-service-hub .sct-engagement-card {
    background: linear-gradient(160deg, rgba(214,40,40,0.08), rgba(247,183,49,0.04));
    border: 1px solid rgba(247,183,49,0.2);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-engagement-card:hover {
    transform: translateY(-6px);
    border-color: rgba(247,183,49,0.5);
}

.sct-tpl-service-hub .sct-engagement-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(214,40,40,0.35);
}

.sct-tpl-service-hub .sct-engagement-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
}

.sct-tpl-service-hub .sct-engagement-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

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

.sct-tpl-service-hub .sct-faq-item {
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-faq-item:hover {
    border-color: rgba(247,183,49,0.25);
}

.sct-tpl-service-hub .sct-faq-item summary {
    padding: 22px 26px;
    cursor: pointer;
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    list-style: none;
    transition: background 0.3s ease;
}

.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: var(--secondary);
    font-size: 0.85rem;
    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] summary { background: rgba(247,183,49,0.05); }

.sct-tpl-service-hub .sct-faq-item .sct-faq-answer {
    padding: 0 26px 22px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.sct-tpl-service-hub .sct-maillage-section {
    background: var(--darker);
    padding: 90px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.sct-tpl-service-hub .sct-maillage-section.sct-maillage-alt {
    background: var(--charcoal);
}

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

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

.sct-tpl-service-hub .sct-maillage-cities a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow-wrap: anywhere;
}

.sct-tpl-service-hub .sct-maillage-cities a::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-maillage-cities a:hover {
    background: rgba(214,40,40,0.12);
    border-color: rgba(214,40,40,0.35);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

.sct-tpl-service-hub .sct-maillage-services a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: rgba(247,183,49,0.06);
    border: 1px solid rgba(247,183,49,0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sct-tpl-service-hub .sct-maillage-services a i {
    color: var(--secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sct-tpl-service-hub .sct-maillage-services a:hover {
    background: rgba(247,183,49,0.15);
    border-color: rgba(247,183,49,0.45);
    transform: translateY(-3px);
}

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

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

.sct-tpl-service-hub .sct-cta-final {
    background: linear-gradient(135deg, #7b0000 0%, var(--primary) 45%, #c0392b 100%);
    padding: 90px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-hub .sct-cta-final::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: rgba(247,183,49,0.12);
    border-radius: 50%;
}

.sct-tpl-service-hub .sct-cta-final::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -50px;
    width: 220px;
    height: 220px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

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

.sct-tpl-service-hub .sct-cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
}

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

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

.sct-tpl-service-hub .sct-cta-final .sct-btn-primary {
    background: var(--secondary);
    color: var(--darker);
    box-shadow: 0 6px 25px rgba(247,183,49,0.4);
}

.sct-tpl-service-hub .sct-cta-final .sct-btn-primary:hover {
    background: var(--secondary-dark);
    color: var(--darker);
}

.sct-tpl-service-hub .sct-cta-final .sct-btn-secondary {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--white);
}

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

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 160px 20px 90px;
    background:
        linear-gradient(135deg, rgba(17,17,17,0.88) 0%, rgba(26,26,26,0.75) 50%, rgba(214,40,40,0.35) 100%),
        url('/images/service_2_1770942562_698e7062e0fbf.webp') center/cover no-repeat;
    color: var(--white);
    overflow: hidden;
}

.sct-tpl-zone { background: var(--dark); color: var(--text); }

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(17,17,17,0.92) 0%, rgba(26,26,26,0.82) 50%, rgba(214,40,40,0.35) 100%), url('/images/service_3_1770942584_698e707818bec.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(247,183,49,0.15) 0%, transparent 60%);
    pointer-events: none;
}

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

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

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

.sct-tpl-zone .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    margin-bottom: 24px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.sct-tpl-zone .sct-breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

.sct-tpl-zone .sct-breadcrumb i { font-size: 0.65rem; opacity: 0.5; }

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

.sct-tpl-zone .sct-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 22px;
}

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

.sct-tpl-zone .sct-hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 560px;
    line-height: 1.7;
}

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

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

.sct-tpl-zone .sct-btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(214,40,40,0.4);
}

.sct-tpl-zone .sct-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.sct-tpl-zone .sct-btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
}

.sct-tpl-zone .sct-btn-secondary:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

.sct-tpl-zone .sct-hero-card {
    background: rgba(42,42,42,0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(247,183,49,0.25);
    border-radius: 20px;
    padding: 32px;
}

.sct-tpl-zone .sct-hero-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.sct-tpl-zone .sct-hero-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.sct-tpl-zone .sct-hero-card-list i { color: var(--secondary); margin-top: 3px; flex-shrink: 0; }

.sct-tpl-zone .sct-stats-band {
    background: var(--charcoal);
    padding: 50px 20px;
    border-bottom: 1px solid rgba(247,183,49,0.15);
}

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

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

.sct-tpl-zone .sct-stat-item .sct-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
}

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

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

.sct-tpl-zone .sct-section-dark { background: var(--darker); }

.sct-tpl-zone .sct-section-charcoal { background: var(--charcoal); }

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

.sct-tpl-zone .sct-section-tag {
    display: inline-block;
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.sct-tpl-zone .sct-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
}

.sct-tpl-zone .sct-section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.sct-tpl-zone .sct-intro-section {
    padding: 90px 0;
    background: var(--dark);
}

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

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

.sct-tpl-zone .sct-intro-text p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.8;
}

.sct-tpl-zone .sct-intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.sct-tpl-zone .sct-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sct-tpl-zone .sct-intro-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(247,183,49,0.3);
    border-radius: 20px;
    pointer-events: none;
}

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

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

.sct-tpl-zone .sct-service-card {
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.sct-tpl-zone .sct-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(214,40,40,0.35);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

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

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

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

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

.sct-tpl-zone .sct-service-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.sct-tpl-zone .sct-service-card-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

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

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

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

.sct-tpl-zone .sct-zones-section {
    padding: 90px 0;
    background: var(--darker);
}

.sct-tpl-zone .sct-zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}

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

.sct-tpl-zone .sct-zone-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-zone-item:hover {
    background: rgba(247,183,49,0.06);
    border-color: rgba(247,183,49,0.3);
}

.sct-tpl-zone .sct-zone-item i {
    color: var(--secondary);
    font-size: 1rem;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-zone-item span {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

.sct-tpl-zone .sct-usecase-section {
    padding: 90px 0;
    background: var(--dark);
}

.sct-tpl-zone .sct-usecase-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(214,40,40,0.08) 0%, rgba(247,183,49,0.05) 100%);
    border: 1px solid rgba(247,183,49,0.25);
    border-radius: 20px;
    padding: 40px;
}

.sct-tpl-zone .sct-usecase-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(247,183,49,0.15);
}

.sct-tpl-zone .sct-usecase-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(247,183,49,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sct-tpl-zone .sct-usecase-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
}

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

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

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

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

.sct-tpl-zone .sct-engagement-card {
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 32px 26px;
    text-align: center;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-engagement-card:hover {
    border-color: rgba(247,183,49,0.3);
    transform: translateY(-4px);
}

.sct-tpl-zone .sct-engagement-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(214,40,40,0.15), rgba(247,183,49,0.15));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-engagement-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 10px;
}

.sct-tpl-zone .sct-engagement-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.sct-tpl-zone .sct-local-spec {
    padding: 90px 0;
    background: var(--charcoal);
}

.sct-tpl-zone .sct-local-spec-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border-left: 4px solid var(--secondary);
    border-radius: 12px;
    padding: 30px 36px;
}

.sct-tpl-zone .sct-local-spec-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sct-tpl-zone .sct-local-spec-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

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

.sct-tpl-zone .sct-faq-section {
    padding: 90px 0;
    background: var(--dark);
}

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

.sct-tpl-zone .sct-faq-item {
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-faq-item:hover { border-color: rgba(247,183,49,0.25); }

.sct-tpl-zone .sct-faq-item summary {
    padding: 22px 26px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    list-style: none;
}

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

.sct-tpl-zone .sct-faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary);
    font-size: 0.85rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.sct-tpl-zone .sct-faq-answer {
    padding: 0 26px 22px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.93rem;
}

.sct-tpl-zone .sct-maillage-section {
    padding: 90px 0;
    background: var(--darker);
}

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

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

.sct-tpl-zone .sct-maillage-link {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-maillage-link:hover {
    background: rgba(247,183,49,0.08);
    border-color: rgba(247,183,49,0.35);
    color: var(--secondary);
    transform: translateX(4px);
}

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

.sct-tpl-zone .sct-cta-final {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(214,40,40,0.15) 0%, rgba(17,17,17,0.95) 60%), url('/images/service_2_1770942562_698e7062e0fbf.webp') center/cover no-repeat;
    text-align: center;
    position: relative;
}

.sct-tpl-zone .sct-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17,17,17,0.75);
}

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

.sct-tpl-zone .sct-cta-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
}

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

.sct-tpl-zone .sct-cta-inner p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

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

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 120px 0 60px; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-zone .sct-hero-btns { flex-direction: column; }
    .sct-tpl-zone .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-hero-card { padding: 24px; }
    .sct-tpl-zone .sct-stats-band { padding: 36px 20px; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: 1fr; gap: 20px; }
    .sct-tpl-zone .sct-section { padding: 60px 0; }
    .sct-tpl-zone .sct-section-header { margin-bottom: 40px; }
    .sct-tpl-zone .sct-usecase-card { padding: 26px; }
    .sct-tpl-zone .sct-local-spec-card { padding: 22px 22px; }
    .sct-tpl-zone .sct-faq-item summary { padding: 18px 20px; font-size: 0.92rem; }
    .sct-tpl-zone .sct-faq-answer { padding: 0 20px 18px; }
    .sct-tpl-zone .sct-cta-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-btns > * { width: 100%; justify-content: center; }
}

.sct-tpl-zone .sct-cta-final {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(214,40,40,0.15) 0%, rgba(17,17,17,0.95) 60%), url('/images/service_1_1770942542_698e704e369e5.webp') center/cover no-repeat;
    text-align: center;
    position: relative;
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(17,17,17,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 30px 20px;
        gap: 4px;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255,255,255,0.08);
    }
    .nav a {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
}

.page-hero {
    position: relative;
    padding: 160px 20px 80px;
    background: linear-gradient(135deg, var(--darker) 0%, var(--charcoal) 50%, rgba(214,40,40,0.25) 100%);
    text-align: center;
    overflow: hidden;
    border-bottom: 3px solid var(--secondary);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(247,183,49,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(214,40,40,0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.page-hero-badge {
    display: inline-block;
    background: rgba(247,183,49,0.15);
    border: 1px solid rgba(247,183,49,0.4);
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

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

.page-hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.breadcrumb {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: rgba(0,0,0,0.25);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.06);
}

.breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb i { font-size: 0.7rem; opacity: 0.6; }

.sitemap-section {
    padding: 80px 20px;
    background: var(--dark);
}

.sitemap-category {
    margin-bottom: 60px;
}

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

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(247,183,49,0.15);
}

.category-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(214,40,40,0.3);
}

.category-header-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.2;
}

.category-header-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.chip:hover {
    background: rgba(214,40,40,0.12);
    border-color: rgba(214,40,40,0.4);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(214,40,40,0.2);
}

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

.chip.chip-featured {
    background: linear-gradient(135deg, rgba(214,40,40,0.15) 0%, rgba(247,183,49,0.08) 100%);
    border-color: rgba(247,183,49,0.3);
}

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

.chip.chip-featured:hover {
    background: linear-gradient(135deg, rgba(214,40,40,0.25) 0%, rgba(247,183,49,0.15) 100%);
    border-color: var(--secondary);
}

.service-subgroup {
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-subgroup:hover {
    border-color: rgba(247,183,49,0.25);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.subgroup-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.subgroup-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(247,183,49,0.12);
    border: 1px solid rgba(247,183,49,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.subgroup-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
}

.subgroup-title span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

.chips-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 12px;
}

.chip-full {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.chip-full i {
    color: var(--secondary);
    font-size: 1rem;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(247,183,49,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chip-full:hover {
    background: rgba(214,40,40,0.1);
    border-color: rgba(214,40,40,0.4);
    color: var(--white);
    transform: translateY(-2px);
}

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

.back-home-cta {
    text-align: center;
    padding: 40px 20px 0;
}

.footer {
    background: var(--darker);
    padding: 70px 20px 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.7;
    max-width: 350px;
}

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

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p, .footer-bottom a {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .page-hero { padding: 130px 20px 60px; }
    .service-subgroup { padding: 22px; }
    .chip { padding: 12px 18px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .chips-list { grid-template-columns: 1fr; }
}