/* ===================================
   MC SERVICE RAPIDE - DESIGN MODERNE & ÉPURÉ
   =================================== */

:root {
    /* Colors */
    --primary-color: #2d5016;
    --primary-light: #4a7c2c;
    --primary-dark: #1a3309;
    --accent-color: #d4af37;
    --accent-light: #f5d579;
    
    /* Text */
    --text-dark: #1a1a1a;
    --text-light: #6b6b6b;
    --text-white: #ffffff;
    
    /* Backgrounds */
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(45, 80, 22, 0.95) 0%, rgba(74, 124, 44, 0.9) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-white);
    /* Optimisation tactile mobile */
    -webkit-tap-highlight-color: rgba(45, 80, 22, 0.15);
    touch-action: manipulation;
}

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

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

/* Top Bar */
.top-bar {
    background: var(--primary-dark);
    color: var(--text-white);
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.top-bar-item i {
    color: var(--accent-color);
}

.top-bar-item.highlight {
    background: rgba(212, 175, 55, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

/* Trust Badges Bar */
.trust-badges {
    background: var(--bg-white);
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    padding: 1rem;
}

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

.badge-item div {
    display: flex;
    flex-direction: column;
}

.badge-item strong {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.badge-item span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

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

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.btn-cta-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all var(--transition);
}

/* Hero Section - Ultra Premium */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    animation: heroFadeIn 1.5s ease;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1591107254982-fa8a1aeae6c9?w=1920&q=90');
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: kenBurns 30s ease infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.85) 0%, rgba(74, 124, 44, 0.82) 50%, rgba(58, 90, 64, 0.85) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.03) 35px, rgba(212, 175, 55, 0.03) 70px);
    opacity: 0.5;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
}

.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1.5rem;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge-top i {
    font-size: 1.2rem;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-accent {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.8rem;
    font-family: 'Montserrat', sans-serif;
}

.title-main {
    display: block;
    font-size: clamp(3.5rem, 9vw, 6rem);
    color: var(--text-white);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 0.3rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -2px;
}

.title-location {
    display: block;
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin-top: 1rem;
    font-family: 'Poppins', sans-serif;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.hero-subtitle strong {
    color: var(--accent-color);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.3rem 2.2rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-hero-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
    border-color: var(--text-white);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.btn-text strong {
    font-size: 1.05rem;
    font-weight: 700;
}

.btn-text small {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.feature-tag i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Hero Image/Cards Section */
.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all var(--transition);
}

.hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.hero-card:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 3;
    width: 280px;
}

.hero-card-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    width: 200px;
}

.hero-card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 180px;
}

.card-inner {
    text-align: center;
}

.stat-highlight {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.stat-content {
    text-align: left;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.stat-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

.stat-stars {
    font-size: 1rem;
    margin-top: 0.3rem;
}

.stat-number-big {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-big {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
}

.scroll-arrow i {
    animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

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

@keyframes scroll {
    0% { opacity: 0; top: 10px; }
    50% { opacity: 1; }
    100% { opacity: 0; top: 30px; }
}

/* Services Modern */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 139, 34, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Service Card Modern */
.service-card-modern {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(34, 139, 34, 0.2);
}

/* Service Image */
.service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}

/* Featured & Badges */
.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -8px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 8px 20px 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%);
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-ribbon i {
    animation: pulse 2s infinite;
}

.express-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
}

.express-badge i {
    animation: flash 1.5s infinite;
}

@keyframes flash {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

/* Service Content */
.service-content {
    padding: 2rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.service-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d5016 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(34, 139, 34, 0.3);
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-modern {
    transform: rotateY(360deg);
}

.service-price {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d5016 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.25);
}

.service-title-modern {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.service-desc-modern {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-list-modern {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list-modern li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.service-list-modern i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-footer {
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.btn-service-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.2);
}

.btn-service-modern:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(34, 139, 34, 0.35);
}

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

.btn-service-modern:hover i {
    transform: translateX(5px);
}

/* Featured Card Styles */
.service-card-modern.featured-modern {
    border: 3px solid #FFD700;
}

.service-card-modern.featured-modern .service-content {
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.03) 0%, transparent 100%);
}

.btn-service-featured {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    font-weight: 700;
}

.btn-service-featured:hover {
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

/* Services Guarantees */
.services-guarantees {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

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

/* Zone d'Intervention */
.intervention-zone {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.intervention-zone::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 139, 34, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.zone-content-modern {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.zone-text h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zone-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.zone-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.zone-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.zone-stat {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.zone-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(34, 139, 34, 0.15);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.cities-grid h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.city-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.city-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 139, 34, 0.25);
}

.city-tag i {
    font-size: 0.85rem;
    opacity: 0.8;
}

.city-featured {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
    font-size: 1.05rem;
    padding: 12px 24px;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
}

.city-featured:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.4);
}

.more-cities {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-color: #d0d0d0;
    font-style: italic;
}

.more-cities:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d5016 100%);
    border-color: var(--primary-color);
}

.zone-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d5016 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(34, 139, 34, 0.3);
    margin-top: 2rem;
}

.zone-cta p {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.zone-cta p:first-child {
    font-size: 1.3rem;
    font-weight: 700;
}

.btn-zone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-zone:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.seo-text {
    margin-top: 4rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.seo-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin: 0;
}

.seo-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* About */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.badge-text {
    color: var(--text-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.about-text .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.about-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    margin: 3rem 0;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

/* Gallery */
.gallery {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    height: 400px;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-overlay);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

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

.gallery-overlay h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 600;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

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

.contact-info .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-description {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-text a,
.contact-text p {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition);
}

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

.contact-hours {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.contact-hours h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-hours p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color var(--transition);
}

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

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

.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all var(--transition);
}

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

.footer-col h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    padding-bottom: 0.5rem;
    text-align: center;
    margin-top: auto;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-credit-emoji {
    font-size: 0.9em;
    margin-right: 0.35em;
    vertical-align: middle;
}

/* Scroll to Top & WhatsApp */
.scroll-top,
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    min-width: 48px;
    min-height: 48px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

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

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}


/* Sticky CTA Bottom */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 998;
    transition: bottom var(--transition);
    border-top: 3px solid var(--accent-color);
    padding-bottom: env(safe-area-inset-bottom);
}

.sticky-cta.visible {
    bottom: 0;
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.sticky-cta-text {
    display: flex;
    flex-direction: column;
}

.sticky-cta-text strong {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.sticky-cta-text span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.sticky-cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cta-phone {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition);
    border: none;
}

.btn-cta-phone:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.btn-cta-contact {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    border: none;
}

.btn-cta-contact:hover {
    background: var(--accent-light);
    transform: scale(1.05);
}


/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all var(--transition);
    position: relative;
}

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

.pricing-card.featured {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.pricing-card.featured .pricing-header {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.pricing-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-card.featured .pricing-header i {
    color: var(--accent-color);
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
}

.pricing-card.featured .pricing-header h3 {
    color: var(--text-white);
}

.pricing-body {
    margin-bottom: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-card.featured .price-item {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.price-item span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.pricing-card.featured .price-item span {
    color: rgba(255, 255, 255, 0.9);
}

.price-item strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
}

.pricing-card.featured .price-item strong {
    color: var(--accent-color);
}

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

.pricing-card.featured .btn {
    background: var(--text-white);
    color: var(--primary-color);
}

.pricing-card.featured .btn:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.pricing-info {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.pricing-info p {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

/* Zone d'intervention */
.zone-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.zone-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.zone-text {
    text-align: left;
}

.zone-text .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.zone-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.zone-list {
    margin-bottom: 2rem;
}

.zone-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 10px;
    transition: all var(--transition);
}

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

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

.zone-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.zone-map {
    position: relative;
}

.map-placeholder {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-white);
    box-shadow: var(--shadow-lg);
}

.map-placeholder i {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.map-placeholder span {
    font-size: 1rem;
    opacity: 0.9;
}

/* Processus */
.process-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.step-content {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    transition: all var(--transition);
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.step-connector {
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: -30px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.process-step:last-child .step-connector {
    display: none;
}

/* Pourquoi nous choisir */
.why-choose {
    padding: 100px 0;
    background: var(--bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.why-item {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    transition: all var(--transition);
}

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

.why-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.why-item h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: var(--primary-color);
}

.why-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    transition: transform var(--transition);
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.trust-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.trust-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: var(--bg-white);
    transition: all var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .top-bar {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }

    .top-bar-content {
        justify-content: center;
        text-align: center;
    }

    .top-bar-left,
    .top-bar-right {
        justify-content: center;
        gap: 1rem;
    }

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

    .badge-item {
        flex-direction: column;
        text-align: center;
    }

    .zone-content {
        grid-template-columns: 1fr;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-info {
        grid-template-columns: 1fr;
    }

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

    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-image {
        height: 200px;
    }

    .services-guarantees {
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .guarantee-item {
        font-size: 0.9rem;
    }

    .guarantee-item i {
        font-size: 1.5rem;
    }

    .zone-content-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .zone-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .cities-list {
        gap: 0.6rem;
    }

    .city-tag {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    .sticky-cta .container {
        max-width: 100%;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .sticky-cta-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        gap: 0.5rem;
        text-align: left;
    }

    .sticky-cta-text {
        flex: 1;
        min-width: 0;
    }

    .sticky-cta-text strong {
        font-size: 0.85rem;
        margin-bottom: 0;
        line-height: 1.2;
    }

    .sticky-cta-text span {
        font-size: 0.7rem;
        display: block;
    }

    .sticky-cta-buttons {
        flex-shrink: 0;
        flex-direction: row;
        gap: 0.4rem;
    }

    .btn-cta-phone,
    .btn-cta-contact {
        padding: 0.45rem 0.6rem;
        font-size: 0.75rem;
        width: auto;
        justify-content: center;
    }

    .btn-cta-phone i {
        font-size: 0.7rem;
    }

    .process-step {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step-connector {
        left: 25px;
    }

    .step-content {
        padding: 1.5rem;
    }

    .navbar {
        min-height: 56px;
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .nav-menu {
        position: fixed;
        top: 56px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        padding: 1.5rem 16px 2rem;
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
        box-shadow: var(--shadow-lg);
        transition: left var(--transition);
        gap: 0;
        max-height: calc(100vh - 56px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu .nav-link {
        display: flex;
        align-items: center;
        padding: 14px 0;
        min-height: 48px;
    }

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

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

    .hamburger {
        display: flex;
    }

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

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

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

    .section-title {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    /* Sections: réduction padding mobile */
    .hero,
    .services,
    .pricing-section,
    .why-section,
    .about,
    .zone-section,
    .testimonials,
    .contact,
    .faq-section,
    .gallery,
    .trust-section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .hero {
        padding-top: 5rem;
        padding-bottom: 3rem;
        min-height: auto;
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-badge-top {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }

    .title-main {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

    .title-accent {
        font-size: 0.85rem;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }

    .title-location {
        font-size: 1rem;
        margin-top: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .btn-hero {
        min-height: 48px;
        padding: 1rem 1.5rem;
        justify-content: center;
    }

    .btn-text strong {
        font-size: 1rem;
    }

    .btn-text small {
        font-size: 0.75rem;
    }

    .hero-features {
        gap: 0.75rem;
    }

    .feature-tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .scroll-indicator {
        bottom: 1.5rem;
    }

    .scroll-indicator span {
        font-size: 0.75rem;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-image {
        height: 340px;
        margin-top: 1.5rem;
    }

    .hero-card:nth-child(1) {
        width: 240px;
        left: 10px;
    }

    .hero-card-2 {
        width: 180px;
        top: 15%;
        right: 10px;
        transform: translateY(0);
        animation: none;
        padding: 1rem;
    }

    .hero-card-3 {
        width: 160px;
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
        animation: none;
        padding: 1rem;
    }

    .hero-card-2 .stat-number-big,
    .hero-card-3 .stat-number-big {
        font-size: 2.2rem;
    }

    .hero-card-2 .stat-label-big,
    .hero-card-3 .stat-label-big {
        font-size: 0.8rem;
    }

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

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

    .services-grid,
    .gallery-grid,
    .testimonials-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .footer {
        padding-bottom: 4rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    /* Formulaires: 16px évite le zoom iOS */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 14px 16px;
        min-height: 48px;
    }

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

    .btn-submit {
        min-height: 48px;
        padding: 14px 20px;
    }

    /* Scroll-to-top: au-dessus de la barre sticky + safe area */
    .scroll-top {
        bottom: calc(70px + env(safe-area-inset-bottom));
        right: max(16px, env(safe-area-inset-right));
    }

    /* Boutons et liens tactiles */
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-service-modern,
    .btn-zone,
    .city-tag,
    .pricing-card .btn {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .contact-hours {
        padding: 1.5rem;
    }

    .trust-badges {
        padding: 1.5rem 0;
    }

    .badge-item {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .top-bar-left span:first-child {
        display: none;
    }

    .top-bar-item {
        font-size: 0.8rem;
    }

    .hero {
        padding-top: 4rem;
        padding-bottom: 2.5rem;
    }

    .title-main {
        font-size: 2rem;
    }

    .hero-image {
        height: 280px;
    }

    .hero-card:nth-child(1) {
        width: 200px;
        left: 8px;
    }

    .hero-card-2 {
        width: 150px;
        top: 12%;
    }

    .hero-card-3 {
        width: 140px;
        bottom: 12%;
    }

    .hero-card-2 .stat-number-big,
    .hero-card-3 .stat-number-big {
        font-size: 1.75rem;
    }

    .hero-card-2 .stat-label-big,
    .hero-card-3 .stat-label-big {
        font-size: 0.7rem;
    }

    .hero-card-2,
    .hero-card-3 {
        padding: 0.75rem;
    }

    .section-title {
        font-size: 1.65rem;
        line-height: 1.25;
    }

    .section-tag {
        font-size: 0.8rem;
    }

    .hero,
    .services,
    .pricing-section,
    .why-section,
    .about,
    .zone-section,
    .testimonials,
    .contact,
    .faq-section,
    .gallery,
    .trust-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .sticky-cta-content {
        padding: 0.4rem 0;
    }

    .sticky-cta-text strong {
        font-size: 0.8rem;
    }

    .sticky-cta-text span {
        display: none;
    }

    .btn-cta-phone,
    .btn-cta-contact {
        padding: 0.5rem 0.6rem;
        font-size: 0.7rem;
        min-height: 40px;
    }

    .service-card-modern .service-content,
    .contact-form-wrapper {
        padding: 1.25rem;
    }

    .service-title-modern {
        font-size: 1.35rem;
    }

    .service-image {
        height: 180px;
    }

    .services-guarantees {
        flex-direction: column;
        gap: 1rem;
    }

    .featured-ribbon,
    .express-badge {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    .zone-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .zone-stat {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .zone-cta {
        padding: 1.5rem 1rem;
    }

    .seo-text {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .scroll-top {
        bottom: calc(60px + env(safe-area-inset-bottom));
        width: 46px;
        height: 46px;
        min-width: 46px;
        min-height: 46px;
    }

    .footer {
        padding: 2.5rem 0 4rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-col h3 {
        font-size: 1.1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .process-step {
        grid-template-columns: 44px 1fr;
        gap: 0.75rem;
    }

    .step-number {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .step-connector {
        left: 22px;
    }

    .step-content {
        padding: 1rem;
    }
}

/* Très petits écrans (< 360px) */
@media (max-width: 360px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .title-main {
        font-size: 1.75rem;
    }

    .hero-image {
        height: 240px;
    }

    .hero-card-2,
    .hero-card-3 {
        width: 130px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* ===================================
   ANIMATIONS PREMIUM ULTRA-MODERNES
   =================================== */

/* Effet de brillance sur les boutons */
.btn, .btn-primary, .btn-secondary, .btn-hero, .btn-service-modern {
    position: relative;
    overflow: hidden;
}

.btn::before, .btn-primary::before, .btn-secondary::before, .btn-hero::before, .btn-service-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Effet de pulsation sur les icônes */
.service-icon, .service-icon-modern, .stat-icon {
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(45, 80, 22, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(45, 80, 22, 0);
    }
}

/* Animation flottante pour les cartes Hero */
.hero-card {
    animation: floatCard 6s ease-in-out infinite;
}

.hero-card-2 {
    animation: floatCard2 7s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-card-3 {
    animation: floatCard3 8s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

@keyframes floatCard2 {
    0%, 100% {
        transform: translateY(-50%) translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-50%) translateY(-12px) rotate(0deg);
    }
}

@keyframes floatCard3 {
    0%, 100% {
        transform: translateX(-50%) translateY(0) rotate(0deg);
    }
    50% {
        transform: translateX(-50%) translateY(-12px) rotate(0deg);
    }
}

/* Effet de gradient animé sur les titres */
.hero-title, .section-title {
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Effet de respiration sur les badges */
.hero-badge-top, .featured-ribbon, .express-badge {
    animation: breathe 4s ease-in-out infinite;
}

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

/* Effet d'ondulation au survol */
.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple-effect:hover::after {
    width: 300px;
    height: 300px;
}

/* Animation de chargement des stats */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Effet de glitch subtle */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.glitch:hover::before {
    animation: glitch1 0.3s infinite;
}

.glitch:hover::after {
    animation: glitch2 0.3s infinite;
}

@keyframes glitch1 {
    0% {
        transform: translate(0);
        opacity: 0;
    }
    20% {
        transform: translate(-2px, 2px);
        opacity: 0.7;
    }
    40% {
        transform: translate(-2px, -2px);
        opacity: 0;
    }
    60% {
        transform: translate(2px, 2px);
        opacity: 0.7;
    }
    80% {
        transform: translate(2px, -2px);
        opacity: 0;
    }
    100% {
        transform: translate(0);
        opacity: 0;
    }
}

@keyframes glitch2 {
    0% {
        transform: translate(0);
        opacity: 0;
    }
    20% {
        transform: translate(2px, -2px);
        opacity: 0.7;
    }
    40% {
        transform: translate(2px, 2px);
        opacity: 0;
    }
    60% {
        transform: translate(-2px, -2px);
        opacity: 0.7;
    }
    80% {
        transform: translate(-2px, 2px);
        opacity: 0;
    }
    100% {
        transform: translate(0);
        opacity: 0;
    }
}

/* Animation de fondu progressif pour les sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Effet de rotation 3D au survol */
.rotate-3d {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.rotate-3d:hover {
    transform: rotateY(10deg) rotateX(5deg);
}

/* Animation de texte dactylographié */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Effet de zoom doux sur les images */
.zoom-effect {
    overflow: hidden;
}

.zoom-effect img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.zoom-effect:hover img {
    transform: scale(1.15) rotate(2deg);
}

/* Animation de particules scintillantes */
@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Effet de dégradé animé pour le fond */
@keyframes gradientBg {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animation de bounce douce */
@keyframes softBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Effet de slide in depuis la gauche */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Effet de slide in depuis la droite */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation de rotation douce continue */
@keyframes gentleRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Effet de fade in avec scale */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation pour les éléments qui apparaissent au scroll */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Effet de lueur pulsante */
@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.5),
                    0 0 10px rgba(212, 175, 55, 0.3),
                    0 0 15px rgba(212, 175, 55, 0.1);
    }
    50% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.8),
                    0 0 20px rgba(212, 175, 55, 0.6),
                    0 0 30px rgba(212, 175, 55, 0.4);
    }
}

/* Animation de chargement */
@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Effet de vague */
@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.will-animate {
    will-change: transform, opacity;
}

/* Réduction de mouvement pour accessibilité */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   PAGES LÉGALES (Mentions, Confidentialité)
   =================================== */
.legal-page .sticky-cta {
    display: none;
}

.legal-main {
    padding: 3rem 0 4rem;
    min-height: 60vh;
}

.legal-breadcrumb {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition);
}

.legal-breadcrumb a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.legal-breadcrumb span:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

.legal-content {
    max-width: 720px;
    margin: 0 auto;
}

.legal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.legal-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.legal-section {
    margin-bottom: 2.25rem;
}

.legal-section h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid var(--accent-color);
}

.legal-section p {
    margin-bottom: 0.85rem;
    color: var(--text-dark);
    line-height: 1.75;
}

.legal-list {
    list-style: none;
    margin: 0.75rem 0 1rem;
    padding-left: 0;
}

.legal-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.6;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

.legal-list a,
.legal-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}

.legal-list a:hover,
.legal-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.legal-updated {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-legal .footer-bottom {
    padding-top: 1.5rem;
}

.footer-legal .footer-bottom p {
    margin-bottom: 0.4rem;
}

.footer-legal .footer-bottom a {
    color: var(--accent-light);
    text-decoration: none;
}

.footer-legal .footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-main {
        padding: 2rem 0 3rem;
    }

    .legal-title {
        font-size: 1.65rem;
    }

    .legal-section h2 {
        font-size: 1.1rem;
    }
}
