:root {
            --primary: #006B38;
            --secondary: #FFF;
            --tertiary: #9E1515;
            --light: #F8FAF9;
            --dark: #1A1A1A;
            --gray: #6C757D;
            --white: #FFFFFF;
        }

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

html {
            scroll-behavior: smooth;
        }

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

h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

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

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

header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }

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

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

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

.logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            transition: color 0.4s ease;
        }

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

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

nav a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
        }

header.scrolled nav a {
            color: var(--primary);
        }

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

nav a:hover::after {
            width: 100%;
        }

.nav-cta {
            background: var(--secondary);
            color: var(--dark) !important;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

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

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

.mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

.mobile-toggle span {
            width: 28px;
            height: 3px;
            background: var(--white);
            transition: all 0.3s ease;
        }

header.scrolled .mobile-toggle span {
            background: var(--primary);
        }

.hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(0, 107, 56, 0.9) 0%, rgba(205, 33, 42, 0.85) 100%),
                        url('https://webflash.pro/storage/generated/22/hero_1770141891_698238c39d10d.webp?v=1') center/cover no-repeat;
            display: flex;
            align-items: flex-end;
            padding: 0 0 80px 0;
            position: relative;
            overflow: hidden;
        }

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

.hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
        }

.hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(212, 184, 82, 0.2);
            border: 1px solid var(--secondary);
            padding: 8px 20px;
            border-radius: 50px;
            color: var(--secondary);
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 30px;
            opacity: 1;
        }

.hero h1 {
            font-size: clamp(3rem, 10vw, 8rem);
            color: var(--white);
            line-height: 0.95;
            margin-bottom: 30px;
            opacity: 1;
        }

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

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

.hero-actions {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            opacity: 1;
        }

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

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

.btn-primary:hover {
            background: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 184, 82, 0.3);
        }

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

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

.hero-stats {
            position: absolute;
            right: 60px;
            bottom: 80px;
            display: flex;
            flex-direction: column;
            gap: 30px;
            opacity: 1;
        }

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

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

.stat-label {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

section {
            padding: 100px 0;
        }

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

.section-tag {
            display: inline-block;
            color: var(--secondary);
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 15px;
        }

.section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: var(--primary);
            margin-bottom: 20px;
        }

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

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

.services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 280px);
            gap: 20px;
        }

.service-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
        }

.service-card:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
        }

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

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

.service-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.95) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            transition: all 0.4s ease;
        }

.service-card:hover .service-overlay {
            background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.98) 100%);
        }

.service-icon {
            width: 50px;
            height: 50px;
            background: var(--secondary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 1.2rem;
            color: var(--dark);
            transition: transform 0.3s ease;
        }

.service-card:hover .service-icon {
            transform: translateY(-5px);
        }

.service-card h3 {
            color: var(--white);
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
        }

.service-card:nth-child(1) h3 {
            font-size: 1.8rem;
        }

.service-desc {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

.service-card:hover .service-desc {
            opacity: 1;
            transform: translateY(0);
        }

.service-border {
            position: absolute;
            inset: 0;
            border: 2px solid transparent;
            border-radius: 20px;
            transition: border-color 0.3s ease;
            pointer-events: none;
        }

.service-card:hover .service-border {
            border-color: var(--secondary);
        }

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

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

.about-image {
            position: relative;
        }

.about-image img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            border-radius: 20px;
        }

.about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--secondary);
            border-radius: 20px;
            z-index: -1;
        }

.about-experience {
            position: absolute;
            bottom: 40px;
            right: -40px;
            background: var(--primary);
            color: var(--white);
            padding: 30px 40px;
            border-radius: 20px;
            text-align: center;
        }

.exp-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--secondary);
            line-height: 1;
        }

.exp-text {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 5px;
        }

.about-content h2 {
            font-size: 2.8rem;
            margin-bottom: 25px;
        }

.about-text {
            color: var(--gray);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

.about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 40px;
        }

.feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

.feature-icon {
            width: 45px;
            height: 45px;
            background: var(--tertiary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            flex-shrink: 0;
        }

.feature-text h4 {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 5px;
        }

.feature-text p {
            font-size: 0.85rem;
            color: var(--gray);
        }

.gallery {
            background: var(--primary);
            padding: 100px 0;
        }

.gallery .section-tag,
        .gallery .section-title,
        .gallery .section-subtitle {
            color: var(--white);
        }

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

.gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

.gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
        }

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

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

.gallery-hover {
            position: absolute;
            inset: 0;
            background: rgba(212, 184, 82, 0);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

.gallery-item:hover .gallery-hover {
            background: rgba(212, 184, 82, 0.85);
        }

.gallery-hover i {
            font-size: 2rem;
            color: var(--dark);
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.3s ease;
        }

.gallery-item:hover .gallery-hover i {
            opacity: 1;
            transform: scale(1);
        }

.testimonials {
            background: var(--light);
            padding: 100px 0;
        }

.testimonials-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
            flex-wrap: wrap;
            gap: 30px;
        }

.google-rating {
            display: flex;
            align-items: center;
            gap: 15px;
            background: var(--white);
            padding: 20px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 2px solid rgba(0, 107, 56, 0.1);
        }

.google-icon {
            font-size: 2.5rem;
            color: #4285F4;
        }

.google-info {
            text-align: left;
        }

.google-stars {
            color: #FBBC04;
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

.google-score {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
        }

.google-count {
            font-size: 0.85rem;
            color: var(--gray);
        }

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

.testimonial-card {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            border-left: 4px solid var(--secondary);
        }

.testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

.testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 6rem;
            font-family: 'Playfair Display', serif;
            color: rgba(212, 184, 82, 0.15);
            line-height: 1;
        }

.testimonial-stars {
            color: #FBBC04;
            font-size: 1rem;
            margin-bottom: 20px;
        }

.testimonial-text {
            font-size: 1rem;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

.testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

.author-avatar {
            width: 50px;
            height: 50px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--dark);
            font-size: 1.2rem;
        }

.author-info h4 {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 3px;
        }

.author-info span {
            font-size: 0.8rem;
            color: var(--gray);
        }

.testimonials-cta {
            text-align: center;
            margin-top: 50px;
        }

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

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

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

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

.hours-visual {
            position: relative;
        }

.hours-card {
            background: var(--primary);
            border-radius: 25px;
            padding: 50px;
            color: var(--white);
            border: 3px solid var(--secondary);
        }

.hours-card h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--secondary);
        }

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

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

.hour-day {
            font-weight: 500;
            font-size: 1rem;
        }

.hour-time {
            font-weight: 600;
            color: var(--secondary);
        }

.hour-closed {
            color: rgba(255, 255, 255, 0.4);
        }

.hours-decoration {
            position: absolute;
            top: -30px;
            right: -30px;
            width: 120px;
            height: 120px;
            background: linear-gradient(45deg, var(--secondary), var(--tertiary));
            border-radius: 20px;
            z-index: -1;
        }

.hours-info h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
        }

.hours-text {
            color: var(--gray);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

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

.contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
        }

.contact-icon {
            width: 60px;
            height: 60px;
            background: var(--tertiary);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 1.3rem;
            border: 2px solid rgba(212, 184, 82, 0.3);
        }

.contact-details h4 {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            margin-bottom: 5px;
        }

.contact-details a,
        .contact-details p {
            color: var(--gray);
            text-decoration: none;
            font-size: 0.95rem;
        }

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

.contact {
            background: var(--light);
            padding: 100px 0;
        }

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

.contact-form-wrapper {
            background: var(--white);
            padding: 50px;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            border-top: 4px solid var(--secondary);
        }

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

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

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

.form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #E9ECEF;
            border-radius: 12px;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

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

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

.form-submit {
            width: 100%;
            padding: 18px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

.form-submit:hover {
            background: var(--secondary);
            color: var(--dark);
        }

#formStatus p {
            margin-top: 15px;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
        }

.contact-map {
            border-radius: 25px;
            overflow: hidden;
            height: 100%;
            min-height: 500px;
            border: 3px solid var(--secondary);
        }

.contact-map iframe {
            width: 100%;
            height: 100%;
        }

.service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 15px;
            padding: 10px 20px;
            background: var(--secondary);
            color: var(--dark);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            align-self: flex-start;
        }

.service-link:hover {
            background: var(--tertiary);
            color: var(--white);
            transform: translateX(4px);
        }

.services-cities {
            margin-top: 60px;
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--secondary);
        }

.services-cities h3 {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 25px;
        }

.service-cities {
            margin-bottom: 18px;
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.8;
        }

.service-cities:last-child {
            margin-bottom: 0;
        }

.service-cities strong {
            color: var(--primary);
            font-weight: 600;
        }

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

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

.zones-intervention {
            background: var(--white);
            padding: 100px 0;
        }

.zones-intro {
            color: var(--gray);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 700px;
        }

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

.zone-card {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 25px 30px;
            background: var(--light);
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--secondary);
            color: var(--primary);
            text-decoration: none;
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

.zone-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            border-left-color: var(--tertiary);
            color: var(--tertiary);
            background: var(--white);
        }

.zone-card i {
            color: var(--secondary);
            font-size: 1.4rem;
            transition: color 0.3s ease;
        }

.zone-card:hover i {
            color: var(--tertiary);
        }

@media (max-width: 768px) {
            .services-cities {
                padding: 25px;
            }
            .service-link {
                font-size: 0.8rem;
                padding: 8px 16px;
            }
        }

footer {
            background: var(--dark);
            color: var(--white);
            padding: 80px 0 30px;
        }

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

.footer-brand .logo-text {
            font-size: 1.8rem;
            margin-bottom: 20px;
            display: block;
            color: var(--secondary);
        }

.footer-brand p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
            margin-bottom: 25px;
        }

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

.footer-social a {
            width: 45px;
            height: 45px;
            background: rgba(212, 184, 82, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            transition: all 0.3s ease;
        }

.footer-social a:hover {
            background: var(--secondary);
            color: var(--dark);
        }

.footer-col h4 {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 25px;
            color: var(--secondary);
        }

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

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

.footer-col ul a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

.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: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

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

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

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

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

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

.modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border: none;
            background: var(--light);
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

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

.modal-content h2 {
            margin-bottom: 30px;
            font-size: 1.8rem;
        }

.modal-content h3 {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            margin-top: 20px;
            margin-bottom: 8px;
            color: var(--secondary);
        }

.modal-content p {
            color: var(--gray);
            margin-bottom: 5px;
        }

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

.lightbox.active {
            display: flex;
        }

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

.lightbox-close {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            cursor: pointer;
            color: var(--white);
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

.lightbox-close:hover {
            background: var(--secondary);
            color: var(--dark);
        }

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

.reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

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

.counter {
            display: inline-block;
        }

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

            .service-card:nth-child(1) {
                grid-column: span 2;
                grid-row: span 1;
                height: 350px;
            }

            .service-card {
                height: 280px;
            }

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

            .about-experience {
                right: 20px;
            }

            .hero-stats {
                display: none;
            }

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

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

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

@media (max-width: 768px) {
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 350px;
                height: 100vh;
                background: var(--primary);
                flex-direction: column;
                justify-content: center;
                gap: 30px;
                transition: right 0.4s ease;
                padding: 40px;
            }

            nav.active {
                right: 0;
            }

            nav a {
                color: var(--white) !important;
                font-size: 1.2rem;
            }

            .mobile-toggle {
                display: flex;
            }

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

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

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

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

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

            .about-image::before {
                display: none;
            }

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

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

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

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

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

            .hours-card {
                padding: 30px;
            }

            .testimonials-header {
                flex-direction: column;
                align-items: flex-start;
            }
        }

@media (max-width: 480px) {
            .hero h1 {
                font-size: 2.5rem;
            }

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

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

            section {
                padding: 60px 0;
            }

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

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-section { padding: 90px 0; }

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

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

.sct-section-tag {
            display: inline-block;
            color: var(--tertiary, #9E1515);
            font-weight: 600;
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 14px;
        }

.sct-section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.9rem, 4.2vw, 3rem);
            color: var(--primary, #006B38);
            margin-bottom: 18px;
            line-height: 1.15;
        }

.sct-section-subtitle {
            color: #6C757D;
            font-size: 1.05rem;
            max-width: 720px;
            line-height: 1.7;
        }

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

.sct-section-header .sct-section-subtitle { margin: 0 auto; }

.sct-hero {
            position: relative;
            padding: 160px 0 90px;
            background:
                linear-gradient(135deg, rgba(0, 107, 56, 0.92) 0%, rgba(158, 21, 21, 0.82) 100%),
                url('/images/hero_1770141891_698238c39d10d.webp') center/cover no-repeat;
            color: #fff;
            overflow: hidden;
        }

.sct-hero::before {
            content: '';
            position: absolute;
            top: 0; right: 0;
            width: 40%; height: 100%;
            background: #fff;
            opacity: 0.08;
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
            pointer-events: none;
        }

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

.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: rgba(255,255,255,0.85);
        }

.sct-breadcrumb a { color: #fff; text-decoration: none; opacity: 0.85; }

.sct-breadcrumb a:hover { opacity: 1; text-decoration: underline; }

.sct-breadcrumb .sct-bc-sep { opacity: 0.55; }

.sct-breadcrumb .sct-bc-current { color: #fff; font-weight: 600; }

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

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

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

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

.sct-hero-badges span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.3);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 500;
            color: #fff;
        }

.sct-hero-badges i { color: #fff; }

.sct-hero-text h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4.6vw, 3.5rem);
            line-height: 1.1;
            margin-bottom: 22px;
            color: #fff;
        }

.sct-hero-text h1 strong { color: #fff; font-weight: 700; }

.sct-hero-subtitle {
            font-size: 1.1rem;
            line-height: 1.7;
            color: rgba(255,255,255,0.92);
            margin-bottom: 32px;
            max-width: 640px;
        }

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

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

.sct-btn-primary { background: #fff; color: #006B38; }

.sct-btn-primary:hover { background: #f8f8f8; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }

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

.sct-btn-outline:hover { background: #fff; color: #006B38; border-color: #fff; }

.sct-btn-dark { background: #006B38; color: #fff; }

.sct-btn-dark:hover { background: #9E1515; color: #fff; transform: translateY(-2px); }

.sct-hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            color: rgba(255,255,255,0.9);
            font-size: 0.9rem;
        }

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

.sct-hero-trust i { color: #fff; }

.sct-hero-card {
            background: rgba(255,255,255,0.97);
            color: #1A1A1A;
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.3);
            border-top: 4px solid #9E1515;
        }

.sct-hero-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.35rem;
            color: #006B38;
            margin-bottom: 20px;
        }

.sct-hero-card-rows { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }

.sct-hero-card-row {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding-bottom: 14px;
            border-bottom: 1px solid #eee;
        }

.sct-hero-card-row:last-child { border-bottom: none; padding-bottom: 0; }

.sct-hero-card-row i {
            width: 38px; height: 38px;
            background: rgba(0,107,56,0.1);
            color: #006B38;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 0.95rem;
        }

.sct-hero-card-row strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; color: #006B38; margin-bottom: 3px; }

.sct-hero-card-row span { color: #6C757D; font-size: 0.95rem; }

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

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

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

.sct-stats-band {
            background: #1A1A1A;
            padding: 50px 0;
            color: #fff;
        }

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

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

.sct-stat-value {
            font-family: 'Playfair Display', serif;
            font-size: 2.6rem;
            color: #fff;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 8px;
        }

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

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

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

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

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

.sct-intro-content p {
            font-size: 1.05rem;
            line-height: 1.85;
            color: #4A4A4A;
            margin-bottom: 22px;
        }

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

.sct-intro-content strong { color: #006B38; font-weight: 600; }

.sct-services-section { background: #F8FAF9; }

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

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

.sct-service-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            display: flex;
            flex-direction: column;
        }

.sct-service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }

.sct-service-card-img {
            width: 100%;
            height: 220px;
            overflow: hidden;
            background: #eee;
        }

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

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

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

.sct-service-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.35rem;
            color: #006B38;
            margin-bottom: 12px;
        }

.sct-service-card p { color: #6C757D; line-height: 1.7; font-size: 0.96rem; }

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

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

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

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

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

.sct-processus-step {
            position: relative;
            background: #F8FAF9;
            border-radius: 16px;
            padding: 30px 22px;
            text-align: center;
            border-top: 3px solid #006B38;
        }

.sct-step-num {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            width: 34px; height: 34px;
            background: #9E1515;
            color: #fff;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
        }

.sct-step-icon {
            width: 56px; height: 56px;
            background: rgba(0,107,56,0.1);
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #006B38;
            font-size: 1.4rem;
            margin: 10px auto 18px;
        }

.sct-processus-step h3 {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 1.05rem;
            color: #1A1A1A;
            margin-bottom: 10px;
        }

.sct-processus-step p { color: #6C757D; font-size: 0.9rem; line-height: 1.6; }

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

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

.sct-why-section { background: #F8FAF9; }

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

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

.sct-why-card {
            background: #fff;
            padding: 32px 26px;
            border-radius: 16px;
            text-align: left;
            box-shadow: 0 6px 24px rgba(0,0,0,0.05);
            border-left: 3px solid #9E1515;
            transition: transform 0.3s ease;
        }

.sct-why-card:hover { transform: translateY(-4px); }

.sct-why-icon {
            width: 52px; height: 52px;
            background: #006B38;
            color: #fff;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin-bottom: 18px;
        }

.sct-why-card h3 {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            color: #1A1A1A;
            margin-bottom: 10px;
        }

.sct-why-card p { color: #6C757D; font-size: 0.94rem; line-height: 1.7; }

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

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

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

.sct-zones-wrapper {
            background: linear-gradient(135deg, #006B38 0%, #00552d 100%);
            color: #fff;
            border-radius: 22px;
            padding: 50px;
            border: 2px solid rgba(255,255,255,0.1);
        }

.sct-zones-wrapper h2 { color: #fff; margin-bottom: 14px; }

.sct-zones-wrapper .sct-section-subtitle { color: rgba(255,255,255,0.8); margin-bottom: 30px; }

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

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

.sct-zones-list li {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 10px;
            padding: 12px 16px;
            font-size: 0.92rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

.sct-zones-list li i { color: #fff; font-size: 0.85rem; }

@media (max-width: 992px) { .sct-zones-list { grid-template-columns: repeat(2, 1fr); } .sct-zones-wrapper { padding: 36px; } }

@media (max-width: 480px) { .sct-zones-list { grid-template-columns: 1fr; } .sct-zones-wrapper { padding: 28px; } }

.sct-usecase-section { background: #F8FAF9; }

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

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

.sct-usecase-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
        }

.sct-usecase-image img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            display: block;
        }

.sct-usecase-content p {
            color: #4A4A4A;
            font-size: 1.02rem;
            line-height: 1.8;
            margin-bottom: 18px;
        }

.sct-usecase-content strong { color: #006B38; }

@media (max-width: 992px) {
            .sct-usecase-grid { grid-template-columns: 1fr; gap: 40px; }
            .sct-usecase-image img { height: 340px; }
        }

.sct-engagements-section { background: #fff; }

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

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

.sct-engagement-card {
            background: #F8FAF9;
            padding: 36px 30px;
            border-radius: 18px;
            text-align: center;
            border-top: 4px solid #006B38;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

.sct-engagement-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,0.08); }

.sct-engagement-icon {
            width: 70px; height: 70px;
            background: #006B38;
            color: #fff;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            margin-bottom: 20px;
        }

.sct-engagement-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: #006B38;
            margin-bottom: 12px;
        }

.sct-engagement-card p { color: #6C757D; line-height: 1.7; font-size: 0.96rem; }

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

.sct-local-spec-section { background: #F8FAF9; }

.sct-local-spec-wrapper {
            background: #fff;
            border-radius: 20px;
            padding: 44px;
            border-left: 5px solid #9E1515;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            max-width: 980px;
            margin: 0 auto;
        }

.sct-local-spec-wrapper p { color: #4A4A4A; line-height: 1.8; font-size: 1rem; margin-bottom: 14px; }

.sct-local-spec-wrapper p:last-child { margin-bottom: 0; }

.sct-local-spec-wrapper strong { color: #006B38; }

@media (max-width: 640px) { .sct-local-spec-wrapper { padding: 28px; } }

.sct-faq-section { background: #fff; }

.sct-faq-wrapper { max-width: 880px; margin: 0 auto; }

.sct-faq-item {
            background: #F8FAF9;
            border-radius: 14px;
            margin-bottom: 14px;
            overflow: hidden;
            border: 1px solid #eee;
        }

.sct-faq-question {
            width: 100%;
            padding: 20px 24px;
            background: transparent;
            border: none;
            text-align: left;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 1.02rem;
            color: #1A1A1A;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

.sct-faq-question i { color: #006B38; transition: transform 0.3s ease; flex-shrink: 0; }

.sct-faq-item.sct-open .sct-faq-question i { transform: rotate(45deg); }

.sct-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 24px;
            color: #6C757D;
            line-height: 1.8;
            font-size: 0.96rem;
        }

.sct-faq-item.sct-open .sct-faq-answer { max-height: 500px; padding: 0 24px 22px; }

.sct-maillage-section { background: #F8FAF9; padding: 60px 0; }

.sct-maillage-section + .sct-maillage-section { padding-top: 0; }

.sct-maillage-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: #006B38;
            margin-bottom: 22px;
            text-align: center;
        }

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

.sct-maillage-list li a {
            display: inline-block;
            background: #fff;
            color: #006B38;
            padding: 9px 18px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            border: 1px solid rgba(0,107,56,0.2);
            transition: all 0.3s ease;
        }

.sct-maillage-list li a:hover { background: #006B38; color: #fff; border-color: #006B38; }

.sct-cta-final {
            background: linear-gradient(135deg, #006B38 0%, #9E1515 100%);
            color: #fff;
            padding: 80px 0;
            text-align: center;
        }

.sct-cta-final h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3.6vw, 2.6rem);
            color: #fff;
            margin-bottom: 16px;
        }

.sct-cta-final p {
            color: rgba(255,255,255,0.9);
            font-size: 1.05rem;
            max-width: 640px;
            margin: 0 auto 30px;
            line-height: 1.7;
        }

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

@media (max-width: 640px) {
            .sct-cta-final-btns { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
            .sct-cta-final-btns > * { width: 100%; justify-content: center; }
        }

.sct-why-section.sct-section { background: #F8FAF9 !important; }

.sct-why-section .sct-section-tag { color: var(--tertiary, #9E1515) !important; }

.sct-why-section .sct-section-title { color: var(--primary, #006B38) !important; }

.sct-why-section .sct-section-subtitle { color: #6C757D !important; }

.sct-page-wrapper { padding-top: 100px; }

.sct-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow-wrap: anywhere;
    padding: 20px 0;
    font-size: 0.9rem;
    color: var(--gray);
}

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

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

.sct-breadcrumb span { color: var(--gray); }

.sct-breadcrumb .sct-current { color: var(--dark); font-weight: 600; }

.sct-hero {
    background: linear-gradient(135deg, rgba(0, 107, 56, 0.92) 0%, rgba(158, 21, 21, 0.85) 100%),
                url('/images/hero_1770141891_698238c39d10d.webp') center/cover no-repeat;
    padding: 80px 0 100px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.sct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.sct-hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 25px;
}

.sct-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}

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

.sct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.sct-btn-primary:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,255,255,0.2); }

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

.sct-btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.sct-hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 35px;
}

.sct-hero-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

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

.sct-hero-card ul li i { color: var(--secondary); margin-top: 4px; }

.sct-stats-band { background: var(--light); padding: 60px 0; }

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

.sct-stat-box { text-align: center; padding: 20px; }

.sct-stat-value {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.sct-stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

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

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

.sct-section-tag {
    display: inline-block;
    color: var(--tertiary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.sct-section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.sct-section-subtitle { font-size: 1.1rem; color: var(--gray); line-height: 1.7; }

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

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

.sct-intro-content p strong { color: var(--primary); }

.sct-services-section { background: var(--light); padding: 100px 0; }

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

.sct-service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary);
    display: flex;
    flex-direction: column;
}

.sct-service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }

.sct-service-card-img { width: 100%; height: 220px; object-fit: cover; }

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

.sct-service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

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

.sct-step-card {
    background: var(--light);
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sct-step-card:hover { border-color: var(--secondary); transform: translateY(-4px); }

.sct-step-num {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 auto 20px;
    font-family: 'Playfair Display', serif;
}

.sct-step-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.sct-step-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; }

.sct-why-section { background: var(--primary); padding: 100px 0; color: var(--white); }

.sct-why-section .sct-section-tag { color: var(--secondary); }

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

.sct-why-section .sct-section-subtitle { color: rgba(255,255,255,0.8); }

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

.sct-why-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.sct-why-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-5px); }

.sct-why-icon {
    width: 65px;
    height: 65px;
    background: var(--secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--dark);
}

.sct-why-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 600;
}

.sct-why-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.7; }

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

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

.sct-usecase-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.sct-usecase-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--primary);
    margin-bottom: 25px;
}

.sct-usecase-content p {
    font-size: 1.02rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 18px;
}

.sct-usecase-content p strong { color: var(--primary); }

.sct-engagements-section { background: var(--light); padding: 100px 0; }

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

.sct-engagement-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 4px solid var(--tertiary);
}

.sct-engagement-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

.sct-engagement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--tertiary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--secondary);
}

.sct-engagement-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

.sct-faq-item {
    background: var(--light);
    border-radius: 14px;
    margin-bottom: 16px;
    overflow: hidden;
    border-left: 4px solid var(--secondary);
}

.sct-faq-question {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.02rem;
    font-family: 'Outfit', sans-serif;
    transition: background 0.3s ease;
}

.sct-faq-question:hover { background: rgba(0, 107, 56, 0.05); }

.sct-faq-question i { color: var(--tertiary); transition: transform 0.3s ease; flex-shrink: 0; }

.sct-faq-item.active .sct-faq-question i { transform: rotate(180deg); }

.sct-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 28px;
}

.sct-faq-item.active .sct-faq-answer { max-height: 500px; padding: 0 28px 22px; }

.sct-faq-answer p { color: var(--gray); line-height: 1.8; font-size: 0.98rem; }

.sct-maillage-section { background: var(--light); padding: 100px 0; }

.sct-maillage-section.sct-maillage-dark { background: var(--primary); color: var(--white); }

.sct-maillage-section.sct-maillage-dark .sct-section-tag { color: var(--secondary); }

.sct-maillage-section.sct-maillage-dark .sct-section-title { color: var(--white); }

.sct-maillage-section.sct-maillage-dark .sct-section-subtitle { color: rgba(255,255,255,0.8); }

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

.sct-cities-grid > * { min-width: 0; }

.sct-city-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 14px 18px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sct-city-link:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.sct-city-link i { color: var(--tertiary); flex-shrink: 0; }

.sct-other-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.sct-other-service-link {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 20px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
}

.sct-other-service-link:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
}

.sct-other-service-link i { font-size: 1.2rem; }

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

.sct-cta-final h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 20px;
}

.sct-cta-final p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

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

@media (max-width: 992px) {
    .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .sct-services-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-processus-grid { grid-template-columns: repeat(3, 1fr); }
    .sct-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sct-usecase-grid { grid-template-columns: 1fr; gap: 40px; }
    .sct-usecase-img { height: 400px; }
    .sct-engagements-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .sct-cities-grid { grid-template-columns: repeat(3, 1fr); }
    .sct-other-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sct-page-wrapper { padding-top: 80px; }
    .sct-hero { padding: 50px 0 70px; }
    .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
    .sct-hero-subtitle { font-size: 1rem; }
    .sct-hero-card { padding: 25px; }
    .sct-hero-btns { flex-direction: column; }
    .sct-hero-btns > * { width: 100%; justify-content: center; }
    .sct-stats-band { padding: 40px 0; }
    .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .sct-stat-value { font-size: 2rem; }
    .sct-intro-section,
    .sct-services-section,
    .sct-processus-section,
    .sct-why-section,
    .sct-usecase-section,
    .sct-engagements-section,
    .sct-faq-section,
    .sct-maillage-section { padding: 60px 0; }
    .sct-services-grid { grid-template-columns: 1fr; gap: 20px; }
    .sct-processus-grid { grid-template-columns: 1fr; gap: 16px; }
    .sct-why-grid { grid-template-columns: 1fr; gap: 18px; }
    .sct-usecase-img { height: 280px; }
    .sct-section-title { font-size: 1.6rem; }
    .sct-faq-question { padding: 18px 20px; font-size: 0.95rem; }
    .sct-faq-item.active .sct-faq-answer { padding: 0 20px 18px; }
    .sct-cities-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .sct-other-services-grid { grid-template-columns: 1fr; }
    .sct-cta-final { padding: 60px 0; }
    .sct-cta-final-btns { flex-direction: column; }
    .sct-cta-final-btns > * { width: 100%; justify-content: center; }
}

header.sct-header-inner {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

header.sct-header-inner .logo-text { color: var(--primary); }

header.sct-header-inner nav a { color: var(--primary); }

header.sct-header-inner .mobile-toggle span { background: var(--primary); }

.sct-breadcrumb-wrap {
        background: var(--light);
        padding: 110px 0 20px;
        border-bottom: 1px solid rgba(0, 107, 56, 0.08);
    }

.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);
        list-style: none;
        padding: 0;
        margin: 0;
    }

.sct-breadcrumb .sct-sep { color: var(--secondary); opacity: 0.5; }

.sct-hero {
        background: linear-gradient(135deg, rgba(0, 107, 56, 0.92) 0%, rgba(158, 21, 21, 0.85) 100%),
                    url('/images/hero_1770141891_698238c39d10d.webp') center/cover no-repeat;
        padding: 80px 0 100px;
        color: var(--white);
        position: relative;
    }

.sct-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 8px 20px;
        border-radius: 50px;
        color: var(--white);
        font-size: 0.85rem;
        font-weight: 500;
        margin-bottom: 25px;
    }

.sct-hero-text h1 {
        font-size: clamp(2.2rem, 5vw, 4rem);
        line-height: 1.1;
        margin-bottom: 25px;
        color: var(--white);
    }

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

.sct-hero-btns {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

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

.sct-btn-primary:hover { background: var(--white); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,255,255,0.2); }

.sct-btn-outline:hover { border-color: var(--secondary); color: var(--secondary); }

.sct-hero-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 35px;
        border-radius: 20px;
    }

.sct-hero-card h3 {
        color: var(--secondary);
        font-size: 1.3rem;
        margin-bottom: 20px;
        font-family: 'Playfair Display', serif;
    }

.sct-hero-card ul li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 10px 0;
        color: rgba(255, 255, 255, 0.95);
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

.sct-hero-card ul li:last-child { border-bottom: none; }

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

.sct-stats-band {
        background: var(--primary);
        padding: 50px 0;
        color: var(--white);
    }

.sct-stat {
        text-align: center;
        padding: 20px;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

.sct-stat:last-child { border-right: none; }

.sct-stat-value {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--secondary);
        line-height: 1;
        margin-bottom: 8px;
        font-family: 'Outfit', sans-serif;
    }

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

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

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

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

.sct-intro-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
    }

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

.sct-intro-tag {
        display: inline-block;
        color: var(--secondary);
        font-weight: 600;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }

.sct-intro-text h2 {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        color: var(--primary);
        margin-bottom: 25px;
        line-height: 1.2;
    }

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

.sct-services-section {
        padding: 90px 0;
        background: var(--light);
    }

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

.sct-section-tag {
        display: inline-block;
        color: var(--secondary);
        font-weight: 600;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }

.sct-section-head h2 {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        color: var(--primary);
        margin-bottom: 15px;
        line-height: 1.2;
    }

.sct-section-head p {
        color: var(--gray);
        font-size: 1.05rem;
        max-width: 700px;
        margin: 0 auto;
    }

.sct-service-card {
        background: var(--white);
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
        border-top: 4px solid var(--secondary);
    }

.sct-service-card-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

.sct-service-card-icon {
        width: 55px;
        height: 55px;
        background: rgba(0, 107, 56, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1.4rem;
        margin-bottom: 18px;
    }

.sct-service-card-body h3 {
        color: var(--primary);
        font-size: 1.3rem;
        margin-bottom: 12px;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
    }

.sct-service-card-body p {
        color: var(--gray);
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
        flex: 1;
    }

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

.sct-service-link:hover { color: var(--tertiary); gap: 14px; }

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

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

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

.sct-zone-chip {
        background: var(--light);
        padding: 20px;
        border-radius: 12px;
        text-align: center;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        color: var(--dark);
        font-weight: 500;
        font-size: 0.95rem;
    }

.sct-zone-chip:hover {
        border-color: var(--secondary);
        background: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    }

.sct-zone-chip i { color: var(--primary); margin-right: 8px; }

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

.sct-usecase-box {
        background: var(--white);
        border-radius: 25px;
        padding: 60px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
        border-left: 5px solid var(--secondary);
    }

.sct-usecase-box h2 {
        font-size: clamp(1.6rem, 3vw, 2.3rem);
        color: var(--primary);
        margin-bottom: 25px;
    }

.sct-usecase-box p {
        color: var(--gray);
        font-size: 1.05rem;
        line-height: 1.9;
        margin-bottom: 18px;
    }

.sct-usecase-box ul {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }

.sct-usecase-box ul li {
        padding: 10px 0 10px 35px;
        position: relative;
        color: var(--dark);
    }

.sct-usecase-box ul li::before {
        content: '\f00c';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 10px;
        color: var(--primary);
    }

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

.sct-engagement-card {
        background: var(--light);
        padding: 40px 30px;
        border-radius: 18px;
        text-align: center;
        transition: all 0.3s ease;
        border-bottom: 4px solid transparent;
    }

.sct-engagement-card:hover {
        background: var(--primary);
        color: var(--white);
        border-bottom-color: var(--secondary);
        transform: translateY(-5px);
    }

.sct-engagement-icon {
        width: 75px;
        height: 75px;
        background: var(--primary);
        color: var(--secondary);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        margin: 0 auto 20px;
        transition: all 0.3s ease;
    }

.sct-engagement-card:hover .sct-engagement-icon {
        background: var(--secondary);
        color: var(--primary);
    }

.sct-engagement-card h3 {
        color: var(--primary);
        font-size: 1.25rem;
        margin-bottom: 12px;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        transition: color 0.3s ease;
    }

.sct-engagement-card:hover h3 { color: var(--white); }

.sct-engagement-card p {
        color: var(--gray);
        font-size: 0.95rem;
        line-height: 1.7;
        transition: color 0.3s ease;
    }

.sct-engagement-card:hover p { color: rgba(255,255,255,0.9); }

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

.sct-local-box {
        background: linear-gradient(135deg, var(--primary) 0%, #005028 100%);
        color: var(--white);
        padding: 55px;
        border-radius: 25px;
        border: 2px solid var(--secondary);
    }

.sct-local-box h2 {
        color: var(--secondary);
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        margin-bottom: 25px;
    }

.sct-local-box p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.05rem;
        line-height: 1.9;
        margin-bottom: 18px;
    }

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

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

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

.sct-faq-item:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); }

.sct-faq-q {
        padding: 22px 28px;
        cursor: pointer;
        font-weight: 600;
        color: var(--primary);
        font-size: 1.05rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

.sct-faq-q::after {
        content: '\f067';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: var(--secondary);
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

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

.sct-faq-a {
        padding: 0 28px 25px;
        color: var(--gray);
        line-height: 1.8;
        font-size: 0.98rem;
    }

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

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

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

.sct-maillage-link {
        background: var(--white);
        padding: 18px 22px;
        border-radius: 12px;
        text-decoration: none;
        color: var(--dark);
        font-weight: 500;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 107, 56, 0.08);
    }

.sct-maillage-link:hover {
        background: var(--primary);
        color: var(--white);
        transform: translateX(5px);
        border-color: var(--primary);
    }

.sct-maillage-link i { color: var(--secondary); flex-shrink: 0; }

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

.sct-cta-final::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 40%;
        height: 100%;
        background: rgba(255, 255, 255, 0.05);
        clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    }

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

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

.sct-cta-final p {
        font-size: 1.15rem;
        color: rgba(255, 255, 255, 0.9);
        max-width: 650px;
        margin: 0 auto 40px;
    }

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

@media (max-width: 992px) {
        .sct-hero-grid { grid-template-columns: 1fr; gap: 40px; }
        .sct-hero-card { max-width: 480px; margin: 0 auto; width: 100%; }
        .sct-intro-grid { grid-template-columns: 1fr; gap: 40px; }
        .sct-intro-image img { height: 380px; }
        .sct-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
        .sct-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 20px; }
        .sct-stat:nth-last-child(-n+2) { border-bottom: none; }
        .sct-services-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
        .sct-zones-grid { grid-template-columns: repeat(3, 1fr); }
        .sct-engagements-grid { grid-template-columns: 1fr; gap: 25px; }
        .sct-maillage-list { grid-template-columns: repeat(2, 1fr); }
        .sct-usecase-box { padding: 40px 30px; }
        .sct-local-box { padding: 40px 30px; }
    }

@media (max-width: 640px) {
        .sct-hero { padding: 60px 0 70px; }
        .sct-breadcrumb-wrap { padding: 100px 0 15px; }
        .sct-hero-btns { flex-direction: column; }
        .sct-hero-btns > * { width: 100%; justify-content: center; }
        .sct-hero-text h1 { font-size: 1.9rem; line-height: 1.2; }
        .sct-hero-card { padding: 25px; }
        .sct-intro-section,
        .sct-services-section,
        .sct-zones-section,
        .sct-usecase-section,
        .sct-engagements-section,
        .sct-local-spec,
        .sct-faq-section,
        .sct-maillage-section,
        .sct-cta-final { padding: 60px 0; }
        .sct-services-grid { grid-template-columns: 1fr; }
        .sct-zones-grid { grid-template-columns: repeat(2, 1fr); }
        .sct-maillage-list { grid-template-columns: 1fr; }
        .sct-usecase-box { padding: 30px 22px; }
        .sct-local-box { padding: 30px 22px; }
        .sct-cta-buttons { flex-direction: column; }
        .sct-cta-buttons > * { width: 100%; justify-content: center; }
        .sct-stats-grid { grid-template-columns: 1fr; }
        .sct-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
        .sct-faq-q { font-size: 0.98rem; padding: 18px 20px; }
        .sct-faq-a { padding: 0 20px 22px; }
    }

:root {
    --primary: #006B38;
    --secondary: #FFF;
    --tertiary: #9E1515;
    --light: #F8FAF9;
    --dark: #1A1A1A;
    --gray: #6C757D;
    --white: #FFFFFF;
    --gold: #D4B852;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    background: rgba(0, 107, 56, 0.95);
    backdrop-filter: blur(20px);
}

.page-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, rgba(0, 107, 56, 0.92) 0%, rgba(158, 21, 21, 0.85) 100%),
                url('https://webflash.pro/storage/generated/22/hero_1770141891_698238c39d10d.webp?v=1') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--secondary);
    opacity: 0.1;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--white);
    padding: 8px 22px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.page-hero h1 span {
    color: var(--gold);
    font-style: italic;
}

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

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

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

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

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

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

.sitemap-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.sitemap-intro .section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.sitemap-intro h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--primary);
    margin-bottom: 15px;
}

.sitemap-intro p {
    color: var(--gray);
    font-size: 1.05rem;
}

.sitemap-block {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sitemap-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.sitemap-block-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--light);
}

.sitemap-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #008c47 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 107, 56, 0.2);
}

.sitemap-block-title h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

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

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--light);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.chip:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 107, 56, 0.2);
}

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

.chip-primary {
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    font-weight: 600;
}

.chip-primary i {
    color: var(--gold);
}

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

.subgroup {
    margin-bottom: 35px;
}

.subgroup:last-child {
    margin-bottom: 0;
}

.subgroup-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 18px;
    padding-left: 15px;
    border-left: 3px solid var(--gold);
}

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

.subgroup .chips-grid {
    padding-left: 15px;
}

.sitemap-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    margin: 60px 0 50px;
    opacity: 0.5;
}

.sitemap-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #008c47 100%);
    border-radius: 25px;
    padding: 60px 50px;
    text-align: center;
    color: var(--white);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.sitemap-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 184, 82, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.sitemap-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
}

.sitemap-cta h3 span {
    color: var(--gold);
}

.sitemap-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

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

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

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

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-brand .logo-text {
    color: var(--white);
    display: block;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-col ul li a,
.footer-col ul li {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

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

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

@media (max-width: 968px) {
    .mobile-toggle {
        display: flex;
    }
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.4s ease;
        padding: 40px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }
    nav.active {
        right: 0;
    }
    nav a {
        color: var(--primary);
        font-size: 1.1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .sitemap-block {
        padding: 35px 25px;
    }
    .sitemap-block-header {
        flex-direction: column;
        text-align: center;
        align-items: flex-start;
    }
    .sitemap-cta {
        padding: 45px 25px;
    }
    .sitemap-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .page-hero {
        min-height: 50vh;
        padding: 140px 0 60px;
    }
    .sitemap {
        padding: 60px 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .chip {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
    .sitemap-block {
        padding: 30px 20px;
    }
    .subgroup .chips-grid,
    .subgroup-title {
        padding-left: 0;
    }
    .subgroup-title {
        padding-left: 15px;
    }
}