/* ============ Votre Mélodie — static lander ============ */
:root {
  --orange: #fd703a;
  --orange-dark: #b94d23;
  --maroon: #2d1a1e;
  --cream: #fdf6ee;
  --cream2: #fff9f5;
  --gold: #c9a96e;
  --pink: #c4737a;
  --muted: #8c7075;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--maroon);
  background: var(--cream);
  line-height: 1.5;
  font-size: 16px;
}
img, video { max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 400; }

.color-cream { background: var(--cream); }
.color-cream2 { background: var(--cream2); }
.color-maroon { background: var(--maroon); color: var(--cream); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--maroon); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

*:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--orange); color: #fff;
  padding: 18px 32px; min-height: 52px;
  border-radius: 999px; font-weight: 700; font-size: 18px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(253,112,58,0.32);
  transition: transform .15s ease, background .15s ease;
}
.btn-primary:hover { transform: translateY(-1px); background: var(--orange-dark); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-primary .glyph { margin-right: 4px; }

/* ---- Announcement bar ---- */
.announcement-bar { background: var(--maroon); color: var(--cream); text-align: center; font-size: 13px; }
.announcement-bar__msg { display: block; padding: 11px 16px; text-decoration: none; font-weight: 600; min-height: 44px; }

/* ---- Header ---- */
.site-header { background: var(--cream); border-bottom: 1px solid rgba(45,26,30,0.08); position: sticky; top: 0; z-index: 40; }
.site-header__inner { max-width: 1280px; margin: 0 auto; padding: 16px 24px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; }
.site-header__logo { font-family: var(--font-head); font-size: 24px; text-decoration: none; }
.site-header__nav { display: flex; gap: 8px; justify-self: center; }
.site-header__nav a { padding: 14px 12px; min-height: 44px; display: inline-flex; align-items: center; text-decoration: none; color: rgba(45,26,30,0.75); font-size: 15px; }
.site-header__nav a:hover { color: var(--maroon); text-decoration: underline; text-underline-offset: 4px; }
.site-header__cta { justify-self: end; background: var(--orange); color: #fff; padding: 10px 20px; border-radius: 999px; font-weight: 700; text-decoration: none; font-size: 15px; min-height: 44px; display: inline-flex; align-items: center; }
.site-header__cta:hover { background: var(--orange-dark); }
@media (max-width: 749px) {
  .site-header__nav { display: none; }
  .site-header__inner { grid-template-columns: 1fr auto; }
}

/* ---- Hero ---- */
.hero { padding: 64px 0; }
.hero__inner { max-width: 920px; margin: 0 auto; padding: 0 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.hero__toppill { display: inline-flex; align-items: center; background: #fff; color: var(--maroon); padding: 10px 22px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; box-shadow: 0 6px 18px rgba(45,26,30,0.08); }
.hero__toppill::before { content: '♪'; color: var(--orange); font-size: 14px; margin-right: 10px; }
.hero__media { position: relative; width: 100%; max-width: 860px; aspect-ratio: 16/9; border-radius: 20px; overflow: hidden; background: var(--maroon); box-shadow: 0 12px 40px rgba(45,26,30,0.18); }
.hero__media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__unmute { position: absolute; inset: 0; margin: auto; width: max-content; height: max-content; background: rgba(45,26,30,0.85); color: #fff; border: none; border-radius: 999px; padding: 14px 24px; font-size: 16px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; backdrop-filter: blur(8px); transition: opacity .25s ease, transform .15s ease; z-index: 3; }
.hero__unmute svg { width: 22px; height: 22px; fill: currentColor; }
.hero__unmute:hover { transform: translateY(-1px); }
.hero__media.is-unmuted .hero__unmute { opacity: 0; pointer-events: none; }
.hero__ctrl { position: absolute; bottom: 14px; right: 14px; display: inline-flex; gap: 8px; opacity: 0; transition: opacity .2s ease; z-index: 4; }
.hero__media:hover .hero__ctrl, .hero__media.is-unmuted .hero__ctrl { opacity: 1; }
.hero__ctrl button { width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(45,26,30,0.65); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; backdrop-filter: blur(6px); }
.hero__ctrl button:hover { background: rgba(45,26,30,0.85); }
.hero__ctrl svg { width: 18px; height: 18px; fill: currentColor; }
.hero__heading { font-size: clamp(32px, 5vw, 56px); line-height: 1.05; margin: 0; max-width: 760px; }
.hero__heading em { font-style: italic; color: var(--pink); }
.hero__heading .g { font-style: normal; opacity: 0.85; }
.hero__sub { font-size: clamp(15px, 1.3vw, 17px); line-height: 1.5; max-width: 580px; margin: 0; opacity: 0.9; }
.hero__guarantee { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; line-height: 1.4; opacity: 0.85; }
.hero__guarantee .seal { width: 20px; height: 20px; border-radius: 50%; background: #2e7d32; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.hero__guarantee .seal::before { content: '✓'; }
.hero__badges { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; font-size: 14px; font-weight: 500; color: var(--maroon); max-width: 760px; }
.hero__badges li { display: inline-flex; align-items: center; gap: 8px; }
.hero__badge-dot { width: 22px; height: 22px; border-radius: 50%; background: rgba(253,112,58,0.14); color: var(--orange-dark); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.hero__strip { font-size: 13px; opacity: 0.7; line-height: 1.6; max-width: 720px; }
.hero__strip .dot { margin: 0 8px; opacity: 0.6; }
@media (max-width: 749px) {
  .hero { padding: 40px 0; }
  .hero__inner { padding: 0 16px; gap: 16px; }
  .hero__media { aspect-ratio: 16/10; }
  .hero__heading { font-size: clamp(26px, 8vw, 34px); }
}
.hero__inner > * { opacity: 0; transform: translateY(8px); animation: rise .6s cubic-bezier(.2,.8,.2,1) forwards; }
.hero__inner > *:nth-child(1) { animation-delay: 0ms; }
.hero__inner > *:nth-child(2) { animation-delay: 80ms; }
.hero__inner > *:nth-child(3) { animation-delay: 160ms; }
.hero__inner > *:nth-child(4) { animation-delay: 240ms; }
.hero__inner > *:nth-child(n+5) { animation-delay: 320ms; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---- How it works ---- */
.how { position: relative; overflow: hidden; color: #fff; padding: 80px 0; isolation: isolate; min-height: 480px; display: flex; align-items: center; }
.how::before { content: ''; position: absolute; inset: 0; background-image: url('/media/how-bg.png'); background-size: cover; background-position: center; z-index: -2; }
.how::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.42) 100%); z-index: -1; }
.how__inner { max-width: 920px; margin: 0 auto; padding: 0 24px; width: 100%; text-align: center; }
.how__heading { font-size: clamp(28px, 3.2vw, 42px); line-height: 1.18; margin: 0 0 28px; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.how__steps { display: flex; flex-direction: column; gap: 18px; margin: 0 auto 28px; list-style: none; padding: 0; max-width: 640px; text-align: left; }
.how__step { font-size: 16px; line-height: 1.55; font-weight: 400; text-shadow: 0 1px 4px rgba(0,0,0,0.55); padding-left: 18px; border-left: 2px solid rgba(255,255,255,0.55); }
.how__step .step-label { font-weight: 700; }
.how__step .step-sub { display: block; font-size: 14px; font-weight: 400; opacity: 0.85; margin-top: 4px; }
.how .btn-primary:focus-visible { outline-color: #fff; }

/* ---- Reviews carousel ---- */
.reviews { padding: 64px 0; }
.reviews__inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.reviews__heading { font-style: italic; font-size: clamp(26px, 3vw, 40px); font-weight: 400; text-align: center; margin: 0 0 36px; line-height: 1.2; }
.reviews__viewport { position: relative; }
.reviews__disclaimer { margin: 24px auto 0; max-width: 720px; text-align: center; font-size: 12px; line-height: 1.5; color: var(--muted); font-style: italic; }
.reviews__grid { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 0 4px 8px; align-items: flex-start; -webkit-overflow-scrolling: touch; }
.reviews__grid::-webkit-scrollbar { display: none; }
.reviews__grid { scrollbar-width: none; }
@media (min-width: 990px) { .reviews__grid { padding-left: 0; padding-right: 0; overflow: visible; } }
.review-card { flex: 0 0 78%; scroll-snap-align: start; min-width: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(45,26,30,0.08); background: #fff; color: var(--maroon); display: flex; flex-direction: column; align-self: flex-start; transition: transform .25s ease, box-shadow .25s ease; }
@media (min-width: 750px) { .review-card { flex-basis: 42%; } }
@media (min-width: 990px) { .review-card { flex-basis: calc((100% - 64px) / 5); } }
.review-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(45,26,30,0.12); }
.review-card__media { position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden; background: var(--maroon); }
.review-card__media--full { aspect-ratio: 9/16; }
.review-card--video { background: var(--maroon); }
.review-card--video .review-card__media, .review-card--video .review-card__media--full { width: 100%; }
.review-card__media video, .review-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-card__play { position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; border-radius: 50%; border: none; background: var(--orange); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,0.35); transition: transform .15s ease, background .15s ease; z-index: 2; }
.review-card__play svg { width: 28px; height: 28px; margin-left: 3px; }
.review-card__play:hover { transform: scale(1.06); background: var(--orange-dark); }
.review-card__media.is-playing .review-card__play, .review-card__media.is-playing img { display: none; }
.review-card--quote { background: #fff; padding: 22px 20px 18px; justify-content: space-between; }
.review-card--quote .review-card__quote-body { flex: 1; }
.review-card__bigquote { margin: 0 0 12px; font-family: var(--font-body); font-size: 14px; line-height: 1.55; color: var(--maroon); quotes: '“' '”'; }
.review-card__bigquote::before { content: open-quote; font-size: 22px; line-height: 0; vertical-align: -0.2em; margin-right: 2px; }
.review-card__bigquote::after { content: close-quote; font-size: 22px; line-height: 0; vertical-align: -0.4em; margin-left: 2px; }
.review-card__songref { font-family: var(--font-head); font-style: italic; font-size: 14px; color: var(--muted); margin: 12px 0 0; display: inline-flex; align-items: center; gap: 6px; }
.review-card__author { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(45,26,30,0.08); }
.review-card__avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.review-card__author-meta .name { font-weight: 700; font-size: 13px; color: var(--maroon); line-height: 1.25; }
.review-card__author-meta .verified { font-size: 12px; color: #2e7d32; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; margin-top: 2px; }
.review-card__author-meta .verified .verified-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--orange-dark); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; }
.reviews__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: none; background: #fff; color: var(--maroon); cursor: pointer; box-shadow: 0 8px 22px rgba(45,26,30,0.18); font-size: 22px; font-weight: 600; line-height: 1; display: inline-flex; align-items: center; justify-content: center; z-index: 2; }
.reviews__nav:hover { background: var(--orange); color: #fff; transform: translateY(-50%) scale(1.06); }
.reviews__nav--prev { left: -24px; }
.reviews__nav--next { right: -24px; }
@media (min-width: 990px) { .reviews__nav { display: none; } }

/* ---- Occasions ---- */
.occ { background: var(--maroon); color: var(--cream); padding: 64px 0; }
.occ__inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.occ__heading { font-weight: 400; font-size: clamp(28px, 3vw, 40px); line-height: 1.2; text-align: center; margin: 0 0 14px; }
.occ__heading em { font-style: italic; }
.occ__lede { max-width: 600px; margin: 0 auto 36px; text-align: center; font-size: 15px; line-height: 1.6; opacity: 0.8; }
.occ__grid { display: grid; grid-template-columns: 1fr; gap: 36px 24px; }
@media (min-width: 750px) { .occ__grid { grid-template-columns: repeat(2, 1fr); gap: 44px 32px; } }
@media (min-width: 990px) { .occ__grid { grid-template-columns: repeat(3, 1fr); gap: 48px 40px; } }
.occ__card { display: flex; flex-direction: column; gap: 14px; text-align: center; transition: transform .25s ease; }
.occ__card:hover { transform: translateY(-4px); }
.occ__media { position: relative; overflow: hidden; border-radius: 18px; aspect-ratio: 1/1; background: #1a0e10; }
.occ__card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.occ__card:hover img { transform: scale(1.04); }
.occ__caption { color: var(--cream); padding: 0 4px; }
.occ__caption h3 { margin: 0 0 6px; font-size: clamp(20px, 1.6vw, 24px); line-height: 1.25; color: var(--cream); }
.occ__caption p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--cream); opacity: 0.78; }
.occ__cta { display: flex; justify-content: center; margin-top: 40px; }
.occ .btn-primary:focus-visible { outline-color: #fff; }

/* ---- Mid CTA ---- */
.midcta { text-align: center; padding: 48px 24px; }
.midcta__heading { font-size: clamp(28px, 3vw, 40px); margin: 0 0 24px; }

/* ---- What you get ---- */
.wyg { padding: 64px 0; }
.wyg__inner { max-width: 880px; margin: 0 auto; padding: 0 24px; text-align: center; }
.wyg__heading { font-size: clamp(28px, 3.2vw, 42px); line-height: 1.18; margin: 0 0 12px; }
.wyg__sub { font-size: 16px; line-height: 1.55; max-width: 600px; margin: 0 auto 32px; opacity: 0.85; }
.wyg__card { background: #fff; border-radius: 22px; padding: 36px 28px 32px; box-shadow: 0 16px 50px rgba(45,26,30,0.10); display: flex; flex-direction: column; align-items: center; gap: 28px; }
.vinyl-disc { position: relative; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 70%, #000 100%); box-shadow: 0 8px 24px rgba(0,0,0,0.35); animation: spin 4s linear infinite; animation-play-state: paused; }
.wyg.is-playing .vinyl-disc { animation-play-state: running; }
.vinyl-disc::before { content: ''; position: absolute; inset: 16px; border-radius: 50%; background: repeating-radial-gradient(circle at center, rgba(255,255,255,0.04) 0 1px, transparent 1px 4px); }
.vinyl-disc__label { position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; color: var(--maroon); box-shadow: 0 0 0 2px #c9b8aa, inset 0 0 0 1px rgba(0,0,0,0.05); }
.vinyl-disc__label svg { width: 28px; height: 28px; fill: currentColor; }
.vinyl-disc__hole { position: absolute; inset: 0; margin: auto; width: 6px; height: 6px; border-radius: 50%; background: var(--maroon); z-index: 2; }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.vinyl-track__title { font-size: 16px; font-weight: 600; margin: 0; color: var(--maroon); }
.vinyl-track__sub { font-size: 12px; color: var(--muted); margin-top: 3px; }
.vinyl-progress { width: 100%; max-width: 320px; display: flex; align-items: center; gap: 10px; font-size: 11px; color: var(--muted); font-variant-numeric: tabular-nums; }
.vinyl-progress__bar { flex: 1; height: 4px; border-radius: 999px; background: #f0e8df; cursor: pointer; position: relative; }
.vinyl-progress__fill { height: 100%; width: 0%; border-radius: 999px; background: var(--orange); transition: width .1s linear; }
.vinyl-controls { display: inline-flex; gap: 12px; }
.vinyl-controls button { width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--cream); color: var(--maroon); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; transition: background .15s ease, transform .15s ease; }
.vinyl-controls button:hover { background: #f0e3d4; }
.vinyl-controls button.is-primary { width: 52px; height: 52px; background: var(--orange); color: #fff; font-size: 18px; }
.vinyl-controls button.is-primary:hover { background: var(--orange-dark); transform: scale(1.04); }
.wyg__benefits { display: grid; grid-template-columns: 1fr; gap: 20px; width: 100%; max-width: 1180px; margin: 48px auto 0; padding: 0 24px; }
@media (min-width: 750px) { .wyg__benefits { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.wyg__benefit { background: #f4ece2; border-radius: 14px; padding: 32px 28px; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.wyg__benefit .icon { width: 48px; height: 48px; border-radius: 50%; background: var(--orange-dark); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; line-height: 1; }
.wyg__benefit h3 { margin: 0; font-size: clamp(20px, 1.6vw, 24px); line-height: 1.25; color: var(--maroon); }
.wyg__benefit p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--maroon); opacity: 0.75; max-width: 320px; }
@media (max-width: 749px) { .vinyl-disc { width: 200px; height: 200px; } }

/* ---- FAQ ---- */
.faq { padding: 56px 0; }
.faq__inner { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.faq__heading { font-size: clamp(28px, 3.2vw, 42px); text-align: center; margin: 0 0 28px; }
.faq__item { border-bottom: 1px solid rgba(45,26,30,0.12); }
.faq__item summary { padding: 18px 0; cursor: pointer; font-weight: 600; font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--muted); flex-shrink: 0; transition: transform .2s ease; }
.faq__item[open] summary::after { content: '−'; }
.faq__body { padding: 0 0 20px; font-size: 15px; line-height: 1.6; }
.faq__body p { margin: 0; }

/* ---- Contact ---- */
.contact { text-align: center; padding: 56px 24px; }
.contact__heading { font-size: clamp(26px, 3vw, 38px); margin: 0 0 12px; }
.contact__text { max-width: 640px; margin: 0 auto; font-size: 16px; line-height: 1.6; }
.contact__text a { color: var(--orange); text-decoration: underline; }

/* ---- Footer ---- */
.site-footer { padding: 48px 24px 32px; }
.site-footer__inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.site-footer__logo { font-family: var(--font-head); font-size: 22px; margin-bottom: 12px; }
.site-footer__brand p { font-size: 14px; line-height: 1.6; opacity: 0.8; max-width: 320px; }
.site-footer__col h4 { font-family: var(--font-head); font-size: 18px; margin: 0 0 12px; }
.site-footer__col a { display: block; padding: 6px 0; font-size: 14px; opacity: 0.8; text-decoration: none; }
.site-footer__col a:hover { opacity: 1; text-decoration: underline; }
.site-footer__bottom { max-width: 1180px; margin: 32px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 12px; opacity: 0.6; }
@media (max-width: 749px) { .site-footer__inner { grid-template-columns: 1fr; gap: 28px; } }

/* ---- Mobile sticky CTA ---- */
.mobile-sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px)); background: rgba(45,26,30,0.92); backdrop-filter: blur(10px); box-shadow: 0 -4px 16px rgba(0,0,0,0.18); z-index: 50; transform: translateY(100%); transition: transform .25s cubic-bezier(.2,.8,.2,1); }
.mobile-sticky-cta.is-visible { transform: translateY(0); }
.mobile-sticky-cta__btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; min-height: 52px; padding: 14px 20px; background: var(--orange); color: #fff; border-radius: 999px; font-weight: 700; font-size: 17px; text-decoration: none; box-shadow: 0 6px 20px rgba(253,112,58,0.45); }
.mobile-sticky-cta__btn:active { transform: scale(0.98); }
@media (min-width: 750px) { .mobile-sticky-cta { display: none; } }

/* ---- Pas une IA (trust) ---- */
.trust { padding: 72px 0; }
.trust__inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.trust__heading { font-size: clamp(26px, 3.4vw, 40px); line-height: 1.18; text-align: center; margin: 0 0 14px; }
.trust__lede { max-width: 680px; margin: 0 auto 40px; text-align: center; font-size: 16px; line-height: 1.65; opacity: 0.85; }
.trust__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 750px) { .trust__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.trust__card { background: #fff; border-radius: 18px; padding: 32px 28px; box-shadow: 0 10px 32px rgba(45,26,30,0.07); }
.trust__icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(253,112,58,0.12); color: var(--orange-dark); display: inline-flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.trust__card h3 { margin: 0 0 10px; font-size: clamp(19px, 1.5vw, 22px); line-height: 1.25; }
.trust__card p { margin: 0; font-size: 15px; line-height: 1.6; opacity: 0.8; }
.trust__not { list-style: none; margin: 36px auto 0; padding: 0; max-width: 680px; display: flex; flex-direction: column; gap: 10px; }
.trust__not li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
.trust__not li span { width: 22px; height: 22px; border-radius: 50%; background: rgba(45,26,30,0.06); color: var(--maroon); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }

/* ---- Héritage ---- */
.heritage { padding: 64px 0; }
.heritage__inner { max-width: 760px; margin: 0 auto; padding: 0 24px; text-align: center; }
.heritage__kicker { text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px; font-weight: 700; color: var(--orange-dark); margin: 0 0 14px; }
.heritage__heading { font-style: italic; font-size: clamp(24px, 3vw, 36px); line-height: 1.25; font-weight: 400; margin: 0 0 18px; }
.heritage__body { font-size: 16px; line-height: 1.7; opacity: 0.85; margin: 0; }

/* ---- Prix ---- */
.price { padding: 72px 0; }
.price__inner { max-width: 720px; margin: 0 auto; padding: 0 24px; text-align: center; }
.price__kicker { font-family: var(--font-head); font-style: italic; font-size: clamp(16px, 1.6vw, 19px); color: var(--muted); margin: 0 0 8px; }
.price__heading { font-size: clamp(26px, 3.2vw, 40px); line-height: 1.18; margin: 0 0 32px; }
.price__card { background: #fff; border-radius: 22px; padding: 40px 32px 36px; box-shadow: 0 16px 50px rgba(45,26,30,0.10); }
.price__amount { font-family: var(--font-head); font-size: clamp(44px, 7vw, 64px); line-height: 1; font-weight: 700; color: var(--maroon); }
.price__amount-note { font-size: 14px; color: var(--muted); margin-top: 8px; }
.price__list { list-style: none; margin: 28px auto; padding: 0; max-width: 420px; text-align: left; display: flex; flex-direction: column; gap: 10px; }
.price__list li { position: relative; padding-left: 28px; font-size: 15px; line-height: 1.5; }
.price__list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%; background: rgba(46,125,50,0.12); color: #2e7d32; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.price__express { display: flex; align-items: flex-start; gap: 10px; max-width: 420px; margin: 0 auto 24px; padding: 14px 16px; background: var(--cream2); border: 1px solid rgba(45,26,30,0.1); border-radius: 12px; font-size: 14px; line-height: 1.45; text-align: left; cursor: pointer; }
.price__express input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--orange); flex-shrink: 0; cursor: pointer; }
.price__cta { width: 100%; max-width: 420px; }
.price__why { max-width: 600px; margin: 36px auto 0; }
.price__why h3 { font-size: clamp(19px, 1.6vw, 22px); margin: 0 0 10px; }
.price__why p { margin: 0; font-size: 15px; line-height: 1.65; opacity: 0.82; }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero__inner > * { opacity: 1; transform: none; }
  .mobile-sticky-cta { transition: none; }
}
