/* ==========================================================================
   CHARTE GRAPHIQUE & STYLES OFFICIELS AXEL ASSURANCES SÉNÉGAL
   ========================================================================== */

:root {
  /* Palette de marque Axel */
  --color-navy: #0B1E36;
  --color-navy-light: #132E52;
  --color-primary: #0066CC;
  --color-primary-hover: #0052A3;
  --color-cyan: #00A3E0;
  --color-accent: #00C896;
  
  /* Couleurs de fond et surfaces */
  --bg-body: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-card-alt: #F1F5F9;
  --border-color: #E2E8F0;
  --border-focus: #0066CC;
  
  /* Typographie */
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-white: #FFFFFF;
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', var(--font-family);

  /* Ombres */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(11, 30, 54, 0.08), 0 2px 4px -2px rgba(11, 30, 54, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(11, 30, 54, 0.1), 0 4px 6px -4px rgba(11, 30, 54, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(11, 30, 54, 0.12), 0 8px 10px -6px rgba(11, 30, 54, 0.06);

  /* Arrondis */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset de base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top bar */
.top-bar {
  background-color: var(--color-navy);
  color: #CBD5E1;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
  margin-right: 6px;
}

/* Header */
.main-header {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
}

.brand-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 51, 102, 0.08));
  transition: transform 0.2s ease;
}

.brand-logo:hover .header-logo-img {
  transform: scale(1.04);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo-mark {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.logo-axel {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--color-navy);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 1.5px;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.header-nav {
  display: flex;
  gap: 25px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  color: var(--text-white);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 102, 204, 0.35);
}

.btn-secondary {
  background-color: var(--bg-card-alt);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: #E2E8F0;
}

.btn-pay {
  background: linear-gradient(135deg, #00A3E0 0%, #0066CC 100%);
  color: white;
  font-size: 1.05rem;
  padding: 15px 30px;
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.btn-pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.4);
}

.btn-arrow {
  width: 18px;
  height: 18px;
}

/* Hero Section */
.hero-section {
  padding: 50px 0 80px 0;
  background: radial-gradient(circle at top right, rgba(0, 163, 224, 0.08) 0%, transparent 60%),
              radial-gradient(circle at bottom left, rgba(0, 102, 204, 0.05) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: flex-start;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: var(--color-primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-navy);
  margin-bottom: 18px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.check-icon {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

/* Hero Video CTA */
.hero-video-cta-wrap {
  margin-top: 26px;
}

.hero-video-trigger {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: white;
  padding: 10px 18px 10px 12px;
  border-radius: var(--radius-full);
  border: 1.5px solid #BFDBFE;
  box-shadow: 0 4px 16px rgba(0, 102, 204, 0.1);
  text-decoration: none;
  transition: var(--transition);
}

.hero-video-trigger:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.18);
}

.video-play-ring {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-cyan));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.ring-pulse {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid var(--color-cyan);
  animation: wa-pulse 1.8s infinite;
  opacity: 0.7;
}

.hero-video-trigger-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.hero-video-trigger-text strong {
  font-size: 0.9rem;
  color: var(--color-navy);
}

.hero-video-trigger-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.video-pill-tag {
  background: #EFF6FF;
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-left: 4px;
}

/* ================= WIZARD CARD ================= */
.wizard-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xl);
  padding: 32px;
  position: relative;
}

.wizard-steps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-card-alt);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: var(--transition);
}

.step-indicator.active {
  color: var(--color-navy);
}

.step-indicator.active .step-circle {
  background-color: var(--color-primary);
  color: white;
}

.step-indicator.completed .step-circle {
  background-color: var(--color-accent);
  color: white;
}

.step-divider {
  flex: 1;
  height: 2px;
  background-color: var(--border-color);
  margin: 0 12px;
}

.step-title-box {
  margin-bottom: 24px;
}

.step-title-box h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.step-title-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Form Layout */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-navy);
}

.form-group input, .form-group select {
  padding: 12px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: var(--font-family);
  background-color: #FAFAFA;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--border-focus);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

.field-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.wizard-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.wizard-actions.dual-actions {
  justify-content: space-between;
}

.wizard-step-content {
  display: none;
}

.wizard-step-content.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Durées pills */
.duration-selector {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 6px;
}

.duration-pill {
  padding: 12px 6px;
  background: var(--bg-card-alt);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  text-align: center;
}

.duration-pill:hover {
  border-color: var(--color-primary);
}

.duration-pill.active {
  background: #EFF6FF;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.badge-pop {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: white;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* Quote Summary Card */
.quote-summary-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1.5px solid #BFDBFE;
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 18px;
}

.quote-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.formula-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.quote-status-badge {
  background-color: #ECFDF5;
  color: #065F46;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.quote-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

.breakdown-row.total-row {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1.5px dashed var(--border-color);
  color: var(--color-navy);
  font-size: 1.05rem;
}

.total-price {
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.guarantees-included {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
  font-size: 0.8rem;
  color: #059669;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Payment Methods Grid */
.payment-selection-box {
  margin-top: 20px;
}

.section-sublabel {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-navy);
  display: block;
  margin-bottom: 12px;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.payment-option-card {
  position: relative;
  cursor: pointer;
}

.payment-option-card input {
  position: absolute;
  opacity: 0;
}

.payment-card-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  background: white;
  transition: var(--transition);
}

.payment-option-card.active .payment-card-inner {
  border-color: var(--color-primary);
  background: #F0F7FF;
}

.payment-logo-wrap {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  overflow: hidden;
  flex-shrink: 0;
}

.payment-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

.wave-bg {
  background-color: #1DA1F2;
  color: white;
}

.paytech-bg {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: white;
}

.payment-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.payment-info strong {
  font-size: 0.9rem;
  color: var(--color-navy);
}

.payment-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.payment-check-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
}

.payment-option-card.active .payment-check-circle {
  border-color: var(--color-primary);
  background: var(--color-primary);
  box-shadow: inset 0 0 0 3px white;
}

/* Final recap bar */
.final-recap-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 24px;
}

.final-recap-bar h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.4rem;
}

.security-stamp {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #059669;
  font-size: 0.85rem;
  font-weight: 600;
}

.security-stamp svg {
  width: 20px;
  height: 20px;
}

/* Alert error & info */
.alert-error-box {
  background-color: #FEF2F2;
  border: 1px solid #F87171;
  color: #991B1B;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  margin-top: 16px;
}

.alert-info-box {
  background-color: #EFF6FF;
  border: 1px solid #93C5FD;
  color: #1E40AF;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.06);
}

/* Success Card */
.success-box {
  text-align: center;
  padding: 20px 0;
}

.success-icon-wrap {
  width: 64px;
  height: 64px;
  background-color: #ECFDF5;
  color: #059669;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.success-icon-wrap svg {
  width: 36px;
  height: 36px;
}

.success-subtitle {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.attestation-card {
  background: white;
  border: 2px solid #0066CC;
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 20px 0;
  text-align: left;
}

.attestation-header {
  border-bottom: 1.5px solid var(--border-color);
  padding-bottom: 10px;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
}

.attestation-title {
  font-weight: 800;
  color: var(--color-navy);
}

.attestation-id {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 700;
}

.attestation-body {
  display: flex;
  gap: 20px;
  align-items: center;
}

.attestation-qr {
  width: 100px;
  height: 100px;
  background: #F1F5F9;
  border: 1px dashed var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  text-align: center;
  padding: 6px;
}

.attestation-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.whatsapp-notif-box {
  background-color: #DCFCE7;
  color: #166534;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

/* Spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ================= SECTION DÉMONSTRATION VIDÉO EXPLICATIVE ================= */
.section-video-demo {
  padding: 80px 0 95px;
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 50%, #F8FAFC 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.video-showcase-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 45px;
  align-items: center;
}

.video-player-container {
  position: relative;
}

.video-ambient-glow {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(0, 163, 224, 0.3) 0%, rgba(0, 102, 204, 0.15) 50%, transparent 75%);
  filter: blur(45px);
  z-index: 0;
  pointer-events: none;
}

.video-mockup-frame {
  position: relative;
  z-index: 1;
  background: #0B1E36;
  border-radius: 22px;
  box-shadow: 0 25px 50px -12px rgba(11, 30, 54, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-mockup-frame:hover {
  box-shadow: 0 32px 65px -15px rgba(0, 102, 204, 0.45), 0 0 0 1px rgba(0, 163, 224, 0.4);
}

.mockup-window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #081628;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-controls {
  display: flex;
  gap: 7px;
}

.win-circle {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.win-close { background-color: #FF5F56; }
.win-min { background-color: #FFBD2E; }
.win-max { background-color: #27C93F; }

.window-badge-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: #E2E8F0;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.07);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.2px;
}

.pulse-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #00C896;
  box-shadow: 0 0 8px #00C896;
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.window-site-label {
  font-size: 0.74rem;
  color: #64748B;
  font-weight: 600;
}

.video-wrapper {
  position: relative;
  background: #050E1A;
  line-height: 0;
  overflow: hidden;
}

.main-demo-video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.video-custom-overlay-bar {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.video-action-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(11, 30, 54, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.video-action-pill:hover {
  background: rgba(0, 102, 204, 0.95);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.mockup-footer-tags {
  display: flex;
  justify-content: space-around;
  padding: 14px 18px;
  background: #081628;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: #CBD5E1;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-tag-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.tag-icon {
  font-size: 1rem;
}

/* Colonne explicative pour les visiteurs */
.video-explainer-sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.explainer-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  color: var(--color-navy);
  margin-bottom: 8px;
  line-height: 1.25;
}

.explainer-card-header p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.video-steps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.video-step-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.video-step-row:hover {
  border-color: var(--color-primary);
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(0, 102, 204, 0.08);
}

.step-num-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy), var(--color-primary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
}

.step-text-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.step-text-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.video-cta-block {
  margin-top: 8px;
}

.btn-lg-glow {
  padding: 16px 26px;
  font-size: 1.05rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0066CC 0%, #00A3E0 100%);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.btn-lg-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 102, 204, 0.4);
}

.cta-guarantee-note {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Sections communes */
.section-padded {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--bg-card-alt);
}

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

.section-title-wrap {
  margin-bottom: 50px;
}

.sub-badge {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title-wrap h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-navy);
  margin-top: 6px;
}

.section-title-wrap p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 10px auto 0;
}

/* Démarche & Valeurs Grid */
.steps-cards-grid, .values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card, .value-box {
  background: white;
  padding: 30px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.step-card:hover, .value-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: #BFDBFE;
  line-height: 1;
  margin-bottom: 12px;
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.step-card h3, .value-box h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.step-card p, .value-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ================= AVIS CLIENTS & TÉMOIGNAGES ================= */
.testimonials-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
  position: relative;
  overflow: hidden;
}

.overall-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0, 51, 102, 0.08);
  border: 1px solid #E2E8F0;
  margin-top: 18px;
}

.stars-group {
  color: #F59E0B;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.rating-score {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-navy);
}

.rating-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 30px 26px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 51, 102, 0.1);
  border-color: #93C5FD;
}

.testimonial-card.featured {
  border: 2px solid var(--color-primary);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.12);
  background: linear-gradient(180deg, #FFFFFF 0%, #F0F7FF 100%);
}

.featured-ribbon {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--color-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.avatar-1 {
  background: linear-gradient(135deg, #003366, #0066CC);
}

.avatar-2 {
  background: linear-gradient(135deg, #0099FF, #00CC99);
}

.avatar-3 {
  background: linear-gradient(135deg, #F59E0B, #EF4444);
}

.user-info h4 {
  font-size: 1.05rem;
  color: var(--color-navy);
  margin-bottom: 2px;
}

.user-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #F1F5F9;
  padding-top: 14px;
  font-size: 0.8rem;
}

.vehicle-badge {
  font-weight: 600;
  color: var(--color-navy);
  background: #F1F5F9;
  padding: 4px 10px;
  border-radius: 6px;
}

.verified-pill {
  font-weight: 700;
  color: #059669;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* FAQ */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.faq-item summary {
  font-weight: 700;
  color: var(--color-navy);
  cursor: pointer;
}

.faq-content {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.main-footer {
  background: var(--color-navy);
  color: #94A3B8;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.footer-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  background: white;
  padding: 6px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .video-showcase-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .steps-cards-grid, .values-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .header-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .duration-selector {
    grid-template-columns: repeat(3, 1fr);
  }
  .payment-methods-grid {
    grid-template-columns: 1fr;
  }
  .steps-cards-grid, .values-grid {
    grid-template-columns: 1fr;
  }
  .attestation-actions {
    flex-direction: column;
  }
  .mockup-window-bar {
    padding: 10px 14px;
  }
  .video-custom-overlay-bar {
    bottom: 10px;
    right: 10px;
    gap: 6px;
  }
  .video-action-pill {
    padding: 5px 10px;
    font-size: 0.72rem;
  }
  .mockup-footer-tags {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 14px;
    gap: 8px;
  }
  .video-ambient-glow {
    display: none;
  }
  .video-showcase-grid {
    gap: 24px;
  }
  .video-step-row {
    padding: 14px 16px;
    gap: 12px;
  }
  .step-num-badge {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
  .step-text-content h4 {
    font-size: 0.98rem;
  }
  .step-text-content p {
    font-size: 0.82rem;
  }
  .explainer-card-header h3 {
    font-size: 1.35rem;
  }
  .section-video-demo {
    padding: 50px 0 65px;
  }
  .hero-video-trigger {
    width: 100%;
    justify-content: flex-start;
  }
}

.topbar-whatsapp-link {
  color: #E2E8F0;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.topbar-whatsapp-link:hover {
  color: #25D366;
}

/* ================= WIDGET WHATSAPP FLOTTANT ================= */
.whatsapp-float-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.whatsapp-float-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 10px 18px 10px 14px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(0, 0, 0, 0.15);
  font-family: var(--font-family);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-float-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  background: #20BA56;
}

.whatsapp-pulse {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50px;
  border: 2px solid #25D366;
  animation: wa-pulse 2s infinite;
  pointer-events: none;
  opacity: 0.6;
}

@keyframes wa-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.15);
    opacity: 0;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.whatsapp-icon {
  flex-shrink: 0;
  color: white;
}

.whatsapp-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.whatsapp-btn-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.whatsapp-btn-sub {
  font-size: 0.72rem;
  opacity: 0.95;
  font-weight: 500;
}

.whatsapp-online-dot {
  width: 8px;
  height: 8px;
  background-color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .whatsapp-float-container {
    bottom: 18px;
    right: 18px;
  }
  .whatsapp-btn-text {
    display: none;
  }
  .whatsapp-float-btn {
    padding: 14px;
    border-radius: 50%;
  }
  .whatsapp-online-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    border: 2px solid #25D366;
  }
  .whatsapp-pulse {
    border-radius: 50%;
  }
}
