.menu-check {
    display: none;
}

.menu-icon-close {
    display: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px 10px;
    font-size: 1.4rem;
    line-height: 1;
    color: inherit;
    order: 3;
    margin-left: auto;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .menu-check:checked ~ .menu-toggle .menu-icon-open {
        display: none;
    }
    .menu-check:checked ~ .menu-toggle .menu-icon-close {
        display: inline-block;
    }
    
    .menu-check:checked ~ .nav-menu {
        right: 0 !important;
    }
    
    .navbar.scrolled {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

@media (max-width: 768px) {
    
    .menu-toggle { position: relative; z-index: 1002; color: #fff !important; }
}

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

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

:root {
            --primary: #1E3A5F;
            --primary-dark: #152a45;
            --secondary: #FF6B35;
            --secondary-light: #ff8a5c;
            --transport-express: #e63946;
            --groupage: #f77f00;
            --stockage: #219ebc;
            --preparation: #8ecae6;
            --dark: #0a0f14;
            --light: #f8fafc;
            --gray: #64748b;
            --gray-light: #e2e8f0;
        }

html {
            scroll-behavior: smooth;
        }

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

h1, h2, h3, h4 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

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

.navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
        }

.navbar.scrolled {
            background: rgba(30, 58, 95, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            padding: 8px 0;
        }

.navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

.logo img {
            height: 100px;
            width: auto;
            transition: height 0.3s ease;
        }

.navbar.scrolled .logo img {
            height: 60px;
        }

.logo-text {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--light);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: font-size 0.3s ease;
        }

.navbar.scrolled .logo-text {
            font-size: 1.5rem;
        }

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

.nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

.nav-menu a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
            transition: color 0.3s ease;
        }

.nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }

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

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

.nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

.nav-toggle span {
            width: 25px;
            height: 2px;
            background: var(--light);
            transition: all 0.3s ease;
        }

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

.hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://webflash.pro/storage/generated/13/hero_1769975191_697fad973cf04.webp?v=3') center/cover no-repeat;
            transform: scale(1.1);
            transition: transform 0.5s ease;
        }

.hero:hover .hero-bg {
            transform: scale(1);
        }

.hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(10, 15, 20, 0.95) 0%, rgba(30, 58, 95, 0.8) 50%, rgba(10, 15, 20, 0.9) 100%);
        }

.hero-diagonal {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: var(--dark);
            transform: skewY(-3deg);
            transform-origin: bottom left;
        }

.hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            padding-top: 130px;
        }

.hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 107, 53, 0.2);
            border: 1px solid var(--secondary);
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 25px;
            animation: fadeInUp 0.8s ease;
        }

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

.hero-badge span {
            color: var(--secondary);
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

.hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            line-height: 1.1;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

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

.hero-description {
            font-size: 1.2rem;
            color: var(--gray-light);
            margin-bottom: 40px;
            max-width: 600px;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

.hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s backwards;
        }

.btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            font-family: 'Oswald', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

.btn-primary {
            background: var(--secondary);
            color: var(--light);
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
        }

.btn-primary:hover {
            background: var(--secondary-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
        }

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

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

.hero-stats {
            display: flex;
            gap: 50px;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            animation: fadeInUp 0.8s ease 0.8s backwards;
        }

.stat-item {
            text-align: center;
        }

.stat-number {
            font-family: 'Oswald', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary);
            line-height: 1;
        }

.stat-label {
            font-size: 0.85rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 5px;
        }

.section {
            padding: 100px 0;
            position: relative;
        }

.section-skew {
            position: relative;
        }

.section-skew::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: inherit;
            transform: skewY(-3deg);
            transform-origin: top left;
            z-index: -1;
        }

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

.section-title h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--light);
            margin-bottom: 15px;
        }

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

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

.title-line {
            width: 80px;
            height: 4px;
            background: var(--secondary);
            margin: 20px auto 0;
        }

.services {
            background: var(--primary-dark);
        }

.services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

.services-grid > *:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 100%;
}

.services-grid2 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

.service-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
        }

.service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

.service-card.transport-express::before {
            background: var(--transport-express);
        }

.service-card.groupage::before {
            background: var(--groupage);
        }

.service-card.stockage::before {
            background: var(--stockage);
        }

.service-card.preparation::before {
            background: var(--preparation);
        }

.service-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary);
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
        }

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

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

.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-content {
            padding: 25px;
        }

.service-icon {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            margin-top: -50px;
            position: relative;
            z-index: 5;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

.service-icon-plus {
  width: 94px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: -50px;
  position: relative;
  z-index: 5;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  gap: 10px;
}

.service-card.transport-express .service-icon {
            background: var(--transport-express);
        }

.service-card.groupage .service-icon {
            background: var(--groupage);
        }

.service-card.stockage .service-icon {
            background: var(--stockage);
        }

.service-card.preparation .service-icon {
            background: var(--preparation);
        }

.service-icon i {
            font-size: 1.5rem;
            color: var(--light);
        }

.service-content h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: var(--light);
        }

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

.groupage-section {
            background: var(--dark);
            padding: 80px 0;
        }

.groupage-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

.groupage-content h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            margin-bottom: 30px;
            color: var(--groupage);
        }

.groupage-process {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

.process-step {
            background: rgba(247, 127, 0, 0.1);
            padding: 30px 20px;
            border-radius: 12px;
            border: 1px solid rgba(247, 127, 0, 0.2);
            text-align: center;
        }

.process-step i {
            font-size: 2.5rem;
            color: var(--groupage);
            margin-bottom: 15px;
        }

.process-step h4 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--light);
        }

.process-step p {
            color: #FFF;
            font-size: 0.9rem;
        }

.partner-section {
            background: var(--primary);
            padding: 80px 0;
        }

.partner-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

.partner-content h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            margin-bottom: 20px;
            color: var(--light);
        }

.partner-content h2 span {
            color: var(--secondary);
        }

.partner-form {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
        }

.partner-form h3 {
            font-size: 1.4rem;
            margin-bottom: 30px;
            color: var(--secondary);
        }

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

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

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

.about-content h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: 25px;
        }

.about-content h2 span {
            color: var(--secondary);
        }

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

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

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

.about-feature i {
            width: 45px;
            height: 45px;
            background: rgba(255, 107, 53, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 1.1rem;
            flex-shrink: 0;
        }

.about-feature span {
            font-weight: 500;
            color: var(--light);
        }

.location-highlight {
            background: rgba(255, 107, 53, 0.1);
            padding: 25px;
            border-radius: 8px;
            border-left: 4px solid var(--secondary);
            margin: 30px 0;
        }

.location-highlight h4 {
            color: var(--secondary);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

.location-highlight p {
            color: var(--light);
            font-weight: 500;
        }

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

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

.hours-content h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: 20px;
        }

.hours-content h2 span {
            color: var(--secondary);
        }

.hours-content p {
            color: var(--gray-light);
            margin-bottom: 30px;
        }

.hours-cta {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

.hours-cta .phone {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--secondary);
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            text-decoration: none;
        }

.hours-cta .phone i {
            font-size: 1.2rem;
        }

.express-notice {
            background: rgba(230, 57, 70, 0.2);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid var(--transport-express);
            margin-top: 20px;
        }

.express-notice .notice-title {
            color: var(--transport-express);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

.express-notice p {
            color: var(--light);
            font-size: 0.95rem;
        }

.hours-table {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 40px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

.hours-table h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            text-align: center;
            color: var(--secondary);
        }

.hour-row {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

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

.hour-row .day {
            font-weight: 500;
            color: var(--light);
        }

.hour-row .time {
            color: var(--gray-light);
            font-weight: 600;
        }

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

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

.contact-info {
            padding-right: 40px;
        }

.contact-info h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: 20px;
        }

.contact-info h2 span {
            color: var(--secondary);
        }

.contact-info > p {
            color: var(--gray);
            margin-bottom: 40px;
        }

.contact-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }

.contact-item i {
            width: 55px;
            height: 55px;
            background: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 1.3rem;
            flex-shrink: 0;
        }

.contact-item-content h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--light);
        }

.contact-item-content p,
        .contact-item-content a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

.contact-form-wrapper {
            background: var(--primary-dark);
            padding: 45px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

.contact-form-wrapper h3 {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: var(--light);
        }

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

.form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--light);
            font-size: 0.95rem;
        }

.form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            color: var(--light);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

.form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--secondary);
            background: rgba(255, 107, 53, 0.05);
        }

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

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

.form-group select {
            cursor: pointer;
        }

.form-group select option {
            background: var(--primary-dark);
            color: var(--light);
        }

#contactForm button[type="submit"],
        #partnerForm button[type="submit"] {
            width: 100%;
            padding: 18px;
            background: var(--secondary);
            color: var(--light);
            border: none;
            border-radius: 6px;
            font-family: 'Oswald', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.3s ease;
        }

#contactForm button[type="submit"]:hover,
        #partnerForm button[type="submit"]:hover {
            background: var(--secondary-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

#contactForm button[type="submit"]:disabled,
        #partnerForm button[type="submit"]:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

#formStatus,
        #partnerFormStatus {
            margin-top: 20px;
            text-align: center;
        }

#formStatus p,
        #partnerFormStatus p {
            padding: 15px;
            border-radius: 6px;
        }

.map-section {
            padding: 0;
        }

.map-container {
            position: relative;
        }

.map-container iframe {
            display: block;
            filter: grayscale(100%) contrast(1.1);
            transition: filter 0.5s ease;
        }

.map-container:hover iframe {
            filter: grayscale(0%) contrast(1);
        }

.footer {
            background: var(--primary-dark);
            padding: 60px 0 30px;
        }

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

.footer-brand .logo-text {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

.footer-brand p {
            color: var(--gray);
            margin-bottom: 25px;
            line-height: 1.8;
        }

.footer-social {
            display: flex;
            gap: 15px;
        }

.footer-social a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

.footer-social a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }

.footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            color: var(--light);
        }

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

.footer-links li {
            margin-bottom: 12px;
        }

.footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

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

.footer-links a i {
            font-size: 0.8rem;
            color: var(--secondary);
        }

.footer-contact h4 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            color: var(--light);
        }

.footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            color: var(--gray);
        }

.footer-contact-item i {
            color: var(--secondary);
            margin-top: 3px;
        }

.footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

.footer-bottom p {
            color: var(--gray);
            font-size: 0.9rem;
        }

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

.footer-legal a {
            color: var(--gray);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

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

.zones-intervention {
            background: var(--primary-dark);
        }

.zones-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

.zone-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            padding: 25px 20px;
            text-align: center;
            color: var(--light);
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

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

.zone-card:hover {
            border-color: var(--secondary);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
            color: var(--secondary);
        }

.service-cities {
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.85rem;
            color: var(--gray);
            line-height: 1.8;
        }

.service-cities strong {
            display: block;
            color: var(--light);
            margin-bottom: 6px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-size: 0.8rem;
        }

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

.service-cities a:hover {
            color: var(--secondary-light);
            text-decoration: underline;
        }

.service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 18px;
            padding: 10px 22px;
            background: var(--secondary);
            color: var(--light);
            border-radius: 4px;
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: all 0.3s ease;
        }

.service-link:hover {
            background: var(--secondary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
        }

.modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

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

.modal {
            background: var(--primary-dark);
            border-radius: 12px;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

.modal-header {
            padding: 25px 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

.modal-header h3 {
            font-size: 1.3rem;
            color: var(--light);
        }

.modal-close {
            background: none;
            border: none;
            color: var(--gray);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

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

.modal-body {
            padding: 30px;
        }

.modal-body p {
            color: var(--gray);
            margin-bottom: 15px;
            line-height: 1.7;
        }

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

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

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

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

.counter {
            display: inline-block;
        }

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

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

            .about-grid,
            .hours-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

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

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

@media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 350px;
                height: 100vh;
                background: var(--primary-dark);
                flex-direction: column;
                padding: 100px 40px;
                gap: 20px;
                transition: right 0.3s ease;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
            }

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

            .nav-toggle {
                display: flex;
                z-index: 1001;
            }

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

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

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

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


            .services-grid2 {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                flex-direction: column;
                gap: 30px;
                align-items: flex-start;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons .btn {
                width: 100%;
                justify-content: center;
            }

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

            .hours-table {
                padding: 25px;
            }

            .contact-info {
                padding-right: 0;
            }

            .contact-form-wrapper,
            .partner-form {
                padding: 30px 20px;
            }

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

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                justify-content: center;
            }

            .logo img {
                height: 75px;
            }

            .navbar.scrolled .logo img {
                height: 50px;
            }

            .logo-text {
                font-size: 1.4rem;
            }

            .navbar.scrolled .logo-text {
                font-size: 1.2rem;
            }
        }

@media (max-width: 640px) {
            .section {
                padding: 70px 0;
            }

            .hero-content {
                padding-top: 110px;
            }

            .logo-text {
                font-size: 1.2rem;
            }

            .navbar.scrolled .logo-text {
                font-size: 1rem;
            }

            .service-card {
                margin: 0 -10px;
            }

            .logo img {
                height: 60px;
            }

            .navbar.scrolled .logo img {
                height: 40px;
            }
        }

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 { background: #0a0f14; color: #f8fafc; font-family: 'Inter', sans-serif; line-height: 1.6; }

.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;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #f8fafc;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(10,15,20,0.94) 0%, rgba(30,58,95,0.85) 50%, rgba(10,15,20,0.92) 100%), url('/images/service_1_1769975217_697fadb1b2691.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero::before {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 80px;
    background: #0a0f14;
    transform: skewY(-2deg);
    transform-origin: bottom left;
    z-index: 1;
}

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

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

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

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

.sct-tpl-service-city .sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.88rem;
    margin-bottom: 22px;
    color: #cbd5e1;
}

.sct-tpl-service-city .sct-breadcrumb a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.sct-tpl-service-city .sct-bc-sep { color: #64748b; }

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

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

.sct-tpl-service-city .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.5);
    padding: 7px 16px;
    border-radius: 50px;
    color: #FF6B35;
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.sct-tpl-service-city .sct-hero-text h1 {
    font-size: clamp(2.1rem, 4.5vw, 3.4rem);
    line-height: 1.15;
    margin-bottom: 22px;
}

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

.sct-tpl-service-city .sct-hero-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 32px;
    max-width: 600px;
}

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

.sct-tpl-service-city .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.sct-tpl-service-city .sct-btn-primary {
    background: #FF6B35;
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.sct-tpl-service-city .sct-btn-primary:hover {
    background: #ff8a5c;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

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

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

.sct-tpl-service-city .sct-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sct-tpl-service-city .sct-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 0.92rem;
}

.sct-tpl-service-city .sct-trust-item i { color: #FF6B35; }

.sct-tpl-service-city .sct-hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 35px 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.sct-tpl-service-city .sct-hero-card h3 {
    font-size: 1.25rem;
    margin-bottom: 22px;
    color: #FF6B35;
}

.sct-tpl-service-city .sct-card-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

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

.sct-tpl-service-city .sct-card-line:last-child { border-bottom: none; padding-bottom: 0; }

.sct-tpl-service-city .sct-card-line i {
    width: 38px; height: 38px;
    background: rgba(255,107,53,0.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #FF6B35;
    flex-shrink: 0;
}

.sct-tpl-service-city .sct-card-line-content strong {
    display: block;
    color: #f8fafc;
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.sct-tpl-service-city .sct-card-line-content span {
    color: #94a3b8;
    font-size: 0.88rem;
}

.sct-tpl-service-city .sct-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: #FF6B35;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-card-cta:hover {
    background: #ff8a5c;
    transform: translateY(-2px);
}

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

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

.sct-tpl-service-city .sct-stats-band {
    background: #1E3A5F;
    padding: 60px 0;
}

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

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

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

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

.sct-tpl-service-city .sct-stat-label {
    font-size: 0.85rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 768px) {
    .sct-tpl-service-city .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .sct-tpl-service-city .sct-stat-value { font-size: 2.2rem; }
}

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

.sct-tpl-service-city .sct-section-head {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
}

.sct-tpl-service-city .sct-section-tag {
    display: inline-block;
    background: rgba(255,107,53,0.12);
    color: #FF6B35;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

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

.sct-tpl-service-city .sct-section-title span { color: #FF6B35; }

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

.sct-tpl-service-city .sct-title-line {
    width: 70px;
    height: 4px;
    background: #FF6B35;
    margin: 18px auto 0;
}

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

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

.sct-tpl-service-city .sct-service-card:hover {
    transform: translateY(-8px);
    border-color: #FF6B35;
    box-shadow: 0 20px 40px rgba(255,107,53,0.15);
}

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

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

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

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

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

.sct-tpl-service-city .sct-service-body h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #f8fafc;
}

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

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

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

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

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

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

.sct-tpl-service-city .sct-process-step {
    background: rgba(255,107,53,0.06);
    border: 1px solid rgba(255,107,53,0.2);
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-process-step:hover {
    background: rgba(255,107,53,0.12);
    transform: translateY(-5px);
}

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

.sct-tpl-service-city .sct-process-step i {
    font-size: 2rem;
    color: #FF6B35;
    margin: 8px 0 14px;
}

.sct-tpl-service-city .sct-process-step h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #f8fafc;
}

.sct-tpl-service-city .sct-process-step p {
    color: #94a3b8;
    font-size: 0.88rem;
}

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

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

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

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

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

.sct-tpl-service-city .sct-why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.sct-tpl-service-city .sct-why-icon {
    width: 64px; height: 64px;
    background: rgba(255,107,53,0.15);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}

.sct-tpl-service-city .sct-why-icon i {
    font-size: 1.6rem;
    color: #FF6B35;
}

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

.sct-tpl-service-city .sct-why-card p {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.65;
}

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

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

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

.sct-tpl-service-city .sct-zones-content {
    max-width: 950px;
    margin: 0 auto;
    background: rgba(30,58,95,0.4);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 45px;
}

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

.sct-tpl-service-city .sct-zones-list li {
    background: rgba(255,107,53,0.1);
    border: 1px solid rgba(255,107,53,0.3);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sct-tpl-service-city .sct-zones-list li i { color: #FF6B35; font-size: 0.8rem; }

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

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

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

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

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

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

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

.sct-tpl-service-city .sct-usecase-text h2 span { color: #FF6B35; }

.sct-tpl-service-city .sct-usecase-text p {
    color: #cbd5e1;
    margin-bottom: 18px;
    line-height: 1.8;
}

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

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

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

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

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

.sct-tpl-service-city .sct-engagement-card {
    background: linear-gradient(145deg, rgba(30,58,95,0.5), rgba(10,15,20,0.5));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 35px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-engagement-card:hover {
    border-color: #FF6B35;
    transform: translateY(-6px);
}

.sct-tpl-service-city .sct-engagement-icon {
    width: 70px; height: 70px;
    background: #FF6B35;
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(255,107,53,0.35);
}

.sct-tpl-service-city .sct-engagement-icon i {
    font-size: 1.8rem;
    color: #fff;
}

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

.sct-tpl-service-city .sct-engagement-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

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

.sct-tpl-service-city .sct-local-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,107,53,0.08);
    border-left: 4px solid #FF6B35;
    border-radius: 8px;
    padding: 35px 40px;
}

.sct-tpl-service-city .sct-local-content h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #FF6B35;
}

.sct-tpl-service-city .sct-local-content p {
    color: #f8fafc;
    line-height: 1.8;
}

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

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

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

.sct-tpl-service-city .sct-faq-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sct-tpl-service-city .sct-faq-item:hover { border-color: rgba(255,107,53,0.4); }

.sct-tpl-service-city .sct-faq-item summary {
    cursor: pointer;
    padding: 22px 26px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #f8fafc;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

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

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

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

.sct-tpl-service-city .sct-faq-answer {
    padding: 0 26px 24px;
    color: #cbd5e1;
    line-height: 1.8;
}

.sct-tpl-service-city .sct-maillage-section {
    background: #152a45;
    padding: 70px 0;
}

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

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

.sct-tpl-service-city .sct-maillage-title span { color: #FF6B35; }

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

.sct-tpl-service-city .sct-maillage-list a {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #cbd5e1;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

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

.sct-tpl-service-city .sct-cta-final {
    background: linear-gradient(135deg, #1E3A5F 0%, #FF6B35 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sct-tpl-service-city .sct-cta-final::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

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

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

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

.sct-tpl-service-city .sct-cta-btns .sct-btn-primary {
    background: #fff;
    color: #1E3A5F;
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
}

.sct-tpl-service-city .sct-cta-btns .sct-btn-primary:hover {
    background: #f8fafc;
    color: #0a0f14;
}

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

.sct-tpl-service-city .sct-cta-btns .sct-btn-outline:hover {
    background: #fff;
    color: #1E3A5F;
}

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

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(10,15,20,0.94) 0%, rgba(30,58,95,0.85) 50%, rgba(10,15,20,0.92) 100%), url('/images/service_3_1769975266_697fade29c679.webp') center/cover no-repeat;
    overflow: hidden;
}

.sct-tpl-service-city .sct-hero {
    position: relative;
    padding: 160px 0 90px;
    background: linear-gradient(135deg, rgba(10,15,20,0.94) 0%, rgba(30,58,95,0.85) 50%, rgba(10,15,20,0.92) 100%), url('/images/service_2_1769975239_697fadc78a92e.webp') center/cover no-repeat;
    overflow: hidden;
}

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

.sct-tpl-service-hub { background: var(--dark); color: var(--light); font-family: 'Inter', sans-serif; }

.sct-tpl-service-hub h1, .sct-tpl-service-hub h2, .sct-tpl-service-hub h3, .sct-tpl-service-hub h4 {
    font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}

.sct-tpl-service-hub .sct-breadcrumb-wrap { background: var(--primary-dark); padding: 110px 0 20px; }

.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: var(--gray-light);
}

.sct-tpl-service-hub .sct-breadcrumb a { color: var(--gray-light); text-decoration: none; transition: color .2s; }

.sct-tpl-service-hub .sct-breadcrumb a:hover { color: var(--secondary); }

.sct-tpl-service-hub .sct-breadcrumb .sep { color: var(--gray); }

.sct-tpl-service-hub .sct-breadcrumb .current { color: var(--secondary); font-weight: 500; }

.sct-tpl-service-hub .sct-hero {
    position: relative;
    padding: 60px 0 100px;
    background: var(--primary-dark);
    overflow: hidden;
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,15,20,.92) 0%, rgba(30,58,95,.78) 50%, rgba(10,15,20,.92) 100%),
                url('/images/service_1_1769975217_697fadb1b2691.webp') center/cover no-repeat;
    z-index: 0;
}

.sct-tpl-service-hub .sct-hero-grid {
    position: relative; z-index: 2;
    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: 10px;
    background: rgba(255,107,53,.18); border: 1px solid var(--secondary);
    padding: 8px 20px; border-radius: 50px; margin-bottom: 22px;
    color: var(--secondary); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 500;
}

.sct-tpl-service-hub .sct-hero-text h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.1; color: var(--light); margin-bottom: 22px;
}

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

.sct-tpl-service-hub .sct-hero-subtitle {
    font-size: 1.15rem; color: var(--gray-light); margin-bottom: 32px; max-width: 620px;
}

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

.sct-tpl-service-hub .sct-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 28px; font-family: 'Oswald', sans-serif; font-size: .95rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
    text-decoration: none; border-radius: 4px; transition: all .3s ease; border: none; cursor: pointer;
}

.sct-tpl-service-hub .sct-btn-primary {
    background: var(--secondary); color: var(--light); box-shadow: 0 4px 20px rgba(255,107,53,.4);
}

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

.sct-tpl-service-hub .sct-btn-outline { background: transparent; color: var(--light); border: 2px solid var(--light); }

.sct-tpl-service-hub .sct-btn-outline:hover { background: var(--light); color: var(--dark); }

.sct-tpl-service-hub .sct-hero-card {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px; padding: 32px; backdrop-filter: blur(10px);
}

.sct-tpl-service-hub .sct-hero-card h3 { color: var(--secondary); font-size: 1.2rem; margin-bottom: 20px; }

.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: flex-start; gap: 12px; padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.08); color: var(--gray-light); font-size: .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: var(--secondary); margin-top: 4px; }

.sct-tpl-service-hub .sct-stats-band {
    background: var(--primary); padding: 50px 0; border-top: 1px solid rgba(255,255,255,.06);
}

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

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

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

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

.sct-tpl-service-hub .sct-stat-label {
    font-size: .85rem; color: var(--gray-light); text-transform: uppercase;
    letter-spacing: .1em; margin-top: 8px;
}

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

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

.sct-tpl-service-hub .sct-section-tag {
    display: inline-block; color: var(--secondary); font-size: .85rem;
    text-transform: uppercase; letter-spacing: .15em; font-weight: 600; margin-bottom: 12px;
}

.sct-tpl-service-hub .sct-section-title {
    font-size: clamp(2rem, 4vw, 2.6rem); color: var(--light); margin-bottom: 18px;
}

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

.sct-tpl-service-hub .sct-section-line { width: 80px; height: 4px; background: var(--secondary); margin: 18px 0 30px; }

.sct-tpl-service-hub .sct-intro-section p {
    color: var(--gray-light); font-size: 1.05rem; margin-bottom: 18px; line-height: 1.8;
}

.sct-tpl-service-hub .sct-services-section { background: var(--primary-dark); padding: 90px 0; }

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

.sct-tpl-service-hub .sct-section-head .sct-section-line { margin: 18px auto 0; }

.sct-tpl-service-hub .sct-section-head p { color: var(--gray-light); max-width: 680px; margin: 18px auto 0; }

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

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

.sct-tpl-service-hub .sct-service-card {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px; overflow: hidden; transition: all .4s ease; position: relative;
}

.sct-tpl-service-hub .sct-service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--secondary); transform: scaleX(0); transition: transform .4s ease;
}

.sct-tpl-service-hub .sct-service-card:hover { transform: translateY(-8px); border-color: var(--secondary); box-shadow: 0 20px 40px rgba(255,107,53,.15); }

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

.sct-tpl-service-hub .sct-service-img { height: 200px; overflow: hidden; }

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

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

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

.sct-tpl-service-hub .sct-service-icon {
    width: 56px; height: 56px; border-radius: 8px; background: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    margin-top: -52px; margin-bottom: 18px; position: relative; z-index: 5;
    box-shadow: 0 10px 30px rgba(255,107,53,.35);
}

.sct-tpl-service-hub .sct-service-icon i { font-size: 1.4rem; color: var(--light); }

.sct-tpl-service-hub .sct-service-body h3 { font-size: 1.15rem; color: var(--light); margin-bottom: 12px; }

.sct-tpl-service-hub .sct-service-body p { color: var(--gray-light); font-size: .95rem; line-height: 1.7; }

.sct-tpl-service-hub .sct-processus-section { background: var(--dark); padding: 90px 0; }

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

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

.sct-tpl-service-hub .sct-process-step {
    background: rgba(255,107,53,.05); border: 1px solid rgba(255,107,53,.2);
    border-radius: 10px; padding: 28px 20px; text-align: center; position: relative;
}

.sct-tpl-service-hub .sct-process-num {
    width: 44px; height: 44px; border-radius: 50%; background: var(--secondary);
    color: var(--light); font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}

.sct-tpl-service-hub .sct-process-step h4 { font-size: 1.05rem; color: var(--light); margin-bottom: 10px; }

.sct-tpl-service-hub .sct-process-step p { color: var(--gray-light); font-size: .9rem; line-height: 1.6; }

.sct-tpl-service-hub .sct-why-section { background: var(--primary); padding: 90px 0; }

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

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

.sct-tpl-service-hub .sct-why-card {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px; padding: 32px 24px; transition: all .3s ease;
}

.sct-tpl-service-hub .sct-why-card:hover { transform: translateY(-6px); border-color: var(--secondary); }

.sct-tpl-service-hub .sct-why-icon {
    width: 60px; height: 60px; border-radius: 12px; background: rgba(255,107,53,.18);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}

.sct-tpl-service-hub .sct-why-icon i { font-size: 1.6rem; color: var(--secondary); }

.sct-tpl-service-hub .sct-why-card h3 { font-size: 1.1rem; color: var(--light); margin-bottom: 12px; }

.sct-tpl-service-hub .sct-why-card p { color: var(--gray-light); font-size: .95rem; line-height: 1.7; }

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

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

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

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

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

.sct-tpl-service-hub .sct-usecase-content h2 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); color: var(--light); margin-bottom: 18px; }

.sct-tpl-service-hub .sct-usecase-content h2 span { color: var(--secondary); }

.sct-tpl-service-hub .sct-usecase-content p { color: var(--gray-light); margin-bottom: 18px; line-height: 1.8; }

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

.sct-tpl-service-hub .sct-usecase-list li {
    display: flex; align-items: flex-start; gap: 14px; padding: 12px 0;
    color: var(--gray-light); font-size: .98rem;
}

.sct-tpl-service-hub .sct-usecase-list i {
    color: var(--secondary); margin-top: 4px; flex-shrink: 0;
}

.sct-tpl-service-hub .sct-engagements-section { background: var(--primary-dark); padding: 90px 0; }

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

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

.sct-tpl-service-hub .sct-engagement-card {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px; padding: 36px 28px; text-align: center; transition: all .3s ease;
}

.sct-tpl-service-hub .sct-engagement-card:hover { transform: translateY(-6px); border-color: var(--secondary); }

.sct-tpl-service-hub .sct-engagement-icon {
    width: 70px; height: 70px; border-radius: 50%; background: var(--secondary);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
    box-shadow: 0 10px 30px rgba(255,107,53,.3);
}

.sct-tpl-service-hub .sct-engagement-icon i { font-size: 1.7rem; color: var(--light); }

.sct-tpl-service-hub .sct-engagement-card h3 { font-size: 1.15rem; color: var(--light); margin-bottom: 14px; }

.sct-tpl-service-hub .sct-engagement-card p { color: var(--gray-light); font-size: .95rem; line-height: 1.7; }

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

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

.sct-tpl-service-hub .sct-faq-item {
    background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px; margin-bottom: 14px; overflow: hidden; transition: border-color .3s ease;
}

.sct-tpl-service-hub .sct-faq-item:hover { border-color: var(--secondary); }

.sct-tpl-service-hub .sct-faq-item summary {
    padding: 22px 28px; cursor: pointer; list-style: none;
    font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 1.05rem; color: var(--light);
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
}

.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: var(--secondary); transition: transform .3s ease; font-size: .85rem;
}

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

.sct-tpl-service-hub .sct-faq-answer {
    padding: 0 28px 22px; color: var(--gray-light); line-height: 1.8; font-size: .98rem;
}

.sct-tpl-service-hub .sct-maillage-section { background: var(--primary); padding: 80px 0; }

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

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

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

.sct-tpl-service-hub .sct-maillage-cities a {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px; background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08); border-radius: 6px;
    color: var(--light); text-decoration: none; font-size: .95rem;
    transition: all .25s ease;
}

.sct-tpl-service-hub .sct-maillage-cities a:hover {
    background: rgba(255,107,53,.1); border-color: var(--secondary); color: var(--secondary); transform: translateX(4px);
}

.sct-tpl-service-hub .sct-maillage-cities a i { color: var(--secondary); font-size: .8rem; }

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

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

.sct-tpl-service-hub .sct-maillage-services a {
    display: flex; align-items: center; gap: 14px;
    padding: 20px 22px; background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08); border-radius: 8px;
    color: var(--light); text-decoration: none; font-weight: 500;
    transition: all .25s ease;
}

.sct-tpl-service-hub .sct-maillage-services a:hover {
    background: rgba(255,107,53,.1); border-color: var(--secondary); color: var(--secondary);
}

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

.sct-tpl-service-hub .sct-cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    text-align: center;
}

.sct-tpl-service-hub .sct-cta-final h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--light); margin-bottom: 18px;
}

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

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

.sct-tpl-service-hub .sct-cta-final .sct-btn-primary {
    background: var(--dark); color: var(--light); box-shadow: 0 6px 24px rgba(0,0,0,.3);
}

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

.sct-tpl-service-hub .sct-cta-final .sct-btn-outline { border-color: var(--light); color: var(--light); }

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

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

@media (max-width: 640px) {
    .sct-tpl-service-hub .sct-hero { padding: 40px 0 70px; }
    .sct-tpl-service-hub .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-service-hub .sct-hero-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-stats-grid { grid-template-columns: 1fr; gap: 24px; }
    .sct-tpl-service-hub .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-processus-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-why-grid { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-maillage-cities { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-service-hub .sct-maillage-services { grid-template-columns: 1fr; }
    .sct-tpl-service-hub .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-service-hub .sct-cta-final-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-service-hub .sct-intro-section,
    .sct-tpl-service-hub .sct-services-section,
    .sct-tpl-service-hub .sct-processus-section,
    .sct-tpl-service-hub .sct-why-section,
    .sct-tpl-service-hub .sct-usecase-section,
    .sct-tpl-service-hub .sct-engagements-section,
    .sct-tpl-service-hub .sct-faq-section,
    .sct-tpl-service-hub .sct-maillage-section { padding: 60px 0; }
}

.sct-tpl-service-hub .sct-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,15,20,.92) 0%, rgba(30,58,95,.78) 50%, rgba(10,15,20,.92) 100%),
                url('/images/service_3_1769975266_697fade29c679.webp') center/cover no-repeat;
    z-index: 0;
}

.sct-tpl-zone .sct-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(10,15,20,0.92) 0%, rgba(30,58,95,0.78) 50%, rgba(10,15,20,0.9) 100%), url('/images/service_1_1769975217_697fadb1b2691.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.sct-tpl-zone .sct-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 100px;
    background: var(--dark);
    transform: skewY(-3deg);
    transform-origin: bottom left;
}

.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: rgba(255,255,255,0.8);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

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

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

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

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

.sct-tpl-zone .sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,107,53,0.2);
    border: 1px solid var(--secondary);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sct-tpl-zone .sct-hero-text h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.1;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

.sct-tpl-zone .sct-hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 620px;
}

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

.sct-tpl-zone .sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sct-tpl-zone .sct-btn-primary {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255,107,53,0.4);
}

.sct-tpl-zone .sct-btn-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,107,53,0.5);
}

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

.sct-tpl-zone .sct-btn-outline:hover {
    background: #fff;
    color: var(--dark);
}

.sct-tpl-zone .sct-hero-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 35px;
}

.sct-tpl-zone .sct-hero-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 22px;
    color: var(--secondary);
    text-transform: uppercase;
}

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

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

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

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

.sct-tpl-zone .sct-stats-band {
    background: var(--primary);
    padding: 50px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.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: 15px;
}

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

.sct-tpl-zone .sct-stat-label {
    font-size: 0.8rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

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

.sct-tpl-zone .sct-section-header {
    text-align: center;
    margin-bottom: 55px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sct-tpl-zone .sct-section-tag {
    display: inline-block;
    color: var(--secondary);
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
}

.sct-tpl-zone .sct-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
    color: #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sct-tpl-zone .sct-section-title span { color: var(--secondary); }

.sct-tpl-zone .sct-section-line {
    width: 70px;
    height: 4px;
    background: var(--secondary);
    margin: 18px auto 0;
}

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

.sct-tpl-zone .sct-intro-content p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

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

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

.sct-tpl-zone .sct-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 18px 40px rgba(255,107,53,0.15);
}

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

.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-content {
    padding: 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sct-tpl-zone .sct-service-icon {
    width: 56px;
    height: 56px;
    background: var(--secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -52px;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(255,107,53,0.35);
    color: #fff;
    font-size: 1.4rem;
}

.sct-tpl-zone .sct-service-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #fff;
    text-transform: uppercase;
}

.sct-tpl-zone .sct-service-content p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 18px;
}

.sct-tpl-zone .sct-service-link {
    color: var(--secondary);
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

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

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

.sct-tpl-zone .sct-zone-pill {
    background: rgba(255,107,53,0.08);
    border: 1px solid rgba(255,107,53,0.25);
    padding: 16px 18px;
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-zone-pill:hover {
    background: rgba(255,107,53,0.18);
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.sct-tpl-zone .sct-zone-pill i {
    color: var(--secondary);
    font-size: 0.95rem;
}

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

.sct-tpl-zone .sct-usecase-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 45px;
    max-width: 950px;
    margin: 0 auto;
    border-left: 4px solid var(--secondary);
}

.sct-tpl-zone .sct-usecase-card h3 {
    font-family: 'Oswald', sans-serif;
    color: var(--secondary);
    font-size: 1.4rem;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.sct-tpl-zone .sct-usecase-card p {
    color: var(--gray-light);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.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: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 38px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-engagement-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.sct-tpl-zone .sct-engagement-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,107,53,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: var(--secondary);
    font-size: 1.7rem;
}

.sct-tpl-zone .sct-engagement-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.sct-tpl-zone .sct-engagement-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.sct-tpl-zone .sct-local-spec-card {
    background: rgba(255,107,53,0.08);
    border-left: 4px solid var(--secondary);
    padding: 40px;
    border-radius: 8px;
    max-width: 950px;
    margin: 0 auto;
}

.sct-tpl-zone .sct-local-spec-card h3 {
    font-family: 'Oswald', sans-serif;
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.sct-tpl-zone .sct-local-spec-card p {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

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

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

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

.sct-tpl-zone .sct-faq-item:hover { border-color: rgba(255,107,53,0.3); }

.sct-tpl-zone .sct-faq-item summary {
    padding: 22px 26px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    list-style: none;
}

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

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

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

.sct-tpl-zone .sct-faq-item-body {
    padding: 0 26px 24px;
    color: var(--gray);
    font-size: 0.97rem;
    line-height: 1.75;
}

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

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

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

.sct-tpl-zone .sct-maillage-link {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px 18px;
    border-radius: 6px;
    color: var(--gray-light);
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.sct-tpl-zone .sct-maillage-link:hover {
    background: rgba(255,107,53,0.15);
    border-color: var(--secondary);
    color: #fff;
}

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

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

.sct-tpl-zone .sct-cta-final::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 60%);
    pointer-events: none;
}

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

.sct-tpl-zone .sct-cta-final h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    color: #fff;
    margin-bottom: 22px;
    text-transform: uppercase;
}

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

.sct-tpl-zone .sct-cta-final p {
    color: var(--gray-light);
    font-size: 1.08rem;
    margin-bottom: 35px;
    line-height: 1.7;
}

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

@media (max-width: 992px) {
    .sct-tpl-zone .sct-hero { padding: 150px 0 90px; }
    .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: 25px; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-zones-grid { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-zone .sct-engagements-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .sct-tpl-zone .sct-maillage-grid { grid-template-columns: repeat(3, 1fr); }
    .sct-tpl-zone .sct-usecase-card, .sct-tpl-zone .sct-local-spec-card { padding: 32px; }
}

@media (max-width: 640px) {
    .sct-tpl-zone .sct-hero { padding: 130px 0 70px; }
    .sct-tpl-zone .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-tpl-zone .sct-hero-btns { flex-direction: column; }
    .sct-tpl-zone .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-tpl-zone .sct-hero-card { padding: 26px; }
    .sct-tpl-zone .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .sct-tpl-zone .sct-stat-item { padding: 8px; }
    .sct-tpl-zone .sct-services-grid { grid-template-columns: 1fr; }
    .sct-tpl-zone .sct-zones-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-maillage-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-tpl-zone .sct-intro-section, .sct-tpl-zone .sct-services-section, .sct-tpl-zone .sct-zones-section, .sct-tpl-zone .sct-usecase-section, .sct-tpl-zone .sct-engagements-section, .sct-tpl-zone .sct-local-spec, .sct-tpl-zone .sct-faq-section, .sct-tpl-zone .sct-cta-final { padding: 65px 0; }
    .sct-tpl-zone .sct-maillage-section { padding: 55px 0; }
    .sct-tpl-zone .sct-usecase-card, .sct-tpl-zone .sct-local-spec-card { padding: 26px; }
    .sct-tpl-zone .sct-faq-item summary { padding: 18px 20px; font-size: 0.95rem; }
    .sct-tpl-zone .sct-faq-item-body { padding: 0 20px 20px; }
    .sct-tpl-zone .sct-cta-final-btns { flex-direction: column; }
    .sct-tpl-zone .sct-cta-final-btns > * { width: 100%; justify-content: center; }
}

:root {
    --primary: #1E3A5F;
    --primary-dark: #152a45;
    --secondary: #FF6B35;
    --secondary-light: #ff8a5c;
    --transport-express: #e63946;
    --groupage: #f77f00;
    --stockage: #219ebc;
    --preparation: #8ecae6;
    --distribution: #06d6a0;
    --national: #9d4edd;
    --dark: #0a0f14;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #e2e8f0;
}

.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    background: rgba(30, 58, 95, 0.95);
    backdrop-filter: blur(20px);
}

.logo img {
    height: 70px;
    width: auto;
    transition: height 0.3s ease;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s ease;
        z-index: 1001;
    }
}

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

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(33, 158, 188, 0.12) 0%, transparent 40%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--dark);
    transform: skewY(-2deg);
    transform-origin: bottom right;
}

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

.page-hero .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.4);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
}

.page-hero .breadcrumb a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-hero .breadcrumb a:hover { color: var(--secondary); }

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--light);
}

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

.page-hero p {
    font-size: 1.2rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

.title-line-hero {
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 25px auto 0;
}

.sitemap-section {
    padding: 80px 0;
    position: relative;
}

.sitemap-section:nth-child(odd) { background: var(--dark); }

.sitemap-section:nth-child(even) { background: var(--primary-dark); }

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

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

.block-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.block-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--light);
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
}

.block-header-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--light);
    margin-bottom: 5px;
}

.block-header-text h2 span { color: var(--secondary); }

.block-header-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--light);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.3s ease;
    line-height: 1.3;
}

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

.chip:hover {
    background: rgba(255, 107, 53, 0.12);
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

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

.service-cat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-cat::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--secondary);
}

.service-cat[data-color="distribution"]::before { background: var(--distribution); }

.service-cat[data-color="preparation"]::before { background: var(--preparation); }

.service-cat[data-color="stockage"]::before { background: var(--stockage); }

.service-cat[data-color="groupage"]::before { background: var(--groupage); }

.service-cat[data-color="express"]::before { background: var(--transport-express); }

.service-cat[data-color="national"]::before { background: var(--national); }

.service-cat:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-cat-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}

.service-cat-badge {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-cat[data-color="distribution"] .service-cat-badge { background: var(--distribution); }

.service-cat[data-color="preparation"] .service-cat-badge { background: var(--preparation); color: var(--primary-dark); }

.service-cat[data-color="stockage"] .service-cat-badge { background: var(--stockage); }

.service-cat[data-color="groupage"] .service-cat-badge { background: var(--groupage); }

.service-cat[data-color="express"] .service-cat-badge { background: var(--transport-express); }

.service-cat[data-color="national"] .service-cat-badge { background: var(--national); }

.service-cat-header h3 {
    font-size: 1.25rem;
    color: var(--light);
}

.footer {
    background: var(--primary-dark);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

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

.footer-links a i {
    font-size: 0.7rem;
    color: var(--secondary);
}

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

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--gray);
    font-size: 0.93rem;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--secondary);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .page-hero { padding: 140px 0 80px; }
    .sitemap-section { padding: 60px 0; }
    .block-header { flex-direction: column; align-items: flex-start; gap: 15px; }
    .chip { padding: 10px 18px; font-size: 0.88rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .service-cat { padding: 22px; }
}

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

.sitemap-block { animation: fadeInUp 0.6s ease backwards; }

.sitemap-block:nth-child(2) { animation-delay: 0.1s; }

.sitemap-block:nth-child(3) { animation-delay: 0.2s; }