/**
 * LINKIFLOCAL — Composants P1
 * Search bar · Grille catégories · Carte artisan · Badges
 */

/* ============================================
   1. BARRE DE RECHERCHE DOUBLE CHAMP
   ============================================ */

.ll-search-form { width: 100%; }

.ll-search-bar {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 32px rgba(46,89,84,.16), 0 1px 4px rgba(0,0,0,.06);
  border: 1.5px solid rgba(46,89,84,.12);
  overflow: hidden;
  min-height: 58px;
}

.ll-search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 0 18px;
  min-width: 0;
}

.ll-search-field svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--ll-teal);
  opacity: .75;
}

.ll-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--ll-font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ll-text-primary);
  background: transparent;
  min-width: 0;
  padding: 0;
}

.ll-search-input::placeholder {
  color: var(--ll-text-secondary);
  font-weight: 400;
  font-size: 14px;
}

.ll-search-divider {
  width: 1px;
  background: var(--ll-teal-pale);
  align-self: stretch;
  margin: 10px 0;
  flex-shrink: 0;
}

.ll-search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ll-orange);
  color: #fff;
  border: none;
  font-family: var(--ll-font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 0 28px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
  flex-shrink: 0;
}

.ll-search-btn:hover  { background: #F08000; }
.ll-search-btn:active { background: var(--ll-orange-dark); }

.ll-search-btn svg { width: 20px; height: 20px; }

@media (max-width: 600px) {
  .ll-search-bar {
    flex-direction: column;
    border-radius: 14px;
    min-height: auto;
  }
  .ll-search-field { min-height: 52px; padding: 0 16px; }
  .ll-search-divider { width: auto; height: 1px; margin: 0 16px; align-self: auto; }
  .ll-search-btn { justify-content: center; min-height: 52px; font-size: 16px; }
}

/* ============================================
   2. GRILLE DE CATÉGORIES
   ============================================ */

.ll-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

@media (max-width: 768px) { .ll-cat-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; } }
@media (max-width: 480px) { .ll-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

.ll-cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px 12px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(46,89,84,.08);
  cursor: pointer;
  text-decoration: none;
  color: var(--ll-text-primary);
  transition: box-shadow .15s, transform .12s, border-color .15s;
}

.ll-cat-tile:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,.1);
  transform: translateY(-2px);
  border-color: var(--ll-cat-color, var(--ll-teal));
  text-decoration: none;
  color: var(--ll-text-primary);
}

.ll-cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ll-cat-bg, var(--ll-teal-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.ll-cat-tile:hover .ll-cat-icon { background: var(--ll-cat-color, var(--ll-teal)); }

.ll-cat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--ll-cat-color, var(--ll-teal));
  transition: color .15s;
}

.ll-cat-tile:hover .ll-cat-icon svg { color: #fff; }

.ll-cat-label {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

/* Couleurs par catégorie */
.ll-cat--electricien  { --ll-cat-color:#F59E0B; --ll-cat-bg:#FEF3C7; }
.ll-cat--plombier     { --ll-cat-color:#3B82F6; --ll-cat-bg:#DBEAFE; }
.ll-cat--peintre      { --ll-cat-color:#8B5CF6; --ll-cat-bg:#EDE9FE; }
.ll-cat--menuisier    { --ll-cat-color:#92400E; --ll-cat-bg:#FEF3C7; }
.ll-cat--carreleur    { --ll-cat-color:#EF4444; --ll-cat-bg:#FEE2E2; }
.ll-cat--jardinier    { --ll-cat-color:#10B981; --ll-cat-bg:#D1FAE5; }
.ll-cat--serrurier    { --ll-cat-color:#6B7280; --ll-cat-bg:#F3F4F6; }
.ll-cat--chauffagiste { --ll-cat-color:#DC2626; --ll-cat-bg:#FEE2E2; }
.ll-cat--vitrier      { --ll-cat-color:#0891B2; --ll-cat-bg:#CFFAFE; }
.ll-cat--couvreur     { --ll-cat-color:#4338CA; --ll-cat-bg:#EEF2FF; }
.ll-cat--macon        { --ll-cat-color:#78716C; --ll-cat-bg:#F5F5F4; }
.ll-cat--coiffeur     { --ll-cat-color:#DB2777; --ll-cat-bg:#FCE7F3; }
.ll-cat--demenageur   { --ll-cat-color:#EA580C; --ll-cat-bg:#FFEDD5; }
.ll-cat--nettoyage    { --ll-cat-color:#0284C7; --ll-cat-bg:#E0F2FE; }
.ll-cat--architecte   { --ll-cat-color:#2E5954; --ll-cat-bg:#EEF2F1; }
.ll-cat--cuisiniste   { --ll-cat-color:#B45309; --ll-cat-bg:#FEF9C3; }

/* ============================================
   3. CARTE ARTISAN + SCORE GBP
   ============================================ */

.ll-artisan-card {
  background: #fff;
  border: 1px solid rgba(46,89,84,.12);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .15s, transform .12s;
  margin-bottom: 16px;
}

.ll-artisan-card:hover {
  box-shadow: 0 6px 28px rgba(46,89,84,.14);
  transform: translateY(-2px);
}

.ll-artisan-card-body { padding: 16px; }

.ll-artisan-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.ll-artisan-photo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--ll-teal-pale);
}

.ll-artisan-photo-placeholder {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--ll-teal-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  border: 2px solid var(--ll-teal-pale);
}

.ll-artisan-header { flex: 1; min-width: 0; }

.ll-artisan-name {
  font-family: var(--ll-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ll-teal-night);
  margin: 0 0 4px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ll-artisan-meta {
  font-size: 13px;
  color: var(--ll-text-secondary);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 7px;
}

.ll-artisan-metier { font-weight: 600; color: var(--ll-teal-mid); }

.ll-artisan-badges { display: flex; flex-wrap: wrap; gap: 5px; }

/* GBP score bar */
.ll-gbp-wrap { margin-bottom: 12px; }

.ll-gbp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.ll-gbp-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ll-text-secondary);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ll-gbp-score-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--ll-gbp-color, var(--ll-teal));
}

.ll-gbp-track {
  height: 6px;
  border-radius: 3px;
  background: var(--ll-teal-pale);
  overflow: hidden;
}

.ll-gbp-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--ll-gbp-color, var(--ll-teal));
}

/* Rating */
.ll-artisan-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.ll-stars         { color: var(--ll-star); font-size: 14px; letter-spacing: 1px; }
.ll-rating-value  { font-size: 13px; font-weight: 700; color: var(--ll-text-primary); }
.ll-rating-count  { font-size: 12px; color: var(--ll-text-secondary); }

/* Description */
.ll-artisan-desc {
  font-size: 13px;
  color: var(--ll-text-secondary);
  line-height: 1.55;
  margin: 0 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Actions footer */
.ll-artisan-actions {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid rgba(46,89,84,.08);
  background: var(--ll-teal-bg);
}

.ll-artisan-actions .ll-btn { flex: 1; justify-content: center; }

/* ============================================
   4. BADGES — 4 VARIANTES
   ============================================ */

.ll-badge-verifie {
  background: #D1FAE5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.ll-badge-reclame {
  background: var(--ll-teal-bg);
  color: var(--ll-teal-night);
  border: 1px solid var(--ll-teal-pale);
}

.ll-badge-vip {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  color: #92400E;
  border: 1px solid #F59E0B;
  font-weight: 700;
}

.ll-badge-linkif {
  background: var(--ll-teal-night);
  color: #fff;
  border: none;
}

.ll-badge-public {
  background: #F3F4F6;
  color: #6B7280;
  border: 1px solid #E5E7EB;
}

/* ============================================
   5. HERO PAGE D'ACCUEIL
   ============================================ */

.ll-home-hero {
  background: linear-gradient(160deg, #1B3B38 0%, #2E5954 60%, #3D7A74 100%);
  padding: clamp(48px, 8vw, 80px) 16px clamp(40px, 7vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ll-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,152,0,.12) 0%, transparent 70%);
  pointer-events: none;
}

.ll-home-hero-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.ll-home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-bottom: 20px;
  letter-spacing: .04em;
}

.ll-home-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ll-orange);
  flex-shrink: 0;
}

.ll-home-headline {
  font-family: var(--ll-font-display);
  font-size: clamp(26px, 6vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 0 0 12px;
}

.ll-home-headline em { font-style: normal; color: var(--ll-orange); }

.ll-home-subline {
  font-size: clamp(14px, 2.5vw, 17px);
  color: rgba(255,255,255,.72);
  margin: 0 0 32px;
}

.ll-trust-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.ll-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

.ll-trust-pill-check { color: #34D399; }

/* ============================================
   6. HOW IT WORKS — 3 ÉTAPES
   ============================================ */

.ll-steps-section {
  padding: clamp(32px, 5vw, 56px) 16px;
  background: #fff;
}

.ll-steps-title {
  font-family: var(--ll-font-display);
  font-size: clamp(17px, 3.5vw, 22px);
  font-weight: 700;
  color: var(--ll-teal-night);
  text-align: center;
  margin: 0 0 32px;
}

.ll-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.ll-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(16.6% + 16px);
  right: calc(16.6% + 16px);
  height: 2px;
  background: var(--ll-teal-pale);
}

@media (max-width: 600px) {
  .ll-steps { grid-template-columns: 1fr; gap: 16px; }
  .ll-steps::before { display: none; }
}

.ll-step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }

.ll-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ll-teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ll-font-display);
  font-size: 20px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.ll-step-title { font-family: var(--ll-font-display); font-size: 15px; font-weight: 700; color: var(--ll-teal-night); }
.ll-step-desc  { font-size: 13px; color: var(--ll-text-secondary); line-height: 1.55; margin: 0; }

/* ============================================
   7. LAYOUT ARCHIVE (desktop: sidebar + liste)
   ============================================ */

.ll-archive-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px 80px;
}

.ll-archive-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 900px) { .ll-archive-layout { grid-template-columns: 1fr; } }

.ll-archive-sidebar { position: sticky; top: 16px; }

@media (max-width: 900px) { .ll-archive-sidebar { display: none; } }

.ll-filters-card {
  background: #fff;
  border: 1px solid rgba(46,89,84,.12);
  border-radius: 14px;
  padding: 20px;
}

.ll-filters-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--ll-text-secondary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 16px;
}

.ll-filter-group { margin-bottom: 20px; }

.ll-filter-group-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ll-text-secondary);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.ll-filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  cursor: pointer;
  font-size: 14px;
  color: var(--ll-text-primary);
  user-select: none;
}

.ll-filter-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--ll-teal-pale);
  border-radius: 5px;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  position: relative;
}

.ll-filter-check input[type="checkbox"]:checked {
  background: var(--ll-teal);
  border-color: var(--ll-teal);
}

.ll-filter-check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.ll-sort-select {
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232E5954' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 10px center;
  border: 1px solid rgba(46,89,84,.15);
  border-radius: 8px;
  padding: 7px 30px 7px 12px;
  font-size: 14px;
  font-family: var(--ll-font-body);
  color: var(--ll-text-primary);
  cursor: pointer;
}

.ll-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(46,89,84,.08);
}

.ll-results-count { font-size: 15px; color: var(--ll-teal-night); }
.ll-results-count strong { font-weight: 700; }

/* Mobile filtres toggle */
.ll-filters-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(46,89,84,.15);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ll-teal);
  cursor: pointer;
  margin-bottom: 12px;
  width: 100%;
  justify-content: center;
}

@media (max-width: 900px) { .ll-filters-toggle { display: flex; } }

/* ============================================
   8. BANDE STATS
   ============================================ */

.ll-stats-strip {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 6vw, 64px);
  flex-wrap: wrap;
  padding: clamp(24px, 4vw, 40px) 16px;
  background: var(--ll-teal-night);
}

.ll-stat { text-align: center; }

.ll-stat-val {
  font-family: var(--ll-font-display);
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 800;
  color: var(--ll-orange);
  line-height: 1;
  margin-bottom: 4px;
}

.ll-stat-label { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 500; }

/* ── Étiquettes de services ────────────────────────────── */
.ll-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0 4px;
}
.ll-tag {
    align-items: center;
    padding: 4px 10px;
    background: var(--ll-teal-bg);
    color: var(--ll-teal-night);
    border: 1px solid var(--ll-teal-pale);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    font-family: var(--ll-font-body);
    white-space: nowrap;
}
.ll-tag-more {
    background: transparent;
    border-color: var(--ll-teal-pale);
    color: var(--ll-teal-mid);
    font-style: italic;
}
.ll-tags-locked {
    font-size: 11px;
    color: var(--ll-text-secondary);
    margin: 8px 0 4px;
}
.ll-tags-locked a {
    color: var(--ll-teal);
    font-weight: 600;
    text-decoration: none;
}

/* ============================================================
   MODALE DEVIS MULTI-STEP
   ============================================================ */

.ll-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27,59,56,.55);
  backdrop-filter: blur(3px);
  z-index: 9999;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.ll-modal-overlay.is-open {
  display: flex;
}
@media (min-width: 640px) {
  .ll-modal-overlay {
    align-items: center;
    padding: 20px;
  }
}

.ll-modal {
  background: #fff;
  width: 100%;
  max-width: 520px;
  border-radius: 20px 20px 0 0;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 -8px 40px rgba(0,0,0,.18);
  position: relative;
  animation: llSlideUp .28s cubic-bezier(.22,1,.36,1);
}
@media (min-width: 640px) {
  .ll-modal {
    border-radius: 16px;
    max-height: 88vh;
    animation: llFadeIn .22s ease;
  }
}

@keyframes llSlideUp {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes llFadeIn {
  from { opacity: 0; transform: scale(.97); }
  to   { opacity: 1; transform: scale(1);   }
}

.ll-modal-header {
  padding: 20px 20px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.ll-modal-title {
  font-family: var(--ll-font-title);
  font-size: 18px;
  font-weight: 700;
  color: var(--ll-teal-night);
  line-height: 1.3;
  flex: 1;
}
.ll-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #F3F4F6;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: #6B7280;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -2px;
}
.ll-modal-close:hover { background: #E5E7EB; }

/* Progress bar */
.ll-progress-wrap {
  padding: 14px 20px 0;
}
.ll-progress-bar {
  height: 4px;
  background: #E5E7EB;
  border-radius: 99px;
  overflow: hidden;
}
.ll-progress-fill {
  height: 100%;
  background: var(--ll-orange);
  border-radius: 99px;
  transition: width .3s ease;
}
.ll-progress-label {
  font-size: 11px;
  color: var(--ll-text-secondary);
  margin-top: 6px;
  font-family: var(--ll-font-body);
}

/* Steps */
.ll-modal-body {
  padding: 20px;
}

.ll-step { display: none; }
.ll-step.is-active { display: block; }

.ll-step-question {
  font-size: 15px;
  font-weight: 600;
  color: var(--ll-teal-night);
  margin-bottom: 14px;
  line-height: 1.4;
}

/* Chips de sélection */
.ll-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.ll-chip {
  padding: 9px 16px;
  border: 1.5px solid var(--ll-teal-pale);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ll-teal-night);
  font-family: var(--ll-font-body);
  cursor: pointer;
  background: #fff;
  transition: all .15s;
  line-height: 1;
}
.ll-chip:hover { border-color: var(--ll-teal); color: var(--ll-teal); }
.ll-chip.is-selected {
  background: var(--ll-teal);
  border-color: var(--ll-teal);
  color: #fff;
}

/* Champs texte/tel/email dans modale */
.ll-modal-field {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--ll-teal-pale);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--ll-font-body);
  color: var(--ll-text-primary);
  box-sizing: border-box;
  margin-bottom: 10px;
  background: #fff;
  transition: border-color .15s;
}
.ll-modal-field:focus {
  outline: none;
  border-color: var(--ll-teal);
}
.ll-modal-field::placeholder { color: #9CA3AF; }

.ll-modal-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

textarea.ll-modal-field {
  resize: vertical;
  min-height: 80px;
}

/* RGPD */
.ll-rgpd-box {
  background: #F4F6F4;
  border: 1px solid var(--ll-teal-pale);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.ll-rgpd-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.ll-rgpd-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--ll-teal);
  cursor: pointer;
}
.ll-rgpd-text {
  font-size: 12px;
  color: var(--ll-text-secondary);
  line-height: 1.5;
}
.ll-rgpd-text a {
  color: var(--ll-teal);
  text-decoration: underline;
}
.ll-rgpd-assurance {
  font-size: 11px;
  color: var(--ll-text-secondary);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--ll-teal-pale);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ll-rgpd-assurance span {
  display: flex;
  align-items: center;
  gap: 3px;
}

/* Navigation steps */
.ll-step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 20px;
  gap: 10px;
}
.ll-step-back {
  padding: 10px 16px;
  background: none;
  border: 1.5px solid var(--ll-teal-pale);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ll-text-secondary);
  cursor: pointer;
  font-family: var(--ll-font-body);
}
.ll-step-back:hover { border-color: var(--ll-teal); color: var(--ll-teal); }
.ll-step-back[hidden] { display: none; }

.ll-step-next {
  flex: 1;
  padding: 12px 20px;
  background: var(--ll-orange);
  color: #fff;
  border: none;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--ll-font-title);
  transition: background .15s;
}
.ll-step-next:hover { background: var(--ll-orange-dark); }
.ll-step-next:disabled { opacity: .5; cursor: default; }

/* Confirmation */
.ll-confirm-box {
  text-align: center;
  padding: 20px 0 10px;
}
.ll-confirm-icon {
  font-size: 48px;
  margin-bottom: 12px;
}
.ll-confirm-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ll-teal-night);
  margin-bottom: 8px;
  font-family: var(--ll-font-title);
}
.ll-confirm-text {
  font-size: 14px;
  color: var(--ll-text-secondary);
  line-height: 1.6;
}

/* Erreur form */
.ll-form-error {
  background: #FFF3E0;
  border: 1px solid #FFCC80;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--ll-orange-dark);
  margin-bottom: 12px;
  display: none;
}
.ll-form-error.is-visible { display: block; }
