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

:root {
  --primary:        #2563eb;
  --primary-dark:   #1d4ed8;
  --primary-darker: #1e40af;
  --primary-light:  #eff6ff;
  --primary-mid:    #dbeafe;
  --accent:         #f59e0b;
  --accent-dark:    #d97706;
  --success:        #10b981;
  --text:           #0f172a;
  --text-med:       #334155;
  --text-light:     #64748b;
  --text-xlight:    #94a3b8;
  --bg:             #f8fafc;
  --bg-dark:        #f1f5f9;
  --white:          #ffffff;
  --border:         #e2e8f0;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow:     0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 20px 48px rgba(0,0,0,0.10), 0 8px 16px rgba(0,0,0,0.06);
  --shadow-blue: 0 8px 32px rgba(37,99,235,0.28);
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: 'Poppins', sans-serif; line-height: 1.2; }
img { max-width: 100%; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1;
}
.logo img { height: 38px; width: auto; display: block; flex-shrink: 0; }
.logo-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: 0.5px;
  line-height: 1.25;
}
.logo-group {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.6rem;
  color: var(--primary);
  letter-spacing: 4px;
  text-transform: uppercase;
}
nav { display: flex; gap: 8px; align-items: center; }
nav a {
  color: var(--text-med);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 8px 10px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
nav a:hover { color: var(--primary); background: var(--primary-light); text-decoration: none; }
.btn-nav {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  box-shadow: var(--shadow-blue);
  transition: all 0.2s !important;
}
.btn-nav:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(37,99,235,0.35) !important;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  border: none;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,99,235,0.35);
  color: var(--white);
  text-decoration: none;
}
.btn-secondary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(245,158,11,0.3);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245,158,11,0.4);
  color: var(--white);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); text-decoration: none; }
.btn-lg { padding: 16px 44px; font-size: 1.05rem; border-radius: 14px; }

/* ===== HERO ===== */
.hero {
  background:
    radial-gradient(ellipse at 15% 60%, rgba(37,99,235,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(99,102,241,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 90%, rgba(16,185,129,0.1) 0%, transparent 40%),
    linear-gradient(135deg, #0c1a3a 0%, #1e3a8a 55%, #1d4ed8 100%);
  color: var(--white);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero h1 span { color: #fbbf24; }
.hero p { font-size: 1.1rem; opacity: 0.88; margin-bottom: 36px; line-height: 1.7; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 7px 16px;
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.badge-rate {
  background: rgba(251,191,36,0.18);
  border-color: rgba(251,191,36,0.5);
  color: #fbbf24;
  font-weight: 700;
}

/* ===== HERO CARD (Simulateur) ===== */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.1);
}
.sim-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.sim-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.sim-header p {
  font-size: 0.75rem;
  color: var(--text-light);
  margin: 0;
}
.sim-rate-badge {
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #bfdbfe;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.sim-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.sim-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 7px;
}
.sim-input-wrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sim-input-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}
.sim-input-wrap input {
  border: none !important;
  box-shadow: none !important;
  padding: 11px 12px;
  font-size: 0.92rem;
  width: 100%;
  outline: none;
  background: #fff;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}
.sim-input-suffix {
  padding: 0 13px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #94a3b8;
  background: #f8fafc;
  display: flex;
  align-items: center;
  border-left: 1.5px solid var(--border);
  flex-shrink: 0;
}
.sim-field select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 32px 11px 12px;
  font-size: 0.88rem;
  color: var(--text);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 12px center;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.sim-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}
.sim-field small {
  display: block;
  margin-top: 5px;
  font-size: 0.68rem;
  color: #94a3b8;
}
.sim-btn {
  width: 100%;
  margin-top: 16px;
  display: block;
  text-align: center;
}
.form-group { margin-bottom: 16px; }
.date-fields {
  display: grid;
  grid-template-columns: 72px 72px 1fr;
  gap: 8px;
}
.date-fields input {
  text-align: center;
  padding: 10px 8px;
}
.date-fields input::-webkit-inner-spin-button,
.date-fields input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.date-fields input[type=number] { -moz-appearance: textfield; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 7px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.form-group select,
.form-group input[type="number"],
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}

/* Simulateur résultat */
.sim-result {
  background: #f0f7ff;
  border: 1.5px solid #bfdbfe;
  border-radius: 12px;
  padding: 20px 16px 16px;
  text-align: center;
}
.sim-monthly-value {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -1px;
}
.sim-monthly-label {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 4px;
  margin-bottom: 16px;
  font-weight: 500;
}
.sim-totals {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #dbeafe;
}
.sim-totals > div {
  flex: 1;
  background: rgba(255,255,255,0.75);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sim-totals > div:first-child {
  border-right: 1px solid #dbeafe;
}
.sim-totals span {
  font-size: 0.65rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sim-totals strong {
  font-size: 0.88rem;
  color: #1e293b;
  font-weight: 700;
}

/* ===== SECTIONS ===== */
section { padding: 88px 0; }
.section-title { text-align: center; margin-bottom: 56px; }
.section-title h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.section-title p { color: var(--text-light); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.bg-light { background: var(--bg); }

/* ===== CREDITS SHOWCASE ===== */
.credits-showcase {
  background: #fff;
  padding: 80px 0;
}

.cred-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 18px 16px;
  background: #fff;
  text-decoration: none;
  border-left: 3px solid transparent;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s, border-left-color 0.2s;
  min-width: 0;
}
.cred-item:nth-child(odd) { border-right: 1px solid #f1f5f9; }
.cred-item:nth-last-child(-n+2) { border-bottom: none; }
.cred-item:hover {
  background: #fffbf2;
  border-left-color: #b8952a;
}
.cred-num {
  font-size: 0.6rem;
  font-weight: 700;
  color: #cbd5e1;
  letter-spacing: 0.04em;
  font-family: 'Poppins', sans-serif;
  min-width: 16px;
  flex-shrink: 0;
}
.cred-ico {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}
.cred-body {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.cred-body strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cred-body span {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.4;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cred-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding-left: 8px;
}
.cred-amount {
  font-size: 0.72rem;
  font-weight: 700;
  color: #1d4ed8;
  white-space: nowrap;
}
.cred-arrow {
  font-size: 0.85rem;
  color: #cbd5e1;
  transition: transform 0.2s, color 0.2s;
  flex-shrink: 0;
}
.cred-item:hover .cred-arrow { transform: translateX(4px); color: #b8952a; }
.cred-item:hover .cred-amount { color: #b8952a; }

/* ===== STEPS ===== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; position: relative; }
.step { text-align: center; }
.step-number {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-blue);
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.step p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* ===== STATS ===== */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.stat { text-align: center; padding: 24px; }

/* Animation count-up */
.stat-anim {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stat-anim.visible {
  opacity: 1;
  transform: translateY(0);
}
.stat-anim:nth-child(1) { transition-delay: 0s; }
.stat-anim:nth-child(2) { transition-delay: 0.12s; }
.stat-anim:nth-child(3) { transition-delay: 0.24s; }
.stat-anim:nth-child(4) { transition-delay: 0.36s; }
.stat-anim:nth-child(5) { transition-delay: 0.48s; }

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: var(--text-light); font-size: 0.92rem; font-weight: 500; }
.bg-primary-section {
  background: linear-gradient(135deg, #0c1a3a 0%, #1e3a8a 60%, #1d4ed8 100%);
  position: relative;
  overflow: hidden;
}
.bg-primary-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.bg-primary-section .stat-number { color: #fbbf24; }
.bg-primary-section .stat-label { color: rgba(255,255,255,0.7); }
.bg-primary-section .section-title h2 { color: var(--white); }
.bg-primary-section .section-title p { color: rgba(255,255,255,0.72); }
.bg-primary-section .stat { position: relative; z-index: 1; }
.bg-primary-section .section-title { position: relative; z-index: 1; }

/* ===== TÉMOIGNAGES ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: #f59e0b; font-size: 1.05rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial blockquote {
  color: var(--text-med);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.9rem;
  flex-shrink: 0;
  border: 2px solid var(--primary-mid);
}
.author-name { font-weight: 700; font-size: 0.92rem; color: var(--text); }
.author-type { font-size: 0.8rem; color: var(--text-xlight); margin-top: 2px; }

/* ===== LEGAL WARNING ===== */
.legal-warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: #78350f;
  line-height: 1.6;
}
.legal-warning strong { display: block; margin-bottom: 4px; font-size: 0.9rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: var(--white);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { font-size: 2.1rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.3px; }
.cta-section p { font-size: 1.05rem; opacity: 0.92; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.btn-white {
  background: var(--white);
  color: #d97706;
  padding: 18px 52px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: 'Inter', sans-serif;
  display: inline-block;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: all 0.25s;
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  color: #b45309;
  text-decoration: none;
}

/* ===== TRUSTMARKS ===== */
.trustmarks {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 0 0;
}
.trustmark {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-med);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, transform 0.2s;
}
.trustmark:hover { border-color: var(--primary-mid); transform: translateY(-2px); }
.trustmark span.icon { font-size: 1.2rem; }

/* ===== FOOTER PREMIUM ===== */
.site-footer {
  background: #050c1e;
  color: rgba(255,255,255,0.6);
  padding: 0;
}
.footer-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #1d4ed8 20%, #b8952a 50%, #1d4ed8 80%, transparent 100%);
}
.site-footer > .container { padding-top: 36px; padding-bottom: 0; }

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-brand-identity { display: flex; align-items: center; gap: 14px; }
.footer-logo-img { width: 38px; height: 38px; opacity: 0.9; }
.footer-brand-name {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-brand-tagline {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  margin-top: 3px;
}
.footer-brand-badges { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.fbadge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b8952a;
  border: 1px solid rgba(184,149,42,0.4);
  padding: 4px 10px;
  border-radius: 3px;
  background: rgba(184,149,42,0.05);
}
.fbadge-ssl {
  color: rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  letter-spacing: 0.04em;
  text-transform: none;
}

.footer-sep { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 28px; }

.footer-3col {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 40px;
  margin-bottom: 28px;
}
.footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #b8952a;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(184,149,42,0.18);
}
.footer-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
  margin-bottom: 22px;
}
.footer-contact-items { display: flex; flex-direction: column; gap: 11px; }
.fci {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.81rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}
.fci svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
a.fci:hover { color: #fff; }
a.fci:hover svg { opacity: 1; }

.footer-credits-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.footer-credits-2col a {
  font-size: 0.81rem;
  color: rgba(255,255,255,0.52);
  text-decoration: none;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.footer-credits-2col a:hover {
  color: #fff;
  border-bottom-color: rgba(184,149,42,0.35);
  text-decoration: none;
}

.footer-pages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 14px;
}
.footer-pages-grid a {
  font-size: 0.81rem;
  color: rgba(255,255,255,0.52);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footer-pages-grid a:hover { color: #fff; text-decoration: none; }

.footer-legal-text { margin-bottom: 32px; }
.footer-legal-text p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.7;
  margin-bottom: 6px;
}
.footer-legal-text strong { color: rgba(255,255,255,0.38); font-weight: 600; }
.footer-legal-text a { color: rgba(255,255,255,0.38); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.76rem;
  color: rgba(255,255,255,0.28);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom a { color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.75); text-decoration: none; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 960px;
  margin: 0 auto;
  background: #0c1a3a;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 24px 28px;
  z-index: 9999;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  display: none;
}
.cookie-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.cookie-text p { font-size: 0.82rem; color: rgba(255,255,255,0.62); line-height: 1.5; }
.cookie-text a { color: #60a5fa; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }
.btn-cookie-accept {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 11px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-cookie-accept:hover { transform: translateY(-1px); box-shadow: var(--shadow-blue); }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 11px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  transition: border-color 0.2s;
}
.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.45); }
.btn-cookie-settings {
  background: transparent;
  color: rgba(255,255,255,0.45);
  padding: 8px;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  text-decoration: underline;
  font-family: 'Inter', sans-serif;
}

/* ===== FORMULAIRE DEMANDE ===== */
.form-container {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 52px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 12px;
  margin-bottom: 28px;
  margin-top: 8px;
}
.form-section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  background: #eff6ff;
  border-left: 3px solid var(--primary);
  border-radius: 0 6px 6px 0;
  margin: 24px 0 16px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--text-med);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.form-group label .req { color: #ef4444; }
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }
.error-msg { color: #ef4444; font-size: 0.78rem; margin-top: 5px; display: none; font-weight: 500; }
.form-group.error .error-msg { display: block; }
.checkbox-group { display: flex; align-items: flex-start; gap: 12px; }
.checkbox-group input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; cursor: pointer; accent-color: var(--primary); }
.checkbox-group label {
  font-size: 0.88rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.success-message { display: none; text-align: center; padding: 48px 24px; }

/* Icône */
.success-icon-wrap { display: flex; justify-content: center; margin-bottom: 20px; }
.success-icon-wrap svg { animation: pop-in 0.5s cubic-bezier(0.175,0.885,0.32,1.275) both; }
@keyframes pop-in { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* Titres */
.success-title { font-family: 'Poppins', sans-serif; font-size: 1.65rem; font-weight: 800; color: #065f46; margin-bottom: 8px; }
.success-subtitle { color: var(--text-light); font-size: 1rem; margin-bottom: 28px; }

/* Numéro de dossier */
.success-ref-box {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1.5px solid #bfdbfe;
  border-radius: 14px;
  padding: 20px 28px;
  display: inline-block;
  margin: 0 auto 32px;
  text-align: center;
  min-width: 260px;
}
.success-ref-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 6px; }
.success-ref-number { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--primary-dark); letter-spacing: 0.05em; margin-bottom: 6px; }
.success-ref-hint { font-size: 0.75rem; color: var(--text-light); }

/* Étapes suivantes */
.success-steps { text-align: left; max-width: 480px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.success-step { display: flex; gap: 14px; align-items: flex-start; background: #f8fafc; border-radius: 10px; padding: 16px; border: 1px solid var(--border); }
.success-step-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.success-step strong { display: block; font-size: 0.95rem; color: var(--text); margin-bottom: 3px; }
.success-step p { font-size: 0.85rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, #0c1a3a 0%, #1e3a8a 60%, #1d4ed8 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-header > * { position: relative; z-index: 1; }
.page-header h1 { font-size: 2.1rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.3px; }
.page-header p { opacity: 0.82; font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 860px; margin: 0 auto; padding: 64px 24px; }
.legal-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
}
.legal-content h3 { font-size: 1.02rem; font-weight: 700; margin: 24px 0 10px; color: var(--text); }
.legal-content p { margin-bottom: 14px; color: var(--text-med); font-size: 0.95rem; line-height: 1.75; }
.legal-content ul { margin: 8px 0 18px 24px; }
.legal-content ul li { margin-bottom: 8px; font-size: 0.95rem; color: var(--text-med); line-height: 1.65; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.88rem; }
.legal-content table th, .legal-content table td { padding: 11px 16px; border: 1px solid var(--border); text-align: left; }
.legal-content table th { background: var(--primary-light); font-weight: 700; color: var(--primary-darker); }
.legal-table { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.legal-table tr:nth-child(even) td { background: #f8faff; }
.legal-table tr:nth-child(odd) td { background: #ffffff; }
.legal-table td:first-child { color: var(--text); font-weight: 600; width: 38%; white-space: nowrap; }
.legal-table td { border: none; border-bottom: 1px solid var(--border); color: var(--text-med); }
.legal-table tr:last-child td { border-bottom: none; }
@media (max-width: 600px) { .legal-table td:first-child { white-space: normal; width: auto; } }
.legal-update {
  font-size: 0.82rem;
  color: var(--text-xlight);
  margin-bottom: 36px;
  padding: 12px 18px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ===== ALERTS ===== */
.alert { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.92rem; line-height: 1.6; }
.alert-info { background: var(--primary-light); border-left: 4px solid var(--primary); color: #1e3a8a; }
.alert-warning { background: #fffbeb; border-left: 4px solid #f59e0b; color: #78350f; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact-item { display: flex; gap: 18px; margin-bottom: 28px; align-items: flex-start; }
.contact-item-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-mid));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid var(--primary-mid);
}
.contact-item h4 { font-weight: 700; margin-bottom: 4px; font-size: 0.95rem; }
.contact-item p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--bg); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 16px 20px 20px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  z-index: 99;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 16px;
  border-radius: 10px;
  color: var(--text-med);
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu a:hover { background: var(--primary-light); color: var(--primary); text-decoration: none; }
.mobile-menu .btn-mobile-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white) !important;
  text-align: center;
  margin-top: 8px;
  font-weight: 700;
  box-shadow: var(--shadow-blue);
}
.mobile-menu .btn-mobile-cta:hover { background: var(--primary-dark); }
.mobile-menu-divider { border: none; border-top: 1px solid var(--border); margin: 6px 0; }

/* ===== BANNER SLIDER ===== */
.banner {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}
.banner-slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.banner-slide.active { opacity: 1; z-index: 1; }
.banner-slide-1 {
  background: linear-gradient(135deg, #0c1445 0%, #1a3a8f 45%, #2563eb 100%);
}
.banner-slide-2 {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #4338ca 100%);
}
.banner-slide::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.banner-slide::before {
  content: '';
  position: absolute;
  right: 120px; bottom: -140px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  color: white;
  position: relative;
  z-index: 2;
  width: 100%;
}
.banner-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.banner-content h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.banner-content h2 span { color: #fbbf24; }
.banner-content p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}
.banner-nav {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  align-items: center;
}
.banner-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.banner-dot.active { background: white; transform: scale(1.3); }
.banner-arrows {
  position: absolute;
  right: 28px;
  bottom: 22px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.banner-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.banner-arrow:hover { background: rgba(255,255,255,0.28); }
.banner-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 4px;
  background: rgba(255,255,255,0.15);
  width: 100%;
  z-index: 5;
}
.banner-progress-bar {
  height: 100%;
  background: #fbbf24;
  width: 0;
  transition: none;
}
.banner-progress-bar.running {
  width: 100%;
  transition: width 5s linear;
}

/* ===== SERVICES PAGE ===== */
.service-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}
.service-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.service-card p { color: var(--text-light); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.service-card-details {
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 24px;
  font-size: 0.85rem;
}
.service-card-details div { display: flex; justify-content: space-between; padding: 4px 0; }
.service-card-details span:first-child { color: var(--text-light); }
.service-card-details span:last-child { font-weight: 600; color: var(--primary-dark); }
.service-card .btn-primary { text-align: center; display: block; }

/* ===== FAQ PAGE ===== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: white; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 24px;
}
.faq-answer p { color: var(--text-light); line-height: 1.75; padding-bottom: 4px; margin: 0; }
.faq-answer ul { color: var(--text-light); line-height: 1.75; padding-left: 20px; margin: 8px 0 20px; }
.faq-answer ul li { margin-bottom: 6px; }
.faq-item.open .faq-answer { max-height: 1000px; }

/* ===== NAV — retrait style inline ===== */
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a.active { color: var(--primary); font-weight: 600; }

/* ===== FORMULAIRE 2 ÉTAPES ===== */
.stepper-2 {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
}
.s2-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.s2-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #94a3b8;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem;
  transition: all 0.3s;
  border: 3px solid #e2e8f0;
}
.s2-circle.active { background: var(--primary); color: white; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(37,99,235,0.15); }
.s2-circle.done { background: var(--success); color: white; border-color: var(--success); }
.s2-label { font-size: 0.8rem; font-weight: 600; color: #94a3b8; text-align: center; }
.s2-label.active { color: var(--primary); }
.s2-label.done { color: var(--success); }
.s2-line {
  flex: 1;
  height: 3px;
  background: #e2e8f0;
  margin: 0 8px;
  margin-bottom: 28px;
  transition: background 0.3s;
  max-width: 120px;
}
.s2-line.done { background: var(--success); }

/* Slides 2 étapes */
.form-step { display: none; }
.form-step.active { display: block; animation: fadeInForm 0.3s ease; }
@keyframes fadeInForm { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }

/* Range slider */
.range-group { margin-bottom: 8px; }
.range-labels { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--text-light); margin-bottom: 6px; }
.range-value-display {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin: 10px 0 6px;
  letter-spacing: -0.5px;
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e2e8f0;
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(37,99,235,0.4);
  transition: transform 0.15s;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(37,99,235,0.4);
}

/* Simulation card */
.sim-card {
  background: #f8faff;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 24px 20px 16px;
  margin: 20px 0;
  text-align: center;
}
.sim-card-monthly-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 6px;
}
.sim-card-monthly-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.sim-card-details {
  border-top: 1px solid var(--border);
  margin: 0 -20px;
  text-align: left;
}
.sim-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.sim-card-row span { color: var(--text-light); font-weight: 500; }
.sim-card-row strong { color: var(--text); font-weight: 700; white-space: nowrap; }
.sim-card-row-total {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-bottom: none;
}
.sim-card-row-total span { color: rgba(255,255,255,0.9); font-weight: 600; }
.sim-card-row-total strong { color: #fbbf24; font-size: 1rem; }
.sim-card-note {
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
  padding: 0 4px;
}

/* Recap barre étape 2 */
.step2-recap {
  background: var(--primary-light);
  border: 1px solid var(--primary-mid);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  font-size: 0.88rem;
}
.step2-recap-item { display: flex; flex-direction: column; gap: 2px; }
.step2-recap-label { color: var(--text-light); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.step2-recap-value { color: var(--primary-dark); font-weight: 700; }
.step2-recap-item.recap-total { border-left: 2px solid var(--primary); padding-left: 10px; }
.step2-recap-item.recap-total .step2-recap-value { color: var(--success); font-size: 1rem; }

/* Boutons form */
.btn-step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); gap: 12px; }
.btn-step-back { background: transparent; color: var(--text-light); border: 2px solid var(--border); padding: 13px 28px; border-radius: var(--radius); font-weight: 600; cursor: pointer; font-size: 0.95rem; transition: all 0.2s; font-family: 'Inter', sans-serif; }
.btn-step-back:hover { border-color: #94a3b8; color: var(--text); }
.btn-step-next { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; border: none; padding: 15px 40px; border-radius: var(--radius); font-weight: 700; cursor: pointer; font-size: 1rem; transition: opacity 0.2s, transform 0.2s; font-family: 'Inter', sans-serif; }
.btn-step-next:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-step-submit { background: linear-gradient(135deg, #f97316, #ea580c); color: white; border: none; padding: 15px 40px; border-radius: var(--radius); font-weight: 700; cursor: pointer; font-size: 1rem; transition: opacity 0.2s; font-family: 'Inter', sans-serif; }
.btn-step-submit:hover { opacity: 0.9; }
.secure-note { text-align: center; font-size: 0.78rem; color: var(--text-light); margin-top: 12px; }

/* ===== AVIS GOOGLE ===== */
.google-rating-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.google-g {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: white;
  border: 2px solid #e2e8f0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: #4285f4;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.google-rating-info { text-align: left; }
.google-rating-score { font-size: 2rem; font-weight: 800; color: var(--text); line-height: 1; }
.google-rating-stars { color: #fbbc04; font-size: 1.1rem; letter-spacing: 2px; margin: 2px 0; }
.google-rating-count { font-size: 0.85rem; color: var(--text-light); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: var(--shadow); }
.review-header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}
.reviewer-info { flex: 1; }
.reviewer-name { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.reviewer-date { font-size: 0.78rem; color: var(--text-light); margin-top: 1px; }
.review-stars { color: #fbbc04; font-size: 0.9rem; margin-top: 3px; }
.star-half {
  display: inline-block;
  position: relative;
  color: #d1d5db;
}
.star-half::before {
  content: '★';
  position: absolute;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: #fbbc04;
}
.review-g-logo { font-size: 1.1rem; font-weight: 900; color: #4285f4; margin-left: auto; }
.review-text { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }
.review-verified { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-light); margin-top: 12px; }
.review-verified-badge { background: #d1fae5; color: #065f46; border-radius: 20px; padding: 2px 8px; font-weight: 700; font-size: 0.72rem; }
.review-google-icon { margin-left: auto; flex-shrink: 0; }
.google-rating-logo { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.google-label { font-size: 0.75rem; font-weight: 700; color: #5f6368; letter-spacing: 0.5px; }
.google-rating-link { font-size: 0.82rem; color: var(--primary); font-weight: 600; text-decoration: none; white-space: nowrap; }
.google-rating-link:hover { text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-3col { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-links-col { grid-column: 1 / -1; }
  .footer-supervision-row { flex-direction: row; flex-wrap: wrap; gap: 8px; }
}
@media (max-width: 768px) {
  /* Navigation */
  .nav-links { display: none !important; }
  .hamburger { display: flex; }

  /* Banner slider mobile */
  .banner { height: auto; min-height: 400px; }
  .banner-slide { position: relative; top: auto; right: auto; bottom: auto; left: auto; padding: 48px 0 72px; }
  .banner-slide:not(.active) { display: none; }
  .banner-content h2 { font-size: 2rem; text-align: left; }
  .banner-content p { font-size: 1rem; }
  .banner-arrows { bottom: 16px; right: 16px; }
  .banner-nav { bottom: 20px; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding: 32px 0 48px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-text { display: block; }
  .hero-text > .btn-secondary { display: none; }
  .hero-badges { flex-wrap: wrap; gap: 8px; }
  .hero-card { display: block; }

  /* Sections */
  section { padding: 56px 0; }
  .section-title h2 { font-size: 1.7rem; }
  .cred-list { grid-template-columns: 1fr; }
  .cred-item:nth-child(odd) { border-right: none; }
  .cred-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .cred-item:last-child { border-bottom: none; }
  .steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-number { font-size: 2.2rem; white-space: nowrap; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trustmarks { gap: 10px; }
  .trustmark { font-size: 0.8rem; padding: 10px 14px; }

  /* Services page */
  .service-cards { grid-template-columns: 1fr; }

  /* Formulaire */
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }
  .form-container { padding: 24px 18px; border-radius: var(--radius-lg); }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-3col { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

  /* Cookie */
  #cookie-banner { bottom: 0; left: 0; right: 0; border-radius: 16px 16px 0 0; }

  /* CTA */
  .cta-section h2 { font-size: 1.6rem; }
  .btn-white { padding: 16px 32px; }
}
@media (max-width: 640px) {
  .banner-content h2 { font-size: 1.7rem; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .sim-card-grid { grid-template-columns: 1fr !important; }
  .footer-brand-row { flex-direction: column; align-items: flex-start; }
  .sim-inputs { grid-template-columns: 1fr; }
  .hero-card { padding: 20px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.65rem; }
  .hero-badges { gap: 6px; }
  .badge { font-size: 0.76rem; padding: 6px 10px; }
  .section-title h2 { font-size: 1.5rem; }
  .banner-content h2 { font-size: 1.5rem; }
  .page-header h1 { font-size: 1.6rem; }
  .container { padding: 0 16px; }
  .form-container { padding: 20px 14px; }
  .legal-content { padding: 32px 16px; }
  .btn-lg { padding: 14px 24px; font-size: 0.95rem; }
  .footer-credits-2col { grid-template-columns: 1fr; }
  .footer-brand-badges { gap: 6px; }
  .fbadge { font-size: 0.62rem; padding: 3px 8px; }
  .sim-monthly-value { font-size: 1.9rem; }
  .sim-header h3 { font-size: 0.92rem; }
}
