.menu-check { display: none; }

#menuCheck:checked ~ .mobile-menu {
  display: flex !important;
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
  right: 0 !important;
  left: 0 !important;
  max-height: 100vh !important;
  pointer-events: auto !important;
}

#menuCheck:checked ~ .header-main .menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

#menuCheck:checked ~ .header-main .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

#menuCheck:checked ~ .header-main .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

body:has(#menuCheck:checked) { overflow: hidden; }

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 100;
  background: transparent;
  border: 0;
}

.menu-close:hover { opacity: 0.8; }

:root {
            --primary: #DC2626;
            --primary-dark: #B91C1C;
            --secondary: #FBBF24;
            --secondary-dark: #F59E0B;
            --dark: #111827;
            --darker: #0a0a0a;
            --gray: #6B7280;
            --gray-light: #9CA3AF;
            --white: #FFFFFF;
            --off-white: #F9FAFB;
        }

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

html {
            scroll-behavior: smooth;
        }

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

h1, h2, h3, h4 {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

.header-top {
            background: var(--dark);
            padding: 0.5rem 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

.header-top-left {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

.header-top a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s ease;
        }

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

.header-top a i {
            color: var(--secondary);
        }

.available-badge {
            display: none;
            align-items: center;
            gap: 0.5rem;
            padding: 0.25rem 0.75rem;
            background: rgba(34, 197, 94, 0.2);
            border-radius: 20px;
            font-size: 0.8rem;
            color: #22C55E;
            font-weight: 500;
        }

.available-badge .pulse-dot {
            width: 8px;
            height: 8px;
            background: #22C55E;
            border-radius: 50%;
            animation: pulse 1.5s ease infinite;
        }

@keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
            50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
        }

.header-main {
            padding: 0.75rem 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

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

.logo-text {
            font-family: 'Oswald', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--dark);
            text-transform: uppercase;
            line-height: 1.2;
        }

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

.nav-links {
            display: none;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

.nav-links a {
            font-family: 'Oswald', sans-serif;
            color: var(--dark);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }

.nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

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

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

.header-cta {
            display: none;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.5rem;
            background: var(--primary);
            color: var(--white);
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
        }

.header-cta:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

.menu-toggle {
            width: 45px;
            height: 45px;
            background: var(--primary);
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
        }

.menu-toggle span {
            width: 22px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s ease;
        }

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

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

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

.mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: var(--dark);
            z-index: 99;
            transition: right 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            padding-top: 80px;
        }

.mobile-menu.active {
            right: 0;
        }

.mobile-menu a {
            font-family: 'Oswald', sans-serif;
            color: var(--white);
            text-decoration: none;
            font-size: 1.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            position: relative;
        }

.mobile-menu a::before {
            content: '';
            position: absolute;
            left: -20px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid var(--primary);
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
            opacity: 0;
            transition: all 0.3s ease;
        }

.mobile-menu a:hover {
            color: var(--secondary);
            padding-left: 20px;
        }

.mobile-menu a:hover::before {
            opacity: 1;
        }

.mobile-menu-cta {
            margin-top: 2rem !important;
            padding: 1rem 2rem !important;
            background: var(--primary) !important;
            color: var(--white) !important;
            font-family: 'Oswald', sans-serif !important;
            font-size: 1.25rem !important;
            font-weight: 600 !important;
            text-transform: uppercase !important;
            text-decoration: none !important;
            animation: ctaPulse 2s ease infinite !important;
            display: inline-block !important;
        }

@keyframes ctaPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
            50% { box-shadow: 0 0 0 15px rgba(220, 38, 38, 0); }
        }

.floating-call {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 50;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            background: var(--primary);
            color: var(--white);
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            animation: ctaPulse 2s ease infinite;
            clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
            transition: all 0.3s ease;
        }

.floating-call:hover {
            background: var(--primary-dark);
            transform: scale(1.05);
        }

.floating-call i {
            animation: phoneRing 1s ease infinite;
        }

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

.hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            padding-top: 120px;
            overflow: hidden;
        }

.hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }

.hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(17, 24, 39, 0.7) 100%);
            z-index: -1;
        }

.hero-diagonal {
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: var(--primary);
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
            z-index: -1;
            opacity: 0.1;
        }

.hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
            width: 100%;
        }

.hero-urgency {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.25rem;
            background: var(--primary);
            color: var(--white);
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            animation: blink 1.5s ease infinite;
            clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
        }

@keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

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

.hero h1 {
            font-size: clamp(2.5rem, 7vw, 5rem);
            color: var(--white);
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

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

.hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 2rem;
            max-width: 600px;
        }

.hero-cta-group {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 3rem;
        }

.btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1.25rem 2rem;
            font-family: 'Oswald', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
            clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
        }

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

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

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

.btn-secondary:hover {
            background: var(--secondary-dark);
            transform: translateY(-3px);
        }

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

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

.hero-progress {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

.progress-step {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-left: 3px solid var(--secondary);
        }

.progress-step-number {
            width: 30px;
            height: 30px;
            background: var(--secondary);
            color: var(--dark);
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.progress-step-text {
            color: var(--white);
            font-weight: 500;
            font-size: 0.9rem;
        }

section {
            padding: 4rem 1.5rem;
            position: relative;
        }

.section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

.section-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--primary);
            color: var(--white);
            font-family: 'Oswald', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
        }

h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            color: var(--dark);
            margin-bottom: 1rem;
        }

.section-subtitle {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

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

.services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                -45deg,
                transparent,
                transparent 20px,
                rgba(220, 38, 38, 0.02) 20px,
                rgba(220, 38, 38, 0.02) 40px
            );
            pointer-events: none;
        }

.services-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

.services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

.service-card {
            background: var(--white);
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
        }

.service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--primary);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.4s ease;
        }

.service-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 50px rgba(0,0,0,0.15);
        }

.service-card:hover::before {
            transform: scaleY(1);
        }

.service-card-inner {
            display: grid;
            grid-template-columns: 1fr;
        }

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

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

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

.service-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 0.5rem 1rem;
            background: var(--secondary);
            color: var(--dark);
            font-family: 'Oswald', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
        }

.service-content {
            padding: 1.5rem;
        }

.service-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin-bottom: 1rem;
            clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
        }

.service-content h3 {
            font-size: 1.1rem;
            color: var(--dark);
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

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

.about {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

.about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

.about-image {
            position: relative;
        }

.about-image img {
            width: 100%;
            clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
        }

.about-image-badge {
            position: absolute;
            bottom: -20px;
            right: 20px;
            padding: 1.5rem;
            background: var(--primary);
            color: var(--white);
            text-align: center;
            clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
        }

.about-image-badge .number {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1;
        }

.about-image-badge .text {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.about-content h2 {
            text-align: left;
        }

.about-content p {
            color: var(--gray);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

.about-features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }

.about-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--off-white);
            border-left: 4px solid var(--primary);
            transition: all 0.3s ease;
        }

.about-feature:hover {
            transform: translateX(10px);
            background: rgba(220, 38, 38, 0.05);
        }

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

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

.hours {
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

.hours::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: var(--primary);
            opacity: 0.1;
            border-radius: 50%;
        }

.hours .section-tag {
            background: var(--secondary);
            color: var(--dark);
        }

.hours h2 {
            color: var(--white);
        }

.hours .section-subtitle {
            color: rgba(255,255,255,0.7);
        }

.hours-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

.hours-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

.hours-clock {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
        }

.clock-display {
            font-family: 'Oswald', sans-serif;
            font-size: 4rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }

.clock-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(34, 197, 94, 0.2);
            color: #22C55E;
            font-weight: 600;
            font-size: 0.9rem;
        }

.clock-status .dot {
            width: 10px;
            height: 10px;
            background: #22C55E;
            border-radius: 50%;
            animation: pulse 1.5s ease infinite;
        }

.hours-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

.hours-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.25rem;
            background: rgba(255,255,255,0.05);
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
        }

.hours-row:hover {
            background: rgba(255,255,255,0.1);
            border-left-color: var(--primary);
        }

.hours-day {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--white);
            font-weight: 500;
        }

.hours-day i {
            color: var(--secondary);
        }

.hours-time {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            color: var(--secondary);
            font-size: 1.1rem;
        }

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

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

.contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

.contact-info {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

.contact-card {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--white);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            border-left: 4px solid var(--primary);
            transition: all 0.3s ease;
        }

.contact-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

.contact-card-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: var(--primary);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
        }

.contact-card-content h3 {
            font-family: 'Roboto', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.25rem;
            text-transform: none;
            letter-spacing: 0;
        }

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

.contact-card-content a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

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

.contact-form-wrapper {
            background: var(--white);
            overflow: hidden;
            box-shadow: 0 10px 50px rgba(0,0,0,0.1);
        }

.form-header {
            background: var(--primary);
            padding: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

.form-header i {
            font-size: 2rem;
            color: var(--secondary);
        }

.form-header-text h3 {
            font-family: 'Oswald', sans-serif;
            color: var(--white);
            font-size: 1.25rem;
            margin-bottom: 0.25rem;
        }

.form-header-text p {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
        }

.form-body {
            padding: 2rem;
        }

.form-group {
            margin-bottom: 1.5rem;
        }

.form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-family: 'Oswald', sans-serif;
            font-weight: 500;
            color: var(--dark);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

.form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: var(--off-white);
            border: 2px solid transparent;
            font-family: inherit;
            font-size: 1rem;
            color: var(--dark);
            transition: all 0.3s ease;
        }

.form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--white);
        }

.form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--gray-light);
        }

.form-body button[type="submit"] {
            width: 100%;
            padding: 1.25rem;
            background: var(--primary);
            border: none;
            color: var(--white);
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
        }

.form-body button[type="submit"]:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }

.form-body button[type="submit"]:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

#formStatus {
            margin-top: 1rem;
            text-align: center;
        }

.map-container {
            margin-top: 3rem;
            overflow: hidden;
            box-shadow: 0 10px 50px rgba(0,0,0,0.1);
        }

.map-container iframe {
            display: block;
        }

footer {
            background: var(--darker);
            padding: 4rem 1.5rem 2rem;
        }

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

.footer-main {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

.footer-brand {
            max-width: 300px;
        }

.footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            margin-bottom: 1rem;
        }

.footer-logo img {
            height: 45px;
        }

.footer-logo-text {
            font-family: 'Oswald', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--white);
            text-transform: uppercase;
        }

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

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

.footer-links h4 {
            font-family: 'Oswald', sans-serif;
            color: var(--white);
            font-size: 1rem;
            margin-bottom: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

.footer-links li {
            margin-bottom: 0.75rem;
        }

.footer-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

.footer-links a::before {
            content: '';
            width: 0;
            height: 0;
            border-left: 6px solid var(--primary);
            border-top: 4px solid transparent;
            border-bottom: 4px solid transparent;
            opacity: 0;
            transition: all 0.3s ease;
        }

.footer-links a:hover {
            color: var(--secondary);
            padding-left: 10px;
        }

.footer-links a:hover::before {
            opacity: 1;
        }

.footer-links a i {
            color: var(--primary);
            width: 20px;
        }

.footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }

.footer-bottom p {
            color: rgba(255,255,255,0.4);
            font-size: 0.9rem;
        }

.footer-legal {
            display: flex;
            justify-content: center;
            gap: 2rem;
        }

.footer-legal a {
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

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

.modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.8);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

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

.modal {
            background: var(--white);
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
        }

.modal-header {
            background: var(--primary);
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

.modal-header h3 {
            font-family: 'Oswald', sans-serif;
            color: var(--white);
            font-size: 1.25rem;
        }

.modal-close {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

.modal-close:hover {
            background: rgba(255,255,255,0.2);
        }

.modal-body {
            padding: 2rem;
        }

.modal-body p {
            color: var(--gray);
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

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

.scroll-top {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            width: 50px;
            height: 50px;
            background: var(--dark);
            border: none;
            color: var(--white);
            font-size: 1.25rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 40;
            clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
        }

.scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

.scroll-top:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

.fade-in {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s ease;
        }

.fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

.slide-in-left {
            opacity: 1;
            transform: translateX(0);
            transition: all 0.6s ease;
        }

.slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

.slide-in-right {
            opacity: 1;
            transform: translateX(0);
            transition: all 0.6s ease;
        }

.slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

.hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

.trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.65rem 1rem;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(10px);
            color: var(--white);
            font-family: 'Oswald', sans-serif;
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border: 1px solid rgba(251,191,36,0.35);
            clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
        }

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

.quick-services {
            background: var(--white);
            padding: 3.5rem 1.5rem;
        }

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

.quick-services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }

.qs-card {
            background: var(--white);
            border: 2px solid #f3f4f6;
            border-top: 4px solid var(--primary);
            padding: 1.5rem 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            transition: all 0.3s ease;
            position: relative;
        }

.qs-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 45px rgba(220,38,38,0.15);
            border-top-color: var(--secondary);
        }

.qs-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
        }

.qs-card h3 {
            font-size: 1.15rem;
            color: var(--dark);
            line-height: 1.3;
        }

.qs-benefits {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

.qs-benefits li {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            color: var(--gray);
            font-size: 0.92rem;
            line-height: 1.4;
        }

.qs-benefits li i {
            color: #22C55E;
            font-size: 0.85rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }

.qs-zone {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-family: 'Oswald', sans-serif;
            font-size: 0.8rem;
            color: var(--dark);
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding: 0.4rem 0.75rem;
            background: var(--off-white);
            border-left: 3px solid var(--secondary);
            width: fit-content;
        }

.qs-zone i {
            color: var(--primary);
        }

.qs-call {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-top: auto;
            padding: 0.85rem 1rem;
            background: var(--primary);
            color: var(--white);
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
        }

.qs-call:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

.social-proof {
            background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
            color: var(--white);
            padding: 4rem 1.5rem;
            position: relative;
            overflow: hidden;
        }

.social-proof::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: var(--primary);
            opacity: 0.12;
            border-radius: 50%;
        }

.social-proof-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

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

.social-proof .section-subtitle {
            color: rgba(255,255,255,0.75);
        }

.stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 3rem;
        }

.stat-card {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(251,191,36,0.25);
            padding: 1.5rem 1rem;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

.stat-card:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--secondary);
            transform: translateY(-4px);
        }

.stat-icon {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }

.stat-number {
            font-family: 'Oswald', sans-serif;
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1;
            margin-bottom: 0.35rem;
        }

.stat-label {
            color: rgba(255,255,255,0.75);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Oswald', sans-serif;
        }

.reviews-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
            margin-bottom: 2.5rem;
        }

.review-card {
            background: rgba(255,255,255,0.06);
            border-left: 4px solid var(--secondary);
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

.review-card:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }

.review-stars {
            color: var(--secondary);
            margin-bottom: 0.75rem;
            font-size: 1rem;
        }

.review-text {
            color: rgba(255,255,255,0.9);
            font-style: italic;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            line-height: 1.6;
        }

.review-author {
            font-family: 'Oswald', sans-serif;
            color: var(--white);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.review-author span {
            color: var(--secondary);
            font-weight: 400;
            text-transform: none;
            letter-spacing: 0;
            font-size: 0.85rem;
        }

.sp-call-wrapper {
            text-align: center;
        }

.sp-call {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.25rem 2.25rem;
            background: var(--primary);
            color: var(--white);
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            font-size: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: ctaPulse 2s ease infinite;
            clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
            transition: all 0.3s ease;
        }

.sp-call:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }

@media (min-width: 640px) {
            .quick-services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

@media (min-width: 1024px) {
            .quick-services-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .reviews-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

@media (min-width: 640px) {
            .hero-cta-group {
                flex-direction: row;
            }

            .available-badge {
                display: flex;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-features {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-info {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-main {
                grid-template-columns: repeat(2, 1fr);
            }
        }

@media (min-width: 768px) {
            .nav-links {
                display: flex;
            }

            .header-cta {
                display: flex;
            }

            .menu-toggle {
                display: none;
            }

            section {
                padding: 6rem 2rem;
            }

            .service-card-inner {
                grid-template-columns: 200px 1fr;
            }

            .service-image {
                height: auto;
                min-height: 180px;
            }

            .about-container {
                grid-template-columns: 1fr 1fr;
            }

            .hours-grid {
                grid-template-columns: auto 1fr;
            }

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

            .footer-main {
                grid-template-columns: 2fr 1fr 1fr;
            }

            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }
        }

@media (min-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .service-card-inner {
                grid-template-columns: 1fr;
            }

            .service-image {
                height: 200px;
            }

            .services-grid .service-card:nth-child(4),
            .services-grid .service-card:nth-child(5) {
                grid-column: span 1;
            }
        }

@media (min-width: 1024px) {
            .services-grid {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
            }

            .service-card {
                flex: 0 1 calc(33.333% - 1rem);
                max-width: calc(33.333% - 1rem);
            }
        }

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: 'Roboto', sans-serif; color: #111827; }

.sct-tpl-service-city h1, .sct-tpl-service-city h2, .sct-tpl-service-city h3, .sct-tpl-service-city h4 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px; }

.sct-tpl-service-city .sct-hero { position: relative; padding: 150px 0 80px; background: linear-gradient(135deg, #111827 0%, #1f2937 100%); color: #fff; overflow: hidden; }

.sct-tpl-service-city .sct-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 60%; height: 100%; background: #DC2626; opacity: 0.08; clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%); }

.sct-tpl-service-city .sct-hero-container { position: relative; z-index: 1; 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; margin-bottom: 1.5rem; font-size: 0.9rem; }

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

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

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

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

.sct-tpl-service-city .sct-hero-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }

.sct-tpl-service-city .sct-hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: #DC2626; color: #fff; font-family: 'Oswald', sans-serif; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px); }

.sct-tpl-service-city .sct-hero-badge.alt { background: #FBBF24; color: #111827; }

.sct-tpl-service-city .sct-hero-text h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.15; margin-bottom: 1.25rem; color: #fff; }

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

.sct-tpl-service-city .sct-hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 600px; }

.sct-tpl-service-city .sct-hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }

.sct-tpl-service-city .sct-btn { display: inline-flex; align-items: center; gap: 0.65rem; padding: 1rem 1.75rem; font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; transition: all 0.3s ease; clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px); border: none; cursor: pointer; }

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

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

.sct-tpl-service-city .sct-btn-secondary { background: #FBBF24; color: #111827; }

.sct-tpl-service-city .sct-btn-secondary:hover { background: #F59E0B; transform: translateY(-3px); }

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

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

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

.sct-tpl-service-city .sct-hero-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: rgba(255,255,255,0.85); }

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

.sct-tpl-service-city .sct-hero-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.12); padding: 2rem; clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px); }

.sct-tpl-service-city .sct-hero-card-title { font-size: 1.25rem; color: #FBBF24; margin-bottom: 1.5rem; }

.sct-tpl-service-city .sct-hero-card-info { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }

.sct-tpl-service-city .sct-hero-card-line { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.75rem; background: rgba(255,255,255,0.05); border-left: 3px solid #FBBF24; }

.sct-tpl-service-city .sct-hero-card-line i { color: #FBBF24; margin-top: 4px; flex-shrink: 0; }

.sct-tpl-service-city .sct-hero-card-line strong { display: block; color: #fff; font-size: 0.9rem; margin-bottom: 2px; }

.sct-tpl-service-city .sct-hero-card-line span { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

.sct-tpl-service-city .sct-stats-band { background: #DC2626; padding: 3rem 0; color: #fff; }

.sct-tpl-service-city .sct-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

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

.sct-tpl-service-city .sct-stat-item { text-align: center; padding: 1rem; }

.sct-tpl-service-city .sct-stat-value { font-family: 'Oswald', sans-serif; font-size: 2.75rem; font-weight: 700; color: #FBBF24; line-height: 1; margin-bottom: 0.5rem; }

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

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

.sct-tpl-service-city .sct-intro-container { max-width: 900px; margin: 0 auto; padding: 0 20px; }

.sct-tpl-service-city .sct-intro-section p { font-size: 1.05rem; color: #4B5563; margin-bottom: 1.25rem; line-height: 1.75; }

.sct-tpl-service-city .sct-intro-section strong { color: #DC2626; font-weight: 700; }

.sct-tpl-service-city .sct-section-header { text-align: center; margin-bottom: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; padding: 0 20px; }

.sct-tpl-service-city .sct-section-tag { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: #DC2626; color: #fff; font-family: 'Oswald', sans-serif; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px); }

.sct-tpl-service-city .sct-section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); color: #111827; margin-bottom: 1rem; }

.sct-tpl-service-city .sct-section-subtitle { color: #6B7280; font-size: 1.05rem; }

.sct-tpl-service-city .sct-services-section { padding: 4rem 0; background: #F9FAFB; }

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

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

.sct-tpl-service-city .sct-service-card { background: #fff; box-shadow: 0 5px 30px rgba(0,0,0,0.08); transition: all 0.4s ease; overflow: hidden; }

.sct-tpl-service-city .sct-service-card:hover { transform: translateY(-8px); box-shadow: 0 15px 50px rgba(0,0,0,0.15); }

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

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

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

.sct-tpl-service-city .sct-service-content { padding: 1.5rem; }

.sct-tpl-service-city .sct-service-content h3 { font-size: 1.15rem; color: #111827; margin-bottom: 0.75rem; line-height: 1.4; }

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

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

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

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

.sct-tpl-service-city .sct-processus-step { text-align: center; padding: 1.5rem 1rem; background: #F9FAFB; border-top: 4px solid #DC2626; position: relative; }

.sct-tpl-service-city .sct-processus-icon { width: 60px; height: 60px; background: #DC2626; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 1rem; clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px); }

.sct-tpl-service-city .sct-processus-step h3 { font-size: 1rem; color: #111827; margin-bottom: 0.5rem; }

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

.sct-tpl-service-city .sct-why-section { padding: 4rem 0; background: #F9FAFB; }

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

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

.sct-tpl-service-city .sct-why-card { background: #fff; padding: 1.75rem 1.25rem; text-align: center; border-bottom: 4px solid #FBBF24; transition: all 0.3s ease; }

.sct-tpl-service-city .sct-why-card:hover { transform: translateY(-5px); border-bottom-color: #DC2626; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.sct-tpl-service-city .sct-why-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #DC2626, #FBBF24); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 1rem; border-radius: 50%; }

.sct-tpl-service-city .sct-why-card h3 { font-size: 1.05rem; color: #111827; margin-bottom: 0.75rem; }

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

.sct-tpl-service-city .sct-zones-section { padding: 4rem 0; background: #111827; color: #fff; }

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

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

.sct-tpl-service-city .sct-zones-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.sct-tpl-service-city .sct-zones-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem 1.5rem; }

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

.sct-tpl-service-city .sct-zone-item { display: flex; align-items: center; gap: 0.65rem; padding: 0.75rem 1rem; background: rgba(255,255,255,0.05); border-left: 3px solid #FBBF24; transition: all 0.3s; }

.sct-tpl-service-city .sct-zone-item:hover { background: rgba(255,255,255,0.1); transform: translateX(5px); }

.sct-tpl-service-city .sct-zone-item i { color: #FBBF24; }

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

.sct-tpl-service-city .sct-usecase-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

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

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

.sct-tpl-service-city .sct-usecase-image img { width: 100%; clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px); }

.sct-tpl-service-city .sct-usecase-content h2 { text-align: left; color: #111827; margin-bottom: 1.5rem; font-size: clamp(1.75rem, 4vw, 2.25rem); }

.sct-tpl-service-city .sct-usecase-content p { color: #4B5563; font-size: 1.05rem; line-height: 1.75; margin-bottom: 1rem; }

.sct-tpl-service-city .sct-usecase-content strong { color: #DC2626; }

.sct-tpl-service-city .sct-engagements-section { padding: 4rem 0; background: #F9FAFB; }

.sct-tpl-service-city .sct-engagements-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; max-width: 1100px; margin: 0 auto; padding: 0 20px; }

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

.sct-tpl-service-city .sct-engagement-card { background: #fff; padding: 2rem 1.5rem; text-align: center; border-top: 4px solid #DC2626; box-shadow: 0 5px 20px rgba(0,0,0,0.06); transition: all 0.3s; }

.sct-tpl-service-city .sct-engagement-card:hover { transform: translateY(-5px); }

.sct-tpl-service-city .sct-engagement-icon { width: 70px; height: 70px; background: #FBBF24; color: #111827; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin: 0 auto 1.25rem; clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px); }

.sct-tpl-service-city .sct-engagement-card h3 { font-size: 1.15rem; color: #111827; margin-bottom: 0.75rem; }

.sct-tpl-service-city .sct-engagement-card p { color: #6B7280; font-size: 0.95rem; }

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

.sct-tpl-service-city .sct-local-spec-container { max-width: 900px; margin: 0 auto; padding: 2rem; background: linear-gradient(135deg, #F9FAFB 0%, #fff 100%); border-left: 5px solid #DC2626; }

.sct-tpl-service-city .sct-local-spec h3 { font-size: 1.35rem; color: #111827; margin-bottom: 1rem; }

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

.sct-tpl-service-city .sct-faq-section { padding: 4rem 0; background: #F9FAFB; }

.sct-tpl-service-city .sct-faq-container { max-width: 850px; margin: 0 auto; padding: 0 20px; }

.sct-tpl-service-city .sct-faq-item { background: #fff; margin-bottom: 1rem; box-shadow: 0 3px 15px rgba(0,0,0,0.06); border-left: 4px solid #DC2626; }

.sct-tpl-service-city .sct-faq-item summary { padding: 1.25rem 1.5rem; cursor: pointer; font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.05rem; color: #111827; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }

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

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

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

.sct-tpl-service-city .sct-faq-answer { padding: 0 1.5rem 1.25rem; color: #4B5563; line-height: 1.7; }

.sct-tpl-service-city .sct-maillage-section { padding: 3rem 0; background: #fff; border-top: 1px solid #E5E7EB; }

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

.sct-tpl-service-city .sct-maillage-title { font-size: 1.25rem; color: #111827; margin-bottom: 1.25rem; text-align: center; }

.sct-tpl-service-city .sct-maillage-list { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; }

.sct-tpl-service-city .sct-maillage-list a { display: inline-block; padding: 0.6rem 1.1rem; background: #F9FAFB; color: #111827; text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: all 0.3s; border: 1px solid #E5E7EB; }

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

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

.sct-tpl-service-city .sct-cta-final::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: rgba(251, 191, 36, 0.1); border-radius: 50%; }

.sct-tpl-service-city .sct-cta-final-container { max-width: 800px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }

.sct-tpl-service-city .sct-cta-final h2 { color: #fff; font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }

.sct-tpl-service-city .sct-cta-final p { font-size: 1.1rem; margin-bottom: 2rem; color: rgba(255,255,255,0.9); }

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

.sct-tpl-service-city .sct-cta-final .sct-btn-primary { background: #FBBF24; color: #111827; }

.sct-tpl-service-city .sct-cta-final .sct-btn-primary:hover { background: #F59E0B; }

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

@media (max-width: 992px) {
    .sct-tpl-service-city .sct-hero { padding: 130px 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); }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-zones-list { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-city .sct-usecase-container { grid-template-columns: 1fr; gap: 2rem; }
    .sct-tpl-service-city .sct-engagements-grid { grid-template-columns: 1fr; max-width: 500px; }
}

@media (max-width: 640px) {
    .sct-tpl-service-city .sct-hero { padding: 120px 0 50px; }
    .sct-tpl-service-city .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-city .sct-hero-subtitle { font-size: 1rem; }
    .sct-tpl-service-city .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-city .sct-hero-card { padding: 1.5rem; }
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .sct-tpl-service-city .sct-stat-value { font-size: 2.25rem; }
    .sct-tpl-service-city .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-zones-list { grid-template-columns: 1fr; }
    .sct-tpl-service-city .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-city .sct-cta-final-btns > * { width: 100%; }
    .sct-tpl-service-city .sct-section-title { font-size: 1.6rem; }
    .sct-tpl-service-city .sct-breadcrumb { font-size: 0.82rem; }
}

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

.sct-tpl-service-hub .sct-breadcrumb-wrap { background: #F9FAFB; padding: 100px 0 20px; border-bottom: 1px solid #E5E7EB; margin-top: 80px; }

.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.9rem; color: #6B7280; }

.sct-tpl-service-hub .sct-breadcrumb a { color: #DC2626; text-decoration: none; font-weight: 500; }

.sct-tpl-service-hub .sct-breadcrumb a:hover { text-decoration: underline; }

.sct-tpl-service-hub .sct-breadcrumb i { font-size: 0.7rem; color: #9CA3AF; }

.sct-tpl-service-hub .sct-breadcrumb span { color: #111827; font-weight: 500; }

.sct-tpl-service-hub .sct-hero { position: relative; padding: 60px 0 80px; background: linear-gradient(135deg, #111827 0%, #1F2937 100%); overflow: hidden; }

.sct-tpl-service-hub .sct-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 60%; height: 100%; background: url('/images/service_1_1770297445_69849865a5beb.webp') center/cover; opacity: 0.25; clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%); }

.sct-tpl-service-hub .sct-hero::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(17,24,39,0.95) 0%, rgba(17,24,39,0.6) 100%); }

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

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

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

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

.sct-tpl-service-hub .sct-hero-badge { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.6rem 1.1rem; background: #DC2626; color: #fff; font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; margin-bottom: 1.5rem; clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px); }

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

.sct-tpl-service-hub .sct-hero-text h1 { font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; line-height: 1.15; margin-bottom: 1.25rem; text-transform: uppercase; }

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

.sct-tpl-service-hub .sct-hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 600px; line-height: 1.6; }

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

.sct-tpl-service-hub .sct-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 1.1rem 1.8rem; font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; transition: all 0.3s ease; clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px); }

.sct-tpl-service-hub .sct-btn-primary { background: #DC2626; color: #fff; }

.sct-tpl-service-hub .sct-btn-primary:hover { background: #B91C1C; transform: translateY(-3px); }

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

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

.sct-tpl-service-hub .sct-hero-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); padding: 2rem; clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px); }

.sct-tpl-service-hub .sct-hero-card h3 { font-family: 'Oswald', sans-serif; color: #FBBF24; font-size: 1.2rem; margin-bottom: 1.25rem; text-transform: uppercase; }

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

.sct-tpl-service-hub .sct-hero-card-list li { display: flex; align-items: center; gap: 0.75rem; color: #fff; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.95rem; }

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

.sct-tpl-service-hub .sct-hero-card-list i { color: #22C55E; }

@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: 40px 0 60px; }
    .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: #DC2626; padding: 3rem 0; position: relative; }

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

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

.sct-tpl-service-hub .sct-stat-value { font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #fff; line-height: 1; margin-bottom: 0.5rem; }

.sct-tpl-service-hub .sct-stat-label { color: rgba(255,255,255,0.9); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

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

.sct-tpl-service-hub .sct-section { padding: 5rem 0; }

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

.sct-tpl-service-hub .sct-section-tag { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: #DC2626; color: #fff; font-family: 'Oswald', sans-serif; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px); }

.sct-tpl-service-hub .sct-section-title { font-family: 'Oswald', sans-serif; font-size: clamp(1.8rem, 4vw, 2.6rem); color: #111827; margin-bottom: 1rem; text-transform: uppercase; line-height: 1.2; }

.sct-tpl-service-hub .sct-section-subtitle { color: #6B7280; max-width: 700px; margin: 0 auto; font-size: 1.05rem; line-height: 1.6; }

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

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

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

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

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

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

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

.sct-tpl-service-hub .sct-service-card { background: #fff; border: 1px solid #E5E7EB; overflow: hidden; transition: all 0.4s ease; position: relative; }

.sct-tpl-service-hub .sct-service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: #DC2626; transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }

.sct-tpl-service-hub .sct-service-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }

.sct-tpl-service-hub .sct-service-card:hover::before { transform: scaleX(1); }

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

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

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

.sct-tpl-service-hub .sct-service-body { padding: 1.75rem; }

.sct-tpl-service-hub .sct-service-body h3 { font-family: 'Oswald', sans-serif; color: #111827; font-size: 1.2rem; margin-bottom: 0.75rem; text-transform: uppercase; line-height: 1.3; }

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

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

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

.sct-tpl-service-hub .sct-processus-section { background: #111827; position: relative; overflow: hidden; }

.sct-tpl-service-hub .sct-processus-section::before { content: ''; position: absolute; top: -30%; right: -10%; width: 500px; height: 500px; background: #DC2626; opacity: 0.08; border-radius: 50%; }

.sct-tpl-service-hub .sct-processus-section .sct-section-tag { background: #FBBF24; color: #111827; }

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

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

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

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

.sct-tpl-service-hub .sct-step-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); padding: 1.75rem 1.25rem; text-align: center; transition: all 0.3s ease; position: relative; }

.sct-tpl-service-hub .sct-step-card:hover { transform: translateY(-5px); border-color: #FBBF24; }

.sct-tpl-service-hub .sct-step-num { width: 50px; height: 50px; background: #DC2626; color: #fff; font-family: 'Oswald', sans-serif; font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px); }

.sct-tpl-service-hub .sct-step-card h3 { font-family: 'Oswald', sans-serif; color: #FBBF24; font-size: 1.05rem; margin-bottom: 0.6rem; text-transform: uppercase; }

.sct-tpl-service-hub .sct-step-card p { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.5; }

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

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

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

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

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

.sct-tpl-service-hub .sct-why-card { background: #fff; padding: 2rem 1.5rem; text-align: center; border-bottom: 4px solid #DC2626; transition: all 0.3s ease; }

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

.sct-tpl-service-hub .sct-why-icon { width: 70px; height: 70px; background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%); color: #fff; font-size: 1.75rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px); }

.sct-tpl-service-hub .sct-why-card h3 { font-family: 'Oswald', sans-serif; color: #111827; font-size: 1.1rem; margin-bottom: 0.75rem; text-transform: uppercase; }

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

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

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

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

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

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

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

.sct-tpl-service-hub .sct-usecase-image img { width: 100%; clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px); }

.sct-tpl-service-hub .sct-usecase-image-badge { position: absolute; bottom: -20px; right: 20px; padding: 1.25rem 1.5rem; background: #DC2626; color: #fff; clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px); }

.sct-tpl-service-hub .sct-usecase-image-badge .num { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; line-height: 1; }

.sct-tpl-service-hub .sct-usecase-image-badge .txt { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

.sct-tpl-service-hub .sct-usecase-content h2 { font-family: 'Oswald', sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem); color: #111827; margin-bottom: 1.25rem; text-transform: uppercase; line-height: 1.2; }

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

.sct-tpl-service-hub .sct-usecase-content p { margin-bottom: 1rem; }

.sct-tpl-service-hub .sct-usecase-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }

.sct-tpl-service-hub .sct-usecase-list li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.6rem 0; color: #374151; }

.sct-tpl-service-hub .sct-usecase-list i { color: #DC2626; margin-top: 0.3rem; }

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

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

.sct-tpl-service-hub .sct-engagements-section .sct-section-tag { background: #FBBF24; color: #111827; }

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

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

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

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

.sct-tpl-service-hub .sct-engagement-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 2rem 1.75rem; transition: all 0.3s ease; }

.sct-tpl-service-hub .sct-engagement-card:hover { background: rgba(255,255,255,0.08); border-color: #FBBF24; transform: translateY(-5px); }

.sct-tpl-service-hub .sct-engagement-icon { width: 60px; height: 60px; background: #DC2626; color: #fff; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px); }

.sct-tpl-service-hub .sct-engagement-card h3 { font-family: 'Oswald', sans-serif; color: #FBBF24; font-size: 1.15rem; margin-bottom: 0.75rem; text-transform: uppercase; }

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

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

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

.sct-tpl-service-hub .sct-faq-list { max-width: 850px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }

.sct-tpl-service-hub .sct-faq-item { background: #fff; border-left: 4px solid #DC2626; padding: 1.5rem 1.75rem; transition: all 0.3s ease; }

.sct-tpl-service-hub .sct-faq-item:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.08); transform: translateX(5px); }

.sct-tpl-service-hub .sct-faq-item summary { font-family: 'Oswald', sans-serif; color: #111827; font-size: 1.05rem; font-weight: 600; cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }

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

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

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

.sct-tpl-service-hub .sct-faq-item p { margin-top: 1rem; color: #6B7280; font-size: 0.95rem; line-height: 1.7; }

.sct-tpl-service-hub .sct-maillage-section { background: #fff; padding: 4rem 0; border-top: 1px solid #E5E7EB; }

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

.sct-tpl-service-hub .sct-maillage-title { font-family: 'Oswald', sans-serif; font-size: clamp(1.5rem, 3vw, 2rem); color: #111827; margin-bottom: 0.75rem; text-transform: uppercase; text-align: center; }

.sct-tpl-service-hub .sct-maillage-subtitle { text-align: center; color: #6B7280; margin-bottom: 2.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }

.sct-tpl-service-hub .sct-maillage-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }

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

.sct-tpl-service-hub .sct-maillage-list a { display: flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1rem; background: #fff; border: 1px solid #E5E7EB; color: #374151; text-decoration: none; font-size: 0.92rem; font-weight: 500; transition: all 0.3s ease; border-left: 3px solid transparent; }

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

.sct-tpl-service-hub .sct-maillage-list a:hover { border-left-color: #DC2626; color: #DC2626; transform: translateX(4px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }

.sct-tpl-service-hub .sct-maillage-list a i { color: #DC2626; font-size: 0.8rem; flex-shrink: 0; }

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

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

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

.sct-tpl-service-hub .sct-cta-final { background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }

.sct-tpl-service-hub .sct-cta-final::before { content: ''; position: absolute; top: -50%; left: -10%; width: 500px; height: 500px; background: rgba(255,255,255,0.05); border-radius: 50%; }

.sct-tpl-service-hub .sct-cta-final::after { content: ''; position: absolute; bottom: -30%; right: -10%; width: 400px; height: 400px; background: rgba(251,191,36,0.1); border-radius: 50%; }

.sct-tpl-service-hub .sct-cta-final-inner { position: relative; z-index: 1; }

.sct-tpl-service-hub .sct-cta-final h2 { font-family: 'Oswald', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; margin-bottom: 1rem; text-transform: uppercase; line-height: 1.2; }

.sct-tpl-service-hub .sct-cta-final p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2rem; max-width: 650px; margin-left: auto; margin-right: auto; }

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

.sct-tpl-service-hub .sct-cta-final .sct-btn-primary { background: #FBBF24; color: #111827; }

.sct-tpl-service-hub .sct-cta-final .sct-btn-primary:hover { background: #F59E0B; }

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

.sct-tpl-service-hub .sct-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 60%; height: 100%; background: url('/images/service_2_1770297470_6984987e9ce54.webp') center/cover; opacity: 0.25; clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%); }

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

.sct-tpl-zone { font-family: 'Roboto', sans-serif; color: #111827; }

.sct-tpl-zone main { padding-top: 110px; }

.sct-tpl-zone .sct-breadcrumb-wrap { background: #F9FAFB; padding: 14px 0; border-bottom: 1px solid #E5E7EB; }

.sct-tpl-zone .sct-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; max-width: 100%; overflow-wrap: anywhere; font-size: 0.85rem; color: #6B7280; list-style: none; padding: 0; margin: 0; }

.sct-tpl-zone .sct-breadcrumb a { color: #DC2626; text-decoration: none; font-weight: 500; }

.sct-tpl-zone .sct-breadcrumb a:hover { text-decoration: underline; }

.sct-tpl-zone .sct-breadcrumb li { display: flex; align-items: center; gap: 8px; }

.sct-tpl-zone .sct-breadcrumb li + li::before { content: "›"; color: #9CA3AF; }

.sct-tpl-zone .sct-hero { position: relative; padding: 70px 0 80px; background: linear-gradient(135deg, rgba(17,24,39,0.92) 0%, rgba(220,38,38,0.85) 100%), url('/images/service_1_1770297445_69849865a5beb.webp') center/cover no-repeat; color: #fff; overflow: hidden; }

.sct-tpl-zone .sct-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: rgba(220,38,38,0.15); clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%); pointer-events: none; }

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

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

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

.sct-tpl-zone .sct-hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.1rem; background: #FBBF24; color: #111827; font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; margin-bottom: 1.25rem; clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px); }

.sct-tpl-zone .sct-hero-text h1 { font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.15; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 1.25rem; }

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

.sct-tpl-zone .sct-hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 1.75rem; max-width: 600px; }

.sct-tpl-zone .sct-hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

.sct-tpl-zone .sct-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 1rem 1.75rem; font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; cursor: pointer; border: none; transition: transform 0.3s ease, background 0.3s ease; clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px); }

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

.sct-tpl-zone .sct-btn-primary:hover { background: #B91C1C; transform: translateY(-3px); }

.sct-tpl-zone .sct-btn-secondary { background: #FBBF24; color: #111827; }

.sct-tpl-zone .sct-btn-secondary:hover { background: #F59E0B; transform: translateY(-3px); }

.sct-tpl-zone .sct-hero-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); padding: 1.75rem; }

.sct-tpl-zone .sct-hero-card h3 { font-family: 'Oswald', sans-serif; color: #FBBF24; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 1rem; }

.sct-tpl-zone .sct-hero-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }

.sct-tpl-zone .sct-hero-card li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; }

.sct-tpl-zone .sct-hero-card li i { color: #22C55E; }

.sct-tpl-zone .sct-stats-band { background: #111827; padding: 50px 0; }

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

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

.sct-tpl-zone .sct-stat-item { text-align: center; padding: 1rem; border-left: 3px solid #FBBF24; }

.sct-tpl-zone .sct-stat-value { font-family: 'Oswald', sans-serif; font-size: 2.5rem; font-weight: 700; color: #FBBF24; line-height: 1; margin-bottom: 0.5rem; }

.sct-tpl-zone .sct-stat-label { color: rgba(255,255,255,0.8); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }

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

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

.sct-tpl-zone .sct-section-tag { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: #DC2626; color: #fff; font-family: 'Oswald', sans-serif; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px); }

.sct-tpl-zone .sct-section-title { font-family: 'Oswald', sans-serif; font-size: clamp(1.75rem, 4vw, 2.5rem); color: #111827; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 1rem; }

.sct-tpl-zone .sct-section-subtitle { color: #6B7280; max-width: 700px; margin: 0 auto; font-size: 1.05rem; }

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

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

.sct-tpl-zone .sct-intro-content p { color: #4B5563; font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.25rem; }

.sct-tpl-zone .sct-services-section { background: #F9FAFB; position: relative; }

.sct-tpl-zone .sct-services-section::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(220,38,38,0.025) 20px, rgba(220,38,38,0.025) 40px); pointer-events: none; }

.sct-tpl-zone .sct-services-section > * { position: relative; z-index: 1; }

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

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

.sct-tpl-zone .sct-service-card { background: #fff; box-shadow: 0 5px 25px rgba(0,0,0,0.08); transition: transform 0.4s ease, box-shadow 0.4s ease; overflow: hidden; display: flex; flex-direction: column; position: relative; }

.sct-tpl-zone .sct-service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: #DC2626; transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }

.sct-tpl-zone .sct-service-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }

.sct-tpl-zone .sct-service-card:hover::before { transform: scaleX(1); }

.sct-tpl-zone .sct-service-image { height: 200px; overflow: hidden; }

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

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

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

.sct-tpl-zone .sct-service-icon { width: 50px; height: 50px; background: #DC2626; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px); }

.sct-tpl-zone .sct-service-body h3 { font-family: 'Oswald', sans-serif; font-size: 1.15rem; text-transform: uppercase; letter-spacing: 1px; color: #111827; margin: 0 0 0.75rem; }

.sct-tpl-zone .sct-service-body p { color: #6B7280; font-size: 0.95rem; line-height: 1.6; margin: 0 0 1.25rem; flex: 1; }

.sct-tpl-zone .sct-service-link { display: inline-flex; align-items: center; gap: 0.5rem; color: #DC2626; font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; text-decoration: none; padding-top: 0.5rem; border-top: 1px solid #E5E7EB; }

.sct-tpl-zone .sct-service-link:hover { color: #B91C1C; }

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

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

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

.sct-tpl-zone .sct-zone-pill { display: flex; align-items: center; gap: 0.6rem; padding: 1rem 1.25rem; background: #F9FAFB; border-left: 4px solid #DC2626; transition: transform 0.3s ease, background 0.3s ease; font-weight: 500; color: #111827; }

.sct-tpl-zone .sct-zone-pill:hover { transform: translateX(6px); background: rgba(220,38,38,0.05); }

.sct-tpl-zone .sct-zone-pill i { color: #DC2626; }

.sct-tpl-zone .sct-usecase-section { background: #111827; color: #fff; position: relative; overflow: hidden; }

.sct-tpl-zone .sct-usecase-section::before { content: ''; position: absolute; top: -40%; right: -15%; width: 500px; height: 500px; background: #DC2626; opacity: 0.12; border-radius: 50%; }

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

.sct-tpl-zone .sct-usecase-section .sct-section-tag { background: #FBBF24; color: #111827; }

.sct-tpl-zone .sct-usecase-content { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }

.sct-tpl-zone .sct-usecase-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.12); padding: 2rem; border-left: 4px solid #FBBF24; }

.sct-tpl-zone .sct-usecase-card p { color: rgba(255,255,255,0.9); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1rem; }

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

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

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

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

.sct-tpl-zone .sct-engagement-card { background: #fff; padding: 2rem; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.06); transition: transform 0.4s ease; border-bottom: 4px solid #DC2626; }

.sct-tpl-zone .sct-engagement-card:hover { transform: translateY(-8px); }

.sct-tpl-zone .sct-engagement-icon { width: 70px; height: 70px; background: #DC2626; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.75rem; margin-bottom: 1.25rem; clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px); }

.sct-tpl-zone .sct-engagement-card h3 { font-family: 'Oswald', sans-serif; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; color: #111827; margin: 0 0 0.75rem; }

.sct-tpl-zone .sct-engagement-card p { color: #6B7280; font-size: 0.95rem; line-height: 1.6; margin: 0; }

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

.sct-tpl-zone .sct-local-spec-content { max-width: 900px; margin: 0 auto; padding: 2rem; background: #F9FAFB; border-left: 5px solid #FBBF24; }

.sct-tpl-zone .sct-local-spec-content p { color: #4B5563; font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }

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

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

.sct-tpl-zone .sct-faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }

.sct-tpl-zone .sct-faq-item { background: #fff; border-left: 4px solid #DC2626; box-shadow: 0 2px 10px rgba(0,0,0,0.05); overflow: hidden; }

.sct-tpl-zone .sct-faq-item summary { padding: 1.25rem 1.5rem; font-family: 'Oswald', sans-serif; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.5px; color: #111827; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }

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

.sct-tpl-zone .sct-faq-item summary::after { content: '+'; font-size: 1.5rem; color: #DC2626; transition: transform 0.3s ease; }

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

.sct-tpl-zone .sct-faq-item .sct-faq-answer { padding: 0 1.5rem 1.25rem; color: #4B5563; line-height: 1.7; }

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

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

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

.sct-tpl-zone .sct-maillage-link { display: flex; align-items: center; gap: 0.6rem; padding: 0.9rem 1rem; background: #F9FAFB; color: #111827; text-decoration: none; font-weight: 500; font-size: 0.9rem; border-left: 3px solid #FBBF24; transition: all 0.3s ease; }

.sct-tpl-zone .sct-maillage-link:hover { background: #DC2626; color: #fff; transform: translateX(4px); border-left-color: #fff; }

.sct-tpl-zone .sct-maillage-link i { color: #DC2626; transition: color 0.3s ease; }

.sct-tpl-zone .sct-maillage-link:hover i { color: #FBBF24; }

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

.sct-tpl-zone .sct-cta-final::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.04) 30px, rgba(255,255,255,0.04) 60px); }

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

.sct-tpl-zone .sct-cta-final h2 { font-family: 'Oswald', sans-serif; font-size: clamp(1.8rem, 4vw, 2.75rem); text-transform: uppercase; letter-spacing: 1px; margin: 0 0 1rem; }

.sct-tpl-zone .sct-cta-final p { font-size: 1.1rem; margin-bottom: 2rem; color: rgba(255,255,255,0.9); }

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

.sct-tpl-zone .sct-cta-btns .sct-btn-secondary { background: #FBBF24; color: #111827; }

.sct-tpl-zone .sct-cta-btns .sct-btn-outline { background: transparent; color: #fff; border: 2px solid #fff; clip-path: none; padding: calc(1rem - 2px) calc(1.75rem - 2px); }

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

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

@media (max-width: 640px) {
    .sct-tpl-zone main { padding-top: 95px; }
    .sct-tpl-zone .sct-section { padding: 50px 0; }
    .sct-tpl-zone .sct-hero { padding: 50px 0 60px; }
    .sct-tpl-zone .sct-hero-btns { flex-direction: column; }
    .sct-tpl-zone .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-zones-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-maillage-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-cta-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-btns > * { width: 100%; }
    .sct-tpl-zone .sct-usecase-card { padding: 1.5rem; }
    .sct-tpl-zone .sct-local-spec-content { padding: 1.5rem; }
}

.page-hero {
    position: relative;
    padding: 180px 1.5rem 5rem;
    background: linear-gradient(135deg, var(--dark) 0%, #1f2937 100%);
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--primary);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.15;
    z-index: 0;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(251, 191, 36, 0.03) 20px,
        rgba(251, 191, 36, 0.03) 40px
    );
    pointer-events: none;
}

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

.page-hero .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

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

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

.breadcrumb span {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.breadcrumb .current {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sitemap {
    padding: 5rem 1.5rem;
    background: var(--off-white);
    position: relative;
}

.sitemap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(220, 38, 38, 0.02) 20px,
        rgba(220, 38, 38, 0.02) 40px
    );
    pointer-events: none;
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sitemap-block {
    background: var(--white);
    padding: 2.5rem 1.75rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    border-left: 5px solid var(--primary);
    position: relative;
    transition: all 0.3s ease;
}

.sitemap-block:hover {
    box-shadow: 0 10px 50px rgba(0,0,0,0.12);
}

.sitemap-block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px dashed rgba(220, 38, 38, 0.15);
    flex-wrap: wrap;
}

.sitemap-block-icon {
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.sitemap-block h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--dark);
    margin: 0;
    line-height: 1.2;
}

.sitemap-block-count {
    margin-left: auto;
    padding: 0.4rem 0.85rem;
    background: var(--secondary);
    color: var(--dark);
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.15rem;
    background: var(--off-white);
    color: var(--dark);
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
    line-height: 1.3;
    max-width: 100%;
}

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

.chip:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(5px);
    border-left-color: var(--secondary);
}

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

.chip-home {
    background: var(--primary);
    color: var(--white);
    border-left-color: var(--secondary);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

.sub-block {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--off-white);
    border-left: 3px solid var(--secondary);
}

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

.sub-block h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.sub-block h3 i {
    color: var(--primary);
    font-size: 1rem;
}

.sub-block .chip {
    background: var(--white);
    border-left-color: var(--secondary);
    font-size: 0.88rem;
    padding: 0.7rem 1rem;
}

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

.sub-block .chip:hover {
    background: var(--dark);
    color: var(--white);
    border-left-color: var(--secondary);
}

.sub-block .chip:hover i {
    color: var(--secondary);
}

.cta-section {
    padding: 4rem 1.5rem;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: var(--secondary);
    opacity: 0.05;
    border-radius: 50%;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

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

.cta-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    animation: ctaPulse 2s ease infinite;
}

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

footer {
    background: var(--darker);
    color: var(--white);
    padding: 4rem 1.5rem 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

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

.footer-logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.2;
}

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

.footer-links h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-links a i {
    color: var(--primary);
    font-size: 0.85rem;
    width: 16px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .available-badge {
        display: inline-flex;
    }
    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
    .header-cta {
        display: inline-flex;
    }
    .menu-toggle {
        display: none;
    }
}

@media (max-width: 600px) {
    .floating-call span {
        display: none;
    }
    .floating-call {
        padding: 1rem;
    }
    .sitemap-block {
        padding: 1.75rem 1.25rem;
    }
    .sitemap-block-count {
        margin-left: 0;
    }
    .page-hero {
        padding: 150px 1rem 3rem;
    }
}