/* ════════════════════════════════════════════════════════
   SECTIONS — Trust · Process · Rapport · Résultats ·
              Features · Témoignages · FAQ · CTA · Footer
              Sticky CTA Mobile
   ════════════════════════════════════════════════════════ */

/* ── Trust Bar ── */
#trust {
  padding: 2.25rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Support old + new class names */
.trust-grid,
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

/* Old class */
.trust-icon,
/* New BEM class */
.trust-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg,
.trust-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-text strong,
.trust-item__label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}

.trust-text span,
.trust-item__sub {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Process ── */
#process {
  background: var(--white);
  padding: 5rem 2rem;
}

.process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
}

.process-timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

/* Step row — grid 3 colonnes : contenu | nœud | contenu */
.step {
  display: grid;
  grid-template-columns: 1fr 42px 1fr;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.step:last-child {
  margin-bottom: 0;
}

/* Card step */
.step-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow);
}

/* Les deux côtés alignés à gauche */
.step.left  .step-content { text-align: left; }
.step.right .step-content { text-align: left; }

/* Nœud centré */
.step-node {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
  transition: border-color 0.4s ease, background 0.4s ease;
  justify-self: center;
}

.step-node svg {
  width: 18px;
  height: 18px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.4s ease;
}

.step-node.active {
  border-color: var(--green);
  background: var(--green);
}

.step-node.active svg {
  stroke: var(--white);
}

/* Typographie step */
.step-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Rapport ── */
#rapport {
  background: var(--bg);
  padding: 5rem 2rem;
}

.rapport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.rapport-card-outer {
  background: var(--green);
  border-radius: 16px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
}

.rapport-card-outer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.rapport-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.rapport-card-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}

.rapport-card-ref {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
  line-height: 1.5;
}

.rapport-card-inner {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 0;
  overflow: hidden;
}

/* En-tête de la card blanche : titre+badge à gauche, jauge à droite */
.rapport-card-inner-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

/* Jauge de sévérité */
.rapport-severity {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  flex-shrink: 0;
}

.rapport-severity__label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.rapport-severity__bars {
  display: flex;
  gap: 3px;
}

.rapport-severity__bar {
  width: 20px;
  height: 5px;
  border-radius: 3px;
  background: var(--border);
}

.rapport-severity__bar--on {
  background: var(--gold);
}

/* Séparateur pointillé */
.rapport-card-divider {
  border: none;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
  margin: 1.25rem 0;
}

/* CTA prix en bas de la card verte */
.rapport-card-cta {
  margin-top: 1.5rem;
  background: rgba(0, 0, 0, 0.18);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem 1.5rem;
}

.rapport-card-cta__info {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.rapport-card-cta__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.rapport-card-cta__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.rapport-card-cta__btn {
  width: 100%;
  justify-content: center;
}

/* Badges numérotés dans la colonne droite */
.check-item__num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-lt);
  border: 1.5px solid rgba(26, 79, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* CTA colonne droite */
.rapport-right-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 2rem;
}

.rapport-right-cta__note {
  font-size: 0.78rem;
  color: var(--muted);
}

.rapport-card-inner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.rapport-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.rapport-card-desc {
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.rapport-indicators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.indicator {
  background: var(--bg);
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
}

.indicator-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.indicator-val {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

.rapport-checks {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.rapport-check-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.rapport-check-item svg {
  width: 16px;
  height: 16px;
  stroke: #6abfb8;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.rapport-right h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.rapport-right h2 em {
  font-style: italic;
  color: var(--green-mid);
}

.rapport-right p {
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.check-item-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.check-item-text span {
  font-size: 0.83rem;
  color: var(--muted);
}

/* ── Résultats ── */
#resultats {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.resultats-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.resultats-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
}

.resultats-sub {
  color: var(--muted);
  max-width: 480px;
  margin: 0.75rem auto 0;
  font-size: 0.92rem;
}

.resultats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.resultat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.25s ease;
}

.resultat-card:hover {
  box-shadow: var(--shadow);
}

.resultat-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.resultat-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green);
  flex-shrink: 0;
}

.resultat-name { font-weight: 500; font-size: 0.95rem; color: var(--text); }
.resultat-info { font-size: 0.8rem; color: var(--muted); }

.resultat-type-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.resultat-type-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.progress-wrap {
  margin-bottom: 1.25rem;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.progress-bar-track {
  height: 5px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--green));
  border-radius: 99px;
}

.resultat-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.resultat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-lt);
  border: 1px solid rgba(26, 79, 74, 0.12);
  border-radius: 100px;
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--green);
}

.resultat-badge svg {
  width: 11px;
  height: 11px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Features ── */
#features {
  background: var(--white);
  padding: 5rem 2rem;
}

#features .container,
#temoignages .container,
#faq .faq-inner {
  max-width: 1160px;
  margin: 0 auto;
}

#faq .faq-inner {
  max-width: 680px;
}

.features-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.features-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
}

.features-grid {
  border: none;
  background: transparent;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.feature-cell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.feature-icon svg {
  width: 21px;
  height: 21px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Carte mise en avant — pleine largeur, fond vert */
.feature-cell.span-2 {
  grid-column: span 2;
  background: var(--green);
  border-color: var(--green);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
}

.feature-cell.span-2 .feature-icon {
  background: rgba(255, 255, 255, 0.14);
  margin-bottom: 0;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
}

.feature-cell.span-2 .feature-icon svg { stroke: var(--white); }
.feature-cell.span-2 .feature-title { color: var(--white); margin-bottom: 0.3rem; }
.feature-cell.span-2 .feature-desc { color: rgba(255, 255, 255, 0.78); }

/* ── Transformations ── */
#transformations {
  background: var(--bg);
  padding: 5rem 2rem;
}

#transformations .container {
  max-width: 1160px;
  margin: 0 auto;
}

.transform-header {
  text-align: center;
  margin-bottom: 3rem;
}

.transform-sub {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: var(--muted);
}

.transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.transform-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.transform-card-top {
  background: var(--green);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.transform-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--white);
  flex-shrink: 0;
}

.transform-name {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--white);
  line-height: 1.2;
}

.transform-type {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 2px;
}

.transform-duration {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50px;
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.transform-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.transform-col {
  padding: 0.6rem 0.75rem;
}

.transform-before {
  border-right: 1px solid var(--border);
  padding-left: 0;
}

.transform-after {
  padding-right: 0;
}

.transform-col-label {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.transform-before .transform-col-label { color: var(--muted); }
.transform-after .transform-col-label { color: var(--green); }

.transform-col-text {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
}

.transform-after .transform-col-text strong {
  color: var(--green);
  font-weight: 500;
  display: block;
  margin-top: 0.35rem;
}

.transform-footer {
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.transform-type-badge {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--green);
  background: var(--green-lt);
  border-radius: 50px;
  padding: 0.2rem 0.65rem;
  letter-spacing: 0.03em;
}

/* Step price badge */
.step-price {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green);
  background: var(--green-lt);
  border-radius: 50px;
  padding: 0.15rem 0.6rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* ── Stats ── */
#stats {
  background: var(--green);
  padding: 4.5rem 2rem;
}

#stats .container {
  max-width: 1160px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.6rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Guarantee lines ── */
.rapport-guarantee {
  margin-top: 0.65rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.hero-price-hint {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* ── CTA Final compare block ── */
.cta-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2.5rem;
  margin: 1.5rem auto 2.25rem;
  max-width: 420px;
}

.cta-compare-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.cta-compare-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.cta-compare-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
}

.cta-compare-price--struck {
  color: rgba(255, 255, 255, 0.28);
  text-decoration: line-through;
  font-size: 1.6rem;
}

.cta-compare-price--main {
  color: var(--white);
  font-size: 2.4rem;
}

.cta-compare-sep {
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}

.cta-guarantee {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* ── Témoignages ── */
#temoignages {
  background: var(--bg);
  padding: 5rem 2rem;
}

.temoignages-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.temoignages-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
}

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.temoignage-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.temo-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.temo-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.temo-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.temo-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--green);
  flex-shrink: 0;
}

.temo-name { font-weight: 500; font-size: 0.9rem; color: var(--text); }
.temo-info { font-size: 0.78rem; color: var(--muted); }

/* ── FAQ ── */
#faq {
  background: var(--white);
}

.faq-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  gap: 1rem;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
}

.faq-q-text {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.faq-icon svg {
  width: 10px;
  height: 10px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.25s ease;
}

.faq-item.open .faq-icon {
  background: var(--green);
  border-color: var(--green);
}

.faq-item.open .faq-icon svg {
  stroke: var(--white);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a-inner {
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CTA Final ── */
#cta-final {
  background: var(--green);
  padding: 7rem 0;
}

.cta-final-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

#cta-final .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

#cta-final h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

#cta-final h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
}

.cta-final-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.cta-final-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.cta-trust {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cta-trust .stars {
  color: var(--gold);
}

/* ── Footer ── */
footer {
  background: #111;
  padding: 3rem 0;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 0.4rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ── Sticky CTA Mobile ── */
#stickyCta {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 1rem;
  right: 1rem;
  z-index: 90;
  background: var(--green);
  color: var(--white);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(26, 79, 74, 0.35);
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-align: center;
  text-decoration: none;
}

#stickyCta.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

/* ════════════════════════════════════════════════════════
   APERÇU DU RAPPORT — Carousel + pages rapport simulées
   ════════════════════════════════════════════════════════ */

#apercu {
  background: var(--bg);
}

.apercu-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.apercu-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
}

.apercu-header h2 em {
  font-style: italic;
  color: var(--green-mid);
}

.apercu-sub {
  color: var(--muted);
  max-width: 480px;
  margin: 0.75rem auto 0;
  font-size: 0.92rem;
}

/* ── Carousel ── */
.carousel-wrapper {
  max-width: 480px;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

/* Navigation */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.carousel-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.carousel-btn:hover {
  border-color: var(--green);
  background: var(--green-lt);
}

.carousel-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: var(--green);
  width: 20px;
  border-radius: 3px;
}

.carousel-counter {
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  min-width: 3.5rem;
  text-align: center;
}

/* ── Pages rapport simulées (.rp) ── */
.rp {
  background: var(--white);
  min-height: 580px;
  display: flex;
  flex-direction: column;
}

.rp-hd {
  background: var(--green);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

.rp-hd::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,255,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.rp-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.rp-hd-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
}

.rp-hd-meta span {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rp-bd {
  padding: 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rp-pg-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.rp-pg-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* Slide 1 — Synthèse */
.rp-profile-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.rp-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--green);
  flex-shrink: 0;
}

.rp-profile-txt { flex: 1; min-width: 0; }
.rp-profile-txt strong { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text); }
.rp-profile-txt span   { font-size: 0.72rem; color: var(--muted); }

.rp-badge {
  font-size: 0.58rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--gold);
  color: var(--white);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  flex-shrink: 0;
}

.rp-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.rp-kpi {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.5rem 0.6rem;
}

.rp-kl {
  display: block;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.rp-kv {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

/* Gauge partagée */
.rp-gauge-blk {}

.rp-gauge-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.rp-gauge {
  height: 5px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.rp-gauge-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--green));
  border-radius: 99px;
}

.rp-note {
  font-size: 0.77rem;
  color: var(--muted);
  line-height: 1.6;
  background: var(--bg);
  border-radius: 6px;
  padding: 0.75rem 0.9rem;
  margin-top: auto;
}

/* Slide 2 — Facteurs */
.rp-factors {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.rp-factor-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.rp-factor-pct { font-weight: 500; color: var(--green); }

/* Slide 3 — Plan */
.rp-plan {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.rp-plan-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg);
  border-radius: 8px;
  padding: 0.75rem;
}

.rp-plan-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rp-plan-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rp-plan-text { flex: 1; min-width: 0; }
.rp-plan-text strong { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text); }
.rp-plan-text span   { font-size: 0.7rem; color: var(--muted); }

.rp-plan-freq {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--green);
  background: var(--green-lt);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Slide 4 — Routine */
.rp-routine {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  flex: 1;
  gap: 0;
}

.rp-routine-divider { background: var(--border); margin: 0 0.75rem; }

.rp-routine-head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.rp-routine-head svg {
  width: 13px;
  height: 13px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.rp-steps { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }

.rp-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text);
  line-height: 1.4;
}

.rp-step-n {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Slide 5 — Produits */
.rp-products {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.rp-product {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
}

.rp-product-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rp-product-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rp-product-info { flex: 1; min-width: 0; }
.rp-product-info strong { display: block; font-size: 0.78rem; font-weight: 500; color: var(--text); }
.rp-product-info span   { font-size: 0.68rem; color: var(--muted); }

.rp-product-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  flex-shrink: 0;
}

.rp-stars { font-size: 0.6rem; color: var(--gold); }
.rp-price { font-size: 0.68rem; font-weight: 500; color: var(--green); }

/* Slide 6 — Progression */
.rp-chart {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.rp-chart-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rp-chart-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rp-chart-label {
  font-size: 0.7rem;
  color: var(--muted);
  min-width: 3.5rem;
  flex-shrink: 0;
}

.rp-chart-bar-track {
  flex: 1;
  height: 28px;
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
}

.rp-chart-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.5rem;
}

.rp-chart-bar--final {
  background: var(--green-lt);
}

.rp-chart-bar span { font-size: 0.65rem; font-weight: 500; color: var(--white); }
.rp-chart-bar--final span { color: var(--green); }

.rp-progress-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.rp-prog-stat {
  background: var(--bg);
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
  text-align: center;
}

.rp-prog-val {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
}

.rp-prog-lbl {
  display: block;
  font-size: 0.6rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.15rem;
}
