/* ============================================================
   ADOPTANIMAUX — style.css
    Palette : Anthracite #1C1C1E · Bleu #3B82F6 · Blanc cassé #F5F5F0
   Typo    : Syne (display) · Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --charcoal:      #1C1C1E;
  --charcoal-mid:  #2D2D2D;
  --blue:        #3B82F6;
  --blue-dark:   #2563EB;
  --blue-light:  #EFF6FF;
  --off-white:     #F5F5F0;
  --border:        #E2E2DC;
  --text:          #2D2D2D;
  --text-muted:    #6B6B6B;
  --white:         #FFFFFF;

  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow:    0 4px 20px rgba(0,0,0,.09);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.13);

  --max-w: 1160px;
  --nav-h: 70px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.4); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nav-logo-mark {
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -.01em;
}
.nav-logo-text span { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: .5rem .85rem;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,.08); }
.nav-links .nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: .5rem 1.1rem;
  margin-left: .5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--blue-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--charcoal);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: .25rem;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  font-weight: 500;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}
.mobile-nav a:hover,
.mobile-nav a.active { background: rgba(255,255,255,.08); color: var(--white); }
.mobile-nav a.nav-cta-mobile {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  margin-top: .5rem;
}

/* ── PAGE HEADER (pages internes) ────────────────────────── */
.page-header {
  background: var(--white);
  padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(59,130,246,.05) 0%, transparent 60%);
  pointer-events: none;
}
/* Slash décoratif — signature graphique */
.page-header::after {
  content: '/';
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 14rem;
  font-weight: 800;
  color: rgba(59,130,246,.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.page-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.page-header-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--white);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-slash {
  position: absolute;
  right: -2%;
  top: 0; bottom: 0;
  width: 50%;
  background: linear-gradient(145deg, rgba(59,130,246,.06) 0%, rgba(59,130,246,.02) 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--blue);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue);
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
}
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--border);
  border: 1px solid var(--border);
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
}
.hero-img-placeholder svg {
  width: 64px; height: 64px;
  fill: var(--border);
}
.hero-stat-pill {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--blue);
  color: white;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  box-shadow: var(--shadow-lg);
}
.hero-stat-pill strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.hero-stat-pill span {
  font-size: .78rem;
  font-weight: 500;
  opacity: .85;
}

/* ── STATS BAND ──────────────────────────────────────────── */
.stats-band {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-number span { color: var(--blue); }
.stat-label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ── SECTIONS ────────────────────────────────────────────── */
.section {
  padding: 5rem 2rem;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .85rem;
}
.section-tag::before {
  content: '/';
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--blue);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.section-title em {
  font-style: normal;
  color: var(--blue);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(59,130,246,.35); }
.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { background: var(--off-white); border-color: var(--charcoal); }
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-ghost:hover { background: var(--blue); color: var(--white); }

/* ── ABOUT GRID ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--border);
}
.about-img-block img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 120px; height: 120px;
  background: var(--blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: var(--shadow-lg);
}
.about-accent strong { font-size: 2rem; line-height: 1; }
.about-accent span { font-size: .7rem; font-weight: 600; opacity: .85; text-align: center; }
.values-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.value-item { display: flex; gap: 1rem; align-items: flex-start; }
.value-icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-icon svg { width: 18px; height: 18px; fill: var(--blue); }
.value-title { font-weight: 600; font-size: .95rem; margin-bottom: .2rem; }
.value-desc { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

/* ── ANIMAL CARDS ────────────────────────────────────────── */
.animals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.animal-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
.animal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.animal-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.animal-card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.animal-card-img-placeholder svg {
  width: 56px; height: 56px;
  fill: rgba(0,0,0,.15);
}
.animal-card-body { padding: 1.25rem; }
.animal-card-type {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .5rem;
}
.animal-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: .5rem;
}
.animal-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .85rem;
}
.animal-card-meta span {
  font-size: .75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: .2rem .6rem;
}
.animal-card-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

/* ── FILTER TABS ─────────────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.filter-tab {
  font-size: .85rem;
  font-weight: 600;
  padding: .55rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
  transition: all .2s;
}
.filter-tab:hover { border-color: var(--blue); color: var(--blue); }
.filter-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.count-badge {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50px;
  padding: .3rem .9rem;
}

/* ── MODAL ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: sticky;
  top: 1rem;
  float: right;
  margin: 1rem 1rem 0 0;
  width: 36px; height: 36px;
  background: var(--charcoal);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background .2s;
}
.modal-close:hover { background: var(--blue); }
.modal-img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-img-placeholder {
  width: 100%;
  height: 220px;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-img-placeholder svg { width: 72px; height: 72px; fill: rgba(0,0,0,.15); }
.modal-body { padding: 1.75rem 2rem 2rem; }
.modal-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: .75rem;
}
.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.modal-tag {
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 4px;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.modal-tag.tag-dispo {
  background: #ECFDF5;
  border-color: #6EE7B7;
  color: #059669;
}
.modal-desc {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.modal-info-box {
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  padding: .9rem 1.1rem;
  font-size: .85rem;
  color: var(--blue-dark);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.modal-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ── PROCEDURE STEPS ─────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: box-shadow .2s;
}
.step-card:hover { box-shadow: var(--shadow); }
.step-num {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--blue);
  margin-bottom: 1rem;
}
.step-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.step-icon svg { width: 24px; height: 24px; fill: var(--blue); }
.step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: .6rem;
}
.step-desc { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* ── GUARANTEES GRID ─────────────────────────────────────── */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.guarantee-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.guarantee-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.guarantee-icon svg { width: 20px; height: 20px; fill: var(--blue); }
.guarantee-title { font-weight: 600; font-size: .9rem; margin-bottom: .25rem; }
.guarantee-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.55; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.testimonial-stars { color: var(--blue); font-size: 1rem; margin-bottom: 1rem; letter-spacing: .1em; }
.testimonial-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.1rem;
}
.testimonial-author { font-weight: 600; font-size: .85rem; color: var(--charcoal); }

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '/';
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 20rem;
  font-weight: 800;
  color: rgba(59,130,246,.06);
  line-height: 1;
  pointer-events: none;
}
.cta-band-inner { max-width: 580px; margin: 0 auto; position: relative; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: .85rem;
}
.cta-band p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--text);
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: .5rem;
  color: var(--charcoal);
}
.contact-info-sub {
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon {
  width: 38px; height: 38px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 17px; height: 17px; fill: var(--blue); }
.contact-detail-label { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .25rem; }
.contact-detail-value { font-size: .9rem; color: var(--text); line-height: 1.5; }
.contact-detail-value a { color: var(--blue); }

/* Contact form card */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: .4rem;
}
.form-subtitle { font-size: .875rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--charcoal); margin-bottom: .4rem; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,.12);
  background: var(--white);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: .75rem; }
.form-check input[type=checkbox] { margin-top: 3px; accent-color: var(--blue); width: 16px; height: 16px; flex-shrink: 0; }
.form-check label { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }
.form-success {
  display: none;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  font-size: .9rem;
  font-weight: 500;
}
.form-success.success { background: #ECFDF5; color: #059669; border: 1px solid #6EE7B7; }
.form-success.error   { background: #FEF2F2; color: #DC2626; border: 1px solid #FECACA; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
details.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
details.faq-item[open] { border-color: var(--blue); }
details.faq-item summary {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--charcoal);
  user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  width: 20px; height: 20px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .2s, border-color .2s, background .2s;
  color: var(--text-muted);
  font-size: .7rem;
}
details.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}
.faq-body { padding: 0 1.5rem 1.25rem; font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.6);
  padding: 3rem 2rem 1.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.5rem;
}
.footer-brand p { font-size: .85rem; margin-top: .5rem; max-width: 280px; line-height: 1.6; }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a { font-size: .875rem; transition: color .2s; }
.footer-nav a:hover { color: var(--white); }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.footer-social a:hover { background: var(--blue); }
.footer-social svg { width: 17px; height: 17px; fill: rgba(255,255,255,.7); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
}
.footer-bottom a { transition: color .2s; }
.footer-bottom a:hover { color: var(--white); }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.legal-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  text-align: center;
}
.legal-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: .25rem;
}
.legal-card span { font-size: .75rem; color: var(--text-muted); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .fade-in.visible { opacity: 1; transform: none; }
  .fade-in-delay-1 { transition-delay: .1s; }
  .fade-in-delay-2 { transition-delay: .2s; }
  .fade-in-delay-3 { transition-delay: .3s; }
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 2.5rem;
  }
  .hero-visual {
    display: block;
    order: 1; /* image APRÈS le texte sur mobile */
  }
  .hero-stat-pill {
    bottom: -1rem;
    left: -0.5rem;
  }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 4rem; }
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 3.5rem 1.25rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 3rem 1.5rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 1.25rem 1rem; }
  .hero-actions { flex-direction: column; }
  .contact-form-card { padding: 1.5rem; }
  .contact-info-card { padding: 1.75rem; }
}