/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(244, 243, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--green);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  transition: color var(--transition);
}

.nav__links a:hover { color: var(--green); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--green); }

/* Le bouton CTA garde son style de bouton, pas la taille des liens */
.mobile-menu a.btn { font-size: 0.95rem; }

.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ── HERO BADGE ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--green-lt);
  border: 1px solid rgba(26, 79, 74, 0.15);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}

.hero-badge__dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

/* ── SOCIAL PROOF STRIP ── */
.social-proof {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 2rem;
}

.stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }

/* ── MOCKUP CARD ── */
.mockup-wrap {
  max-width: 840px;
  margin: 4rem auto 0;
}

.mockup-card {
  background: var(--white);
  border-radius: 18px 18px 0 0;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  border-bottom: none;
  overflow: hidden;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.mockup-header__brand {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--green);
  text-transform: uppercase;
}

.mockup-header__meta {
  font-size: 0.72rem;
  color: var(--muted);
}

.mockup-body { padding: 1.5rem; }

.mockup-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.mockup-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

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

.mockup-type { font-size: 0.9rem; font-weight: 500; color: var(--text); }

.mockup-dots { display: flex; gap: 4px; margin-top: 4px; }

.mockup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.mockup-dots span.active { background: var(--gold); }

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

.kpi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.kpi-card__label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.kpi-card__value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
}

.kpi-card__value.score { color: var(--gold); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 2rem;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1160px;
  margin: 0 auto;
}

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

.trust-item__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

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

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

/* ── PROCESS STEPS ── */
.process-timeline {
  position: relative;
  max-width: 720px;
  margin: 3.5rem auto 0;
}

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

.step {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

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

.step-content {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step-content.right { grid-column: 3; }
.step-content.left  { grid-column: 1; }

.step__number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.step__title {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.step__desc { font-size: 0.88rem; color: var(--muted); }

.step-node {
  grid-column: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color 0.4s ease, background 0.4s ease, color 0.4s ease;
  position: relative;
  z-index: 1;
}

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

/* Spacer cells for alternating layout */
.step-spacer { visibility: hidden; }

/* ── RAPPORT CARD ── */
.rapport-card-green {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

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

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

.rapport-card-green__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 500;
}

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

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

.rapport-inner-card__title {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.badge-severity {
  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-inner-card p {
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

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

.rapport-kpi {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
}

.rapport-kpi__label {
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 500;
}

.rapport-kpi__value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  margin-top: 2px;
}

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

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

/* ── HERO LAYOUT ── */
.hero {
  background: var(--bg);
  padding-top: 140px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero__deco {
  position: absolute;
  border-radius: 50%;
  background: var(--green);
  pointer-events: none;
}

.hero__deco--tl {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -250px;
  opacity: 0.04;
}

.hero__deco--br {
  width: 400px;
  height: 400px;
  bottom: -120px;
  right: -150px;
  opacity: 0.04;
}

.hero__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 1.25rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: italic;
  color: var(--green-mid);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* ── PROCESS COMPACT ── */
.process-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Override old sections.css step margin */
.step {
  margin-bottom: 1.75rem !important;
}

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

.step-content {
  padding: 1.25rem 1.5rem !important;
}

.step-num {
  font-size: 0.75rem !important;
  margin-bottom: 0.25rem !important;
}

.step-title {
  font-size: 1.1rem !important;
  margin-bottom: 0.25rem !important;
}

.step-desc {
  font-size: 0.83rem !important;
  line-height: 1.55 !important;
}

/* Centre le hero badge */
.hero .hero-badge {
  display: inline-flex;
}

/* Section padding override pour sections utilisant class .section */
#process, #rapport, #features, #temoignages, #faq {
  padding: 5rem 2rem;
}

/* Trust bar container fix */
#trust .trust-grid {
  max-width: 1160px;
  margin: 0 auto;
}

/* Rapport grid fix */
#rapport .rapport-grid {
  max-width: 1160px;
  margin: 0 auto;
}

/* Features container */
#features .container,
#temoignages .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Mockup centering */
.mockup-wrap {
  max-width: 840px;
  margin: 4rem auto 0;
}

/* Social proof centering */
.hero .social-proof {
  justify-content: center;
}

/* Process header alignment */
.process-header h2,
.features-header h2,
.temoignages-header h2,
.resultats-header h2,
.apercu-header h2 {
  text-align: center;
}

/* Step content text left align */
.step-content {
  text-align: left !important;
}

/* Step node size */
.step-node {
  width: 42px !important;
  height: 42px !important;
  flex-shrink: 0;
}

/* Step node SVG */
.step-node svg {
  width: 17px !important;
  height: 17px !important;
}

/* Timeline line positioning */
.timeline-line {
  left: 50%;
  transform: translateX(-50%);
}

/* Process container */
#process > .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero padding bottom buffer */
.hero .mockup-wrap {
  margin-bottom: 0;
}

/* CTA section */
#cta-final .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Footer inner */
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 3rem;
}

.feature-cell {
  background: var(--white);
  padding: 2rem;
  transition: background 0.2s ease;
}

.feature-cell:hover { background: var(--bg); }

.feature-cell--full { grid-column: 1 / -1; }

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

.feature-cell h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.feature-cell p { font-size: 0.88rem; }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

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

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

.testi-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.testi-sep {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.testi-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.testi-location { font-size: 0.78rem; color: var(--muted); }

/* ── FAQ ACCORDION ── */
.faq-list {
  max-width: 680px;
  margin: 3rem auto 0;
}

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

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-q:hover { color: var(--green); }

.faq-toggle {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.faq-item.open .faq-toggle {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: rotate(45deg);
}

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

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

/* ── CTA FINAL ── */
.cta-final {
  background: var(--green);
  padding: 6.25rem 2rem;
  text-align: center;
}

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

.cta-final h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

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

.cta-final p {
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 2rem;
}

.cta-final .social-proof {
  justify-content: center;
  color: rgba(255,255,255,0.45);
  margin-top: 1.5rem;
}

.cta-final .social-proof .stars { color: var(--gold); }

/* ── FOOTER ── */
.footer {
  background: #111;
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.footer__links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer__links a:hover { color: rgba(255,255,255,0.7); }

.footer__sep {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.25rem;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}

/* ── STICKY CTA MOBILE ── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 1rem;
  right: 1rem;
  z-index: 90;
  background: var(--green);
  color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(26, 79, 74, 0.35);
  text-align: center;
  padding: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.sticky-cta.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ── CHECKMARK HELPER ── */
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.check-row:last-child { margin-bottom: 0; }

.check-row__text { font-size: 0.92rem; color: var(--text); }

/* Section paddings */
.section { padding: 6rem 2rem; }
.section--sm { padding: 4rem 2rem; }
.section-head { text-align: center; margin-bottom: 0.5rem; }
