/* =================================================================
   LES AILES DU BIEN-ÊTRE — Muriel Pujalte · Sophrologue Crohn
   Direction : éditorial mauve-violet-rose framboise, métaphore métamorphose
   Palette : violet profond + mauve + rose framboise + turquoise + crème
   ================================================================= */

:root {
  /* Sombres */
  --ink:        #2D1F3D;     /* violet anthracite — texte principal */
  --night:      #3D2D52;     /* violet nuit */
  --dusk:       #6B5F80;     /* violet grisé pour texte secondaire */
  --moss:       #4A3D60;     /* violet mousse intermediate */

  /* Couleurs Muriel (palette extraite du logo papillon "Les ailes du bien-être") */
  --violet:     #7B3F99;     /* violet profond — accent principal (couleur du texte logo) */
  --violet-soft:#B89DC9;     /* violet pâle */
  --mauve:      #9D6FB5;     /* mauve lavande */
  --rose:       #C8459C;     /* rose framboise — accent émotionnel (em du H1) */
  --rose-soft:  #E8B5D5;     /* rose pâle */
  --turq:       #4FB8C9;     /* turquoise — sérénité */
  --turq-soft:  #B8DEE5;     /* turquoise pâle */
  --green:      #8BC34A;     /* vert tendre — subtle, renaissance */

  /* Lumineux */
  --mist:       #F5EFFA;     /* violet très pâle */
  --cream:      #FBF7FC;     /* crème rose-violet */
  --star:       #FFFFFF;     /* blanc pur */
  --accent:     #7B3F99;     /* alias violet */
  --wa-green:   #25D366;

  /* Typo */
  --f-display: "Fraunces", Georgia, serif;
  --f-sans:    "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;

  --container: 1240px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --e-smooth:  cubic-bezier(0.22, 0.61, 0.36, 1);
  --e-elegant: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: var(--f-sans);
  font-size: 17px; line-height: 1.6;
  color: var(--ink); background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
figure { margin: 0; }
::selection { background: var(--rose); color: var(--star); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ── grain texture ── */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 2;
  opacity: 0.025; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════ */

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--rose); margin: 0 0 20px;
}
.eyebrow--light { color: var(--rose-soft); }

.h2 {
  font-family: var(--f-display);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 300; line-height: 1.04;
  letter-spacing: -0.022em; color: var(--ink);
  margin: 0 0 24px;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.h2 em {
  font-style: italic; font-weight: 400; color: var(--rose);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.h2--light { color: var(--star); }
.h2--light em { color: var(--rose-soft); }

/* ════════════════════════════════════
   BUTTONS
════════════════════════════════════ */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 14px 26px; border-radius: 999px;
  font-family: var(--f-sans);
  font-size: 15px; font-weight: 600; letter-spacing: -0.005em;
  transition: all 0.38s var(--e-smooth);
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn--primary {
  background: linear-gradient(120deg, var(--violet) 0%, var(--rose) 50%, var(--turq) 100%);
  color: var(--star);
  box-shadow: 0 4px 20px -8px rgba(123, 63, 153, 0.5);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(200, 69, 156, 0.55);
  filter: brightness(1.08);
}
.btn--ghost {
  color: var(--star);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.06);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.7); }

.btn--ghost-dark {
  color: var(--ink);
  border-color: rgba(45, 31, 61, 0.18);
}
.btn--ghost-dark:hover { background: var(--ink); color: var(--star); border-color: var(--ink); }

.btn--wa {
  background: var(--wa-green);
  color: var(--star);
  font-size: 16px;
  justify-content: center;
}
.btn--wa:hover { background: #20bc5a; transform: translateY(-2px); box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.5); }

.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--block { width: 100%; }

.btn__arrow { transition: transform 0.38s var(--e-smooth); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ════════════════════════════════════
   STICKY BOTTOM BAR
════════════════════════════════════ */

.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transform: translateY(100%);
  transition: transform 0.42s var(--e-smooth);
  backdrop-filter: blur(12px);
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-bar__text {
  color: rgba(255, 255, 255, 0.78); font-size: 15px; margin: 0; white-space: nowrap;
}
.sticky-bar .btn { flex-shrink: 0; }

@media (max-width: 600px) {
  .sticky-bar { flex-direction: column; gap: 10px; padding: 14px 20px; text-align: center; }
  .sticky-bar__text { white-space: normal; font-size: 14px; }
  .sticky-bar .btn { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════
   NAV
════════════════════════════════════ */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; padding: 14px 32px;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  background: rgba(45, 31, 61, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.5s var(--e-smooth), border-color 0.5s var(--e-smooth);
}
.nav.is-scrolled {
  background: rgba(251, 247, 252, 0.94);
  border-bottom-color: rgba(45, 31, 61, 0.08);
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--star); transition: color 0.5s var(--e-smooth);
}
.nav.is-scrolled .nav__brand { color: var(--ink); }

.nav__logo {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--star);
  padding: 4px;
  box-shadow: 0 2px 10px rgba(123, 63, 153, 0.18);
}
.nav__logo img { width: 100%; height: 100%; object-fit: contain; }

.nav__name {
  font-family: var(--f-display); font-style: italic;
  font-size: 17px; font-weight: 400; letter-spacing: -0.01em;
  font-variation-settings: "opsz" 72;
}

.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--mist);
  transition: color 0.3s var(--e-smooth); position: relative;
}
.nav.is-scrolled .nav__links a { color: var(--dusk); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: currentColor;
  transition: width 0.3s var(--e-smooth);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta { padding: 11px 20px; font-size: 14px; }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__name { display: none; }
}
@media (max-width: 480px) {
  .nav__cta { padding: 9px 14px; font-size: 12px; }
}

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */

.hero {
  position: relative; min-height: 100vh;
  padding: 140px 32px 100px;
  overflow: hidden; color: var(--star);
  display: flex; flex-direction: column; justify-content: center;
}
.hero__image {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  background: var(--ink);
}
.hero__image picture { display: block; width: 100%; height: 100%; }
.hero__image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  will-change: transform;
  animation: hero-kenburns 22s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
}
@keyframes hero-kenburns {
  0%   { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -1%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__image img { animation: none; transform: scale(1.04); }
}

/* Gradient hero : sombre côté gauche pour le H1, plus léger côté droit pour laisser respirer le visage */
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(45, 31, 61, 0.78) 0%, rgba(45, 31, 61, 0.50) 45%, rgba(45, 31, 61, 0.30) 100%),
    linear-gradient(180deg, rgba(45, 31, 61, 0.30) 0%, rgba(45, 31, 61, 0.20) 50%, rgba(45, 31, 61, 0.65) 100%),
    linear-gradient(110deg, rgba(123, 63, 153, 0.22) 0%, rgba(200, 69, 156, 0.10) 50%, rgba(79, 184, 201, 0.10) 100%);
  mix-blend-mode: multiply;
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto; width: 100%;
}
.hero__inner > * {
  opacity: 0; transform: translateY(24px);
  animation: reveal 1s var(--e-smooth) forwards;
}
.hero__inner > *:nth-child(1) { animation-delay: 0.15s; }
.hero__inner > *:nth-child(2) { animation-delay: 0.3s; }
.hero__inner > *:nth-child(3) { animation-delay: 0.45s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6.4vw, 78px);
  font-weight: 300; line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 32px; color: var(--star); max-width: 920px;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  text-shadow: 0 4px 30px rgba(45, 31, 61, 0.45);
}
.hero__title em {
  font-style: italic; font-weight: 300; color: var(--rose-soft);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero__subtitle {
  font-family: var(--f-sans); font-size: 15px; letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.78); margin: 8px 0 40px;
  font-weight: 300; line-height: 1.65; max-width: 580px;
  font-style: italic;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }

.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; opacity: 0.5;
}
.hero__scroll-line {
  display: block; width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, var(--rose-soft));
  animation: scroll-line 2.5s var(--e-smooth) infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ════════════════════════════════════
   REVEAL
════════════════════════════════════ */

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s var(--e-smooth), transform 0.9s var(--e-smooth);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════
   PATHOS
════════════════════════════════════ */

.pathos { background: var(--cream); padding: 140px 0 120px; }

.pathos__inner { max-width: 1180px; margin: 0 auto; }
.pathos__lead { max-width: 720px; margin-bottom: 80px; }
.pathos__text {
  font-size: 18px; line-height: 1.7; color: var(--dusk);
  margin: 0; max-width: 640px;
}
.pathos__text em { color: var(--ink); font-style: italic; }

.pathos__triptych {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 80px;
  align-items: stretch;
}
.pathos__stack {
  display: flex; flex-direction: column; gap: 20px;
}
.pathos__figure {
  position: relative; border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--mist);
  box-shadow: 0 30px 60px -20px rgba(45, 31, 61, 0.22);
}
.pathos__figure--main { aspect-ratio: 3 / 4; }
.pathos__figure--s1,
.pathos__figure--s2 { flex: 1; min-height: 0; position: relative; }
.pathos__figure--s1 img,
.pathos__figure--s2 img { position: absolute; inset: 0; }
.pathos__figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--e-smooth);
}
.pathos__figure:hover img { transform: scale(1.04); }
.pathos__figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 28px 24px;
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(15px, 1.3vw, 19px); color: var(--star);
  background: linear-gradient(to top, rgba(45, 31, 61, 0.92) 0%, transparent 100%);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  z-index: 1;
}

.pathos__close {
  max-width: 820px; margin: 0 auto;
  font-family: var(--f-display); font-style: italic; font-weight: 300;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.4;
  color: var(--ink); text-align: center;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.pathos__close em { color: var(--rose); }
.pathos__mid-cta { text-align: center; margin-top: 48px; }

/* ════════════════════════════════════
   ABOUT (ÉTHOS)
════════════════════════════════════ */

.about { background: var(--star); padding: 140px 0; }
.about__inner {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 80px; align-items: start;
}

.about__visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
  position: sticky;
  top: 100px;
  align-self: start;
}
.about__visual {
  border-radius: var(--r-xl); overflow: hidden;
  background: var(--mist);
}
.about__visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about__visual--main {
  aspect-ratio: 3 / 4;
  box-shadow: 0 40px 80px -30px rgba(45, 31, 61, 0.25);
}
.about__visual--main img { object-position: center top; }
.about__visual--soin {
  aspect-ratio: 3 / 4;
  margin-top: 40px;
  box-shadow: 0 20px 50px -20px rgba(45, 31, 61, 0.2);
}
.about__visual--soin img { object-position: center 50%; }

.about__sign {
  grid-column: 1 / -1;
  padding: 14px 4px 0;
  display: flex; flex-direction: column; gap: 5px;
}
.about__sign-name {
  font-family: var(--f-display); font-style: italic; font-size: 18px;
  color: var(--ink); font-variation-settings: "opsz" 72;
}
.about__sign-role {
  font-family: var(--f-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--rose); line-height: 1.7;
}

.about__lede { font-size: 19px; font-weight: 500; color: var(--ink); margin: 0 0 20px; line-height: 1.55; }
.about__body { color: var(--dusk); line-height: 1.72; margin: 0 0 16px; font-size: 16px; }
.about__body em { font-style: italic; color: var(--rose); font-weight: 500; }

.about__meta { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; border-top: 1px solid rgba(45, 31, 61, 0.08); padding-top: 28px; }
.about__meta-item { display: flex; gap: 16px; align-items: baseline; }
.about__meta-label { font-family: var(--f-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--rose); flex-shrink: 0; width: 90px; }
.about__meta-value { font-size: 14px; color: var(--ink); font-weight: 500; }

@media (max-width: 860px) {
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__visuals { position: static; top: auto; }
}
@media (max-width: 600px) {
  .about__visuals { grid-template-columns: 1fr 1fr; gap: 8px; }
  .about__visual--soin { margin-top: 24px; }
}

/* ════════════════════════════════════
   CHAPTER / PILIERS
════════════════════════════════════ */

.chapter { padding: 120px 0; }
.chapter--cream { background: var(--cream); }

.chapter__head { max-width: 820px; margin-bottom: 72px; }
.chapter__num {
  display: block; font-family: var(--f-mono);
  font-size: 11px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--rose); margin-bottom: 16px;
}
.chapter__num--light { color: var(--rose-soft); }
.chapter__lede { font-size: 18px; color: var(--dusk); max-width: 720px; margin: 0; line-height: 1.7; }
.chapter__lede strong { color: var(--ink); }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.pillar { padding-top: 24px; border-top: 1px solid rgba(45, 31, 61, 0.1); }
.pillar__num { display: block; font-family: var(--f-mono); font-size: 11px; color: var(--rose); letter-spacing: 0.1em; margin-bottom: 20px; }
.pillar__title { font-family: var(--f-display); font-size: 24px; font-weight: 400; margin: 0 0 12px; color: var(--ink); font-variation-settings: "opsz" 72; }
.pillar__text { font-size: 15px; color: var(--dusk); line-height: 1.7; margin: 0; }

@media (max-width: 768px) { .pillars { grid-template-columns: 1fr; gap: 32px; } }

/* ════════════════════════════════════
   AILES (mécanisme différenciant — métaphore papillon)
════════════════════════════════════ */

.flammes {
  position: relative; overflow: hidden;
  padding: 140px 0; color: var(--star);
}
.flammes__bg { position: absolute; inset: 0; z-index: 0; }
.flammes__bg img { width: 100%; height: 100%; object-fit: cover; }
.flammes__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(45, 31, 61, 0.92) 0%, rgba(74, 61, 96, 0.84) 100%),
    linear-gradient(to top right, rgba(123, 63, 153, 0.20) 0%, rgba(200, 69, 156, 0.12) 50%, rgba(79, 184, 201, 0.10) 100%);
}
.flammes__inner { position: relative; z-index: 1; }
.flammes__head { max-width: 740px; margin-bottom: 64px; }
.flammes__lede {
  font-size: 17px; color: rgba(255, 255, 255, 0.82);
  max-width: 640px; margin: 0; line-height: 1.7;
}
.flammes__lede strong { color: var(--rose-soft); font-weight: 600; }

.flammes__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; margin-bottom: 56px;
}
.flame-card {
  position: relative;
  padding: 36px 26px 32px;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(184, 222, 229, 0.20);
  backdrop-filter: blur(8px);
  transition: all 0.4s var(--e-smooth);
}
.flame-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 181, 213, 0.40);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.3);
}
.flame-card__icon {
  display: block;
  font-size: 28px;
  margin-bottom: 18px;
  line-height: 1;
}
.flame-card--1 .flame-card__icon { color: var(--rose-soft); text-shadow: 0 0 18px rgba(232, 181, 213, 0.6); }
.flame-card--2 .flame-card__icon { color: var(--violet-soft); text-shadow: 0 0 18px rgba(184, 157, 201, 0.6); }
.flame-card--3 .flame-card__icon { color: var(--turq-soft); text-shadow: 0 0 18px rgba(184, 222, 229, 0.6); }
.flame-card--4 .flame-card__icon { color: #C5E1A5; text-shadow: 0 0 18px rgba(197, 225, 165, 0.6); }
.flame-card__num {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px; color: var(--rose-soft);
  letter-spacing: 0.15em; margin-bottom: 8px;
}
.flame-card__title {
  font-family: var(--f-display); font-size: 22px;
  font-weight: 400; color: var(--star);
  margin: 0 0 12px;
  font-variation-settings: "opsz" 72, "SOFT" 80;
}
.flame-card__text {
  font-size: 14px; color: rgba(255, 255, 255, 0.75);
  line-height: 1.65; margin: 0;
}
.flame-card__text em { font-style: italic; color: var(--rose-soft); }

.flammes__close {
  max-width: 720px; margin: 0 auto;
  text-align: center;
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(18px, 1.7vw, 22px); line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 300;
}
.flammes__close em { color: var(--rose-soft); }

@media (max-width: 900px) {
  .flammes__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .flammes__grid { grid-template-columns: 1fr; gap: 14px; }
  .flame-card { padding: 28px 22px; }
}

/* ════════════════════════════════════
   STATS
════════════════════════════════════ */

.sleep-sec {
  position: relative; overflow: hidden;
  padding: 120px 0; color: var(--star);
}
.sleep-sec__image { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.sleep-sec__image img { width: 100%; height: 100%; object-fit: cover; }
.sleep-sec__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(45, 31, 61, 0.85) 0%, rgba(74, 61, 96, 0.74) 100%),
    linear-gradient(to bottom right, rgba(123, 63, 153, 0.18) 0%, rgba(200, 69, 156, 0.10) 100%);
}
.sleep-sec__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.sleep-stats { display: flex; flex-direction: column; gap: 40px; padding-top: 8px; }
.stat { border-left: 2px solid rgba(232, 181, 213, 0.4); padding-left: 24px; }
.stat__num { display: block; font-family: var(--f-display); font-size: clamp(44px, 5vw, 64px); font-weight: 300; color: var(--rose-soft); line-height: 1; margin-bottom: 10px; font-variation-settings: "opsz" 144; }
.stat__text { font-size: 15px; color: rgba(255, 255, 255, 0.78); line-height: 1.65; margin: 0; }

@media (max-width: 768px) {
  .sleep-sec__inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ════════════════════════════════════
   METHOD NARRATIVE
════════════════════════════════════ */

.method { position: relative; overflow: hidden; padding: 140px 0 120px; }
.method__bg { position: absolute; inset: 0; z-index: 0; }
.method__bg img { width: 100%; height: 100%; object-fit: cover; }
.method__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(45, 31, 61, 0.94) 0%, rgba(61, 45, 82, 0.88) 100%),
    linear-gradient(to top right, rgba(123, 63, 153, 0.14) 0%, rgba(79, 184, 201, 0.10) 100%);
}
.method__inner { position: relative; z-index: 1; }
.method__head { max-width: 700px; margin-bottom: 72px; }
.method__lede { font-size: 17px; color: rgba(255, 255, 255, 0.78); max-width: 580px; margin: 0; line-height: 1.7; }

.journey { display: flex; flex-direction: column; gap: 0; margin-bottom: 72px; }
.journey__step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 32px; padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.journey__step:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.journey__num {
  font-family: var(--f-display);
  font-size: clamp(44px, 5vw, 60px); font-weight: 300;
  color: rgba(232, 181, 213, 0.45); line-height: 1;
  font-variation-settings: "opsz" 144;
  padding-top: 4px;
}
.journey__range { display: block; font-family: var(--f-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--rose-soft); margin-bottom: 10px; }
.journey__title { font-family: var(--f-display); font-size: clamp(22px, 2.2vw, 28px); font-weight: 300; color: var(--star); margin: 0 0 14px; font-variation-settings: "opsz" 72, "SOFT" 80; line-height: 1.25; }
.journey__title em { font-style: italic; color: var(--rose-soft); font-variation-settings: "opsz" 72, "SOFT" 100; }
.journey__text { font-size: 15px; color: rgba(255, 255, 255, 0.78); line-height: 1.75; margin: 0; }
.journey__text em { font-style: italic; color: var(--rose-soft); }

.method__pillars {
  display: flex; flex-wrap: wrap; gap: 24px;
  padding: 32px; border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 181, 213, 0.14);
}
.method__pillar { display: flex; align-items: center; gap: 14px; font-size: 14px; color: rgba(255, 255, 255, 0.82); }
.method__pillar-icon { font-size: 18px; color: var(--rose-soft); flex-shrink: 0; }

@media (max-width: 600px) { .journey__step { grid-template-columns: 48px 1fr; gap: 20px; } }

/* ════════════════════════════════════
   TÉMOIGNAGES
════════════════════════════════════ */

.testimonials { background: var(--star); padding: 140px 0; }
.testimonials__head { max-width: 640px; margin-bottom: 64px; }
.testimonials__sub { font-size: 17px; color: var(--dusk); margin: 0; }

.testimonials__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-bottom: 32px;
}

.tcard {
  background: var(--cream); border-radius: var(--r-xl);
  padding: 36px; border: 1px solid rgba(123, 63, 153, 0.12);
  transition: box-shadow 0.38s var(--e-smooth), transform 0.38s var(--e-smooth);
}
.tcard:hover {
  box-shadow: 0 24px 56px -16px rgba(45, 31, 61, 0.18);
  transform: translateY(-2px);
  border-color: rgba(200, 69, 156, 0.30);
}

.tcard__header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.tcard__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--rose), var(--turq));
  display: flex; align-items: center; justify-content: center;
  color: var(--star); font-weight: 700; font-size: 16px; flex-shrink: 0;
  font-family: var(--f-display);
  box-shadow: inset 0 -2px 6px rgba(123, 63, 153, 0.2);
}
.tcard__name { display: block; font-weight: 600; font-size: 15px; color: var(--ink); }
.tcard__meta { display: block; font-family: var(--f-mono); font-size: 11px; color: var(--rose); letter-spacing: 0.05em; margin-top: 2px; }

.tcard__quote {
  font-size: 15px; line-height: 1.75; color: var(--dusk);
  font-style: italic; margin: 0 0 20px; padding: 0;
  border: none; font-family: var(--f-display);
  font-variation-settings: "opsz" 72;
}
.tcard__quote em { font-style: italic; color: var(--ink); font-weight: 500; }

.tcard__before { font-family: var(--f-mono); font-size: 11px; color: var(--rose); letter-spacing: 0.05em; margin: 0; }
.tcard__before em { font-style: italic; color: var(--dusk); }

@media (max-width: 700px) { .testimonials__grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .testimonials { padding: 80px 0; } .tcard { padding: 28px 24px; } }

/* ════════════════════════════════════
   CTA SECTION (WhatsApp + Calendar)
════════════════════════════════════ */

.cta-section {
  position: relative; overflow: hidden;
  background: var(--night); padding: 140px 0;
  color: var(--star);
}
.cta-section__bg { position: absolute; inset: 0; pointer-events: none; }
.mesh {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.34;
}
.mesh--1 { width: 600px; height: 600px; background: var(--violet); top: -200px; left: -100px; }
.mesh--2 { width: 500px; height: 500px; background: var(--rose); bottom: -150px; right: -100px; }
.mesh--3 { width: 400px; height: 400px; background: var(--turq); top: 40%; right: 30%; opacity: 0.20; }

.cta-section__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.cta-section__lede { font-size: 17px; color: rgba(255, 255, 255, 0.82); line-height: 1.75; margin: 0 0 28px; }
.cta-section__lede strong { color: var(--rose-soft); }

.cta-section__bullets { display: flex; flex-direction: column; gap: 14px; }
.cta-section__bullets li { display: flex; align-items: center; gap: 14px; font-size: 15px; color: rgba(255, 255, 255, 0.85); }
.bullet-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rose); flex-shrink: 0; box-shadow: 0 0 12px rgba(200, 69, 156, 0.7); }

@media (max-width: 860px) {
  .cta-section__inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ════════════════════════════════════
   CALENDAR
════════════════════════════════════ */

.calendar {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-xl); overflow: hidden;
  backdrop-filter: blur(10px);
}
.calendar__header {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.calendar__title { display: flex; align-items: center; gap: 12px; }
.calendar__icon { font-size: 22px; color: var(--rose); text-shadow: 0 0 14px rgba(200, 69, 156, 0.6); }
.calendar__label { display: block; font-weight: 600; font-size: 14px; color: var(--star); }
.calendar__duration { display: block; font-size: 12px; color: rgba(255, 255, 255, 0.55); margin-top: 1px; }

.calendar__month { display: flex; align-items: center; gap: 10px; }
.calendar__month-name { font-family: var(--f-display); font-size: 14px; font-weight: 600; color: var(--star); white-space: nowrap; }
.calendar__nav {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.calendar__nav:hover { background: rgba(200, 69, 156, 0.32); color: var(--star); }

.calendar__body { padding: 18px 22px; display: flex; flex-direction: column; gap: 16px; }
.calendar__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.calendar__dow {
  text-align: center; font-size: 10px; font-weight: 600;
  color: rgba(255, 255, 255, 0.4); text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 0;
}
.calendar__day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 6px; font-size: 12px; font-weight: 500;
  color: rgba(255, 255, 255, 0.2); cursor: default; user-select: none;
}
.calendar__day--past { color: rgba(255, 255, 255, 0.25); }
.calendar__day--full { color: rgba(255, 255, 255, 0.25); text-decoration: line-through; }
.calendar__day--off { color: transparent; }
.calendar__day--available {
  color: rgba(255, 255, 255, 0.9); cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s, color 0.2s;
}
.calendar__day--available:hover { background: rgba(200, 69, 156, 0.28); color: var(--star); }
.calendar__day--available.is-selected { background: var(--rose) !important; color: var(--star) !important; box-shadow: 0 0 14px rgba(200, 69, 156, 0.5); }

.calendar__slots { border-top: 1px solid rgba(255, 255, 255, 0.07); padding-top: 14px; }
.calendar__slots-title {
  font-size: 12px; color: rgba(255, 255, 255, 0.55); margin: 0 0 10px;
  font-family: var(--f-mono); text-transform: uppercase; letter-spacing: 0.08em;
}
.calendar__slots-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.calendar__slot {
  padding: 9px 4px; border-radius: 8px; font-size: 13px; font-weight: 600;
  background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s var(--e-smooth);
}
.calendar__slot:hover { background: rgba(200, 69, 156, 0.22); border-color: var(--rose); color: var(--star); }
.calendar__slot--active { background: rgba(200, 69, 156, 0.32) !important; border-color: var(--rose) !important; color: var(--star) !important; box-shadow: 0 0 10px rgba(200, 69, 156, 0.45); }

.calendar .btn--wa { border-radius: 0 0 var(--r-xl) var(--r-xl); padding: 18px; display: flex; align-items: center; justify-content: center; gap: 10px; }

/* ════════════════════════════════════
   FAQ
════════════════════════════════════ */

.faq { background: var(--cream); padding: 140px 0; }
.faq__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq__head { position: sticky; top: 120px; }

.faq__list { display: flex; flex-direction: column; }
.faq__item { border-top: 1px solid rgba(45, 31, 61, 0.1); }
.faq__item:last-child { border-bottom: 1px solid rgba(45, 31, 61, 0.1); }

summary.faq__q {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 0;
  font-size: 16px; font-weight: 500; color: var(--ink);
  transition: color 0.24s var(--e-smooth);
}
summary.faq__q::-webkit-details-marker { display: none; }
summary.faq__q::after {
  content: "+"; font-size: 22px; font-weight: 300; color: var(--rose);
  flex-shrink: 0; transition: transform 0.3s var(--e-smooth);
}
details[open] > summary.faq__q { color: var(--rose); }
details[open] > summary.faq__q::after { transform: rotate(45deg); }
summary.faq__q:hover { color: var(--rose); }

.faq__a { padding: 0 0 24px; }
.faq__a p { font-size: 15px; color: var(--dusk); line-height: 1.75; margin: 0; }
.faq__a strong { color: var(--ink); }
.faq__a em { font-style: italic; color: var(--ink); }

@media (max-width: 768px) { .faq__inner { grid-template-columns: 1fr; gap: 32px; } .faq__head { position: static; } }

/* ════════════════════════════════════
   FINAL CTA
════════════════════════════════════ */

.final-cta {
  background: var(--ink); padding: 140px 32px;
  text-align: center; color: var(--star);
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(200, 69, 156, 0.20) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta .container { display: flex; flex-direction: column; align-items: center; gap: 32px; position: relative; z-index: 1; }
.final-cta .eyebrow { margin-bottom: 0; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */

.site-footer {
  background: var(--night);
  padding: 56px 0 110px; text-align: center;
}
.site-footer__logo {
  display: block;
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--star);
  padding: 6px;
  box-shadow: 0 4px 16px rgba(200, 69, 156, 0.4);
}
.site-footer__logo img { width: 100%; height: 100%; object-fit: contain; }
.site-footer__brand { color: var(--star); font-weight: 600; font-size: 16px; margin: 0 0 4px; font-family: var(--f-display); font-style: italic; font-variation-settings: "opsz" 72; }
.site-footer__sub { color: rgba(255, 255, 255, 0.6); font-size: 13px; margin: 0 0 24px; }
.site-footer__links {
  margin-bottom: 16px; font-size: 12px;
}
.site-footer__links a {
  color: rgba(255, 255, 255, 0.55); text-decoration: underline;
  margin: 0 12px; transition: color 0.2s;
}
.site-footer__links a:hover { color: var(--rose-soft); }
.site-footer__legal {
  color: rgba(255, 255, 255, 0.48); font-size: 12px;
  max-width: 720px; margin: 0 auto; line-height: 1.75;
}
.site-footer__legal strong { color: var(--rose-soft); }

/* ════════════════════════════════════
   RESPONSIVE — MOBILE OVERRIDES
════════════════════════════════════ */

@media (max-width: 600px) {
  .pathos__triptych { grid-template-columns: 1fr; }
  .pathos__figure--main { aspect-ratio: 4 / 3; }
  .pathos__figure--s1, .pathos__figure--s2 { aspect-ratio: 4 / 3; min-height: 220px; }
  .h2 { font-size: 30px; }

  /* Hero mobile : visage en haut, texte en bas */
  .hero {
    justify-content: flex-end;
    padding: 100px 16px 52px;
  }
  .hero__title {
    font-size: 28px;
    line-height: 1.12;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: -0.025em;
  }
  .hero__title br { display: none; }
  .hero__subtitle {
    text-align: center;
    font-size: 13px;
    margin: 12px 0 32px;
  }
  .hero__cta {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
  }
  .hero__cta .btn--lg {
    padding: 14px 24px;
    font-size: 14px;
    width: 88%;
    justify-content: center;
    text-align: center;
  }
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(45, 31, 61, 0.06) 0%, rgba(45, 31, 61, 0.20) 45%, rgba(45, 31, 61, 0.92) 68%, rgba(45, 31, 61, 0.97) 100%),
      linear-gradient(110deg, rgba(74, 61, 96, 0.18) 0%, rgba(123, 63, 153, 0.06) 100%);
  }

  .pathos { padding: 80px 0 70px; }
  .about { padding: 80px 0; }
  .chapter { padding: 70px 0; }
  .flammes { padding: 80px 0; }
  .sleep-sec { padding: 80px 0; }
  .method { padding: 80px 0 70px; }
  .cta-section { padding: 80px 0; }
  .faq { padding: 80px 0; }
  .final-cta { padding: 80px 24px; }
}

/* ════════════ AUDIO WIDGET ════════════ */
.audio-widget {
  position: fixed;
  bottom: 96px;
  left: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
}
.audio-welcome {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 0;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--rose);
  border-radius: var(--r-md);
  padding: 14px 16px 16px;
  width: 178px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 32px rgba(45, 31, 61, 0.18), 0 0 0 1px rgba(200, 69, 156, 0.18);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.4s var(--e-smooth), transform 0.4s var(--e-smooth);
}
.audio-welcome.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.audio-welcome__arrow {
  position: absolute;
  bottom: -7px;
  left: 22px;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.97);
  border-right: 1px solid var(--rose);
  border-bottom: 1px solid var(--rose);
  transform: rotate(45deg);
}
.audio-welcome__close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: var(--dusk);
  font-size: 11px;
  cursor: pointer;
  line-height: 1;
  padding: 2px;
  transition: color 0.2s;
}
.audio-welcome__close:hover { color: var(--rose); }
.audio-welcome__title {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  color: var(--rose);
  margin-bottom: 6px;
}
.audio-welcome__sub {
  font-family: var(--f-sans);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink);
}
.audio-widget__fab {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--rose);
  background: var(--star);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(45, 31, 61, 0.12);
  transition: background 0.25s var(--e-smooth), transform 0.25s var(--e-elegant), box-shadow 0.25s, color 0.25s;
}
.audio-widget__fab:hover {
  background: var(--rose);
  color: var(--star);
  transform: scale(1.06);
  box-shadow: 0 10px 26px rgba(200, 69, 156, 0.45);
}
.audio-widget.is-playing .audio-widget__fab {
  animation: aw-pulse 2.4s ease-in-out infinite;
}
@keyframes aw-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(200, 69, 156, 0.25); }
  50%      { box-shadow: 0 0 0 14px rgba(200, 69, 156, 0.05); }
}
.audio-widget__label {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  color: var(--rose);
  opacity: 0.92;
  white-space: nowrap;
  pointer-events: none;
}
@media (max-width: 600px) {
  /* Sticky bar mobile passe en column (texte + bouton empilés) → ~110-115px de haut.
     Le FAB doit être suffisamment haut pour ne pas chevaucher la sticky bar.
     calc() + env(safe-area-inset-bottom) gère aussi le home indicator iPhone. */
  /* Au repos sur le hero (pas de sticky bar), le FAB reste BAS : il passe
     sous le CTA principal au lieu de le chevaucher. Mesure du 2026-08-20 :
     a 140px il recouvrait le bouton "Parler a Muriel" sur 26px de haut. */
  .audio-widget {
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    left: 16px;
  }
  /* Le CTA du hero est sorti de l'ecran -> la sticky bar est la -> le FAB
     remonte au-dessus d'elle (regle 46 du SKILL). */
  body.has-sticky .audio-widget {
    bottom: calc(140px + env(safe-area-inset-bottom, 0px));
  }
  .audio-widget__label { display: none; }
  .audio-welcome { width: 162px; }
}

/* ════ QUIZ INTERACTIF — bilan MICI personnalisé (section signature) ════ */
.cq{padding:clamp(80px,10vw,120px) 0;position:relative;overflow:hidden;
  background:linear-gradient(170deg,var(--cream) 0%,var(--mist) 55%,var(--rose-soft) 135%)}
.cq::before{content:"";position:absolute;inset:0;z-index:0;pointer-events:none;
  background:radial-gradient(circle at 12% 10%,rgba(123,63,153,.10) 0%,transparent 44%),
             radial-gradient(circle at 88% 90%,rgba(200,69,156,.14) 0%,transparent 46%)}
.cq__card{position:relative;z-index:1;max-width:780px;margin:0 auto;
  background:rgba(255,255,255,.78);backdrop-filter:blur(10px);
  border:1px solid rgba(123,63,153,.18);border-radius:var(--r-xl);
  box-shadow:0 40px 90px -36px rgba(45,31,61,.40);
  padding:clamp(30px,5vw,58px);text-align:center}
.cq__panel.cq__fade{animation:cqFade .42s var(--e-smooth)}
@keyframes cqFade{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}
.cq__badge{display:inline-block;font-family:var(--f-sans);font-weight:700;font-size:11.5px;
  letter-spacing:.16em;text-transform:uppercase;color:var(--violet);
  background:var(--mist);padding:8px 16px;border-radius:100px;margin-bottom:22px}
.cq__title{font-family:var(--f-display);font-weight:400;font-size:clamp(28px,4.3vw,46px);
  color:var(--ink);line-height:1.08;letter-spacing:-.015em;margin-bottom:16px}
.cq__title em{font-style:italic;color:var(--rose)}
.cq__sub{font-size:clamp(16px,2vw,18.5px);color:var(--dusk);max-width:46ch;margin:0 auto 30px;line-height:1.6}
.cq__meta{margin-top:20px;font-size:12.5px;color:var(--dusk);letter-spacing:.01em;opacity:.85}
.cq__top{display:flex;align-items:center;gap:14px;margin-bottom:32px}
.cq__back{width:38px;height:38px;flex-shrink:0;border-radius:50%;border:1px solid rgba(123,63,153,.25);
  background:#fff;color:var(--violet);cursor:pointer;font-size:18px;line-height:1;transition:.2s}
.cq__back:hover{border-color:var(--violet);color:var(--rose)}
.cq__back[hidden]{visibility:hidden;display:block}
.cq__progress{flex:1;height:7px;border-radius:100px;background:rgba(123,63,153,.16);overflow:hidden}
.cq__progress-bar{display:block;height:100%;width:20%;border-radius:100px;
  background:linear-gradient(90deg,var(--violet),var(--rose));transition:width .5s var(--e-smooth)}
.cq__step{font-size:12.5px;font-weight:600;color:var(--dusk);letter-spacing:.04em;white-space:nowrap}
.cq__q{font-family:var(--f-display);font-weight:400;font-size:clamp(22px,3vw,32px);color:var(--ink);line-height:1.16;margin-bottom:28px}
.cq__answers{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.cq__a{display:flex;align-items:center;gap:15px;text-align:left;background:#fff;
  border:1.5px solid rgba(123,63,153,.16);border-radius:var(--r-md);padding:17px 19px;cursor:pointer;
  font-family:var(--f-sans);font-size:15.5px;font-weight:500;color:var(--ink);line-height:1.35;
  transition:transform .22s var(--e-smooth),border-color .22s,box-shadow .22s,background .22s}
.cq__a:hover{border-color:var(--violet);transform:translateY(-3px);box-shadow:0 16px 30px -18px rgba(123,63,153,.5)}
.cq__a.is-sel{border-color:var(--violet);background:var(--mist)}
.cq__a-ico{width:46px;height:46px;flex-shrink:0;border-radius:50%;display:grid;place-items:center;
  font-size:22px;background:var(--mist);border:1px solid rgba(123,63,153,.14)}
.cq__result{text-align:left}
.cq__result .cq__badge{display:inline-block}
.cq__rtitle{font-family:var(--f-display);font-weight:400;font-size:clamp(24px,3.4vw,38px);
  color:var(--ink);line-height:1.12;letter-spacing:-.015em;margin-bottom:22px}
.cq__rtitle em{font-style:italic;color:var(--rose)}
.cq__rbody p{font-size:16.5px;color:var(--dusk);margin-bottom:16px;line-height:1.72}
.cq__rbody strong{color:var(--ink);font-weight:700}
.cq__rbody em{color:var(--rose);font-style:italic}
.cq__cta{display:block;margin-top:32px;text-align:center;
  background:linear-gradient(120deg,var(--violet) 0%,var(--rose) 100%);color:var(--star);
  border-radius:var(--r-lg);padding:24px 28px;box-shadow:0 22px 46px -16px rgba(123,63,153,.6);
  transition:transform .35s var(--e-smooth),box-shadow .35s}
.cq__cta:hover{transform:translateY(-4px);box-shadow:0 32px 58px -16px rgba(200,69,156,.7)}
.cq__cta-main{display:block;font-family:var(--f-display);font-size:clamp(20px,2.7vw,27px);font-weight:500;line-height:1.15;margin-bottom:7px}
.cq__cta-sub{display:block;font-size:13px;color:rgba(255,255,255,.92);font-weight:500;letter-spacing:.01em}
.cq__again{margin:20px auto 0;display:block;background:none;border:0;color:var(--dusk);cursor:pointer;font-size:13.5px;text-decoration:underline}
@media(max-width:600px){
  .cq{padding:70px 0}
  .cq__card{padding:30px 20px}
  .cq__answers{grid-template-columns:1fr}
  .cq__a{padding:15px 16px}
}
