/* =========================================================================
 * Sauveteur.fr — Main stylesheet
 * Extracted from the reference home block. Shared across all 180 pages.
 * ====================================================================== */

/* ----- VARIABLES ----- */
:root {
 --primary: #4F46E5;
 --primary-dark: #4338CA;
 --primary-light: #6366F1;
 --accent: #FF6B6B;
 --accent-dark: #EE5A5A;
 --accent-light: #FF8A8A;
 --white: #FFFFFF;
 --gray-50: #F9FAFB;
 --gray-100: #F3F4F6;
 --gray-200: #E5E7EB;
 --gray-300: #D1D5DB;
 --gray-400: #9CA3AF;
 --gray-500: #6B7280;
 --gray-600: #4B5563;
 --gray-700: #374151;
 --gray-800: #1F2937;
 --gray-900: #111827;
 --success: #10B981;
 --warning: #F59E0B;
 --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
 --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
 --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
 --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
 --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
 --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
 --radius: 12px;
 --radius-md: 12px;
 --radius-lg: 16px;
 --radius-xl: 20px;
 --radius-full: 9999px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
 font-family: var(--font-family);
 font-size: 16px;
 line-height: 1.6;
 color: var(--gray-700);
 background-color: var(--white);
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

/* ----- ACCESSIBILITY ----- */
.skip-link {
 position: absolute; top: -40px; left: 50%;
 transform: translateX(-50%);
 background: var(--primary); color: var(--white);
 padding: 8px 16px; border-radius: var(--radius);
 z-index: 10000; 
 text-decoration: none; font-weight: 600; font-size: 0.875rem;
}
.skip-link:focus { top: 10px; outline: 2px solid var(--accent); outline-offset: 2px; }

/* ----- UTILITIES ----- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }

/* ----- SECTION BACKGROUNDS ----- */
.section-gray { background: linear-gradient(180deg, var(--gray-50) 0%, #f1f5f9 50%, var(--gray-50) 100%); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.section-primary-light { background: linear-gradient(180deg, rgba(79, 70, 229, 0.03) 0%, rgba(79, 70, 229, 0.08) 100%); position: relative; }
.section-primary-light::before, .section-primary-light::after { content: ''; position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(79, 70, 229, 0.2) 50%, transparent 100%); }
.section-primary-light::before { top: 0; }
.section-primary-light::after { bottom: 0; }
.section-accent-light { background: linear-gradient(180deg, rgba(255, 107, 107, 0.02) 0%, rgba(255, 107, 107, 0.06) 100%); }
.section-gradient { background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 50%, var(--white) 100%); }
.section-pattern {
 background-color: #fafbff;
 background-image: radial-gradient(rgba(79, 70, 229, 0.06) 1px, transparent 1px);
 background-size: 24px 24px;
 border-top: 1px solid rgba(79, 70, 229, 0.08);
 border-bottom: 1px solid rgba(79, 70, 229, 0.08);
}
.section-white { background: var(--white); }

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--gray-900); }
h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; }
.lead { font-size: 1.25rem; color: var(--gray-600); line-height: 1.7; }
.section-header { max-width: 700px; margin: 0 auto 60px; text-align: center; }
.section-header p { margin-top: 16px; color: var(--gray-600); font-size: 1.125rem; }

.badge {
 display: inline-flex; align-items: center; gap: 8px;
 padding: 8px 16px;
 background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
 color: var(--white); font-size: 0.875rem; font-weight: 600;
 border-radius: var(--radius-full); margin-bottom: 16px;
}

/* ----- BUTTONS ----- */
.btn {
 display: inline-flex; align-items: center; justify-content: center; gap: 8px;
 padding: 14px 28px;
 font-family: var(--font-family); font-size: 1rem; font-weight: 600;
 border-radius: var(--radius); border: none; cursor: pointer;
 transition: transform 0.2s ease;
 text-decoration: none;
}
.btn-primary { background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%); color: var(--white); box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px 0 rgba(79, 70, 229, 0.5); color: var(--white); }
.btn-accent { background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%); color: var(--white); box-shadow: 0 4px 14px 0 rgba(255, 107, 107, 0.4); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 6px 20px 0 rgba(255, 107, 107, 0.5); color: var(--white); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--primary); }
.btn-lg { padding: 18px 36px; font-size: 1.125rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 16px; }

/* ----- HEADER ----- */
.header {
 position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
 background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
 border-bottom: 1px solid var(--gray-200);
 
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { display: flex; align-items: center; gap: 12px; font-size: 1.5rem; font-weight: 800; color: var(--gray-900); }
.logo-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--white); }
.logo-icon svg { width: 24px; height: 24px; }
.logo-tld { color: var(--primary); font-weight: 800; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav a { padding: 10px 16px; color: var(--gray-600); font-weight: 500; border-radius: var(--radius); }
.nav a:hover { color: var(--primary); background: var(--gray-100); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--gray-900); }
.header-phone svg { color: var(--accent); flex-shrink: 0; }
.header-phone span { white-space: nowrap; }
.mobile-menu-btn { display: none; background: none; border: none; padding: 8px; cursor: pointer; color: var(--gray-700); }

/* ----- HERO ----- */
.hero { padding: 140px 0 100px; background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(circle at 70% 30%, rgba(79, 70, 229, 0.08) 0%, transparent 50%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40%; height: 60%; background: radial-gradient(circle at 30% 70%, rgba(255, 107, 107, 0.06) 0%, transparent 50%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; min-height: 480px; }
.hero-content h1 { margin-bottom: 24px; }
.hero-content h1 span { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-content .lead { margin-bottom: 32px; min-height: 90px; }
.hero-visual { position: relative; }
.hero-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); padding: 40px; position: relative; }
.hero-card::before { content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); border-radius: calc(var(--radius-lg) + 2px); z-index: -1; opacity: 0.3; }
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.hero-stat { text-align: center; padding: 20px; background: var(--gray-50); border-radius: var(--radius); }
.hero-stat-value { font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.hero-stat-value.accent { color: var(--accent); }
.hero-stat-label { font-size: 0.875rem; color: var(--gray-600); font-weight: 500; }
.hero-floating { position: absolute; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.hero-floating-1 { top: -20px; right: -20px; }
.hero-floating-2 { bottom: -20px; left: -20px; }
.hero-floating-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hero-floating-icon svg { width: 22px; height: 22px; }
.hero-floating-icon.green { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.hero-floating-icon.primary { background: rgba(79, 70, 229, 0.1); color: var(--primary); }
.hero-floating-text { font-weight: 600; color: var(--gray-900); font-size: 0.9rem; }
.hero-floating-sub { font-size: 0.8rem; color: var(--gray-500); }
.hero-image { width: 100%; aspect-ratio: 3 / 2; background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-100) 100%); border-radius: var(--radius-lg); margin-bottom: 24px; overflow: hidden; position: relative; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ----- TRUST BAR ----- */
.trust-bar { padding: 40px 0; border-bottom: 1px solid var(--gray-200); }
.trust-items { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--gray-600); font-weight: 500; }
.trust-item svg { color: var(--success); flex-shrink: 0; }

/* ----- PROBLEMS SECTION ----- */
.problems { background: var(--gray-900); color: var(--white); }
.problems .section-header h2 { color: var(--white); }
.problems .section-header p { color: var(--gray-400); }
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-lg); padding: 32px; transition: transform 0.3s ease; will-change: transform; }
.problem-card:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-4px); }
.problem-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--white); }
.problem-icon svg { width: 28px; height: 28px; }
.problem-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.25rem; }
.problem-card p { color: var(--gray-400); margin-bottom: 0; line-height: 1.7; }

/* ----- SERVICES SECTION ----- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 40px; transition: transform 0.3s ease; position: relative; overflow: hidden; will-change: transform; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; will-change: transform; }
.service-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.accent::before { background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%); }
.service-card.accent:hover { border-color: var(--accent); }
.service-icon { width: 64px; height: 64px; background: var(--gray-100); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: transform 0.3s ease, opacity 0.3s ease; color: var(--primary); }
.service-icon svg { width: 32px; height: 32px; }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%); color: var(--white); }
.service-card:hover .service-icon svg { stroke: var(--white); }
.service-card.accent:hover .service-icon { background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--gray-600); margin-bottom: 20px; }
.service-features { list-style: none; margin-bottom: 24px; }
.service-features li { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; color: var(--gray-700); }
.service-features li svg { color: var(--success); flex-shrink: 0; margin-top: 2px; }
.service-card .btn { width: 100%; }
.service-image { width: 100%; height: 200px; background: var(--gray-100); border-radius: var(--radius); margin-bottom: 24px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.service-card:hover .service-image img { transform: scale(1.05); }

/* ----- PROCESS SECTION ----- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 50px; left: 60px; right: 60px; height: 2px; background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-number { width: 100px; height: 100px; background: var(--white); border: 3px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; font-weight: 800; color: var(--primary); margin: 0 auto 24px; transition: transform 0.3s ease, opacity 0.3s ease; }
.process-step:hover .process-number { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); transform: scale(1.1); }
.process-step h3 { margin-bottom: 12px; }
.process-step p { color: var(--gray-600); font-size: 0.95rem; }

/* ----- ZONES ----- */
.zones-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.zones-text h2 { margin-bottom: 20px; }
.zones-text p { color: var(--gray-600); margin-bottom: 32px; }
.zones-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 32px; }
.zone-item { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: var(--gray-50); border-radius: var(--radius); font-weight: 500; color: var(--gray-700); transition: transform 0.2s ease, opacity 0.2s ease; }
.zone-item:hover { background: var(--primary); color: var(--white); }
.zone-item svg { color: var(--primary); flex-shrink: 0; }
.zone-item:hover svg { color: var(--white); }
.zones-map { background: var(--gray-100); border-radius: var(--radius-lg); padding: 40px; display: flex; align-items: center; justify-content: center; min-height: 400px; position: relative; }
.zones-map-image { width: 100%; height: 100%; min-height: 350px; background: var(--gray-100); border-radius: var(--radius-lg); overflow: hidden; }
.zones-map-image img { width: 100%; height: 100%; object-fit: contain; }

/* ----- CTA ----- */
.cta { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%); pointer-events: none; }
.cta-inner { text-align: center; position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta h2 { color: var(--white); margin-bottom: 20px; }
.cta p { font-size: 1.25rem; opacity: 0.9; margin-bottom: 32px; }
.cta .btn-group { justify-content: center; }
.cta-phone { margin-top: 24px; font-size: 1.125rem; }
.cta-phone a { color: var(--white); font-weight: 700; font-size: 1.5rem; }

/* ----- TESTIMONIALS ----- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; transition: transform 0.3s ease; will-change: transform; }
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-stars { color: var(--warning); font-size: 1.25rem; margin-bottom: 16px; }
.testimonial-text { font-size: 1.05rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1.1rem; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 600; color: var(--gray-900); }
.testimonial-location { font-size: 0.875rem; color: var(--gray-500); }

/* ----- FAQ ----- */
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 16px; margin: 0 -16px; background: none; border: none; border-radius: var(--radius); cursor: pointer; text-align: left; font-family: var(--font-family); font-size: 1.125rem; font-weight: 600; color: var(--gray-900); transition: transform 0.2s ease, opacity 0.2s ease; }
.faq-question:hover { color: var(--primary); background: rgba(79, 70, 229, 0.05); }
.faq-item.active .faq-question { color: var(--primary); }
.faq-question svg { flex-shrink: 0; transition: transform 0.3s ease; color: var(--gray-400); }
.faq-question:hover svg, .faq-item.active .faq-question svg { color: var(--primary); }
.faq-item.active .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; will-change: max-height; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner { padding-bottom: 24px; color: var(--gray-600); line-height: 1.7; }

/* ----- GROUP LSF SERVICES ----- */
.group-services { background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%); border-top: 1px solid var(--gray-200); }
.group-header { text-align: center; margin-bottom: 48px; }
.group-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: var(--gray-100); color: var(--gray-600); font-size: 0.875rem; font-weight: 500; border-radius: var(--radius-full); margin-bottom: 16px; }
.group-header h2 { font-size: 1.75rem; margin-bottom: 12px; }
.group-header p { color: var(--gray-600); max-width: 600px; margin: 0 auto; }
.group-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.group-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; text-align: center; transition: transform 0.3s ease; position: relative; overflow: hidden; will-change: transform; }
.group-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gray-200); }
.group-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.group-card:hover::before { background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%); }
.group-card-icon { width: 64px; height: 64px; background: var(--gray-100); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--primary); }
.group-card-icon svg { width: 32px; height: 32px; }
.group-card:hover .group-card-icon { background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%); color: var(--white); }
.group-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.group-card .group-site { color: var(--primary); font-weight: 600; font-size: 0.9rem; margin-bottom: 12px; }
.group-card p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 20px; line-height: 1.6; }
.group-card .btn { width: 100%; }

/* ----- BREADCRUMB ----- */
.breadcrumb { padding: 100px 0 0; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--gray-500); font-size: 0.9rem; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li::after { content: '/'; color: var(--gray-400); }
.breadcrumb li:last-child::after { content: none; }
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb li:last-child { color: var(--gray-900); font-weight: 500; }

/* ----- WHATSAPP STICKY ----- */
.whatsapp-sticky {
 position: fixed; bottom: 24px; right: 24px; z-index: 999;
 display: flex; align-items: center; gap: 12px;
 background: #25D366; color: var(--white); padding: 14px 20px;
 border-radius: var(--radius-full); box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
 text-decoration: none; font-weight: 600; font-size: 0.95rem;
 transition: transform 0.3s ease;
 will-change: transform;
}
.whatsapp-sticky:hover { background: #20BA5A; transform: translateY(-3px); box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5); color: var(--white); }
.whatsapp-sticky svg { width: 24px; height: 24px; flex-shrink: 0; }
.whatsapp-sticky span { white-space: nowrap; }

/* ----- FOOTER ----- */
.footer { background: var(--gray-900); color: var(--gray-400); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { max-width: 300px; }
.footer-logo { display: flex; align-items: center; gap: 12px; font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 20px; }
.footer-logo .logo-icon { background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%); }
.footer-logo .logo-tld { color: var(--primary-light); }
.footer-brand p { line-height: 1.7; margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-contact-item svg { color: var(--primary-light); flex-shrink: 0; }
.footer-contact-item a { color: var(--gray-400); }
.footer-contact-item a:hover { color: var(--white); }
.footer h4, .footer .footer-heading { color: var(--white); font-size: 1rem; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--gray-400); transition: transform 0.2s ease, opacity 0.2s ease; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--gray-500); font-size: 0.875rem; }
.footer-legal a:hover { color: var(--white); }
.footer-disclaimer { font-size: 0.8rem; color: var(--gray-500); margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); line-height: 1.6; }

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
 .header-inner { height: 70px; }
 .header-cta .btn { display: none; }
 .nav { position: fixed; top: 0; right: 0; width: 300px; height: 100vh; background: var(--white); flex-direction: column; align-items: stretch; padding: 100px 24px 40px; gap: 0; box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15); transform: translateX(100%); transition: transform 0.3s ease; z-index: 999; will-change: transform; }
 .nav.active { transform: translateX(0); }
 .nav a { padding: 16px 0; border-bottom: 1px solid var(--gray-100); border-radius: 0; font-size: 1.1rem; }
 .nav a:last-child { border-bottom: none; }
 .mobile-menu-btn { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; z-index: 1001; }
 .mobile-menu-btn.active svg line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
 .mobile-menu-btn.active svg line:nth-child(2) { opacity: 0; }
 .mobile-menu-btn.active svg line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
 .mobile-menu-btn svg line { transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center; }
 .mobile-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.5); opacity: 0; visibility: hidden; transition: opacity 0.3s ease; z-index: 998; will-change: opacity; }
 .mobile-overlay.active { opacity: 1; visibility: visible; }
 .hero-inner { grid-template-columns: 1fr; text-align: center; }
 .hero-content .btn-group { justify-content: center; }
 .hero-visual { max-width: 500px; margin: 0 auto; }
 .problems-grid, .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
 .process-grid { grid-template-columns: repeat(2, 1fr); }
 .process-grid::before { display: none; }
 .zones-content { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: repeat(2, 1fr); }
 .group-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
 .header-phone span { display: none; }
 .header-phone { width: 44px; height: 44px; background: var(--gray-100); border-radius: var(--radius); justify-content: center; }
 .logo { font-size: 1.25rem; }
 .logo-icon { width: 38px; height: 38px; }
 .logo-icon svg { width: 20px; height: 20px; }
 .section { padding: 60px 0; }
 .hero { padding: 100px 0 60px; }
 .hero-stats { grid-template-columns: 1fr; }
 .hero-floating { display: none; }
 .trust-items { flex-direction: column; gap: 16px; }
 .process-grid { grid-template-columns: 1fr; }
 .zones-list { grid-template-columns: 1fr; }
 .btn-group { flex-direction: column; }
 .btn-group .btn { width: 100%; }
 .footer-grid { grid-template-columns: 1fr; }
 .footer-bottom { flex-direction: column; text-align: center; }
 .whatsapp-sticky { bottom: 20px; right: 20px; padding: 14px; border-radius: 50%; }
 .whatsapp-sticky span { display: none; }
}
@media (max-width: 480px) {
 .header-inner { height: 60px; gap: 8px; }
 .logo { font-size: 1.1rem; gap: 8px; }
 .logo-icon { width: 34px; height: 34px; }
 .mobile-menu-btn { width: 40px; height: 40px; }
 .header-phone { width: 40px; height: 40px; }
 .container { padding: 0 16px; }
}
