/* ── Hero ── */
.hero {
  background: var(--white);
  padding: 110px 32px 100px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  max-width: 860px;
  margin: 20px auto 28px;
  line-height: 1.08;
}

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

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn-dark {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: 100px;
}

.hero-actions .btn-outline {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 100px;
}

.hero-note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--faint);
  letter-spacing: 0.01em;
}

.hero-note b {
  color: var(--olive);
  font-weight: 600;
}

/* ── Proof bar ── */
.proof {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.proof-item {
  padding: 24px 56px;
  border-right: 1px solid var(--border);
  text-align: center;
}

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

.proof-num {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}

.proof-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 500;
}

/* ── How it works steps ── */
.steps {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child {
  border-bottom: none;
}

.step-n {
  width: 40px;
  height: 40px;
  background: var(--olive);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Demo window ── */
.demo {
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.demo-bar {
  background: var(--light);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.demo-body {
  background: var(--white);
  padding: 24px;
}

.demo-review {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.demo-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 8px;
}

.demo-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.demo-reply {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.demo-reply-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--olive);
  margin-bottom: 8px;
}

.demo-reply-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 14px;
}

.demo-actions {
  display: flex;
  gap: 8px;
}

.demo-btn-pub {
  background: var(--text);
  color: #fff;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
}

.demo-btn-edit {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  font-family: var(--font);
}

/* ── Testimonials ── */
.testi {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.testi-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-name {
  font-size: 13px;
  font-weight: 700;
}

.testi-role {
  font-size: 12px;
  color: var(--faint);
  margin-top: 1px;
}

/* ── FAQ ── */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: box-shadow 0.15s;
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-q {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CTA final ── */
.cta-final {
  background: var(--text);
  padding: 100px 32px;
  text-align: center;
}

.cta-final h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.cta-final p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
}

.cta-note {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ── Toggle facturation mensuel / annuel ── */
.billing-toggle {
  display: inline-flex;
  background: var(--light);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
  margin-bottom: 36px;
}

.bt-opt {
  border: none;
  background: transparent;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
}

.bt-opt.on {
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.bt-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--olive);
  background: var(--olive-bg);
  padding: 2px 7px;
  border-radius: 100px;
}
