@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

:root {
  --brown: #8B5E3C;
  --sand: #C4A07A;
  --orange: #C44E00;
  --sage: #9DB882;
  --forest: #3A5230;
  --black: #0A0A08;
  --off-white: #FAF7F2;
  --cream: #F2EBE0;

  /* Police unifiee pour conserver le meme rendu avec une seule famille. */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --radius: 14px;
  --section-gap: 120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--off-white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.sama-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.sama-stats {
  display: flex;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.sama-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}

.sama-stat-label {
  font-size: 11px;
  color: rgba(15, 23, 42, 0.40);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── UTILITIES ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--cream);
  color: var(--brown);
  border: 1px solid var(--sand);
  margin-bottom: 20px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(196, 78, 0, .35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 78, 0, .45);
}

.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 1.5px solid rgba(0, 0, 0, .18);
}

.btn-secondary:hover {
  background: var(--cream);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 17px;
}


/* ── SECTION REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   1. HERO
══════════════════════════════════════ */
#hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 24px 60px;
  max-width: 1120px;
  margin: 0 auto;
}

.hero-text {}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 22px;
  color: var(--black);
}

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

.hero-rotating-word {
  display: inline-block;
  transition: opacity .5s ease, transform .5s ease;
  opacity: 1;
  transform: translateY(0);
}

.hero-rotating-word.fade-out {
  opacity: 0;
  transform: translateY(-8px);
}

.hero-text p {
  font-size: 18px;
  color: rgba(10, 10, 8, .65);
  max-width: 460px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badge {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(10, 10, 8, .5);
}

.hero-badge .dots {
  display: flex;
  gap: 4px;
}

.hero-badge .dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--off-white);
  background: var(--sand);
}

.hero-badge .dot:nth-child(2) {
  background: var(--brown);
  margin-left: -8px;
}

.hero-badge .dot:nth-child(3) {
  background: var(--orange);
  margin-left: -8px;
}

.hero-badge .dot:nth-child(4) {
  background: var(--forest);
  margin-left: -8px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: var(--black);
  border-radius: 24px;
  padding: 32px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .18);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 78, 0, .3), transparent 70%);
}

/* Phone shell — light mode */
.phone {
  width: 285px;
  height: 580px;
  background: #FFFFFF;
  border-radius: 44px;
  box-shadow:
    0 0 0 1px rgba(10, 10, 8, .08),
    0 1px 3px rgba(10, 10, 8, .06),
    0 40px 100px rgba(10, 10, 8, .12),
    0 10px 30px rgba(10, 10, 8, .06);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Side buttons */
.phone::before {
  content: '';
  position: absolute;
  right: -3px;
  top: 110px;
  width: 3px;
  height: 60px;
  background: rgba(10, 10, 8, .12);
  border-radius: 0 3px 3px 0;
  box-shadow: 0 80px 0 rgba(10, 10, 8, .12);
}

.phone::after {
  content: '';
  position: absolute;
  left: -3px;
  top: 130px;
  width: 3px;
  height: 40px;
  background: rgba(10, 10, 8, .12);
  border-radius: 3px 0 0 3px;
  box-shadow: 0 55px 0 rgba(10, 10, 8, .12), 0 -55px 0 rgba(10, 10, 8, .12);
}

/* Dynamic island */
.phone-island {
  width: 90px;
  height: 26px;
  background: #111;
  border-radius: 20px;
  margin: 14px auto 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.phone-island::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1c1c1c;
  border: 1.5px solid #333;
}

.phone-island::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2d6a2d;
  box-shadow: 0 0 6px rgba(100, 200, 100, .4);
}

/* Status bar */
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 22px 0;
  flex-shrink: 0;
}

.phone-status .time {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  font-family: var(--font-body);
}

.phone-status .icons {
  display: flex;
  gap: 6px;
  align-items: center;
  color: rgba(10, 10, 8, .5);
}

/* App header */
.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 12px;
  border-bottom: 1px solid rgba(10, 10, 8, .06);
  flex-shrink: 0;
}

.phone-header-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.phone-header-info {
  flex: 1;
}

.phone-header-info strong {
  display: block;
  font-size: 13px;
  color: var(--black);
  font-weight: 600;
}

.phone-header-info span {
  font-size: 10px;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 4px;
}

.online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  display: inline-block;
  box-shadow: 0 0 4px rgba(157, 184, 130, .5);
}

.phone-header-menu {
  color: rgba(10, 10, 8, .3);
  cursor: pointer;
  display: flex;
}

/* Chat area */
.phone-chat {
  flex: 1;
  overflow: hidden;
  padding: 16px 14px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #FAFAF8;
  position: relative;
}

.phone-chat::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 184, 130, .08), transparent 70%);
  pointer-events: none;
}

.chat-msg {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  align-items: flex-end;
}

.chat-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-avatar.bot {
  background: linear-gradient(135deg, var(--forest), var(--sage));
  color: #fff;
}

.chat-bubble {
  background: #fff;
  border: 1px solid rgba(10, 10, 8, .06);
  border-radius: 16px 16px 16px 4px;
  padding: 11px 15px;
  font-size: 12.5px;
  color: var(--black);
  line-height: 1.5;
  max-width: 210px;
  box-shadow: 0 1px 4px rgba(10, 10, 8, .04);
}

.chat-bubble.user-bubble {
  background: var(--forest);
  border: none;
  border-radius: 16px 16px 4px 16px;
  color: #fff;
  margin-left: auto;
  box-shadow: 0 4px 12px rgba(58, 82, 48, .15);
}

.chat-msg.user-msg {
  flex-direction: row-reverse;
}

.chat-msg.user-msg .chat-avatar {
  display: none;
}

.typing {
  display: flex;
  gap: 4px;
  padding: 4px 2px;
}

.typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(10, 10, 8, .2);
  animation: bounce .9s infinite;
}

.typing span:nth-child(2) {
  animation-delay: .15s;
}

.typing span:nth-child(3) {
  animation-delay: .3s;
}

@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}

/* Phone input bar */
.phone-input {
  padding: 10px 14px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-top: 1px solid rgba(10, 10, 8, .05);
}

.phone-input-field {
  flex: 1;
  padding: 10px 14px;
  background: #F5F4F0;
  border-radius: 100px;
  font-size: 12px;
  color: rgba(10, 10, 8, .35);
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-input-field svg {
  color: rgba(10, 10, 8, .25);
  flex-shrink: 0;
}

.phone-send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(58, 82, 48, .2);
}

/* Hero chips */
.hero-chip {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(10, 10, 8, .06);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(10, 10, 8, .08);
  transition: transform .3s, box-shadow .3s;
}

.hero-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(10, 10, 8, .1);
}

.hero-chip.chip1 {
  bottom: -20px;
  left: -20px;
}

.hero-chip.chip1 svg { color: var(--forest); }

.hero-chip.chip2 {
  top: -40px;
  right: -14px;
}

.hero-chip.chip2 svg { color: var(--orange); }

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

@media (max-width: 768px) {
  #hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero-visual {
    display: none;
  }
}

/* ══════════════════════════════════════
   2. PROBLÈME
══════════════════════════════════════ */
#probleme {
  background: var(--cream);
  padding: var(--section-gap) 24px;
  position: relative;
  overflow: hidden;
}

#probleme::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 78, 0, .05), transparent 65%);
  pointer-events: none;
}

#probleme::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 184, 130, .06), transparent 65%);
  pointer-events: none;
}

.probleme-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.probleme-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.probleme-header .tag {
  background: rgba(196, 78, 0, .08);
  color: var(--orange);
  border-color: rgba(196, 78, 0, .15);
}

.probleme-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 16px;
}

.probleme-header h2 em {
  color: var(--orange);
  font-style: italic;
}

.probleme-header p {
  color: rgba(10, 10, 8, .5);
  font-size: 17px;
  font-weight: 300;
}

.pain-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pain-card {
  background: var(--off-white);
  border: 1px solid rgba(10, 10, 8, .06);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s, border-color .4s;
}

.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(196, 78, 0, .08);
  border-color: rgba(196, 78, 0, .2);
}

.pain-card-watermark {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 120px;
  height: 120px;
  color: rgba(196, 78, 0, .06);
  pointer-events: none;
  transition: color .4s, transform .4s;
}

.pain-card:hover .pain-card-watermark {
  color: rgba(196, 78, 0, .1);
  transform: scale(1.05) rotate(3deg);
}

.pain-card-accent {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--orange), rgba(196, 78, 0, .15));
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transition: opacity .35s;
}

.pain-card:hover .pain-card-accent {
  opacity: 1;
}

.pain-card-content {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pain-card-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: rgba(196, 78, 0, .3);
  letter-spacing: .12em;
}

.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(196, 78, 0, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  border: 1px solid rgba(196, 78, 0, .1);
  transition: background .3s, transform .3s, border-color .3s;
}

.pain-card:hover .pain-icon {
  background: rgba(196, 78, 0, .12);
  border-color: rgba(196, 78, 0, .2);
  transform: scale(1.08);
}

.pain-card strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.35;
}

.pain-card span {
  font-size: 13.5px;
  color: rgba(10, 10, 8, .45);
  line-height: 1.65;
  font-weight: 300;
}

@media (max-width: 560px) {
  .pain-bento {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   3. SOLUTION
══════════════════════════════════════ */
#solution {
  padding: var(--section-gap) 24px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

#solution::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 184, 130, .08), transparent 60%);
  pointer-events: none;
}

.solution-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.solution-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
}

.solution-inner h2 em {
  color: var(--forest);
  font-style: italic;
}

.solution-inner>p {
  font-size: 18px;
  color: rgba(10, 10, 8, .55);
  max-width: 560px;
  margin: 0 auto 60px;
  font-weight: 300;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

/* Base card */
.sol-card {
  background: var(--off-white);
  border-radius: 24px;
  padding: 38px 30px 30px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, .05);
  transition: transform .45s cubic-bezier(.22,.61,.36,1), box-shadow .45s cubic-bezier(.22,.61,.36,1), border-color .35s;
  cursor: default;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Soft glow on hover */
.sol-card-glow {
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 184, 130, .06), transparent 55%);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
  z-index: -1;
}

.sol-card:hover .sol-card-glow {
  opacity: 1;
}

.sol-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .1), 0 2px 8px rgba(0, 0, 0, .04);
  border-color: rgba(157, 184, 130, .25);
}

/* Hero card (center, elevated) */
.sol-card--hero {
  background: linear-gradient(160deg, #141310, #1a1816);
  color: var(--off-white);
  border: 1px solid rgba(196, 78, 0, .2);
  transform: scale(1.04);
  box-shadow: 0 30px 70px rgba(10, 10, 8, .2), 0 0 0 1px rgba(196, 78, 0, .08);
}

.sol-card--hero .sol-card-glow {
  background: radial-gradient(circle, rgba(196, 78, 0, .08), transparent 55%);
}

/* Animated shimmer on hero card */
.sol-card-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.03), transparent);
  animation: shimmer 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes shimmer {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

.sol-card--hero:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: 0 30px 70px rgba(10, 10, 8, .3), 0 0 30px rgba(196, 78, 0, .08);
  border-color: rgba(196, 78, 0, .35);
}

.sol-card--hero .sol-card-icon {
  background: rgba(196, 78, 0, .12);
  color: var(--orange);
  border-color: rgba(196, 78, 0, .2);
}

.sol-card--hero .sol-card-badge--glow {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 16px rgba(196, 78, 0, .3);
}

.sol-card--hero p {
  color: rgba(250, 247, 242, .55);
}

.sol-card--hero .sol-card-footer {
  border-color: rgba(255, 255, 255, .08);
}

.sol-card--hero .sol-card-stat-label {
  color: rgba(250, 247, 242, .4);
}

.sol-card--hero .stat-ring-value {
  color: var(--orange);
}

/* Card top row */
.sol-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.sol-card-icon {
  width: 54px;
  height: 54px;
  background: var(--cream);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, .04);
  transition: transform .3s, background .3s;
}

.sol-card:hover .sol-card-icon {
  transform: scale(1.08) rotate(-2deg);
}

.sol-card-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(157, 184, 130, .12);
  color: var(--forest);
}

.sol-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.sol-card p {
  font-size: 14.5px;
  color: rgba(10, 10, 8, .5);
  font-weight: 300;
  line-height: 1.7;
  flex: 1;
  position: relative;
  z-index: 1;
}

.sol-card.sol-card--hero h3 {
  color: var(--off-white);
}

.sol-card.sol-card--hero p {
  color: rgba(250, 247, 242, .55);
}

/* Card footer with circular stat ring */
.sol-card-footer {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, .06);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.sol-card-stat-ring {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.stat-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.stat-ring-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--forest);
}

.sol-card-stat-label {
  font-size: 13px;
  color: rgba(10, 10, 8, .4);
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .solution-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sol-card--hero {
    order: -1;
    transform: none;
  }

  .sol-card--hero:hover {
    transform: translateY(-8px);
  }
}

/* ══════════════════════════════════════
   4. COMMENT ÇA MARCHE
══════════════════════════════════════ */
#comment {
  padding: var(--section-gap) 24px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

#comment::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 184, 130, .05), transparent 65%);
  pointer-events: none;
}

#comment::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 160, 122, .05), transparent 65%);
  pointer-events: none;
}

.comment-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.comment-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 80px;
}

.comment-header .tag {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
}

.comment-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
}

.comment-header h2 em {
  color: var(--forest);
  font-style: italic;
}

.comment-header p {
  font-size: 17px;
  color: rgba(10, 10, 8, .45);
  font-weight: 300;
}

/* ── Alternating timeline ── */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Central vertical line */
.tl-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(10, 10, 8, .07);
  border-radius: 2px;
  z-index: 0;
}

.tl-line-progress {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--sage), var(--forest));
  border-radius: 2px;
  transition: height 1.6s cubic-bezier(.22,.61,.36,1);
}

.timeline.tl-animate .tl-line-progress {
  height: 100%;
}

/* Each row: 3-column grid — [card] [center dot] [spacer], or reversed */
.tl-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: start;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  /* Animation */
  opacity: 0;
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}

.tl-row:last-of-type {
  margin-bottom: 0;
}

/* Slide from left for left-cards, from right for right-cards */
.tl-row--left { transform: translateX(-30px); }
.tl-row--right { transform: translateX(30px); }

.timeline.tl-animate .tl-row {
  opacity: 1;
  transform: translateX(0);
}

.timeline.tl-animate .tl-row:nth-child(2) { transition-delay: .15s; }
.timeline.tl-animate .tl-row:nth-child(3) { transition-delay: .4s; }
.timeline.tl-animate .tl-row:nth-child(4) { transition-delay: .65s; }
.timeline.tl-animate .tl-row:nth-child(5) { transition-delay: .9s; }

/* Spacer takes the empty side */
.tl-spacer {
  min-height: 1px;
}

/* Center column: the dot */
.tl-center {
  display: flex;
  justify-content: center;
  padding-top: 24px;
}

.tl-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--off-white);
  border: 2px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), background .35s, border-color .35s, box-shadow .35s;
}

.tl-dot span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--forest);
  transition: color .35s;
}

.tl-row:hover .tl-dot {
  background: var(--forest);
  border-color: var(--forest);
  transform: scale(1.12);
  box-shadow: 0 0 0 8px rgba(58, 82, 48, .1), 0 8px 24px rgba(58, 82, 48, .15);
}

.tl-row:hover .tl-dot span {
  color: var(--off-white);
}

/* Per-step accent colors on hover */
.tl-row[data-step="1"] .tl-dot { border-color: var(--brown); }
.tl-row[data-step="1"] .tl-dot span { color: var(--brown); }
.tl-row[data-step="1"]:hover .tl-dot { background: var(--brown); border-color: var(--brown); box-shadow: 0 0 0 8px rgba(139, 94, 60, .1), 0 8px 24px rgba(139, 94, 60, .15); }

.tl-row[data-step="2"] .tl-dot { border-color: var(--orange); }
.tl-row[data-step="2"] .tl-dot span { color: var(--orange); }
.tl-row[data-step="2"]:hover .tl-dot { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 0 8px rgba(196, 78, 0, .1), 0 8px 24px rgba(196, 78, 0, .15); }

.tl-row[data-step="3"] .tl-dot { border-color: var(--sage); }
.tl-row[data-step="3"] .tl-dot span { color: var(--forest); }
.tl-row[data-step="3"]:hover .tl-dot { background: var(--sage); border-color: var(--sage); box-shadow: 0 0 0 8px rgba(157, 184, 130, .1), 0 8px 24px rgba(157, 184, 130, .15); }

.tl-row[data-step="4"] .tl-dot { border-color: var(--forest); }
.tl-row[data-step="4"] .tl-dot span { color: var(--forest); }
.tl-row[data-step="4"]:hover .tl-dot { background: var(--forest); border-color: var(--forest); box-shadow: 0 0 0 8px rgba(58, 82, 48, .1), 0 8px 24px rgba(58, 82, 48, .15); }

.tl-row:hover .tl-dot span { color: var(--off-white); }

/* Card */
.tl-card {
  background: #fff;
  border: 1px solid rgba(10, 10, 8, .06);
  border-radius: 22px;
  padding: 30px 28px;
  position: relative;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s, border-color .35s;
}

.tl-row--left .tl-card {
  text-align: right;
}

.tl-row--right .tl-card {
  text-align: left;
}

.tl-row:hover .tl-card {
  box-shadow: 0 16px 48px rgba(10, 10, 8, .07);
}

.tl-row--left:hover .tl-card { transform: translateX(-6px); }
.tl-row--right:hover .tl-card { transform: translateX(6px); }

/* Per-step card border on hover */
.tl-row[data-step="1"]:hover .tl-card { border-color: rgba(139, 94, 60, .2); }
.tl-row[data-step="2"]:hover .tl-card { border-color: rgba(196, 78, 0, .2); }
.tl-row[data-step="3"]:hover .tl-card { border-color: rgba(157, 184, 130, .25); }
.tl-row[data-step="4"]:hover .tl-card { border-color: rgba(58, 82, 48, .25); }

/* Card badge (number in top corner) */
.tl-card-badge {
  position: absolute;
  top: -10px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tl-row--left .tl-card-badge { right: 20px; }
.tl-row--right .tl-card-badge { right: 20px; }

.tl-row[data-step="1"] .tl-card-badge { background: var(--brown); }
.tl-row[data-step="2"] .tl-card-badge { background: var(--orange); }
.tl-row[data-step="3"] .tl-card-badge { background: var(--sage); }
.tl-row[data-step="4"] .tl-card-badge { background: var(--forest); }

/* Card icon */
.tl-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform .35s;
}

.tl-row:hover .tl-card-icon {
  transform: scale(1.08) rotate(-3deg);
}

.tl-row[data-step="1"] .tl-card-icon { background: rgba(139, 94, 60, .08); color: var(--brown); }
.tl-row[data-step="2"] .tl-card-icon { background: rgba(196, 78, 0, .08); color: var(--orange); }
.tl-row[data-step="3"] .tl-card-icon { background: rgba(157, 184, 130, .12); color: var(--forest); }
.tl-row[data-step="4"] .tl-card-icon { background: rgba(58, 82, 48, .08); color: var(--forest); }

.tl-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}

.tl-card p {
  font-size: 14px;
  color: rgba(10, 10, 8, .5);
  font-weight: 300;
  line-height: 1.65;
}

/* End dot (checkmark) */
.tl-end {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  position: relative;
  z-index: 2;
}

.tl-end-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(58, 82, 48, .1);
  opacity: 0;
  transform: scale(.6);
  transition: opacity .5s, transform .5s cubic-bezier(.22,.61,.36,1);
}

.timeline.tl-animate .tl-end-dot {
  opacity: 1;
  transform: scale(1);
  transition-delay: 1.2s;
}

/* ── Mobile: single column ── */
@media (max-width: 768px) {
  .tl-row {
    grid-template-columns: 48px 1fr;
    gap: 0 16px;
  }

  .tl-spacer {
    display: none;
  }

  .tl-row--left .tl-card,
  .tl-row--right .tl-card {
    text-align: left;
  }

  .tl-row--left .tl-card-badge,
  .tl-row--right .tl-card-badge {
    right: 16px;
  }

  .tl-center {
    padding-top: 20px;
  }

  .tl-dot {
    width: 42px;
    height: 42px;
  }

  .tl-dot span {
    font-size: 12px;
  }

  .tl-line {
    left: 24px;
  }

  .tl-row--left,
  .tl-row--right {
    transform: translateY(20px);
  }

  .timeline.tl-animate .tl-row {
    transform: translateY(0);
  }

  .tl-row--left:hover .tl-card,
  .tl-row--right:hover .tl-card {
    transform: translateX(0) translateY(-4px);
  }
}

/* ══════════════════════════════════════
   5. BÉNÉFICES
══════════════════════════════════════ */
#benefices {
  background: var(--off-white);
  padding: var(--section-gap) 24px;
  position: relative;
  overflow: hidden;
}

#benefices::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 82, 48, .04), transparent 65%);
  pointer-events: none;
}

.benefices-inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.benefices-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.benefices-header .tag {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
  background: rgba(58, 82, 48, .08);
  color: var(--forest);
  border-color: rgba(58, 82, 48, .15);
}

.benefices-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.benefices-header h2 em {
  color: var(--forest);
  font-style: italic;
}

.benefices-header p {
  font-size: 17px;
  color: rgba(10, 10, 8, .45);
  font-weight: 300;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-card {
  background: #fff;
  border: 1px solid rgba(10, 10, 8, .05);
  border-radius: 22px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s, border-color .35s;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--forest));
  opacity: 0;
  transition: opacity .35s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(10, 10, 8, .06);
  border-color: rgba(157, 184, 130, .2);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(58, 82, 48, .06);
  border: 1px solid rgba(58, 82, 48, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
  transition: transform .35s, background .35s;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.08) rotate(-3deg);
  background: var(--forest);
  color: var(--off-white);
}

.benefit-card strong {
  display: block;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.benefit-card span {
  font-size: 13.5px;
  color: rgba(10, 10, 8, .45);
  font-weight: 300;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   6. POUR QUI
══════════════════════════════════════ */
#pourqui {
  padding: var(--section-gap) 24px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

#pourqui::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 160, 122, .1), transparent 65%);
  pointer-events: none;
}

.pourqui-inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pourqui-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}

.pourqui-header .tag {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
}

.pourqui-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
}

.pourqui-header p {
  font-size: 17px;
  color: rgba(10, 10, 8, .5);
  font-weight: 300;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.audience-card {
  background: var(--off-white);
  border-radius: 22px;
  padding: 3px;
  cursor: default;
  position: relative;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s;
}

.audience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 2px;
  background: linear-gradient(160deg, transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background .4s;
  pointer-events: none;
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

/* Dynamic border gradient per card color */
.audience-card[data-color="orange"]:hover::before {
  background: linear-gradient(160deg, var(--orange), rgba(196, 78, 0, .15));
}
.audience-card[data-color="forest"]:hover::before {
  background: linear-gradient(160deg, var(--forest), rgba(58, 82, 48, .15));
}
.audience-card[data-color="sage"]:hover::before {
  background: linear-gradient(160deg, var(--sage), rgba(157, 184, 130, .15));
}
.audience-card[data-color="sand"]:hover::before {
  background: linear-gradient(160deg, var(--sand), rgba(196, 160, 122, .15));
}

.audience-card-inner {
  background: var(--off-white);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  height: 100%;
}

.audience-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s, background .35s;
}

/* Icon colors per card */
.audience-card[data-color="orange"] .audience-icon-wrap {
  background: rgba(196, 78, 0, .08);
  color: var(--orange);
  border: 1px solid rgba(196, 78, 0, .12);
}
.audience-card[data-color="forest"] .audience-icon-wrap {
  background: rgba(58, 82, 48, .08);
  color: var(--forest);
  border: 1px solid rgba(58, 82, 48, .12);
}
.audience-card[data-color="sage"] .audience-icon-wrap {
  background: rgba(157, 184, 130, .1);
  color: var(--forest);
  border: 1px solid rgba(157, 184, 130, .15);
}
.audience-card[data-color="sand"] .audience-icon-wrap {
  background: rgba(196, 160, 122, .1);
  color: var(--brown);
  border: 1px solid rgba(196, 160, 122, .15);
}

.audience-card:hover .audience-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
}

.audience-card p {
  font-size: 13.5px;
  color: rgba(10, 10, 8, .5);
  font-weight: 300;
  line-height: 1.6;
  flex: 1;
}

.audience-card-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(10, 10, 8, .04);
  color: rgba(10, 10, 8, .45);
  margin-top: auto;
}

@media (max-width: 900px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   7. POURQUOI NOUS
══════════════════════════════════════ */
#pourquoi {
  padding: var(--section-gap) 24px;
  background: #0C0B09;
  position: relative;
  overflow: hidden;
}

.pourquoi-noise {
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

#pourquoi::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 184, 130, .07), transparent 65%);
  pointer-events: none;
}

#pourquoi::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 78, 0, .06), transparent 65%);
  pointer-events: none;
}

.pourquoi-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.pourquoi-left {
  position: sticky;
  top: 120px;
}

.pourquoi-left .tag {
  background: rgba(157, 184, 130, .12);
  color: var(--sage);
  border-color: rgba(157, 184, 130, .2);
}

.pourquoi-left h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--off-white);
}

.pourquoi-left h2 em {
  color: var(--sage);
  font-style: italic;
}

.pourquoi-left p {
  font-size: 16px;
  color: rgba(250, 247, 242, .45);
  font-weight: 300;
  max-width: 400px;
  line-height: 1.7;
}

/* Stats row */
.pourquoi-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.pourquoi-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pourquoi-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--off-white);
  line-height: 1;
}

.pourquoi-stat-label {
  font-size: 12px;
  color: rgba(250, 247, 242, .35);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.pourquoi-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, .08);
}

/* Difference cards - 2x2 grid */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.diff-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 22px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), border-color .4s, background .4s;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity .35s;
}

.diff-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .05);
}

.diff-card:hover::before {
  opacity: 1;
}

/* Accent colors per card */
.diff-card[data-accent="brown"]::before {
  background: linear-gradient(90deg, var(--brown), transparent);
}
.diff-card[data-accent="brown"]:hover { border-color: rgba(139, 94, 60, .25); }
.diff-card[data-accent="brown"] .diff-card-icon {
  background: rgba(139, 94, 60, .1);
  color: var(--sand);
  border-color: rgba(139, 94, 60, .15);
}

.diff-card[data-accent="orange"]::before {
  background: linear-gradient(90deg, var(--orange), transparent);
}
.diff-card[data-accent="orange"]:hover { border-color: rgba(196, 78, 0, .25); }
.diff-card[data-accent="orange"] .diff-card-icon {
  background: rgba(196, 78, 0, .1);
  color: var(--orange);
  border-color: rgba(196, 78, 0, .15);
}

.diff-card[data-accent="sage"]::before {
  background: linear-gradient(90deg, var(--sage), transparent);
}
.diff-card[data-accent="sage"]:hover { border-color: rgba(157, 184, 130, .25); }
.diff-card[data-accent="sage"] .diff-card-icon {
  background: rgba(157, 184, 130, .1);
  color: var(--sage);
  border-color: rgba(157, 184, 130, .15);
}

.diff-card[data-accent="forest"]::before {
  background: linear-gradient(90deg, var(--forest), transparent);
}
.diff-card[data-accent="forest"]:hover { border-color: rgba(58, 82, 48, .3); }
.diff-card[data-accent="forest"] .diff-card-icon {
  background: rgba(58, 82, 48, .12);
  color: var(--sage);
  border-color: rgba(58, 82, 48, .2);
}

.diff-card-number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: rgba(250, 247, 242, .15);
  letter-spacing: .12em;
}

.diff-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid transparent;
  transition: transform .35s;
}

.diff-card:hover .diff-card-icon {
  transform: scale(1.08) rotate(-3deg);
}

.diff-card strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.35;
}

.diff-card span {
  font-size: 13.5px;
  color: rgba(250, 247, 242, .4);
  line-height: 1.65;
  font-weight: 300;
}

@media (max-width: 768px) {
  .pourquoi-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pourquoi-left {
    position: static;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .pourquoi-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* ══════════════════════════════════════
   7b. THÉMATIQUES
══════════════════════════════════════ */
#thematiques {
  padding: var(--section-gap) 24px;
  background: var(--off-white);
  position: relative;
}

.thematiques-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.thematiques-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.thematiques-header .tag {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
}

.thematiques-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 16px;
}

.thematiques-header p {
  font-size: 17px;
  color: rgba(10, 10, 8, .45);
  font-weight: 300;
}

.thematiques-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.thematique-card {
  background: #fff;
  border: 1px solid rgba(10, 10, 8, .06);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s, border-color .35s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.thematique-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  opacity: 0;
  transition: opacity .35s;
}

.thematique-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(10, 10, 8, .06);
}

.thematique-card:hover::after {
  opacity: 1;
}

/* Color variants */
.thematique-card[data-color="brown"] .thematique-icon { background: rgba(139, 94, 60, .08); color: var(--brown); }
.thematique-card[data-color="brown"]::after { background: var(--brown); }
.thematique-card[data-color="brown"]:hover { border-color: rgba(139, 94, 60, .2); }

.thematique-card[data-color="purple"] .thematique-icon { background: rgba(128, 90, 213, .08); color: #805AD5; }
.thematique-card[data-color="purple"]::after { background: #805AD5; }
.thematique-card[data-color="purple"]:hover { border-color: rgba(128, 90, 213, .2); }

.thematique-card[data-color="sage"] .thematique-icon { background: rgba(157, 184, 130, .12); color: var(--forest); }
.thematique-card[data-color="sage"]::after { background: var(--sage); }
.thematique-card[data-color="sage"]:hover { border-color: rgba(157, 184, 130, .25); }

.thematique-card[data-color="orange"] .thematique-icon { background: rgba(196, 78, 0, .08); color: var(--orange); }
.thematique-card[data-color="orange"]::after { background: var(--orange); }
.thematique-card[data-color="orange"]:hover { border-color: rgba(196, 78, 0, .2); }

.thematique-card[data-color="red"] .thematique-icon { background: rgba(220, 53, 69, .08); color: #DC3545; }
.thematique-card[data-color="red"]::after { background: #DC3545; }
.thematique-card[data-color="red"]:hover { border-color: rgba(220, 53, 69, .2); }

.thematique-card[data-color="forest"] .thematique-icon { background: rgba(58, 82, 48, .08); color: var(--forest); }
.thematique-card[data-color="forest"]::after { background: var(--forest); }
.thematique-card[data-color="forest"]:hover { border-color: rgba(58, 82, 48, .25); }

.thematique-card[data-color="crimson"] .thematique-icon { background: rgba(200, 30, 50, .08); color: #C81E32; }
.thematique-card[data-color="crimson"]::after { background: #C81E32; }
.thematique-card[data-color="crimson"]:hover { border-color: rgba(200, 30, 50, .2); }

.thematique-card[data-color="lime"] .thematique-icon { background: rgba(140, 170, 50, .1); color: #7A9B2E; }
.thematique-card[data-color="lime"]::after { background: #7A9B2E; }
.thematique-card[data-color="lime"]:hover { border-color: rgba(140, 170, 50, .25); }

.thematique-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .35s;
}

.thematique-card:hover .thematique-icon {
  transform: scale(1.08) rotate(-3deg);
}

.thematique-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.thematique-text strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: .02em;
}

.thematique-text span {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.thematique-card[data-color="brown"] .thematique-text span { color: var(--brown); }
.thematique-card[data-color="purple"] .thematique-text span { color: #805AD5; }
.thematique-card[data-color="sage"] .thematique-text span { color: var(--sage); }
.thematique-card[data-color="orange"] .thematique-text span { color: var(--orange); }
.thematique-card[data-color="red"] .thematique-text span { color: #DC3545; }
.thematique-card[data-color="forest"] .thematique-text span { color: var(--forest); }
.thematique-card[data-color="crimson"] .thematique-text span { color: #C81E32; }
.thematique-card[data-color="lime"] .thematique-text span { color: #7A9B2E; }

@media (max-width: 900px) {
  .thematiques-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .thematiques-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   7c. CHIFFRES
══════════════════════════════════════ */
#chiffres {
  padding: var(--section-gap) 24px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

#chiffres::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 184, 130, .06), transparent 60%);
  pointer-events: none;
}

.chiffres-inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.chiffres-header {
  text-align: center;
  margin-bottom: 64px;
}

.chiffres-header .tag {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
}

.chiffres-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
}

.chiffres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.chiffre-card {
  background: var(--off-white);
  border: 1px solid rgba(10, 10, 8, .05);
  border-radius: 22px;
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s, border-color .4s;
  position: relative;
  overflow: hidden;
}

.chiffre-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, transparent 30%, var(--sage) 50%, var(--forest) 70%, transparent 90%);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s;
}

.chiffre-card:hover::before {
  opacity: 1;
  animation: borderShimmer 3s linear infinite;
}

.chiffre-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 10, 8, .07);
}

.chiffre-card.visible {
  animation: cardPopIn .6s cubic-bezier(.22,.61,.36,1) both;
}

@keyframes cardPopIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes borderShimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 300% 300%; }
}

.chiffre-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(157, 184, 130, .1);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s, background .35s;
}

.chiffre-card:hover .chiffre-icon {
  transform: scale(1.1) rotate(-3deg);
  background: var(--forest);
  color: var(--off-white);
}

.chiffre-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
}

.chiffre-divider {
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: var(--sage);
}

.chiffre-label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(10, 10, 8, .45);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .chiffres-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .chiffres-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   8. PRICING
══════════════════════════════════════ */
#pricing {
  padding: var(--section-gap) 24px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

#pricing::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 184, 130, .06), transparent 60%);
  pointer-events: none;
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.pricing-header .tag {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
}

.pricing-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-header h2 em {
  color: var(--forest);
  font-style: italic;
}

.pricing-header p {
  font-size: 17px;
  color: rgba(10, 10, 8, .45);
  font-weight: 300;
}

/* Grid: 4 columns */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* Base card */
.pricing-card {
  background: var(--off-white);
  border: 1px solid rgba(10, 10, 8, .06);
  border-radius: 24px;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 10, 8, .07);
}

/* Featured card (Pro) */
.pricing-card--featured {
  background: linear-gradient(165deg, #141310, #1a1816);
  border: 1px solid rgba(196, 78, 0, .2);
  color: var(--off-white);
  transform: scale(1.03);
  box-shadow: 0 24px 60px rgba(10, 10, 8, .15);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 30px 70px rgba(10, 10, 8, .2);
}

/* Ribbon */
.pricing-card-ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: 0 0 10px 10px;
}

/* Card head */
.pricing-card-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(10, 10, 8, .06);
}

.pricing-card--featured .pricing-card-head {
  border-color: rgba(255, 255, 255, .08);
}

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.pricing-card[data-plan="starter"] .pricing-plan-name { color: var(--forest); }
.pricing-card[data-plan="pro"] .pricing-plan-name { color: var(--orange); }
.pricing-card[data-plan="premium"] .pricing-plan-name { color: var(--brown); }
.pricing-card[data-plan="entreprise"] .pricing-plan-name { color: var(--black); }

.pricing-plan-target {
  font-size: 12px;
  color: rgba(10, 10, 8, .4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  display: block;
  margin-bottom: 20px;
}

.pricing-card--featured .pricing-plan-target {
  color: rgba(250, 247, 242, .4);
}

/* Price */
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}

.pricing-card--featured .pricing-amount {
  color: var(--off-white);
}

.pricing-amount--custom {
  font-size: 28px;
}

.pricing-currency {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: rgba(10, 10, 8, .4);
  line-height: 1.2;
  font-weight: 500;
}

.pricing-card--featured .pricing-currency {
  color: rgba(250, 247, 242, .4);
}

.pricing-tagline {
  font-size: 13px;
  color: rgba(10, 10, 8, .45);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
}

.pricing-card--featured .pricing-tagline {
  color: rgba(250, 247, 242, .4);
}

/* Features list */
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(10, 10, 8, .6);
  font-weight: 400;
  line-height: 1.45;
}

.pricing-card--featured .pricing-features li {
  color: rgba(250, 247, 242, .6);
}

.pricing-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--sage);
}

.pricing-card--featured .pricing-features li svg {
  color: var(--orange);
}

/* CTA button */
.pricing-btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .3s, transform .3s, box-shadow .3s;
  margin-top: auto;
}

.pricing-card[data-plan="starter"] .pricing-btn {
  background: var(--forest);
  color: var(--off-white);
}

.pricing-card[data-plan="starter"] .pricing-btn:hover {
  background: #2e4426;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58, 82, 48, .2);
}

.pricing-card[data-plan="pro"] .pricing-btn {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(196, 78, 0, .25);
}

.pricing-card[data-plan="pro"] .pricing-btn:hover {
  background: #b34500;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 78, 0, .3);
}

.pricing-card[data-plan="premium"] .pricing-btn {
  background: var(--brown);
  color: var(--off-white);
}

.pricing-card[data-plan="premium"] .pricing-btn:hover {
  background: #744e32;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 94, 60, .2);
}

.pricing-btn--outline {
  background: transparent !important;
  color: var(--black) !important;
  border: 1.5px solid rgba(10, 10, 8, .15);
}

.pricing-btn--outline:hover {
  background: var(--black) !important;
  color: var(--off-white) !important;
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 10, 8, .15);
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 560px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--featured {
    order: -1;
  }
}

/* ══════════════════════════════════════
   8b. GRATUIT (kept as secondary CTA)
══════════════════════════════════════ */
#gratuit {
  background: var(--orange);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#gratuit::before,
#gratuit::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
}

#gratuit::before {
  width: 400px;
  height: 400px;
  top: -150px;
  left: -100px;
}

#gratuit::after {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -50px;
}

.gratuit-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#gratuit h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

#gratuit p {
  font-size: 18px;
  color: rgba(255, 255, 255, .8);
  font-weight: 300;
  margin-bottom: 36px;
}

.gratuit-btn {
  background: #fff;
  color: var(--orange);
  font-weight: 700;
}

.gratuit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .15);
}

.gratuit-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
}

/* ══════════════════════════════════════
   9. MESSAGE FINAL
══════════════════════════════════════ */
#message {
  padding: var(--section-gap) 24px;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#message::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 184, 130, .07), transparent 60%);
  pointer-events: none;
}

.message-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.message-inner blockquote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 32px;
}

.message-inner blockquote em {
  color: var(--forest);
  font-style: normal;
  font-weight: 600;
}

.message-inner p {
  font-size: 16px;
  color: rgba(10, 10, 8, .4);
  font-weight: 300;
}

/* ══════════════════════════════════════
   9b. PARTENAIRES (marquee)
══════════════════════════════════════ */
#partenaires {
  padding: 100px 0;
  background: var(--off-white);
  overflow: hidden;
  position: relative;
}

.partenaires-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.partenaires-header {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.partenaires-header .tag {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
}

.partenaires-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 12px;
}

.partenaires-header p {
  font-size: 16px;
  color: rgba(10, 10, 8, .45);
  font-weight: 300;
}

/* Marquee wrapper with fade edges */
.marquee-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 16px;
}

.marquee-wrapper:last-of-type {
  margin-bottom: 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--off-white), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--off-white), transparent);
}

/* Track: holds two copies side by side for seamless loop */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee-track--reverse {
  animation: marquee-scroll-reverse 45s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-scroll-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-slide {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

/* Individual partner logo pill */
.partner-logo {
  flex-shrink: 0;
  padding: 16px 36px;
  margin: 0 8px;
  background: #fff;
  border: 1px solid rgba(10, 10, 8, .06);
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: rgba(10, 10, 8, .55);
  letter-spacing: .02em;
  white-space: nowrap;
  transition: border-color .3s, color .3s, box-shadow .3s, transform .3s;
  user-select: none;
}

.partner-logo:hover {
  border-color: rgba(157, 184, 130, .3);
  color: var(--forest);
  box-shadow: 0 6px 20px rgba(10, 10, 8, .05);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  #partenaires {
    padding: 72px 0;
  }

  .partner-logo {
    padding: 12px 24px;
    font-size: 13px;
  }

  .marquee-wrapper::before,
  .marquee-wrapper::after {
    width: 48px;
  }
}

/* ══════════════════════════════════════
   9b. FAQ
══════════════════════════════════════ */
#faq {
  padding: var(--section-gap) 24px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

#faq::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 184, 130, .04), transparent 60%);
  pointer-events: none;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-header .tag {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
}

.faq-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
}

.faq-header h2 em {
  color: var(--forest);
  font-style: italic;
}

.faq-header p {
  color: rgba(10, 10, 8, .5);
  font-size: 17px;
  font-weight: 300;
  margin-top: 12px;
}

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

.faq-item {
  background: var(--cream);
  border: 1px solid rgba(10, 10, 8, .06);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}

.faq-item:hover {
  border-color: rgba(10, 10, 8, .1);
}

.faq-item[open] {
  border-color: rgba(157, 184, 130, .3);
  box-shadow: 0 8px 30px rgba(10, 10, 8, .04);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  font-size: 15.5px;
  font-weight: 550;
  color: var(--black);
  line-height: 1.4;
  transition: color .3s;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  content: '';
}

.faq-question span {
  flex: 1;
}

.faq-chevron {
  flex-shrink: 0;
  color: rgba(10, 10, 8, .3);
  transition: transform .35s cubic-bezier(.22,.61,.36,1), color .3s;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--forest);
}

.faq-answer {
  padding: 0 24px 22px;
  animation: faqSlideDown .35s cubic-bezier(.22,.61,.36,1);
}

.faq-answer p {
  font-size: 14.5px;
  color: rgba(10, 10, 8, .55);
  line-height: 1.75;
  font-weight: 300;
}

@keyframes faqSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .faq-question {
    padding: 18px 20px;
    font-size: 14.5px;
  }

  .faq-answer {
    padding: 0 20px 18px;
  }
}

/* ══════════════════════════════════════
   10. CTA FINAL
══════════════════════════════════════ */
#cta-final {
  padding: 120px 24px 140px;
  background: #0C0B09;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Noise texture */
.cta-final-noise {
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

/* Floating orbs */
.cta-final-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-final-orb--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(157, 184, 130, .08), transparent 65%);
  animation: cta-float 12s ease-in-out infinite;
}

.cta-final-orb--2 {
  width: 500px;
  height: 500px;
  bottom: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(196, 78, 0, .07), transparent 65%);
  animation: cta-float 10s ease-in-out infinite reverse;
}

@keyframes cta-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.cta-final-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#cta-final .tag {
  background: rgba(157, 184, 130, .1);
  color: var(--sage);
  border-color: rgba(157, 184, 130, .2);
}

#cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--off-white);
  line-height: 1.1;
}

#cta-final h2 em {
  color: var(--sage);
  font-style: italic;
}

#cta-final p {
  font-size: 18px;
  color: rgba(250, 247, 242, .45);
  font-weight: 300;
  margin-bottom: 44px;
  line-height: 1.7;
}

/* CTA button */
.cta-final-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  background: var(--sage);
  color: #0C0B09;
  text-decoration: none;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s, background .35s;
  box-shadow: 0 4px 20px rgba(157, 184, 130, .25), 0 0 0 0 rgba(157, 184, 130, 0);
}

.cta-final-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(157, 184, 130, .3), 0 0 60px rgba(157, 184, 130, .1);
  background: #a8c490;
}

.cta-final-btn svg {
  transition: transform .3s;
}

.cta-final-btn:hover svg {
  transform: translateX(4px);
}

/* Trust badges */
.cta-final-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.cta-final-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(250, 247, 242, .35);
}

.cta-final-trust-item svg {
  color: var(--sage);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  #cta-final {
    padding: 80px 24px 100px;
  }

  .cta-final-trust {
    flex-direction: column;
    gap: 12px;
  }
}