/* =========================================================
   RXN Solutions — V2 (Beauté)
   Chic rose poudré + crème, sérif éditoriale, tech moderne
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
ul { list-style: none; }
strong { font-weight: 700; color: var(--ink); }
sup { font-size: 0.65em; vertical-align: super; }

em.serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

:root {
  /* Warm chic palette */
  --paper: #faf3ec;
  --paper-2: #f3e8de;
  --paper-3: #ede0d2;
  --ink: #2a1f1f;
  --ink-2: #4a3838;
  --muted: #8a7872;
  --muted-2: #b8a59c;
  --line: rgba(42, 31, 31, 0.08);
  --line-strong: rgba(42, 31, 31, 0.14);

  /* Brand — rose chic */
  --brand: #b16a72;
  --brand-dark: #8a4d54;
  --brand-soft: #f4dcde;
  --brand-blush: #e8b4b8;
  --gold: #c9a574;

  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --shadow-sm: 0 2px 8px -2px rgba(42, 31, 31, 0.08);
  --shadow-md: 0 16px 40px -16px rgba(42, 31, 31, 0.18);
  --shadow-lg: 0 36px 80px -32px rgba(74, 56, 56, 0.32);
  --shadow-rose: 0 20px 60px -20px rgba(177, 106, 114, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.5, 1.5, 0.5, 1);
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* Section spacing */
.value, .offer, .process, .testi, .faq, .cta { padding: 72px 0; }
@media (min-width: 768px) { .value, .offer, .process, .testi, .faq, .cta { padding: 112px 0; } }
@media (min-width: 1024px) { .value, .offer, .process, .testi, .faq, .cta { padding: 140px 0; } }

/* ---------- Grain ---------- */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9;
  opacity: 0.04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.9'/></svg>");
}

/* ---------- Cursor halo ---------- */
.cursor-halo {
  position: fixed; top: 0; left: 0; width: 440px; height: 440px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(232, 180, 184, 0.35), transparent 65%);
  transform: translate(-50%, -50%); filter: blur(50px);
  transition: opacity 0.6s; opacity: 0;
}
@media (hover: hover) and (pointer: fine) { .cursor-halo { opacity: 1; } }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 100;
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--brand-blush), var(--brand));
  transition: width 0.1s linear;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-weight: 600; font-size: 0.95rem;
  padding: 0.78em 1.5em; border-radius: 999px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap; position: relative; overflow: hidden;
  border: 1px solid transparent;
  letter-spacing: -0.005em;
}
.btn svg { width: 1.05em; height: 1.05em; flex-shrink: 0; }
.btn--sm { padding: 0.55em 1.15em; font-size: 0.875rem; }
.btn--lg { padding: 1em 1.7em; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -20px rgba(42, 31, 31, 0.55); background: #000; }
.btn--ink::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(232,180,184,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.9s var(--ease);
}
.btn--ink:hover::after { transform: translateX(100%); }

.btn--ghost { background: rgba(42, 31, 31, 0.04); color: var(--ink); }
.btn--ghost:hover { background: rgba(42, 31, 31, 0.08); transform: translateY(-2px); }

.btn--cream { background: var(--paper); color: var(--ink); box-shadow: 0 12px 28px -14px rgba(0,0,0,0.35); }
.btn--cream:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -18px rgba(0,0,0,0.45); }

.btn--outline-cream {
  background: transparent; color: var(--paper); border-color: rgba(250,243,236,0.3);
}
.btn--outline-cream:hover { background: rgba(250,243,236,0.08); border-color: rgba(250,243,236,0.6); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  padding: 14px 0;
  transition: padding 0.3s, background 0.4s, box-shadow 0.4s;
}
.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(250, 243, 236, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 var(--line), 0 8px 24px -18px rgba(42, 31, 31, 0.18);
}
.nav__inner {
  max-width: 1240px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center;
}
@media (min-width: 768px) { .nav__inner { padding: 0 32px; } }

.brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  flex-shrink: 0;
}
.brand__mark {
  position: relative; width: 38px; height: 38px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--brand-blush) 0%, var(--brand) 100%);
  box-shadow: 0 6px 16px -4px rgba(177, 106, 114, 0.45), inset 0 1px 0 rgba(255,255,255,0.4);
  color: #fff;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.brand__mark svg { width: 20px; height: 20px; transition: transform 0.5s var(--ease); }
.brand:hover .brand__mark { transform: translateY(-1px) rotate(-3deg); box-shadow: 0 10px 22px -4px rgba(177, 106, 114, 0.55), inset 0 1px 0 rgba(255,255,255,0.5); }
.brand:hover .brand__mark svg { transform: rotate(-10deg) scale(1.08); }
.brand__word { font-weight: 900; font-size: 1.12rem; letter-spacing: -0.02em; color: var(--ink); white-space: nowrap; }
.brand__dot { color: var(--brand); }

.nav__links {
  flex: 1; display: none; align-items: center; justify-content: center; gap: 4px;
}
@media (min-width: 1024px) { .nav__links { display: flex; } }
.nav__links a {
  font-weight: 500; font-size: 0.9rem; color: var(--muted);
  padding: 8px 12px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 1px;
  background: var(--brand); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__end { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav__cta { display: none; flex-shrink: 0; white-space: nowrap; }
@media (min-width: 1024px) { .nav__cta { display: inline-flex; } }

.nav__burger {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; width: 42px; height: 42px;
  border-radius: 10px;
  transition: background 0.2s;
}
.nav__burger:hover { background: rgba(42, 31, 31, 0.05); }
.nav__burger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.2s;
}
@media (min-width: 1024px) { .nav__burger { display: none; } }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

.nav__mobile {
  position: absolute; top: calc(100% + 8px); left: 16px; right: 16px;
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px;
  background: rgba(255, 252, 247, 0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 50px -16px rgba(42, 31, 31, 0.22);
  animation: nav-mobile-in 0.3s var(--ease);
}
@keyframes nav-mobile-in {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.nav__mobile a {
  padding: 12px 14px; font-weight: 500; font-size: 0.95rem;
  color: var(--ink-2); border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.nav__mobile a:hover { background: rgba(42, 31, 31, 0.05); color: var(--ink); }
.nav__mobile .nav__mobile-cta {
  margin-top: 6px; padding: 14px 16px;
  background: var(--ink); color: var(--paper) !important; border-radius: 12px;
  font-weight: 600; text-align: center;
}
.nav__mobile .nav__mobile-cta:hover { background: var(--brand); }
.nav__mobile[hidden] { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 60px 0 90px;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 90px 0 110px; } }
@media (min-width: 1024px) { .hero { padding: 110px 0 150px; } }

.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(42, 31, 31, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 31, 31, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 78%);
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(232, 180, 184, 0.35), transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(201, 165, 116, 0.18), transparent 50%);
}
.hero__blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: 0.55;
  animation: float-blob 18s ease-in-out infinite;
}
.hero__blob--a { width: 480px; height: 480px; top: -100px; right: -120px; background: radial-gradient(circle, var(--brand-blush), transparent 70%); }
.hero__blob--b { width: 420px; height: 420px; bottom: -160px; left: -100px; background: radial-gradient(circle, #f8d4a8, transparent 70%); animation-delay: -6s; }
.hero__blob--c { width: 320px; height: 320px; top: 35%; left: 45%; background: radial-gradient(circle, var(--brand-soft), transparent 70%); animation-delay: -12s; }

@keyframes float-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 20px) scale(0.96); }
}

.hero__inner {
  position: relative; z-index: 1;
  display: grid; gap: 60px; align-items: center;
}
@media (min-width: 1024px) { .hero__inner { grid-template-columns: 1.05fr 1fr; gap: 80px; } }

.hero__copy { display: flex; flex-direction: column; gap: 30px; align-items: flex-start; }
@media (max-width: 1023px) { .hero__copy { align-items: center; text-align: center; } }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px 7px 12px; border-radius: 999px;
  background: rgba(177, 106, 114, 0.08);
  border: 1px solid rgba(177, 106, 114, 0.18);
  font-size: 0.82rem; font-weight: 600; color: var(--brand-dark);
  letter-spacing: 0.01em;
  transition: transform 0.3s, background 0.3s;
}
.pill:hover { background: rgba(177, 106, 114, 0.13); transform: translateY(-1px); }
.pill__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 0 4px rgba(177, 106, 114, 0.18);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(177, 106, 114, 0.18); }
  50% { box-shadow: 0 0 0 9px rgba(177, 106, 114, 0); }
}

.hero__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero__title .line { display: block; padding-bottom: 0.08em; }
.hero__title .word {
  display: inline-block; opacity: 0;
  transform: translateY(36px);
  animation: word-rise 1s var(--ease) forwards;
}
@keyframes word-rise {
  to { opacity: 1; transform: translateY(0); }
}

.word--hl { position: relative; color: var(--brand-dark); white-space: nowrap; padding-bottom: 0.14em; }
.word--hl .hl-stroke {
  position: absolute; left: 0; right: 0; bottom: -0.05em; width: 100%; height: 0.4em;
  color: var(--brand); stroke-dasharray: 1000; stroke-dashoffset: 1000;
  animation: stroke-draw 1.6s var(--ease) 1.6s forwards;
  overflow: visible;
}
@keyframes stroke-draw { to { stroke-dashoffset: 0; } }

.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--muted);
  max-width: 480px;
  line-height: 1.6;
  opacity: 0; animation: fade-up 0.9s var(--ease) 0.7s forwards;
}
@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  opacity: 0; animation: fade-up 0.9s var(--ease) 0.9s forwards;
}

.hero__bullets {
  display: flex; flex-wrap: wrap; gap: 14px 26px;
  font-size: 0.92rem; color: var(--muted); font-weight: 500;
  opacity: 0; animation: fade-up 0.9s var(--ease) 1.1s forwards;
}
.hero__bullets li { display: inline-flex; align-items: center; gap: 8px; }
.hero__bullets .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }

/* Hero preview */
.hero__preview {
  position: relative;
  opacity: 0; animation: fade-up 1.1s var(--ease) 0.6s forwards;
}
.preview-stack { position: relative; }
.preview-card {
  position: absolute; border-radius: var(--radius-xl);
  background: var(--paper-2); border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.preview-card--back { inset: 28px -28px -28px 28px; transform: rotate(3.5deg); opacity: 0.55; }
.preview-card--mid { inset: 16px -14px -14px 16px; transform: rotate(1.8deg); opacity: 0.8; }

.browser {
  position: relative; z-index: 2;
  background: #fff; border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-4deg) rotateX(3deg);
  transition: transform 0.7s var(--ease);
}
.browser:hover { transform: perspective(1400px) rotateY(0deg) rotateX(0deg); }

.browser__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 13px 18px; background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.browser__dot { width: 11px; height: 11px; border-radius: 50%; background: #d4c8be; }
.browser__dot:nth-child(1) { background: #e8b4b8; }
.browser__dot:nth-child(2) { background: #f8d4a8; }
.browser__dot:nth-child(3) { background: #c9d4a5; }
.browser__url {
  flex: 1; margin: 0 14px;
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border-radius: 999px;
  padding: 6px 14px; border: 1px solid var(--line);
  font-size: 0.78rem; color: var(--muted);
  justify-content: center;
}
.browser__url svg { width: 12px; height: 12px; color: var(--brand); }
.browser__url-text { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; font-size: 0.86rem; transition: opacity 0.3s; }

.browser__stage {
  position: relative;
  height: 340px;
  background: linear-gradient(180deg, #fff, var(--paper));
  overflow: hidden;
}
@media (min-width: 1024px) { .browser__stage { height: 400px; } }

.mock {
  position: absolute; inset: 0;
  padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
  opacity: 0; transform: translateY(20px) scale(0.97);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  pointer-events: none;
}
.mock--active { opacity: 1; transform: translateY(0) scale(1); }

.mock__hero { display: flex; gap: 18px; height: 52%; }
.mock__copy { flex: 1; display: flex; flex-direction: column; gap: 9px; justify-content: center; }
.mock__visual {
  width: 42%; border-radius: 14px;
  position: relative; overflow: hidden;
}
.mock__visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: translateX(-100%); animation: shimmer 3.5s ease-in-out infinite;
}
@keyframes shimmer { 50%, 100% { transform: translateX(100%); } }
.mock__visual--a { background: linear-gradient(135deg, #f4dcde 0%, #e8b4b8 100%); }
.mock__visual--b { background: linear-gradient(135deg, #c9a574 0%, #8a4d54 100%); }
.mock__visual--c { background: linear-gradient(135deg, #ede0d2 0%, #c9a574 100%); }
.mock__visual--d { background: linear-gradient(135deg, #faf3ec 0%, #f4dcde 100%); }

.mock__row { display: grid; gap: 10px; flex: 1; }
.mock__row--2 { grid-template-columns: 1fr 1fr; }
.mock__row--3 { grid-template-columns: repeat(3, 1fr); }
.mock__row--4 { grid-template-columns: repeat(4, 1fr); }

.mock__split { display: flex; gap: 18px; height: 100%; }
.mock__split > .m-block { width: 44%; height: 100%; }
.mock__split-col { flex: 1; display: flex; flex-direction: column; gap: 9px; justify-content: center; }

.m-eyebrow { display: block; height: 6px; width: 28%; border-radius: 3px; background: var(--brand); opacity: 0.6; }
.m-title { display: block; height: 14px; width: 60%; border-radius: 5px; background: var(--ink); opacity: 0.85; }
.m-line { display: block; height: 7px; border-radius: 4px; background: #e5d8cd; }
.w-40 { width: 40%; } .w-50 { width: 50%; } .w-60 { width: 60%; } .w-70 { width: 70%; } .w-80 { width: 80%; }
.m-btn { display: block; margin-top: 8px; height: 26px; width: 130px; border-radius: 999px; background: var(--brand); }
.m-block { border-radius: 14px; }
.m-block--tall { height: 100%; }
.m-tile {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 10px; display: flex; flex-direction: column; gap: 8px; align-items: center;
}
.m-tile--alt { align-items: flex-start; padding: 14px; }
.m-circle { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-blush), var(--brand)); }
.m-square { border-radius: 10px; min-height: 50px; background: linear-gradient(135deg, var(--brand-soft), var(--brand-blush)); }

.stage-indicator {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 4px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(8px);
  padding: 5px 6px; border-radius: 999px;
  border: 1px solid var(--line);
}
.stage-indicator span {
  font-size: 0.68rem; font-weight: 600; color: var(--muted);
  padding: 4px 11px; border-radius: 999px;
  transition: background 0.5s, color 0.5s;
}
.stage-indicator span.is-active { background: var(--ink); color: var(--paper); }

/* Floating tags */
.float-tag {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; padding: 13px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  animation: float-y 5s ease-in-out infinite;
}
.float-tag--reserved { top: -22px; left: -36px; }
.float-tag--time { bottom: -22px; right: -20px; animation-delay: -2.5s; }
.float-tag svg { width: 22px; height: 22px; color: var(--brand); }
.float-tag__icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--brand-soft); color: var(--brand-dark);
  display: inline-flex; align-items: center; justify-content: center;
}
.float-tag__icon svg { width: 20px; height: 20px; color: inherit; }
.float-tag__num { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.05rem; line-height: 1; color: var(--ink); letter-spacing: -0.01em; }
.float-tag__num span { font-size: 0.75rem; color: var(--muted); font-weight: 600; margin-left: 1px; }
.float-tag__lbl { font-size: 0.72rem; color: var(--muted); font-weight: 500; margin-top: 3px; }

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* Trust strip */
.trust {
  margin-top: 90px; padding: 28px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: grid; gap: 18px; align-items: center;
}
@media (min-width: 768px) { .trust { grid-template-columns: auto 1fr; gap: 40px; } }
.trust__label {
  font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400;
  font-size: 1.1rem; color: var(--muted);
}
.trust__marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.trust__track {
  display: inline-flex; gap: 28px; white-space: nowrap;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1.15rem;
  color: var(--ink-2);
  animation: marquee 38s linear infinite;
}
.trust__track .dotsep { color: var(--brand); font-size: 0.8rem; font-style: normal; opacity: 0.7; align-self: center; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Section heads ---------- */
.section-head { text-align: center; max-width: 780px; margin: 0 auto 56px; }
@media (min-width: 768px) { .section-head { margin: 0 auto 72px; } }
.eyebrow {
  display: inline-block; padding: 6px 14px; margin-bottom: 22px;
  border-radius: 999px;
  background: var(--brand-soft); color: var(--brand-dark);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
}
.eyebrow--light { background: rgba(244,220,222,0.18); color: var(--brand-blush); }
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
  color: var(--ink);
}

/* ---------- Value cards (Bento) ---------- */
.value { background: var(--paper); position: relative; }
.value__bento {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .value__bento {
    grid-template-columns: 1.4fr 1fr;
    grid-auto-rows: minmax(auto, auto);
  }
  .vcard--feature { grid-row: span 2; }
  .vcard--keep { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .value__bento {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .vcard--feature { grid-row: span 2; grid-column: 1 / 2; }
  .vcard--mini:nth-of-type(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
  .vcard--mini:nth-of-type(3) { grid-column: 3 / 4; grid-row: 1 / 2; }
  .vcard--keep { grid-column: 2 / -1; grid-row: 2 / 3; }
}

.vcard {
  position: relative;
  background: #fff; border: 1px solid var(--line);
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.3s;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.vcard::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(177, 106, 114, 0.08), transparent 50%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.vcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--brand-soft); }
.vcard:hover::before { opacity: 1; }
.vcard__num {
  font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400;
  font-size: 2.4rem; line-height: 1;
  color: var(--brand);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  transition: transform 0.5s var(--ease);
}
.vcard:hover .vcard__num { transform: translateY(-4px) rotate(-4deg); }
.vcard h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.015em; line-height: 1.3; }
.vcard p { color: var(--muted); font-size: 0.92rem; line-height: 1.55; }

/* Feature card — large hero card with abstract beauty composition */
.vcard--feature {
  padding: 36px 32px;
  background: linear-gradient(170deg, #fff 0%, var(--paper-2) 100%);
  min-height: 380px;
  position: relative;
}
.vcard--feature .vcard__body { margin-top: auto; position: relative; z-index: 2; }
.vcard--feature .vcard__tag {
  display: inline-block; padding: 4px 12px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  font-size: 0.78rem; color: var(--muted);
  margin-bottom: 18px;
}
.vcard--feature h3 {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 12px;
  max-width: 460px;
}
.vcard--feature p { font-size: 0.98rem; line-height: 1.6; max-width: 440px; }

.vcard__art {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}
.vcard__shape {
  position: absolute; border-radius: 50%;
  filter: blur(1px);
  transition: transform 1s var(--ease);
}
.vcard__shape--a {
  width: 220px; height: 220px; top: -60px; right: -60px;
  background: radial-gradient(circle at 30% 30%, var(--brand-blush), var(--brand) 70%);
  opacity: 0.85;
}
.vcard__shape--b {
  width: 130px; height: 130px; top: 80px; right: 90px;
  background: radial-gradient(circle at 40% 30%, #f8e0c8, var(--gold) 80%);
  opacity: 0.7;
}
.vcard__shape--c {
  width: 90px; height: 90px; top: 40px; right: -10px;
  background: radial-gradient(circle, #fff, var(--brand-soft));
  opacity: 0.9;
  filter: blur(0px);
}
.vcard--feature:hover .vcard__shape--a { transform: translate(-12px, 14px) scale(1.06); }
.vcard--feature:hover .vcard__shape--b { transform: translate(8px, -10px) scale(1.1); }
.vcard--feature:hover .vcard__shape--c { transform: translate(-4px, 8px); }

/* Mini cards — compact */
.vcard--mini { padding: 26px 24px; min-height: 0; }
.vcard--mini .vcard__num { font-size: 2rem; margin-bottom: 14px; }
.vcard--mini h3 { font-size: 1.02rem; }
.vcard--mini p { font-size: 0.88rem; }

/* Keep card — rose accent with reassurance message */
.vcard--keep {
  background: linear-gradient(160deg, var(--ink) 0%, #3a2828 100%);
  color: var(--paper);
  border-color: transparent;
  padding: 32px 32px;
  flex-direction: row; align-items: flex-start; gap: 22px;
  position: relative;
}
.vcard--keep::after {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 106, 114, 0.45), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.vcard--keep:hover { transform: translateY(-4px); box-shadow: var(--shadow-rose); border-color: transparent; }
.vcard__keep-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(232, 180, 184, 0.18); color: var(--brand-blush);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
}
.vcard__keep-icon svg { width: 22px; height: 22px; }
.vcard__keep-body { position: relative; z-index: 1; flex: 1; }
.vcard--keep h3 {
  color: #fff; font-size: clamp(1.05rem, 1.6vw, 1.25rem); margin-bottom: 8px;
  line-height: 1.3;
}
.vcard--keep h3 em.serif { color: var(--brand-blush); }
.vcard--keep p { color: rgba(255, 255, 255, 0.75); font-size: 0.92rem; line-height: 1.55; margin-bottom: 16px; max-width: 540px; }
.vcard__keep-pills {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.vcard__keep-pills span {
  font-size: 0.74rem; font-weight: 500;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}
@media (max-width: 559px) {
  .vcard--keep { flex-direction: column; gap: 16px; padding: 26px 24px; }
}

/* ---------- Offer ---------- */
.offer { background: var(--paper-2); position: relative; overflow: hidden; }
.offer::before {
  content: ""; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--brand-soft), transparent 70%);
  filter: blur(60px); opacity: 0.6;
  pointer-events: none;
}
.offer__grid {
  position: relative;
  display: grid; gap: 24px; align-items: stretch;
  max-width: 1080px; margin: 0 auto;
}
@media (min-width: 900px) { .offer__grid { grid-template-columns: 1fr 1fr; gap: 28px; } }

.offer__card {
  border-radius: var(--radius-xl);
  padding: 44px;
  position: relative; overflow: hidden;
}
.offer__card--features {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.offer__h { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.3rem; margin-bottom: 26px; color: var(--ink); letter-spacing: -0.015em; }
.checklist { display: flex; flex-direction: column; gap: 15px; }
.checklist li {
  display: flex; align-items: center; gap: 14px;
  font-size: 1rem; color: var(--ink-2);
}
.check {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%; background: var(--brand-soft);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
}
.check::after {
  content: ""; width: 9px; height: 5px; border-left: 1.8px solid var(--brand-dark); border-bottom: 1.8px solid var(--brand-dark);
  transform: rotate(-45deg) translate(1px, -1px);
}

.offer__card--price {
  background: linear-gradient(160deg, #1e1715 0%, #3a2828 100%);
  color: var(--paper);
  display: flex; flex-direction: column; gap: 20px;
}
.offer__card--price::before {
  content: ""; position: absolute; top: -120px; right: -120px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 106, 114, 0.55), transparent 70%);
  filter: blur(40px);
  animation: float-blob 12s ease-in-out infinite;
}
.offer__sticker {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(232, 180, 184, 0.18); color: var(--brand-blush);
  border: 1px solid rgba(232, 180, 184, 0.35);
  padding: 6px 14px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
  position: relative; z-index: 1;
}
.offer__sticker span:first-child { color: var(--gold); }
.offer__crossed { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 12px; color: rgba(250,243,236,0.55); }
.strike { text-decoration: line-through; font-size: 1.3rem; font-family: 'Outfit', sans-serif; font-weight: 600; }
.offer__crossed-lbl { font-size: 0.85rem; }
.offer__price { position: relative; z-index: 1; display: flex; align-items: flex-start; gap: 6px; line-height: 0.9; }
.offer__currency { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 2rem; margin-top: 8px; color: var(--brand-blush); }
.offer__amount { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: clamp(4rem, 8vw, 6rem); letter-spacing: -0.04em; }
.offer__period { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1.2rem; color: rgba(250,243,236,0.6); margin-top: auto; margin-bottom: 14px; }
.offer__note { position: relative; z-index: 1; color: rgba(250,243,236,0.7); font-size: 0.95rem; }
.offer__card--price .btn { position: relative; z-index: 1; }
.offer__guard {
  position: relative; z-index: 1;
  display: flex; align-items: flex-start; gap: 14px;
  padding-top: 22px; border-top: 1px solid rgba(250,243,236,0.1);
  margin-top: 8px;
}
.offer__guard svg { width: 24px; height: 24px; color: var(--brand-blush); flex-shrink: 0; margin-top: 2px; }
.offer__guard strong { color: var(--paper); display: block; font-size: 0.98rem; margin-bottom: 3px; }
.offer__guard span { color: rgba(250,243,236,0.7); font-size: 0.86rem; line-height: 1.5; }

/* ---------- Process ---------- */
.process { background: var(--paper); }
.process__steps {
  position: relative;
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .process__steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .process__steps { grid-template-columns: repeat(4, 1fr); } }

.process__line {
  display: none;
  position: absolute; top: 56px; left: 12.5%; right: 12.5%;
  height: 2px; background: var(--line);
  z-index: 0; overflow: hidden; border-radius: 2px;
}
.process__line span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--brand-blush), var(--brand), var(--brand-dark));
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.6s var(--ease);
}
.process.is-revealed .process__line span { transform: scaleX(1); }
@media (min-width: 900px) { .process__line { display: block; } }

.step {
  position: relative; z-index: 1;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 26px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.3s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-soft); }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--ink); color: var(--paper);
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.05rem;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s;
}
.step:hover .step__num { background: var(--brand); color: #fff; transform: rotate(-6deg) scale(1.05); }
.step h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.015em; line-height: 1.3; }
.step p { color: var(--muted); font-size: 0.93rem; line-height: 1.55; }

.step--final {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--paper);
  box-shadow: var(--shadow-rose);
  border-color: transparent;
}
.step--final:hover { transform: translateY(-4px); box-shadow: 0 30px 80px -28px rgba(177, 106, 114, 0.5); }
.step--final .step__num { background: #fff; color: var(--brand); }
.step--final:hover .step__num { background: #fff; color: var(--brand); box-shadow: 0 0 0 5px rgba(255,255,255,0.22), 0 10px 24px -8px rgba(255,255,255,0.35); transform: rotate(-6deg) scale(1.05); }
.step--final h3 { color: #fff; }
.step--final p { color: rgba(255, 255, 255, 0.85); }

/* ---------- Stats ---------- */
.stats {
  background: var(--ink);
  padding: 72px 0;
}
@media (min-width: 768px) { .stats { padding: 96px 0; } }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

.stat {
  padding: 44px 32px;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(250,243,236,0.07);
}
.stat:last-child { border-right: none; }
.stat:nth-child(2) { border-right: none; }
@media (min-width: 768px) { .stat:nth-child(2) { border-right: 1px solid rgba(250,243,236,0.07); } }
.stat:nth-child(1), .stat:nth-child(2) {
  border-bottom: 1px solid rgba(250,243,236,0.07);
}
@media (min-width: 768px) { .stat { border-bottom: none !important; } }

.stat__num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--paper);
  margin-bottom: 12px;
  transition: transform 0.4s var(--ease);
}
.stat:hover .stat__num { transform: translateY(-4px); }
.stat__num span {
  font-size: 0.5em;
  color: var(--brand-blush);
  font-weight: 700;
  vertical-align: super;
  margin-left: 3px;
  letter-spacing: 0;
}
.stat__lbl {
  font-size: 0.88rem;
  color: rgba(250,243,236,0.5);
  font-weight: 500;
}

/* ---------- Testimonials ---------- */
.testi { background: var(--paper-2); position: relative; overflow: hidden; }
.testi__grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
@media (min-width: 640px) and (max-width: 959px) {
  .testi__grid { grid-template-columns: 1fr 1fr; }
  .testi__grid > :nth-child(3) {
    grid-column: 1 / -1;
    max-width: calc(50% - 12px);
    margin: 0 auto;
  }
}
.quote {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  position: relative;
}
.quote::before {
  content: "\201C";
  position: absolute; top: 6px; right: 20px;
  font-family: 'Outfit', sans-serif; font-size: 5rem; line-height: 1;
  color: var(--brand-soft);
  font-weight: 600;
  pointer-events: none;
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote--accent {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--paper); border-color: transparent;
  box-shadow: var(--shadow-rose);
  padding: 36px 30px 32px;
  overflow: hidden;
}
.quote--accent::before { display: none; }
.quote--accent blockquote {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -0.005em;
}
.quote--accent blockquote em.serif { color: var(--brand-blush); font-style: italic; font-weight: 400; }
.quote--accent blockquote strong,
.quote--accent strong { color: #fff !important; font-family: 'Outfit', sans-serif; font-weight: 700; font-style: normal; font-size: 0.94em; letter-spacing: -0.01em; }
.quote--accent figcaption strong { color: #fff; font-family: 'Outfit', sans-serif; font-size: 0.95rem; }
.quote--accent figcaption span { color: #fff !important; }
.quote--accent .quote__stars { color: var(--brand-blush); font-size: 1.1rem; letter-spacing: 0.12em; }

/* Sparkle decorations */
.quote__sparkle {
  position: absolute;
  font-family: 'Instrument Serif', serif;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.4rem;
  pointer-events: none;
  animation: sparkle-pulse 3.5s ease-in-out infinite;
}
.quote__sparkle--tl { top: 18px; left: 22px; }
.quote__sparkle--br { bottom: 22px; right: 24px; animation-delay: -1.7s; }
@keyframes sparkle-pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.9) rotate(0deg); }
  50% { opacity: 0.8; transform: scale(1.1) rotate(15deg); }
}

/* Badge "coup de cœur" */
.quote__badge {
  position: absolute; top: 16px; right: 24px;
  font-size: 0.78rem; color: var(--brand-blush);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 12px; border-radius: 999px;
  letter-spacing: 0.02em;
  z-index: 2;
}
.quote__badge em.serif { color: inherit; font-size: 0.9rem; }

.quote__stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 0.1em; }

blockquote { font-size: 1.05rem; line-height: 1.65; color: var(--ink-2); font-weight: 500; }
.quote--accent blockquote { color: var(--paper); }

.quote figcaption { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-family: 'Outfit', sans-serif;
  flex-shrink: 0;
}
.quote figcaption > div { display: flex; flex-direction: column; }
.quote figcaption strong { font-size: 0.95rem; font-weight: 600; }
.quote figcaption span { color: var(--muted); font-size: 0.85rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.qa {
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 6px 26px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.qa[open] { border-color: var(--brand-soft); box-shadow: var(--shadow-sm); }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  cursor: pointer; padding: 18px 0;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1.05rem;
  color: var(--ink); list-style: none;
}
.qa summary::-webkit-details-marker { display: none; }
.qa__icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--paper-3); flex-shrink: 0;
  position: relative;
  transition: background 0.3s, transform 0.4s var(--ease);
}
.qa__icon::before, .qa__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 10px; height: 1.8px; background: var(--ink-2);
  transform: translate(-50%, -50%);
  transition: transform 0.3s, background 0.3s;
}
.qa__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.qa[open] .qa__icon { background: var(--brand); transform: rotate(180deg); }
.qa[open] .qa__icon::before, .qa[open] .qa__icon::after { background: #fff; }
.qa[open] .qa__icon::after { transform: translate(-50%, -50%) rotate(0); }

.qa__body { padding-bottom: 22px; color: var(--muted); line-height: 1.7; animation: qa-in 0.4s var(--ease); }
@keyframes qa-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- CTA ---------- */
.cta { background: var(--paper); }
.cta__card {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #1e1715 0%, #3a2828 100%);
  color: var(--paper);
  border-radius: var(--radius-xl);
  padding: 70px 32px;
}
@media (min-width: 768px) { .cta__card { padding: 90px 60px; } }

.cta__bg { position: absolute; inset: 0; pointer-events: none; }
.cta__glow {
  position: absolute; top: -200px; right: -100px; width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 106, 114, 0.55), transparent 60%);
  filter: blur(70px);
  animation: float-blob 14s ease-in-out infinite;
}
.cta__pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(250,243,236,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,243,236,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 70%);
}
.cta__content { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; }
.cta__title {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.05;
  letter-spacing: -0.03em; color: var(--paper); margin: 16px 0;
  max-width: 800px;
}
.cta__title em.serif { color: var(--brand-blush); }
.cta__sub { color: rgba(250,243,236,0.7); font-size: 1.1rem; margin-bottom: 36px; max-width: 560px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; justify-content: center; }
.cta__cal {
  background: transparent; border-radius: var(--radius);
  overflow: visible;
  min-height: 720px;
  width: 100%;
  align-self: stretch;
}
.cta__cal iframe { display: block; width: 100% !important; border-radius: var(--radius); }
@media (max-width: 767px) { .cta__cal { min-height: 640px; } }

/* ---------- Footer ---------- */
.footer {
  background: #1e1715; color: var(--paper); padding: 80px 0 32px;
}
.footer__grid {
  display: grid; gap: 40px;
  grid-template-columns: 2fr 1fr 1fr;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; text-align: left; }
  .footer__brand { grid-column: 1 / -1; max-width: 100%; }
}
@media (max-width: 479px) {
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand { text-align: center; }
  .footer__brand .brand { justify-content: center; }
}
.footer__brand { max-width: 360px; }
.footer__brand .brand { margin-bottom: 18px; }
.brand--light .brand__word { color: var(--paper); }
.brand--light .brand__dot { color: var(--brand-blush); }
.footer__brand p { color: rgba(250,243,236,0.55); font-size: 0.95rem; }
.footer h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--paper); margin-bottom: 18px; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul li, .footer ul a {
  color: rgba(250,243,236,0.55); font-size: 0.92rem;
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--brand-blush); }

.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(250,243,236,0.08);
  display: flex; flex-direction: column; gap: 16px;
  justify-content: space-between; align-items: center;
}
@media (min-width: 768px) { .footer__bottom { flex-direction: row; } }
@media (max-width: 767px) { .footer__bottom { text-align: center; } }
.footer__bottom p { color: rgba(250,243,236,0.4); font-size: 0.85rem; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 16px 24px; justify-content: center; }
.footer__legal a { color: rgba(250,243,236,0.55); font-size: 0.85rem; transition: color 0.2s; }
.footer__legal a:hover { color: var(--brand-blush); }

/* ---------- Offer features (left card, refined) ---------- */
.offer__feat-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--brand-dark);
  padding: 6px 14px 6px 12px; border-radius: 999px;
  background: rgba(177, 106, 114, 0.08);
  border: 1px solid rgba(177, 106, 114, 0.16);
  margin-bottom: 20px;
}
.offer__feat-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 0 4px rgba(177, 106, 114, 0.16);
}
.feat-list { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.feat {
  display: flex; align-items: flex-start; gap: 15px;
  padding: 12px; border-radius: 14px;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.feat:hover { background: var(--paper); transform: translateX(5px); }
.feat__ic {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-soft); color: var(--brand-dark);
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s;
}
.feat__ic svg { width: 20px; height: 20px; }
.feat:hover .feat__ic { background: var(--brand); color: #fff; transform: rotate(-5deg) scale(1.06); }
.feat__txt { display: flex; flex-direction: column; gap: 2px; padding-top: 1px; }
.feat__txt strong { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.98rem; color: var(--ink); letter-spacing: -0.01em; }
.feat__txt span { font-size: 0.85rem; color: var(--muted); line-height: 1.45; }

/* ---------- Testimonials : rating summary + verified ---------- */
.testi__summary {
  width: max-content; max-width: 100%;
  margin: -16px auto 52px;
  display: flex; align-items: center; gap: 18px;
  padding: 16px 26px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 22px; box-shadow: var(--shadow-md);
}
.testi__score {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: 2.6rem; line-height: 1; color: var(--ink);
  letter-spacing: -0.04em;
}
.testi__score span { font-size: 1rem; color: var(--muted); font-weight: 600; letter-spacing: 0; }
.testi__summary-meta { display: flex; flex-direction: column; gap: 3px; text-align: left; }
.testi__summary .testi__stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.14em; }
.testi__count { font-size: 0.82rem; color: var(--muted); font-weight: 500; }

.verified {
  display: inline-flex; align-items: center; justify-content: center;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--brand); color: #fff;
  margin-left: 5px; vertical-align: middle;
  box-shadow: 0 2px 6px -1px rgba(177, 106, 114, 0.5);
}
.verified svg { width: 9px; height: 9px; }
.quote--accent .verified { background: #fff; color: var(--brand-dark); box-shadow: none; }

/* ---------- Trustpilot bar ---------- */
.trustpilot-bar {
  width: max-content; max-width: 100%;
  margin: -8px auto 52px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center;
  padding: 14px 22px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.trustpilot-bar:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.trustpilot-bar__brand {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; color: var(--ink);
  letter-spacing: -0.01em;
}
.tp-star { color: #00b67a; font-size: 1.15rem; line-height: 1; }
.trustpilot-bar__stars { display: inline-flex; gap: 3px; }
.trustpilot-bar__stars span {
  width: 22px; height: 22px; background: #00b67a;
  border-radius: 3px; position: relative;
}
.trustpilot-bar__stars span::after {
  content: "★"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; line-height: 1;
}
.trustpilot-bar__label {
  display: flex; flex-direction: column; line-height: 1.3; text-align: left;
}
.trustpilot-bar__label strong { font-size: 0.95rem; color: var(--ink); font-weight: 700; }
.trustpilot-bar__label { font-size: 0.82rem; color: var(--muted); }
@media (max-width: 520px) {
  .trustpilot-bar { gap: 10px 14px; padding: 14px 18px; }
  .trustpilot-bar__label { text-align: center; flex-basis: 100%; align-items: center; }
}

.testi__grid--two {
  max-width: 760px; margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 639px) { .testi__grid--two { grid-template-columns: 1fr; } }

/* ---------- Projets livrés (under construction) ---------- */
.works { background: var(--paper); position: relative; overflow: hidden; padding: 72px 0; }
@media (min-width: 768px) { .works { padding: 112px 0; } }
@media (min-width: 1024px) { .works { padding: 140px 0; } }

.works__stage {
  position: relative;
  max-width: 1040px; margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.works__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding: 20px;
  filter: blur(3px);
  transform: scale(1.02);
}
@media (max-width: 700px) { .works__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .works__grid { grid-template-columns: 1fr; } }

.work-card {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.work-card:nth-child(1) { background: linear-gradient(140deg, #f4dcde, #e8b4b8); }
.work-card:nth-child(2) { background: linear-gradient(140deg, #c9a574, #8a4d54); }
.work-card:nth-child(3) { background: linear-gradient(140deg, #ede0d2, #c9a574); }
@media (max-width: 420px) { .work-card:nth-child(3) { display: none; } }
.work-card__shine {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shimmer 3.8s ease-in-out infinite;
}
.work-card:nth-child(2) .work-card__shine { animation-delay: -1.3s; }
.work-card:nth-child(3) .work-card__shine { animation-delay: -2.6s; }

.works__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 16px; padding: 40px 28px;
  background: linear-gradient(180deg, rgba(250,243,236,0.62) 0%, rgba(250,243,236,0.86) 100%);
  -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px);
}
.works__badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(177, 106, 114, 0.1);
  border: 1px solid rgba(177, 106, 114, 0.22);
  color: var(--brand-dark); font-weight: 600; font-size: 0.84rem;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.works__badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 0 0 rgba(177, 106, 114, 0.5);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.works__overlay h3 {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem); line-height: 1.1;
  letter-spacing: -0.025em; color: var(--ink);
}
.works__overlay h3 em.serif { color: var(--brand); }
.works__overlay p {
  color: var(--muted); font-size: 0.98rem; line-height: 1.6;
  max-width: 440px;
}
.works__overlay .btn { margin-top: 6px; }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(38px) scale(0.984);
  filter: blur(8px);
  transition: opacity 0.9s var(--ease), transform 1.05s var(--ease), filter 0.9s var(--ease);
  will-change: transform, opacity, filter;
}
[data-reveal].is-revealed { opacity: 1; transform: none; filter: blur(0); }

.value__bento > [data-reveal]:nth-child(1) { transition-delay: 0s; }
.value__bento > [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.value__bento > [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.value__bento > [data-reveal]:nth-child(4) { transition-delay: 0.24s; }
.process__steps > [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.process__steps > [data-reveal]:nth-child(3) { transition-delay: 0.2s; }
.process__steps > [data-reveal]:nth-child(4) { transition-delay: 0.3s; }
.testi__grid > [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.testi__grid > [data-reveal]:nth-child(3) { transition-delay: 0.2s; }
.faq__list > [data-reveal]:nth-child(n+2) { transition-delay: 0.05s; }

/* Hero word stagger */
.hero__title .line:nth-child(1) .word:nth-child(1) { animation-delay: 0.15s; }
.hero__title .line:nth-child(1) .word:nth-child(2) { animation-delay: 0.28s; }
.hero__title .line:nth-child(2) .word:nth-child(1) { animation-delay: 0.42s; }
.hero__title .line:nth-child(2) .word:nth-child(2) { animation-delay: 0.56s; }
.hero__title .line:nth-child(3) .word:nth-child(1) { animation-delay: 0.7s; }
.hero__title .line:nth-child(3) .word:nth-child(2) { animation-delay: 0.82s; }
.hero__title .line:nth-child(3) .word:nth-child(3) { animation-delay: 0.94s; }

.pill--reveal { opacity: 0; animation: fade-up 0.8s var(--ease) 0.4s forwards; }

/* ================================================================
   MOBILE / RESPONSIVE
   ================================================================ */
@media (max-width: 479px) {
  .float-tag { display: none; }
  .preview-card--back, .preview-card--mid { display: none; }
  .hero__ctas { flex-direction: column; width: 100%; align-items: stretch; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__bullets { justify-content: center; gap: 10px 18px; }
  .hero__title { font-size: clamp(2.2rem, 9vw, 2.8rem); }
  .pill { font-size: 0.78rem; }
}
@media (min-width: 480px) and (max-width: 1023px) {
  .float-tag--reserved { left: 4px; top: -16px; padding: 11px 14px; }
  .float-tag--time { right: 4px; bottom: -16px; padding: 11px 14px; }
  .float-tag__num { font-size: 0.95rem; }
}
@media (max-width: 1023px) {
  .hero__sub { font-size: 1.05rem; max-width: 100%; }
  .hero__preview { max-width: 580px; margin: 0 auto; width: 100%; }
  .hero { padding: 56px 0 100px; }
  .browser { transform: none; }
}

@media (max-width: 767px) {
  .trust { margin-top: 64px; text-align: center; }
  .trust__label { text-align: center; }
  .section-head { margin-bottom: 44px; }
}

@media (max-width: 639px) {
  .section-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
}

@media (max-width: 899px) {
  .offer__card { padding: 32px 26px; }
  .offer__amount { font-size: clamp(3.8rem, 14vw, 5.4rem); }
}
@media (max-width: 639px) {
  .offer__grid { max-width: 460px; margin: 0 auto; }
  .offer__card--features { order: 2; }
  .offer__card--price { order: 1; align-items: center; text-align: center; }
  .offer__card--price .offer__sticker { align-self: center; }
  .offer__card--price .offer__crossed { justify-content: center; }
  .offer__card--price .offer__price { justify-content: center; align-self: center; }
  .offer__card--price .offer__guard { text-align: left; }
}
@media (min-width: 640px) and (max-width: 899px) {
  .offer__grid { grid-template-columns: 1fr; max-width: 520px; }
  .offer__card--price { align-items: center; text-align: center; }
  .offer__card--price .offer__sticker { align-self: center; }
  .offer__card--price .offer__crossed { justify-content: center; }
  .offer__card--price .offer__price { justify-content: center; align-self: center; }
  .offer__card--price .offer__guard { text-align: left; }
}

@media (max-width: 639px) {
  .testi__grid { grid-template-columns: 1fr; }
  .quote { padding: 26px; }
}

@media (max-width: 767px) {
  .cta__card { padding: 56px 28px; text-align: center; }
}
@media (max-width: 559px) {
  .cta__card { padding: 44px 22px; }
  .cta__actions { flex-direction: column; width: 100%; }
  .cta__actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 479px) {
  .browser__stage { height: 260px; }
  .browser__url { font-size: 0.72rem; }
}

@media (max-width: 559px) {
  .qa { padding: 4px 22px; }
  .qa summary { font-size: 1rem; padding: 18px 0; gap: 16px; }
}

/* ---------- Hero floating sparkles ---------- */
.spark {
  position: absolute;
  pointer-events: none;
  color: var(--brand-blush);
  font-family: 'Instrument Serif', serif;
  line-height: 1;
  opacity: 0;
  text-shadow: 0 0 10px rgba(232, 180, 184, 0.6);
  animation: spark-rise linear infinite;
  will-change: transform, opacity;
}
@keyframes spark-rise {
  0%   { opacity: 0; transform: translateY(30px) scale(0.5) rotate(0deg); }
  12%  { opacity: 0.85; }
  50%  { opacity: 0.55; }
  80%  { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(-150px) scale(1.05) rotate(45deg); }
}

/* Animated serif accent — soft gradient sweep on reveal */
.section-title em.serif {
  background: linear-gradient(100deg, var(--brand-dark) 0%, var(--brand) 45%, var(--gold) 70%, var(--brand) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-position: 100% 0;
}
.section-head.is-revealed .section-title em.serif {
  animation: serif-sweep 2.4s var(--ease) 0.3s forwards;
}
@keyframes serif-sweep {
  from { background-position: 100% 0; }
  to   { background-position: 0 0; }
}

/* ---------- Usability : focus & tap feedback ---------- */
a, button, summary, .btn, details summary { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 2.5px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible { outline-offset: 4px; }
.nav__links a:focus-visible, .footer a:focus-visible { outline-offset: 2px; }

/* Tap / press feedback */
.btn:active { transform: translateY(0) scale(0.97); transition-duration: 0.1s; }
.qa summary:active { opacity: 0.7; }
@media (hover: none) {
  .vcard:active, .step:active, .quote:active { transform: translateY(-2px); }
}

/* ---------- Sticky mobile action bar ---------- */
.mobile-cta {
  position: fixed;
  left: 14px; right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 80;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 9px;
  background: rgba(250, 243, 236, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  box-shadow: 0 14px 40px -12px rgba(42, 31, 31, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: translateY(160%);
  transition: transform 0.55s var(--ease);
}
.mobile-cta.is-visible { transform: translateY(0); }
@media (max-width: 1023px) { .mobile-cta { display: flex; } }

.mobile-cta__call {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(177, 106, 114, 0.12);
  color: var(--brand-dark);
  transition: background 0.25s, transform 0.25s;
}
.mobile-cta__call:active { transform: scale(0.92); background: rgba(177, 106, 114, 0.2); }
.mobile-cta__call svg { width: 22px; height: 22px; }
.mobile-cta__book {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px;
  border-radius: 999px;
  background: var(--ink); color: var(--paper);
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 1rem;
  letter-spacing: -0.01em;
  transition: transform 0.25s, background 0.25s;
}
.mobile-cta__book svg { width: 1.05em; height: 1.05em; }
.mobile-cta__book:active { transform: scale(0.98); background: #000; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__title .word { opacity: 1; transform: none; }
  [data-reveal] { opacity: 1; transform: none; filter: none; }
  .cursor-halo { display: none; }
  .spark { display: none; }
  .section-title em.serif {
    -webkit-text-fill-color: var(--brand-dark);
    background: none;
  }
}
