/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #F15A22;
  --orange-hover: #d94e1a;
  --bg: #FEF6EE;
  --dark: #1a1a1a;
  --grey: #555;
  --radius: 14px;
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  cursor: pointer;
  border: none;
}
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }

.btn--orange {
  background: var(--orange);
  color: #fff;
}
.btn--orange:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(241,90,34,.35);
}

.btn--outline {
  background: #fff;
  color: var(--dark);
  border: 1.5px solid #ddd;
}
.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
}

.text-orange { color: var(--orange); }
.arrow { font-size: 1.2rem; }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: 14px 0;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, background .3s ease;
  will-change: transform;
}
/* cachée vers le haut quand on descend */
.navbar.nav-hidden {
  transform: translateY(-100%);
}
/* réapparition au scroll vers le haut */
.navbar.nav-show {
  transform: translateY(0);
  background: rgba(254,246,238,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text {
  height: 36px;
  width: auto;
}

.navbar__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.navbar__links a {
  text-decoration: none;
  color: var(--dark);
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s;
}
.navbar__links a:hover { color: var(--orange); }

.navbar__cta { margin-left: 20px; padding: 12px 22px; font-size: .9rem; }

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 84px 0 56px;
  overflow: hidden;
}

/* halo animé en fond */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
}
.blob--1 { width: 460px; height: 460px; background: #FBC59B; top: -120px; right: -60px; animation: float1 14s ease-in-out infinite; }
.blob--2 { width: 380px; height: 380px; background: #FFD9A0; bottom: -140px; left: -80px; animation: float2 18s ease-in-out infinite; }
.blob--3 { width: 300px; height: 300px; background: #F8A977; top: 40%; left: 45%; opacity: .35; animation: float1 22s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,40px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(40px,-30px)} }
.hero__inner { position: relative; z-index: 1; }

/* pill note */
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid rgba(241,90,34,.18);
  color: var(--dark);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(241,90,34,.1);
}
.hero__stars { color: #FFB300; letter-spacing: 1px; }

/* texte dégradé animé */
.text-grad {
  background: linear-gradient(100deg,#F15A22,#FF8A3D,#F15A22);
  background-size: 200% auto;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }

/* accent manuscrit */
.hero__hand {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  color: var(--orange);
  transform: rotate(-4deg);
  margin: -6px 0 14px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.hero__title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero__badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__badges .badge img {
  height: 44px;
  width: auto;
  display: block;
}

.hero__visual {
  background: #FDEBD8;
  border-radius: 28px;
  padding: 32px 24px 0 24px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(241,90,34,.12);
}

.hero__img {
  width: 100%;
  max-width: 480px;
  display: block;
}

/* ── Stats band ── */
.stats {
  background: linear-gradient(135deg,#F15A22,#E0451A);
  padding: 36px 0;
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  text-align: center;
}
.stat__num {
  display: block;
  font-size: clamp(1.8rem,4vw,2.6rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}
.stat__label {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
}

/* hero CTA glow */
.hero__actions .btn--orange {
  box-shadow: 0 10px 30px rgba(241,90,34,.4);
  animation: pulse-glow 2.6s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 10px 30px rgba(241,90,34,.35); }
  50% { box-shadow: 0 12px 42px rgba(241,90,34,.6); }
}

@media (prefers-reduced-motion: reduce) {
  .blob, .text-grad, .marquee__track, .hero__actions .btn--orange { animation: none; }
}
@media (max-width: 640px) {
  .stats__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ── Categories ── */
.categories {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 64px 0 56px;
}

.categories__kicker {
  text-align: center;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: .8rem;
  margin-bottom: 10px;
}
.categories__heading {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -.5px;
  margin-bottom: 40px;
}

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

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 26px 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  cursor: default;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,.1);
  border-color: transparent;
}

.cat-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(140deg, var(--c1), var(--c2));
  box-shadow: 0 10px 22px color-mix(in srgb, var(--c2) 40%, transparent);
  transition: transform .25s ease;
}
.cat-item:hover .cat-icon { transform: scale(1.08) rotate(-4deg); }
.cat-icon svg { width: 30px; height: 30px; }

.categories__tagline {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  padding-top: 8px;
  border-top: 2px solid var(--orange);
  padding-top: 20px;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Problème / Solution ── */
.problem {
  padding: 64px 0;
  background: var(--bg);
}

.problem__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.problem__intro h2,
.problem__outro h2 {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.5px;
}

.problem__cards {
  display: flex;
  gap: 18px;
}

.problem-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 22px 18px 18px;
  width: 150px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(241,90,34,.12);
}

.problem-card__q {
  position: absolute;
  top: 10px;
  right: 14px;
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 800;
}

.problem-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

@media (max-width: 1000px) {
  .problem__cards { flex-wrap: wrap; justify-content: center; }
  .problem__intro h2, .problem__outro h2 { text-align: center; }
}

/* ── Fonctionnalités ── */
.features {
  padding: 72px 0 80px;
  background: var(--bg);
}

.features__title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 48px;
}

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

.feature-card {
  display: flex;
  gap: 18px;
  background: #FBEFE2;
  border: 1px solid rgba(241,90,34,.12);
  border-radius: 20px;
  padding: 24px;
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(241,90,34,.12);
}

.feature-card__img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  flex-shrink: 0;
  align-self: center;
}

.feature-card__body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -.3px;
}

.feature-card__body p {
  font-size: .85rem;
  color: var(--grey);
  line-height: 1.55;
  margin-bottom: 16px;
}

.btn--outline-orange {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  padding: 9px 18px;
  font-size: .82rem;
  border-radius: 50px;
}
.btn--outline-orange:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-1px);
}

/* carte large (chat) */
.feature-card--wide {
  grid-column: 1 / -1;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 28px 40px;
}
.feature-card__phone {
  width: 250px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.feature-card__group {
  width: 300px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.feature-card__body--center {
  text-align: center;
  max-width: 320px;
}

@media (max-width: 950px) {
  .features__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .features__grid { grid-template-columns: 1fr; }
  .feature-card--wide { flex-direction: column; text-align: center; }
}

/* ── Pour qui ── */
.audience {
  padding: 72px 0 80px;
  background: var(--bg);
}

.audience__title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.5px;
  margin-bottom: 48px;
}

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

.aud-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
}
.aud-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(241,90,34,.13);
}

.aud-card__banner {
  height: 150px;
  width: 100%;
  background-size: cover;
  background-position: center;
}
/* bandeau image : .aud-card__banner img { width:100%;height:100%;object-fit:cover; } */
.aud-card__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* dégradés placeholder (à remplacer par vos images) */
.banner-1 { background: linear-gradient(135deg,#F6B26B,#E8772E); }
.banner-2 { background: linear-gradient(135deg,#F19C7C,#E0573B); }
.banner-3 { background: linear-gradient(135deg,#F7C873,#EE9A3C); }
.banner-4 { background: linear-gradient(135deg,#6FB3C9,#3E8DA8); }
.banner-5 { background: linear-gradient(135deg,#E2926B,#C76A4A); }
.banner-6 { background: linear-gradient(135deg,#F2A65A,#D9722E); }

.aud-card__icon {
  position: absolute;
  top: 122px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FEF0E7;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  border: 3px solid #fff;
}
.aud-card__icon svg { width: 28px; height: 28px; }

.aud-card__body {
  padding: 36px 24px 24px;
}
.aud-card__body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.aud-card__body > p {
  font-size: .88rem;
  color: var(--grey);
  line-height: 1.5;
  margin-bottom: 16px;
}
.aud-card__body ul {
  list-style: none;
  margin-bottom: 20px;
}
.aud-card__body li {
  position: relative;
  padding-left: 26px;
  font-size: .85rem;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.aud-card__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/13px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/13px no-repeat;
}

@media (max-width: 950px) {
  .audience__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .audience__grid { grid-template-columns: 1fr; }
}

/* ── Comment ça marche ── */
.howto {
  padding: 80px 0;
  background: var(--bg);
}

.howto__title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.howto__subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 56px;
}
.underline {
  border-bottom: 3px solid var(--orange);
  padding-bottom: 2px;
}

.howto__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 38px;
}

.step-card {
  position: relative;
  background: #FBEFE2;
  border: 1px solid rgba(241,90,34,.1);
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}

/* flèche pointillée entre les cartes */
.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -42px;
  transform: translateY(-50%);
  width: 46px;
  height: 40px;
  z-index: 2;
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 24'><g fill='none' stroke='%23F15A22' stroke-width='3' stroke-linecap='round'><path stroke-dasharray='5 5' d='M2 14 C12 4, 24 4, 32 12'/><path d='M32 4 l6 8 -9 2' stroke-dasharray='0'/></g></svg>");
}

.step-card__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
}

.step-card p {
  font-size: .85rem;
  color: var(--grey);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.step-card__img {
  margin-top: auto;
  height: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.step-card__img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.step-card__img--people img {
  border-radius: 14px;
}

.step-card__img--placeholder {
  border: 2px dashed rgba(241,90,34,.4);
  border-radius: 16px;
  color: var(--orange);
  font-size: .85rem;
  font-weight: 600;
  text-align: center;
  width: 100%;
}
.step-card__img--placeholder small { color: var(--grey); font-weight: 400; }

@media (max-width: 1050px) {
  .howto__grid { grid-template-columns: repeat(2, 1fr); }
  .step-card:not(:last-child)::after { display: none; }
}
@media (max-width: 560px) {
  .howto__grid { grid-template-columns: 1fr; }
}

/* ── Tarif ── */
.pricing {
  padding: 80px 0;
  background: var(--bg);
}

.pricing__eyebrow {
  text-align: center;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: .9rem;
  margin-bottom: 14px;
}
.pricing__title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.pricing__subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--grey);
  margin-bottom: 48px;
}

.pricing__main {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
  margin-bottom: 32px;
}

/* carte offre */
.price-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 16px 44px rgba(0,0,0,.06);
}
.price-card__left h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.price-card__price {
  margin-bottom: 22px;
  color: var(--grey);
  font-weight: 500;
}
.price-card__price span {
  color: var(--orange);
  font-size: 2.8rem;
  font-weight: 900;
}
.price-card__list {
  list-style: none;
}
.price-card__list li {
  position: relative;
  padding-left: 30px;
  font-size: .95rem;
  font-weight: 500;
  margin-bottom: 13px;
}
.price-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/14px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/14px no-repeat;
}

.price-card__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price-card__img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 4px;
}
.price-card__cta {
  justify-content: center;
  width: 100%;
}
.price-card__secure {
  text-align: center;
  font-size: .85rem;
  color: var(--grey);
  margin-top: 14px;
}

/* avantages */
.pricing__perks {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 12px;
}
.perk {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.perk__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FEF0E7;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.perk__icon svg { width: 28px; height: 28px; }
.perk h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.perk p { font-size: .9rem; color: var(--grey); line-height: 1.5; }

/* classement national */
.ranking {
  background: #FBEFE2;
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 28px;
}
.ranking__intro h3 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}
.ranking__desc {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.ranking__trophy {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ranking__trophy svg { width: 30px; height: 30px; }
.ranking__desc p { font-size: .9rem; color: var(--grey); line-height: 1.5; margin-bottom: 10px; }

.ranking__caption {
  font-size: .95rem;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 18px;
}
.ranking__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.rank-card {
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
}
.rank-card__top {
  font-size: .8rem;
  font-weight: 600;
  color: var(--grey);
  margin-bottom: 10px;
}
.rank-card__pct {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 4px;
}
.rank-card__sub { font-size: .72rem; color: var(--grey); }
.rank-card--gold   { background: #FCEFC7; }
.rank-card--gold   .rank-card__pct { color: #C99700; }
.rank-card--silver { background: #ECECEC; }
.rank-card--silver .rank-card__pct { color: #707070; }
.rank-card--bronze { background: #F6E2D3; }
.rank-card--bronze .rank-card__pct { color: #B5662E; }
.rank-card--green  { background: #E2EFDD; }
.rank-card--green  .rank-card__pct { color: #5E8C4E; }

.pricing__footnote {
  text-align: center;
  font-size: .85rem;
  color: var(--grey);
}

@media (max-width: 950px) {
  .pricing__main { grid-template-columns: 1fr; }
  .price-card { grid-template-columns: 1fr; }
  .ranking { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ranking__cards { grid-template-columns: 1fr 1fr; }
}

/* ── FAQ ── */
.faq {
  padding: 80px 0;
  background: var(--bg);
}

.faq__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 32px;
}
.faq__title {
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}
.faq__subtitle {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.faq__lead {
  font-size: 1rem;
  color: var(--grey);
  max-width: 320px;
  display: inline-block;
}
.faq__head-img img {
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  display: block;
}

/* recherche */
.faq__search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
}
.faq__search svg { width: 20px; height: 20px; color: var(--grey); flex-shrink: 0; }
.faq__search input {
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: var(--font);
  width: 100%;
  background: transparent;
}

/* tabs */
.faq__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.faq-tab {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: .9rem;
  font-weight: 600;
  font-family: var(--font);
  color: var(--dark);
  cursor: pointer;
  transition: all .2s;
}
.faq-tab:hover { border-color: var(--orange); color: var(--orange); }
.faq-tab.is-active {
  background: #FEF0E7;
  border-color: var(--orange);
  color: var(--orange);
}

/* corps */
.faq__body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  margin-bottom: 56px;
}

.faq__list details {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq__list details[open] {
  border-color: rgba(241,90,34,.3);
  box-shadow: 0 8px 24px rgba(241,90,34,.08);
}
.faq__list summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "⌄";
  color: var(--orange);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform .2s;
}
.faq__list details[open] summary { color: var(--orange); }
.faq__list details[open] summary::after { transform: rotate(180deg); }
.faq__answer {
  padding: 0 22px 20px;
  font-size: .92rem;
  color: var(--grey);
  line-height: 1.6;
}

/* sidebar */
.faq__sidebar { display: flex; flex-direction: column; gap: 20px; }
.faq-help {
  background: #FBEFE2;
  border-radius: 18px;
  padding: 26px 22px;
  text-align: center;
}
.faq-help h4 { font-size: 1rem; font-weight: 800; margin-bottom: 18px; }
.faq-help__icon {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border-radius: 14px 14px 14px 4px;
}
.bubble--q { width: 52px; height: 52px; background: var(--orange); color: #fff; font-size: 1.6rem; }
.bubble--dots { width: 56px; height: 44px; background: #fff; color: var(--orange); letter-spacing: 2px; align-self: flex-end; }
.faq-help p { font-size: .9rem; color: var(--grey); margin-bottom: 16px; }
.faq-help .btn { width: 100%; justify-content: center; }

.faq-privacy {
  background: #FBEFE2;
  border-radius: 18px;
  padding: 24px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.faq-privacy__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-privacy__icon svg { width: 24px; height: 24px; }
.faq-privacy h4 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.faq-privacy p { font-size: .85rem; color: var(--grey); line-height: 1.5; }

/* raisons */
.faq__reasons-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 28px;
}
.faq__reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.reason-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 24px 20px;
}
.reason-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FEF0E7;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.reason-card__icon svg { width: 26px; height: 26px; }
.reason-card h5 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; line-height: 1.25; }
.reason-card p { font-size: .85rem; color: var(--grey); line-height: 1.5; }

/* cta final */
.faq__cta {
  background: #FBEFE2;
  border-radius: 24px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  align-items: center;
}
.faq__cta-text h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}
.faq__cta-text p { font-size: 1rem; color: var(--grey); margin-bottom: 22px; }
.faq__cta-img img { width: 100%; max-width: 280px; margin-left: auto; display: block; }

@media (max-width: 950px) {
  .faq__header { grid-template-columns: 1fr; }
  .faq__head-img img { margin: 0 auto; }
  .faq__body { grid-template-columns: 1fr; }
  .faq__reasons { grid-template-columns: 1fr 1fr; }
  .faq__cta { grid-template-columns: 1fr; }
  .faq__cta-img img { margin: 0 auto; }
}
@media (max-width: 560px) {
  .faq__reasons { grid-template-columns: 1fr; }
}

/* ═══════════ MOTEUR D'ANIMATIONS ═══════════ */
@media (prefers-reduced-motion: no-preference) {
  [data-anim] {
    opacity: 0;
    transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
    transition-delay: var(--d, 0ms);
    will-change: opacity, transform;
  }
  [data-anim="up"]    { transform: translateY(40px); }
  [data-anim="down"]  { transform: translateY(-40px); }
  [data-anim="left"]  { transform: translateX(-50px); }
  [data-anim="right"] { transform: translateX(50px); }
  [data-anim="zoom"]  { transform: scale(.85); }
  [data-anim="flip"]  { transform: perspective(800px) rotateX(-18deg); transform-origin: top; }
  [data-anim].in { opacity: 1; transform: none; }
}

/* hover tilt/lift fort */
.tilt { transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease; }
.tilt:hover { transform: translateY(-8px) scale(1.02); }

/* flottement continu */
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.hero__img { animation: floaty 6s ease-in-out infinite; }

/* dégradé qui glisse sur les boutons oranges */
.btn--orange {
  background: linear-gradient(120deg,#F15A22,#FF8A3D,#F15A22);
  background-size: 200% auto;
  transition: background-position .5s ease, transform .15s, box-shadow .2s;
}
.btn--orange:hover { background-position: right center; }

/* underline qui se dessine sous les titres */
@keyframes draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.categories__heading, .howto__title, .pricing__title, .audience__title, .faq__title, .features__title {
  position: relative;
}

/* pastille catégorie : tour complet sur elle-même au survol */
.cat-item .cat-icon { transition: transform .6s cubic-bezier(.34,1.56,.64,1); }
.cat-item:hover .cat-icon { transform: rotate(360deg) scale(1.08); }
.cat-icon { position: relative; }
.spark {
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 1;
  z-index: 5;
}

/* shimmer doré sur le badge note */
.hero__pill { position: relative; overflow: hidden; }
.hero__pill::after {
  content:"";
  position:absolute; top:0; left:-60%;
  width:40%; height:100%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.7), transparent);
  transform: skewX(-20deg);
  animation: sweep 3.5s ease-in-out infinite;
}
@keyframes sweep { 0%{left:-60%} 40%,100%{left:130%} }

@media (prefers-reduced-motion: reduce) {
  .hero__img, .hero__pill::after, .cat-item:hover .cat-icon { animation: none; }
}

/* ── Section kicker premium ── */
.section-kicker {
  text-align: center;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: .8rem;
  margin-bottom: 10px;
}

/* élévation premium des cartes */
.aud-card { box-shadow: 0 12px 30px rgba(0,0,0,.06); }
.aud-card:hover { box-shadow: 0 26px 50px rgba(241,90,34,.16); }
.step-card { transition: transform .25s ease, box-shadow .25s ease; }
.step-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(241,90,34,.12); }
.price-card { box-shadow: 0 24px 60px rgba(241,90,34,.1); }
.rank-card { transition: transform .2s ease, box-shadow .2s ease; }
.rank-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(0,0,0,.1); }
.reason-card { transition: transform .2s ease, box-shadow .2s ease; }
.reason-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(241,90,34,.12); }
.faq-tab { transition: all .2s ease; }
.faq-tab:hover { transform: translateY(-2px); }

/* badge "le + populaire" sur l'offre */
.price-card { position: relative; overflow: visible; }
.price-card::before {
  content: "★ LE PLUS POPULAIRE";
  position: absolute;
  top: -14px;
  left: 36px;
  background: linear-gradient(135deg,#F15A22,#FF8A3D);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(241,90,34,.4);
}

/* ── Animations & Polish ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease-out, transform .6s ease-out;
    will-change: opacity, transform;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease-out, transform .5s ease-out;
  }
  .reveal-stagger.is-visible > * {
    opacity: 1;
    transform: none;
  }
}

/* press feedback */
.btn:active { transform: translateY(1px) scale(.98); }
.badge { transition: transform .2s ease; display: inline-block; }
.badge:hover { transform: translateY(-2px); }

/* focus visible accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(241,90,34,.55);
  outline-offset: 2px;
  border-radius: 8px;
}

/* navbar shadow on scroll */
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}

/* mobile menu */
.navbar__links.open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: var(--bg);
  padding: 18px 32px 24px;
  gap: 18px;
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

/* ── Trust microcopy hero ── */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 18px;
  font-size: .85rem;
  font-weight: 600;
  color: #2e7d32;
}

/* ── Témoignages ── */
.testi {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid rgba(0,0,0,.05);
}
.testi__title {
  text-align: center;
  font-size: clamp(1.7rem,3.5vw,2.5rem);
  font-weight: 900;
  letter-spacing: -.5px;
  margin-bottom: 14px;
}
.testi__rating {
  text-align: center;
  font-size: 1rem;
  color: var(--grey);
  margin-bottom: 44px;
}
.testi__stars { color: #FFB300; letter-spacing: 2px; margin-right: 6px; }
.testi__rating strong { color: var(--dark); }

.testi__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-bottom: 44px;
}
.testi-card {
  background: #FBEFE2;
  border: 1px solid rgba(241,90,34,.1);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(241,90,34,.14); }
.testi-card__stars { color: #FFB300; letter-spacing: 2px; font-size: 1.1rem; }
.testi-card blockquote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark);
  font-weight: 500;
  flex-grow: 1;
}
.testi-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-card figcaption img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-card figcaption strong { display: block; font-size: .95rem; }
.testi-card figcaption span { font-size: .82rem; color: var(--grey); }

.testi__cta { text-align: center; }
.testi__cta-sub { margin-top: 12px; font-size: .85rem; color: var(--grey); }

/* ── Barre CTA mobile fixe ── */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 -6px 24px rgba(0,0,0,.12);
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta__text { display: flex; flex-direction: column; line-height: 1.2; }
.mobile-cta__text strong { font-size: 1rem; }
.mobile-cta__text span { font-size: .78rem; color: #2e7d32; font-weight: 600; }
.mobile-cta .btn { padding: 12px 20px; white-space: nowrap; }

@media (max-width: 760px) {
  .testi__grid { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
}

/* ── Footer ── */
.footer {
  background: #2A2320;
  color: #d9d2cc;
  padding-top: 56px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__logo {
  height: 34px;
  width: auto;
  margin-bottom: 18px;
  display: block;
}
.footer__brand p {
  font-size: .9rem;
  line-height: 1.6;
  color: #b3aaa3;
  margin-bottom: 20px;
  max-width: 320px;
}
.footer__badges { display: flex; gap: 12px; flex-wrap: wrap; }
.footer__badges .badge img { height: 40px; width: auto; display: block; }

.footer__col h4 {
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  color: #b3aaa3;
  text-decoration: none;
  font-size: .9rem;
  margin-bottom: 11px;
  transition: color .2s;
}
.footer__col a:hover { color: var(--orange); }

.footer__socials { display: flex; gap: 12px; }
.footer__socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d9d2cc;
  transition: all .2s;
}
.footer__socials a:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.footer__socials svg { width: 18px; height: 18px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom p { font-size: .85rem; color: #8f8780; }

@media (max-width: 950px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

/* ═══════════ OPTIMISATION MOBILE ═══════════ */
@media (max-width: 768px) {
  /* rythme vertical resserré */
  .hero, .categories, .problem, .features, .audience,
  .howto, .pricing, .testi, .faq { padding-top: 48px; padding-bottom: 48px; }
  .container { padding: 0 18px; }

  /* hero */
  .hero__inner { gap: 28px; }
  .hero__desc br, .howto__subtitle br, .faq__cta-text br { display: none; }
  .hero__desc { font-size: 1rem; }
  .hero__hand { font-size: 1.6rem; }
  .hero__pill { font-size: .75rem; padding: 7px 13px; }
  .hero__actions .btn,
  .hero__badges { width: 100%; }
  .hero__actions .btn { justify-content: center; }
  .hero__badges { justify-content: center; }
  .hero__trust { justify-content: center; gap: 6px 14px; font-size: .8rem; }

  /* titres */
  .categories__heading, .audience__title, .testi__title,
  .features__title, .faq__reasons-title { font-size: 1.5rem; }
  .howto__title { font-size: 2rem; }
  .pricing__title { font-size: 1.7rem; }

  /* offres : badge populaire repositionné */
  .price-card { padding: 28px 22px; }
  .price-card::before { left: 50%; transform: translateX(-50%); white-space: nowrap; }
  .price-card__price span { font-size: 2.4rem; }

  /* classement : 2 colonnes */
  .ranking { padding: 28px 20px; }
  .ranking__cards { grid-template-columns: 1fr 1fr; }
  .pricing__footnote { font-size: .78rem; }

  /* faq */
  .faq__title { font-size: 3rem; }
  .faq__tabs { gap: 8px; }
  .faq-tab { padding: 9px 14px; font-size: .82rem; }

  /* footer */
  .footer { padding-top: 44px; }
  .footer__badges { justify-content: flex-start; }

  /* zones tactiles ≥44px */
  .navbar__links a, .footer__col a { padding: 6px 0; display: inline-block; }
  .btn { min-height: 46px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.9rem; line-height: 1.12; }
  .hero__pill { white-space: normal; text-align: center; line-height: 1.5; }
  .stats__inner { gap: 22px 12px; }
  .stat__num { font-size: 1.7rem; }
  .stat__label { font-size: .8rem; }
  .ranking__cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .rank-card__pct { font-size: 1.4rem; }
  .price-card { grid-template-columns: 1fr; }
  .feature-card { flex-direction: column; text-align: center; align-items: center; }
  .feature-card__img { width: 100px; height: 100px; }
  .problem__cards { gap: 12px; }
  .problem-card { width: 100%; max-width: 220px; }
  .faq__cta { padding: 32px 24px; }
}

/* évite tout débordement horizontal sans casser le sticky */
html, body { overflow-x: clip; }
img { max-width: 100%; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__badges { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__img { max-width: 420px; }
  .navbar__links, .navbar__cta { display: none; }
  .navbar__burger { display: flex; }
}

@media (max-width: 860px) {
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero { padding: 48px 0 32px; }
  .hero__title { font-size: 2rem; }
}
