/* ==========================================================================
   Fixéo Design System
   Identité : Navy profond + Jaune ambré
   Police : Inter | Layout split liste/carte
   ========================================================================== */

/* ─── 1. Variables & Reset ───────────────────────────────────────────────── */
:root {
    /* Couleurs — Navy (primaire) */
    --fixeo-blue-50:  #e8f0fb;
    --fixeo-blue-100: #c2d5f0;
    --fixeo-blue-200: #94b5e3;
    --fixeo-blue-500: #1a4a8a;
    --fixeo-blue-600: #0f3172;   /* Navy primaire */
    --fixeo-blue-700: #0a2356;   /* Navy hover */

    /* Couleurs — Jaune ambré (accent) */
    --fixeo-yellow-400: #f59e0b;
    --fixeo-yellow-300: #fbbf24;
    --fixeo-yellow-100: #fef3c7;

    /* Couleurs — Neutres */
    --fixeo-gray-50:  #f9fafb;
    --fixeo-gray-100: #f3f4f6;
    --fixeo-gray-200: #e5e7eb;
    --fixeo-gray-300: #d1d5db;
    --fixeo-gray-400: #9ca3af;
    --fixeo-gray-500: #6b7280;
    --fixeo-gray-600: #4b5563;
    --fixeo-gray-700: #374151;
    --fixeo-gray-800: #1f2937;
    --fixeo-gray-900: #111827;

    --fixeo-green-500: #22c55e;
    --fixeo-green-100: #dcfce7;
    --fixeo-red-500:   #ef4444;
    --fixeo-red-100:   #fee2e2;
    --fixeo-white:     #ffffff;

    /* Typographie */
    --fixeo-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --fixeo-font-size-xs:   0.75rem;
    --fixeo-font-size-sm:   0.875rem;
    --fixeo-font-size-base: 1rem;
    --fixeo-font-size-md:   1.125rem;
    --fixeo-font-size-lg:   1.25rem;
    --fixeo-font-size-xl:   1.5rem;
    --fixeo-font-size-2xl:  2rem;
    --fixeo-font-size-3xl:  2.5rem;

    /* Espacements */
    --fixeo-space-1: 0.25rem;
    --fixeo-space-2: 0.5rem;
    --fixeo-space-3: 0.75rem;
    --fixeo-space-4: 1rem;
    --fixeo-space-5: 1.25rem;
    --fixeo-space-6: 1.5rem;
    --fixeo-space-8: 2rem;
    --fixeo-space-10: 2.5rem;
    --fixeo-space-12: 3rem;
    --fixeo-space-16: 4rem;

    /* Radius */
    --fixeo-radius-sm: 6px;
    --fixeo-radius:    10px;
    --fixeo-radius-md: 14px;
    --fixeo-radius-lg: 20px;
    --fixeo-radius-full: 9999px;

    /* Ombres */
    --fixeo-shadow-xs: 0 1px 2px rgba(0,0,0,.05);
    --fixeo-shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
    --fixeo-shadow:    0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
    --fixeo-shadow-md: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.05);
    --fixeo-shadow-lg: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.04);

    /* Layout */
    --fixeo-header-h: 64px;
    --fixeo-sidebar-w: 480px;   /* Liste artisans — plus large */

    /* Transitions */
    --fixeo-transition: 150ms ease;
    --fixeo-transition-md: 250ms ease;

    /* Thème sémantique (light) */
    --fixeo-bg:          var(--fixeo-gray-50);
    --fixeo-surface:     var(--fixeo-white);
    --fixeo-surface-2:   var(--fixeo-gray-100);
    --fixeo-border:      var(--fixeo-gray-200);
    --fixeo-text:        var(--fixeo-gray-800);
    --fixeo-text-muted:  var(--fixeo-gray-500);
    --fixeo-text-subtle: var(--fixeo-gray-400);
}

/* ─── Dark mode — tons navy profonds ─────────────────────────────────────── */
[data-theme="dark"] {
    --fixeo-bg:          #060d1f;
    --fixeo-surface:     #0d1f3c;
    --fixeo-surface-2:   #132a52;
    --fixeo-border:      #1e3a6b;
    --fixeo-text:        #e8f0fb;
    --fixeo-text-muted:  #8aabcf;
    --fixeo-text-subtle: #4f7aab;
    --fixeo-white:       #0d1f3c;
    --fixeo-gray-50:     #060d1f;
    --fixeo-gray-100:    #0d1f3c;
    --fixeo-gray-200:    #1e3a6b;
    --fixeo-gray-300:    #2a5099;
    --fixeo-gray-400:    #4f7aab;
    --fixeo-gray-500:    #8aabcf;
    --fixeo-gray-600:    #b8d0e8;
    --fixeo-gray-700:    #cfe0f0;
    --fixeo-gray-800:    #e0ecf8;
    --fixeo-gray-900:    #f0f7ff;
    /* Jaune reste lumineux en dark */
    --fixeo-yellow-400:  #fbbf24;
    --fixeo-yellow-100:  #1c1400;
    color-scheme: dark;
}

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

html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body.fixeo-app {
    font-family: var(--fixeo-font);
    font-size: var(--fixeo-font-size-base);
    color: var(--fixeo-gray-800);
    background: var(--fixeo-gray-50);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── 2. Header ──────────────────────────────────────────────────────────── */
.fixeo-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--fixeo-header-h);
    background: var(--fixeo-white);
    border-bottom: 1px solid var(--fixeo-gray-200);
    box-shadow: var(--fixeo-shadow-xs);
}

.fixeo-header__inner {
    display: flex;
    align-items: center;
    gap: var(--fixeo-space-6);
    height: 100%;
    width: 100%;
    padding: 0 var(--fixeo-space-8);
}

.fixeo-header__logo {
    display: flex;
    align-items: center;
    gap: var(--fixeo-space-2);
    flex-shrink: 0;
}

/* Logo wordmark texte */
.fixeo-logo-wordmark {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--fixeo-blue-600);
    letter-spacing: -.04em;
    line-height: 1;
}
.fixeo-logo-accent {
    color: var(--fixeo-yellow-400);
}
[data-theme="dark"] .fixeo-logo-wordmark { color: #e8f0fb; }
[data-theme="dark"] .fixeo-logo-accent   { color: var(--fixeo-yellow-300); }

.fixeo-header__logo-text {
    font-size: var(--fixeo-font-size-lg);
    font-weight: 700;
    color: var(--fixeo-gray-900);
    letter-spacing: -0.02em;
}

.fixeo-header__nav {
    display: flex;
    align-items: center;
    gap: var(--fixeo-space-1);
    flex: 1;
}

.fixeo-header__nav-link {
    padding: var(--fixeo-space-2) var(--fixeo-space-3);
    border-radius: var(--fixeo-radius-sm);
    font-size: var(--fixeo-font-size-sm);
    font-weight: 500;
    color: var(--fixeo-gray-600);
    transition: color var(--fixeo-transition), background var(--fixeo-transition);
}

.fixeo-header__nav-link:hover,
.fixeo-header__nav-link.is-active {
    color: var(--fixeo-gray-900);
    background: var(--fixeo-gray-100);
}

.fixeo-header__actions {
    display: flex;
    align-items: center;
    gap: var(--fixeo-space-2);
    margin-left: auto;
}

.fixeo-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: var(--fixeo-space-2);
    border-radius: var(--fixeo-radius-sm);
}

.fixeo-header__burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--fixeo-gray-700);
    border-radius: 2px;
    transition: transform var(--fixeo-transition);
}

/* ─── 3. Boutons ─────────────────────────────────────────────────────────── */
.fixeo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--fixeo-space-2);
    padding: var(--fixeo-space-2) var(--fixeo-space-4);
    border-radius: var(--fixeo-radius-sm);
    font-size: var(--fixeo-font-size-sm);
    font-weight: 600;
    border: 1.5px solid transparent;
    transition: all var(--fixeo-transition);
    white-space: nowrap;
    line-height: 1.4;
}

.fixeo-btn--primary {
    background: var(--fixeo-blue-600);
    color: var(--fixeo-white);
    border-color: var(--fixeo-blue-600);
}
.fixeo-btn--primary:hover {
    background: var(--fixeo-blue-700);
    border-color: var(--fixeo-blue-700);
    box-shadow: 0 0 0 3px var(--fixeo-blue-100);
}

.fixeo-btn--ghost {
    background: transparent;
    color: var(--fixeo-gray-700);
    border-color: var(--fixeo-gray-200);
}
.fixeo-btn--ghost:hover {
    background: var(--fixeo-gray-100);
    border-color: var(--fixeo-gray-300);
}

.fixeo-btn--outline {
    background: transparent;
    color: var(--fixeo-blue-600);
    border-color: var(--fixeo-blue-600);
}
.fixeo-btn--outline:hover {
    background: var(--fixeo-blue-50);
}

.fixeo-btn--accent {
    background: var(--fixeo-yellow-400);
    color: var(--fixeo-blue-700);
    border-color: var(--fixeo-yellow-400);
    font-weight: 700;
}
.fixeo-btn--accent:hover {
    background: var(--fixeo-yellow-300);
    border-color: var(--fixeo-yellow-300);
    box-shadow: 0 0 0 3px var(--fixeo-yellow-100);
}

.fixeo-btn--danger {
    background: var(--fixeo-red-500);
    color: var(--fixeo-white);
}

.fixeo-btn--sm {
    padding: var(--fixeo-space-1) var(--fixeo-space-3);
    font-size: var(--fixeo-font-size-xs);
    border-radius: var(--fixeo-radius-sm);
}

.fixeo-btn--lg {
    padding: var(--fixeo-space-3) var(--fixeo-space-6);
    font-size: var(--fixeo-font-size-base);
    border-radius: var(--fixeo-radius);
}

.fixeo-btn--full { width: 100%; }

.fixeo-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ─── 4. Layout principal ────────────────────────────────────────────────── */
.fixeo-main {
    min-height: calc(100vh - var(--fixeo-header-h));
}

/* Layout split liste + carte (page recherche) */
.fixeo-split-layout {
    display: grid;
    grid-template-columns: var(--fixeo-sidebar-w) 1fr;
    height: calc(100vh - var(--fixeo-header-h));
    overflow: hidden;
}

.fixeo-split-layout__list {
    overflow-y: auto;
    background: var(--fixeo-white);
    border-right: 1px solid var(--fixeo-gray-200);
    display: flex;
    flex-direction: column;
}

.fixeo-split-layout__map {
    position: relative;
    background: var(--fixeo-gray-200);
}

/* Layout conteneur standard */
.fixeo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--fixeo-space-6);
}

.fixeo-container--wide {
    max-width: 1440px;
}

/* ─── 5. Barre de recherche ──────────────────────────────────────────────── */
.fixeo-search-bar {
    display: flex;
    align-items: center;
    gap: var(--fixeo-space-2);
    background: var(--fixeo-white);
    border: 1.5px solid var(--fixeo-gray-200);
    border-radius: var(--fixeo-radius-full);
    padding: var(--fixeo-space-2) var(--fixeo-space-3);
    transition: border-color var(--fixeo-transition), box-shadow var(--fixeo-transition);
}

.fixeo-search-bar:focus-within {
    border-color: var(--fixeo-blue-500);
    box-shadow: 0 0 0 3px var(--fixeo-blue-100);
}

.fixeo-search-bar__icon {
    color: var(--fixeo-gray-400);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.fixeo-search-bar__input {
    flex: 1;
    border: none;
    outline: none;
    font-size: var(--fixeo-font-size-sm);
    color: var(--fixeo-gray-800);
    background: transparent;
}

.fixeo-search-bar__input::placeholder {
    color: var(--fixeo-gray-400);
}

.fixeo-search-bar__divider {
    width: 1px;
    height: 18px;
    background: var(--fixeo-gray-200);
    flex-shrink: 0;
}

/* Barre de recherche hero (grande) */
.fixeo-search-hero {
    display: flex;
    align-items: stretch;
    background: var(--fixeo-white);
    border-radius: var(--fixeo-radius-md);
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
    overflow: hidden;
    max-width: 860px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.fixeo-search-hero__field {
    display: flex;
    align-items: center;
    gap: var(--fixeo-space-3);
    flex: 1;
    padding: var(--fixeo-space-4) var(--fixeo-space-5);
    border-right: 1px solid var(--fixeo-gray-200);
}

.fixeo-search-hero__field:last-of-type { border-right: none; }

.fixeo-search-hero__field input,
.fixeo-search-hero__field select {
    border: none;
    outline: none;
    font-size: var(--fixeo-font-size-base);
    color: var(--fixeo-gray-800);
    background: transparent;
    width: 100%;
}

.fixeo-search-hero__field label {
    font-size: var(--fixeo-font-size-xs);
    font-weight: 600;
    color: var(--fixeo-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 2px;
}

.fixeo-search-hero__btn {
    background: var(--fixeo-blue-600);
    color: var(--fixeo-white);
    border: none;
    padding: var(--fixeo-space-4) var(--fixeo-space-6);
    font-size: var(--fixeo-font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--fixeo-transition);
    display: flex;
    align-items: center;
    gap: var(--fixeo-space-2);
}

.fixeo-search-hero__btn:hover {
    background: var(--fixeo-blue-700);
}

/* ─── 6. Filtres chips ───────────────────────────────────────────────────── */
.fixeo-filters {
    display: flex;
    align-items: center;
    gap: var(--fixeo-space-2);
    flex-wrap: wrap;
    padding: var(--fixeo-space-3) var(--fixeo-space-4);
    border-bottom: 1px solid var(--fixeo-gray-100);
    background: var(--fixeo-white);
}

.fixeo-chip {
    display: inline-flex;
    align-items: center;
    gap: var(--fixeo-space-1);
    padding: var(--fixeo-space-1) var(--fixeo-space-3);
    border-radius: var(--fixeo-radius-full);
    font-size: var(--fixeo-font-size-sm);
    font-weight: 500;
    border: 1.5px solid var(--fixeo-gray-200);
    background: var(--fixeo-white);
    color: var(--fixeo-gray-700);
    cursor: pointer;
    transition: all var(--fixeo-transition);
    white-space: nowrap;
}

.fixeo-chip:hover {
    border-color: var(--fixeo-gray-300);
    background: var(--fixeo-gray-50);
}

.fixeo-chip.is-active {
    background: var(--fixeo-blue-600);
    border-color: var(--fixeo-blue-600);
    color: var(--fixeo-white);
}

.fixeo-chip__remove {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}
.fixeo-chip__remove:hover { opacity: 1; }

/* ─── 7. Carte artisan (liste) ───────────────────────────────────────────── */
.fixeo-artisan-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0;
    background: var(--fixeo-white);
    border-bottom: 1px solid var(--fixeo-gray-100);
    cursor: pointer;
    transition: background var(--fixeo-transition);
    position: relative;
}

.fixeo-artisan-card:hover {
    background: var(--fixeo-gray-50);
}

.fixeo-artisan-card.is-highlighted {
    background: var(--fixeo-blue-50);
    border-left: 3px solid var(--fixeo-blue-600);
}

.fixeo-artisan-card__photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
    background: var(--fixeo-gray-200);
}

.fixeo-artisan-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.fixeo-artisan-card:hover .fixeo-artisan-card__photo img {
    transform: scale(1.04);
}

.fixeo-artisan-card__badge {
    position: absolute;
    top: var(--fixeo-space-2);
    left: var(--fixeo-space-2);
    padding: 2px var(--fixeo-space-2);
    border-radius: var(--fixeo-radius-full);
    font-size: 11px;
    font-weight: 600;
    background: var(--fixeo-gray-900);
    color: var(--fixeo-white);
}

.fixeo-artisan-card__badge--new {
    background: var(--fixeo-green-500);
}

.fixeo-artisan-card__body {
    padding: var(--fixeo-space-3) var(--fixeo-space-4);
    display: flex;
    flex-direction: column;
    gap: var(--fixeo-space-2);
}

.fixeo-artisan-card__meta {
    display: flex;
    align-items: center;
    gap: var(--fixeo-space-2);
    flex-wrap: wrap;
}

.fixeo-artisan-card__trade {
    font-size: var(--fixeo-font-size-xs);
    color: var(--fixeo-gray-500);
    font-weight: 500;
}

.fixeo-artisan-card__name {
    font-size: var(--fixeo-font-size-base);
    font-weight: 700;
    color: var(--fixeo-gray-900);
    line-height: 1.3;
}

.fixeo-artisan-card__rating {
    display: flex;
    align-items: center;
    gap: var(--fixeo-space-1);
}

.fixeo-artisan-card__rating-score {
    font-size: var(--fixeo-font-size-sm);
    font-weight: 700;
    color: var(--fixeo-gray-900);
}

.fixeo-artisan-card__rating-count {
    font-size: var(--fixeo-font-size-xs);
    color: var(--fixeo-gray-500);
}

.fixeo-artisan-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.fixeo-artisan-card__distance {
    font-size: var(--fixeo-font-size-xs);
    color: var(--fixeo-gray-500);
    display: flex;
    align-items: center;
    gap: 3px;
}

/* ─── 8. Étoiles ─────────────────────────────────────────────────────────── */
.fixeo-stars {
    display: inline-flex;
    gap: 1px;
}

.fixeo-star {
    width: 14px;
    height: 14px;
    color: var(--fixeo-gray-300);
}

.fixeo-star--full { color: var(--fixeo-yellow-400); }
.fixeo-star--half { color: var(--fixeo-yellow-400); }

/* ─── 9. Marqueurs carte Leaflet ─────────────────────────────────────────── */
.fixeo-map-marker {
    background: var(--fixeo-gray-900);
    color: var(--fixeo-white);
    border-radius: var(--fixeo-radius-full);
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--fixeo-font);
    box-shadow: var(--fixeo-shadow-sm);
    border: 2px solid var(--fixeo-white);
    cursor: pointer;
    transition: transform var(--fixeo-transition), background var(--fixeo-transition);
    white-space: nowrap;
}

.fixeo-map-marker:hover,
.fixeo-map-marker.is-active {
    background: var(--fixeo-blue-600);
    transform: scale(1.1);
    z-index: 10;
}

/* Popup carte */
.fixeo-map-popup {
    width: 240px;
    border-radius: var(--fixeo-radius-md);
    overflow: hidden;
    box-shadow: var(--fixeo-shadow-lg);
    font-family: var(--fixeo-font);
}

.fixeo-map-popup .leaflet-popup-content-wrapper {
    border-radius: var(--fixeo-radius-md);
    padding: 0;
    overflow: hidden;
}

.fixeo-map-popup .leaflet-popup-content {
    margin: 0;
    width: 240px !important;
}

.fixeo-map-popup .leaflet-popup-tip-container {
    display: none;
}

.fixeo-popup-card__photo {
    height: 130px;
    overflow: hidden;
    background: var(--fixeo-gray-200);
}

.fixeo-popup-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fixeo-popup-card__body {
    padding: var(--fixeo-space-3);
}

.fixeo-popup-card__name {
    font-size: var(--fixeo-font-size-sm);
    font-weight: 700;
    color: var(--fixeo-gray-900);
    margin-bottom: var(--fixeo-space-1);
}

.fixeo-popup-card__trade {
    font-size: var(--fixeo-font-size-xs);
    color: var(--fixeo-gray-500);
    margin-bottom: var(--fixeo-space-2);
}

.fixeo-popup-card .fixeo-btn--primary {
    color: var(--fixeo-white) !important;
}

/* ─── 10. Galerie de réalisations ────────────────────────────────────────── */

/* Grille partagée dashboard + profil public */
.fixeo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--fixeo-space-3);
}

/* Grille publique : jusqu'à 6 colonnes sur grand écran */
.fixeo-gallery-grid--public {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

/* Item générique */
.fixeo-gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--fixeo-radius-md);
    overflow: hidden;
    background: var(--fixeo-gray-100);
}

.fixeo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 200ms ease;
}

/* Overlay au survol */
.fixeo-gallery-item__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 150ms ease;
}

.fixeo-gallery-item:hover .fixeo-gallery-item__overlay {
    opacity: 1;
}

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

/* Overlay dashboard : fond rouge pour la corbeille */
.fixeo-gallery-item__overlay:not(.fixeo-gallery-item__overlay--zoom) {
    background: rgba(0, 0, 0, .45);
}

/* Overlay profil public : fond sombre léger + icône zoom */
.fixeo-gallery-item__overlay--zoom {
    background: rgba(0, 0, 0, .35);
}

/* Bouton supprimer (dashboard) */
.fixeo-gallery-item__delete {
    background: #ef4444;
    color: #fff;
    border: none;
    border-radius: var(--fixeo-radius-full);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 150ms;
}

.fixeo-gallery-item__delete:hover {
    background: #dc2626;
}

/* Bouton item cliquable (profil public) */
.fixeo-gallery-item--clickable {
    cursor: pointer;
    border: none;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
}

/* Zone d'upload drag & drop */
.fixeo-gallery-upload {
    aspect-ratio: 4 / 3;
    border-radius: var(--fixeo-radius-md);
    border: 2px dashed var(--fixeo-gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 150ms, background 150ms;
    background: var(--fixeo-gray-50);
    user-select: none;
}

.fixeo-gallery-upload:hover,
.fixeo-gallery-upload.is-drag-over {
    border-color: var(--fixeo-blue-400);
    background: var(--fixeo-blue-50);
}

.fixeo-gallery-upload.is-loading {
    cursor: wait;
    pointer-events: none;
}

/* Spinner upload */
@keyframes fixeo-spin { to { transform: rotate(360deg); } }

.fixeo-gallery-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--fixeo-gray-200);
    border-top-color: var(--fixeo-blue-600);
    border-radius: 50%;
    animation: fixeo-spin .7s linear infinite;
    margin: 0 auto;
}

/* ── Lightbox ─────────────────────────────────────────────────────────────── */
.fixeo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, .92);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixeo-lightbox__img-wrap {
    max-width: min(90vw, 1200px);
    max-height: 85vh;
    display: flex;
    align-items: center;
}

.fixeo-lightbox__img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--fixeo-radius-md);
    object-fit: contain;
    display: block;
}

.fixeo-lightbox__close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, .15);
    border: none;
    color: #fff;
    border-radius: var(--fixeo-radius-full);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 150ms;
    z-index: 10001;
}

.fixeo-lightbox__close:hover {
    background: rgba(255, 255, 255, .25);
}

.fixeo-lightbox__nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .15);
    border: none;
    color: #fff;
    border-radius: var(--fixeo-radius-full);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 150ms;
    z-index: 10001;
}

.fixeo-lightbox__nav:hover {
    background: rgba(255, 255, 255, .25);
}

.fixeo-lightbox__nav--prev { left: 16px; }
.fixeo-lightbox__nav--next { right: 16px; }

.fixeo-lightbox__counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, .6);
    color: #fff;
    font-size: var(--fixeo-font-size-sm);
    padding: 4px 12px;
    border-radius: var(--fixeo-radius-full);
}

/* [x-cloak] masqué jusqu'à l'initialisation Alpine */
[x-cloak] { display: none !important; }

/* ─── 11. Google Places — Dropdown custom ────────────────────────────────────
 * Rendu entièrement dans notre design system via AutocompleteSuggestion API.
 * Aucun web component tiers — contrôle total sur le style.
 * ─────────────────────────────────────────────────────────────────────────── */

.fixeo-places-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--fixeo-white);
    border: 1.5px solid var(--fixeo-gray-200);
    border-radius: var(--fixeo-radius-sm);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    list-style: none;
    margin: 0;
    padding: var(--fixeo-space-1);
    z-index: 500;
    overflow: hidden;
}

.fixeo-places-item {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: var(--fixeo-space-2) var(--fixeo-space-3);
    border-radius: calc(var(--fixeo-radius-sm) - 2px);
    cursor: pointer;
    transition: background 100ms ease;
}

.fixeo-places-item:hover,
.fixeo-places-item.is-active {
    background: var(--fixeo-gray-50);
}

.fixeo-places-item__main {
    font-size: var(--fixeo-font-size-sm);
    font-weight: 500;
    color: var(--fixeo-gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fixeo-places-item__sec {
    font-size: var(--fixeo-font-size-xs);
    color: var(--fixeo-gray-400);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ─── 12. Formulaires ────────────────────────────────────────────────────── */
.fixeo-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--fixeo-space-2);
}

.fixeo-label {
    font-size: var(--fixeo-font-size-sm);
    font-weight: 600;
    color: var(--fixeo-gray-700);
}

.fixeo-input {
    width: 100%;
    padding: var(--fixeo-space-3) var(--fixeo-space-4);
    border: 1.5px solid var(--fixeo-gray-200);
    border-radius: var(--fixeo-radius-sm);
    font-size: var(--fixeo-font-size-sm);
    color: var(--fixeo-gray-800);
    background: var(--fixeo-white);
    outline: none;
    transition: border-color var(--fixeo-transition), box-shadow var(--fixeo-transition);
}

.fixeo-input:focus {
    border-color: var(--fixeo-blue-500);
    box-shadow: 0 0 0 3px var(--fixeo-blue-100);
}

.fixeo-input::placeholder { color: var(--fixeo-gray-400); }

.fixeo-input--error {
    border-color: var(--fixeo-red-500);
}

.fixeo-input-hint {
    font-size: var(--fixeo-font-size-xs);
    color: var(--fixeo-gray-500);
}

.fixeo-input-error {
    font-size: var(--fixeo-font-size-xs);
    color: var(--fixeo-red-500);
}

.fixeo-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.fixeo-textarea {
    resize: vertical;
    min-height: 100px;
}

/* ─── 11. Avatar ─────────────────────────────────────────────────────────── */
.fixeo-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--fixeo-radius-full);
    background: var(--fixeo-blue-100);
    color: var(--fixeo-blue-700);
    font-weight: 700;
    flex-shrink: 0;
    overflow: hidden;
}

.fixeo-avatar--sm { width: 32px; height: 32px; font-size: var(--fixeo-font-size-sm); }
.fixeo-avatar--md { width: 40px; height: 40px; font-size: var(--fixeo-font-size-base); }
.fixeo-avatar--lg { width: 56px; height: 56px; font-size: var(--fixeo-font-size-lg); }
.fixeo-avatar--xl { width: 80px; height: 80px; font-size: var(--fixeo-font-size-xl); }

.fixeo-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── 12. Menu utilisateur ───────────────────────────────────────────────── */
.fixeo-user-menu {
    position: relative;
}

.fixeo-user-menu__trigger {
    display: flex;
    align-items: center;
    gap: var(--fixeo-space-2);
    padding: var(--fixeo-space-1) var(--fixeo-space-2);
    border-radius: var(--fixeo-radius-sm);
    background: none;
    border: none;
    color: var(--fixeo-gray-700);
    font-size: var(--fixeo-font-size-sm);
    font-weight: 500;
    transition: background var(--fixeo-transition);
}

.fixeo-user-menu__trigger:hover { background: var(--fixeo-gray-100); }

.fixeo-user-menu__name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fixeo-user-menu__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: var(--fixeo-white);
    border: 1px solid var(--fixeo-gray-200);
    border-radius: var(--fixeo-radius-md);
    box-shadow: var(--fixeo-shadow-lg);
    padding: var(--fixeo-space-2);
    z-index: 200;
}

.fixeo-user-menu__item {
    display: block;
    padding: var(--fixeo-space-2) var(--fixeo-space-3);
    border-radius: var(--fixeo-radius-sm);
    font-size: var(--fixeo-font-size-sm);
    color: var(--fixeo-gray-700);
    transition: background var(--fixeo-transition);
}

.fixeo-user-menu__item:hover { background: var(--fixeo-gray-100); }
.fixeo-user-menu__item--danger { color: var(--fixeo-red-500); }
.fixeo-user-menu__item--danger:hover { background: var(--fixeo-red-100); }

.fixeo-user-menu__divider {
    height: 1px;
    background: var(--fixeo-gray-100);
    margin: var(--fixeo-space-2) 0;
}

/* ─── 13. Sélecteur de langue ────────────────────────────────────────────── */
.fixeo-lang-picker { position: relative; }

.fixeo-lang-picker__trigger {
    display: flex;
    align-items: center;
    gap: var(--fixeo-space-1);
    padding: var(--fixeo-space-1) var(--fixeo-space-2);
    background: none;
    border: none;
    color: var(--fixeo-gray-600);
    font-size: var(--fixeo-font-size-sm);
    font-weight: 500;
    border-radius: var(--fixeo-radius-sm);
    transition: background var(--fixeo-transition);
}

.fixeo-lang-picker__trigger:hover { background: var(--fixeo-gray-100); }

.fixeo-lang-picker__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--fixeo-white);
    border: 1px solid var(--fixeo-gray-200);
    border-radius: var(--fixeo-radius-md);
    box-shadow: var(--fixeo-shadow-lg);
    padding: var(--fixeo-space-2);
    min-width: 140px;
    z-index: 200;
}

.fixeo-lang-picker__option {
    display: block;
    padding: var(--fixeo-space-2) var(--fixeo-space-3);
    border-radius: var(--fixeo-radius-sm);
    font-size: var(--fixeo-font-size-sm);
    color: var(--fixeo-gray-700);
    transition: background var(--fixeo-transition);
}

.fixeo-lang-picker__option:hover { background: var(--fixeo-gray-100); }

/* ─── 14. Mobile nav ─────────────────────────────────────────────────────── */
.fixeo-mobile-nav {
    display: none;
    background: var(--fixeo-white);
    border-top: 1px solid var(--fixeo-gray-100);
    padding: var(--fixeo-space-4) var(--fixeo-space-6);
}

.fixeo-mobile-nav__link {
    display: block;
    padding: var(--fixeo-space-3) 0;
    font-size: var(--fixeo-font-size-base);
    font-weight: 500;
    color: var(--fixeo-gray-700);
    border-bottom: 1px solid var(--fixeo-gray-100);
}

/* ─── 15. Footer ─────────────────────────────────────────────────────────── */
.fixeo-footer {
    background: var(--fixeo-gray-900);
    color: var(--fixeo-gray-400);
    padding: var(--fixeo-space-12) 0 var(--fixeo-space-6);
    margin-top: auto;
}

.fixeo-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--fixeo-space-6);
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: var(--fixeo-space-12);
    margin-bottom: var(--fixeo-space-10);
}

.fixeo-footer__brand .fixeo-header__logo-text { color: var(--fixeo-white); }

.fixeo-footer__tagline {
    margin-top: var(--fixeo-space-3);
    font-size: var(--fixeo-font-size-sm);
    line-height: 1.6;
}

.fixeo-footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--fixeo-space-8);
}

.fixeo-footer__col h4 {
    font-size: var(--fixeo-font-size-sm);
    font-weight: 600;
    color: var(--fixeo-white);
    margin-bottom: var(--fixeo-space-4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.fixeo-footer__col a {
    display: block;
    font-size: var(--fixeo-font-size-sm);
    color: var(--fixeo-gray-400);
    margin-bottom: var(--fixeo-space-2);
    transition: color var(--fixeo-transition);
}

.fixeo-footer__col a:hover { color: var(--fixeo-white); }

.fixeo-footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--fixeo-space-6) var(--fixeo-space-6) 0;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: var(--fixeo-font-size-xs);
    text-align: center;
}

/* ─── 16. Dashboard sidebar ──────────────────────────────────────────────── */
.fixeo-dashboard {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: calc(100vh - var(--fixeo-header-h));
}

.fixeo-sidebar {
    background: var(--fixeo-white);
    border-right: 1px solid var(--fixeo-gray-200);
    padding: var(--fixeo-space-6) var(--fixeo-space-3);
}

.fixeo-sidebar__section {
    margin-bottom: var(--fixeo-space-6);
}

.fixeo-sidebar__label {
    font-size: var(--fixeo-font-size-xs);
    font-weight: 600;
    color: var(--fixeo-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0 var(--fixeo-space-3);
    margin-bottom: var(--fixeo-space-2);
}

.fixeo-sidebar__link {
    display: flex;
    align-items: center;
    gap: var(--fixeo-space-3);
    padding: var(--fixeo-space-2) var(--fixeo-space-3);
    border-radius: var(--fixeo-radius-sm);
    font-size: var(--fixeo-font-size-sm);
    font-weight: 500;
    color: var(--fixeo-gray-600);
    transition: all var(--fixeo-transition);
}

.fixeo-sidebar__link:hover {
    background: var(--fixeo-gray-100);
    color: var(--fixeo-gray-900);
}

.fixeo-sidebar__link.is-active {
    background: var(--fixeo-blue-50);
    color: var(--fixeo-blue-600);
    font-weight: 600;
}

.fixeo-dashboard__content {
    padding: var(--fixeo-space-8);
    background: var(--fixeo-gray-50);
}

/* ─── 17. Cards génériques ───────────────────────────────────────────────── */
.fixeo-card {
    background: var(--fixeo-white);
    border-radius: var(--fixeo-radius-md);
    border: 1px solid var(--fixeo-gray-200);
    box-shadow: var(--fixeo-shadow-xs);
    padding: var(--fixeo-space-6);
}

.fixeo-card__title {
    font-size: var(--fixeo-font-size-lg);
    font-weight: 700;
    color: var(--fixeo-gray-900);
    margin-bottom: var(--fixeo-space-4);
}

/* Stat cards */
.fixeo-stat-card {
    background: var(--fixeo-white);
    border-radius: var(--fixeo-radius-md);
    border: 1px solid var(--fixeo-gray-200);
    padding: var(--fixeo-space-5) var(--fixeo-space-6);
    display: flex;
    flex-direction: column;
    gap: var(--fixeo-space-2);
}

.fixeo-stat-card__value {
    font-size: var(--fixeo-font-size-2xl);
    font-weight: 800;
    color: var(--fixeo-gray-900);
    letter-spacing: -0.03em;
}

.fixeo-stat-card__label {
    font-size: var(--fixeo-font-size-sm);
    color: var(--fixeo-gray-500);
}

.fixeo-stat-card__trend {
    font-size: var(--fixeo-font-size-xs);
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--fixeo-radius-full);
}

.fixeo-stat-card__trend--up {
    background: var(--fixeo-green-100);
    color: #15803d;
}

.fixeo-stat-card__trend--down {
    background: var(--fixeo-red-100);
    color: var(--fixeo-red-500);
}

/* ─── 18. Badges / Tags ──────────────────────────────────────────────────── */
.fixeo-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px var(--fixeo-space-2);
    border-radius: var(--fixeo-radius-full);
    font-size: var(--fixeo-font-size-xs);
    font-weight: 600;
    line-height: 1.4;
}

.fixeo-badge--blue    { background: var(--fixeo-blue-100);    color: var(--fixeo-blue-700); }
.fixeo-badge--green   { background: var(--fixeo-green-100);   color: #15803d; }
.fixeo-badge--yellow  { background: var(--fixeo-yellow-100);  color: #a16207; }
.fixeo-badge--red     { background: var(--fixeo-red-100);     color: var(--fixeo-red-500); }
.fixeo-badge--gray    { background: var(--fixeo-gray-100);    color: var(--fixeo-gray-600); }

/* ─── 19. Icônes ─────────────────────────────────────────────────────────── */
.fixeo-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}
.fixeo-icon--xs { width: 12px; height: 12px; }
.fixeo-icon--sm { width: 16px; height: 16px; }
.fixeo-icon--md { width: 20px; height: 20px; }
.fixeo-icon--lg { width: 24px; height: 24px; }

/* ─── 20. Alertes / Notifications ────────────────────────────────────────── */
.fixeo-alert {
    display: flex;
    align-items: flex-start;
    gap: var(--fixeo-space-3);
    padding: var(--fixeo-space-4);
    border-radius: var(--fixeo-radius);
    font-size: var(--fixeo-font-size-sm);
}

.fixeo-alert--info    { background: var(--fixeo-blue-50);    color: var(--fixeo-blue-700);  border: 1px solid var(--fixeo-blue-200); }
.fixeo-alert--success { background: var(--fixeo-green-100);  color: #15803d;                border: 1px solid #bbf7d0; }
.fixeo-alert--warning { background: var(--fixeo-yellow-100); color: #92400e;                border: 1px solid #fde68a; }
.fixeo-alert--error   { background: var(--fixeo-red-100);    color: var(--fixeo-red-500);   border: 1px solid #fecaca; }

/* ─── 21. Pagination ─────────────────────────────────────────────────────── */
.fixeo-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--fixeo-space-1);
    padding: var(--fixeo-space-4);
}

.fixeo-page-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--fixeo-radius-sm);
    font-size: var(--fixeo-font-size-sm);
    font-weight: 500;
    background: none;
    border: 1.5px solid transparent;
    color: var(--fixeo-gray-700);
    cursor: pointer;
    transition: all var(--fixeo-transition);
}

.fixeo-page-btn:hover { background: var(--fixeo-gray-100); }
.fixeo-page-btn.is-active {
    background: var(--fixeo-blue-600);
    color: var(--fixeo-white);
    border-color: var(--fixeo-blue-600);
}

/* ─── 22. Loading / Skeleton ─────────────────────────────────────────────── */
.fixeo-skeleton {
    background: linear-gradient(90deg, var(--fixeo-gray-200) 25%, var(--fixeo-gray-100) 50%, var(--fixeo-gray-200) 75%);
    background-size: 200% 100%;
    animation: fixeo-skeleton-shimmer 1.5s infinite;
    border-radius: var(--fixeo-radius-sm);
}

@keyframes fixeo-skeleton-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ─── 23. Section héro accueil ───────────────────────────────────────────── */
.fixeo-hero {
    background: linear-gradient(135deg, #040c20 0%, #0f3172 55%, #1a4a8a 100%);
    color: var(--fixeo-white);
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88vh;
    padding: var(--fixeo-space-8) var(--fixeo-space-6);
}
/* Wrapper qui clippe les slides/overlay sans clipper le dropdown de recherche */
.fixeo-hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Slider variant */
.fixeo-hero--slider {
    background: #040c20;
}

/* Slider CSS-only — chaque slide s'affiche pendant ~14% du cycle total */
@keyframes fixeoSlide {
    0%       { opacity: 1; }   /* visible dès le départ (delay gère l'ordre) */
    13%      { opacity: 1; }
    16%      { opacity: 0; }   /* fondu sortant */
    99%      { opacity: 0; }
    100%     { opacity: 1; }   /* prêt pour le prochain cycle */
}

@keyframes fixeoDot {
    0%, 13%  { background: var(--fixeo-yellow-300); width: 24px; }
    16%      { background: rgba(255,255,255,.35);   width: 8px; }
    99%      { background: rgba(255,255,255,.35);   width: 8px; }
    100%     { background: var(--fixeo-yellow-300); width: 24px; }
}

.fixeo-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;  /* caché pendant le delay des slides 2-7 */
    animation-name: fixeoSlide;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-fill-mode: none;
}

/* Slide 1 doit être visible avant que son animation démarre (delay 0 = instantané) */
.fixeo-hero__slide:first-child { opacity: 1; }

/* Slider dots */
.fixeo-hero__dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.fixeo-hero__dot {
    height: 8px;
    width: 8px;
    border-radius: 99px;
    background: rgba(255,255,255,.35);
    animation-name: fixeoDot;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-fill-mode: none;
}

.fixeo-hero__dot:first-child { background: var(--fixeo-yellow-300); width: 24px; }

.fixeo-hero__content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 5;
    width: 100%;
}

.fixeo-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: var(--fixeo-space-4);
}

.fixeo-hero__subtitle {
    font-size: var(--fixeo-font-size-md);
    opacity: 0.85;
    margin-bottom: var(--fixeo-space-8);
    line-height: 1.6;
}

/* ─── 24. Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    :root {
        --fixeo-sidebar-w: 420px;
    }
}

@media (max-width: 768px) {
    .fixeo-header__nav { display: none; }
    .fixeo-header__burger { display: flex; }
    .fixeo-mobile-nav { display: block; }

    .fixeo-split-layout {
        grid-template-columns: 1fr;
        height: auto;
        overflow: visible;
    }

    .fixeo-split-layout__list {
        height: auto;
        max-height: none;
        overflow: visible;
    }

    .fixeo-split-layout__map {
        height: 400px;
        order: -1;
    }

    .fixeo-dashboard {
        grid-template-columns: 1fr;
    }

    .fixeo-sidebar {
        display: none;
    }

    .fixeo-footer__inner {
        grid-template-columns: 1fr;
        gap: var(--fixeo-space-8);
    }

    .fixeo-footer__links {
        grid-template-columns: 1fr 1fr;
    }

    .fixeo-hero { min-height: 100svh; }
    .fixeo-hero__title { font-size: 1.75rem; }

    .fixeo-search-hero {
        flex-direction: column;
        border-radius: var(--fixeo-radius);
    }

    .fixeo-search-hero__field {
        border-right: none;
        border-bottom: 1px solid var(--fixeo-gray-200);
    }
}

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

    .fixeo-header__logo-text { display: none; }
    .fixeo-user-menu__name   { display: none; }
}

/* ─── 25. Dropdown nav "Trouver un artisan" ──────────────────────────────── */
.fixeo-nav-dropdown {
    position: relative;
}

.fixeo-nav-dropdown__trigger {
    display: flex;
    align-items: center;
    gap: 5px;
}

.fixeo-nav-dropdown__caret {
    transition: transform var(--fixeo-transition);
    flex-shrink: 0;
    margin-top: 1px;
}

.fixeo-nav-dropdown:hover .fixeo-nav-dropdown__caret {
    transform: rotate(180deg);
}

.fixeo-nav-dropdown__panel {
    position: absolute;
    top: calc(100% + 8px);
    left: -8px;
    min-width: 340px;
    background: var(--fixeo-white);
    border: 1px solid var(--fixeo-gray-200);
    border-radius: var(--fixeo-radius-md);
    box-shadow: var(--fixeo-shadow-lg);
    padding: var(--fixeo-space-2);
    z-index: 200;
    /* Pont invisible pour ne pas perdre le hover entre le lien et le panel */
    margin-top: -2px;
}

/* Petit pont transparent pour éviter le gap entre trigger et panel */
.fixeo-nav-dropdown__panel::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.fixeo-nav-dropdown__item {
    display: flex;
    align-items: flex-start;
    gap: var(--fixeo-space-3);
    padding: var(--fixeo-space-3) var(--fixeo-space-3);
    border-radius: var(--fixeo-radius-sm);
    text-decoration: none;
    transition: background var(--fixeo-transition);
    color: var(--fixeo-gray-800);
}

.fixeo-nav-dropdown__item:hover,
.fixeo-nav-dropdown__item.is-active {
    background: var(--fixeo-gray-50);
}

.fixeo-nav-dropdown__item.is-active strong {
    color: var(--fixeo-blue-600);
}

.fixeo-nav-dropdown__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: var(--fixeo-radius-sm);
    background: var(--fixeo-gray-100);
    color: var(--fixeo-gray-700);
    flex-shrink: 0;
    margin-top: 1px;
}

.fixeo-nav-dropdown__item-icon--ai {
    background: linear-gradient(135deg, var(--fixeo-blue-50), #f5f3ff);
    color: #7c3aed;
}

.fixeo-nav-dropdown__item strong {
    font-size: var(--fixeo-font-size-sm);
    font-weight: 600;
    color: var(--fixeo-gray-900);
    line-height: 1;
}

.fixeo-nav-dropdown__item-desc {
    display: block;
    font-size: var(--fixeo-font-size-xs);
    color: var(--fixeo-gray-400);
    font-weight: 400;
    line-height: 1.4;
}

/* ─── 26. Switcher d'onglets (pages recherche) ───────────────────────────── */
.fixeo-search-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    background: var(--fixeo-gray-100);
    border-radius: var(--fixeo-radius-full);
    padding: 3px;
    flex-shrink: 0;
}

.fixeo-search-nav__tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--fixeo-radius-full);
    font-size: var(--fixeo-font-size-xs);
    font-weight: 600;
    color: var(--fixeo-gray-600);
    transition: all var(--fixeo-transition);
    white-space: nowrap;
    text-decoration: none;
}

.fixeo-search-nav__tab:hover {
    color: var(--fixeo-gray-900);
    background: rgba(255,255,255,.6);
}

.fixeo-search-nav__tab.is-active {
    background: var(--fixeo-white);
    color: var(--fixeo-blue-600);
    box-shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 1px rgba(0,0,0,.06);
}

.fixeo-search-nav__tab--ai.is-active {
    color: #7c3aed;
}

.fixeo-ai-badge {
    display: inline-flex;
    align-items: center;
    padding: 1px 6px;
    border-radius: var(--fixeo-radius-full);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    color: white;
    line-height: 1.6;
}

/* ─── 26. Topbar carte + nav ─────────────────────────────────────────────── */
.fixeo-mapview__topbar {
    display: flex;
    align-items: center;
    gap: var(--fixeo-space-3);
    background: var(--fixeo-white);
    border-bottom: 1px solid var(--fixeo-gray-200);
    padding: var(--fixeo-space-2) var(--fixeo-space-4);
    flex-shrink: 0;
    flex-wrap: wrap;
    box-shadow: var(--fixeo-shadow-xs);
    z-index: 10;
}

.fixeo-mapview__topbar--plain {
    padding: var(--fixeo-space-3) var(--fixeo-space-6);
}

.fixeo-mapview__search {
    display: flex;
    align-items: center;
    gap: var(--fixeo-space-2);
    flex: 1;
    flex-wrap: wrap;
}

.fixeo-search-bar--compact { border-radius: var(--fixeo-radius-sm); }
.fixeo-chip--sm {
    padding: 3px 10px;
    font-size: var(--fixeo-font-size-xs);
}

/* ─── 27. Panneau flottant carte ─────────────────────────────────────────── */
.fixeo-mapview__panel {
    position: absolute;
    top: var(--fixeo-space-4);
    left: var(--fixeo-space-4);
    bottom: var(--fixeo-space-4);
    width: 420px;
    background: var(--fixeo-white);
    border-radius: var(--fixeo-radius-md);
    box-shadow: var(--fixeo-shadow-lg);
    display: flex;
    flex-direction: column;
    z-index: 20;
    transform: translateX(0);
    transition: transform var(--fixeo-transition-md), opacity var(--fixeo-transition-md);
    overflow: hidden;
}

.fixeo-mapview__panel:not(.is-open) {
    transform: translateX(calc(-100% - var(--fixeo-space-4)));
}

.fixeo-mapview__panel-toggle {
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
    width: 32px;
    height: 48px;
    background: var(--fixeo-white);
    border: 1px solid var(--fixeo-gray-200);
    border-left: none;
    border-radius: 0 var(--fixeo-radius-sm) var(--fixeo-radius-sm) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 2px 0 6px rgba(0,0,0,.08);
    z-index: 1;
    color: var(--fixeo-gray-600);
}

.fixeo-mapview__panel-header {
    padding: var(--fixeo-space-3) var(--fixeo-space-4);
    border-bottom: 1px solid var(--fixeo-gray-100);
    flex-shrink: 0;
    font-size: var(--fixeo-font-size-sm);
    color: var(--fixeo-gray-600);
}

.fixeo-mapview__panel-count strong { color: var(--fixeo-gray-900); }

.fixeo-mapview__panel-list {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
}

/* ─── 28. Carte artisan compacte (panneau carte) ─────────────────────────── */
.fixeo-artisan-card-compact {
    display: flex;
    align-items: center;
    gap: var(--fixeo-space-3);
    padding: var(--fixeo-space-3) var(--fixeo-space-4);
    border-bottom: 1px solid var(--fixeo-gray-100);
    transition: background var(--fixeo-transition);
    position: relative;
    cursor: pointer;
}

.fixeo-artisan-card-compact:hover { background: var(--fixeo-gray-50); }
.fixeo-artisan-card-compact.is-highlighted {
    background: var(--fixeo-blue-50);
    border-left: 3px solid var(--fixeo-blue-600);
}

.fixeo-artisan-card-compact__avatar {
    width: 52px;
    height: 52px;
    border-radius: var(--fixeo-radius);
    background: var(--fixeo-blue-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 1.5px solid var(--fixeo-gray-200);
}

.fixeo-artisan-card-compact__body { flex: 1; min-width: 0; }

.fixeo-artisan-card-compact__new {
    position: absolute;
    top: 8px;
    right: 10px;
    background: var(--fixeo-green-500);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: var(--fixeo-radius-full);
}

/* ─── 29. Hero avec image de fond ────────────────────────────────────────── */
.fixeo-hero--img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fixeo-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(4,12,32,.82) 0%, rgba(10,35,90,.72) 50%, rgba(4,12,32,.88) 100%);
    pointer-events: none;
    z-index: 2;
}

/* ─── 30. Carte artisan à la une (home) ──────────────────────────────────── */
.fixeo-featured-card {
    transition: transform var(--fixeo-transition), box-shadow var(--fixeo-transition-md);
    border-radius: var(--fixeo-radius-md);
}
.fixeo-featured-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--fixeo-shadow-md);
}

/* ─── 31. Recherche IA — composants ─────────────────────────────────────── */
.fixeo-ai-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--fixeo-radius-full);
    background: linear-gradient(135deg, var(--fixeo-blue-600), #7c3aed);
    color: white;
    margin: 0 auto var(--fixeo-space-4);
}

.fixeo-ai-icon--sm {
    width: 32px;
    height: 32px;
    border-radius: var(--fixeo-radius-full);
    background: linear-gradient(135deg, var(--fixeo-blue-600), #7c3aed);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0;
}

.fixeo-ai-example-chip {
    padding: 8px 16px;
    border-radius: var(--fixeo-radius-full);
    border: 1.5px solid var(--fixeo-gray-200);
    background: var(--fixeo-white);
    color: var(--fixeo-gray-700);
    font-size: var(--fixeo-font-size-xs);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--fixeo-transition);
    font-family: inherit;
    text-align: left;
}

.fixeo-ai-example-chip:hover {
    border-color: var(--fixeo-blue-600);
    color: var(--fixeo-blue-600);
    background: var(--fixeo-blue-50);
}

.fixeo-ai-msg {
    display: flex;
    gap: var(--fixeo-space-3);
    margin-bottom: var(--fixeo-space-5);
    align-items: flex-start;
}

.fixeo-ai-msg--user {
    justify-content: flex-end;
}

.fixeo-ai-msg__bubble {
    max-width: 72%;
    background: var(--fixeo-blue-600);
    color: white;
    padding: var(--fixeo-space-3) var(--fixeo-space-4);
    border-radius: var(--fixeo-radius-md) var(--fixeo-radius-sm) var(--fixeo-radius-sm) var(--fixeo-radius-md);
    font-size: var(--fixeo-font-size-sm);
    line-height: 1.5;
}

.fixeo-ai-msg__text {
    background: var(--fixeo-gray-100);
    padding: var(--fixeo-space-3) var(--fixeo-space-4);
    border-radius: var(--fixeo-radius-sm) var(--fixeo-radius-md) var(--fixeo-radius-md) var(--fixeo-radius-sm);
    font-size: var(--fixeo-font-size-sm);
    color: var(--fixeo-gray-800);
    line-height: 1.6;
}

.fixeo-ai-artisan-card {
    display: flex;
    align-items: center;
    gap: var(--fixeo-space-3);
    padding: var(--fixeo-space-3) var(--fixeo-space-4);
    background: var(--fixeo-white);
    border: 1.5px solid var(--fixeo-gray-200);
    border-radius: var(--fixeo-radius-md);
    transition: all var(--fixeo-transition);
}
.fixeo-ai-artisan-card:hover {
    border-color: var(--fixeo-blue-200);
    box-shadow: var(--fixeo-shadow-sm);
    transform: translateY(-1px);
}

.fixeo-ai-artisan-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--fixeo-radius);
    background: var(--fixeo-blue-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 1.5px solid var(--fixeo-gray-200);
}

.fixeo-ai-input-wrap {
    background: var(--fixeo-white);
    border-radius: var(--fixeo-radius-lg);
    box-shadow: 0 8px 32px rgba(15,49,114,.15), 0 2px 8px rgba(0,0,0,.06);
    padding: var(--fixeo-space-2);
}

.fixeo-ai-input {
    display: flex;
    align-items: center;
    gap: var(--fixeo-space-2);
}

.fixeo-ai-input__field {
    flex: 1;
    border: none;
    outline: none;
    font-size: var(--fixeo-font-size-base);
    color: var(--fixeo-gray-800);
    background: transparent;
    padding: var(--fixeo-space-3) var(--fixeo-space-4);
    font-family: inherit;
}

.fixeo-ai-input__field::placeholder { color: var(--fixeo-gray-400); }

.fixeo-ai-input__btn {
    width: 44px;
    height: 44px;
    border-radius: var(--fixeo-radius);
    background: var(--fixeo-blue-600);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--fixeo-transition);
}
.fixeo-ai-input__btn:hover:not(:disabled) { background: var(--fixeo-blue-700); }
.fixeo-ai-input__btn:disabled { opacity: .5; cursor: not-allowed; }

/* Typing indicator */
.fixeo-ai-typing {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: var(--fixeo-space-3) var(--fixeo-space-4);
    background: var(--fixeo-gray-100);
    border-radius: var(--fixeo-radius-sm) var(--fixeo-radius-md) var(--fixeo-radius-md) var(--fixeo-radius-sm);
}
.fixeo-ai-typing span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--fixeo-gray-400);
    animation: fixeo-typing 1.2s infinite;
}
.fixeo-ai-typing span:nth-child(2) { animation-delay: .2s; }
.fixeo-ai-typing span:nth-child(3) { animation-delay: .4s; }

@keyframes fixeo-typing {
    0%, 60%, 100% { transform: translateY(0); opacity: .5; }
    30%            { transform: translateY(-5px); opacity: 1; }
}

/* Spin animation */
@keyframes fixeo-spin {
    to { transform: rotate(360deg); }
}
.fixeo-spin { animation: fixeo-spin .8s linear infinite; }

/* ─── 25. Utilitaires ────────────────────────────────────────────────────── */
.fixeo-sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

.fixeo-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fixeo-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--fixeo-space-4); }
.fixeo-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--fixeo-space-4); }
.fixeo-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--fixeo-space-4); }

.fixeo-flex   { display: flex; }
.fixeo-flex-col { display: flex; flex-direction: column; }
.fixeo-items-center { align-items: center; }
.fixeo-justify-between { justify-content: space-between; }
.fixeo-gap-2 { gap: var(--fixeo-space-2); }
.fixeo-gap-4 { gap: var(--fixeo-space-4); }

.fixeo-mt-4  { margin-top: var(--fixeo-space-4); }
.fixeo-mt-6  { margin-top: var(--fixeo-space-6); }
.fixeo-mt-8  { margin-top: var(--fixeo-space-8); }
.fixeo-mb-4  { margin-bottom: var(--fixeo-space-4); }
.fixeo-mb-6  { margin-bottom: var(--fixeo-space-6); }

.fixeo-text-sm  { font-size: var(--fixeo-font-size-sm); }
.fixeo-text-xs  { font-size: var(--fixeo-font-size-xs); }
.fixeo-text-muted { color: var(--fixeo-gray-500); }
.fixeo-text-center { text-align: center; }
.fixeo-font-bold { font-weight: 700; }

/* Alpine.js : masquer les éléments non initialisés */
[x-cloak] { display: none !important; }

/* ─── 32. Page listing — topbar recherche ───────────────────────────────── */
.fixeo-search-topbar-wrap {
    background: var(--fixeo-white);
    border-bottom: 1px solid var(--fixeo-gray-200);
    padding: var(--fixeo-space-4) var(--fixeo-space-6);
    flex-shrink: 0;
    box-shadow: var(--fixeo-shadow-xs);
}

.fixeo-search-fields-row {
    display: flex;
    gap: var(--fixeo-space-3);
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: var(--fixeo-space-3);
}

.fixeo-search-bar--search {
    border-radius: var(--fixeo-radius-md);
}

.fixeo-search-filters-row {
    display: flex;
    align-items: center;
    gap: var(--fixeo-space-2);
    flex-wrap: wrap;
}

.fixeo-search-meta-bar {
    padding: var(--fixeo-space-3) var(--fixeo-space-6);
    font-size: 14px;
    color: var(--fixeo-gray-500);
    border-bottom: 1px solid var(--fixeo-gray-100);
}
.fixeo-search-meta-bar strong { color: var(--fixeo-gray-900); }

/* ─── 33. Grille de cards artisans ─────────────────────────────────────── */
.fixeo-artisan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    padding: 24px var(--fixeo-space-6);
}

@media (max-width: 640px) {
    .fixeo-artisan-grid { grid-template-columns: 1fr; padding: 16px; }
}

.fixeo-artisan-grid-card {
    background: var(--fixeo-white);
    border-radius: 16px;
    border: 1.5px solid var(--fixeo-gray-100);
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    position: relative;
    cursor: pointer;
}

.fixeo-artisan-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(15, 49, 114, 0.14);
    border-color: var(--fixeo-blue-200);
}

.fixeo-artisan-grid-card.is-highlighted {
    border-color: var(--fixeo-blue-500);
    box-shadow: 0 0 0 3px var(--fixeo-blue-100), 0 16px 40px rgba(15, 49, 114, 0.12);
}

.fixeo-artisan-grid-card__header {
    height: 156px;
    background: linear-gradient(135deg, var(--fixeo-blue-700) 0%, var(--fixeo-blue-500) 60%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.fixeo-artisan-grid-card__header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.fixeo-artisan-grid-card:hover .fixeo-artisan-grid-card__header img {
    transform: scale(1.04);
}

.fixeo-artisan-grid-card__initial {
    font-size: 56px;
    font-weight: 800;
    color: rgba(255,255,255,0.85);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    user-select: none;
}

.fixeo-artisan-grid-card__body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fixeo-artisan-grid-card__trade {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--fixeo-blue-600);
    background: var(--fixeo-blue-50);
    display: inline-block;
    padding: 3px 8px;
    border-radius: 99px;
    align-self: flex-start;
    line-height: 1.4;
}

.fixeo-artisan-grid-card__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--fixeo-gray-900);
    line-height: 1.3;
    margin-top: 2px;
}

.fixeo-artisan-grid-card__rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    min-height: 20px;
}

.fixeo-artisan-grid-card__footer {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--fixeo-gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--fixeo-gray-400);
    gap: 8px;
}

.fixeo-artisan-grid-card__cta {
    font-size: 12px;
    font-weight: 600;
    color: var(--fixeo-blue-600);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}
.fixeo-artisan-grid-card:hover .fixeo-artisan-grid-card__cta {
    opacity: 1;
    transform: translateX(0);
}

.fixeo-artisan-grid-card__new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--fixeo-yellow-400);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

/* Dark mode grid cards */
[data-theme="dark"] .fixeo-artisan-grid-card {
    background: var(--fixeo-white);
    border-color: rgba(255,255,255,.07);
}
[data-theme="dark"] .fixeo-artisan-grid-card:hover {
    border-color: var(--fixeo-blue-500);
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
[data-theme="dark"] .fixeo-artisan-grid-card__trade {
    background: rgba(15,49,114,.3);
    color: #93b4f5;
}
[data-theme="dark"] .fixeo-search-topbar-wrap,
[data-theme="dark"] .fixeo-search-meta-bar {
    background: var(--fixeo-white);
    border-color: rgba(255,255,255,.07);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE CONTACT
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hero */
.fxc-hero {
    position: relative;
    min-height: 44vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 80px 24px;
    overflow: hidden;
}
.fxc-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
}
.fxc-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4,12,32,.88) 0%, rgba(15,49,114,.82) 60%, rgba(4,12,32,.9) 100%);
}
.fxc-hero__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}
.fxc-hero__content h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 16px;
}
.fxc-hero__content p {
    font-size: 1.05rem;
    opacity: .85;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Body layout */
.fxc-body {
    max-width: 1160px;
    margin: 0 auto;
    padding: 64px 24px 80px;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
}

/* ── Aside : infos + trust + faq ── */
.fxc-info-card {
    background: var(--fixeo-white);
    border: 1px solid var(--fixeo-gray-200);
    border-radius: var(--fixeo-radius-lg);
    padding: 28px;
    box-shadow: var(--fixeo-shadow);
    margin-bottom: 20px;
}
.fxc-info-card h2 {
    font-size: 15px;
    font-weight: 800;
    color: var(--fixeo-gray-900);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 20px;
}
.fxc-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--fixeo-gray-100);
}
.fxc-info-item:last-child { border-bottom: none; }
.fxc-info-item__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--fixeo-blue-50);
    color: var(--fixeo-blue-600);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fxc-info-item__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--fixeo-gray-400);
    margin-bottom: 3px;
}
.fxc-info-item__value {
    font-size: 14px;
    font-weight: 600;
    color: var(--fixeo-gray-900);
}
.fxc-info-item__value--link {
    color: var(--fixeo-blue-600);
    text-decoration: none;
}
.fxc-info-item__value--link:hover { text-decoration: underline; }

/* Trust badges */
.fxc-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.fxc-trust__item {
    background: var(--fixeo-blue-600);
    color: white;
    border-radius: var(--fixeo-radius-md);
    padding: 16px 10px;
    text-align: center;
}
.fxc-trust__num {
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}
.fxc-trust__label {
    font-size: 11px;
    opacity: .75;
    line-height: 1.3;
}

/* FAQ in aside */
.fxc-faq {
    background: var(--fixeo-white);
    border: 1px solid var(--fixeo-gray-200);
    border-radius: var(--fixeo-radius-lg);
    padding: 24px 28px;
    box-shadow: var(--fixeo-shadow);
}
.fxc-faq h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--fixeo-gray-900);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* ── Form panel ── */
.fxc-form-wrap {
    background: var(--fixeo-white);
    border: 1px solid var(--fixeo-gray-200);
    border-radius: var(--fixeo-radius-lg);
    box-shadow: var(--fixeo-shadow-lg);
    overflow: hidden;
}

.fxc-form {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fxc-form__header h2 {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 800;
    color: var(--fixeo-gray-900);
    letter-spacing: -.03em;
    margin-bottom: 6px;
}
.fxc-form__header p {
    font-size: 13px;
    color: var(--fixeo-gray-400);
}

/* Subject selector */
.fxc-subject-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.fxc-subject-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 10px;
    border-radius: var(--fixeo-radius-md);
    border: 1.5px solid var(--fixeo-gray-200);
    background: var(--fixeo-white);
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: var(--fixeo-gray-600);
    text-align: center;
    transition: border-color .15s, background .15s, color .15s;
    line-height: 1.3;
}
.fxc-subject-card svg { color: var(--fixeo-gray-400); transition: color .15s; }
.fxc-subject-card:hover {
    border-color: var(--fixeo-blue-300);
    background: var(--fixeo-blue-50);
    color: var(--fixeo-blue-700);
}
.fxc-subject-card:hover svg { color: var(--fixeo-blue-600); }
.fxc-subject-card--active {
    border-color: var(--fixeo-blue-600) !important;
    background: var(--fixeo-blue-50) !important;
    color: var(--fixeo-blue-700) !important;
}
.fxc-subject-card--active svg { color: var(--fixeo-blue-600) !important; }

/* Form fields */
.fxc-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.fxc-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.fxc-form__group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--fixeo-gray-700);
}
.fxc-input {
    width: 100%;
    border: 1.5px solid var(--fixeo-gray-200);
    border-radius: var(--fixeo-radius);
    padding: 11px 14px;
    font-size: 14px;
    color: var(--fixeo-gray-800);
    background: var(--fixeo-white);
    transition: border-color .15s, box-shadow .15s;
    outline: none;
    box-sizing: border-box;
}
.fxc-input:focus {
    border-color: var(--fixeo-blue-500);
    box-shadow: 0 0 0 3px var(--fixeo-blue-100);
}
.fxc-input::placeholder { color: var(--fixeo-gray-400); }
.fxc-input--textarea { resize: vertical; min-height: 130px; font-family: inherit; }

/* Submit */
.fxc-submit {
    width: 100%;
    padding: 15px 24px;
    background: var(--fixeo-blue-600);
    color: white;
    border: none;
    border-radius: var(--fixeo-radius);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fxc-submit:hover:not(:disabled) {
    background: var(--fixeo-blue-700);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(15,49,114,.25);
}
.fxc-submit:disabled { opacity: .65; cursor: not-allowed; }

.fxc-form__notice {
    font-size: 12px;
    color: var(--fixeo-gray-400);
    text-align: center;
    line-height: 1.5;
    margin-top: -8px;
}

/* Success state */
.fxc-success {
    padding: 60px 40px;
    text-align: center;
}
.fxc-success__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.fxc-success h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--fixeo-gray-900);
    margin-bottom: 10px;
}
.fxc-success p {
    color: var(--fixeo-gray-500);
    font-size: 15px;
    line-height: 1.6;
    max-width: 380px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
    .fxc-body { grid-template-columns: 1fr; gap: 32px; }
    .fxc-form { padding: 24px; }
    .fxc-subject-grid { grid-template-columns: repeat(2, 1fr); }
    .fxc-form__row { grid-template-columns: 1fr; }
    .fxc-hero { min-height: 36vh; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TOPBAR UNIFIÉE — Liste / Carte / IA
   ═══════════════════════════════════════════════════════════════════════════ */

.fxs-topbar {
    background: var(--fixeo-white);
    border-bottom: 1px solid var(--fixeo-gray-150, var(--fixeo-gray-200));
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    position: relative;
    z-index: 50;
}

.fxs-topbar__row {
    display: flex;
    align-items: center;
    gap: var(--fixeo-space-2);
    padding: 10px var(--fixeo-space-5);
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}
.fxs-topbar__row::-webkit-scrollbar { display: none; }

/* Hauteur uniforme pour tous les éléments interactifs de la topbar */
.fxs-topbar__row .fixeo-search-bar,
.fxs-topbar__row .fixeo-btn {
    height: 38px;
    box-sizing: border-box;
}

/* Search fields inside topbar */
.fxs-topbar__field {
    flex: 1;
    min-width: 140px;
    max-width: 280px;
}

/* ── Google Places dropdown (.pac-container) ─────────────────────────────── */
/* Doit être au-dessus de la carte Leaflet (z-index 400+) et du header */
.pac-container {
    z-index: 10000 !important;
    border-radius: 8px;
    border: 1px solid var(--fixeo-gray-200);
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    font-family: var(--fixeo-font);
    font-size: 13px;
    margin-top: 4px;
}
.pac-item {
    padding: 8px 12px;
    cursor: pointer;
    border-top: 1px solid var(--fixeo-gray-100);
    color: var(--fixeo-gray-700);
    line-height: 1.4;
}
.pac-item:first-child { border-top: none; }
.pac-item:hover, .pac-item-selected { background: var(--fixeo-gray-50); }
.pac-item-query { font-weight: 600; color: var(--fixeo-gray-900); }
.pac-matched { font-weight: 700; }
.pac-icon { display: none; } /* Masquer l'icône Google par défaut */

/* ── Autocomplete dropdown ───────────────────────────────────────────────── */
.fxs-autocomplete {
    position: absolute;
    /* Positionné par rapport à .fxs-topbar (position:relative), hors du conteneur overflow-x:auto */
    top: 58px;
    left: var(--fixeo-space-5);
    background: var(--fixeo-white);
    border: 1px solid var(--fixeo-gray-200);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(15,49,114,.13);
    z-index: 200;
    overflow: hidden;
    min-width: 320px;
    max-width: 420px;
}
.fxs-autocomplete__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background .1s;
}
.fxs-autocomplete__item:not(:last-child) {
    border-bottom: 1px solid var(--fixeo-gray-100);
}
.fxs-autocomplete__item:hover {
    background: var(--fixeo-gray-50);
}
.fxs-autocomplete__icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fxs-autocomplete__icon--categorie {
    background: #eff6ff;
    color: var(--fixeo-blue-600);
}
.fxs-autocomplete__icon--entreprise {
    background: #f0fdf4;
    color: #16a34a;
}
.fxs-autocomplete__main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.fxs-autocomplete__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--fixeo-gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fxs-autocomplete__sub {
    font-size: 11px;
    color: var(--fixeo-gray-400);
}
.fxs-autocomplete__badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 99px;
    flex-shrink: 0;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.fxs-autocomplete__badge--categorie {
    background: #dbeafe;
    color: var(--fixeo-blue-700, #1d4ed8);
}
.fxs-autocomplete__badge--entreprise {
    background: #dcfce7;
    color: #15803d;
}

/* Dropdown localisation (autocomplete lieu) — commun topbar + accueil */
.fxs-location-dropdown {
    background: var(--fixeo-white);
    border: 1px solid var(--fixeo-gray-200);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(15, 49, 114, .13);
    z-index: 9999;
    overflow: hidden;
}

/* Vertical separator */
.fxs-topbar__sep {
    width: 1px;
    height: 22px;
    background: var(--fixeo-gray-200);
    flex-shrink: 0;
    margin: 0 var(--fixeo-space-1);
}

/* "Plus de filtres" button */
.fxs-topbar__more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 99px;
    border: 1.5px solid var(--fixeo-gray-200);
    background: var(--fixeo-white);
    font-size: 13px;
    font-weight: 600;
    color: var(--fixeo-gray-600);
    cursor: pointer;
    white-space: nowrap;
    transition: border-color .15s, color .15s, background .15s;
    position: relative;
    flex-shrink: 0;
}
.fxs-topbar__more-btn:hover {
    border-color: var(--fixeo-blue-400);
    color: var(--fixeo-blue-600);
    background: var(--fixeo-blue-50);
}
.fxs-topbar__more-btn--active {
    border-color: var(--fixeo-blue-500);
    color: var(--fixeo-blue-600);
    background: var(--fixeo-blue-50);
}

/* Active filter dot indicator */
.fxs-topbar__more-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--fixeo-blue-600);
    border: 1.5px solid white;
}

/* Clear filters link */
.fxs-topbar__clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    border: none;
    background: none;
    font-size: 12px;
    font-weight: 500;
    color: var(--fixeo-gray-400);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .15s;
}
.fxs-topbar__clear-btn:hover {
    color: var(--fixeo-gray-700);
}

/* ── Filter overlay (dark backdrop) ── */
.fxs-filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 12, 32, .45);
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    backdrop-filter: blur(2px);
}

/* ── Filter side panel ── */
.fxs-filter-panel {
    width: 100%;
    max-width: 400px;
    background: var(--fixeo-white);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 32px rgba(0,0,0,.15);
    transform: translateX(0);
}

.fxs-filter-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--fixeo-gray-100);
}
.fxs-filter-panel__header h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--fixeo-gray-900);
    letter-spacing: -.02em;
}
.fxs-filter-panel__close {
    background: var(--fixeo-gray-100);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--fixeo-gray-600);
    transition: background .15s;
}
.fxs-filter-panel__close:hover { background: var(--fixeo-gray-200); }

.fxs-filter-panel__body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.fxs-filter-group {}
.fxs-filter-group__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--fixeo-gray-900);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.fxs-filter-group__hint {
    font-size: 12px;
    color: var(--fixeo-gray-400);
    margin-bottom: 12px;
}
.fxs-filter-chips {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
}
.fxs-filter-chips--wrap {
    flex-wrap: wrap;
}

.fxs-filter-panel__footer {
    padding: 16px 24px;
    border-top: 1px solid var(--fixeo-gray-100);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
}

/* Alpine transitions for the panel */
.fxs-overlay-enter { transition: opacity .25s ease; }
.fxs-overlay-enter-start { opacity: 0; }
.fxs-overlay-enter-end { opacity: 1; }

.fxs-panel-enter { transition: transform .3s cubic-bezier(.16,1,.3,1); }
.fxs-panel-enter-start { transform: translateX(100%); }
.fxs-panel-enter-end { transform: translateX(0); }

/* Responsive */
@media (max-width: 768px) {
    .fxs-topbar__field { max-width: none; }
    .fxs-filter-panel { max-width: 100%; }
    .fxs-topbar__sep  { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES & TARIFS — composants partagés
   ═══════════════════════════════════════════════════════════════════════════ */

/* Badge pill */
.fxs-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    color: white;
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.25);
    margin-bottom: 20px;
}
.fxs-badge--light {
    background: rgba(255,255,255,.15);
}

/* Label above heading */
.fxs-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--fixeo-blue-500);
    margin-bottom: 12px;
}

/* ── Hero services ── */
.fxs-hero-services {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    padding: 80px 24px;
}
.fxs-hero-services__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(4,12,32,.82) 0%, rgba(10,35,90,.75) 60%, rgba(4,12,32,.9) 100%);
}
.fxs-hero-services__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}
.fxs-hero-services__content h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}
.fxs-hero-services__content p {
    font-size: 1.1rem;
    opacity: .85;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ── Hero tarifs ── */
.fxs-tarifs-hero {
    position: relative;
    min-height: 56vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 80px 24px;
    overflow: hidden;
}
.fxs-tarifs-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.fxs-tarifs-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4,12,32,.88) 0%, rgba(15,49,114,.80) 60%, rgba(4,12,32,.88) 100%);
}
.fxs-tarifs-hero__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}
.fxs-tarifs-hero__content h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.fxs-tarifs-hero__content p {
    font-size: 1.05rem;
    opacity: .85;
    margin-bottom: 28px;
    line-height: 1.7;
}
.fxs-tarifs-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.fxs-tarifs-hero__pills span {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    padding: 8px 18px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 600;
}

/* ── Feature split sections ── */
.fxs-feature {
    padding: 32px 24px;
}

.fxs-feature__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,.07);
    border: 1px solid var(--fixeo-gray-100);
    background: var(--fixeo-white);
}

.fxs-feature--reverse .fxs-feature__img { order: 2; }
.fxs-feature--reverse .fxs-feature__text { order: 1; }

.fxs-feature__img {
    min-height: 420px;
    overflow: hidden;
}
.fxs-feature__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.fxs-feature__grid:hover .fxs-feature__img img { transform: scale(1.04); }

.fxs-feature__text {
    padding: 56px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fxs-feature__text h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--fixeo-gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}
.fxs-feature__text p {
    color: var(--fixeo-gray-500);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 24px;
}
.fxs-feature__list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fxs-feature__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--fixeo-gray-700);
}
.fxs-feature__list li::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--fixeo-blue-50);
    border: 2px solid var(--fixeo-blue-200);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%230f3172' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* ── CTA banner with photo ── */
.fxs-cta-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 24px;
    text-align: center;
    color: white;
    overflow: hidden;
}
.fxs-cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4,12,32,.88) 0%, rgba(15,49,114,.82) 100%);
}
.fxs-cta-banner__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}
.fxs-cta-banner__content h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.fxs-cta-banner__content p {
    font-size: 1.05rem;
    opacity: .85;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ── Hero button ── */
.fxs-btn-hero {
    display: inline-block;
    background: var(--fixeo-yellow-300);
    color: var(--fixeo-blue-700);
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 36px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.fxs-btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

/* ── Feature button ── */
.fxs-btn-feature {
    display: inline-block;
    background: var(--fixeo-blue-600);
    color: white;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s;
}
.fxs-btn-feature:hover { background: var(--fixeo-blue-700); }

/* ── Trade cards ── */
.fxs-trade-card {
    display: block;
    padding: 24px 20px;
    background: var(--fixeo-white);
    border: 1px solid var(--fixeo-gray-200);
    border-radius: var(--fixeo-radius-md);
    text-decoration: none;
    transition: border-color .2s, transform .2s, box-shadow .2s;
    box-shadow: var(--fixeo-shadow-sm);
}
.fxs-trade-card:hover {
    border-color: var(--fixeo-blue-300);
    transform: translateY(-3px);
    box-shadow: var(--fixeo-shadow-md);
}
.fxs-trade-card__icon { font-size: 2.25rem; margin-bottom: 12px; }
.fxs-trade-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--fixeo-gray-900);
    margin-bottom: 6px;
}
.fxs-trade-card p {
    font-size: 13px;
    color: var(--fixeo-gray-500);
    margin: 0 0 12px;
    line-height: 1.5;
}
.fxs-trade-card span {
    font-size: 12px;
    font-weight: 600;
    color: var(--fixeo-blue-600);
}

/* ── Pricing plan cards ── */
.fxs-plan {
    background: white;
    border: 1px solid var(--fixeo-gray-200);
    border-radius: var(--fixeo-radius-lg);
    overflow: hidden;
    box-shadow: var(--fixeo-shadow);
    position: relative;
}
.fxs-plan--featured {
    border: 2px solid var(--fixeo-blue-600);
    box-shadow: var(--fixeo-shadow-lg);
}
.fxs-plan__badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--fixeo-yellow-300);
    color: var(--fixeo-blue-700);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.fxs-plan__header {
    padding: 28px 28px 24px;
}
.fxs-plan__header--blue { background: var(--fixeo-blue-600); color: white; }
.fxs-plan__header--dark { background: var(--fixeo-gray-900); color: white; }
.fxs-plan__header--light { background: var(--fixeo-gray-100); color: var(--fixeo-gray-800); }
.fxs-plan__name {
    font-size: 13px;
    font-weight: 600;
    opacity: .7;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px;
}
.fxs-plan__price {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}
.fxs-plan__price span { font-size: 1.25rem; font-weight: 400; opacity: .7; }
.fxs-plan__period { opacity: .65; font-size: 13px; margin-top: 4px; }
.fxs-plan__body { padding: 28px; }
.fxs-plan__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--fixeo-gray-50);
}
.fxs-plan__feature span {
    color: var(--fixeo-green-500);
    font-size: 16px;
    flex-shrink: 0;
    font-weight: 700;
}
.fxs-plan__feature--off { opacity: .35; }
.fxs-plan__feature--off span { color: var(--fixeo-gray-400); }

.fxs-plan__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all .2s;
    box-sizing: border-box;
}
.fxs-plan__cta--primary {
    background: var(--fixeo-blue-600);
    color: white;
}
.fxs-plan__cta--primary:hover { background: var(--fixeo-blue-700); }
.fxs-plan__cta--outline {
    border: 2px solid var(--fixeo-gray-300);
    color: var(--fixeo-gray-700);
}
.fxs-plan__cta--outline:hover { border-color: var(--fixeo-blue-400); color: var(--fixeo-blue-600); }
.fxs-plan__cta--ghost {
    background: var(--fixeo-gray-100);
    color: var(--fixeo-gray-700);
}
.fxs-plan__cta--ghost:hover { background: var(--fixeo-gray-200); }
.fxs-plan__note {
    font-size: 11px;
    color: var(--fixeo-gray-400);
    text-align: center;
    margin-top: 10px;
}

/* ── FAQ accordion ── */
.fxs-faq-item {
    border-bottom: 1px solid var(--fixeo-gray-200);
}
.fxs-faq-item__q {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    font-weight: 600;
    font-size: 15px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--fixeo-gray-900);
}
.fxs-faq-item__a {
    padding: 0 0 20px;
    font-size: 14px;
    color: var(--fixeo-gray-500);
    line-height: 1.75;
}

/* ── Responsive services/tarifs ── */
@media (max-width: 900px) {
    .fxs-feature__grid {
        grid-template-columns: 1fr;
    }
    .fxs-feature--reverse .fxs-feature__img { order: 0; }
    .fxs-feature--reverse .fxs-feature__text { order: 0; }
    .fxs-feature__img { min-height: 260px; }
    .fxs-feature__text { padding: 36px 28px; }
    .fxs-hero-services { min-height: 60vh; }
    .fxs-tarifs-hero { min-height: 50vh; }
}
