/* ============================================================
   FIDUCIAIRE LUXEMBOURG — LEAD GEN CSS
   Design System : Moderne, Pro, Conversion-Optimisé
   ============================================================ */

/* ── VARIABLES ────────────────────────────────────────────── */
:root {
    --primary: #1e3a5f;
    --primary-dark: #142942;
    --primary-light: #2a5080;
    --accent: #e8a838;
    --accent-hover: #d4952c;
    --success: #22c55e;
    --text: #1a1a2e;
    --text-light: #4a5568;
    --text-muted: #718096;
    --bg: #ffffff;
    --bg-light: #f7f8fc;
    --bg-dark: #0f1923;
    --border: #e2e8f0;
    --border-light: #edf2f7;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --header-height: 72px;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── BOUTONS ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-cta {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(232, 168, 56, 0.3);
}
.btn-cta:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232, 168, 56, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ── BARRE SUPÉRIEURE ─────────────────────────────────────── */
.top-bar {
    background: var(--primary-dark);
    color: #fff;
    font-size: 0.85rem;
    padding: 6px 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left {
    display: flex;
    gap: 20px;
}
.top-link {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.top-link:hover { color: var(--accent); }

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
}
.lang-link {
    color: rgba(255,255,255,0.6);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s;
}
.lang-link:hover,
.lang-link.active {
    color: #fff;
    background: rgba(255,255,255,0.15);
}

/* ── HEADER ───────────────────────────────────────────────── */
.main-header {
    background: #fff;
    height: var(--header-height);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
}
.logo:hover { color: var(--primary); }
.logo-icon svg { stroke: var(--accent); }
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-text strong { font-size: 1.1rem; }
.logo-text small { font-size: 0.75rem; color: var(--text-muted); }

/* Navigation */
.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 4px;
}
.main-nav ul li a {
    padding: 8px 16px;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.main-nav ul li a:hover {
    color: var(--primary);
    background: var(--bg-light);
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav-cta {
    padding: 10px 24px !important;
    font-size: 0.9rem !important;
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 240px;
    padding: 8px 0;
    z-index: 100;
    border: 1px solid var(--border-light);
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown { display: block; }
.dropdown li a {
    display: block;
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
}
.dropdown li a:hover { background: var(--bg-light); }

.dropdown-mega {
    min-width: 780px;
    padding: 24px;
    display: none;
    flex-wrap: wrap;
    gap: 28px;
    right: 0;
    left: auto;
}
.has-dropdown:hover .dropdown-mega,
.has-dropdown.open .dropdown-mega { display: flex; }
.dropdown-region strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.dropdown-region ul { display: block; }
.dropdown-region ul li a {
    padding: 4px 0 !important;
    font-size: 0.88rem !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
    border-radius: 2px;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: #fff;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232,168,56,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}
.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
    font-weight: 500;
}
.hero-text {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    margin-bottom: 32px;
    max-width: 560px;
}
.hero-stats {
    display: flex;
    gap: 32px;
}
.stat {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}
.stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
}

/* Page Hero (services, villes, contact) */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 60px 0 50px;
    text-align: center;
}
.page-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.page-hero-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    max-width: 650px;
    margin: 0 auto 24px;
}
.city-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 16px;
    font-weight: 500;
}
.city-hero-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}
.city-hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── SECTIONS ─────────────────────────────────────────────── */
.section { padding: 80px 0; }
.bg-light { background: var(--bg-light); }
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
}
.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ── SERVICES GRID ────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--text);
}
.service-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    color: var(--text);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.service-icon svg { stroke: var(--primary); }
.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-dark);
}
.service-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    flex-grow: 1;
    margin-bottom: 16px;
}
.card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
}

/* ── WHY US ───────────────────────────────────────────────── */
.section-why { background: var(--bg-light); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-card {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-icon svg { stroke: var(--primary); }
.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-dark);
}
.why-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ── CITIES GRID ──────────────────────────────────────────── */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}
.region-block h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
}
.region-block ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    color: var(--text);
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
    transition: all 0.2s;
}
.region-block ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}
.city-pop {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.stars { display: flex; gap: 2px; margin-bottom: 16px; }
.star { font-size: 1.2rem; color: var(--border); }
.star.filled { color: var(--accent); }
.testimonial-card blockquote p {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
}
.testimonial-author strong {
    font-size: 0.95rem;
    color: var(--primary-dark);
}
.testimonial-author span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--primary-light); }
.faq-item summary {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}
.faq-item summary:hover { background: var(--bg-light); }
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform 0.2s;
}
.faq-item[open] summary::after {
    content: '−';
    color: var(--primary);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ── CTA FINAL ────────────────────────────────────────────── */
.section-cta-final {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}
.cta-final-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.cta-final-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    font-size: 1.1rem;
}
.cta-final-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-final-buttons .btn-outline {
    border-color: #fff;
    color: #fff;
}
.cta-final-buttons .btn-outline:hover {
    background: #fff;
    color: var(--primary);
}

/* ── CONTENT PAGES (service, city, cross) ─────────────────── */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}
.content-main { min-width: 0; }
.content-block {
    margin-bottom: 40px;
}
.content-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}
.intro-text {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--text);
}
.content-block p {
    line-height: 1.8;
    color: var(--text-light);
}

/* Highlight box */
.highlight-box {
    background: var(--bg-light);
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.highlight-box svg { flex-shrink: 0; stroke: var(--accent); margin-top: 2px; }
.highlight-box p { color: var(--text); font-weight: 500; margin: 0; }

/* Advantages */
.advantages-list {
    display: grid;
    gap: 12px;
}
.advantages-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text);
    padding: 8px 0;
}
.advantages-list li svg { flex-shrink: 0; }

/* Coverage links */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 8px;
}
.coverage-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.92rem;
    transition: all 0.2s;
}
.coverage-link:hover {
    background: var(--primary);
    color: #fff;
}
.coverage-link:hover svg { stroke: #fff; }

/* Services local grid (city page) */
.services-local-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}
.service-local-card {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    transition: all 0.2s;
}
.service-local-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    color: var(--text);
}
.service-local-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--primary-dark);
}
.service-local-card span {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

/* Communes list */
.communes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
}
.communes-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    padding: 6px 0;
}

/* Nearby grid */
.nearby-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.nearby-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text);
    transition: all 0.2s;
}
.nearby-link:hover {
    background: var(--primary);
    color: #fff;
}

/* Internal links */
.links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}
.internal-link {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--text);
    transition: all 0.2s;
}
.internal-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Sidebar */
.content-sidebar { min-width: 0; }
.sidebar-sticky {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb {
    background: var(--bg-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}
.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 0.85rem;
}
.breadcrumb ol li::after { content: '/'; margin-left: 8px; color: var(--text-muted); }
.breadcrumb ol li:last-child::after { content: ''; }
.breadcrumb ol li a { color: var(--text-muted); }
.breadcrumb ol li a:hover { color: var(--primary); }
.breadcrumb ol li[aria-current="page"] { color: var(--text); font-weight: 500; }

/* ── FORMULAIRE ───────────────────────────────────────────── */
.lead-form-wrapper {
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-lg);
}
.hero .lead-form-wrapper {
    background: #fff;
    color: var(--text);
}
.form-header {
    text-align: center;
    margin-bottom: 24px;
}
.form-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
}
.form-header p {
    font-size: 0.92rem;
    color: var(--text-light);
}
.form-trust {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 500;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--bg);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
}
.form-group textarea { resize: vertical; }

.form-consent {
    margin: 14px 0;
}
.checkbox-label {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 0.82rem;
    color: var(--text-light);
    cursor: pointer;
}
.checkbox-label input {
    margin-top: 3px;
    flex-shrink: 0;
}
.checkbox-label a { color: var(--primary); text-decoration: underline; }

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1.05rem;
    font-weight: 700;
}
.spinner {
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
    text-align: center;
    padding: 24px;
}
.form-success svg { margin: 0 auto 12px; }
.form-success p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--success);
}

.form-alternative {
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.form-alternative p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.15rem;
}

/* Compact form */
.lead-form-wrapper.compact {
    padding: 20px;
}
.lead-form-wrapper.compact .form-grid {
    grid-template-columns: 1fr;
}

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}
.contact-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.contact-card h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 24px;
}
.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.contact-item svg {
    flex-shrink: 0;
    stroke: var(--primary);
    margin-top: 2px;
}
.contact-item strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.contact-item a,
.contact-item span {
    color: var(--text);
    font-size: 0.95rem;
}

.whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    margin-top: 20px;
    transition: background 0.2s;
}
.whatsapp-cta:hover {
    background: #20bd5a;
    color: #fff;
}

/* ── PAGES LÉGALES ───────────────────────────────────────── */
.legal-content {
    max-width: 800px;
}
.legal-content .content-block {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}
.legal-content .content-block:last-child {
    border-bottom: none;
}
.legal-content p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
}
.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}
.legal-list {
    list-style: disc;
    padding-left: 24px;
    margin: 12px 0;
}
.legal-list li {
    padding: 4px 0;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.main-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.85);
    padding: 64px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-col h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.footer-col p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}
.footer-col ul li {
    margin-bottom: 8px;
}
.footer-col ul li a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent); }

.footer-contact {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
}
.footer-contact a:hover { color: var(--accent); }
.footer-contact svg { stroke: var(--accent); }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.footer-social a {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}
.footer-social a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ── MOBILE CTA BAR ───────────────────────────────────────── */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
    padding: 10px 16px;
    gap: 10px;
}
.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
}
.mobile-cta-btn.phone {
    background: var(--primary);
    color: #fff;
}
.mobile-cta-btn.quote {
    background: var(--accent);
    color: #fff;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-form { max-width: 480px; }
    .content-grid { grid-template-columns: 1fr; }
    .content-sidebar { order: -1; }
    .sidebar-sticky { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .top-bar-left { flex-direction: column; gap: 4px; }
    .email-link { display: none; }

    .mobile-toggle { display: flex; }
    .main-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        overflow-y: auto;
        z-index: 999;
    }
    .main-nav.active { display: flex; }
    .main-nav > ul {
        flex-direction: column;
        width: 100%;
    }
    .main-nav ul li a {
        display: block;
        padding: 14px 16px;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--border-light);
    }
    .dropdown, .dropdown-mega {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        display: none !important;
        min-width: unset;
        flex-wrap: wrap;
    }
    .has-dropdown.open .dropdown { display: block !important; }
    .has-dropdown.open .dropdown-mega { display: flex !important; }
    .dropdown-mega { min-width: unset; right: auto; left: 0; }
    .has-dropdown > a::after {
        content: ' ▾';
        font-size: 0.7em;
    }
    .nav-cta { width: 100%; text-align: center; justify-content: center; margin-top: 16px; }

    .hero { padding: 50px 0 40px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .page-hero h1 { font-size: 1.6rem; }
    .section { padding: 50px 0; }
    .section-header h2 { font-size: 1.5rem; }

    .why-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .form-grid { grid-template-columns: 1fr; }
    .lead-form-wrapper { padding: 24px 20px; }

    .mobile-cta-bar { display: flex; }
    .main-footer { padding-bottom: 80px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.7rem; }
    .hero-stats { gap: 16px; }
    .stat-number { font-size: 1.4rem; }
    .container { padding: 0 16px; }
    .form-trust { flex-direction: column; align-items: center; }
}
