:root {
  --bleu-nuit: #0a2b44;
  --orange-action: #e67e22;
  --orange-hover: #cf6d17;
  --gris-clair: #f4f6f9;
  --blanc: #ffffff;
  --succes: #27ae60;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--bleu-nuit);
  background: var(--blanc);
  margin: 0;
}

/* ── Header ── */
.header {
  background: var(--bleu-nuit);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.header-logo span {
  color: var(--orange-action);
}

.header-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.header-nav a:hover { color: var(--orange-action); }

.header-tel {
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}

.header-tel:hover { opacity: 1; }

@media (max-width: 600px) {
  .header-nav { display: none; }
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, #1a4a70 100%);
  color: #fff;
  padding: 60px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-badge {
  display: inline-block;
  background: rgba(230,126,34,0.2);
  border: 1px solid rgba(230,126,34,0.5);
  color: #f0a157;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange-action);
}

.hero-sub {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 8px;
}

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

.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange-action);
}

.hero-stat span {
  font-size: 0.78rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Quiz Card ── */
.quiz-wrapper {
  max-width: 680px;
  margin: -50px auto 60px;
  padding: 0 16px;
  position: relative;
  z-index: 10;
}

.quiz-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(10,43,68,0.15);
  overflow: hidden;
}

/* Progress Bar */
.quiz-progress-bar-container {
  padding: 20px 28px 0;
}

.quiz-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 8px;
}

.quiz-progress-meta strong {
  color: var(--bleu-nuit);
}

.quiz-progress-track {
  height: 6px;
  background: var(--gris-clair);
  border-radius: 6px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange-action), #f39c12);
  border-radius: 6px;
  transition: width 0.4s ease;
}

/* Step */
.quiz-step {
  display: none;
  padding: 28px 28px 32px;
  animation: fadeSlide 0.3s ease;
}

.quiz-step.active {
  display: block;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.step-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bleu-nuit);
  margin: 0 0 6px;
}

.step-expert-tip {
  font-size: 0.82rem;
  color: #5a7a9a;
  margin: 0 0 22px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.step-expert-tip::before {
  content: '💡';
  flex-shrink: 0;
}

/* Options Grid */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.option-btn {
  background: var(--gris-clair);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 16px 12px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bleu-nuit);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.option-btn .opt-icon {
  font-size: 1.6rem;
}

.option-btn:hover {
  border-color: var(--orange-action);
  background: #fff8f3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230,126,34,0.15);
}

.option-btn.selected {
  border-color: var(--orange-action);
  background: #fff3e8;
  color: var(--orange-action);
}

/* Nav Buttons */
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 28px 28px;
  gap: 12px;
}

.btn-prev {
  background: none;
  border: 2px solid #d0d9e2;
  color: #7a90a4;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-prev:hover {
  border-color: var(--bleu-nuit);
  color: var(--bleu-nuit);
}

.btn-prev:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.btn-next {
  background: var(--orange-action);
  border: none;
  color: #fff;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
  max-width: 280px;
  letter-spacing: 0.2px;
}

.btn-next:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(230,126,34,0.3);
}

.btn-next:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ── Lead Capture ── */
.lead-capture {
  display: none;
  padding: 32px 28px;
  animation: fadeSlide 0.4s ease;
}

.lead-capture.active {
  display: block;
}

.result-preview {
  background: linear-gradient(135deg, #f0f9ff, #e8f4f0);
  border: 1px solid #c8e6da;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  text-align: center;
}

.result-preview h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--bleu-nuit);
}

.result-preview .result-score {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--succes);
  line-height: 1.2;
}

.result-preview .result-label {
  font-size: 0.83rem;
  color: #5a8a6a;
  margin-top: 6px;
  font-style: italic;
}

.result-preview .result-blurred {
  font-size: 0.82rem;
  color: #888;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #c0d8c8;
}

.lead-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bleu-nuit);
  margin: 0 0 6px;
}

.lead-sub {
  font-size: 0.85rem;
  color: #6a8090;
  margin: 0 0 20px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bleu-nuit);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #d8e4ed;
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--bleu-nuit);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus {
  border-color: var(--orange-action);
}

.form-group input.error {
  border-color: #e74c3c;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 420px) {
  .form-row { grid-template-columns: 1fr; }
}

.btn-submit {
  width: 100%;
  background: var(--orange-action);
  border: none;
  color: #fff;
  border-radius: 10px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 6px;
  letter-spacing: 0.3px;
}

.btn-submit:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(230,126,34,0.35);
}

.btn-submit:disabled {
  background: #aaa;
  cursor: not-allowed;
  transform: none;
}

.form-legal {
  font-size: 0.72rem;
  color: #aaa;
  text-align: center;
  margin-top: 10px;
}

/* ── Photo Upload Zone ── */
.upload-badge-optional {
  display: inline-block;
  background: #e8f4e8;
  color: #2e7d32;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  border-radius: 20px;
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: middle;
}

.upload-zone {
  border: 2px dashed #c8d8e8;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  background: #f8fafc;
  position: relative;
  outline: none;
}

.upload-zone:hover,
.upload-zone:focus,
.upload-zone.drag-over {
  border-color: var(--orange-action);
  background: #fff8f3;
  box-shadow: 0 0 0 3px rgba(230,126,34,0.12);
}

.upload-zone.has-file {
  border-color: var(--succes);
  background: #f4fbf6;
  border-style: solid;
}

.upload-icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
  line-height: 1;
}

.upload-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--bleu-nuit);
  margin: 0 0 4px;
}

.upload-formats {
  font-size: 0.75rem;
  color: #9aabb8;
  margin: 0 0 8px;
}

.upload-benefit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(230,126,34,0.1);
  color: #c0620a;
  font-size: 0.76rem;
  font-weight: 600;
  border-radius: 20px;
  padding: 4px 12px;
  margin: 0;
}

.upload-benefit::before {
  content: '🔬';
}

/* Preview state */
.upload-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.upload-preview img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #c8e6d0;
  flex-shrink: 0;
}

.upload-preview-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

#upload-filename {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bleu-nuit);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.upload-remove {
  background: none;
  border: 1px solid #e0c0c0;
  color: #c0392b;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  width: fit-content;
}

.upload-remove:hover {
  background: #fdf0f0;
  border-color: #c0392b;
}

.upload-confidential {
  font-size: 0.75rem;
  color: #7a9aaa;
  margin: 8px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1.4;
}

/* ── Success Screen ── */
.success-screen {
  display: none;
  padding: 48px 28px;
  text-align: center;
  animation: fadeSlide 0.4s ease;
}

.success-screen.active {
  display: block;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--succes);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.success-screen h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--bleu-nuit);
  margin: 0 0 10px;
}

.success-screen p {
  color: #6a8090;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.btn-cta-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bleu-nuit);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.btn-cta-tel:hover {
  background: #1a4a70;
  transform: translateY(-1px);
}

/* ── Social Proof Strip ── */
.proof-strip {
  background: var(--gris-clair);
  padding: 32px 24px;
  text-align: center;
}

.proof-strip h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9aabb8;
  margin: 0 0 20px;
  font-weight: 600;
}

.proof-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 0 auto;
}

.proof-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  max-width: 260px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(10,43,68,0.07);
}

.proof-stars {
  color: #f1c40f;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.proof-text {
  font-size: 0.85rem;
  color: #4a6070;
  line-height: 1.5;
  margin-bottom: 10px;
}

.proof-author {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bleu-nuit);
}

/* ── Footer ── */
.footer {
  background: var(--bleu-nuit);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 28px 24px 20px;
  font-size: 0.8rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--orange-action); }

.footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer a:hover { color: #fff; }

/* ── Trust Strip ── */
.trust-strip {
  background: var(--bleu-nuit);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.trust-item:last-child { border-right: none; }
.trust-item span { font-size: 1rem; }

/* ── FAQ Section (homepage) ── */
.faq-section {
  background: #fff;
  padding: 56px 24px;
}

.faq-container {
  max-width: 760px;
  margin: 0 auto;
}

.faq-title {
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 800;
  color: var(--bleu-nuit);
  margin: 0 0 32px;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid #dde8f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.faq-question {
  width: 100%;
  background: #f8fafc;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bleu-nuit);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
  line-height: 1.4;
}

.faq-question:hover { background: #eef4fa; }

.faq-question[aria-expanded="true"] {
  background: var(--bleu-nuit);
  color: #fff;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s;
}

.faq-answer {
  display: none;
  padding: 16px 20px;
  border-top: 1px solid #dde8f0;
  background: #fff;
}

.faq-item.open .faq-answer { display: block; }

.faq-answer p {
  font-size: 0.92rem;
  color: #3a5a70;
  line-height: 1.7;
  margin: 0 0 8px;
}

.faq-answer p:last-child { margin: 0; }

.faq-answer a {
  color: var(--orange-action);
  text-decoration: none;
  font-weight: 600;
}

.faq-answer a:hover { text-decoration: underline; }

.faq-more {
  text-align: center;
  margin-top: 24px;
  font-size: 0.88rem;
  color: #7a90a4;
}

.faq-more a {
  color: var(--bleu-nuit);
  font-weight: 700;
  text-decoration: none;
}

.faq-more a:hover { color: var(--orange-action); }

/* ── Success Steps ── */
.success-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
  text-align: left;
}

.success-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--gris-clair);
  border-radius: 10px;
  padding: 14px 16px;
}

.step-num {
  width: 28px;
  height: 28px;
  background: var(--orange-action);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.success-step strong {
  display: block;
  font-size: 0.88rem;
  color: var(--bleu-nuit);
  margin-bottom: 3px;
}

.success-step span {
  font-size: 0.82rem;
  color: #6a8090;
  line-height: 1.4;
}

.success-step a {
  color: var(--orange-action);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
}

/* ── Pricing Table ── */
.pricing-table {
  border: 1px solid #dde8f0;
  border-radius: 12px;
  overflow: hidden;
  margin: 28px 0 12px;
}

.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid #eef2f7;
}

.pricing-row:last-child { border-bottom: none; }

.pricing-row > div {
  padding: 14px 18px;
  font-size: 0.88rem;
  color: #2a4a60;
  border-right: 1px solid #eef2f7;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-row > div:last-child { border-right: none; }

.pricing-header {
  background: var(--bleu-nuit);
}

.pricing-header > div {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-row:nth-child(even):not(.pricing-header) > div {
  background: #f8fafc;
}

.pricing-row strong { color: var(--bleu-nuit); font-size: 0.9rem; }
.pricing-row span { font-size: 0.78rem; color: #8aabb8; margin-top: 2px; }

.price {
  font-weight: 700;
  color: var(--succes) !important;
}

.pricing-disclaimer {
  font-size: 0.78rem;
  color: #9aabb8;
  margin: 0 0 24px;
  font-style: italic;
}

@media (max-width: 560px) {
  .pricing-row { grid-template-columns: 1fr 1fr; }
  .pricing-row > div:first-child { grid-column: 1 / -1; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 8px 16px; }
  .trust-strip { flex-direction: column; align-items: center; }
}

/* ── Article Pages ── */
.article-hero {
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, #1a4a70 100%);
  color: #fff;
  padding: 44px 24px 52px;
  text-align: center;
}

.article-hero .hero-badge { display: inline-block; }

.article-hero h1 {
  font-size: clamp(1.45rem, 3.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.3;
  margin: 14px 0 12px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.article-hero .hero-sub {
  font-size: 1rem;
  opacity: 0.82;
  max-width: 560px;
  margin: 0 auto;
}

.article-breadcrumb {
  background: var(--gris-clair);
  padding: 10px 24px;
  font-size: 0.78rem;
  color: #7a90a4;
  border-bottom: 1px solid #e4ecf2;
}

.article-breadcrumb a {
  color: var(--bleu-nuit);
  text-decoration: none;
  font-weight: 600;
}

.article-breadcrumb a:hover { text-decoration: underline; }

.article-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.article-content h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--bleu-nuit);
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gris-clair);
}

.article-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bleu-nuit);
  margin: 28px 0 10px;
}

.article-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: #2a4a60;
  margin-bottom: 18px;
}

.article-content ul, .article-content ol {
  padding-left: 22px;
  margin-bottom: 18px;
}

.article-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: #2a4a60;
  margin-bottom: 6px;
}

.article-content strong { color: var(--bleu-nuit); }

.fact-box {
  background: #f0f7ff;
  border-left: 4px solid var(--orange-action);
  border-radius: 0 10px 10px 0;
  padding: 18px 20px;
  margin: 28px 0;
}

.fact-box p {
  margin: 0;
  font-size: 0.95rem;
  color: #1a3a55;
}

.fact-box strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--orange-action);
  margin-bottom: 6px;
}

.article-cta {
  background: linear-gradient(135deg, #fff8f3, #fff3e8);
  border: 2px solid #f0c898;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  margin: 40px 0;
}

.article-cta h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bleu-nuit);
  margin: 0 0 8px;
}

.article-cta p {
  color: #6a7a8a;
  font-size: 0.9rem;
  margin: 0 0 20px;
}

.article-cta .btn-cta {
  display: inline-block;
  background: var(--orange-action);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.article-cta .btn-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,126,34,0.3);
}

.article-cta-final {
  background: var(--bleu-nuit);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  margin: 48px 0 0;
  color: #fff;
}

.article-cta-final h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: #fff;
}

.article-cta-final p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin: 0 0 22px;
}

.article-cta-final .btn-cta {
  display: inline-block;
  background: var(--orange-action);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  padding: 15px 36px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
}

.article-cta-final .btn-cta:hover {
  background: var(--orange-hover);
  box-shadow: 0 6px 24px rgba(230,126,34,0.4);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.stat-card {
  background: var(--gris-clair);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange-action);
}

.stat-card span {
  font-size: 0.8rem;
  color: #5a7a90;
  line-height: 1.4;
}

.profile-card {
  border: 1px solid #d8e8f4;
  border-radius: 12px;
  padding: 22px 24px;
  margin: 24px 0;
}

.profile-card .profile-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.profile-card .profile-icon {
  width: 40px;
  height: 40px;
  background: var(--bleu-nuit);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.profile-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bleu-nuit);
  margin: 0;
}

.profile-card .profile-result {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 20px;
  padding: 3px 12px;
  margin-top: 10px;
}

/* ── Responsive Article ── */
@media (max-width: 480px) {
  .quiz-step, .lead-capture, .quiz-nav { padding-left: 18px; padding-right: 18px; }
  .quiz-progress-bar-container { padding: 16px 18px 0; }
  .options-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 40px 18px 70px; }
  .hero-stats { gap: 20px; }
  .article-container { padding: 32px 18px 48px; }
  .article-cta, .article-cta-final { padding: 24px 18px; }
  .footer-nav { gap: 8px 12px; }
}
