/* ==========================================================================
   LANDING VISA — composants spécifiques
   Réutilise les variables de assets/css/styles.css (à charger avant celui-ci)
   ========================================================================== */

:root {
  --section-pad: clamp(36px, 4.5vw, 60px);

  --c-blue: #3B6E91;
  --c-blue-bg: #E7F0F5;
  --c-green: #4C7A5E;
  --c-green-bg: #E8F1EA;
  --c-amber: #B8863B;
  --c-amber-bg: #F6EEDD;
  --c-rose: #B2555A;
  --c-rose-bg: #F5E7E7;
  --c-purple: #6B5B95;
  --c-purple-bg: #ECE9F3;
  --c-teal: #3E8E82;
  --c-teal-bg: #E4F1EF;
}

/* ---- Header minimal landing ---- */
.visa-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.visa-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.visa-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.visa-back-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--ink);
  transition: all 0.35s var(--ease-hover);
}
.visa-back-link svg { width: 15px; height: 15px; }
.visa-back-link:hover { background: var(--gold); border-color: var(--gold); color: white; transform: translateX(-3px); }

.visa-nav a {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding-bottom: 3px;
  white-space: nowrap;
}
.visa-nav-sep { display: none; }
.visa-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--c-teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-hover);
}
.visa-nav a:hover::after { transform: scaleX(1); }

@media (max-width: 980px) {
  .visa-nav { display: none; }
}
.visa-header-cta { white-space: nowrap; }

/* Menu un peu plus chargé ici (bouton en plus) : resserrer légèrement */
.header .nav { gap: 20px; }
.header .nav-links { gap: 20px; }

/* ---- Hero ---- */
.visa-hero {
  padding: 130px 0 40px;
  background: linear-gradient(180deg, #fff 0%, #fff 55%, var(--paper) 100%);
  text-align: center;
}
.visa-hero .eyebrow { justify-content: center; margin-bottom: 22px; }
.visa-hero .eyebrow::before { display: none; }
.visa-hero h1 {
  max-width: 16ch;
  margin: 0 auto 22px;
}
.visa-hero h1 em { font-style: italic; color: var(--gold); }
.visa-hero .lead { max-width: 56ch; margin: 0 auto 40px; }

.visa-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.visa-stat {
  padding: 32px 20px 28px;
  border-radius: 10px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--c-teal);
  box-shadow: 0 16px 36px -22px rgba(14,13,11,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.45s var(--ease-hover), box-shadow 0.45s var(--ease-hover), border-color 0.45s var(--ease-hover);
}
.visa-stat:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 26px 48px -20px rgba(14,13,11,0.3);
}
.visa-stat:nth-child(1):hover { border-top-color: var(--c-teal); box-shadow: 0 26px 48px -20px rgba(62,122,110,0.35); }
.visa-stat:nth-child(2):hover { border-top-color: var(--c-amber); box-shadow: 0 26px 48px -20px rgba(184,134,59,0.35); }
.visa-stat:nth-child(3):hover { border-top-color: var(--gold); box-shadow: 0 26px 48px -20px rgba(165,114,27,0.35); }
.visa-stat:nth-child(2) { border-top-color: var(--c-amber); }
.visa-stat:nth-child(3) { border-top-color: var(--gold); }
.visa-stat-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.45s var(--ease-hover);
}
.visa-stat:hover .visa-stat-icon { transform: scale(1.12); }
.visa-stat-icon svg { width: 25px; height: 25px; }
.visa-stat-icon.c-teal { background: var(--c-teal-bg); color: var(--c-teal); }
.visa-stat-icon.c-amber { background: var(--c-amber-bg); color: var(--c-amber); }
.visa-stat strong {
  display: block;
  font-family: var(--font-label);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}
.visa-stat:nth-child(1) strong { color: var(--c-teal); }
.visa-stat:nth-child(2) strong { color: var(--c-amber); }
.visa-stat span {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #6b665c;
}
.visa-stat strong span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: normal;
}
.visa-stat-flags { display: flex; justify-content: center; gap: 5px; margin-bottom: 10px; }
.visa-stat-flags .flag-icon { width: 24px; height: 17px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(14,13,11,0.12); }

@media (max-width: 720px) {
  .visa-stats { grid-template-columns: 1fr; max-width: 320px; }
}

.visa-hero-note {
  margin-top: 18px;
  font-family: var(--font-label);
  font-size: 0.8rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-left: auto; margin-right: auto;
}

.region-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.license-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--c-teal);
  border-radius: 10px;
  max-width: 460px;
}
.license-badge-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-teal-bg);
  color: var(--c-teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.license-badge-icon svg { width: 20px; height: 20px; }
.license-badge strong { display: block; font-family: var(--font-label); font-size: 0.92rem; color: var(--ink); }
.license-badge span { display: block; font-size: 0.78rem; color: #6b665c; margin-top: 2px; }
.region-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 20px;
  background: var(--paper-deep);
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 0.76rem;
  font-weight: 600;
}
.region-badge svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

.quiz-top-bar { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.quiz-top-bar .quiz-progress { flex-grow: 1; margin-bottom: 0; }
.quiz-close {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: none;
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.35s var(--ease-hover);
}
.quiz-close:hover { border-color: var(--gold); color: var(--gold); transform: rotate(90deg); }
.quiz-close svg { width: 13px; height: 13px; }

.quiz-back {
  display: inline-block;
  background: none;
  border: none;
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  cursor: pointer;
  margin-bottom: 14px;
  padding: 0;
}
.quiz-back:hover { color: var(--gold); }

/* ---- Section générique landing ---- */
.visa-section { padding: var(--section-pad) 0; }
.visa-section.alt { background: var(--paper); }
.visa-section.dark { background: var(--ink); color: var(--paper); }
.visa-section.dark .eyebrow { color: var(--gold-light); }
.visa-section.dark .eyebrow::before { background: var(--gold-light); }
.visa-section.dark h2 { color: var(--paper); }
.visa-section.dark p.lead { color: rgba(245,241,234,0.65); }

/* ---- Sélecteur de profil ---- */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.profile-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease-hover), box-shadow 0.5s var(--ease-hover), border-color 0.5s var(--ease-hover);
}
.profile-card:hover {
  transform: translateY(-8px) scale(1.025) !important;
  box-shadow: 0 28px 52px -22px var(--shadow);
  border-color: var(--gold);
}
.profile-card:hover .profile-card-icon { transform: scale(1.1); }
.profile-card-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.5s var(--ease-hover);
}
.profile-card-icon svg { width: 24px; height: 24px; }
.profile-card-icon.c-blue { background: var(--c-blue-bg); color: var(--c-blue); }
.profile-card-icon.c-green { background: var(--c-green-bg); color: var(--c-green); }
.profile-card-icon.c-amber { background: var(--c-amber-bg); color: var(--c-amber); }
.profile-card-icon.c-rose { background: var(--c-rose-bg); color: var(--c-rose); }
.profile-card-icon.c-purple { background: var(--c-purple-bg); color: var(--c-purple); }
.profile-card-icon.c-teal { background: var(--c-teal-bg); color: var(--c-teal); }
.profile-card h3 { font-size: 1.28rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; font-family: var(--font-label); }
.profile-card p { color: #3A362F; font-size: 0.96rem; line-height: 1.6; margin-bottom: 16px; }
.profile-card ul { list-style: none; margin-bottom: 22px; flex-grow: 1; }
.profile-card li {
  font-size: 0.89rem;
  color: #3A362F;
  padding-left: 18px;
  position: relative;
  margin-bottom: 9px;
  line-height: 1.55;
}
.profile-card li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.profile-card-link {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.35s var(--ease-hover);
}
.profile-card-link svg { width: 13px; height: 13px; }
.profile-card:hover .profile-card-link { gap: 10px; }

/* ---- Quiz d'éligibilité ---- */
.quiz-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 44px 40px;
  box-shadow: 0 30px 60px -30px var(--shadow);
}
.quiz-progress {
  height: 4px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 32px;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  transition: width 0.5s var(--ease-hover);
}
.quiz-step-label {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.quiz-question {
  font-size: 1.45rem;
  margin-bottom: 26px;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-option {
  text-align: left;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.35s var(--ease-hover);
  position: relative;
}
.quiz-option:hover {
  border-color: var(--gold);
  background: var(--white);
  transform: translateX(4px);
}
.quiz-option.selected {
  border-color: var(--gold);
  background: rgba(165,114,27,0.08);
  font-weight: 600;
}

.quiz-result { text-align: center; }
.quiz-result-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--paper-deep);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.quiz-result-icon svg { width: 28px; height: 28px; }
.quiz-result-title { margin: 14px 0 14px; }
.quiz-result-text { color: var(--ink-soft); line-height: 1.75; margin-bottom: 30px; }
.quiz-result-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.quiz-restart {
  background: none; border: none;
  font-family: var(--font-label);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: underline;
  cursor: pointer;
}
.quiz-restart:hover { color: var(--gold); }

@media (hover: none) {
  .profile-card:active {
    transform: translateY(-4px) scale(0.98) !important;
    box-shadow: 0 20px 38px -20px var(--shadow);
    border-color: var(--gold);
  }
  .risk-card:active { transform: scale(0.97) !important; }
  .testimonial-card:active { transform: scale(0.98) !important; }
  .quiz-option:active { transform: scale(0.97); background: var(--white); }
  .btn:active { transform: scale(0.96); }
}

@media (max-width: 720px) {
  .quiz-card { padding: 30px 24px; }
  .quiz-question { font-size: 1.1rem; }
}


.tracker-widget {
  background: var(--ink);
  border-radius: 10px;
  padding: 36px 36px 30px;
  color: var(--paper);
  max-width: 620px;
  margin: 0 auto;
  box-shadow: 0 40px 80px -30px rgba(14,13,11,0.35);
}
.tracker-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(245,241,234,0.14);
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 14px;
}
.tracker-id {
  font-family: var(--font-label);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.tracker-head h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tracker-day {
  text-align: right;
  font-family: var(--font-label);
  font-size: 0.78rem;
  color: rgba(245,241,234,0.6);
}
.tracker-day strong { display: block; color: var(--paper); font-size: 1.1rem; }

.tracker-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 26px; }
.tracker-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(245,241,234,0.08);
}
.tracker-item:last-child { border-bottom: none; }
.tracker-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.tracker-icon svg { width: 12px; height: 12px; }
.tracker-item.done .tracker-icon { background: #5FA97C; color: #0E2A1A; }
.tracker-item.progress .tracker-icon { background: rgba(216,163,74,0.22); color: #E8B25C; border: 1px solid #D8A34A; }
.tracker-item.pending .tracker-icon { background: transparent; border: 1px solid rgba(245,241,234,0.25); }
.tracker-item-title { font-size: 0.98rem; font-weight: 600; }
.tracker-item-note { font-size: 0.76rem; color: rgba(245,241,234,0.45); font-style: italic; margin-top: 2px; }
.tracker-item-status {
  margin-left: auto;
  font-family: var(--font-label);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-top: 3px;
}
.tracker-item.done .tracker-item-status { color: #7BC498; }
.tracker-item.progress .tracker-item-status { color: #E8B25C; }
.tracker-item.pending .tracker-item-status { color: rgba(245,241,234,0.35); }

.tracker-progress-bar {
  height: 5px;
  background: rgba(245,241,234,0.12);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 24px;
}
.tracker-progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 3px; }

.tracker-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: center;
}
.tracker-summary-item strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--paper); }
.tracker-summary-item span { font-family: var(--font-label); font-size: 0.62rem; letter-spacing: 0.04em; color: rgba(245,241,234,0.45); }

.tracker-disclaimer {
  text-align: center;
  font-size: 0.74rem;
  color: var(--ink-soft);
  margin-top: 22px;
}

/* ---- Comparatif ---- */
.compare-table-wrap { overflow-x: auto; }
.compare-cards { display: none; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 0 var(--line);
}
.compare-table th, .compare-table td {
  padding: 20px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.compare-table thead th {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--paper);
  font-weight: 600;
}
.compare-table thead th.col-diana {
  background: var(--ink);
  color: var(--gold-light);
}
.compare-table tbody td:first-child {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink);
  width: 40%;
}
.compare-table tbody td.col-diana {
  background: rgba(165,114,27,0.05);
  font-weight: 500;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-check { color: var(--gold); }
.compare-cross { color: var(--ink-soft); opacity: 0.5; }

/* ---- Risques ---- */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.risk-card {
  padding: 30px 28px;
  border-left: 3px solid var(--c-rose);
  background: var(--c-rose-bg);
  border-radius: 0 6px 6px 0;
  transition: transform 0.5s var(--ease-hover), box-shadow 0.5s var(--ease-hover);
}
.risk-card:hover {
  transform: translateY(-6px) scale(1.02) !important;
  box-shadow: 0 22px 42px -22px rgba(178,85,90,0.4);
}
.risk-card-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--c-rose);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.risk-card-icon svg { width: 20px; height: 20px; }
.risk-card h3 { font-size: 1.15rem; margin-bottom: 12px; font-weight: 700; color: var(--ink); font-family: var(--font-label); }
.risk-card p { color: #3A362F; font-size: 0.98rem; line-height: 1.7; }

/* ---- Méthode / étapes ---- */
.steps-list { position: relative; padding-left: 4px; }
.steps-list::before {
  content: '';
  position: absolute;
  left: 33px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--line);
}
.step-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 0 0 46px;
  position: relative;
}
.step-row:last-child { padding-bottom: 0; }
.step-marker { position: relative; z-index: 1; flex-shrink: 0; }
.step-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 1px var(--line);
}
.step-icon svg { width: 26px; height: 26px; }
.step-icon.c-blue { background: var(--c-blue-bg); color: var(--c-blue); }
.step-icon.c-amber { background: var(--c-amber-bg); color: var(--c-amber); }
.step-icon.c-green { background: var(--c-green-bg); color: var(--c-green); }
.step-icon.c-purple { background: var(--c-purple-bg); color: var(--c-purple); }
.step-content { padding-top: 10px; }
.step-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-eyebrow .step-label { color: var(--ink); }
.step-eyebrow .step-dot { color: var(--line); }
.step-eyebrow .step-time { color: #6b665c; font-weight: 600; }
.step-row h3 { font-size: 1.3rem; margin-bottom: 8px; font-weight: 700; color: var(--ink); font-family: var(--font-label); }
.step-row p { color: #3A362F; font-size: 1rem; line-height: 1.65; }

@media (max-width: 720px) {
  .steps-list::before { left: 27px; }
  .step-row { gap: 18px; }
  .step-icon { width: 56px; height: 56px; }
  .step-icon svg { width: 22px; height: 22px; }
}

/* ---- Inclus ---- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.02rem;
  line-height: 1.55;
}
.included-item.highlight { font-weight: 600; }
.included-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.included-check svg { width: 11px; height: 11px; }

/* ---- FAQ accordéon ---- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
}
.faq-question-plus {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.4s var(--ease-hover);
}
.faq-question-plus::before, .faq-question-plus::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.35s var(--ease-hover), opacity 0.35s var(--ease-hover);
}
.faq-question-plus::before { width: 10px; height: 1.4px; }
.faq-question-plus::after { width: 1.4px; height: 10px; }
.faq-item.open .faq-question-plus { transform: rotate(180deg); }
.faq-item.open .faq-question-plus::after { opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-hover);
}
.faq-answer-inner { padding: 0 4px 26px; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.8; }
.faq-answer-inner p + p { margin-top: 14px; }

/* ---- CTA final ---- */
.visa-final-cta {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: var(--section-pad) 0;
}
.visa-final-cta .eyebrow { justify-content: center; color: var(--gold-light); }
.visa-final-cta .eyebrow::before { display: none; }
.visa-final-cta h2 { color: var(--paper); max-width: 20ch; margin: 18px auto 20px; }
.visa-final-cta p.lead { color: rgba(245,241,234,0.65); max-width: 50ch; margin: 0 auto 40px; }
.visa-final-cta .contact-form-card { max-width: 620px; margin: 0 auto; text-align: left; background: var(--white); }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .profile-grid { grid-template-columns: repeat(2, 1fr); }
  .risk-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .visa-hero { padding: 120px 0 60px; }
  .visa-stats { flex-direction: column; }
  .visa-stat { border-right: none; border-bottom: 1px solid var(--line); }
  .visa-stat:last-child { border-bottom: none; }
  .profile-grid { grid-template-columns: 1fr; }
  .tracker-widget { padding: 26px 22px; }
  .tracker-summary { grid-template-columns: 1fr; gap: 18px; }
  .compare-table { min-width: 520px; }
  .compare-table-wrap { display: none; }
  .compare-cards { display: flex; flex-direction: column; gap: 20px; }
}

/* ---- Cartes comparatives (mobile) ---- */
.compare-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 22px;
  background: var(--white);
}
.compare-card.diana {
  border-color: var(--gold);
  background: rgba(165,114,27,0.04);
  box-shadow: 0 16px 34px -20px rgba(165,114,27,0.4);
}
.compare-card h4 {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ink);
}
.compare-card.diana h4 { color: var(--gold); }
.compare-card-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.compare-card-row:first-of-type { border-top: none; padding-top: 0; }
.compare-card-label {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6b665c;
  font-weight: 600;
}
.compare-card-value { font-size: 0.98rem; color: var(--ink); }
.compare-card-value.diana { font-weight: 600; }
.compare-card-value .compare-check { color: var(--gold); margin-right: 4px; }
.compare-card-value .compare-cross { opacity: 0.55; }

/* Lisibilité renforcée pour la landing (texte secondaire plus foncé/grand) */
.quiz-result-text { color: #3A362F !important; font-size: 1.08rem; }
.faq-answer-inner p { color: #3A362F; font-size: 1.05rem; }
.visa-hero .lead { color: #3A362F; font-size: 1.15rem; }
.tracker-disclaimer { color: #6b665c; }

/* Témoignages mis en avant */
.testimonial-card.featured {
  width: min(460px, 86vw);
  padding: 46px 40px;
  border: 1px solid var(--gold);
  box-shadow: 0 26px 54px -26px rgba(165,114,27,0.4);
}
.testimonial-card.featured .testimonial-category {
  background: var(--gold);
  color: white;
  padding: 6px 14px;
  border-radius: 14px;
  display: inline-block;
}
.testimonial-card.featured .testimonial-quote {
  font-size: 1.32rem;
  line-height: 1.5;
}
.testimonial-card.featured .testimonial-avatar {
  width: 46px; height: 46px;
  background: var(--gold);
  color: white;
}

/* Logo footer un peu plus grand ici (colonne plus étroite : 3 colonnes vs 4 sur le site principal) */
.footer-logo img { height: 104px; }

