/* ===== Variables & Reset (ClarityCheck-inspired) ===== */
:root {
  --primary: #002395;
  --primary-dark: #001a66;
  --cta-blue: #2563eb;
  --cta-blue-hover: #1d4ed8;
  --accent-green: #16a34a;
  --accent-green-light: #22c55e;
  --success: #ed2939;
  --red: #ed2939;
  --btn-green: #16a34a;
  --btn-green-hover: #15803d;
  --text: #1f2937;
  --text-dark: #111827;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --border: #e5e7eb;
  --bg-light: #f9fafb;
  --bg-input: #f3f4f6;
  --bg-sidebar: #f0f6fb;
  --white: #fff;
  --footer-bg: #111827;
  --footer-dark: #0f172a;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-card: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.06);
  --shadow-hover: 0 10px 25px -5px rgba(0,0,0,0.1), 0 4px 10px -5px rgba(0,0,0,0.06);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 140px; }
body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); text-decoration: underline; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--btn-green);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
}
.btn-primary:hover {
  background: var(--btn-green-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
}
.btn-primary:active { transform: translateY(0); }
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.3s;
  text-decoration: none;
}
.skip-link:focus { top: 0; }
.btn-secondary {
  background: var(--primary);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  background: var(--bg-light);
  border-color: var(--text-muted);
}
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-login {
  background: var(--btn-green);
  color: var(--white);
  padding: 8px 18px;
  font-size: 14px;
}
.btn-login:hover { background: var(--btn-green-hover); }
.btn-contact {
  color: var(--primary);
  background: transparent;
  border: 1px solid var(--primary);
}
.btn-contact:hover { background: rgba(0,115,183,0.05); }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.header-dark {
  background: var(--footer-bg);
  color: var(--white);
}
.header-dark .nav-link { color: rgba(255,255,255,0.9); }
.header-dark .nav-link:hover { color: var(--white); }
.header-dark::after {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--red));
}
.header-light {
  background: var(--white);
  color: var(--text);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.header-light::after { display: none; }
.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  color: var(--accent-green);
}
.logo-icon svg { width: 24px; height: 24px; }
.logo-text { font-weight: 700; font-size: 1.25rem; color: var(--text-dark); }
.header-light .logo-text { color: var(--text-dark); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  min-height: 48px;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: opacity var(--transition);
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.logo:hover { opacity: 0.95; text-decoration: none; }
.header-dark .logo { color: var(--white); }
.header-light .logo { color: var(--primary); }
.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  color: var(--accent-green);
}
.logo-icon svg { width: 24px; height: 24px; }
.logo-text { font-weight: 700; font-size: 1.25rem; }
.header-light .logo:hover { text-decoration: none; color: var(--primary); }
/* Hamburger menu (mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: opacity var(--transition);
}
.menu-toggle:hover { opacity: 0.9; }
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}
.header-light .menu-toggle span { background: var(--primary); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  max-width: 100%;
  height: 100%;
  background: var(--white);
  padding: 80px 24px 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}
.mobile-nav.is-open .mobile-nav-inner { transform: translateX(0); }
.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--primary); text-decoration: none; }
.mobile-nav-contact {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--primary);
  color: var(--white) !important;
  text-align: center;
  border-radius: var(--radius);
  border: none;
}
.mobile-nav-contact:hover { background: var(--primary-dark); color: var(--white) !important; }

.nav-main { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 14px; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  transition: opacity var(--transition);
}
.nav-link:hover { opacity: 0.9; text-decoration: none; }
.nav-link svg { opacity: 0.7; }

/* ===== Menu navigation sections (page d'accueil) ===== */
.page-nav {
  background: var(--bg-light);
  padding: 12px 0;
  position: sticky;
  top: 58px;
  z-index: 99;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.page-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  align-items: center;
}
.page-nav-link {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.page-nav-link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
  text-decoration: none;
}

/* ===== Action Bar ===== */
.action-bar {
  background: var(--bg-light);
  padding: 10px 0;
  position: sticky;
  top: 58px;
  z-index: 99;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.action-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.action-link {
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
}
.action-link:hover { text-decoration: none; color: var(--primary); }

/* ===== Hero Section ===== */
.hero-section {
  padding: 72px 0 80px;
  background: linear-gradient(180deg, rgba(76, 175, 80, 0.06) 0%, var(--white) 25%, var(--white) 100%);
  overflow-x: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 520px;
  margin: 0 auto;
  gap: 24px;
  align-items: center;
  justify-items: center;
  text-align: center;
  width: 100%;
  min-width: 0;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
}
.hero-title {
  font-family: 'DM Sans', 'Source Sans 3', sans-serif;
  font-size: clamp(52px, 14vw, 88px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
  margin-top: 48px;
  text-align: center;
}
.hero-title.hero-title-gradient {
  background: linear-gradient(90deg, #111827 0%, #1f2937 20%, #374151 45%, #047857 75%, #16a34a 90%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.hero-title-nowrap {
  white-space: nowrap;
}
.hero-text {
  display: none;
}
.hero-form {
  align-self: stretch;
  align-items: stretch;
}
.hero-title-highlight {
  text-decoration: underline;
}
.badge-habile { display: inline-block; }
.badge-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.badge-habile-icon {
  width: 100%;
  height: 24px;
  background: var(--primary);
  margin-bottom: 4px;
  border-radius: 2px;
}
.badge-text { line-height: 1.2; color: var(--text); }
/* Formulaire style ClarityCheck - champs épurés, gris clair */
.hero-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.hero-search-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* Champ style country picker - fond gris, coins arrondis, ombre légère */
.search-field {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0 16px;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  box-sizing: border-box;
}
.search-field:focus-within {
  border-color: var(--cta-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.search-field.search-field-select {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-field-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.search-field-chevron {
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
  pointer-events: none;
}
.search-select {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  appearance: none;
}
.search-select:focus { outline: none; }
.search-field-input {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 12px 16px;
}
.search-field-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}
.search-input {
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  padding: 0;
}
.search-input::placeholder {
  color: var(--text-muted);
  font-weight: 500;
}
.search-input:focus { outline: none; }
.form-error {
  display: none;
  color: #c62828;
  font-size: 14px;
  padding: 10px 14px;
  background: #ffebee;
  border-radius: var(--radius);
  border: 1px solid #ffcdd2;
}
.form-error:not(:empty) { display: block; }
.form-actions { display: flex; flex-direction: column; gap: 12px; }
.btn-search {
  width: 100%;
  min-height: 52px;
  padding: 0 24px;
  font-size: 17px;
  font-weight: 600;
  background: var(--cta-blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition);
  box-sizing: border-box;
  flex-shrink: 0;
}
.btn-search:hover {
  background: var(--cta-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}
.hero-social-proof {
  text-align: center;
  padding-top: 16px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.hero-avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -8px;
  margin-bottom: 8px;
}
.hero-avatars .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -8px;
  border: 2px solid var(--white);
  box-shadow: var(--shadow);
}
.hero-avatars .avatar:first-child { margin-left: 0; }
.hero-social-proof p {
  font-size: 16px;
  color: var(--text-muted);
}
/* Bandeau médias français - section isolée, full-width */
.media-bar-section {
  padding: 24px 0 40px;
  overflow: hidden;
  width: 100%;
  min-height: 48px;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(249,250,251,0.5) 0%, transparent 100%);
}
.media-bar-section .hero-media-strip {
  margin-top: 0;
}
.hero-media-strip {
  margin-top: 20px;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.hero-media-track {
  display: flex;
  align-items: center;
  gap: 48px;
  -webkit-animation: heroMediaScroll 25s linear infinite;
  animation: heroMediaScroll 25s linear infinite;
  width: max-content;
  will-change: transform;
}
.hero-media-track:hover {
  animation-play-state: paused;
}
.hero-media-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 80px;
  height: 36px;
}
.hero-media-track img.hero-media-logo {
  height: 28px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  vertical-align: middle;
}
.hero-media-fallback {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  opacity: 0.8;
}
.hero-media-fallback-hidden {
  display: none !important;
}
.hero-media-logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  opacity: 0.7;
  flex-shrink: 0;
  white-space: nowrap;
}
.hero-media-track img.hero-media-logo {
  height: 28px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  display: block;
}
.hero-media-fallback {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  opacity: 0.7;
}
.hero-media-fallback.hero-media-fallback-hidden {
  display: none;
}
/* Logos en image */
img.hero-media-logo {
  height: 28px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  display: block;
  opacity: 0.85;
  filter: grayscale(0.3);
}
img.hero-media-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}
.hero-media-fallback {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  opacity: 0.7;
  flex-shrink: 0;
}
.hero-media-fallback-hidden {
  display: none !important;
}
@keyframes heroMediaScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hero-form .link-back {
  color: var(--text-muted);
  font-size: 14px;
}
.hero-form .link-back:hover { color: var(--primary); text-decoration: none; }
.btn-commander {
  background: var(--cta-blue);
  color: var(--white);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  padding: 16px 32px;
  font-size: 18px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-commander:hover {
  background: var(--cta-blue-hover);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-commander::after {
  content: '→';
  font-size: 1.2em;
}
.hero-social-proof {
  margin-top: 20px;
  text-align: center;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.hero-avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -8px;
  margin-bottom: 8px;
}
.hero-avatars .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  margin-left: -8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.hero-avatars .avatar:first-child { margin-left: 0; }
.hero-social-proof p {
  font-size: 16px;
  color: var(--text-muted);
}
.hero-image { position: relative; }
.certificate-preview {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  transition: transform var(--transition);
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-image:hover .certificate-preview { transform: scale(1.02); }
.certificate-doc {
  padding: 24px 32px 56px;
  max-width: 420px;
}
.certificate-doc .cert-header {
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 4px;
}
.certificate-doc .cert-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.certificate-doc h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 32px;
}
.certificate-doc .cert-ref {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--footer-bg);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
}
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  padding: 16px 0;
}
.trust-badges .trust-badge {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.trust-badges .trust-badge:hover {
  opacity: 1;
}

/* ===== Stats Section ===== */
.stats-section {
  padding: 56px 0;
  background: var(--white);
}
.section-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 8px;
}
.section-title--large {
  font-size: clamp(38px, 5vw, 48px);
  margin-bottom: 32px;
}
.section-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  margin-bottom: 40px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
  animation: fadeInUp 0.6s ease-out backwards;
}
.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

/* Discover cards - Que Pourriez-Vous Découvrir ? */
.discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.discover-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 900px;
  margin: 0 auto;
  gap: 16px;
}
.discover-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 960px;
  margin: 0 auto;
}
.discover-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: left;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
  animation: fadeInUp 0.6s ease-out backwards;
}
.discover-card:nth-child(1) { animation-delay: 0.05s; }
.discover-card:nth-child(2) { animation-delay: 0.1s; }
.discover-card:nth-child(3) { animation-delay: 0.15s; }
.discover-card:nth-child(4) { animation-delay: 0.2s; }
.discover-card:nth-child(5) { animation-delay: 0.25s; }
.discover-card:nth-child(6) { animation-delay: 0.3s; }
.discover-card:nth-child(7) { animation-delay: 0.35s; }
.discover-card:nth-child(8) { animation-delay: 0.4s; }
.discover-card:nth-child(9) { animation-delay: 0.45s; }
.discover-card:nth-child(10) { animation-delay: 0.5s; }
.discover-card:nth-child(11) { animation-delay: 0.55s; }
.discover-card:nth-child(12) { animation-delay: 0.6s; }
.discover-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.discover-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  color: var(--text-dark);
  opacity: 0.8;
}
.discover-icon svg {
  width: 24px;
  height: 24px;
}
.discover-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.discover-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== Breadcrumb ===== */
.breadcrumb-section { padding: 16px 0; background: var(--bg-light); }
.breadcrumb {
  font-size: 14px;
  color: var(--text-light);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--text); }

/* ===== Sommaire ===== */
.sommaire-section { padding: 32px 0; }
.sommaire-box {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sommaire-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--primary);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.sommaire-header h3 { margin: 0; font-size: 22px; font-weight: 800; }
.sommaire-toggle {
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.sommaire-toggle:hover { opacity: 1; }
.sommaire-list {
  list-style: none;
  padding: 16px 0;
}
.sommaire-list li {
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.sommaire-list li:last-child { border-bottom: none; }
.sommaire-list li:hover { background: var(--bg-light); }
.sommaire-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}
.sommaire-list a::before {
  content: '▸';
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== Vehicles Grid ===== */
.vehicles-grid-section { padding: 40px 0 56px; }
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.vehicle-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  text-align: left;
}
.vehicle-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,115,183,0.3);
  color: var(--white);
  text-decoration: none;
}
.vehicle-icon { font-size: 24px; }
/* Cartes véhicules style ClarityCheck */
.vehicles-cards {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.vehicle-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.vehicle-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: var(--primary);
  color: var(--text);
  text-decoration: none;
}
.vehicle-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.vehicle-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}
.vehicle-card-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}
.vehicle-btn.label-nongage { position: relative; }
.vehicle-btn.label-nongage::before {
  content: 'NON GAGE';
  position: absolute;
  top: 0;
  left: 0;
  background: var(--footer-dark);
  color: var(--white);
  font-size: 10px;
  padding: 4px 8px;
  border-radius: var(--radius) 0 var(--radius) 0;
}

/* ===== Info Sections ===== */
.info-section {
  padding: 40px 0;
}
.info-blue {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}
.info-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.info-icon { font-size: 28px; }
.info-content p {
  margin-bottom: 16px;
  line-height: 1.6;
  opacity: 0.95;
}
.info-content a { color: #90caf9; }
.info-content a:hover { color: var(--white); }

/* Document Preview */
.document-preview-section { padding: 48px 0; background: var(--white); }
.document-preview {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.doc-official-header {
  background: var(--primary);
  color: var(--white);
  padding: 20px 32px;
  text-align: center;
}
.doc-flag { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.doc-ministry { font-size: 12px; opacity: 0.95; }
.doc-title {
  font-size: 24px;
  font-weight: 800;
  padding: 24px 32px 0;
  margin: 0;
}
.doc-article { font-size: 13px; color: var(--text-muted); padding: 4px 32px 20px; }
.doc-body {
  padding: 0 32px 32px;
}
.doc-body h4 { font-size: 14px; margin: 20px 0 12px; color: var(--text); }
.doc-body ul { list-style: none; padding: 0; }
.doc-body li { padding: 6px 0; font-size: 14px; color: var(--text-light); }
.doc-body li::before { content: '➤ '; color: var(--primary); font-size: 12px; }

.content-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.content-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.content-title.blue { color: var(--primary); }
.content-subtitle { margin: 24px 0 12px; font-size: 20px; font-weight: 700; }
.content-section h4 { margin: 16px 0 12px; font-size: 20px; font-weight: 800; color: var(--primary); }
.content-section ul {
  margin: 16px 0;
  padding-left: 24px;
}
.content-section li { margin-bottom: 8px; }
.content-section .btn-secondary { margin-top: 16px; }

/* ===== CTA Section (ClarityCheck style) ===== */
.cta-section {
  padding: 56px 0;
  background: var(--white);
}
.cta-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 24px;
}
.cta-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}
.cta-desc {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 24px;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cta-blue);
  color: var(--white) !important;
  padding: 16px 28px;
  font-size: 18px;
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none !important;
  transition: all var(--transition);
}
.btn-cta:hover {
  background: var(--cta-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  color: var(--white) !important;
}
.btn-arrow { font-size: 1.2em; }

/* ===== FAQ Premium - design épuré & animations incroyables ===== */
.faq-section {
  padding: 96px 0 112px;
  background: linear-gradient(165deg, #f0fdf4 0%, #f8fafc 40%, #f1f5f9 70%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.faq-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(22, 163, 74, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.03) 0%, transparent 40%),
    linear-gradient(180deg, transparent 0%, rgba(22, 163, 74, 0.02) 50%, transparent 100%);
  pointer-events: none;
}
.faq-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(22, 163, 74, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.faq-header {
  position: relative;
  text-align: center;
  margin-bottom: 56px;
}
.faq-title {
  margin-bottom: 16px;
  position: relative;
  animation: faqTitleGlow 4s ease-in-out infinite;
}
@keyframes faqTitleGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.05); }
}
.faq-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}
.faq-header-decor {
  width: 64px;
  height: 4px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
  border-radius: 2px;
  opacity: 0.7;
  animation: faqDecorPulse 2.5s ease-in-out infinite;
}
@keyframes faqDecorPulse {
  0%, 100% { opacity: 0.5; transform: scaleX(0.9); }
  50% { opacity: 0.9; transform: scaleX(1); }
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.faq-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 1px 2px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: faqItemFadeIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  transform-origin: center top;
}
.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:hover {
  box-shadow:
    0 12px 40px rgba(22, 163, 74, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(22, 163, 74, 0.25);
  transform: translateY(-4px) scale(1.01);
}
.faq-item[open] {
  box-shadow:
    0 20px 50px rgba(22, 163, 74, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(22, 163, 74, 0.35);
  transform: translateY(-2px);
}
.faq-item[open]:hover {
  transform: translateY(-4px);
}
@keyframes faqItemFadeIn {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.faq-question {
  padding: 24px 28px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: color 0.3s ease, background 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.faq-question:hover {
  color: var(--accent-green);
}
.faq-question:focus-visible {
  outline: 2px solid var(--accent-green);
  outline-offset: 2px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent-green);
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.12) 0%, rgba(34, 197, 94, 0.08) 100%);
  border-radius: 12px;
  border: 1px solid rgba(22, 163, 74, 0.2);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-item[open] .faq-num {
  background: linear-gradient(135deg, var(--accent-green) 0%, #16a34a 100%);
  color: var(--white);
  border-color: transparent;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.35);
}
.faq-question-text {
  flex: 1;
  line-height: 1.45;
  padding-right: 16px;
  min-width: 0;
}
.faq-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--bg-input);
  color: var(--text-muted);
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-item[open] .faq-icon {
  background: linear-gradient(135deg, var(--accent-green) 0%, #16a34a 100%);
  color: var(--white);
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
}
.faq-answer-inner {
  overflow: hidden;
}
.faq-answer-inner p {
  margin: 0;
  padding: 0 28px 28px;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  padding-top: 24px;
  margin: 0 28px 28px;
  animation: faqAnswerReveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s backwards;
}
@keyframes faqAnswerReveal {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* FAQ - scroll-triggered animations */
.faq-item:not(.animated) {
  opacity: 0;
  transform: translateY(32px) scale(0.96);
}
.faq-item.animated {
  animation: faqItemFadeIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ===== Avis Section (Trustpilot style) ===== */
.avis-section {
  padding: 64px 0 80px;
  background: var(--white);
}
.avis-title {
  font-family: 'DM Sans', 'Source Sans 3', sans-serif;
  font-size: clamp(36px, 7vw, 52px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.avis-title.avis-title-gradient {
  background: linear-gradient(90deg, #111827 0%, #1f2937 25%, #374151 50%, #047857 75%, #16a34a 90%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.avis-title::after { display: none; }
.avis-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 32px;
}
.avis-excellent { font-weight: 600; color: var(--text-dark); }
.avis-stars-lg { color: #fbbf24; font-size: 20px; letter-spacing: 2px; }
.avis-score { font-weight: 700; font-size: 18px; color: var(--text-dark); }
.avis-count { font-size: 14px; color: var(--text-muted); }
.avis-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 40px;
}
.carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 24px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.carousel-btn:hover {
  background: var(--white);
  color: var(--text);
  border-color: var(--text-muted);
  box-shadow: var(--shadow);
}
.avis-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 16px 0;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}
.avis-carousel::-webkit-scrollbar { height: 6px; }
.avis-carousel::-webkit-scrollbar-track { background: var(--border); border-radius: 3px; }
.avis-carousel::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
.avis-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.avis-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.avis-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.avis-stars {
  color: #00b67a;
  font-size: 18px;
  letter-spacing: 2px;
}
.avis-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg-light);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.avis-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.3;
}
.avis-text {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.avis-card-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  color: var(--text-muted);
}
.avis-author { font-weight: 600; color: var(--text); }
.avis-trustpilot-footer {
  text-align: center;
}
.avis-trustpilot-footer p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 12px;
}
.avis-trustpilot-footer strong { font-weight: 700; }
.avis-tp-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00b67a;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}
.avis-tp-logo:hover { color: #009e6a; text-decoration: none; }

/* ===== Footer ===== */
.footer { background: var(--footer-bg); color: var(--white); }
.footer-main { padding: 48px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
}
.footer-col p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 8px;
}
.footer-phone { font-size: 20px; font-weight: 700; margin: 8px 0 !important; }
.footer-tarif {
  display: inline-block;
  background: #e91e63;
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius);
  font-size: 12px;
  margin-bottom: 8px;
}
.footer-hours { font-size: 13px; opacity: 0.8; }
.franceconnect-logo, .fc-logo {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 8px;
  margin-bottom: 12px;
}
.fed-logo {
  width: 60px;
  height: 60px;
  background: var(--red);
  border-radius: 8px;
  margin-bottom: 12px;
}
.footer-bottom {
  background: var(--footer-dark);
  padding: 20px 0;
}
.footer-disclaimer {
  background: var(--footer-dark);
  color: var(--white);
  padding: 20px 0 24px;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.9;
}
.footer-disclaimer a { color: var(--white); text-decoration: underline; }
.footer-disclaimer a:hover { opacity: 0.9; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copyright {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.9;
}
.ssl-badge { font-size: 20px; }
.footer-links {
  display: flex;
  gap: 12px;
  font-size: 14px;
}
.footer-links a { color: var(--white); }
.footer-links a:hover { opacity: 0.8; }
.footer-links span { opacity: 0.5; }

/* ===== Scroll Top Button ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 1000;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ===== Recap Page ===== */
.recap-main {
  padding: 40px 0 80px;
  background: linear-gradient(90deg, var(--white) 0%, var(--bg-sidebar) 100%);
}
.recap-container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.recap-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.recap-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--text);
}
.badge-inline { flex-shrink: 0; }
.badge-circle-small {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-habile-icon-mini {
  width: 50px;
  height: 12px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 4px;
}
.badge-year { font-size: 7px; margin-top: 2px; color: var(--text-muted); }
.recap-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
  position: relative;
}
/* Recap info : label | valeur, aligné sur PC et mobile */
.recap-info {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
}
.recap-row {
  display: contents;
}
.recap-row .recap-label,
.recap-row .recap-value {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.recap-row:last-child .recap-label,
.recap-row:last-child .recap-value { border-bottom: none; }
.recap-label { color: var(--text-light); }
.recap-value { color: var(--text); font-weight: 500; }
.recap-price { color: var(--primary) !important; font-size: 18px !important; font-weight: 700 !important; }
.recap-renault {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}
.recap-form {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.recap-form .form-group {
  margin-bottom: 20px;
}
.recap-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.recap-form .label-short { display: none; }
.recap-form .form-group input[type="text"],
.recap-form .form-group input[type="email"] {
  width: 100%;
  max-width: 400px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
}
.recap-form .radio-group {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}
.recap-form .radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 500;
}
.recap-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.recap-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

/* ===== Sidebar ===== */
.recap-sidebar, .checkout-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-accreditation {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.sidebar-accreditation .accreditation-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 6px;
  margin-bottom: 8px;
  display: block;
}
.sidebar-accreditation p { margin: 4px 0; color: var(--text); font-size: 14px; }
.sidebar-help {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.sidebar-help h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.sidebar-help p { color: var(--text-light); font-size: 14px; margin-bottom: 12px; }
.sidebar-google {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.google-g {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc05, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rating { font-weight: 700; color: var(--text); }
.sidebar-location { font-size: 13px; color: var(--text-muted); }
.operator-placeholder {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: var(--radius);
  margin-top: 16px;
}
.operator-placeholder.small { height: 80px; }

/* Sidebar Trustpilot */
.sidebar-trustpilot {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.sidebar-trustpilot h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.sidebar-avis-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.sidebar-avis-card {
  padding: 12px;
  background: var(--bg-light);
  border-radius: var(--radius);
}
.sidebar-avis-stars { font-size: 14px; color: #ffc107; margin-bottom: 6px; }
.sidebar-avis-text { font-size: 13px; color: var(--text); line-height: 1.4; margin: 0 0 8px 0; }
.sidebar-avis-author { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.sidebar-tp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #00b67a;
  text-decoration: none;
}
.sidebar-tp-link:hover { color: #009e6a; text-decoration: none; }
.sidebar-franceconnect {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.sidebar-franceconnect h3 { font-size: 16px; margin-bottom: 12px; color: var(--text); }
.sidebar-franceconnect p { font-size: 14px; color: var(--text-light); }
.sidebar-franceconnect .fc-logo { margin-top: 16px; }

/* ===== Checkout ===== */
.checkout-main { padding: 40px 0 80px; background: var(--bg-light); }
.checkout-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.checkout-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.checkout-recap-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 24px;
}
.checkout-recap-card .recap-info { border: none; padding: 0; }
.checkout-change-vehicle { margin-top: 16px; display: inline-block; }
/* Checkout form compact */
.checkout-form .form-group { margin-bottom: 14px; }
.checkout-form .form-group label { margin-bottom: 5px; }
.checkout-form .form-row { gap: 16px; }
.checkout-form .section-title-form {
  margin: 20px 0 12px;
  padding-top: 16px;
}
.checkout-form .payment-element-wrapper { padding: 10px 0; }
.checkout-form .checkbox-group { margin: 14px 0; }
.checkout-form .stripe-mention { margin: 12px 0 18px; padding: 10px 14px; }
.checkout-form .form-group input { padding: 10px 14px; }
.badge-checkout { position: absolute; top: 40px; right: 20px; }
.checkout-option {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.checkout-option h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.option-desc { color: var(--text-light); margin-bottom: 20px; font-size: 15px; }
.btn-franceconnect {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  background: #1b1b35;
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-franceconnect:hover { background: #252545; }
.fc-logo-btn {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 6px;
}
.link-info { display: inline-block; margin-top: 12px; font-size: 14px; }
.option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.link-account { font-size: 14px; color: var(--text-muted); }

/* ===== Form Elements ===== */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text);
  font-size: 14px;
}
.label-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.9em;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,115,183,0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.radio-group {
  display: flex;
  gap: 12px;
}
.radio-option {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  background: var(--white);
}
.radio-option.selected {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.radio-option input { display: none; }

/* ===== Sidebar Summary ===== */
.sidebar-summary {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.sidebar-summary h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.sidebar-ref {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.sidebar-summary hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
}
.summary-price { color: var(--primary); font-weight: 600; }
.summary-inclus { font-size: 13px; }
.summary-inclus .summary-inclus-price { color: var(--btn-green); font-weight: 600; font-size: 12px; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
}
.total-price { font-size: 24px; color: var(--primary); }
.advantage-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid #e3f2fd;
  border-radius: var(--radius);
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text);
}
.adv-icon { font-size: 20px; }

/* ===== Checkout Step 2 ===== */
.checkout-step2 .checkout-content { max-width: 100%; }
.section-title-form {
  font-size: 24px;
  font-weight: 800;
  margin: 32px 0 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.form-row-inline { grid-template-columns: 100px 80px; }
.form-group.small { max-width: 120px; }
.password-input {
  position: relative;
}
.password-input input { padding-right: 48px; }
.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  opacity: 0.6;
}
.password-criteria {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.criterion {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-light);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-muted);
  transition: all var(--transition);
}
.criterion.valid {
  background: #e8f5e9;
  color: #2e7d32;
}
.criterion.valid::before {
  content: '✓';
  color: #2e7d32;
  font-weight: bold;
}
.criterion.invalid::before {
  content: '✕';
  color: #c62828;
  font-weight: bold;
  margin-right: 4px;
}
.checkbox-group { margin: 24px 0; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
}
.checkbox-label input { width: auto; margin-top: 4px; }
.checkbox-label a { text-decoration: underline; }
.stripe-mention {
  font-size: 13px;
  color: var(--text-muted);
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: var(--radius);
  margin: 16px 0 24px;
  border-left: 4px solid var(--primary);
}
.stripe-mention a { font-weight: 500; }
.stripe-mention.small { font-size: 12px; padding: 10px 14px; margin: 12px 0 20px; }
.payment-element-wrapper {
  min-height: 200px;
  padding: 16px 0;
}

/* ===== Page Résultats (style ClarityCheck - chargement progressif) ===== */
.resultats-page {
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.02) 30%, var(--white) 50%, var(--white) 100%);
  min-height: 100vh;
}
.resultats-main {
  padding: 48px 0 80px;
}
.resultats-container {
  max-width: 520px;
  margin: 0 auto;
}
.resultats-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 32px 28px;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.resultats-card-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.resultats-title {
  font-family: 'DM Sans', 'Source Sans 3', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
  min-height: 2.2em;
  line-height: 1.3;
}
.resultats-title-loading {
  display: inline;
  transition: opacity 0.4s ease;
}
.resultats-title-loading.resultats-title-fade-out {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.resultats-title-done {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.resultats-title-done.resultats-title-fade-in {
  display: inline;
  opacity: 1;
  animation: resultatsFadeSlide 0.6s var(--ease-out) forwards;
}
@keyframes resultatsFadeSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Bloc vérification (réassurance - pas de fausses données) */
.resultats-verif-block {
  opacity: 0;
  transform: translateY(20px);
  text-align: center;
}
.resultats-verif-block.resultats-verif-visible {
  opacity: 1;
  transform: translateY(0);
  animation: resultatsVerifIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes resultatsVerifIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.resultats-icon-car {
  width: 100%;
  max-width: 120px;
  margin: 0 auto 20px;
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.resultats-icon-car.resultats-icon-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: resultatsCarBounce 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}
@keyframes resultatsCarBounce {
  0% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-6px) scale(1.02); }
  60% { transform: translateY(2px) scale(1); }
  100% { transform: translateY(0) scale(1); }
}
.resultats-immat-badge {
  background: var(--text-dark);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 15px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.resultats-immat-badge.resultats-immat-visible {
  opacity: 1;
  transform: scale(1);
  animation: resultatsBadgePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes resultatsBadgePop {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
.resultats-immat-label { opacity: 0.9; }
.resultats-verif-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateX(-12px);
}
.resultats-verif-title.resultats-verif-title-visible {
  opacity: 1;
  transform: translateX(0);
  animation: resultatsSlideIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes resultatsSlideIn {
  from { opacity: 0; transform: translateX(-16px); }
  to { opacity: 1; transform: translateX(0); }
}
.resultats-verif-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.resultats-verif-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.4;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.resultats-verif-item.resultats-verif-item-visible {
  opacity: 1;
  transform: translateX(0);
  animation: resultatsItemReveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes resultatsItemReveal {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
.resultats-verif-item strong { color: var(--cta-blue); }
.resultats-verif-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cta-blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}
.resultats-redirect-msg {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-light);
  opacity: 0;
}
.resultats-redirect-msg.resultats-redirect-visible {
  opacity: 1;
  animation: resultatsRedirectFade 0.5s ease forwards;
}
.resultats-redirect-msg .loading-dots { color: var(--accent-green); }
@keyframes resultatsRedirectFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.resultats-fields {
  display: flex;
  flex-direction: column;
}
.resultats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  opacity: 1;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.resultats-row:last-child {
  border-bottom: none;
}
.resultats-row.resultats-row-revealing {
  animation: resultatsRowReveal 0.5s var(--ease-out) forwards;
}
@keyframes resultatsRowReveal {
  from {
    transform: translateX(-6px);
  }
  to {
    transform: translateX(0);
  }
}
.resultats-label {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 500;
}
.resultats-value {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
}
.resultats-loading {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-green);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.resultats-loading.resultats-loading-hide {
  opacity: 0;
  transform: scale(0.9);
  position: absolute;
  pointer-events: none;
}
.loading-dots {
  display: inline-flex;
  gap: 4px;
}
.loading-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  animation: loadingDots 1.2s ease-in-out infinite both;
}
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes loadingDots {
  0%, 80%, 100% { opacity: 0.4; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}
.loading-arrow {
  flex-shrink: 0;
  animation: loadingArrow 1.5s ease-in-out infinite;
}
@keyframes loadingArrow {
  0%, 100% { opacity: 0.6; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(4px); }
}
.resultats-value-text {
  font-size: 15px;
  color: var(--text-dark);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.resultats-value-text.resultats-value-text-reveal {
  opacity: 1;
  transform: translateX(0);
  animation: resultatsValuePop 0.45s var(--ease-out) forwards;
}
@keyframes resultatsValuePop {
  from {
    opacity: 0;
    transform: translateX(12px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
.resultats-cta {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.resultats-cta.resultats-cta-reveal {
  opacity: 1;
  transform: translateY(0);
  animation: resultatsCtaIn 0.6s var(--ease-out) forwards;
}
@keyframes resultatsCtaIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.resultats-cta-text {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.5;
}
.resultats-cta-btn {
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: none;
}
.resultats-link-back {
  display: inline-block;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.resultats-link-back:hover {
  color: var(--primary);
  text-decoration: none;
}
@media (max-width: 768px) {
  .resultats-main { padding: 24px 0 60px; }
  .resultats-card { padding: 24px 20px; }
  .resultats-title { font-size: 1.2rem; margin-bottom: 24px; }
}

/* ===== Page Vérification (style image : barre progression + liste découverte) ===== */
.verification-page {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.06) 0%, rgba(34, 197, 94, 0.04) 30%, var(--white) 60%, var(--white) 100%);
  min-height: 100vh;
}
.verification-main { padding: 40px 0 80px; }
.verification-container { max-width: 560px; margin: 0 auto; }
.verification-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 2px 12px rgba(0,0,0,0.04);
  padding: 32px 28px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.verification-card.verification-card-visible {
  opacity: 1;
  transform: translateY(0);
}
.verification-header {
  font-family: 'DM Sans', 'Source Sans 3', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.4;
}
.verification-immat-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.verification-immat-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-input);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cta-blue);
  opacity: 0.85;
}
.verification-immat-avatar svg { width: 28px; height: 28px; }
.verification-padlock {
  color: #f59e0b;
  flex-shrink: 0;
}
.verification-immat {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.08em;
}
.verification-progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.verification-progress-bar {
  flex: 1;
  height: 10px;
  background: var(--bg-input);
  border-radius: 5px;
  overflow: hidden;
}
.verification-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cta-blue), #3b82f6);
  border-radius: 5px;
  transition: width 0.15s linear;
  position: relative;
}
.verification-progress-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 4px, rgba(255,255,255,0.25) 4px, rgba(255,255,255,0.25) 8px);
  animation: verificationStripes 0.8s linear infinite;
}
@keyframes verificationStripes {
  0% { transform: translateX(0); }
  100% { transform: translateX(16px); }
}
.verification-progress-pct {
  font-size: 14px;
  font-weight: 700;
  color: var(--cta-blue);
  min-width: 42px;
  text-align: right;
}
.verification-reassurance {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 28px;
}
.verification-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.verification-search-list {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
}
.verification-search-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}
.verification-search-item:last-child { border-bottom: none; }
.verification-search-spinner {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid var(--border);
  border-top-color: var(--cta-blue);
  border-radius: 50%;
  animation: verificationSpin 0.9s linear infinite;
}
.verification-search-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--accent-green);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}
.verification-search-item.verification-search-item-done .verification-search-spinner { display: none; }
.verification-search-item.verification-search-item-done .verification-search-check { display: flex; }
.verification-search-item.verification-search-item-done {
  animation: verificationItemDone 0.4s var(--ease-out) forwards;
}
@keyframes verificationSpin {
  to { transform: rotate(360deg); }
}
@keyframes verificationItemDone {
  from { opacity: 0.7; }
  to { opacity: 1; }
}
.verification-redirect {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-light);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.verification-redirect.verification-redirect-visible { opacity: 1; }
.verification-redirect .loading-dots { color: var(--accent-green); }
@media (max-width: 768px) {
  .verification-main { padding: 24px 0 60px; }
  .verification-card { padding: 24px 20px; }
  .verification-header { font-size: 1rem; }
  .verification-immat { font-size: 1.2rem; }
}

/* ===== Page Rapport (capture email - style ClarityCheck) ===== */
.rapport-page { background: var(--bg-light); min-height: 100vh; }
.rapport-main { padding: 40px 0 80px; }
.rapport-container { max-width: 480px; margin: 0 auto; }
.rapport-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 20px;
}
.rapport-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.rapport-immat {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 8px;
  letter-spacing: 0.05em;
}
.rapport-date {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}
.rapport-date span { color: var(--accent-green); font-weight: 600; }
.rapport-warning {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-bottom: 24px;
}
.rapport-warning-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--accent-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}
.rapport-warning strong { display: block; margin-bottom: 6px; color: var(--text-dark); font-size: 15px; }
.rapport-warning p { margin: 0; font-size: 14px; color: var(--text-light); line-height: 1.5; }
.rapport-email-block { margin-bottom: 24px; }
.rapport-email-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 20px;
}
.rapport-form { margin-bottom: 16px; }
.rapport-field {
  margin-bottom: 16px;
}
.rapport-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.rapport-field input {
  width: 100%;
  padding: 14px 18px;
  font-size: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-sizing: border-box;
}
.rapport-field input:focus {
  outline: none;
  border-color: var(--cta-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.btn-rapport-cta {
  width: 100%;
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 600;
  background: var(--cta-blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-rapport-cta:hover { background: var(--cta-blue-hover); transform: translateY(-1px); }
.rapport-terms {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.rapport-terms a { color: var(--accent-green); font-weight: 600; }
.rapport-terms a:hover { text-decoration: underline; }
.rapport-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 16px;
}
.rapport-divider::before,
.rapport-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.rapport-divider span { font-size: 13px; color: var(--text-muted); }
.btn-google {
  width: 100%;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  cursor: not-allowed;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .rapport-main { padding: 24px 0 60px; }
  .rapport-card { padding: 24px 20px; }
  .rapport-immat { font-size: 1.3rem; }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { order: -1; max-width: 400px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .discover-grid { grid-template-columns: repeat(2, 1fr); }
  .recap-container, .checkout-container {
    grid-template-columns: 1fr;
  }
  .recap-sidebar, .checkout-sidebar { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-section { padding: 32px 0 48px; }
  .hero-title { font-size: 32px; line-height: 1.3; }
  .hero-title-nowrap { white-space: normal; }
  .hero-text { font-size: 15px; margin-bottom: 20px; }
  .hero-form-card { padding: 20px 16px; }
  .section-title { font-size: 22px; }
  .section-title--large { font-size: 28px; }
  .section-subtitle { font-size: 16px; margin-bottom: 24px; }
  .avis-title { font-size: 28px; margin-bottom: 16px; }
  .avis-rating { gap: 6px 12px; margin-bottom: 24px; }
  .avis-excellent, .avis-score { font-size: 15px; }
  .avis-stars-lg { font-size: 18px; }
  .vehicles-cards { grid-template-columns: 1fr; gap: 12px; }
  .vehicle-card { padding: 20px 18px; }
  .cta-title { font-size: 22px; margin-bottom: 20px; }
  .cta-card { padding: 24px 20px; }
  .faq-title { font-size: 22px; margin-bottom: 24px; }
  .faq-question { padding: 16px 20px 16px 0; font-size: 15px; }
  .recap-title { font-size: 24px; }
  .nav-main { display: none; }
  .menu-toggle { display: flex; }
  .btn-contact { display: none; }
  .action-bar { top: 56px; }
  .stats-grid { grid-template-columns: 1fr; }
  .discover-grid { grid-template-columns: 1fr; }
  .vehicles-grid { grid-template-columns: 1fr; }
  .recap-info { grid-template-columns: minmax(100px, auto) 1fr; }
  .recap-renault { position: static; margin-top: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 16px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .form-row-inline { grid-template-columns: 1fr 1fr; }
  /* Recap étape 2 : plus compact sur mobile */
  .recap-main { padding: 20px 0 48px; }
  .recap-header { margin-bottom: 16px; }
  .recap-card { padding: 20px 16px; margin-bottom: 20px; }
  .recap-form { margin-top: 16px; padding-top: 16px; }
  .recap-form .form-group { margin-bottom: 14px; }
  .recap-form .form-group label { font-size: 13px; margin-bottom: 6px; }
  .recap-form .form-group input[type="text"],
  .recap-form .form-group input[type="email"] { padding: 10px 14px; font-size: 16px; max-width: none; }
  .recap-form .radio-group { gap: 16px; margin-top: 6px; }
  .recap-form-actions { margin-top: 20px; padding-top: 20px; flex-direction: column; }
  .recap-form-actions .btn { width: 100%; justify-content: center; }
  .recap-labels p, .recap-values p { font-size: 14px; padding: 6px 0; }
  .label-full { display: none !important; }
  .label-short { display: inline !important; }
}

/* ===== Guides / Blog SEO ===== */
.guides-hero { padding: 48px 0 40px; text-align: center; }
.guides-hero h1 { margin-bottom: 12px; font-size: 1.85rem; }
.guides-hero p { color: var(--text-light); max-width: 560px; margin: 0 auto; line-height: 1.6; }
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding: 24px 0 60px;
}
.guide-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.guide-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.guide-card h2 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.35; }
.guide-card h2 a { color: var(--text); text-decoration: none; }
.guide-card h2 a:hover { color: var(--primary); }
.guide-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; flex-grow: 1; }
.guide-card .guide-card-link { font-size: 0.9rem; font-weight: 600; color: var(--primary); }
.guide-article { max-width: 720px; margin: 0 auto; padding: 0 0 60px; }
.guide-article .breadcrumb { margin-bottom: 24px; }
.guide-article h1 { font-size: 1.75rem; margin-bottom: 8px; line-height: 1.3; }
.guide-article .guide-meta { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.guide-article h2 { font-size: 1.25rem; color: var(--primary); margin: 2rem 0 0.75rem; }
.guide-article p { line-height: 1.75; margin-bottom: 1rem; }
.guide-article ul { margin: 0 0 1rem 1.25rem; line-height: 1.7; }
.guide-article li { margin-bottom: 0.4rem; }
.guide-cta { margin-top: 2.5rem; padding: 24px; background: var(--bg-light); border-radius: var(--radius-lg); text-align: center; }
.guide-cta p { margin-bottom: 16px; }
.guide-cta .btn { display: inline-block; }
.guide-nav-links { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 12px; }
.guide-nav-links a { color: var(--primary); font-size: 0.95rem; }
@media (max-width: 768px) {
  .guides-grid { grid-template-columns: 1fr; }
}
