:root {
  --navy: #141b3d;
  --text: #26304f;
  --muted: #6c7390;
  --pink: #ff4f7b;
  --coral: #ff654f;
  --orange: #ffad22;
  --purple: #8f58e8;
  --blue-soft: #eef7ff;
  --cream: #fff8ef;
  --white: #ffffff;
  --border: rgba(20, 27, 61, 0.1);
  --shadow: 0 18px 45px rgba(20, 27, 61, 0.10);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #fffdf9;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 79, 123, .08), transparent 25%),
    radial-gradient(circle at 85% 10%, rgba(255, 173, 34, .12), transparent 28%),
    radial-gradient(circle at 90% 70%, rgba(143, 88, 232, .08), transparent 24%);
  z-index: -1;
}

img, svg {
  max-width: 100%;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(20, 27, 61, .06);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.logo span span {
  color: var(--pink);
}

.logo-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff4f7b, #ffad22);
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(255, 79, 123, .25);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--pink);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
  color: var(--navy);
  font-size: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  box-shadow: 0 14px 28px rgba(255, 79, 123, .25);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(255, 79, 123, .32);
}

.btn-secondary {
  color: var(--navy);
  background: white;
  border: 1px solid rgba(255, 79, 123, .35);
  box-shadow: 0 10px 24px rgba(20, 27, 61, .08);
}

.btn-outline {
  color: var(--pink);
  border: 1px solid rgba(255, 79, 123, .55);
  background: white;
}

.btn-purple {
  color: white;
  background: linear-gradient(135deg, var(--purple), #b66dff);
  box-shadow: 0 14px 28px rgba(143, 88, 232, .22);
}

.btn-small {
  min-height: 46px;
  padding-inline: 20px;
  font-size: 14px;
}

.section {
  padding: 90px 0;
}

.section-soft {
  background: linear-gradient(180deg, #fffdf9 0%, #fff6f3 100%);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 62px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 13px;
  font-weight: 800;
}

.eyebrow.light {
  color: #ffe1e9;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(46px, 6vw, 82px);
  margin-bottom: 24px;
}

h1 span {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 16px;
}

h3 {
  color: var(--navy);
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 560px;
  color: var(--muted);
  font-size: 19px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badges span {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(255,255,255,.75);
  box-shadow: 0 8px 20px rgba(20, 27, 61, .04);
  font-weight: 700;
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.photo-card {
  position: absolute;
  inset: 0 0 130px 0;
  border-radius: 42px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff0d8, #ffe5ec 55%, #f1e7ff);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.85);
}

.birthday-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.family {
  position: relative;
  width: 380px;
  height: 260px;
  margin-top: -50px;
}

.person {
  position: absolute;
  bottom: 0;
  border-radius: 999px 999px 30px 30px;
  box-shadow: 0 20px 30px rgba(20,27,61,.12);
}

.person::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -58px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #ffd5bd;
  box-shadow: inset 0 -10px 0 rgba(255, 155, 105, .18);
}

.person::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -76px;
  width: 105px;
  height: 62px;
  border-radius: 55px 55px 34px 34px;
  background: #6d3f2a;
}

.dad {
  left: 0;
  width: 130px;
  height: 170px;
  background: #587dc5;
  transform: rotate(-5deg);
}

.child {
  left: 126px;
  width: 126px;
  height: 150px;
  background: #ff7196;
  z-index: 2;
}

.child::after {
  background: #d99c57;
}

.child::before {
  width: 78px;
  height: 78px;
  top: -48px;
}

.mom {
  right: 0;
  width: 140px;
  height: 174px;
  background: #ffb1be;
  transform: rotate(5deg);
}

.cake {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 210px;
  height: 84px;
  border-radius: 24px 24px 12px 12px;
  background: linear-gradient(180deg, #fff, #ffd3dd 42%, #ff84a2 43%, #ff84a2);
  box-shadow: 0 20px 30px rgba(255, 79, 123, .18);
}

.cake span {
  position: absolute;
  top: -38px;
  width: 8px;
  height: 34px;
  border-radius: 4px;
  background: #fff;
}

.cake span::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 13px;
  height: 17px;
  border-radius: 50% 50% 50% 0;
  background: #ffb11f;
  transform-origin: bottom;
  rotate: 45deg;
}

.cake span:nth-child(1) { left: 45px; }
.cake span:nth-child(2) { left: 78px; }
.cake span:nth-child(3) { left: 106px; }
.cake span:nth-child(4) { left: 136px; }
.cake span:nth-child(5) { left: 165px; }

.gift-box {
  position: absolute;
  left: 38px;
  bottom: 84px;
  width: 90px;
  height: 92px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, transparent 43%, #ffce55 44%, #ffce55 57%, transparent 58%),
    linear-gradient(180deg, transparent 38%, #ffce55 39%, #ffce55 52%, transparent 53%),
    #ff597d;
  transform: rotate(-9deg);
  box-shadow: 0 20px 30px rgba(255, 79, 123, .22);
}

.confetti {
  position: absolute;
  width: 13px;
  height: 22px;
  border-radius: 8px;
}

.c1 { top: 46px; left: 70px; background: var(--pink); transform: rotate(24deg); }
.c2 { top: 92px; right: 80px; background: var(--orange); transform: rotate(-18deg); }
.c3 { bottom: 130px; right: 42px; background: var(--purple); transform: rotate(42deg); }
.c4 { top: 56px; right: 210px; background: #4fb7ff; transform: rotate(-45deg); }

.audio-player {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: var(--shadow);
}

.audio-player.floating {
  position: absolute;
  left: 40px;
  right: 26px;
  bottom: 76px;
}

.play-btn, .mini-player button {
  border: 0;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  cursor: pointer;
}

.play-btn {
  width: 64px;
  height: 64px;
  font-size: 22px;
}

.player-main {
  width: 100%;
}

.waveform, .mini-wave {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 44px;
}

.waveform span, .mini-wave span {
  display: block;
  width: 5px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--pink), var(--orange));
}

.waveform span:nth-child(1) { height: 15px; }
.waveform span:nth-child(2) { height: 32px; }
.waveform span:nth-child(3) { height: 21px; }
.waveform span:nth-child(4) { height: 38px; }
.waveform span:nth-child(5) { height: 26px; }
.waveform span:nth-child(6) { height: 42px; }
.waveform span:nth-child(7) { height: 18px; }
.waveform span:nth-child(8) { height: 34px; }
.waveform span:nth-child(9) { height: 27px; }
.waveform span:nth-child(10) { height: 39px; }
.waveform span:nth-child(11) { height: 17px; }
.waveform span:nth-child(12) { height: 31px; }
.waveform span:nth-child(13) { height: 24px; }
.waveform span:nth-child(14) { height: 40px; }
.waveform span:nth-child(15) { height: 22px; }

.player-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}

.player-meta strong {
  color: var(--navy);
}

.decor {
  position: absolute;
  z-index: 0;
  color: rgba(255, 79, 123, .35);
  font-size: 50px;
  font-weight: 800;
}

.decor-1 { top: 160px; left: 3vw; }
.decor-2 { top: 120px; right: 4vw; color: rgba(143, 88, 232, .32); }
.decor-3 { bottom: 70px; left: 18vw; color: rgba(255, 173, 34, .4); }

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.section-heading.left {
  text-align: left;
  margin: 0;
}

.steps-grid, .examples-grid, .pricing-grid, .reviews-grid {
  display: grid;
  gap: 24px;
}

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

.step-card {
  position: relative;
  padding: 34px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(20, 27, 61, .07);
  text-align: center;
}

.step-card::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  color: rgba(20,27,61,.28);
  font-size: 36px;
}

.step-card:last-child::after {
  display: none;
}

.step-number {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  font-weight: 900;
}

.step-number.orange { background: var(--orange); }
.step-number.purple { background: var(--purple); }

.step-icon {
  width: 82px;
  height: 82px;
  margin: 4px auto 22px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: #fff5f2;
  font-size: 38px;
}

.step-card p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.sample-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 22px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 16px 34px rgba(20, 27, 61, .06);
}

.sample-avatar {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: white;
  font-weight: 900;
  font-size: 24px;
}

.avatar-child { background: linear-gradient(135deg, #ff4f7b, #ffad22); }
.avatar-dad { background: linear-gradient(135deg, #546ce8, #8ab8ff); }
.avatar-party { background: linear-gradient(135deg, #8f58e8, #ff4fbb); }

.sample-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
}

.mini-player {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-player button {
  width: 40px;
  height: 40px;
}

.mini-wave span {
  height: 24px;
  width: 4px;
}

.mini-wave span:nth-child(odd) { height: 14px; }
.mini-wave span:nth-child(3n) { height: 30px; }

.orange-player button, .orange-player .mini-wave span { background: var(--orange); }
.purple-player button, .purple-player .mini-wave span { background: var(--purple); }

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 36px;
  border-radius: 30px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(20, 27, 61, .07);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid rgba(255, 173, 34, .55);
  transform: translateY(-16px);
  box-shadow: 0 26px 56px rgba(255, 173, 34, .18);
}

.price-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 34px;
  margin-bottom: 8px;
  color: var(--pink);
}

.price-card.featured h3 { color: var(--orange); }
.price-card.surprise h3 { color: var(--purple); }

.price {
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 28px;
}

.price-card ul {
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
  color: var(--muted);
}

.price-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--pink);
  font-size: 12px;
  font-weight: 900;
}

.featured li::before { background: var(--orange); }
.surprise li::before { background: var(--purple); }

.price-card .btn {
  margin-top: auto;
}

.popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  font-weight: 900;
  font-size: 13px;
}

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

.review-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 16px 34px rgba(20, 27, 61, .06);
}

.quote {
  position: absolute;
  top: 10px;
  right: 26px;
  color: rgba(255, 79, 123, .18);
  font-size: 88px;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-card p {
  position: relative;
  color: var(--text);
  font-weight: 600;
}

.stars {
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.review-card small {
  display: block;
  color: var(--muted);
}

.order-section {
  background: linear-gradient(135deg, #ff4f7b, #ff7456 45%, #8f58e8);
  color: white;
  overflow: hidden;
}

.order-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.order-grid h2 {
  color: white;
}

.order-grid p {
  color: rgba(255,255,255,.85);
  font-size: 18px;
}

.order-form {
  background: white;
  color: var(--text);
  border-radius: 32px;
  padding: 30px;
  box-shadow: 0 28px 60px rgba(20, 27, 61, .18);
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--navy);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(20, 27, 61, .12);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fffdf9;
  outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(255, 79, 123, .55);
  box-shadow: 0 0 0 4px rgba(255, 79, 123, .10);
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.full {
  width: 100%;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted) !important;
  font-size: 13px !important;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border-radius: 20px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(20, 27, 61, .05);
  padding: 20px 24px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--navy);
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 42px 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  gap: 20px;
  place-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

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

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

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  html, body {
    overflow-x: hidden;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: none !important;
  }

  .main-nav.is-open {
    display: none !important;
  }

  .header-inner > .btn-small {
    display: inline-flex;
    min-width: unset;
    font-size: 13px;
    padding: 10px 14px;
    white-space: nowrap;
  }

  .site-header {
    overflow: hidden;
  }

  .hero-grid,
  .order-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .steps-grid,
  .examples-grid,
  .pricing-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .step-card::after {
    display: none;
  }

  .price-card.featured {
    transform: none;
  }

  .section-heading.left {
    text-align: center;
    margin: 0 auto 20px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .hero,
  .section {
    padding: 58px 0;
  }

  .header-inner {
    min-height: 72px;
    gap: 12px;
  }

  .logo {
    font-size: 14px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .photo-card {
    border-radius: 28px;
  }

  .family {
    transform: scale(.78);
  }

  .audio-player.floating {
    left: 12px;
    right: 12px;
    bottom: 10px;
  }

  .audio-player {
    padding: 14px;
  }

  .play-btn {
    width: 50px;
    height: 50px;
  }

  .player-meta {
    flex-direction: column;
    gap: 0;
  }

  .sample-card {
    align-items: flex-start;
  }

  .two-cols {
    grid-template-columns: 1fr;
  }

  .order-form,
  .price-card,
  .step-card,
  .review-card {
    padding: 24px;
  }
}


/* Upgrade festif + image réelle + argument 2 minutes */
.festive-site {
  background-image:
    radial-gradient(circle at 8% 12%, rgba(255, 79, 123, .12) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 18%, rgba(255, 173, 34, .16) 0 3px, transparent 4px),
    radial-gradient(circle at 18% 82%, rgba(143, 88, 232, .10) 0 3px, transparent 4px);
}

.festive-site .hero {
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 173, 34, .18), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(255, 79, 123, .16), transparent 26%),
    linear-gradient(180deg, #fffdf9 0%, #fff3f8 55%, #fff7ed 100%);
}

.festive-site .hero::before {
  content: '🎵  🎉  ✨  🎁  ♫';
  position: absolute;
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: 34px;
  letter-spacing: 28px;
  opacity: .16;
  pointer-events: none;
}

.speed-banner {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 610px;
  padding: 14px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 79, 123, .10), rgba(255, 173, 34, .16));
  border: 1px solid rgba(255, 79, 123, .16);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(255, 79, 123, .08);
}

.speed-banner strong {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(255, 79, 123, .22);
}

.speed-banner span {
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
}

.photo-card {
  background: #fff;
}

.hero-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(1.08) contrast(1.02);
}

.hero-sparkle {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 14px 28px rgba(20, 27, 61, .12);
  backdrop-filter: blur(10px);
  font-size: 25px;
}

.sparkle-a { top: 22px; left: 24px; transform: rotate(-10deg); }
.sparkle-b { top: 34px; right: 30px; transform: rotate(12deg); }
.sparkle-c { bottom: 118px; right: 28px; transform: rotate(-8deg); }

.trust-badges span:first-child {
  color: var(--navy);
  background: linear-gradient(135deg, rgba(255, 79, 123, .12), rgba(255, 173, 34, .18));
  border-color: rgba(255, 79, 123, .20);
}

.step-card,
.sample-card,
.price-card,
.review-card,
details,
.order-form {
  position: relative;
  overflow: hidden;
}

.step-card::before,
.sample-card::before,
.price-card::before,
.review-card::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 173, 34, .18), transparent 70%);
  pointer-events: none;
}

.section-heading h2::after {
  content: ' 🎶';
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .52em;
  vertical-align: middle;
}

.order-section {
  position: relative;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.22), transparent 16%),
    radial-gradient(circle at 86% 70%, rgba(255,255,255,.18), transparent 18%),
    linear-gradient(135deg, #ff4f7b, #ff7456 42%, #8f58e8);
}

.order-section::before {
  content: '🎁 🎵 ✨ 🎉';
  position: absolute;
  inset: auto 0 20px;
  text-align: center;
  font-size: 58px;
  letter-spacing: 38px;
  opacity: .16;
  pointer-events: none;
}

@media (max-width: 620px) {
  .speed-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-sparkle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 21px;
  }
}


/* Harmonisation demandée : hero desktop plus compact + tarif unique */
@media (min-width: 981px) {
  .hero {
    padding: 58px 0 58px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.78fr);
    gap: 48px;
  }

  .hero-content {
    max-width: 650px;
  }

  h1 {
    font-size: clamp(44px, 4.5vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    max-width: 690px;
    margin-bottom: 18px;
  }

  .hero-subtitle {
    max-width: 560px;
    font-size: 18px;
    margin-bottom: 24px;
  }

  .hero-actions {
    margin-bottom: 18px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .photo-card {
    inset: 0 0 68px 0;
    border-radius: 34px;
  }

  .audio-player.floating {
    left: 26px;
    right: 22px;
    bottom: 12px;
  }

  .waveform {
    height: 34px;
  }

  .trust-badges span {
    padding: 9px 12px;
    font-size: 12px;
  }

  .speed-banner {
    max-width: 560px;
    padding: 11px 14px;
  }
}

.single-price-wrap {
  display: flex;
  justify-content: center;
}

.single-price-card {
  width: min(100%, 560px);
  text-align: center;
  transform: none !important;
}

.single-price-card ul {
  text-align: left;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.single-price-card .price {
  font-size: clamp(58px, 7vw, 82px);
  margin-bottom: 24px;
}

.single-price-card h3 {
  font-size: clamp(32px, 4vw, 42px);
}

.single-price-card .btn {
  width: min(100%, 360px);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 980px) {
  .single-price-card {
    width: 100%;
  }
}


/* Ajustement émotionnel : la fête avant le prix */
.header-inner > .btn-small {
  min-width: 156px;
}

.hero .btn-primary,
.header-inner > .btn-primary,
.order-form .btn-primary,
.single-price-card .btn-primary {
  background: linear-gradient(135deg, #ff4f7b, #ff8a3d 50%, #ffbf2e);
  box-shadow: 0 16px 34px rgba(255, 95, 89, .28);
}

.hero .btn-primary:hover,
.header-inner > .btn-primary:hover,
.order-form .btn-primary:hover,
.single-price-card .btn-primary:hover {
  box-shadow: 0 20px 42px rgba(255, 95, 89, .36);
}

.single-price-card .popular {
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.single-price-card .price::after {
  content: ' seulement';
  display: block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pink);
}

.single-price-card {
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 79, 123, .10), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(255, 173, 34, .14), transparent 22%),
    white;
}

.speed-banner strong {
  min-width: max-content;
}

@media (min-width: 981px) {
  .header-inner > .btn-small {
    padding-inline: 18px;
  }
}


/* Logo image intégré */
.logo.image-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: 310px;
}

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

.site-header .logo.image-logo {
  width: 300px;
}

.footer-logo.image-logo {
  width: 290px;
  justify-content: center;
}

@media (max-width: 1180px) {
  .site-header .logo.image-logo {
    width: 250px;
  }

  .main-nav {
    gap: 18px;
    font-size: 14px;
  }
}

@media (max-width: 980px) {
  .site-header .logo.image-logo {
    width: 235px;
  }
}

@media (max-width: 620px) {
  .site-header .logo.image-logo {
    width: 190px;
  }

  .logo.image-logo img {
    max-height: 48px;
  }

  .footer-logo.image-logo {
    width: 230px;
  }
}


/* Logo agrandi */
.site-header .logo.image-logo {
  width: 385px;
  max-width: 385px;
}

.logo.image-logo img {
  max-height: 76px;
}

.header-inner {
  min-height: 96px;
}

.footer-logo.image-logo {
  width: 360px;
  max-width: 360px;
}

@media (max-width: 1280px) {
  .site-header .logo.image-logo {
    width: 335px;
    max-width: 335px;
  }

  .main-nav {
    gap: 16px;
    font-size: 13px;
  }

  .header-inner > .btn-small {
    min-width: 142px;
    padding-inline: 14px;
  }
}

@media (max-width: 1080px) {
  .site-header .logo.image-logo {
    width: 300px;
    max-width: 300px;
  }
}

@media (max-width: 980px) {
  .site-header .logo.image-logo {
    width: 285px;
    max-width: 285px;
  }

  .header-inner {
    min-height: 88px;
  }
}

@media (max-width: 620px) {
  .site-header .logo.image-logo {
    width: 235px;
    max-width: 235px;
  }

  .logo.image-logo img {
    max-height: 62px;
  }

  .footer-logo.image-logo {
    width: 285px;
    max-width: 285px;
  }

  .header-inner {
    min-height: 78px;
  }
}


/* Logo transparent + encore plus grand */
.site-header .logo.image-logo {
  width: 430px;
  max-width: 430px;
}

.logo.image-logo img {
  max-height: 84px;
}

.header-inner {
  min-height: 102px;
}

.footer-logo.image-logo {
  width: 390px;
  max-width: 390px;
}

@media (max-width: 1280px) {
  .site-header .logo.image-logo {
    width: 370px;
    max-width: 370px;
  }

  .logo.image-logo img {
    max-height: 78px;
  }

  .main-nav {
    gap: 15px;
    font-size: 13px;
  }

  .header-inner > .btn-small {
    min-width: 138px;
    padding-inline: 13px;
  }
}

@media (max-width: 1080px) {
  .site-header .logo.image-logo {
    width: 325px;
    max-width: 325px;
  }

  .header-inner {
    min-height: 94px;
  }
}

@media (max-width: 980px) {
  .site-header .logo.image-logo {
    width: 295px;
    max-width: 295px;
  }

  .logo.image-logo img {
    max-height: 68px;
  }

  .header-inner {
    min-height: 86px;
  }
}

@media (max-width: 620px) {
  .site-header .logo.image-logo {
    width: 245px;
    max-width: 245px;
  }

  .logo.image-logo img {
    max-height: 60px;
  }

  .footer-logo.image-logo {
    width: 305px;
    max-width: 305px;
  }

  .header-inner {
    min-height: 76px;
  }
}


/* Connexion Make : messages formulaire */
.form-note.is-loading {
  color: var(--orange) !important;
  font-weight: 800;
}

.form-note.is-success {
  color: #159947 !important;
  font-weight: 900;
}

.form-note.is-error {
  color: #d7264d !important;
  font-weight: 900;
}

.order-form button:disabled {
  opacity: .78;
  cursor: wait;
  transform: none;
}


/* Pages formulaire + merci + mise en avant 2 versions */
.form-hero {
  padding: 70px 0 34px;
  text-align: center;
}

.form-hero .container {
  max-width: 850px;
}

.form-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  margin-bottom: 18px;
}

.form-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
}

.home-final-cta .final-cta-card {
  background: rgba(255,255,255,.95);
  color: var(--navy);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 28px 60px rgba(20, 27, 61, .18);
  text-align: center;
  border: 1px solid rgba(255,255,255,.75);
}

.final-price {
  font-size: clamp(54px, 7vw, 84px);
  line-height: 1;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.06em;
  margin-bottom: 16px;
}

.final-cta-card p {
  color: var(--text) !important;
  font-weight: 800;
  margin-bottom: 24px;
}

.thankyou-section {
  min-height: 70vh;
  display: grid;
  align-items: center;
  padding: 90px 0;
}

.thankyou-card {
  max-width: 860px;
  text-align: center;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: 42px;
  padding: clamp(34px, 6vw, 70px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.thankyou-card::before {
  content: '';
  position: absolute;
  inset: -140px auto auto -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 173, 34, .24), transparent 70%);
}

.thankyou-icon {
  font-size: 70px;
  margin-bottom: 12px;
}

.thankyou-card h1 {
  font-size: clamp(42px, 5vw, 70px);
  margin-bottom: 18px;
}

.thankyou-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
  max-width: 680px;
  margin: 0 auto 26px;
}

.thankyou-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.thankyou-steps span {
  padding: 11px 14px;
  border-radius: 999px;
  background: #fff6f3;
  color: var(--navy);
  font-weight: 800;
  border: 1px solid rgba(255,79,123,.14);
}

@media (max-width: 620px) {
  .form-hero {
    padding: 48px 0 24px;
  }

  .home-final-cta .final-cta-card {
    padding: 26px;
  }

  .thankyou-section {
    padding: 58px 0;
  }

  .thankyou-icon {
    font-size: 54px;
  }
}


.form-payment-note {
  display: inline-flex;
  margin-top: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 79, 123, .10);
  border: 1px solid rgba(255, 79, 123, .20);
  color: var(--navy);
  font-weight: 800;
}


/* Clarification tunnel paiement -> formulaire + aperçu formulaire */
.price-card,
.price-card.featured,
.single-price-card {
  overflow: visible !important;
}

.form-preview-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 79, 123, .10), transparent 22%),
    radial-gradient(circle at 86% 32%, rgba(143, 88, 232, .10), transparent 24%),
    #fffdf9;
}

.form-preview-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.form-preview-content p {
  color: var(--muted);
  font-size: 18px;
  max-width: 620px;
}

.preview-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.preview-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
  color: var(--navy);
}

.preview-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  font-size: 13px;
  font-weight: 900;
}

.form-preview-card {
  border-radius: 34px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(20, 27, 61, .10);
  box-shadow: 0 24px 58px rgba(20, 27, 61, .12);
  padding: 28px;
  position: relative;
}

.form-preview-card::before {
  content: '';
  position: absolute;
  inset: -24px -18px auto auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 173, 34, .24), transparent 70%);
  pointer-events: none;
}

.preview-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.preview-card-header span {
  color: var(--navy);
  font-weight: 900;
}

.preview-card-header strong {
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  font-size: 13px;
}

.preview-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.preview-field {
  margin-bottom: 14px;
}

.preview-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.preview-field div {
  border: 1px solid rgba(20, 27, 61, .12);
  background: #fffdf9;
  border-radius: 16px;
  padding: 13px 15px;
  color: var(--muted);
  font-weight: 700;
}

.preview-field.large div {
  min-height: 84px;
}

.preview-submit {
  margin-top: 8px;
  min-height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 14px 28px rgba(255, 79, 123, .25);
}

@media (max-width: 980px) {
  .form-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .preview-card-header,
  .preview-field-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .preview-card-header {
    align-items: start;
  }

  .form-preview-card {
    padding: 22px;
  }
}


/* Exemples audio réels */
.audio-examples-grid {
  align-items: stretch;
}

.audio-sample-card {
  align-items: flex-start;
}

.audio-sample-card .sample-content {
  width: 100%;
}

.audio-sample-card p {
  margin: -4px 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.audio-sample-card audio {
  width: 100%;
  display: block;
  height: 42px;
  accent-color: var(--pink);
}

.audio-sample-card .sample-avatar {
  font-size: 28px;
}

@media (max-width: 620px) {
  .audio-sample-card {
    flex-direction: column;
  }

  .audio-sample-card .sample-avatar {
    width: 58px;
    height: 58px;
  }
}


/* Pages légales */
.legal-page {
  padding: 72px 0 90px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 79, 123, .08), transparent 22%),
    radial-gradient(circle at 88% 20%, rgba(255, 173, 34, .10), transparent 22%),
    #fffdf9;
}

.legal-container {
  max-width: 930px;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 58px);
}

.legal-container h1 {
  font-size: clamp(38px, 5vw, 62px);
  margin-bottom: 14px;
}

.legal-container h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 34px 0 12px;
  color: var(--navy);
}

.legal-container h3 {
  margin: 24px 0 10px;
}

.legal-container p,
.legal-container li {
  color: var(--muted);
}

.legal-container ul {
  padding-left: 22px;
}

.legal-note {
  margin: 26px 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff6f3;
  border: 1px solid rgba(255,79,123,.15);
  color: var(--navy) !important;
  font-weight: 800;
}

.legal-placeholder {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 8px;
  background: rgba(255, 173, 34, .18);
  color: var(--navy);
  font-weight: 900;
}

.form-preview-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.form-preview-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px rgba(20, 27, 61, .16);
}

.form-preview-link .preview-submit {
  pointer-events: none;
}


/* Correction affichage prix : éviter que le € tombe seul à la ligne */
.price-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: white;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(255, 79, 123, .22);
}

.price,
.final-price {
  white-space: nowrap;
}

.section-heading h2 {
  overflow-wrap: normal;
}


/* Lecteur audio réel dans le hero/header */
.hero-real-audio {
  align-items: center;
}

.hero-audio-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 14px 28px rgba(255, 79, 123, .25);
  font-size: 25px;
}

.hero-real-audio audio {
  width: 100%;
  display: block;
  height: 42px;
  margin-top: 8px;
  accent-color: var(--pink);
}

.hero-player-meta {
  align-items: flex-start;
  margin-bottom: 2px;
}

.hero-player-meta small {
  color: var(--muted);
  font-weight: 700;
}

/* Exemples audio réels */
.audio-examples-grid {
  align-items: stretch;
}

.audio-sample-card {
  align-items: flex-start;
}

.audio-sample-card .sample-content {
  width: 100%;
}

.audio-sample-card p {
  margin: -4px 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.audio-sample-card audio {
  width: 100%;
  display: block;
  height: 42px;
  accent-color: var(--pink);
}

.audio-sample-card .sample-avatar {
  font-size: 28px;
}

@media (max-width: 620px) {
  .hero-audio-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .hero-real-audio {
    align-items: flex-start;
  }

  .audio-sample-card {
    flex-direction: column;
  }

  .audio-sample-card .sample-avatar {
    width: 58px;
    height: 58px;
  }
}


/* Correction lecteur audio header : vrai lecteur natif cliquable */
.hero-real-audio {
  z-index: 10;
  pointer-events: auto;
}

.hero-real-audio .player-main,
.hero-real-audio audio,
.hero-audio-control {
  position: relative;
  z-index: 11;
  pointer-events: auto;
}

.hero-player-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
}

.hero-player-title strong {
  color: var(--navy);
  font-weight: 900;
}

.hero-player-title small {
  color: var(--muted);
  font-weight: 700;
}

.hero-audio-control {
  width: 100%;
  min-width: 230px;
  height: 42px;
  display: block;
}

.photo-card,
.audio-player.floating {
  pointer-events: auto;
}

@media (max-width: 620px) {
  .hero-audio-control {
    min-width: 0;
  }
}


/* Styles musicaux enrichis */
.field-hint {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.styles-section {
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 79, 123, .10), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 173, 34, .12), transparent 24%),
    #fff7ed;
}

.style-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.style-chips span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(20, 27, 61, .08);
  box-shadow: 0 12px 26px rgba(20, 27, 61, .06);
  color: var(--navy);
  font-weight: 900;
}


/* Correction mise en page formulaire */
.form-page .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.form-hero-compact {
  padding: 62px 0 44px;
  text-align: center;
}

.form-hero-compact .container {
  max-width: 900px;
}

.form-hero-compact h1 {
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.2;
  margin-bottom: 18px;
}

.form-hero-compact p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
}

.form-page .form-payment-note {
  display: inline-flex;
  margin: 22px auto 0;
}

.form-order-section {
  padding: 72px 0 84px;
  overflow: visible;
}

.form-order-section .order-grid {
  align-items: start;
  grid-template-columns: minmax(300px, .78fr) minmax(520px, 1fr);
  gap: clamp(34px, 5vw, 72px);
}

.form-order-section .order-grid > div:first-child {
  position: sticky;
  top: 118px;
  align-self: start;
  padding-top: 12px;
}

.form-order-section .order-grid > div:first-child h2 {
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 1.02;
}

.form-order-section .order-grid > div:first-child p {
  max-width: 560px;
  font-size: 18px;
}

.form-order-section .order-form {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border-radius: 34px;
  padding: clamp(26px, 4vw, 42px);
  overflow: visible;
}

.form-intro-pill {
  margin: 0 0 22px;
  padding: 13px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 79, 123, .10), rgba(255, 173, 34, .16));
  border: 1px solid rgba(255, 79, 123, .18);
  color: var(--navy);
  font-weight: 900;
  line-height: 1.35;
}

.form-order-section .form-row {
  margin-bottom: 20px;
}

.form-order-section input,
.form-order-section select,
.form-order-section textarea {
  min-height: 58px;
}

.form-order-section textarea {
  min-height: 140px;
}

@media (max-width: 1080px) {
  .form-order-section .order-grid {
    grid-template-columns: 1fr;
  }

  .form-order-section .order-grid > div:first-child {
    position: static;
    text-align: center;
    padding-top: 0;
  }

  .form-order-section .order-grid > div:first-child p {
    margin-left: auto;
    margin-right: auto;
  }

  .form-order-section .order-form {
    max-width: 820px;
  }
}

@media (max-width: 620px) {
  .form-hero-compact {
    padding: 44px 0 32px;
  }

  .form-order-section {
    padding: 42px 0 58px;
  }

  .form-order-section .order-form {
    padding: 22px;
    border-radius: 26px;
  }

  .form-order-section .order-grid > div:first-child h2 {
    font-size: 38px;
  }
}


/* Correction alignement header + rappel détails formulaire */
.fixed-form-page .site-header {
  height: auto;
  min-height: 92px;
  display: flex;
  align-items: center;
}

.fixed-form-page .header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 0;
  padding-bottom: 0;
}

.fixed-form-page .site-header .logo.image-logo {
  display: flex;
  align-items: center;
  width: 330px;
  max-width: 330px;
  height: 74px;
}

.fixed-form-page .site-header .logo.image-logo img {
  max-height: 66px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.fixed-form-page .main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  line-height: 1;
  margin: 0;
}

.fixed-form-page .header-inner > .btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin: 0;
  white-space: nowrap;
}

.fixed-form-page .form-hero-compact {
  padding-top: 64px;
  padding-bottom: 48px;
}

.fixed-form-page .form-hero-compact p strong {
  color: var(--navy);
  font-weight: 900;
}

.fixed-form-page .form-payment-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
}

.personalization-tip {
  display: grid;
  gap: 7px;
  margin: 10px 0 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 79, 123, .12), rgba(255, 173, 34, .18));
  border: 1px solid rgba(255, 79, 123, .20);
  color: var(--navy);
  box-shadow: 0 12px 26px rgba(255, 79, 123, .08);
}

.personalization-tip strong {
  font-weight: 900;
  font-size: 16px;
}

.personalization-tip span {
  color: var(--text);
  font-weight: 750;
  line-height: 1.5;
  font-size: 14px;
}

.fixed-form-page .form-order-section .order-grid {
  margin-top: 0;
}

.fixed-form-page .order-form label {
  line-height: 1.25;
}

@media (max-width: 1180px) {
  .fixed-form-page .site-header .logo.image-logo {
    width: 280px;
    max-width: 280px;
  }

  .fixed-form-page .main-nav {
    gap: 18px;
  }
}

@media (max-width: 980px) {
  .fixed-form-page .header-inner {
    min-height: 82px;
  }

  .fixed-form-page .site-header .logo.image-logo {
    width: 240px;
    max-width: 240px;
    height: 64px;
  }

  .fixed-form-page .site-header .logo.image-logo img {
    max-height: 58px;
  }
}

@media (max-width: 620px) {
  .fixed-form-page .header-inner {
    min-height: 74px;
  }

  .fixed-form-page .site-header .logo.image-logo {
    width: 205px;
    max-width: 205px;
    height: 56px;
  }

  .fixed-form-page .site-header .logo.image-logo img {
    max-height: 52px;
  }

  .fixed-form-page .header-inner > .btn-small {
    min-height: 48px;
    padding-inline: 14px;
  }

  .personalization-tip {
    padding: 16px;
  }
}


/* Champ anti-bot invisible */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hp-field input {
  width: 1px !important;
  height: 1px !important;
}

.hero-speed-banner {
  position: relative;
  margin-top: 14px;
  flex-shrink: 0;
}



/* ── Paywall overlay sur la carte formulaire ─────────────────────────────── */
.form-preview-card {
  position: relative;
  overflow: hidden;
}

.paywall-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 245, 245, 0.55);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  transition: backdrop-filter 0.2s;
}

.paywall-box {
  background: #fff;
  border-radius: 20px;
  padding: 28px 32px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(220, 60, 80, 0.13), 0 2px 8px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 220px;
}

.paywall-lock {
  font-size: 28px;
  line-height: 1;
}

.paywall-label {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}

.paywall-price {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.paywall-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: 50px;
  margin-top: 4px;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
}

.form-preview-card:hover .paywall-btn {
  opacity: 0.88;
}

.paywall-sub {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}

.form-title-final {
  font-size: clamp(28px, 4vw, 54px) !important;
  line-height: 1.2 !important;
  text-align: center !important;
  margin-bottom: 20px !important;
  background: linear-gradient(135deg, var(--pink) 30%, #7c2d8e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
