/* ============================================
   LOCTRUE — VITRINE LOCATAIRE
   Mobile-first · Inter · Navy #2545B8
   ============================================ */

:root {
  --navy-50:  #f0f4ff;
  --navy-100: #dbeafe;
  --navy-200: #bfdbfe;
  --navy-500: #2545B8;
  --navy-600: #1e3aa0;
  --navy-700: #1A2F6E;
  --navy-900: #0F1B3D;

  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;

  --success:  #10b981;
  --white:    #ffffff;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(37,69,184,.10);
  --shadow-lg: 0 16px 48px rgba(37,69,184,.16);

  --container: 1120px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--slate-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
svg { display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

/* ─── CONCEPT RIBBON ─── */
.concept-ribbon {
  background: #fef3c7;
  border-bottom: 2px solid #f59e0b;
  padding: 8px 20px;
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  color: #92400e;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.btn--primary { background: var(--navy-500); color: var(--white);    border-color: var(--navy-500); }
.btn--ghost   { background: transparent;    color: var(--slate-600); border-color: var(--slate-200); }
.btn--inverse { background: var(--white);   color: var(--navy-700);  border-color: var(--white); }
.btn--lg { padding: 14px 32px; font-size: 1rem; }

.btn--primary:hover, .btn--primary:focus-visible { background: var(--navy-600); border-color: var(--navy-600); box-shadow: var(--shadow-md); }
.btn--ghost:hover,   .btn--ghost:focus-visible   { background: var(--slate-100); border-color: var(--slate-300); color: var(--slate-700); }
.btn--inverse:hover, .btn--inverse:focus-visible  { background: var(--navy-50);  border-color: var(--navy-50);  box-shadow: var(--shadow-md); }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
}
.site-header__inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-700);
  flex-shrink: 0;
}
.brand__mark { color: var(--navy-500); }
.brand__label { font-size: 1.125rem; font-weight: 800; letter-spacing: -.025em; }

.site-nav { display: none; gap: 28px; margin-inline-start: auto; }
.site-nav a { font-size: .875rem; font-weight: 500; color: var(--slate-600); text-decoration: none; transition: color .15s ease; }
.site-nav a:hover { color: var(--navy-500); }
.site-nav .nav-switch {
  font-size: .8rem;
  font-weight: 600;
  color: #C75613;
  padding: 5px 12px;
  border: 1.5px solid #FCE4CB;
  border-radius: 100px;
  background: #FEF5EB;
}
.site-header__cta { margin-inline-start: auto; }

@media (min-width: 768px) {
  .site-nav { display: flex; }
  .site-header__cta { margin-inline-start: 0; }
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(155deg, var(--navy-50) 0%, var(--white) 60%);
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy-500);
  margin-bottom: 20px;
}
.eyebrow__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--navy-500);
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--slate-800);
  margin-bottom: 20px;
}
.hero__title-accent { color: var(--navy-500); }

.hero__subtitle {
  font-size: 1.0625rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── DOSSIER CARD ─── */
.hero__visual {
  display: flex;
  justify-content: center;
}
.dossier-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  width: 100%;
  max-width: 360px;
  border: 1px solid var(--slate-200);
}
.dossier-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dossier-card__name { display: flex; align-items: center; gap: 10px; }
.dossier-card__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy-100);
  color: var(--navy-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  flex-shrink: 0;
}
.dossier-card__label  { font-size: .875rem; font-weight: 700; color: var(--slate-800); }
.dossier-card__sublabel { font-size: .72rem; color: var(--slate-400); }

.badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 100px; font-size: .72rem; font-weight: 700; }
.badge--verified { background: #d1fae5; color: #065f46; }

.dossier-card__docs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.doc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--slate-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
}
.doc-row__label { font-size: .82rem; font-weight: 500; color: var(--slate-700); }

.check {
  width: 20px; height: 20px;
  background: var(--success);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.check::after {
  content: '';
  position: absolute;
  inset: 0; margin: auto;
  width: 9px; height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: translateY(-1px) rotate(-45deg);
}

.dossier-card__df {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 600;
  color: var(--navy-600);
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: 6px;
  padding: 5px 10px;
  margin-bottom: 14px;
}
.dossier-card__df svg { color: var(--navy-500); flex-shrink: 0; }

.dossier-card__footer { display: flex; align-items: center; gap: 12px; }

.dossier-card__agency-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
}
.dossier-card__agency-status svg { color: var(--success); flex-shrink: 0; }
.dossier-card__agency-text { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.dossier-card__agency-label { font-size: .78rem; font-weight: 700; color: #15803d; }
.dossier-card__agency-sub   { font-size: .7rem; color: #16a34a; }
.dossier-card__agency-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(16,185,129,.2);
}
.progress { flex: 1; height: 6px; background: var(--slate-200); border-radius: 100px; overflow: hidden; }
.progress__bar { display: block; height: 100%; width: 100%; background: var(--success); border-radius: 100px; }
.dossier-card__score { font-size: .78rem; font-weight: 700; color: var(--success); white-space: nowrap; }

/* ─── TRUST STRIP ─── */
.trust-strip {
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  background: var(--slate-50);
  padding: 18px 0;
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--slate-600);
}
.trust-item svg { color: var(--navy-500); flex-shrink: 0; }
.trust-strip__sep { color: var(--slate-300); font-size: 1.2rem; display: none; }
@media (min-width: 640px) { .trust-strip__sep { display: block; } }

/* ─── SECTION HELPERS ─── */
.section-head {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 52px;
}
.section-overline {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy-500);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--slate-800);
  margin-bottom: 14px;
}
.section-lede { font-size: 1rem; color: var(--slate-600); line-height: 1.7; }

/* ─── PAIN / RELIEF ─── */
.pain { padding: 88px 0; background: var(--white); }
.pain__grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .pain__grid { grid-template-columns: repeat(3, 1fr); } }

.pain-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.pain-card__problem {
  padding: 24px 22px;
  background: var(--slate-50);
  flex: 1;
}
.pain-card__problem-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 10px;
}
.pain-card__problem-text {
  font-size: .9375rem;
  color: var(--slate-500);
  line-height: 1.55;
  font-style: italic;
}

.pain-card__connector {
  position: relative;
  height: 28px;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--navy-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pain-card__arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--navy-500);
  color: var(--white);
  font-size: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(37,69,184,.28);
}

.pain-card__solution {
  padding: 24px 22px;
  background: var(--navy-50);
  flex: 1;
}
.pain-card__solution-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy-500);
  margin-bottom: 10px;
}
.pain-card__solution-text {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--navy-700);
  line-height: 1.55;
}

/* ─── STEPS ─── */
.steps { padding: 88px 0; background: var(--navy-50); }
.steps__list { display: grid; gap: 20px; }
@media (min-width: 900px) { .steps__list { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
@media (min-width: 900px) {
  .step { flex-direction: column; gap: 16px; padding: 32px 28px; align-items: center; }
  .step__body { width: 100%; text-align: center; }
}
.step__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy-500);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37,69,184,.28);
}
.step__title { font-size: 1.0625rem; font-weight: 700; color: var(--slate-800); margin-bottom: 8px; }
.step__text  { font-size: .9rem; color: var(--slate-600); line-height: 1.65; }

/* ─── TRUST SECTION ─── */
.trust-section { padding: 88px 0; background: var(--white); }
.trust__grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .trust__grid { grid-template-columns: repeat(3, 1fr); } }

.trust-card {
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
}
.trust-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--navy-100);
  color: var(--navy-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.trust-card__icon svg { width: 24px; height: 24px; }
.trust-card__title { font-size: 1.0625rem; font-weight: 700; color: var(--slate-800); margin-bottom: 8px; }
.trust-card__text  { font-size: .9rem; color: var(--slate-600); line-height: 1.65; }

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-500) 100%);
  padding: 88px 0;
  text-align: center;
}
.cta-band__inner { max-width: 560px; margin-inline: auto; }
.cta-band__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-band__text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 36px;
  line-height: 1.65;
}

/* ─── FOOTER ─── */
.site-footer { background: var(--navy-900); padding: 40px 0; color: rgba(255,255,255,.55); }
.site-footer__inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.brand--footer { color: var(--white); }
.site-footer__tagline { font-size: .875rem; font-style: italic; }
.site-footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 20px; font-size: .78rem; }
.site-footer__links a { color: inherit; text-decoration: none; transition: color .15s ease; }
.site-footer__links a:hover { color: var(--white); }
.site-footer__copy { font-size: .78rem; opacity: .6; }

/* ─── LEGAL PAGE ─── */
.legal-page { padding: 64px 0 96px; }
.legal-page__inner { max-width: 720px; }
.legal-page h1 { font-size: 2rem; font-weight: 800; color: var(--navy-700); margin-bottom: 40px; }
.legal-page h2 { font-size: 1.125rem; font-weight: 700; color: var(--slate-800); margin: 36px 0 10px; }
.legal-page p { font-size: .9375rem; color: var(--slate-600); line-height: 1.7; margin-bottom: 12px; }
.legal-page a { color: var(--navy-500); text-decoration: underline; }
.legal-page a:hover { color: var(--navy-600); }
.legal-page__back { margin-top: 48px; }
.legal-page__back a { text-decoration: none; font-weight: 600; }
