﻿:root {
  --cream: #fbf5f1;
  --shell: #ede4db;
  --blush: #f5e8e4;
  --gold: #d2a66b;
  --gold-dark: #a8793c;
  --navy: #19243e;
  --eucalyptus: #879d8f;
  --mauve: #de99d6;
  --orange: #d2a66b;
  --orange-soft: #e5bf88;
  --teal: #19243e;
  --teal-dark: #19243e;
  --ink: #19243e;
  --muted: #626862;
  --white: #fffaf7;
  --line: rgba(210, 166, 107, .28);
  --shadow: 0 18px 46px rgba(25, 36, 62, .10);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 12%, rgba(25, 36, 62, .06), transparent 28%),
    radial-gradient(circle at 6% 5%, rgba(237, 228, 219, .78), transparent 28%),
    linear-gradient(180deg, #fffaf7 0%, var(--cream) 100%);
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 8px clamp(18px, 4vw, 54px);
  background: rgba(255, 250, 247, .96);
  border-bottom: 1px solid rgba(210, 166, 107, .28);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 116px;
  height: auto;
  border-radius: 0;
  padding: 6px;
  background: var(--navy);
  box-shadow: 0 10px 26px rgba(25, 36, 62, .14);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(210, 166, 107, .32);
  background: rgba(255, 250, 247, .9);
}

.main-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border-right: 1px solid rgba(210, 166, 107, .24);
  color: var(--navy);
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--gold-dark);
  background: var(--shell);
}

.audio-nav {
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(210, 166, 107, .5);
  background: var(--gold-soft);
  color: var(--navy);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.audio-nav:hover {
  background: var(--gold);
}

.main-nav a.is-active {
  color: var(--white);
  background: var(--navy);
}

.main-nav a:last-child {
  border-right: 0;
}

.account-link {
  color: var(--white) !important;
  background: var(--navy);
}

.account-link:hover {
  color: var(--white) !important;
  background: var(--gold-dark) !important;
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--navy);
  font-weight: 700;
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 76px);
}

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

.hero {
  display: block;
  min-height: auto;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(255,250,247,.96) 0%, rgba(255,250,247,.82) 52%, rgba(255,250,247,.35) 100%),
    url("assets/brand/hero-maternity.jpg") right center / min(58vw, 760px) auto no-repeat;
}

.hero::after,
.soft-band::before,
.final-cta::before,
.final-cta::after,
.site-footer::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::after {
  left: -4vw;
  right: -4vw;
  bottom: -62px;
  height: 128px;
  border-top: 2px solid rgba(210, 166, 107, .9);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, .96) 0 2px, transparent 3px),
    radial-gradient(circle at 25% 30%, rgba(210, 166, 107, .5) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, .9) 0 2px, transparent 3px),
    radial-gradient(circle at 77% 28%, rgba(210, 166, 107, .48) 0 1px, transparent 2px),
    radial-gradient(ellipse at 50% 0%, rgba(255, 235, 210, .45), transparent 62%);
  opacity: .86;
}

.kicker,
.spaced {
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.spaced {
  letter-spacing: .42em;
}

.hero-topline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 5px 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(210, 166, 107, .34);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 800;
}

.hero-logo {
  width: min(260px, 56vw);
  margin: 0 auto 22px;
  border-radius: 0;
  padding: 12px;
  background: var(--navy);
  box-shadow: 0 24px 58px rgba(25, 36, 62, .18);
}

.hero-subtitle {
  max-width: 760px;
  margin: 6px auto 26px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 21px);
}

.hero-welcome {
  margin-top: 18px;
  margin-bottom: 24px;
  color: var(--gold-dark);
  font-family: "Parisienne", cursive;
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(15px, 2vw, 20px);
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(260px, .72fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(210, 166, 107, .28);
  border-radius: 18px;
  background: rgba(255, 250, 247, .88);
  box-shadow: var(--shadow);
  text-align: left;
}

.hero::before {
  content: "Grossesse Zen";
  display: block;
  margin: 0 auto 4px;
  color: var(--gold-dark);
  font-family: "Parisienne", cursive;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}

h1,
h2,
h3 {
  color: var(--navy);
}

.offer h3:nth-child(n),
.benefit-grid h3,
.emotion-grid h3 {
  color: var(--teal-dark);
}

h1 {
  max-width: 760px;
  font-size: clamp(30px, 4.2vw, 56px);
}

h2 {
  font-size: clamp(32px, 4.2vw, 58px);
}

h3 {
  font-size: clamp(19px, 1.8vw, 25px);
}

.lead {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--navy);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.section-actions {
  justify-content: center;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button.ghost {
  color: var(--gold-dark);
  background: rgba(255, 250, 247, .82);
  border: 1px solid rgba(210, 166, 107, .42);
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: var(--white);
  background: linear-gradient(135deg, #e9c486, var(--gold));
  box-shadow: 0 12px 30px rgba(210, 166, 107, .28);
}

.secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--navy);
}

.hero-photo-stack {
  position: relative;
  min-height: 420px;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-photo.main {
  width: 72%;
  margin-left: auto;
}

.hero-photo.small {
  position: absolute;
  width: 42%;
  aspect-ratio: 1 / 1;
  border: 8px solid var(--white);
}

.hero-photo.small.top {
  top: 18px;
  left: 0;
}

.hero-photo.small.bottom {
  left: 8%;
  bottom: 4px;
}

.intro {
  text-align: center;
  background:
    radial-gradient(circle at 8% 18%, rgba(210, 166, 107, .12), transparent 22%),
    radial-gradient(circle at 92% 14%, rgba(25, 36, 62, .07), transparent 24%),
    var(--white);
}

.emotion-grid,
.benefit-grid,
.offer-grid,
.blog-grid,
.media-grid {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.emotion-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.emotion-grid article,
.benefit-grid article,
.blog-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 247, .92);
}

.icon-cards article {
  background: #fffefa;
}

.icon-cards img {
  width: 74px;
  height: 74px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.emotion-grid p,
.benefit-grid p,
.offer p,
.blog-grid p,
.pro p,
.about p,
.results p {
  color: var(--muted);
}

.center-note {
  max-width: 760px;
  margin: 34px auto 0;
  color: var(--gold-dark);
  font-weight: 700;
}

.question-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 980px;
  margin: 34px auto 0;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255,250,247,.92), rgba(237,228,219,.74)),
    url("assets/brand/brand-gradient.png") right 20px bottom 16px / 220px auto no-repeat;
  border-top: 1px solid rgba(210, 166, 107, .28);
  border-bottom: 1px solid rgba(210, 166, 107, .28);
}

.question-cloud p {
  position: relative;
  margin: 0;
  padding: 12px 18px 12px 34px;
  border: 0;
  background: rgba(255, 250, 247, .72);
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
}

.question-cloud p::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.question-cloud span {
  color: var(--navy);
}

.audio-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  max-width: 980px;
  margin: 34px auto 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(210, 166, 107, .34);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: left;
}

.audio-lead h3 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 42px);
}

.audio-lead p:last-child {
  margin-bottom: 0;
}

.soft-band {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, .86) 0 2px, transparent 3px),
    radial-gradient(circle at 20% 26%, rgba(210, 166, 107, .42) 0 1px, transparent 2px),
    radial-gradient(circle at 86% 20%, rgba(255, 255, 255, .86) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 26%, rgba(210, 166, 107, .36) 0 1px, transparent 2px),
    radial-gradient(circle at 92% 74%, rgba(25, 36, 62, .08), transparent 26%),
    linear-gradient(180deg, rgba(237, 228, 219, .9), rgba(251, 245, 241, .94)),
    url("assets/brand/brand-gradient.png") right 8% bottom 10% / 280px auto no-repeat;
}

.soft-band::before {
  left: -8vw;
  right: -8vw;
  top: -64px;
  height: 128px;
  border-bottom: 2px solid rgba(210, 166, 107, .58);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  background:
    radial-gradient(circle at 24% 72%, rgba(255, 255, 255, .86) 0 2px, transparent 3px),
    radial-gradient(circle at 28% 80%, rgba(210, 166, 107, .36) 0 1px, transparent 2px),
    radial-gradient(ellipse at 50% 100%, rgba(255, 226, 199, .38), transparent 64%);
  opacity: .82;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  font-weight: 800;
}

.results {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: center;
  background: var(--white);
}

.testimonial {
  padding: 34px;
  border-radius: 20px;
  background: var(--shell);
  box-shadow: var(--shadow);
}

.score {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold-dark);
  font-size: 82px;
  font-weight: 700;
  line-height: 1;
}

blockquote {
  margin: 22px 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.18;
}

cite {
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 700;
}

.offers {
  background: var(--cream);
}

.gz-offers {
  background:
    linear-gradient(180deg, rgba(255,250,247,.94), rgba(237,228,219,.72)),
    url("assets/brand/brand-symbol.png") left 6% top 10% / 280px auto no-repeat;
}

.photo-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 34px;
  padding-bottom: 34px;
  background: var(--white);
}

.photo-band img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gz-programs {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 44px auto 0;
}

.section-intro {
  max-width: 820px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.program-helper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 34px auto 0;
}

.program-helper article {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(210, 166, 107, .26);
  background: rgba(255, 250, 247, .9);
  box-shadow: var(--shadow);
}

.program-helper h3 {
  color: var(--gold-dark);
  font-size: 24px;
}

.program-helper p {
  color: var(--muted);
}

.signature-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .75fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  max-width: 1180px;
  margin: 38px auto 0;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(210, 166, 107, .42);
  background:
    radial-gradient(circle at 82% 16%, rgba(210, 166, 107, .18), transparent 24%),
    radial-gradient(circle at 18% 88%, rgba(255, 250, 247, .12), transparent 20%),
    linear-gradient(135deg, rgba(25, 36, 62, .96), rgba(25, 36, 62, .88));
  box-shadow: 0 26px 80px rgba(25, 36, 62, .18);
}

.signature-spotlight h2 {
  margin: 8px 0 18px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(50px, 6vw, 86px);
  font-weight: 700;
  line-height: .92;
}

.signature-spotlight p {
  color: rgba(255, 250, 247, .84);
  font-size: 18px;
}

.signature-spotlight .program-eyebrow,
.signature-spotlight .program-price {
  color: var(--gold) !important;
}

.signature-spotlight .program-price {
  font-size: 28px;
}

.signature-spotlight .button {
  margin-left: 18px;
}

.signature-spotlight img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border: 10px solid rgba(255, 250, 247, .9);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .22);
}

.audio-heading {
  margin-top: 62px;
}

.gz-program {
  position: relative;
  min-height: 280px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(210, 166, 107, .26);
  border-radius: 10px;
  background: rgba(255, 250, 247, .92);
  box-shadow: 0 14px 38px rgba(25, 36, 62, .08);
  overflow: hidden;
}

.gz-programs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feel-good,
.bump-card {
  grid-column: auto;
}

.gz-program h3 {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .96;
}

.gz-program h3 span {
  color: var(--gold-dark);
}

.gz-program p {
  color: var(--muted);
}

.gz-program a:not(.button) {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-dark);
  font-weight: 800;
}

.audio-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  align-items: center;
  gap: 22px;
}

.audio-card img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  border-radius: 8px;
}

.feel-good {
  grid-column: auto;
  background: var(--white);
}

.signature-card {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,250,247,.9), rgba(237,228,219,.88)),
    url("assets/brand/brand-symbol.png") center / 260px auto no-repeat;
}

.signature-card h3 {
  max-width: 500px;
  margin: 0 auto;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: clamp(22px, 2.35vw, 34px);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.program-eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark) !important;
  font-weight: 800;
  letter-spacing: .38em;
  text-transform: uppercase;
}

.program-price {
  margin: 4px 0 18px;
  color: var(--gold-dark) !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.bump-card {
  grid-column: auto;
  grid-template-columns: 180px minmax(0, 1fr);
  background: var(--shell);
}

.parent-card {
  grid-column: span 4;
  background:
    linear-gradient(rgba(255,250,247,.9), rgba(255,250,247,.9)),
    url("assets/brand/program-parent.jpg") center / cover;
}

.dad-card {
  grid-column: span 3;
  background: var(--shell);
}

.dads-block {
  background:
    linear-gradient(180deg, var(--white), var(--shell));
}

.breaking-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto 34px;
}

.breaking-strip img {
  width: min(320px, 48vw);
  height: auto;
}

.breaking-strip span {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 700;
  line-height: 1;
}

.dads-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, .75fr) minmax(240px, .75fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.dads-intro,
.dad-offer {
  border: 1px solid rgba(210, 166, 107, .28);
  border-radius: 10px;
  background: rgba(255, 250, 247, .92);
  box-shadow: var(--shadow);
}

.dads-intro {
  padding: clamp(26px, 4vw, 44px);
  background:
    linear-gradient(rgba(255,250,247,.78), rgba(255,250,247,.9)),
    url("assets/brand/program-parent.jpg") center / cover;
}

.dads-intro h2 {
  font-size: clamp(34px, 4vw, 60px);
}

.dad-offer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  padding: 28px;
}

.dad-offer h3 {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: .96;
}

.dad-offer p {
  color: var(--muted);
}

.dad-offer.hello {
  background:
    linear-gradient(rgba(255,250,247,.9), rgba(255,250,247,.94)),
    url("assets/brand/program-daddy.jpg") right 16px top 16px / 120px auto no-repeat;
}

.dad-offer.team {
  background:
    linear-gradient(rgba(237,228,219,.88), rgba(237,228,219,.95)),
    url("assets/brand/program-parent.jpg") right 18px top 18px / 130px auto no-repeat;
}

.offer-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.offer {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(25, 36, 62, .08);
}

.offer.featured {
  grid-column: span 2;
  background: linear-gradient(155deg, var(--white), var(--shell));
}

.offer.compact {
  grid-column: span 3;
  background: var(--shell);
}

.offer img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-radius: 14px;
}

.offer-label {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 0;
  color: var(--orange) !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 48px;
  font-weight: 700;
}

.offer ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.offer .button {
  margin-top: auto;
}

.comparison {
  background: var(--white);
}

.compare-inline {
  max-width: 1120px;
  margin: 52px auto 0;
  padding-top: 38px;
  border-top: 1px solid rgba(210, 166, 107, .28);
}

.compare-table {
  max-width: 980px;
  margin: 42px auto 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fffefa;
}

.compare-table div {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-top: 1px solid var(--line);
}

.compare-table div:first-child {
  border-top: 0;
}

.compare-table span {
  padding: 18px;
}

.table-head {
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.booking {
  background:
    linear-gradient(90deg, rgba(25,36,62,.78), rgba(25,36,62,.46)),
    url("assets/brand/soft-belly.jpg") center/cover;
}

.booking-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) 380px;
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 22px;
  background: rgba(255, 250, 247, .96);
  box-shadow: var(--shadow);
}

.booking-card h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.contact-form,
.booking-direct {
  display: grid;
  gap: 14px;
}

.booking-direct {
  align-content: center;
  padding: 28px;
  border: 1px solid rgba(210, 166, 107, .28);
  background: rgba(255, 250, 247, .9);
}

.booking-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.about,
.pro {
  display: grid;
  grid-template-columns: minmax(300px, 470px) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.about {
  background: var(--shell);
}

.about img,
.pro > img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.who-block {
  background:
    linear-gradient(90deg, rgba(237,228,219,.78), rgba(255,250,247,.86)),
    var(--cream);
}

.who-photo img {
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
  object-position: center top;
  background: var(--white);
}

.who-photo {
  position: relative;
}

.who-photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -18px;
  left: 50%;
  width: 150px;
  height: 42px;
  background:
    linear-gradient(135deg, rgba(210, 166, 107, .55), rgba(237, 228, 219, .92)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.18) 0 3px, transparent 3px 7px);
  box-shadow: 0 8px 18px rgba(25, 36, 62, .12);
  transform: translateX(-50%) rotate(-4deg);
  opacity: .9;
}

.who-copy h3 {
  margin-top: 10px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3vw, 44px);
}

.who-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.who-badges span {
  display: inline-flex;
  padding: 9px 13px;
  border: 1px solid rgba(210, 166, 107, .34);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 250, 247, .82);
  font-size: 13px;
  font-weight: 800;
}

.method-proof {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(210, 166, 107, .28);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid article {
  padding: 18px;
  border: 1px solid rgba(210, 166, 107, .24);
  background: rgba(255, 250, 247, .82);
}

.proof-grid strong {
  display: block;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  line-height: 1.1;
}

.proof-grid p {
  margin-bottom: 0;
}

.pro {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  background: var(--white);
}

.pro-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.pro-list div {
  padding: 22px;
  border-radius: 16px;
  background: var(--shell);
}

.media {
  background: var(--cream);
}

.media-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
}

.media-grid img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.media-proof-card {
  display: grid;
  align-content: center;
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
}

.media-proof-card strong {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1.08;
}

.media-proof-card span {
  margin-top: 10px;
  color: var(--gold-dark);
  font-weight: 700;
}

.faq {
  background: var(--shell);
}

.final-cta {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto 72px;
  padding: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, .9) 0 2px, transparent 3px),
    radial-gradient(circle at 22% 52%, rgba(210, 166, 107, .55) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, .8) 0 2px, transparent 3px),
    linear-gradient(135deg, rgba(25, 36, 62, .96), rgba(25, 36, 62, .9)),
    url("assets/brand/brand-gradient.png") right 34px bottom 28px / 260px auto no-repeat;
  text-align: center;
}

.final-cta::before {
  left: -8%;
  right: -8%;
  top: -58px;
  height: 118px;
  border-bottom: 2px solid rgba(210, 166, 107, .76);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 226, 199, .22), transparent 62%);
  opacity: .9;
}

.final-cta::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background:
    radial-gradient(circle at 12% 70%, rgba(255, 255, 255, .92) 0 2px, transparent 3px),
    radial-gradient(circle at 18% 58%, rgba(210, 166, 107, .78) 0 1px, transparent 2px),
    radial-gradient(circle at 24% 78%, rgba(255, 244, 223, .85) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 64%, rgba(255, 255, 255, .88) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 74%, rgba(210, 166, 107, .8) 0 1px, transparent 2px),
    radial-gradient(ellipse at 50% 100%, rgba(210, 166, 107, .38), transparent 62%);
  opacity: .92;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  max-width: 760px;
  margin: 18px auto 28px;
  color: rgba(255, 250, 247, .82);
  font-size: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 42px auto 0;
}

.faq-list details {
  border: 1px solid rgba(210, 166, 107, .3);
  background: rgba(255, 250, 247, .9);
  box-shadow: 0 10px 28px rgba(25, 36, 62, .06);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--navy);
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.blog {
  background: var(--white);
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 34px clamp(18px, 5vw, 76px) 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 22% 36%, rgba(255, 250, 247, .08) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 26%, rgba(210, 166, 107, .28) 0 1px, transparent 2px),
    radial-gradient(circle at 8% 12%, rgba(210, 166, 107, .18), transparent 24%),
    var(--navy);
}

.site-footer::before {
  left: -8%;
  right: -8%;
  top: -60px;
  height: 120px;
  border-bottom: 2px solid rgba(210, 166, 107, .58);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  background:
    radial-gradient(circle at 78% 74%, rgba(255, 255, 255, .78) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 82%, rgba(210, 166, 107, .54) 0 1px, transparent 2px),
    radial-gradient(ellipse at 50% 100%, rgba(255, 226, 199, .18), transparent 62%);
  opacity: .82;
}

.footer-main {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 250px 260px;
  align-items: center;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.site-footer img {
  width: 118px;
  margin-bottom: 14px;
  border-radius: 0;
  padding: 0;
  background: var(--navy);
}

.site-footer p {
  color: rgba(255, 250, 247, .82);
}

.footer-brand p,
.footer-info p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.45;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  align-content: start;
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: start;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(210, 166, 107, .34);
  color: var(--gold);
  font-weight: 800;
}

.audio-modal {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  display: none;
}

.audio-modal.is-open {
  display: block;
}

.audio-modal-panel {
  position: relative;
  width: min(420px, calc(100vw - 28px));
  padding: 24px;
  border: 1px solid rgba(210, 166, 107, .38);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(25, 36, 62, .28);
  text-align: left;
}

.audio-modal-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3vw, 38px);
}

.audio-modal-panel p {
  color: var(--muted);
}

.audio-form {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  text-align: left;
}

.audio-form label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.audio-form input:not([type="checkbox"]) {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(210, 166, 107, .45);
  background: var(--shell);
  color: var(--navy);
  font: inherit;
}

.audio-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 4px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.audio-consent input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--navy);
}

.audio-form .button {
  width: 100%;
  margin-top: 8px;
}

.audio-download {
  display: none;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(70, 169, 173, .26);
  background: rgba(70, 169, 173, .08);
}

.audio-modal.is-submitted .audio-form {
  display: none;
}

.audio-modal.is-submitted .audio-download {
  display: block;
}

.audio-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  color: var(--navy);
  background: var(--shell);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.site-footer a {
  color: var(--gold);
  font-weight: 700;
}

.footer-cta {
  padding: 18px;
  border: 1px solid rgba(210, 166, 107, .32);
  background: rgba(255, 250, 247, .06);
  color: var(--white);
  text-align: center;
}

.footer-cta p {
  margin-top: 0;
  color: rgba(255, 250, 247, .84);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1.1;
}

.footer-cta .footer-appointment-button {
  display: inline-flex;
  min-width: 240px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  line-height: 1.15;
  text-align: center;
}

.footer-cta .footer-appointment-button span {
  display: block;
  white-space: nowrap;
}

.footer-cta .footer-appointment-button br {
  display: none;
}

.footer-legal {
  max-width: 1180px;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(210, 166, 107, .24);
  text-align: center;
}

.footer-legal p {
  margin: 6px 0;
  color: rgba(255, 250, 247, .78);
  font-size: 13px;
}

.footer-legal a {
  color: rgba(255, 250, 247, .9);
}

/* Passe visuelle proche des fichiers d'inspiration */
.site-header {
  min-height: 92px;
  padding: 12px clamp(28px, 6vw, 96px);
  background: rgba(255, 250, 247, .94);
  border-bottom: 1px solid rgba(210, 166, 107, .18);
  box-shadow: 0 8px 28px rgba(25, 36, 62, .06);
}

.brand img {
  width: 148px;
  padding: 8px;
  box-shadow: 0 10px 26px rgba(25, 36, 62, .12);
}

.main-nav {
  gap: 24px;
  border: 0;
  background: transparent;
  font-size: 14px;
}

.main-nav a {
  min-height: auto;
  padding: 0;
  border-right: 0;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--gold-dark);
  background: transparent;
}

.main-nav .calendly-link,
.account-link {
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--navy);
  box-shadow: 0 14px 28px rgba(25, 36, 62, .16);
}

.hero {
  min-height: 610px;
  padding-top: 76px;
  padding-bottom: 118px;
  background:
    radial-gradient(circle at 15% 68%, rgba(255, 255, 255, .92) 0 1px, transparent 2px),
    radial-gradient(circle at 18% 72%, rgba(210, 166, 107, .6) 0 1px, transparent 2px),
    radial-gradient(circle at 23% 76%, rgba(255, 244, 223, .86) 0 1px, transparent 2px),
    linear-gradient(90deg, rgba(255, 250, 247, .99) 0%, rgba(255, 250, 247, .9) 43%, rgba(255, 250, 247, .22) 72%),
    url("assets/brand/hero-maternity.jpg") right center / min(56vw, 790px) auto no-repeat;
  text-align: left;
}

.hero-logo,
.hero-welcome {
  display: none;
}

.hero::before {
  content: "";
  display: block;
}

.hero::after {
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  border: 0;
  border-radius: 0;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 150' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 96 C230 44 395 66 575 91 C790 121 1010 126 1440 22' fill='none' stroke='%23d2a66b' stroke-width='3'/%3E%3Cpath d='M0 104 C230 52 395 74 575 99 C790 129 1010 134 1440 30' fill='%23fffaf7' fill-opacity='.82'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat,
    radial-gradient(circle at 13% 78%, rgba(255, 255, 255, .98) 0 2px, transparent 3px),
    radial-gradient(circle at 17% 72%, rgba(210, 166, 107, .72) 0 1px, transparent 2px),
    radial-gradient(circle at 23% 85%, rgba(255, 244, 223, .88) 0 1px, transparent 2px),
    radial-gradient(ellipse at 18% 100%, rgba(210, 166, 107, .22), transparent 42%);
  opacity: 1;
}

.kicker,
.hero-subtitle {
  max-width: 560px;
  margin-left: clamp(20px, 8vw, 132px);
  margin-right: 0;
}

.hero-panel {
  display: block;
  max-width: 560px;
  margin: 18px 0 0 clamp(20px, 8vw, 132px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-panel h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: .96;
}

.hero-panel .lead {
  font-size: clamp(18px, 1.7vw, 22px);
}

.hero-photo-stack {
  display: none;
}

.button {
  border-radius: 999px;
  min-height: 54px;
  padding: 14px 28px;
}

.button.primary,
.primary {
  color: var(--navy);
  background: linear-gradient(135deg, #f3cf91, #d2a66b);
}

.button.primary::after,
.button.secondary::after {
  content: none !important;
  display: none !important;
}

.button.secondary {
  color: var(--navy);
  background: rgba(255, 250, 247, .7);
  border: 2px solid var(--navy);
}

.intro {
  padding-top: 52px;
}

.emotion-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.emotion-grid article,
.benefit-grid article {
  padding: 10px 18px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.icon-cards img {
  width: 92px;
  height: 92px;
  padding: 18px;
  border-radius: 50%;
  background: #f7e8e3;
}

.question-cloud {
  border: 0;
  background: transparent;
}

.question-cloud p {
  background: rgba(247, 232, 227, .72);
  border: 1px solid rgba(210, 166, 107, .22);
}

.soft-band {
  background:
    radial-gradient(circle at 5% 72%, rgba(255, 255, 255, .95) 0 2px, transparent 3px),
    radial-gradient(circle at 9% 78%, rgba(210, 166, 107, .45) 0 1px, transparent 2px),
    linear-gradient(90deg, rgba(251, 245, 241, .98), rgba(245, 232, 228, .92));
}

.soft-band::before {
  left: 0;
  right: 0;
  top: -1px;
  height: 112px;
  border: 0;
  border-radius: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 140' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 40 C250 95 420 65 610 42 C830 16 1040 8 1440 88' fill='none' stroke='%23d2a66b' stroke-width='2.5'/%3E%3C/svg%3E") center top / 100% 100% no-repeat;
  opacity: .95;
}

.results {
  background:
    radial-gradient(circle at 88% 20%, rgba(25, 36, 62, .08), transparent 26%),
    linear-gradient(180deg, var(--white), #f7e8e3);
}

.testimonial {
  border-radius: 8px;
  background: #f5dcd5;
}

.photo-band img,
.gz-program,
.program-helper article,
.audio-lead,
.faq-list details {
  border-radius: 8px;
}

.gz-program,
.program-helper article,
.audio-lead {
  background: rgba(255, 250, 247, .88);
  box-shadow: 0 18px 42px rgba(25, 36, 62, .08);
}

.signature-spotlight,
.final-cta {
  border-radius: 8px;
}

.final-cta {
  max-width: none;
  margin: 0;
  padding: 70px clamp(18px, 5vw, 76px);
}

.final-cta::before {
  left: 0;
  right: 0;
  top: -1px;
  height: 120px;
  border: 0;
  border-radius: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 150' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 58 C250 112 520 90 720 55 C950 16 1170 2 1440 70' fill='none' stroke='%23d2a66b' stroke-width='3'/%3E%3C/svg%3E") center top / 100% 100% no-repeat;
}

.final-cta::after {
  height: 120px;
  background:
    radial-gradient(circle at 9% 68%, rgba(255, 255, 255, .98) 0 2px, transparent 3px),
    radial-gradient(circle at 13% 58%, rgba(210, 166, 107, .92) 0 1px, transparent 2px),
    radial-gradient(circle at 17% 79%, rgba(255, 244, 223, .9) 0 1px, transparent 2px),
    radial-gradient(circle at 73% 64%, rgba(255, 255, 255, .9) 0 2px, transparent 3px),
    radial-gradient(circle at 79% 76%, rgba(210, 166, 107, .84) 0 1px, transparent 2px),
    radial-gradient(ellipse at 50% 100%, rgba(210, 166, 107, .44), transparent 62%);
}

.site-footer::before {
  left: 0;
  right: 0;
  top: -1px;
  height: 92px;
  border: 0;
  border-radius: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 120' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 38 C250 86 510 72 730 40 C990 2 1190 8 1440 58' fill='none' stroke='%23d2a66b' stroke-width='2.5'/%3E%3C/svg%3E") center top / 100% 100% no-repeat;
}

/* Corrections des vagues et brillance comme dans les inspirations */
.results::before,
.photo-band::before,
.gz-offers::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -2px;
  height: 110px;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 120' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 48 C245 88 485 72 720 42 C970 10 1190 18 1440 62' fill='none' stroke='%23d2a66b' stroke-width='2.4'/%3E%3C/svg%3E") center top / 100% 100% no-repeat,
    radial-gradient(circle at 14% 72%, rgba(255, 255, 255, .95) 0 2px, transparent 3px),
    radial-gradient(circle at 19% 78%, rgba(210, 166, 107, .5) 0 1px, transparent 2px),
    radial-gradient(ellipse at 17% 88%, rgba(210, 166, 107, .14), transparent 40%);
  opacity: .9;
}

.photo-band::before {
  top: auto;
  bottom: -22px;
  transform: scaleY(-1);
}

.gz-offers::before {
  height: 128px;
  opacity: .82;
}

.site-footer::before {
  top: -58px;
  height: 112px;
  z-index: 0;
}

.footer-main,
.footer-legal {
  position: relative;
  z-index: 1;
}

.hero .button.secondary {
  box-shadow: none;
}

/* Ajustements client v36 */
.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: var(--navy);
}

.brand img {
  width: 190px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.hero {
  background:
    linear-gradient(90deg, rgba(255,250,247,.97) 0%, rgba(255,250,247,.9) 52%, rgba(255,250,247,.58) 100%),
    url("assets/brand/hero-maternity.jpg") right center / min(54vw, 720px) auto no-repeat;
}

.hero .button.secondary {
  display: none;
}

.photo-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.photo-band img {
  aspect-ratio: 4 / 2.9;
}

.compare-table {
  max-width: 820px;
  margin-top: 26px;
  border-radius: 8px;
  font-size: 14px;
}

.compare-table div {
  grid-template-columns: 1.1fr .75fr .95fr;
}

.compare-table span {
  padding: 10px 14px;
}

.compare-inline .section-heading h2 {
  font-size: clamp(28px, 3vw, 42px);
}

/* Ajustements client v37 */
.site-header {
  background:
    radial-gradient(circle at 12% 18%, rgba(210, 166, 107, .16), transparent 22%),
    #19243e;
  border-bottom: 1px solid rgba(210, 166, 107, .34);
  box-shadow: 0 12px 32px rgba(25, 36, 62, .14);
}

.site-header::before {
  content: none;
}

.brand img {
  width: 260px;
  max-height: 88px;
  object-fit: contain;
  padding: 0;
  background: #19243e;
  box-shadow: none;
}

.main-nav a {
  color: rgba(255, 250, 247, .9);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--gold);
}

.main-nav .calendly-link,
.account-link {
  color: var(--navy) !important;
  background: linear-gradient(135deg, #f3cf91, var(--gold));
}

.program-helper h3,
.program-copy h3 {
  color: var(--gold-dark);
}

.program-name {
  color: var(--navy);
  font-weight: 800;
}

.compare-inline {
  margin-top: 20px;
  padding-top: 12px;
}

.compare-table {
  max-width: 720px;
  margin-top: 12px;
  font-size: 12px;
}

.compare-table span {
  padding: 5px 10px;
  line-height: 1.18;
}

.table-head {
  background: var(--navy);
}

.table-head span {
  color: var(--white) !important;
}

.photo-band {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.social-links {
  flex-wrap: wrap;
}

@media (max-width: 1040px) {
  .main-nav {
    position: absolute;
    inset: 82px 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav a {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(70, 169, 173, .22);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero,
  .results,
  .booking-card,
  .about,
  .pro,
  .footer-main {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .program-helper,
  .proof-grid,
  .media-grid,
  .signature-spotlight {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-panel .actions {
    justify-content: center;
  }

  .hero-photo-stack {
    max-width: 560px;
    min-height: 390px;
    margin: 0 auto;
  }

  .offer,
  .offer.featured,
  .offer.compact {
    grid-column: span 6;
  }

  .gz-program,
  .feel-good,
  .signature-card,
  .bump-card,
  .parent-card,
  .dad-card {
    grid-column: span 12;
  }

  .dads-layout {
    grid-template-columns: 1fr;
  }

  .photo-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pro > img {
    order: -1;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 58px 18px;
  }

  .site-header {
    min-height: 74px;
  }

  .brand img {
    width: 92px;
  }

  .main-nav {
    top: 74px;
  }

  .hero-photo,
  .about img,
  .pro > img {
    border-radius: 24px;
  }

  .emotion-grid,
  .benefit-grid,
  .blog-grid,
  .media-grid,
  .photo-band,
  .program-helper,
  .question-cloud,
  .audio-lead,
  .proof-grid,
  .pro-list {
    grid-template-columns: 1fr;
  }

  .hero-photo-stack {
    min-height: auto;
  }

  .hero-photo.main {
    width: 100%;
  }

  .hero-photo.small {
    position: static;
    width: 100%;
    margin-top: 14px;
    border-width: 0;
  }

  .audio-card,
  .bump-card {
    grid-template-columns: 1fr;
  }

  .signature-card h3 {
    letter-spacing: .02em;
    font-size: clamp(22px, 6vw, 32px);
  }

  .breaking-strip {
    flex-direction: column;
    text-align: center;
  }

  .compare-table {
    overflow-x: auto;
  }

  .compare-table div {
    min-width: 520px;
  }

  .site-footer nav {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-cta {
    text-align: center;
  }

  .audio-modal {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 1040px) {
  .main-nav a {
    color: var(--navy);
  }

  .main-nav .calendly-link,
  .account-link {
    color: var(--navy) !important;
  }

  .brand img {
    width: 220px;
  }

  .photo-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .brand img {
    width: 168px;
  }

  .compare-table div {
    min-width: 430px;
  }
}

/* Verrouillage final du rendu header/tableau */
.site-header {
  background: #19243e;
}

.brand img {
  width: 300px;
  max-height: 96px;
  background: #19243e;
}

.program-helper h3 {
  color: var(--gold-dark);
}

.program-copy h3 {
  color: var(--navy);
}

.compare-table {
  max-width: 690px;
  font-size: 12px;
}

.compare-table span {
  padding: 4px 9px;
}

@media (max-width: 1040px) {
  .brand img {
    width: 230px;
  }
}

@media (max-width: 760px) {
  .brand img {
    width: 178px;
  }

  .compare-table div {
    min-width: 410px;
  }
}

/* Demande client v39 : logo header plus lisible et suppression du filigrane accompagnements */
.site-header {
  min-height: 118px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 420px !important;
  max-width: 36vw;
  max-height: 96px;
}

.gz-offers {
  background:
    linear-gradient(180deg, rgba(255,250,247,.94), rgba(237,228,219,.72)) !important;
}

.gz-offers::before {
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 120' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 48 C245 88 485 72 720 42 C970 10 1190 18 1440 62' fill='none' stroke='%23d2a66b' stroke-width='2.4'/%3E%3C/svg%3E") center top / 100% 100% no-repeat,
    radial-gradient(circle at 14% 72%, rgba(255, 255, 255, .95) 0 2px, transparent 3px),
    radial-gradient(circle at 19% 78%, rgba(210, 166, 107, .5) 0 1px, transparent 2px),
    radial-gradient(ellipse at 17% 88%, rgba(210, 166, 107, .14), transparent 40%) !important;
}

@media (max-width: 1040px) {
  .brand img {
    width: 300px !important;
    max-width: 58vw;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 92px;
  }

  .brand img {
    width: 220px !important;
    max-width: 62vw;
  }
}

/* Demande client v40 : logo header encore plus grand */
.site-header {
  min-height: 118px;
}

.brand img {
  width: 520px !important;
  max-width: 42vw;
  max-height: 96px;
}

@media (max-width: 1040px) {
  .site-header {
    min-height: 118px;
  }

  .brand img {
    width: 340px !important;
    max-width: 58vw;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 92px;
  }

  .brand img {
    width: 220px !important;
    max-width: 64vw;
  }
}

/* Demande client v42 : suppression du demi-ovale parasite dans le hero */
.hero .button.secondary,
.hero .button.secondary::before,
.hero .button.secondary::after {
  display: none !important;
  content: none !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.hero::after {
  z-index: 0;
}

/* Demande client v44 : photo de fond remise, onglet Espace pro masque dans le menu */
.hero {
  background:
    linear-gradient(90deg, rgba(255,250,247,1) 0%, rgba(255,250,247,.98) 48%, rgba(255,250,247,.74) 66%, rgba(255,250,247,.22) 100%),
    url("assets/brand/hero-maternity.jpg") right center / min(54vw, 720px) auto no-repeat !important;
}

/* Demande client v48 : footer sans cadre visible autour du logo */
.site-footer {
  background: #262c42;
}

.site-footer .footer-brand img {
  width: 118px;
  padding: 0;
  background: #262c42;
  box-shadow: none;
}

.footer-logo-mask {
  display: inline-block;
  width: 116px;
  overflow: hidden;
  background: #262c42;
}

.footer-logo-mask img {
  transform: translateX(-2px);
}

.hero-photo {
  object-position: center center;
}

.hero-photo.main {
  object-position: 58% center;
}

/* Demande client v45 : supprimer l'ovale de la photo de fond et titres programmes sur une ligne */
.hero {
  background:
    linear-gradient(90deg, rgba(255,250,247,1) 0%, rgba(255,250,247,.98) 48%, rgba(255,250,247,.74) 66%, rgba(255,250,247,.22) 100%),
    url("assets/brand/hero-maternity.jpg") right center / min(54vw, 720px) auto no-repeat !important;
}

.gz-program h3 {
  white-space: nowrap;
  font-size: clamp(42px, 3.6vw, 54px);
}

.bump-card h3 {
  font-size: clamp(38px, 3.2vw, 50px);
}

@media (max-width: 760px) {
  .gz-program h3,
  .bump-card h3 {
    white-space: normal;
  }
}

/* Architecture multi-pages v61 */
.page-hero {
  min-height: 360px;
  padding-top: clamp(70px, 8vw, 110px);
  padding-bottom: clamp(58px, 7vw, 92px);
  background:
    linear-gradient(90deg, rgba(255,250,247,.98), rgba(255,250,247,.84)),
    url("assets/brand/hero-maternity.jpg") right center / min(48vw, 620px) auto no-repeat;
}

.page-hero h1,
.page-hero .lead {
  max-width: 760px;
}

.home-hero .button.secondary {
  display: inline-flex !important;
}

.stats-band {
  background:
    radial-gradient(circle at 12% 24%, rgba(255,255,255,.88) 0 2px, transparent 3px),
    linear-gradient(135deg, #19243e, #26314f);
}

.stats-band h2,
.stats-band .spaced {
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 42px auto 0;
}

.stats-grid article {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(210, 166, 107, .34);
  border-radius: 8px;
  background: rgba(255, 250, 247, .08);
  color: var(--white);
  text-align: center;
}

.stats-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(46px, 5vw, 72px);
  line-height: .9;
}

.stats-grid p {
  margin: 0;
  color: rgba(255, 250, 247, .86);
  line-height: 1.55;
}

.stats-source {
  max-width: 780px;
  margin: 28px auto 0;
  color: rgba(255, 250, 247, .62);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.pathway .benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.signature-home {
  background: var(--cream);
}

.resource-preview .program-helper article .button {
  margin-top: auto;
}

.home-partners {
  background: #fffaf7;
}

.home-partners .section-heading .spaced {
  margin-bottom: 18px;
  color: var(--gold-dark);
}

.home-partners .section-heading h2 {
  margin-top: 0;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  justify-content: center;
  align-items: center;
  gap: 86px;
  max-width: 900px;
  margin: 54px auto 0;
}

.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.partner-logo-card img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 116px;
  object-fit: contain;
}

.home-proof-strip {
  padding-top: 56px;
  padding-bottom: 56px;
}

.home-proof-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 30px auto 0;
  align-items: center;
}

.home-proof-logos a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 112px;
  text-align: center;
  color: var(--navy);
  text-decoration: none;
}

.home-proof-logos img {
  display: block;
  width: auto;
  max-width: 120px;
  max-height: 54px;
  object-fit: contain;
}

.home-proof-logos span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.text-link {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.gz-product-7-cles .site-main,
.gz-product-7-cles main,
.gz-product-7-cles .content-area {
  background: #fffaf7;
}

.gz-product-7-cles div.product {
  max-width: 880px;
  margin: 72px auto;
  padding: 56px;
  border: 1px solid rgba(210, 166, 107, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 24px 64px rgba(24, 36, 61, .08);
}

.gz-product-7-cles div.product .summary {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  text-align: center;
}

.gz-product-7-cles div.product .product_title {
  max-width: 720px;
  margin: 0 auto 20px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 6vw, 68px);
  line-height: .98;
}

.gz-product-7-cles div.product .price {
  margin: 0 0 24px;
  color: var(--gold-dark) !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  text-align: center;
}

.gz-product-7-cles .gz-product-simple-description {
  max-width: 680px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.gz-product-7-cles .gz-product-includes {
  max-width: 620px;
  margin: 0 auto 34px;
  padding: 30px;
  border: 1px solid rgba(210, 166, 107, .24);
  border-radius: 8px;
  background: #fffdfb;
  text-align: left;
}

.gz-product-7-cles .gz-product-includes h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 30px;
  text-align: center;
}

.gz-product-7-cles .gz-product-includes ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--navy);
  font-size: 17px;
}

.gz-product-7-cles .gz-product-includes li::before {
  content: "•";
  margin-right: 10px;
  color: var(--gold);
  font-weight: 700;
}

.gz-product-7-cles form.cart {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0;
}

.gz-product-7-cles form.cart .quantity {
  display: none;
}

.gz-product-7-cles .single_add_to_cart_button {
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--navy) !important;
  color: #fffaf7 !important;
  padding: 15px 32px !important;
  font-weight: 800 !important;
}

.gz-product-7-cles .single_add_to_cart_button:hover {
  background: #253452 !important;
}

.mini-about {
  grid-template-columns: minmax(260px, .55fr) minmax(0, 1fr);
}

.offers-page .signature-spotlight {
  margin-top: 0;
}

.multipage-offers {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin: 38px auto 0;
}

.multipage-offers .offer,
.multipage-offers .offer.featured,
.multipage-offers .offer.compact {
  grid-column: auto;
}

.multipage-offers .offer {
  min-height: 430px;
}

.multipage-offers .offer .price {
  margin: auto 0 14px;
  text-align: center;
}

.multipage-offers .offer .button {
  width: 100%;
  max-width: 230px;
  margin: 0 auto;
  justify-content: center;
}

.new-compare {
  max-width: 1120px;
}

.new-compare div {
  grid-template-columns: 1.05fr .85fr 1.1fr 1fr;
}

.new-compare span {
  padding: 12px 14px;
  font-size: 14px;
}

.main-nav a.is-active {
  color: var(--gold) !important;
}

.main-nav a.account-link.is-active {
  color: var(--navy) !important;
  background: linear-gradient(135deg, #f3cf91, var(--gold));
}

@media (max-width: 1040px) {
  .pathway .benefit-grid,
  .stats-grid,
  .multipage-offers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .new-compare {
    overflow-x: auto;
  }

  .new-compare div {
    min-width: 760px;
  }
}

@media (max-width: 760px) {
  .page-hero {
    background: linear-gradient(180deg, rgba(255,250,247,.98), rgba(255,250,247,.9));
  }

  .pathway .benefit-grid,
  .stats-grid,
  .multipage-offers,
  .partner-logo-grid,
  .mini-about {
    grid-template-columns: 1fr;
  }

  .stats-grid article,
  .multipage-offers .offer {
    padding: 22px;
  }
}

/* Pages lÃ©gales v62 */
.legal-page {
  background: var(--white);
}

.legal-content {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 247, .9);
  box-shadow: var(--shadow);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: clamp(28px, 3vw, 42px);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
}

/* Liens lÃ©gaux cliquables v63 */
.footer-legal a.legal-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 2px 4px;
  position: relative;
  z-index: 5;
}

/* Bandeau cookies v64 */
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 400;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(210, 166, 107, .38);
  border-radius: 8px;
  background: rgba(255, 250, 247, .98);
  box-shadow: 0 24px 80px rgba(25, 36, 62, .18);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner strong {
  color: var(--navy);
  font-weight: 900;
}

.cookie-banner p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 10px 18px;
}

@media (max-width: 760px) {
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .button {
    flex: 1;
  }
}

/* Correction visibilitÃ© cookies v65 */
.cookie-banner {
  z-index: 10000 !important;
  bottom: 22px !important;
}

.footer-cookie-button {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 250, 247, .9);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.footer-cookie-button:hover {
  color: var(--gold);
}

/* Comparatif mobile lisible v66 */
.mobile-compare-cards {
  display: none;
}

@media (max-width: 760px) {
  .new-compare.detailed-compare {
    display: none;
  }

  .mobile-compare-cards {
    display: grid;
    gap: 18px;
    margin-top: 26px;
  }

  .mobile-compare-cards article {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 247, .92);
    box-shadow: var(--shadow);
  }

  .mobile-compare-cards h3 {
    margin-bottom: 14px;
    color: var(--gold-dark);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 30px;
    line-height: 1.05;
  }

  .mobile-compare-cards p {
    margin: 10px 0;
    color: var(--muted);
  }

  .mobile-compare-cards strong {
    color: var(--navy);
  }
}


/* Articles blog v68 */
.article-section {
  background: var(--white);
}
.article-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(210, 166, 107, .26);
  border-radius: 8px;
  background: rgba(255, 250, 247, .88);
  box-shadow: var(--shadow);
}
.article-content h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: clamp(30px, 3.4vw, 46px);
}
.article-content h2:first-of-type {
  margin-top: 0;
}
.article-content p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.article-source {
  color: var(--gold-dark) !important;
  font-weight: 700;
}
.article-note {
  margin-top: 30px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(232, 196, 126, .16);
  color: var(--muted);
}
.article-note strong {
  color: var(--navy);
}
.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.gz-product-landing {
  background: #fffaf7;
}

.gz-product-hero {
  padding-top: 68px;
  padding-bottom: 28px;
  text-align: center;
}

.gz-product-hero h1 {
  max-width: 860px;
  margin: 0 auto 20px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 6vw, 76px);
  line-height: .96;
}

.gz-product-hero .lead {
  max-width: 740px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.gz-product-main {
  padding-top: 28px;
  padding-bottom: 78px;
}

.gz-product-purchase-card {
  max-width: 520px;
  margin: 0 auto 34px;
  padding: 34px;
  border: 1px solid rgba(210, 166, 107, .24);
  border-radius: 18px;
  background: #fffdfb;
  box-shadow: 0 18px 44px rgba(24, 36, 61, .07);
  text-align: center;
}

.gz-product-price {
  margin: 0 0 20px;
  color: var(--gold-dark) !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 76px !important;
  font-weight: 700;
  line-height: .9;
}

.gz-product-purchase-card ul,
.gz-product-info-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.45;
}

.gz-product-purchase-card li::before,
.gz-product-info-grid li::before {
  content: "•";
  margin-right: 10px;
  color: var(--gold);
  font-weight: 800;
}

.gz-product-buy-button {
  margin-top: 68px;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #f3cf91, var(--gold)) !important;
  color: var(--navy) !important;
  padding: 16px 34px !important;
  box-shadow: 0 12px 28px rgba(210, 166, 107, .24);
}

.gz-product-purchase-card .gz-product-buy-button {
  margin-top: 32px !important;
}

.gz-product-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}

.gz-product-info-grid article {
  padding: 30px;
  border: 1px solid rgba(210, 166, 107, .2);
  border-radius: 16px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 34px rgba(24, 36, 61, .055);
}

.gz-product-info-grid h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.1;
}


.gz-vim-main-included {
  margin-bottom: 18px !important;
}

.gz-vim-bonus-title {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}
.gz-product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}

.gz-product-programs-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border: 1px solid rgba(24, 36, 61, .28);
  border-radius: 999px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  background: transparent;
}

.gz-product-programs-link:hover {
  border-color: var(--navy);
  background: rgba(24, 36, 61, .04);
  color: var(--navy);
}

.gz-product-podcast-button {
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #f3cf91, var(--gold)) !important;
  color: var(--navy) !important;
  padding: 16px 34px !important;
  box-shadow: 0 12px 28px rgba(210, 166, 107, .24);
}
.blog-grid article .offer-label {
  display: inline-block;
  margin-bottom: 14px;
}
@media (max-width: 760px) {
  .article-content {
    padding: 24px;
  }
  .article-content p {
    font-size: 16px;
  }
  .gz-product-hero {
    padding-top: 44px;
  }
  .gz-product-purchase-card,
  .gz-product-info-grid article {
    padding: 24px;
  }
  .gz-product-info-grid {
    grid-template-columns: 1fr;
  }
  .gz-product-price {
    font-size: 62px !important;
  }
}


/* Liens r?seaux sociaux cliquables v69 */
.social-links,
.social-links a {
  position: relative;
  z-index: 20;
  pointer-events: auto;
}


/* Corrections footer et cookies v70 */
.cookie-banner {
  display: grid;
}
.cookie-banner.is-hidden {
  display: none !important;
}
.footer-main,
.footer-info,
.social-links,
.social-links a {
  position: relative;
  z-index: 50;
  pointer-events: auto !important;
}


/* Reprise ancien site Grossesse Zen v72 */
.old-site-proofs {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.testimonials.old-testimonials {
  background: var(--white);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.old-testimonials .testimonial-grid,
.who-testimonial-grid {
  margin-top: 36px;
}
.testimonial-grid .testimonial {
  min-height: 260px;
  display: grid;
  grid-template-rows: 1fr auto;
  border-radius: 8px;
}
.old-testimonials .testimonial-grid {
  align-items: stretch;
}
.old-testimonials .testimonial-grid .testimonial {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 260px;
  padding: 22px;
  overflow: hidden;
  background: #fffdfb;
  border: 1px solid rgba(210, 166, 107, .22);
  box-shadow: 0 18px 42px rgba(24, 36, 61, .08);
}
.old-testimonials .testimonial-grid .testimonial::before {
  content: "“";
  display: block;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 40px;
  line-height: .72;
  color: var(--gold);
}
.testimonial-grid .testimonial p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.12;
  color: var(--navy);
}
.old-testimonials .testimonial-grid .testimonial p {
  margin: 0 0 16px;
  font-size: 19px;
  line-height: 1.28;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.testimonial-grid .testimonial strong,
.testimonial-grid .testimonial span {
  display: block;
}
.testimonial-grid .testimonial strong {
  margin-top: 18px;
  color: var(--gold-dark);
  font-size: 18px;
}
.old-testimonials .testimonial-grid .testimonial strong {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(210, 166, 107, .24);
  font-size: 16px;
  line-height: 1.2;
}
.testimonial-grid .testimonial span {
  color: var(--muted);
  font-size: 14px;
}
.expanded-proofs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.who-trust-testimonials {
  background: linear-gradient(180deg, #fffaf7 0%, #f8eee8 100%);
}
.who-trust-testimonials .section-heading {
  max-width: 860px;
}
.who-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
}
.who-testimonial-card {
  display: grid;
  height: 260px;
  flex-direction: column;
  grid-template-rows: 1fr auto;
  gap: 16px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(210, 166, 107, .24);
  border-radius: 18px;
  background: #fffdfb;
  box-shadow: 0 20px 52px rgba(24, 36, 61, .09);
}
.who-testimonial-text {
  position: relative;
  padding-top: 6px;
  min-height: 0;
  overflow: hidden;
  color: var(--navy);
}
.who-testimonial-text::before {
  content: "“";
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  line-height: .8;
  color: var(--gold);
}
.who-testimonial-text p {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  line-height: 1.28;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.who-testimonial-text p:last-child {
  margin-bottom: 0;
}
.who-testimonial-card footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(210, 166, 107, .24);
}
.who-testimonial-card strong,
.who-testimonial-card span {
  display: block;
}
.who-testimonial-card strong {
  color: var(--gold-dark);
  font-size: 16px;
  line-height: 1.2;
}
.who-testimonial-card span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}
.method-proof .compact-proofs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
}
.method-proof .proof-visual-card {
  min-height: 245px;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 253, 250, .98);
  box-shadow: 0 16px 36px rgba(24, 36, 61, .06);
}
.method-proof .proof-visual-card img {
  width: 100%;
  height: 104px;
  object-fit: contain;
  padding: 12px;
  border-radius: 10px;
  background: #fff7f3;
}
.method-proof .proof-visual-card strong {
  min-height: 42px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.22;
}
.method-proof .proof-visual-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
@media (max-width: 1040px) {
  .old-site-proofs,
  .testimonial-grid,
  .expanded-proofs,
  .home-proof-logos,
  .method-proof .compact-proofs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .old-site-proofs,
  .testimonial-grid,
  .expanded-proofs,
  .home-proof-logos,
  .who-testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-grid .testimonial {
    height: 240px;
    min-height: 0;
  }
  .testimonial-grid .testimonial p {
    font-size: 24px;
  }
  .who-testimonial-card {
    height: 240px;
    min-height: 0;
    padding: 20px;
  }
  .who-testimonial-text p {
    font-size: 20px;
  }
  .method-proof .compact-proofs {
    grid-template-columns: 1fr;
  }
  .method-proof .proof-visual-card {
    min-height: auto;
  }
}


/* Preuves visuelles cliquables v73 */
.proof-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.proof-visual-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(210, 166, 107, .28);
  border-radius: 8px;
  background: rgba(255, 250, 247, .94);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}
.proof-visual-card:hover {
  transform: translateY(-3px);
  border-color: rgba(210, 166, 107, .62);
}
.proof-visual-card img {
  width: 100%;
  aspect-ratio: 13 / 8;
  object-fit: cover;
  border-radius: 6px;
  background: var(--cream);
}
.proof-visual-card strong {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  line-height: 1.05;
}
.proof-visual-card span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.compact-proofs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1040px) {
  .proof-visual-grid,
  .compact-proofs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .proof-visual-grid,
  .compact-proofs {
    grid-template-columns: 1fr;
  }
}


/* Popup audio ronde temporis?e v76 */
.audio-modal {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 12000;
  background: rgba(24, 37, 64, .18);
  place-items: center;
  padding: 22px;
}
.audio-modal.is-open {
  display: grid;
}
.audio-modal-panel {
  width: min(440px, calc(100vw - 30px));
  min-height: min(440px, calc(100vw - 30px));
  border-radius: 50%;
  padding: 52px 48px;
  display: grid;
  align-content: center;
  overflow: visible;
  text-align: center;
  background:
    radial-gradient(circle at 26% 18%, rgba(255,255,255,.95) 0 2px, transparent 3px),
    radial-gradient(circle at 76% 16%, rgba(210,166,107,.45) 0 1px, transparent 2px),
    linear-gradient(145deg, #fffaf7, #f8eee8);
  border: 1px solid rgba(210, 166, 107, .42);
  box-shadow: 0 28px 90px rgba(24, 37, 64, .22);
}
.audio-modal-panel h2 {
  font-size: clamp(27px, 3vw, 35px);
}
.audio-modal-panel > p:not(.spaced) {
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  line-height: 1.55;
}
.audio-form {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.audio-form input:not([type="checkbox"]) {
  min-height: 42px;
  border-radius: 999px;
  text-align: center;
}
.audio-consent {
  text-align: left;
  font-size: 12px !important;
  line-height: 1.35;
}
.audio-modal-close {
  top: 22px;
  right: 34px;
  z-index: 2;
}
.audio-download {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 520px) {
  .audio-modal {
    align-items: end;
    padding: 14px;
  }
  .audio-modal-panel {
    width: 100%;
    min-height: auto;
    border-radius: 32px;
    padding: 34px 22px 26px;
  }
  .audio-modal-close {
    top: 12px;
    right: 12px;
  }
}


/* Correctif cookies + popup audio c?t? droit v77 */
.cookie-banner {
  display: grid;
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 22px;
  z-index: 20000 !important;
}
.cookie-banner.is-hidden {
  display: none !important;
}
.audio-modal {
  position: fixed !important;
  inset: auto 26px 96px auto !important;
  z-index: 16000 !important;
  display: none;
  width: auto;
  height: auto;
  padding: 0 !important;
  background: transparent !important;
}
.audio-modal.is-open {
  display: block !important;
}
.audio-modal-panel {
  width: 390px !important;
  min-height: 390px !important;
  max-width: calc(100vw - 32px);
  border-radius: 50% !important;
  padding: 46px 42px !important;
  display: grid;
  align-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 26% 18%, rgba(255,255,255,.96) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 20%, rgba(210,166,107,.5) 0 1px, transparent 2px),
    linear-gradient(145deg, #fffaf7, #f8eee8) !important;
  border: 1px solid rgba(210, 166, 107, .48) !important;
  box-shadow: 0 24px 80px rgba(24, 37, 64, .24) !important;
}
.audio-modal-panel h2 {
  font-size: 31px !important;
  line-height: 1.05;
}
.audio-modal-panel > p:not(.spaced) {
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}
.audio-form {
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.audio-form input:not([type="checkbox"]) {
  min-height: 40px;
  border-radius: 999px;
  text-align: center;
}
.audio-consent {
  text-align: left;
  font-size: 11px !important;
  line-height: 1.3;
}
.audio-modal-close {
  top: 22px !important;
  right: 34px !important;
}
@media (max-width: 760px) {
  .audio-modal {
    inset: auto 14px 88px 14px !important;
  }
  .audio-modal-panel {
    width: 100% !important;
    min-height: auto !important;
    border-radius: 28px !important;
    padding: 32px 22px 24px !important;
  }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}


/* Popup podcast bulle v78 */
.audio-modal-panel {
  width: 430px !important;
  height: 430px !important;
  min-height: 430px !important;
  max-width: calc(100vw - 32px);
  aspect-ratio: 1 / 1;
  border-radius: 50% !important;
  padding: 48px 46px !important;
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,.92) 0 0, rgba(255,255,255,.92) 11px, transparent 12px),
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.62) 0 0, rgba(255,255,255,.62) 5px, transparent 6px),
    radial-gradient(circle at 36% 34%, rgba(255,255,255,.45), transparent 34%),
    linear-gradient(145deg, rgba(255,250,247,.98), rgba(248,238,232,.96)) !important;
}
.audio-modal-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.72);
  pointer-events: none;
}
.audio-modal-panel h2 {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 520px) {
  .audio-modal-panel {
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    aspect-ratio: auto;
    border-radius: 30px !important;
  }
  .audio-modal-panel::before {
    border-radius: 24px;
  }
}


/* Ajustement contenu bulle podcast v81 */
.audio-modal-panel {
  padding: 38px 48px 34px !important;
}
.audio-modal-panel .spaced {
  margin-bottom: 8px !important;
  font-size: 11px !important;
  letter-spacing: 7px !important;
}
.audio-modal-panel h2 {
  max-width: 310px;
  margin-bottom: 8px !important;
  font-size: 27px !important;
  line-height: 1.02 !important;
}
.audio-modal-panel > p:not(.spaced) {
  max-width: 300px;
  margin-bottom: 12px !important;
  font-size: 13px !important;
  line-height: 1.42 !important;
}
.audio-form {
  gap: 7px !important;
  margin-top: 10px !important;
  max-width: 280px !important;
}
.audio-form label {
  font-size: 12px !important;
}
.audio-form input:not([type="checkbox"]) {
  min-height: 36px !important;
  font-size: 14px !important;
}
.audio-consent {
  gap: 6px !important;
  margin-top: 2px !important;
}
.audio-consent span {
  font-size: 10px !important;
  line-height: 1.18 !important;
}
.audio-form .button {
  min-height: 42px !important;
  margin-top: 4px !important;
  padding: 9px 18px !important;
  font-size: 13px !important;
}
@media (max-width: 520px) {
  .audio-modal-panel h2 {
    font-size: 25px !important;
  }
  .audio-modal-panel > p:not(.spaced) {
    font-size: 13px !important;
  }
}

/* Reprise visuelle Canva - header, hero et 4 bÃ©nÃ©fices */
.site-header {
  min-height: 92px !important;
  padding: 16px clamp(34px, 7vw, 120px) 12px !important;
  background:
    radial-gradient(circle at 91% 34%, rgba(235, 202, 177, .45), transparent 22%),
    rgba(255, 250, 247, .96) !important;
  border-bottom: 1px solid rgba(210, 166, 107, .16) !important;
  box-shadow: 0 10px 28px rgba(25, 36, 62, .08) !important;
  backdrop-filter: blur(18px);
}

.site-header::before {
  display: none !important;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 34px;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 70' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 42 C235 25 412 18 600 36 C786 54 1014 54 1440 10' fill='none' stroke='%23d2a66b' stroke-width='1.4' opacity='.7'/%3E%3Cpath d='M0 45 C235 28 412 21 600 39 C786 57 1014 57 1440 13' fill='none' stroke='%23fffaf7' stroke-width='5' opacity='.85'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(210px, 18vw, 285px) !important;
  max-width: 32vw !important;
  max-height: 74px !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.main-nav {
  flex: 1 1 auto;
  justify-content: center !important;
  gap: clamp(20px, 2.8vw, 42px) !important;
  border: 0 !important;
  background: transparent !important;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.main-nav a {
  position: relative;
  min-height: auto !important;
  padding: 7px 0 !important;
  border: 0 !important;
  color: var(--navy) !important;
  background: transparent !important;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  transition: transform .22s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--navy) !important;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.account-link,
.main-nav a.account-link.is-active {
  min-height: 52px !important;
  padding: 0 26px !important;
  border-radius: 999px !important;
  color: var(--navy) !important;
  background: linear-gradient(135deg, #f4d099 0%, #d9a85e 100%) !important;
  box-shadow: 0 15px 30px rgba(168, 121, 60, .22) !important;
  font-weight: 700 !important;
}

.account-link::after {
  display: none !important;
}

.hero.home-hero {
  min-height: min(680px, calc(100vh - 92px)) !important;
  padding: clamp(54px, 7vw, 86px) clamp(34px, 7vw, 120px) 140px !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  text-align: left !important;
  background:
    radial-gradient(circle at 8% 78%, rgba(221, 169, 138, .25) 0 1px, transparent 2px),
    radial-gradient(circle at 12% 72%, rgba(255, 255, 255, .86) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 18%, rgba(221, 169, 138, .30), transparent 26%),
    linear-gradient(90deg, rgba(255, 250, 247, .99) 0%, rgba(255, 250, 247, .92) 39%, rgba(255, 250, 247, .32) 62%, rgba(255, 250, 247, .05) 100%),
    url("assets/brand/hero-maternity.jpg") right center / min(58vw, 850px) auto no-repeat !important;
}

.hero.home-hero::before {
  display: none !important;
}

.hero.home-hero::after {
  left: 0 !important;
  right: 0 !important;
  bottom: -1px !important;
  z-index: 0 !important;
  height: 150px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 190' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 112 C255 70 438 88 630 115 C835 145 1034 151 1440 45' fill='none' stroke='%23d2a66b' stroke-width='3'/%3E%3Cpath d='M0 122 C255 80 438 98 630 125 C835 155 1034 161 1440 55 L1440 190 L0 190 Z' fill='%23fff7f3'/%3E%3Cpath d='M0 132 C250 92 440 111 632 138 C845 168 1054 170 1440 72' fill='none' stroke='%23f7debd' stroke-width='2' opacity='.85'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat !important;
}

.hero.home-hero > .kicker,
.hero.home-hero > .hero-subtitle,
.hero.home-hero > .hero-panel {
  width: min(520px, 46vw);
  max-width: 520px;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.hero.home-hero .kicker {
  margin-bottom: 12px !important;
  color: var(--gold-dark);
  font-size: 12px;
  letter-spacing: .14em;
}

.hero.home-hero .hero-subtitle {
  margin-top: 0 !important;
  margin-bottom: 16px !important;
  color: #4f5862;
  font-size: 18px !important;
  line-height: 1.55;
}

.hero-panel {
  display: block !important;
  max-width: 520px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: left !important;
}

.hero-panel h1 {
  max-width: 520px !important;
  margin: 0 0 18px !important;
  color: var(--navy);
  font-size: clamp(42px, 4.6vw, 68px) !important;
  line-height: .98 !important;
}

.hero-panel .lead {
  max-width: 560px;
  color: #4e5860;
  font-size: 17px !important;
  line-height: 1.5;
}

.hero-method-note {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-primary-cta {
  min-width: 265px;
  padding-inline: 30px;
  white-space: nowrap;
  overflow: visible;
}

.hero-primary-cta::before,
.hero-primary-cta::after {
  content: none !important;
  display: none !important;
}

.home-final-cta::before,
.home-final-cta::after {
  content: none !important;
  display: none !important;
}

.hero.home-hero .actions {
  gap: 22px !important;
  margin-top: 30px !important;
}

.hero.home-hero .button {
  min-width: 282px;
  min-height: 58px;
  border-radius: 999px !important;
  padding: 0 30px !important;
  font-size: 14px;
  box-shadow: none;
}

.hero.home-hero .button::after {
  content: none !important;
  display: none !important;
}

.hero.home-hero .button.primary {
  color: var(--navy);
  background: linear-gradient(135deg, #f4cf92 0%, #dba75b 100%);
  box-shadow: 0 16px 30px rgba(168, 121, 60, .22);
}

.hero.home-hero .button.secondary {
  color: var(--navy);
  background: rgba(255, 250, 247, .58) !important;
  border: 1.5px solid var(--navy);
}

.intro {
  padding-top: 18px !important;
  padding-bottom: 54px !important;
  text-align: left !important;
  background:
    radial-gradient(circle at 12% 14%, rgba(238, 209, 197, .62), transparent 18%),
    linear-gradient(180deg, #fff7f3 0%, #fffaf7 100%) !important;
}

.intro > .spaced,
.intro > h2,
.intro > .section-intro {
  display: block !important;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.intro > .spaced {
  margin-bottom: 10px;
}

.intro > h2 {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(32px, 3.2vw, 48px);
}

.intro > .section-intro {
  margin-bottom: 34px;
  color: #596068;
}

.emotion-grid.icon-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  max-width: 1220px;
  margin: 0 auto !important;
  align-items: stretch;
}

.emotion-grid.icon-cards article {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 132px;
  padding: 12px 28px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.emotion-grid.icon-cards article + article {
  border-left: 1px solid rgba(210, 166, 107, .24) !important;
}

.emotion-grid.icon-cards img {
  width: 88px !important;
  height: 88px !important;
  margin: 0 !important;
  padding: 21px;
  border-radius: 999px;
  object-fit: contain;
  background: rgba(246, 229, 224, .82);
}

.emotion-grid.icon-cards h3 {
  margin: 0 0 8px;
  color: var(--navy) !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  line-height: 1.12;
}

.emotion-grid.icon-cards p {
  margin: 0;
  color: #596068;
  font-size: 14px;
  line-height: 1.42;
}

@media (max-width: 1040px) {
  .site-header {
    min-height: 84px !important;
    padding-inline: 24px !important;
  }

  .brand img {
    width: 220px !important;
    max-width: 58vw !important;
  }

  .main-nav {
    inset: 84px 18px auto 18px !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    background: rgba(255, 250, 247, .98) !important;
  }

  .main-nav a,
  .account-link {
    padding: 14px 16px !important;
    border-radius: 0 !important;
    min-height: auto !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  .hero.home-hero {
    min-height: auto !important;
    padding: 64px 28px 130px !important;
    background:
      linear-gradient(90deg, rgba(255, 250, 247, .99) 0%, rgba(255, 250, 247, .92) 48%, rgba(255, 250, 247, .50) 100%),
      url("assets/brand/hero-maternity.jpg") right center / 62vw auto no-repeat !important;
  }

  .hero.home-hero > .kicker,
  .hero.home-hero > .hero-subtitle,
  .hero.home-hero > .hero-panel {
    width: min(520px, 62vw);
  }

  .emotion-grid.icon-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  .emotion-grid.icon-cards article {
    border: 1px solid rgba(210, 166, 107, .20) !important;
    border-radius: 18px !important;
    background: rgba(255, 250, 247, .72) !important;
  }

  .emotion-grid.icon-cards article + article {
    border-left: 1px solid rgba(210, 166, 107, .20) !important;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 76px !important;
  }

  .brand img {
    width: 190px !important;
    max-width: 62vw !important;
  }

  .hero.home-hero {
    padding: 46px 18px 112px !important;
    background:
      linear-gradient(180deg, rgba(255,250,247,.96), rgba(255,250,247,.90)),
      url("assets/brand/hero-maternity.jpg") center top / cover no-repeat !important;
  }

  .hero.home-hero > .kicker,
  .hero.home-hero > .hero-subtitle,
  .hero.home-hero > .hero-panel {
    width: 100%;
    max-width: 100%;
  }

  .hero-panel h1 {
    font-size: clamp(36px, 11vw, 52px) !important;
  }

  .hero-panel .lead,
  .hero.home-hero .hero-subtitle {
    font-size: 16px !important;
  }

  .hero.home-hero .button {
    width: 100%;
    min-width: 0;
  }

  .emotion-grid.icon-cards {
    grid-template-columns: 1fr !important;
  }

  .emotion-grid.icon-cards article {
    grid-template-columns: 76px 1fr;
    min-height: 112px;
    padding: 16px !important;
  }

  .emotion-grid.icon-cards img {
    width: 70px !important;
    height: 70px !important;
    padding: 17px;
  }
}

/* Corrections Canva ciblees - logo fin, photo decoupee, boutons visibles */
.site-header {
  min-height: 86px !important;
  padding: 14px clamp(34px, 7vw, 118px) 10px !important;
  overflow: visible !important;
}

.brand img {
  content: normal !important;
  width: clamp(205px, 16vw, 265px) !important;
  max-width: 28vw !important;
  max-height: 62px !important;
  object-fit: contain !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.hero.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 610px !important;
  padding: 70px clamp(34px, 7vw, 118px) 132px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 10% 78%, rgba(221, 169, 138, .22) 0 1px, transparent 2px),
    radial-gradient(circle at 14% 73%, rgba(255, 255, 255, .86) 0 2px, transparent 3px),
    radial-gradient(circle at 92% 16%, rgba(221, 169, 138, .24), transparent 23%),
    linear-gradient(90deg, rgba(255, 250, 247, .99) 0%, rgba(255, 250, 247, .94) 42%, rgba(255, 250, 247, .60) 58%, rgba(255, 250, 247, .18) 100%) !important;
}

.hero.home-hero::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  z-index: -2 !important;
  inset: 0 0 auto auto !important;
  width: min(62vw, 930px) !important;
  height: 100% !important;
  background: url("assets/brand/hero-maternity.jpg") center right / cover no-repeat !important;
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 900 620' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H900 V420 C760 485 635 530 505 548 C320 574 160 540 0 494 Z' fill='black'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  mask:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 900 620' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H900 V420 C760 485 635 530 505 548 C320 574 160 540 0 494 Z' fill='black'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.hero.home-hero::after {
  z-index: -1 !important;
  height: 188px !important;
  bottom: 0 !important;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 210' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 112 C238 74 412 82 606 112 C824 146 1045 164 1440 52' fill='none' stroke='%23d2a66b' stroke-width='3'/%3E%3Cpath d='M0 122 C238 84 412 92 606 122 C824 156 1045 174 1440 62 L1440 210 L0 210 Z' fill='%23fff7f3'/%3E%3Cpath d='M0 133 C240 96 414 104 608 134 C824 168 1045 184 1440 77' fill='none' stroke='%23f4d6af' stroke-width='2' opacity='.85'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat !important;
}

.hero.home-hero > .kicker,
.hero.home-hero > .hero-subtitle,
.hero.home-hero > .hero-panel {
  position: relative;
  z-index: 2;
  width: min(620px, 48vw) !important;
  max-width: 620px !important;
}

.hero-panel {
  overflow: visible !important;
}

.hero.home-hero .actions {
  position: relative;
  z-index: 3;
  display: flex !important;
  flex-wrap: nowrap !important;
  width: min(620px, 48vw);
  max-width: 620px;
  gap: 18px !important;
}

.hero.home-hero .button {
  min-width: 0 !important;
  flex: 0 1 auto;
  white-space: nowrap;
}

.hero.home-hero .button.primary {
  min-width: 265px !important;
}

.hero.home-hero .button.secondary {
  min-width: 305px !important;
}

@media (max-width: 1180px) {
  .hero.home-hero > .kicker,
  .hero.home-hero > .hero-subtitle,
  .hero.home-hero > .hero-panel,
  .hero.home-hero .actions {
    width: min(560px, 54vw) !important;
    max-width: 560px !important;
  }

  .hero.home-hero .actions {
    flex-wrap: wrap !important;
  }
}

@media (max-width: 1040px) {
  .brand img {
    content: normal !important;
    width: 210px !important;
    max-width: 54vw !important;
  }

  .hero.home-hero::before {
    width: 64vw !important;
    opacity: .78;
  }

  .hero.home-hero > .kicker,
  .hero.home-hero > .hero-subtitle,
  .hero.home-hero > .hero-panel,
  .hero.home-hero .actions {
    width: min(540px, 62vw) !important;
    max-width: 540px !important;
  }
}

@media (max-width: 760px) {
  .brand img {
    width: 178px !important;
    max-width: 62vw !important;
  }

  .hero.home-hero {
    padding: 44px 18px 112px !important;
  }

  .hero.home-hero::before {
    inset: 0 !important;
    width: 100% !important;
    opacity: .26;
    -webkit-mask: none;
    mask: none;
  }

  .hero.home-hero > .kicker,
  .hero.home-hero > .hero-subtitle,
  .hero.home-hero > .hero-panel,
  .hero.home-hero .actions {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero.home-hero .actions {
    flex-wrap: wrap !important;
  }

  .hero.home-hero .button.primary,
  .hero.home-hero .button.secondary {
    width: 100%;
    min-width: 0 !important;
  }
}

/* Corrections Canva ciblees v2 - courbe hero fusionnee, logo non rogne, Mon espace CTA fixe */
.site-header {
  min-height: 96px !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}

.brand img {
  width: clamp(220px, 17vw, 282px) !important;
  max-width: 30vw !important;
  max-height: none !important;
  height: auto !important;
  object-fit: contain !important;
  overflow: visible !important;
}

.main-nav .account-link,
.main-nav a.account-link,
.main-nav a.account-link:hover,
.main-nav a.account-link.is-active {
  min-height: 52px !important;
  padding: 0 28px !important;
  border-radius: 999px !important;
  color: var(--navy) !important;
  background: linear-gradient(135deg, #f4cf92 0%, #d9a85e 100%) !important;
  box-shadow: 0 15px 30px rgba(168, 121, 60, .24) !important;
  font-weight: 800 !important;
}

.main-nav a.account-link::after,
.main-nav a.account-link:hover::after,
.main-nav a.account-link.is-active::after {
  display: none !important;
  content: none !important;
}

.hero.home-hero {
  min-height: 650px !important;
  padding-top: 34px !important;
  padding-bottom: 120px !important;
}

.hero.home-hero::before {
  inset: 0 0 auto auto !important;
  width: min(64vw, 980px) !important;
  height: 100% !important;
  background-position: center right !important;
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 980 650' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H980 V438 C835 500 700 543 548 562 C350 587 165 556 0 507 Z' fill='black'/%3E%3C/svg%3E") center / 100% 100% no-repeat !important;
  mask:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 980 650' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H980 V438 C835 500 700 543 548 562 C350 587 165 556 0 507 Z' fill='black'/%3E%3C/svg%3E") center / 100% 100% no-repeat !important;
}

.hero.home-hero::after {
  height: 215px !important;
  bottom: 0 !important;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 230' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 118 C242 82 422 86 618 118 C842 154 1055 176 1440 54' fill='none' stroke='%23d2a66b' stroke-width='3'/%3E%3Cpath d='M0 122 C242 86 422 90 618 122 C842 158 1055 180 1440 58 L1440 230 L0 230 Z' fill='%23fff7f3'/%3E%3Cpath d='M0 134 C244 99 422 103 618 135 C842 169 1055 191 1440 75' fill='none' stroke='%23f3d6af' stroke-width='2' opacity='.78'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat !important;
}

@media (max-width: 1040px) {
  .site-header {
    min-height: 88px !important;
  }

  .brand img {
    width: 214px !important;
    max-width: 54vw !important;
  }

  .main-nav .account-link,
  .main-nav a.account-link,
  .main-nav a.account-link:hover,
  .main-nav a.account-link.is-active {
    min-height: auto !important;
    padding: 14px 16px !important;
    border-radius: 14px !important;
    box-shadow: none !important;
  }

  .hero.home-hero {
    min-height: 610px !important;
  }

  .hero.home-hero::before {
    width: 68vw !important;
    -webkit-mask:
      url("data:image/svg+xml,%3Csvg viewBox='0 0 820 610' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H820 V413 C700 470 580 512 442 530 C278 552 125 530 0 490 Z' fill='black'/%3E%3C/svg%3E") center / 100% 100% no-repeat !important;
    mask:
      url("data:image/svg+xml,%3Csvg viewBox='0 0 820 610' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H820 V413 C700 470 580 512 442 530 C278 552 125 530 0 490 Z' fill='black'/%3E%3C/svg%3E") center / 100% 100% no-repeat !important;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 78px !important;
  }

  .brand img {
    width: 182px !important;
    max-width: 64vw !important;
  }

  .hero.home-hero {
    min-height: auto !important;
  }
}

/* Corrections Canva ciblees v3 - trait dore colle a la decoupe photo, logo entier visible */
.site-header {
  min-height: 104px !important;
  padding: 18px clamp(34px, 7vw, 118px) 18px clamp(52px, 7vw, 118px) !important;
  overflow: visible !important;
}

.brand {
  min-height: 68px !important;
  overflow: visible !important;
  padding: 4px 0 !important;
}

.brand img {
  width: clamp(232px, 17vw, 286px) !important;
  height: auto !important;
  max-height: none !important;
  max-width: 30vw !important;
  object-fit: contain !important;
  object-position: center !important;
  overflow: visible !important;
  transform: translateY(6px) !important;
  clip-path: none !important;
}

.hero.home-hero::before {
  width: min(64vw, 980px) !important;
  height: 100% !important;
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 980 650' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H980 V438 C835 500 700 543 548 562 C350 587 165 556 0 507 Z' fill='black'/%3E%3C/svg%3E") center / 100% 100% no-repeat !important;
  mask:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 980 650' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H980 V438 C835 500 700 543 548 562 C350 587 165 556 0 507 Z' fill='black'/%3E%3C/svg%3E") center / 100% 100% no-repeat !important;
}

.hero.home-hero::after {
  left: auto !important;
  right: 0 !important;
  top: 0 !important;
  bottom: auto !important;
  width: min(64vw, 980px) !important;
  height: 100% !important;
  z-index: -1 !important;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 980 650' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 507 C165 556 350 587 548 562 C700 543 835 500 980 438' fill='none' stroke='%23d2a66b' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M0 520 C165 568 350 599 548 574 C700 555 835 512 980 450' fill='none' stroke='%23f3d6af' stroke-width='2' opacity='.72'/%3E%3C/svg%3E") center / 100% 100% no-repeat !important;
}

@media (max-width: 1040px) {
  .site-header {
    min-height: 94px !important;
    padding-left: 28px !important;
  }

  .brand {
    min-height: 62px !important;
  }

  .brand img {
    width: 220px !important;
    max-width: 54vw !important;
  }

  .hero.home-hero::before,
  .hero.home-hero::after {
    width: 68vw !important;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 84px !important;
    padding: 12px 18px !important;
  }

  .brand {
    min-height: 58px !important;
  }

  .brand img {
    width: 188px !important;
    max-width: 66vw !important;
  }

  .hero.home-hero::after {
    left: 0 !important;
    width: 100% !important;
    opacity: .65;
  }
}

/* Corrections Canva ciblees v4 - vague pleine largeur, benefices premium, logo aerÃ© */
.site-header {
  min-height: 112px !important;
  padding: 20px clamp(34px, 7vw, 118px) 20px clamp(72px, 8vw, 132px) !important;
  overflow: visible !important;
}

.brand {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: clamp(250px, 18vw, 310px) !important;
  min-width: clamp(250px, 18vw, 310px) !important;
  min-height: 72px !important;
  margin-left: 0 !important;
  padding: 8px 0 8px 12px !important;
  overflow: visible !important;
}

.brand img {
  content: normal !important;
  display: block !important;
  width: clamp(230px, 16vw, 280px) !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  overflow: visible !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  clip-path: none !important;
}

.hero.home-hero {
  min-height: 670px !important;
  padding-bottom: 132px !important;
}

.hero.home-hero::before {
  width: min(64vw, 980px) !important;
  height: 100% !important;
  background-position: center right !important;
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 980 670' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H980 V482 C842 526 708 555 548 560 C350 567 166 536 0 492 Z' fill='black'/%3E%3C/svg%3E") center / 100% 100% no-repeat !important;
  mask:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 980 670' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H980 V482 C842 526 708 555 548 560 C350 567 166 536 0 492 Z' fill='black'/%3E%3C/svg%3E") center / 100% 100% no-repeat !important;
}

.hero.home-hero::after {
  left: 0 !important;
  right: 0 !important;
  top: auto !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 230px !important;
  z-index: -1 !important;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 230' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 126 C250 82 438 98 614 132 C825 172 1039 175 1440 82' fill='none' stroke='%23d2a66b' stroke-width='3.2' stroke-linecap='round'/%3E%3Cpath d='M0 130 C250 86 438 102 614 136 C825 176 1039 179 1440 86 L1440 230 L0 230 Z' fill='%23fff7f3'/%3E%3Cpath d='M0 142 C250 100 438 116 614 150 C825 188 1039 191 1440 101' fill='none' stroke='%23f3d6af' stroke-width='2' opacity='.72'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat !important;
}

.intro {
  padding-top: 22px !important;
  padding-bottom: 62px !important;
  background:
    radial-gradient(circle at 9% 18%, rgba(238, 210, 198, .52), transparent 18%),
    radial-gradient(circle at 84% 8%, rgba(255,255,255,.92), transparent 20%),
    linear-gradient(180deg, #fff7f3 0%, #fffaf7 100%) !important;
}

.intro > .spaced,
.intro > h2,
.intro > .section-intro {
  max-width: 760px !important;
  text-align: center !important;
}

.intro > .spaced {
  margin-bottom: 8px !important;
}

.intro > h2 {
  margin-bottom: 12px !important;
  font-size: clamp(30px, 3vw, 44px) !important;
  line-height: 1.05 !important;
}

.intro > .section-intro {
  margin-bottom: 38px !important;
  font-size: 17px !important;
}

.emotion-grid.icon-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 0 clamp(6px, 1vw, 18px);
  background: transparent !important;
}

.emotion-grid.icon-cards article {
  grid-template-columns: 108px 1fr !important;
  gap: 22px !important;
  min-height: 150px !important;
  padding: 22px 34px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.emotion-grid.icon-cards article + article {
  border-left: 1px solid rgba(210, 166, 107, .20) !important;
}

.emotion-grid.icon-cards img {
  width: 96px !important;
  height: 96px !important;
  padding: 24px !important;
  border-radius: 50% !important;
  background: #f5e8e4 !important;
  box-shadow: inset 0 0 0 1px rgba(210, 166, 107, .06) !important;
}

.emotion-grid.icon-cards h3 {
  margin: 0 0 9px !important;
  color: var(--navy) !important;
  font-size: 20px !important;
  line-height: 1.15 !important;
}

.emotion-grid.icon-cards p {
  max-width: 245px;
  margin: 0 !important;
  color: #5d6268 !important;
  font-size: 14px !important;
  line-height: 1.42 !important;
}

@media (max-width: 1180px) {
  .site-header {
    padding-left: 34px !important;
  }

  .brand {
    width: 230px !important;
    min-width: 230px !important;
    padding-left: 8px !important;
  }

  .brand img {
    width: 220px !important;
  }

  .emotion-grid.icon-cards article {
    grid-template-columns: 88px 1fr !important;
    padding-inline: 22px !important;
  }

  .emotion-grid.icon-cards img {
    width: 82px !important;
    height: 82px !important;
    padding: 20px !important;
  }
}

@media (max-width: 1040px) {
  .site-header {
    min-height: 96px !important;
    padding-left: 26px !important;
  }

  .brand {
    min-height: 64px !important;
    width: 216px !important;
    min-width: 216px !important;
  }

  .brand img {
    width: 206px !important;
  }

  .hero.home-hero::before {
    width: 68vw !important;
  }

  .emotion-grid.icon-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  .emotion-grid.icon-cards article,
  .emotion-grid.icon-cards article + article {
    border: 1px solid rgba(210, 166, 107, .18) !important;
    border-radius: 18px !important;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 86px !important;
    padding: 12px 18px !important;
  }

  .brand {
    min-height: 60px !important;
    width: 194px !important;
    min-width: 194px !important;
    padding-left: 6px !important;
  }

  .brand img {
    width: 184px !important;
  }

  .hero.home-hero::before {
    width: 100% !important;
    -webkit-mask: none !important;
    mask: none !important;
  }

  .hero.home-hero::after {
    height: 160px !important;
  }

  .emotion-grid.icon-cards {
    grid-template-columns: 1fr !important;
  }

  .emotion-grid.icon-cards article,
  .emotion-grid.icon-cards article + article {
    grid-template-columns: 78px 1fr !important;
    min-height: 116px !important;
    padding: 18px !important;
  }

  .emotion-grid.icon-cards img {
    width: 70px !important;
    height: 70px !important;
    padding: 17px !important;
  }
}

/* Correction technique definitive - hero avec un seul trace SVG et logo non rogne */
.site-header,
.site-header *,
.brand,
.brand * {
  overflow: visible !important;
}

.site-header {
  min-height: 122px !important;
  padding: 22px clamp(34px, 7vw, 118px) 22px clamp(84px, 9vw, 150px) !important;
  align-items: center !important;
}

.brand {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 330px !important;
  min-width: 330px !important;
  min-height: 78px !important;
  padding: 10px 0 10px 18px !important;
  margin: 0 !important;
  line-height: 0 !important;
}

.brand img {
  content: normal !important;
  display: block !important;
  width: 286px !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
  clip-path: none !important;
}

.hero.home-hero {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  min-height: 670px !important;
  padding-bottom: 132px !important;
  background:
    radial-gradient(circle at 10% 78%, rgba(221, 169, 138, .22) 0 1px, transparent 2px),
    radial-gradient(circle at 14% 73%, rgba(255, 255, 255, .86) 0 2px, transparent 3px),
    radial-gradient(circle at 92% 16%, rgba(221, 169, 138, .24), transparent 23%),
    linear-gradient(90deg, rgba(255, 250, 247, .99) 0%, rgba(255, 250, 247, .94) 42%, rgba(255, 250, 247, .60) 58%, rgba(255, 250, 247, .18) 100%) !important;
}

.hero.home-hero::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -2 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
  background: url("assets/brand/hero-maternity.jpg") right center / min(64vw, 980px) auto no-repeat !important;
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 670' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V482 C1039 526 825 553 614 560 C438 567 250 536 0 492 Z' fill='black'/%3E%3C/svg%3E") center / 100% 100% no-repeat !important;
  mask:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 670' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V482 C1039 526 825 553 614 560 C438 567 250 536 0 492 Z' fill='black'/%3E%3C/svg%3E") center / 100% 100% no-repeat !important;
}

.hero.home-hero::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 670' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 492 C250 536 438 567 614 560 C825 553 1039 526 1440 482 L1440 670 L0 670 Z' fill='%23fff7f3'/%3E%3Cpath d='M0 492 C250 536 438 567 614 560 C825 553 1039 526 1440 482' fill='none' stroke='%23d2a66b' stroke-width='3.2' stroke-linecap='round'/%3E%3Cpath d='M0 506 C250 548 438 579 614 572 C825 565 1039 538 1440 496' fill='none' stroke='%23f3d6af' stroke-width='2' opacity='.68'/%3E%3C/svg%3E") center / 100% 100% no-repeat !important;
}

@media (max-width: 1180px) {
  .site-header {
    min-height: 104px !important;
    padding-left: 34px !important;
  }

  .brand {
    width: 248px !important;
    min-width: 248px !important;
    min-height: 68px !important;
    padding-left: 12px !important;
  }

  .brand img {
    width: 224px !important;
  }
}

@media (max-width: 1040px) {
  .site-header {
    min-height: 96px !important;
    padding-left: 26px !important;
  }

  .brand {
    width: 226px !important;
    min-width: 226px !important;
    min-height: 64px !important;
  }

  .brand img {
    width: 204px !important;
  }

  .hero.home-hero::before {
    background-size: min(70vw, 760px) auto !important;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 88px !important;
    padding: 12px 18px !important;
  }

  .brand {
    width: 204px !important;
    min-width: 204px !important;
    min-height: 62px !important;
    padding-left: 8px !important;
  }

  .brand img {
    width: 188px !important;
  }

  .hero.home-hero::before {
    background-size: cover !important;
    opacity: .28 !important;
    -webkit-mask: none !important;
    mask: none !important;
  }
}

/* Ajustements finaux hero/header - sans changement de contenu */
.brand {
  position: relative !important;
  width: 300px !important;
  min-width: 300px !important;
  min-height: 86px !important;
  padding: 12px 0 12px 0 !important;
}

.brand img {
  opacity: 0 !important;
  visibility: hidden !important;
}

.brand::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 288px;
  height: 86px;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 2048px auto;
  background-position: -154px -26px;
  pointer-events: none;
}

.hero.home-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 250, 247, 1) 0%, rgba(255, 250, 247, .98) 39%, rgba(255, 250, 247, .74) 50%, rgba(255, 250, 247, .16) 67%, rgba(255, 250, 247, 0) 82%),
    var(--gz-hero-image, url("assets/brand/hero-maternity.jpg")) right center / min(64vw, 980px) auto no-repeat !important;
}

.hero.home-hero > .kicker,
.hero.home-hero > .hero-subtitle,
.hero.home-hero > .hero-panel {
  width: min(560px, 44vw) !important;
  max-width: 560px !important;
}

.hero-panel h1 {
  max-width: 560px !important;
  font-size: clamp(38px, 4.05vw, 58px) !important;
  line-height: 1.02 !important;
}

.hero-panel h1 span {
  color: var(--gold-dark);
}

.hero.home-hero .actions {
  width: min(552px, 44vw) !important;
  max-width: 552px !important;
  gap: 14px !important;
  margin-top: 34px !important;
  margin-bottom: 34px !important;
  z-index: 6 !important;
  overflow: visible !important;
}

.hero.home-hero .button,
.hero.home-hero .button.primary,
.hero.home-hero .button.secondary {
  position: relative !important;
  z-index: 7 !important;
  min-height: 56px !important;
  padding: 0 24px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

.hero.home-hero .button.primary {
  min-width: 252px !important;
}

.hero.home-hero .button.secondary {
  min-width: 286px !important;
}

.hero.home-hero .button::before,
.hero.home-hero .button.secondary::before {
  display: none !important;
  content: none !important;
}

@media (max-width: 1180px) {
  .hero.home-hero > .kicker,
  .hero.home-hero > .hero-subtitle,
  .hero.home-hero > .hero-panel,
  .hero.home-hero .actions {
    width: min(535px, 55vw) !important;
    max-width: 535px !important;
  }

  .hero.home-hero .actions {
    flex-wrap: wrap !important;
  }
}

@media (max-width: 1040px) {
  .brand {
    width: 232px !important;
    min-width: 232px !important;
    min-height: 72px !important;
  }

  .brand::before {
    width: 224px;
    height: 72px;
    background-size: 1640px auto;
    background-position: -123px -21px;
  }
}

@media (max-width: 760px) {
  .brand {
    width: 202px !important;
    min-width: 202px !important;
    min-height: 64px !important;
  }

  .brand::before {
    width: 198px;
    height: 64px;
    background-size: 1440px auto;
    background-position: -108px -18px;
  }

  .hero.home-hero > .kicker,
  .hero.home-hero > .hero-subtitle,
  .hero.home-hero > .hero-panel,
  .hero.home-hero .actions {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero.home-hero .button.primary,
  .hero.home-hero .button.secondary {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* Ajustement titre hero uniquement */
.hero-panel h1 {
  max-width: 720px !important;
  width: 720px !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  color: var(--navy) !important;
  font-size: clamp(34px, 3.55vw, 54px) !important;
  line-height: 1.02 !important;
}

.hero-panel h1 span {
  display: inline;
  font-family: "Parisienne", cursive !important;
  color: var(--gold-dark) !important;
  font-size: 1.12em;
  font-weight: 400;
  line-height: .96;
}

.hero.home-hero > .hero-panel {
  transform: translateY(-18px);
}

@media (max-width: 1180px) {
  .hero-panel h1 {
    width: min(660px, 56vw) !important;
    max-width: min(660px, 56vw) !important;
  }
}

@media (max-width: 760px) {
  .hero.home-hero > .hero-panel {
    transform: translateY(-10px);
  }

  .hero-panel h1 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(34px, 10vw, 48px) !important;
  }
}

.brand img {
  content: normal !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 260px !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  transform: translateY(6px) !important;
}

.brand::before {
  content: none !important;
  display: none !important;
  background-image: none !important;
}

.legal-content .cgv-validation-note {
  margin: 18px 0 24px;
  padding: 16px 18px;
  border: 1px solid rgba(128, 32, 48, .24);
  border-left: 4px solid #8a2638;
  border-radius: 10px;
  background: rgba(138, 38, 56, .065);
  color: #7b1f30;
}

.legal-content .cgv-validation-note p {
  margin: 0;
  color: inherit;
}

.legal-content .cgv-validation-note strong {
  color: #7b1f30;
}
