/* Local Font Declarations (Variable Fonts) */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/Outfit.woff2') format('woff2');
}

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/Fraunces.woff2') format('woff2');
}

:root {
  --coral: #ff4757;
  --coral-dark: #e8394a;
  --ink: #16181f;
  --ink-soft: #4a4f5c;
  --muted: #8b909c;
  --line: #ececf1;
  --hair: #e7e8ee;
  --bg: #ffffff;
  --bg-alt: #f7f7fb;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 10px 40px rgba(20, 24, 40, 0.06);
  --shadow-lg: 0 24px 70px rgba(20, 24, 40, 0.12);
  --maxw: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: subpixel-antialiased;
}

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 760px; }

.serif { font-family: 'Fraunces', -apple-system-serif, Georgia, serif; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--coral); color: #fff; box-shadow: 0 8px 22px rgba(255,71,87,.32); }
.btn--primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,71,87,.42); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: #d9d9e3; transform: translateY(-2px); }
.btn--demo { background: var(--ink); color: #fff !important; box-shadow: 0 8px 22px rgba(22, 24, 31, 0.12); border: 1.5px solid transparent; }
.btn--demo:hover { background: var(--ink-soft); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(22, 24, 31, 0.2); }
.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo {
  display: inline-flex;
  align-items: center;
  color: var(--ink) !important;
}
.logo-svg {
  height: 27px;
  width: auto;
  display: block;
  transform: translateY(-2px);
}
@media (max-width: 1024px) {
  /* Titres Bento + étapes : weight max sur mobile */
  .bt h3, .stp .txt h3 { font-weight: 900 !important; }
}

/* Texte des cartes bento (h3 + paragraphes) bien lisible */
.bt h3 { font-size: 17px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 6px; }
.bt p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

/* Titres des étapes "Comment ça marche" : un cran plus gras */
.stp .txt h3 { font-weight: 800; }

/* Mini-listes ajoutées spécifiquement pour mobile (cachées sur PC + iPad paysage) */
.mini--m { display: none !important; }
@media (max-width: 600px) { .mini--m { display: flex !important; } }
.logo--light { color: #fff !important; }
.nav__links { display: flex; gap: clamp(12px, 2vw, 24px); align-items: center; }
.nav__links a { color: var(--ink-soft); font-weight: 500; font-size: 14.5px; white-space: nowrap; transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; gap: clamp(6px, 1.2vw, 10px); align-items: center; }
.nav__cta .btn { padding: 8px 16px; font-size: 13.5px; }

/* ---------- Section Headings ---------- */
.section { padding: 88px 0; }
#fonctionnalites.section { padding-top: 48px; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.eyebrow { color: var(--coral); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.section__head h2 { font-size: 38px; font-weight: 800; letter-spacing: -.02em; margin: 12px 0 14px; line-height: 1.12; }
.section__head p { color: var(--ink-soft); font-size: 18px; }

/* ---------- Hero Section (Photographic) ---------- */
.hero {
  background: radial-gradient(1000px 460px at 88% -10%, rgba(255,71,87,.05), transparent 62%), #fff;
  padding: 80px 0 48px;
}
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 7px 15px;
  margin-bottom: 24px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
h1.title { font-size: 58px; line-height: 1.07; font-weight: 800; letter-spacing: -.02em; }
h1.title .ac { color: var(--coral); }
.roller { display: inline-block; height: 1.25em; overflow: hidden; vertical-align: bottom; position: relative; top: 0.06em; }
.roller ul { list-style: none; margin: 0; padding: 0; animation: roll 10s cubic-bezier(.76, 0, .24, 1) infinite; }
.roller li { height: 1.25em; line-height: 1.25em; color: var(--coral); white-space: nowrap; }
@keyframes roll {
  0%, 13% { transform: translateY(0); }
  20%, 33% { transform: translateY(-1.25em); }
  40%, 53% { transform: translateY(-2.50em); }
  60%, 73% { transform: translateY(-3.75em); }
  80%, 93% { transform: translateY(-5.00em); }
  100% { transform: translateY(-6.25em); }
}
.lead { font-size: 19px; color: var(--ink-soft); margin: 24px 0 30px; max-width: 520px; }
.acts { display: flex; gap: 14px; flex-wrap: wrap; }

/* Social proof */
.proof { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.avs { display: flex; }
.avs img { width: 38px; height: 38px; border-radius: 50%; border: 2px solid #fff; object-fit: cover; margin-left: -10px; background: #eee; }
.avs img:first-child { margin-left: 0; }
.proof .pt { font-size: 13.5px; color: var(--ink-soft); }
.proof .pt b { color: var(--ink); }
.stars { color: var(--coral); font-size: 13px; letter-spacing: 1px; }

/* Visual block with floating cards */
.visual { position: relative; width: 100%; display: block; }
.photo { display: block; width: 100%; border-radius: 24px; overflow: hidden; aspect-ratio: 4/4.4; background: #e9e2da; box-shadow: 0 36px 90px rgba(60,40,25,.18); min-height: 450px; }
.hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fcard {
  position: absolute;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 18px 44px rgba(20, 24, 40, 0.12);
  animation: floaty 5s ease-in-out infinite;
  z-index: 10;
}
.fcard--kpi { top: 26px; right: -18px; }
.fcard--kpi .l { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.fcard--kpi .v { font-size: 24px; font-weight: 800; font-variant-numeric: tabular-nums; display: flex; align-items: baseline; gap: 6px; }
.fcard--kpi .up { font-size: 12px; color: #1fa971; font-weight: 700; }
.fcard--resa { bottom: 24px; left: -22px; display: flex; align-items: center; gap: 11px; animation-delay: 1.2s; }
.fcard--resa .ico-box { width: 34px; height: 34px; border-radius: 10px; background: rgba(255,71,87,.12); display: flex; align-items: center; justify-content: center; }
.fcard--resa .ico-box svg { width: 18px; height: 18px; stroke: var(--coral); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.fcard--resa .t1 { font-size: 13px; font-weight: 700; }
.fcard--resa .t2 { font-size: 11.5px; color: var(--muted); }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Testimonials (B2B trust) ---------- */
.testi { background: var(--bg-alt); padding: 76px 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.testi .head { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.testi h2 { font-size: 34px; font-weight: 800; margin-top: 10px; }
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tcard { background: #fff; border: 1px solid var(--hair); border-radius: 20px; padding: 26px; box-shadow: 0 14px 40px rgba(0,0,0,.02); }
.tcard .st { color: var(--coral); font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.tcard p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.tcard .who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: #eee; }
.tcard .who b { font-size: 14px; display: block; }
.tcard .who span { font-size: 12.5px; color: var(--muted); }


/* Scroll animations */
.rv { opacity: 0; transform: translateY(20px); transition: .7s cubic-bezier(.2, .8, .2, 1); }
.rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: .04s; }
.d2 { transition-delay: .12s; }
.d3 { transition-delay: .20s; }
.d4 { transition-delay: .28s; }

/* ---------- Bento Features Section ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 176px; gap: 18px; }
.bt {
  position: relative;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 18px;
  padding: 24px;
  overflow: hidden;
  transition: transform .32s cubic-bezier(.2,.8,.2,1), box-shadow .32s, border-color .32s, opacity .55s cubic-bezier(.2,1.3,.4,1);
  opacity: 0;
  transform: scale(.88);
}
.bt.wide { grid-column: span 2; }
.bt.tall { grid-row: span 2; }

/* Spotlight effect on hover */
.bt::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  opacity: 0;
  transition: opacity .3s;
  background: radial-gradient(240px 240px at var(--x, 50%) var(--y, 50%), rgba(255, 71, 87, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.bt > * { position: relative; z-index: 1; }

.bt:hover { transform: translateY(-6px); box-shadow: 0 22px 54px rgba(20,24,40,.12); border-color: rgba(255,71,87,.4); }
.bt:hover ::before { opacity: 1; }
.bt:hover .ico-chip { transform: scale(1.06) rotate(-3deg); background: rgba(255,71,87,.16); }

/* Bento cascade animations */
.bento.play .bt { opacity: 1; transform: none; }
.bento.play .bt:nth-child(1) { transition-delay: .00s; }
.bento.play .bt:nth-child(2) { transition-delay: .07s; }
.bento.play .bt:nth-child(3) { transition-delay: .14s; }
.bento.play .bt:nth-child(4) { transition-delay: .21s; }
.bento.play .bt:nth-child(5) { transition-delay: .28s; }
.bento.play .bt:nth-child(6) { transition-delay: .35s; }
.bento.play .bt:nth-child(7) { transition-delay: .42s; }

.ico-chip {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,71,87,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.ico-chip svg { width: 22px; height: 22px; stroke: var(--coral); stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.mini { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.mini .o { background: #fafbfc; border: 1px solid var(--hair); border-radius: 10px; padding: 8px 10px; display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-soft); }
.mini .o b { color: var(--coral); font-weight: 700; }

/* FIX GRAPHIC RENDERING CAISSE POS */
.mbars { margin-top: 16px; display: flex; align-items: flex-end; gap: 7px; height: 54px; }
.mbars i { flex: 1; border-radius: 5px 5px 2px 2px; background: #ffd0d5; transform-origin: bottom; animation: grow-bar 1s cubic-bezier(.2,.8,.2,1) both; }
.mbars i.on { background: var(--coral); }

@keyframes grow-bar {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}


/* ---------- Formules Pricing (Apple-Minimalist, No spin) ---------- */
.B { position: relative; overflow: hidden; background: #fff; padding: 88px 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.B .gridd {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(#eef0f5 1px, transparent 1px), linear-gradient(90deg, #eef0f5 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask: radial-gradient(720px 460px at 62% 50%, #000, transparent 78%);
  mask: radial-gradient(720px 460px at 62% 50%, #000, transparent 78%);
}
.b-plans { position: relative; z-index: 1; display: grid; grid-template-columns: .88fr 1.12fr; gap: 24px; max-width: 920px; margin: 0 auto; align-items: center; }

.b-plans .plan { position: relative; background: #fff; border: 1px solid var(--hair); border-radius: 22px; padding: 32px; transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s; }
.b-plans .plan:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(20, 24, 40, 0.08); }

.b-plans .plan--ess { background: #fff; }
.b-plans .plan--pro { padding: 38px 34px; box-shadow: 0 30px 70px rgba(255,71,87,.14); border: 2.5px solid var(--coral); }
.b-plans .plan--pro .pname { font-size: 28px; }

/* Note: No rotating border glowb here */

.pname { font-family: 'Fraunces', -apple-system-serif, Georgia, serif; font-size: 24px; font-weight: 600; }
.pprice b { font-family: 'Fraunces', -apple-system-serif, Georgia, serif; font-size: 30px; font-weight: 600; }
.pprice span { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--coral); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 16px; border-radius: 999px; white-space: nowrap; box-shadow: 0 6px 16px rgba(255,71,87,.34); }

.feats { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 11px; }
.feats li { position: relative; padding-left: 28px; font-size: 14.5px; color: var(--ink-soft); }
.feats li svg { position: absolute; left: 0; top: 3px; width: 17px; height: 17px; stroke: var(--coral); stroke-width: 2.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.plans-sec.play .rv { opacity: 1; transform: none; }
.plans-sec .rv { opacity: 0; transform: scale(.92) translateY(16px); transition: .6s cubic-bezier(.2,1.3,.4,1); }
.plans-sec.play .rv.b { transition-delay: .12s; }
.plans__note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 24px; }

/* ---------- Steps Section ---------- */
.steps-sec { background: #fff; padding: 88px 0; }
.tl { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 56px; }
.tl .line { position: absolute; top: 27px; left: 16.66%; right: 16.66%; height: 3px; background: var(--hair); border-radius: 2px; overflow: hidden; }
.tl .fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--coral), #ff8a94); border-radius: 2px; transition: width .15s linear; }
.stp { position: relative; text-align: center; }
.dot { width: 56px; height: 56px; border-radius: 50%; background: #fff; border: 2px solid var(--hair); color: var(--muted); font-family: 'Fraunces', -apple-system-serif, Georgia, serif; font-weight: 600; font-size: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; transition: background .4s, border-color .4s, color .4s, transform .4s, box-shadow .4s; }
.stp.on .dot { background: var(--coral); border-color: var(--coral); color: #fff; transform: scale(1.08); box-shadow: 0 12px 26px rgba(255,71,87,.34); }
.stp .txt { opacity: .5; transition: opacity .4s; }
.stp .txt h3 { font-size: 19px; font-weight: 700; margin-bottom: 7px; }
.stp .txt p { color: var(--ink-soft); font-size: 14.5px; }
.stp.on .txt { opacity: 1; }

/* ---------- FAQ ---------- */
.faq { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 20px; margin-bottom: 12px; }
.faq summary { cursor: pointer; font-weight: 600; font-size: 16px; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--coral); font-size: 24px; font-weight: 400; }
.faq[open] summary::after { content: "−"; }
.faq p { color: var(--ink-soft); padding: 0 0 18px; font-size: 15px; }

/* ---------- CTA final ---------- */
.cta { background: linear-gradient(120deg, #16181f 0%, #23202b 100%); color: #fff; padding: 84px 0; text-align: center; }
.cta h2 { font-size: 36px; font-weight: 800; letter-spacing: -.02em; max-width: 640px; margin: 0 auto; }
.cta p { color: #c4c6cf; font-size: 18px; margin: 16px 0 30px; }

/* ---------- Formulaire de demande ---------- */
.cta .eyebrow { display: block; margin-bottom: 10px; }
.reqform { margin-top: 30px; text-align: left; }
.reqform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.reqform input, .reqform textarea, .reqform select {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  margin-bottom: 14px;
  border: 1px solid #2f323c;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
}
.reqform select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, #555 50%), linear-gradient(135deg, #555 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
.reqform input::placeholder, .reqform textarea::placeholder { color: var(--muted); }
.reqform input:focus, .reqform textarea:focus, .reqform select:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,71,87,.25); }
.reqform textarea { resize: vertical; }
.reqform button { margin-top: 4px; }

/* Form sections */
.reqform__step {
  color: rgba(255,255,255,0.95);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 22px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.reqform__step:first-child { margin-top: 0; }
.reqform__hint {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin: 0 0 10px;
}
.reqform__checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  margin-bottom: 18px;
}
.reqform__checks label {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px 0;
}
.reqform__checks input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
  accent-color: var(--coral);
}

.reqform__status { margin-top: 14px; font-size: 15px; font-weight: 600; text-align: center; min-height: 22px; }
.reqform__status.ok { color: #51e08a; }
.reqform__status.err { color: #ff8a93; }

/* ============ Footer (Dark A) ============ */
.footer { background: #0d0e13; color: #c4c6cf; padding: 56px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.footer__brand p { margin-top: 12px; font-size: 14px; max-width: 280px; color: #9095a1; }
.footer__col h4 { color: #fff; font-size: 14px; margin-bottom: 14px; font-weight: 700; }
.footer__col a { display: block; color: #c4c6cf; font-size: 14px; margin-bottom: 10px; transition: color .2s, transform .2s; }
.footer__col a:hover { color: #fff; transform: translateX(3px); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: 13px; color: #80838f; }
.footer__bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.soc { display: flex; gap: 10px; }
.soc a { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); transition: .25s; }
.soc a:hover { background: var(--coral); border-color: var(--coral); }
.soc svg { width: 17px; height: 17px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Galerie Ambiance ---------- */
.gallery-sec {
  padding: 40px 0 80px;
  background: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-card {
  position: relative;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.gallery-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px rgba(255, 71, 87, 0.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 20, 26, 0.45) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.gallery-label {
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 99px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   BURGER (mobile + iPad) — caché par défaut sur desktop
   ============================================================ */
.nav__burger { display: none; background: transparent; border: 0; width: 44px; height: 44px; padding: 10px; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__panel { position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: #fff; padding: 24px 24px 40px; overflow-y: auto; z-index: 49; display: flex; flex-direction: column; gap: 4px; border-top: 1px solid var(--line); animation: panelIn .25s ease; }
.nav__panel[hidden] { display: none; }
.nav__panel a { display: block; padding: 16px 4px; font-size: 18px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--hair); }
.nav__panel-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.nav__panel-cta .btn { padding: 14px 20px; font-size: 15px; }
@keyframes panelIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE — iPad paysage (1024-1194px)
   ============================================================ */
@media (max-width: 1194px) {
  :root { --maxw: 1000px; }
  .hero__grid { gap: 36px; }
  h1.title { font-size: 50px; }
  .fcard--kpi { right: 6px; }
  .fcard--resa { left: 6px; }
  .bento { gap: 14px; grid-auto-rows: 160px; }
}

/* ============================================================
   RESPONSIVE — iPad portrait / tablette (≤ 1024px)
   Activation du burger, masquage des liens desktop
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  body.nav-open { overflow: hidden; }
}

/* ============================================================
   RESPONSIVE — Tablette (≤ 920px)
   ============================================================ */
@media (max-width: 920px) {
  .hero { padding: 64px 0 72px; }
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  h1.title { font-size: 44px; }
  .lead { font-size: 17px; }
  .visual { max-width: 520px; margin: 0 auto; }
  .photo { min-height: 380px; }
  .fcard--kpi { right: -8px; top: 18px; }
  .fcard--resa { left: -10px; bottom: 18px; }

  .section { padding: 72px 0; }
  .section__head h2 { font-size: 30px; }
  .section__head { margin-bottom: 40px; }

  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .bt.wide { grid-column: span 2; }
  .bt.tall { grid-row: span 1; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .gallery-card { height: 260px; }

  .b-plans { grid-template-columns: 1fr; gap: 30px; max-width: 480px; }
  .b-plans .plan--pro { padding: 32px; }
  .b-plans .plan--pro .pname { font-size: 24px; }

  .testi h2 { font-size: 28px; }
  .cta h2 { font-size: 30px; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — Tablette étroite / grand mobile (≤ 760px)
   ============================================================ */
@media (max-width: 760px) {
  .tl { grid-template-columns: 1fr; gap: 24px; }
  .tl .line { left: 27px; right: auto; top: 28px; bottom: 28px; width: 3px; height: auto; transform: none; }
  .tl .fill { width: 100% !important; height: 0; transition: height .15s linear; }
  .stp { text-align: left; display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; }
  .stp .dot { margin: 0; }
  .tgrid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card { height: 240px; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero { padding: 48px 0 56px; background: #fff; }
  .hero__grid { gap: 36px; }
  h1.title { font-size: 36px; }
  .lead { font-size: 16px; margin: 20px 0 24px; }
  .acts { gap: 10px; }
  .acts .btn--lg { padding: 13px 22px; font-size: 15px; }
  .acts .btn { flex: 1 1 100%; }

  .pill { font-size: 12px; padding: 6px 13px; margin-bottom: 18px; }
  .photo { min-height: 340px; aspect-ratio: 4/4.6; }
  .fcard { padding: 11px 13px; }
  .fcard--kpi { right: -6px; top: 14px; }
  .fcard--kpi .v { font-size: 20px; }
  .fcard--resa { left: -6px; bottom: 14px; }
  .proof { gap: 12px; margin-top: 22px; }
  .avs img { width: 32px; height: 32px; }

  .section { padding: 56px 0; }
  .section__head h2 { font-size: 26px; }
  .section__head p { font-size: 16px; }
  .eyebrow { font-size: 12px; }

  /* Carrousel auto-scroll horizontal pour les fonctionnalités */
  .bento {
    display: flex;
    grid-template-columns: none;
    grid-auto-rows: auto;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding: 4px 20px 16px;
    margin: 0 -20px;
    scrollbar-width: none;
  }
  .bento::-webkit-scrollbar { display: none; }
  .bt {
    flex: 0 0 78%;
    scroll-snap-align: center;
    padding: 22px;
    min-height: 200px;
    opacity: 1 !important;
    transform: none !important;
  }
  .bt.wide, .bt.tall { flex: 0 0 78%; grid-column: auto; grid-row: auto; }

  /* Formules : Pro en premier (ordre flex) */
  .b-plans .plan--pro { order: 1; }
  .b-plans .plan--ess { order: 2; }

  /* Espaces resserrés : moins d'air entre sections */
  .hero { padding: 48px 0 32px; }
  #fonctionnalites.section { padding: 36px 0 28px; }
  .gallery-sec { padding: 8px 0 28px; }
  .B { padding: 32px 0; }
  .section { padding: 44px 0; }

  /* FAQ : titre + icône sur même ligne, pas de retour à la ligne du "?" */
  .faq summary { gap: 12px; align-items: flex-start; }
  .faq summary > span { flex: 1; }
  .faq summary::after { flex-shrink: 0; line-height: 1; padding-top: 2px; }

  .testi { padding: 56px 0; }
  .testi h2 { font-size: 24px; }
  .tcard { padding: 22px; }

  .B { padding: 56px 0; }
  /* Carrousel swipe horizontal pour les formules */
  .b-plans {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    max-width: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 20px;
    padding: 8px 20px 20px;
    margin: 0 -20px;
    scrollbar-width: none;
  }
  .b-plans::-webkit-scrollbar { display: none; }
  .b-plans .plan {
    flex: 0 0 84%;
    scroll-snap-align: center;
    padding: 28px 22px;
  }
  .b-plans .plan--pro { padding: 32px 22px; }
  .b-plans .plan--pro .pname { font-size: 22px; }
  .plans__note { font-size: 13px; padding: 0 8px; }

  /* Carrousel swipe horizontal pour la galerie */
  .gallery-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 20px;
    padding: 4px 20px 16px;
    margin: 0 -20px;
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
    height: 240px;
  }

  .steps-sec { padding: 56px 0; }
  .stp .txt h3 { font-size: 17px; }

  .cta { padding: 56px 0; }
  .cta h2 { font-size: 26px; }
  .cta p { font-size: 16px; }
  .reqform__row { grid-template-columns: 1fr; }
  .reqform__checks { grid-template-columns: 1fr; gap: 4px; }
  .reqform input, .reqform textarea, .reqform select { padding: 12px 14px; font-size: 15px; margin-bottom: 12px; }
  .reqform__step { font-size: 13px; margin: 18px 0 10px; }

  .footer { padding: 44px 0 0; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer__brand { grid-column: auto; }
  .footer__bottom .container { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============================================================
   RESPONSIVE — Petit mobile (≤ 380px)
   ============================================================ */
@media (max-width: 380px) {
  h1.title { font-size: 32px; }
  .section__head h2 { font-size: 23px; }
  .nav__cta .btn--demo { padding: 7px 12px; font-size: 12.5px; }
  .logo-svg { height: 22px; transform: translateY(-1.5px); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .rv { opacity: 1; transform: none; }
  .bt { opacity: 1; transform: none; }
  .tl .fill { width: 100%; }
  .stp { opacity: 1; }
  .stp .txt { opacity: 1; }
  .fcard { animation: none; }
}
