/* =========================================================
   MÉNOPAUSE ZEN — Landing page
   Wilfried Launay · BMoove
   ========================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Imposed palette */
  --indigo:    #1143c6;
  --framboise: #ee1c43;
  --bubblegum: #ff93b3;
  --nacre:     #fcf5f4;
  --ciel:      #d7e3ff;
  --blanc:     #ffffff;
  --marine:    #0c1f6d;

  /* Extended shades */
  --indigo-10: rgba(17, 67, 198, .10);
  --indigo-20: rgba(17, 67, 198, .20);
  --marine-60: rgba(12, 31, 109, .60);
  --marine-80: rgba(12, 31, 109, .80);
  --framboise-10: rgba(238, 28, 67, .10);
  --framboise-20: rgba(238, 28, 67, .20);
  --bubble-30: rgba(255, 147, 179, .30);

  /* Fonts */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body:    "Manrope", system-ui, sans-serif;
  --font-serif:   "Fraunces", Georgia, serif;

  /* Layout */
  --container: 1200px;
  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 32px;
  --radius-xl: 48px;

  /* Shadows */
  --shadow-sm:  0 2px 6px rgba(12, 31, 109, .06);
  --shadow:     0 10px 30px rgba(12, 31, 109, .08);
  --shadow-lg:  0 30px 80px rgba(12, 31, 109, .12);
  --shadow-glow: 0 20px 60px rgba(17, 67, 198, .25);

  /* Animations */
  --ease:      cubic-bezier(.22, 1, .36, 1);
  --ease-out:  cubic-bezier(.16, 1, .3, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--marine);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -.02em;
  color: var(--marine);
}

p { margin: 0 0 1em; }

a {
  color: var(--indigo);
  text-decoration: none;
  transition: color .25s var(--ease);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { padding: 0; margin: 0; list-style: none; }

u {
  text-decoration: none;
  background: linear-gradient(180deg, transparent 60%, var(--bubble-30) 60%);
  padding: 0 .15em;
}

em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

button { font-family: inherit; }

/* ---------- 3. Layout utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--indigo);
  padding: 8px 16px;
  background: var(--indigo-10);
  border-radius: 100px;
  margin-bottom: 16px;
}

.eyebrow--light {
  color: var(--blanc);
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
}

.section-head {
  max-width: 820px;
  margin-bottom: 64px;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -.025em;
  margin-bottom: .4em;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--marine-80);
  max-width: 660px;
}

.section-head--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.gradient-text {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--framboise) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gradient-text-2 {
  background: linear-gradient(135deg, var(--bubblegum) 0%, var(--blanc) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- 4. Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--framboise) 100%);
  color: var(--blanc);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(238, 28, 67, .3), inset 0 1px 0 rgba(255,255,255,.2);
  transition: all .35s var(--ease);
  text-decoration: none;
  letter-spacing: -.01em;
}

.btn-primary svg {
  width: 22px;
  height: 22px;
  transition: transform .35s var(--ease);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--framboise) 0%, var(--bubblegum) 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  border-radius: inherit;
  z-index: 0;
}

.btn-primary > * { position: relative; z-index: 1; }

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(238, 28, 67, .4);
  color: var(--blanc);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-primary--xl {
  font-size: 1.15rem;
  padding: 22px 40px;
}

.btn-primary--full {
  width: 100%;
  justify-content: center;
}

.btn-primary--light {
  background: var(--blanc);
  color: var(--marine);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}

.btn-primary--light::before {
  background: linear-gradient(135deg, var(--nacre) 0%, var(--ciel) 100%);
}

.btn-primary--light:hover { color: var(--marine); }

/* ---------- 5. Urgency bar ---------- */
.urgency-bar {
  background: linear-gradient(90deg, var(--marine) 0%, var(--indigo) 100%);
  color: var(--blanc);
  font-size: .9rem;
  padding: 10px 24px;
  position: relative;
  z-index: 100;
}

.urgency-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.urgency-bar__pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--framboise);
  box-shadow: 0 0 0 0 var(--framboise);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(238, 28, 67, .7); }
  70%  { box-shadow: 0 0 0 12px rgba(238, 28, 67, 0); }
  100% { box-shadow: 0 0 0 0 rgba(238, 28, 67, 0); }
}

.urgency-bar__text strong { color: var(--bubblegum); }

.urgency-bar__cta {
  color: var(--blanc);
  font-weight: 700;
  padding: 4px 14px;
  background: rgba(255,255,255,.15);
  border-radius: 100px;
  font-size: .85rem;
  transition: background .25s var(--ease);
}

.urgency-bar__cta:hover { background: rgba(255,255,255,.25); color: var(--blanc); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 120px;
  background:
    radial-gradient(ellipse 80% 50% at 80% 0%, var(--ciel) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 10% 60%, var(--nacre) 0%, transparent 65%),
    var(--blanc);
  overflow: hidden;
}

.hero__shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .45;
  animation: float 14s infinite ease-in-out;
}

.shape--1 { width: 420px; height: 420px; background: var(--ciel); top: -120px; right: -80px; animation-delay: 0s; }
.shape--2 { width: 360px; height: 360px; background: var(--bubblegum); top: 40%; left: -120px; opacity: .35; animation-delay: -4s; }
.shape--3 { width: 300px; height: 300px; background: var(--nacre); bottom: -80px; right: 20%; animation-delay: -8s; }
.shape--4 { width: 220px; height: 220px; background: var(--indigo); opacity: .08; top: 30%; right: 30%; animation-delay: -2s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -30px) scale(1.05); }
  66%      { transform: translate(-20px, 20px) scale(.98); }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 20px;
  background: var(--blanc);
  border: 1.5px solid var(--indigo-20);
  border-radius: 100px;
  color: var(--marine);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--framboise);
  animation: pulse 2s infinite;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -.03em;
}

.hero__title-end { font-size: .9em; display: inline-block; margin-top: .2em; }

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--marine-80);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.55;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--blanc);
  border: 1.5px solid rgba(17, 67, 198, .08);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.meta-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.meta-item svg {
  width: 22px;
  height: 22px;
  color: var(--indigo);
  flex-shrink: 0;
}

.meta-item div { display: flex; flex-direction: column; min-width: 0; }
.meta-item span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--marine-60);
}
.meta-item strong {
  font-family: var(--font-display);
  font-size: .98rem;
  color: var(--marine);
}

.meta-item--highlight {
  background: var(--blanc);
  border-color: var(--framboise-20);
}
.meta-item--highlight svg { color: var(--framboise); }
.meta-item--highlight strong { color: var(--framboise); }

.hero__proof {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding: 14px 20px;
  background: var(--blanc);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  max-width: 540px;
}

.hero__proof p { margin: 0; font-size: .92rem; color: var(--marine-80); }

.avatars { display: flex; flex-shrink: 0; }

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--framboise) 100%);
  color: var(--blanc);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .85rem;
  border: 2px solid var(--blanc);
  margin-left: -10px;
}
.avatar:first-child { margin-left: 0; }
.avatar--1 { background: linear-gradient(135deg, var(--bubblegum), var(--framboise)); }
.avatar--2 { background: linear-gradient(135deg, var(--indigo), var(--marine)); }
.avatar--3 { background: linear-gradient(135deg, var(--framboise), var(--indigo)); }
.avatar--4 { background: linear-gradient(135deg, var(--marine), var(--bubblegum)); }
.avatar--5 {
  background: var(--ciel);
  color: var(--marine);
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__visual-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 60%, var(--ciel) 0%, transparent 70%);
  z-index: 0;
}

.hero__visual-bg::before {
  content: "";
  position: absolute;
  inset: 12% 8%;
  background: linear-gradient(135deg, var(--ciel) 0%, var(--bubblegum) 100%);
  border-radius: 50%;
  opacity: .5;
  filter: blur(40px);
}

.hero__visual-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(12, 31, 109, .25));
  animation: floatImg 6s infinite ease-in-out;
}

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

.hero__visual-badge {
  position: absolute;
  background: var(--blanc);
  padding: 12px 18px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .88rem;
  color: var(--marine);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  border: 1.5px solid rgba(17, 67, 198, .06);
  animation: badgeFloat 5s infinite ease-in-out;
}

.hero__visual-badge--top {
  top: 8%;
  left: -10%;
  animation-delay: 0s;
}

.hero__visual-badge--bottom {
  bottom: 12%;
  right: -5%;
  animation-delay: -2.5s;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--marine) 100%);
  color: var(--blanc);
  border-color: transparent;
}

.hero__visual-badge--bottom svg {
  width: 18px;
  height: 18px;
  color: var(--bubblegum);
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-8px) rotate(2deg); }
}

.tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--framboise);
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--marine-60);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--marine-60), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--framboise);
  animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}

/* ---------- 7. Trust bar ---------- */
.trust-bar {
  background: var(--marine);
  color: var(--blanc);
  padding: 28px 0;
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--bubblegum) 0%, var(--ciel) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.trust-item span {
  font-size: .85rem;
  opacity: .8;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

/* ---------- 8. Problem section ---------- */
.problem {
  padding: 120px 0;
  background: var(--nacre);
  position: relative;
  overflow: hidden;
}

.problem::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: var(--ciel);
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
}

.problem .container { position: relative; z-index: 1; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.problem-card {
  padding: 28px;
  background: var(--blanc);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--framboise), var(--bubblegum));
  transition: height .4s var(--ease);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.problem-card:hover::before { height: 100%; }

.problem-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: inline-block;
}

.problem-card p {
  margin: 0;
  color: var(--marine);
  font-size: 1rem;
  line-height: 1.55;
}

.problem-verdict {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.problem-verdict p {
  font-size: 1.25rem;
  font-family: var(--font-display);
  color: var(--marine);
}

.problem-verdict__highlight {
  font-size: clamp(1.4rem, 3vw, 1.9rem) !important;
  margin-top: 20px;
  font-weight: 700;
  line-height: 1.3;
}

/* ---------- 9. Pivot section ---------- */
.pivot {
  padding: 120px 0;
  background: var(--blanc);
  position: relative;
}

.pivot-card {
  background: linear-gradient(135deg, var(--marine) 0%, var(--indigo) 60%, var(--framboise) 100%);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  color: var(--blanc);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pivot-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 147, 179, .4) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.pivot-card::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(215, 227, 255, .25) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.pivot-card__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.pivot-title {
  color: var(--blanc);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 32px;
  line-height: 1.15;
}

.pivot-title em { color: var(--bubblegum); font-style: italic; }

.pivot-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
  max-width: 720px;
  margin: 0 auto 20px;
}

.pivot-card p strong { color: var(--blanc); }

.pivot-highlight {
  font-size: 1.2rem !important;
  padding: 24px 32px;
  margin-top: 32px !important;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.15);
}

/* ---------- 10. Secrets ---------- */
.secrets {
  padding: 120px 0;
  background: var(--nacre);
  position: relative;
  overflow: hidden;
}

.secrets::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -200px;
  width: 400px;
  height: 400px;
  background: var(--bubblegum);
  border-radius: 50%;
  filter: blur(120px);
  opacity: .25;
}

.secrets .container { position: relative; z-index: 1; }

.secrets-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 80px;
}

.secret {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
  padding: 48px;
  background: var(--blanc);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  overflow: hidden;
}

.secret:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.secret::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--ciel) 0%, transparent 60%);
  transform: translate(30%, -30%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}

.secret:hover::before { opacity: 1; }

.secret--reverse { direction: rtl; }
.secret--reverse > * { direction: ltr; }

.secret__number {
  position: relative;
  height: 220px;
  display: grid;
  place-items: center;
}

.secret__num-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--framboise) 100%);
  border-radius: 24px;
  transform: rotate(-6deg);
  box-shadow: var(--shadow-glow);
}

.secret:nth-child(2) .secret__num-bg { transform: rotate(6deg); background: linear-gradient(135deg, var(--framboise) 0%, var(--bubblegum) 100%); }
.secret:nth-child(3) .secret__num-bg { transform: rotate(-3deg); background: linear-gradient(135deg, var(--marine) 0%, var(--indigo) 100%); }

.secret__num {
  position: relative;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--blanc);
  line-height: 1;
  z-index: 1;
  letter-spacing: -.05em;
}

.secret__content { min-width: 0; }

.secret__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--framboise);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.secret__title {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.secret__lead {
  font-size: 1.15rem;
  color: var(--indigo);
  font-weight: 500;
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-style: italic;
}

.secret__content p {
  color: var(--marine-80);
  font-size: 1rem;
  line-height: 1.65;
}

.secret__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--nacre);
  color: var(--marine);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid rgba(17, 67, 198, .08);
}

.secrets-cta {
  text-align: center;
  padding: 48px 24px;
  background: var(--blanc);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-width: 780px;
  margin: 0 auto;
}

.secrets-cta p {
  font-size: 1.25rem;
  font-family: var(--font-display);
  color: var(--marine);
  margin-bottom: 24px;
}

/* ---------- 11. Expert ---------- */
.expert {
  padding: 120px 0;
  background: var(--blanc);
  position: relative;
}

.expert-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.expert-visual {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.expert-visual__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ciel) 0%, var(--bubblegum) 100%);
  border-radius: 50% 50% 46% 54% / 60% 50% 50% 40%;
  transform: rotate(-8deg);
  z-index: 0;
  animation: blobRotate 18s infinite linear;
}

@keyframes blobRotate {
  0%   { border-radius: 50% 50% 46% 54% / 60% 50% 50% 40%; transform: rotate(-8deg); }
  50%  { border-radius: 60% 40% 54% 46% / 40% 60% 40% 60%; transform: rotate(4deg); }
  100% { border-radius: 50% 50% 46% 54% / 60% 50% 50% 40%; transform: rotate(-8deg); }
}

.expert-visual__img {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 25px 50px rgba(12, 31, 109, .25));
}

.expert-visual__badge {
  position: absolute;
  bottom: 10%;
  right: -20px;
  padding: 20px 24px;
  background: var(--blanc);
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.2;
  color: var(--marine);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.expert-visual__badge svg {
  width: 32px;
  height: 32px;
  color: var(--framboise);
}

.expert-lead {
  font-size: 1.2rem;
  color: var(--indigo);
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-weight: 500;
}

.expert-credentials {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.expert-credentials li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.55;
}

.check {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--framboise) 100%);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.check::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--blanc);
  border-bottom: 2px solid var(--blanc);
  transform: rotate(-45deg) translate(1px, -1px);
}

.check--pink { background: linear-gradient(135deg, var(--bubblegum) 0%, var(--framboise) 100%); }

.expert-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--marine);
  padding: 24px 28px;
  background: var(--nacre);
  border-left: 4px solid var(--framboise);
  border-radius: 0 16px 16px 0;
  margin-top: 32px;
}

/* ---------- 12. Countdown section ---------- */
.countdown-section {
  padding: 0 0 40px;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.countdown-card {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--marine) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: var(--blanc);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.countdown-card__shapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.cd-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.cd-shape--1 { width: 350px; height: 350px; background: var(--framboise); opacity: .4; top: -100px; right: -80px; }
.cd-shape--2 { width: 300px; height: 300px; background: var(--bubblegum); opacity: .3; bottom: -100px; left: -50px; }

.countdown-card__content { position: relative; z-index: 1; }

.countdown-card .eyebrow {
  margin-bottom: 24px;
}

.countdown {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  margin: 24px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.cd-unit {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  padding: 18px 12px;
  border-radius: 18px;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cd-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  color: var(--blanc);
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}

.cd-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-top: 8px;
}

.cd-sep {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(255,255,255,.35);
  line-height: 1;
}

.countdown-note {
  margin: 0;
  color: rgba(255,255,255,.85);
  font-size: 1rem;
}

/* ---------- 13. Form section ---------- */
.form-section {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 147, 179, .3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(17, 67, 198, .12) 0%, transparent 60%),
    linear-gradient(180deg, var(--nacre) 0%, var(--ciel) 100%);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(17, 67, 198, .06) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: .5;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "left right";
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.form-left  { grid-area: left; }
.form-right { grid-area: right; }

.form-benefits {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-benefits li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1.02rem;
  line-height: 1.55;
}

.form-reassurance {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--blanc);
  border-radius: 16px;
  margin-top: 32px;
  box-shadow: var(--shadow-sm);
}

.form-reassurance svg {
  width: 32px;
  height: 32px;
  color: var(--indigo);
  flex-shrink: 0;
}

.form-reassurance p {
  margin: 0;
  font-size: .95rem;
  color: var(--marine-80);
}

/* Form card — THE conversion hotspot */
.form-right {
  position: relative;
  isolation: isolate;
}

/* Animated colored halo behind the card */
.form-right::before {
  content: "";
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(circle at 25% 20%, rgba(17, 67, 198, .35) 0%, transparent 55%),
    radial-gradient(circle at 75% 85%, rgba(238, 28, 67, .30) 0%, transparent 55%);
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
  animation: formHalo 7s ease-in-out infinite;
}

@keyframes formHalo {
  0%, 100% { opacity: .55; transform: scale(1); }
  50%      { opacity: .85; transform: scale(1.04); }
}

.form-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 48px 40px 40px;
  box-shadow:
    0 40px 90px -20px rgba(17, 67, 198, .35),
    0 15px 35px -10px rgba(238, 28, 67, .18),
    0 0 0 1px rgba(17, 67, 198, .08);
  position: relative;
  overflow: hidden;
}

/* Top gradient strip -- makes the card instantly recognizable as the primary action */
.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--indigo) 0%, var(--framboise) 60%, var(--bubblegum) 100%);
  z-index: 3;
}

/* Decorative soft blob */
.form-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: linear-gradient(135deg, var(--bubblegum) 0%, var(--framboise) 100%);
  border-radius: 50%;
  opacity: .1;
  pointer-events: none;
}

.form-card__header { text-align: center; margin-bottom: 28px; position: relative; }

.form-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--bubblegum) 0%, var(--framboise) 100%);
  color: var(--blanc);
  border-radius: 100px;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(238, 28, 67, .25);
}

.form-card__header h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.form-card__header p {
  margin: 0;
  color: var(--marine-80);
  font-size: .95rem;
}

.form-card__header #remainingSpots { color: var(--framboise); font-weight: 700; }

/* Fields */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--marine);
  letter-spacing: .02em;
}

.form-field input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 16px 18px;
  border: 1.5px solid rgba(17, 67, 198, .15);
  border-radius: 14px;
  background: var(--nacre);
  color: var(--marine);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  width: 100%;
}

.form-field input:focus {
  outline: none;
  border-color: var(--indigo);
  background: var(--blanc);
  box-shadow: 0 0 0 4px var(--indigo-10);
}

.form-field input:invalid:not(:placeholder-shown) {
  border-color: var(--framboise);
}

.form .btn-primary {
  margin-top: 8px;
}

.form-small {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 0;
  font-size: .8rem;
  color: var(--marine-60);
}

.form-small svg {
  width: 14px;
  height: 14px;
}

.form-card__footer {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 67, 198, .08);
  text-align: center;
}

.form-card__footer p {
  margin: 8px 0 0;
  font-size: .88rem;
  color: var(--marine-80);
  line-height: 1.45;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  color: #fbbf24;
  font-size: 1.1rem;
}

/* ---------- 14. Testimonials ---------- */
.testimonials {
  padding: 120px 0;
  background: var(--blanc);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--nacre);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.testimonial .stars {
  justify-content: flex-start;
  margin-bottom: 16px;
}

.testimonial blockquote {
  margin: 0 0 20px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--marine);
  font-family: var(--font-serif);
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blanc);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-avatar--pink   { background: linear-gradient(135deg, var(--bubblegum), var(--framboise)); }
.testi-avatar--indigo { background: linear-gradient(135deg, var(--ciel), var(--indigo)); }
.testi-avatar--marine { background: linear-gradient(135deg, var(--marine), var(--indigo)); }

.testimonial figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--marine);
}

.testimonial figcaption span {
  font-size: .85rem;
  color: var(--marine-60);
}

/* Featured testimonial (dark gradient) -- must come after base rules to override */
.testimonial.testimonial--featured {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--marine) 100%);
  color: var(--blanc);
  box-shadow: var(--shadow-lg);
}

.testimonial.testimonial--featured blockquote {
  color: var(--blanc);
}

.testimonial.testimonial--featured figcaption strong {
  color: var(--blanc);
}

.testimonial.testimonial--featured figcaption span {
  color: rgba(255, 255, 255, .75);
}

.testimonial.testimonial--featured .testi-avatar {
  background: linear-gradient(135deg, var(--bubblegum) 0%, var(--blanc) 100%);
  color: var(--marine);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .2);
}

/* ---------- 15. FAQ ---------- */
.faq {
  padding: 120px 0;
  background: var(--nacre);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--blanc);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .25s var(--ease);
}

.faq-item[open] { box-shadow: var(--shadow); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--marine);
  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-family: var(--font-body);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--indigo);
  transition: transform .25s var(--ease);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 28px 24px;
  color: var(--marine-80);
  line-height: 1.65;
}

.faq-body p { margin: 0; }

/* ---------- 16. Final CTA ---------- */
.final-cta {
  padding: 120px 0;
  background: var(--blanc);
}

.final-cta__card {
  background: linear-gradient(135deg, var(--marine) 0%, var(--indigo) 50%, var(--framboise) 100%);
  border-radius: var(--radius-xl);
  padding: 100px 40px;
  text-align: center;
  color: var(--blanc);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.final-cta__shapes { position: absolute; inset: 0; pointer-events: none; }

.fc-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.fc-shape--1 { width: 500px; height: 500px; background: var(--bubblegum); opacity: .35; top: -150px; right: -100px; }
.fc-shape--2 { width: 400px; height: 400px; background: var(--ciel); opacity: .25; bottom: -100px; left: -100px; }

.final-cta__content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }

.final-cta h2 {
  color: var(--blanc);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

.final-cta p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__note {
  margin: 20px auto 0 !important;
  font-size: .92rem !important;
  color: rgba(255,255,255,.7) !important;
  text-align: center;
}

/* ---------- 17. Footer ---------- */
.site-footer {
  background: var(--marine);
  color: rgba(255,255,255,.8);
  padding: 60px 0 30px;
  font-size: .92rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand strong {
  font-family: var(--font-display);
  color: var(--blanc);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  margin: 0;
  color: rgba(255,255,255,.65);
  max-width: 340px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: flex-start;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255,255,255,.8);
  font-weight: 500;
  transition: color .25s var(--ease);
}

.footer-links a:hover { color: var(--bubblegum); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom p {
  margin: 0;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}

.footer-disclaimer {
  font-size: .75rem !important;
  line-height: 1.55;
  color: rgba(255,255,255,.45) !important;
}

/* ---------- 18. Sticky mobile CTA ---------- */
.sticky-mobile-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 99;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--framboise) 100%);
  color: var(--blanc);
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  border-radius: 100px;
  box-shadow: 0 16px 40px rgba(238, 28, 67, .4);
  animation: bounceIn .6s var(--ease) .5s backwards;
}

@keyframes bounceIn {
  0%   { transform: translateY(100px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ---------- 19. Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal:nth-child(1) { transition-delay: .05s; }
.hero .reveal:nth-child(2) { transition-delay: .15s; }
.hero .reveal:nth-child(3) { transition-delay: .25s; }
.hero .reveal:nth-child(4) { transition-delay: .35s; }
.hero .reveal:nth-child(5) { transition-delay: .45s; }
.hero .reveal:nth-child(6) { transition-delay: .55s; }

/* ---------- 20. Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__visual {
    max-width: 380px;
    margin: 0 auto;
  }

  .hero__visual-badge--top,
  .hero__visual-badge--bottom { display: none; }

  .expert-grid { grid-template-columns: 1fr; gap: 50px; }
  .expert-visual { max-width: 360px; }

  /* Form first on mobile/tablet so the sticky CTA lands on the form card */
  .form-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "right"
      "left";
    gap: 40px;
  }
}

@media (max-width: 768px) {
  body { font-size: 16px; }

  .urgency-bar { padding: 8px 12px; font-size: .82rem; }
  .urgency-bar__inner { gap: 12px; }
  .urgency-bar__cta { font-size: .78rem; padding: 3px 10px; }

  .hero { padding: 40px 0 60px; }
  .hero__title { font-size: 2rem; }
  .hero__subtitle { font-size: 1.05rem; margin-bottom: 28px; }
  .hero__meta { grid-template-columns: 1fr; gap: 10px; }
  .meta-item { padding: 14px 16px; }
  .hero__proof { flex-direction: column; text-align: center; padding: 14px; border-radius: 20px; }
  .avatars { justify-content: center; }
  .hero__scroll-indicator { display: none; }

  .trust-grid { flex-direction: column; gap: 16px; }
  .trust-divider { width: 40px; height: 1px; }
  .trust-item { flex-direction: row; justify-content: center; gap: 10px; text-align: left; }
  .trust-item strong { font-size: 1.3rem; }

  .problem, .pivot, .secrets, .expert, .testimonials, .faq, .final-cta {
    padding: 70px 0;
  }

  /* Tighter top padding on the form section so the card lands immediately in view */
  .form-section { padding: 40px 0 70px; }

  .pivot-card { padding: 56px 28px; border-radius: var(--radius-lg); }
  .pivot-highlight { padding: 20px 22px; font-size: 1.05rem !important; }

  .secret {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
  }
  .secret__number { height: 120px; max-width: 160px; margin: 0 auto; }
  .secret__num { font-size: 3.5rem; }
  .secret--reverse { direction: ltr; }

  .expert-credentials li { font-size: .95rem; }
  .expert-visual__badge { bottom: 5%; right: 5%; padding: 14px 18px; font-size: .82rem; }

  .countdown-card { padding: 40px 24px; border-radius: var(--radius); }
  .countdown { gap: 8px; }
  .cd-unit { min-width: 70px; padding: 14px 8px; }
  .cd-sep { font-size: 1.5rem; }

  .form-card { padding: 34px 22px 28px; border-radius: var(--radius); }
  .form-card__header { margin-bottom: 20px; }
  .form-card__header h3 { font-size: 1.25rem; }
  .form-card__footer { margin-top: 20px; padding-top: 18px; }
  .form { gap: 12px; }
  .form-field input { padding: 14px 16px; }

  .final-cta__card { padding: 70px 28px; border-radius: var(--radius-lg); }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { padding-top: 20px; }

  .sticky-mobile-cta { display: flex; }

  .btn-primary { padding: 16px 26px; font-size: 1rem; }
  .btn-primary--xl { padding: 18px 30px; font-size: 1.05rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.7rem; }
  .section-title { font-size: 1.5rem; }
  .countdown { gap: 6px; }
  .cd-unit { min-width: 60px; padding: 12px 6px; border-radius: 12px; }
  .cd-value { font-size: 2rem; }
  .cd-label { font-size: 9px; }
  .cd-sep { display: none; }
}

/* ---------- 21. Prefers reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   22. Thank-you page (merci.php)
   ========================================================= */

.urgency-bar--success {
  background: linear-gradient(90deg, #0c5c3f 0%, var(--indigo) 100%);
}

.urgency-bar--success .urgency-bar__pulse {
  background: #22c55e;
  box-shadow: 0 0 0 0 #22c55e;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, .7); }
  70%  { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.urgency-bar--success .urgency-bar__text strong { color: #86efac; }

/* Compact spacing on the merci page (plus aéré sur l'accueil, plus resserré ici) */
.page-merci .section-head { margin-bottom: 36px; }
.page-merci .pivot { padding: 70px 0; }
.page-merci .pivot-card { padding: 60px 40px; }

/* Success hero */
.merci-hero {
  position: relative;
  padding: 56px 0 48px;
  background: linear-gradient(180deg, var(--nacre) 0%, var(--blanc) 100%);
  overflow: hidden;
}

.merci-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  text-align: center;
}

.merci-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 14px;
  background: rgba(34, 197, 94, .12);
  color: #15803d;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.merci-hero__badge svg {
  width: 26px;
  height: 26px;
  color: #15803d;
}

.merci-hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.merci-hero__subtitle {
  font-size: 1.15rem;
  color: var(--marine-80);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.55;
}

/* Countdown embedded in merci hero */
.merci-countdown {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 40px;
  background: linear-gradient(135deg, var(--marine) 0%, var(--indigo) 100%);
  color: var(--blanc);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.merci-countdown__label {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
}

.merci-countdown .countdown {
  display: flex;
  gap: 14px;
  align-items: center;
}

.merci-countdown .cd-unit {
  background: rgba(255, 255, 255, .1);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  min-width: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, .1);
}

.merci-countdown .cd-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--blanc);
}

.merci-countdown .cd-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}

.merci-countdown .cd-sep {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: rgba(255, 255, 255, .4);
}

/* Calendar section */
.calendar-section {
  padding: 70px 0;
  background: var(--blanc);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.cal-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--blanc);
  border: 2px solid rgba(17, 67, 198, .12);
  border-radius: var(--radius);
  color: var(--marine);
  text-decoration: none;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.cal-btn:hover {
  transform: translateY(-3px);
  border-color: var(--indigo);
  box-shadow: var(--shadow);
  color: var(--marine);
}

.cal-btn__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}

.cal-btn__icon svg {
  width: 48px;
  height: 48px;
}

.cal-btn__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}

.cal-btn__text strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--marine);
}

.cal-btn__text span {
  font-size: .82rem;
  color: var(--marine-60);
}

.cal-btn__arrow {
  width: 20px;
  height: 20px;
  color: var(--indigo);
  flex-shrink: 0;
  transition: transform .25s var(--ease);
}

.cal-btn:hover .cal-btn__arrow { transform: translateX(3px); }

.calendar-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 680px;
  margin: 24px auto 0;
  padding: 12px 22px;
  background: var(--nacre);
  border-radius: 100px;
  font-size: .9rem;
  color: var(--marine-80);
  text-align: center;
}

.calendar-note svg {
  width: 18px;
  height: 18px;
  color: var(--indigo);
  flex-shrink: 0;
}

/* Next steps */
.next-steps {
  padding: 70px 0;
  background: var(--nacre);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.step-card {
  position: relative;
  padding: 40px 32px 32px;
  background: var(--blanc);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-card__num {
  position: absolute;
  top: -14px;
  left: 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .05em;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--framboise) 100%);
  color: var(--blanc);
  border-radius: 100px;
  box-shadow: 0 6px 18px rgba(238, 28, 67, .28);
}

.step-card__icon {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step-card p {
  margin: 0;
  color: var(--marine-80);
  font-size: .98rem;
  line-height: 1.55;
}

.step-card--highlight {
  background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
  border: 1px solid #ffd54f;
}

.step-card--highlight .step-card__num {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 6px 18px rgba(217, 119, 6, .3);
}

/* "What to expect" list (reuses .pivot but adds custom list) */
.expect-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.expect-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.expect-item p {
  margin: 0;
  color: rgba(255, 255, 255, .92);
  line-height: 1.55;
}

.expect-item p strong { color: var(--blanc); }

.expect-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--bubblegum) 0%, var(--framboise) 100%);
  color: var(--blanc);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
}

/* Share section */
.share-section {
  padding: 70px 0 90px;
  background: var(--blanc);
}

.share-card {
  background: linear-gradient(135deg, var(--nacre) 0%, var(--ciel) 100%);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.share-card__content {
  max-width: 720px;
  margin: 0 auto;
}

.share-card p {
  font-size: 1.05rem;
  color: var(--marine-80);
  margin-bottom: 24px;
}

.share-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--blanc);
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  text-decoration: none;
  color: var(--marine);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.share-btn svg {
  width: 20px;
  height: 20px;
}

.share-btn--whatsapp:hover { color: #25D366; }
.share-btn--facebook:hover { color: #1877F2; }
.share-btn--email:hover    { color: var(--indigo); }

/* Merci responsive */
@media (max-width: 768px) {
  .merci-hero { padding: 36px 0 32px; }
  .merci-hero__title { font-size: 1.9rem; }
  .merci-hero__subtitle { font-size: 1rem; margin-bottom: 24px; }

  .merci-countdown { padding: 22px 18px; width: 100%; box-sizing: border-box; }
  .merci-countdown .countdown { gap: 8px; }
  .merci-countdown .cd-unit { min-width: 62px; padding: 10px 8px; }
  .merci-countdown .cd-value { font-size: 1.6rem; }
  .merci-countdown .cd-sep { font-size: 1.2rem; }

  .calendar-section, .next-steps, .share-section { padding: 50px 0; }
  .page-merci .pivot { padding: 50px 0; }
  .page-merci .pivot-card { padding: 44px 24px; }

  .cal-btn { padding: 14px 16px; }
  .cal-btn__icon, .cal-btn__icon svg { width: 40px; height: 40px; }

  .share-card { padding: 44px 24px; border-radius: var(--radius-lg); }
  .share-buttons { flex-direction: column; align-items: stretch; }
  .share-btn { justify-content: center; }
}

@media (max-width: 480px) {
  .merci-countdown .cd-sep { display: inline; font-size: 1rem; }
}

