/* BGH CORP — NO PAIN NO GAIN */
:root {
  --black: #0a0a0a;
  --black-elevated: #121212;
  --gold: #d4af37;
  --gold-dim: #b8962e;
  --gold-glow: rgba(212, 175, 55, 0.45);
  --white: #f5f5f5;
  --muted: rgba(245, 245, 245, 0.55);
  --orange-fire: #e85d04;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 72px;
  --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
  width: 100%;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition), filter var(--transition);
}

a:hover {
  color: #e8c84a;
}

code {
  font-size: 0.85em;
  color: var(--gold-dim);
}

/* SVG sprite + icônes */
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.icon--trust {
  color: var(--gold);
}

.icon--quote {
  color: var(--gold);
  opacity: 0.35;
}

.btn-icon-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-icon-text .icon {
  width: 1.1em;
  height: 1.1em;
}

/* Texture + orbs */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.glow-orbs {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  animation: float-orb 18s ease-in-out infinite;
}

.orb-1 {
  width: min(50vw, 420px);
  height: min(50vw, 420px);
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  top: -10%;
  right: -10%;
}

.orb-2 {
  width: min(40vw, 360px);
  height: min(40vw, 360px);
  background: radial-gradient(circle, rgba(232, 93, 4, 0.25), transparent 70%);
  bottom: 10%;
  left: -15%;
  animation-delay: -7s;
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, 30px) scale(1.05);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.7rem 0.95rem;
  min-height: auto;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.62));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 12px;
  padding: 0.52rem 0.72rem;
  background: linear-gradient(150deg, rgba(20, 20, 20, 0.88), rgba(12, 12, 12, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 8px 26px rgba(0, 0, 0, 0.35);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
}

.brand:hover {
  color: inherit;
}

.brand-logo {
  width: 42px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.35));
  transition: transform var(--transition), filter var(--transition);
}

.brand:hover .brand-logo {
  transform: scale(1.03);
  filter: drop-shadow(0 0 13px rgba(212, 175, 55, 0.5));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-line {
  font-family: var(--font-display);
  font-size: 1.95rem;
  letter-spacing: 0.1em;
  line-height: 0.9;
}

.brand-tag {
  font-size: 0.44rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.95);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, #e4c349, var(--gold) 40%, var(--gold-dim));
  color: var(--black);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 4px 24px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px var(--gold-glow), 0 8px 32px rgba(212, 175, 55, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-header {
  flex-shrink: 0;
  padding: 0.55rem 0.86rem;
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  color: rgba(245, 245, 245, 0.92);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.85), rgba(10, 10, 10, 0.85));
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 9px;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.1);
}

.btn-block {
  width: 100%;
}

.btn-large {
  padding: 1.1rem 2rem;
  font-size: 0.85rem;
}

.btn-sticky {
  width: 100%;
  max-width: 420px;
}

.btn-header .icon {
  color: var(--gold);
}

@media (max-width: 520px) {
  .site-header .btn-header {
    display: none;
  }

  .site-header {
    padding: 0.58rem 0.65rem;
  }

  .site-header__inner {
    border-radius: 10px;
    padding: 0.46rem 0.58rem;
  }

  .brand-logo {
    width: 34px;
  }

  .brand-line {
    font-size: 1.42rem;
    letter-spacing: 0.08em;
  }

  .brand-tag {
    font-size: 0.39rem;
    letter-spacing: 0.29em;
  }
}

/* Layout */
main {
  position: relative;
  z-index: 1;
}

.section {
  padding: clamp(3rem, 8vw, 6rem) 1.25rem;
  overflow-x: clip;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.container.narrow {
  max-width: 720px;
  text-align: center;
}

.center {
  text-align: center;
}

/* Hero — titre au-dessus de la vidéo */
.hero {
  padding-top: clamp(0.85rem, 2.8vw, 1.6rem);
  padding-bottom: clamp(1.65rem, 5vw, 2.8rem);
  min-height: 0;
}

.hero-inner {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(0.7rem, 2.4vw, 1.2rem);
  align-items: stretch;
}

.hero-video-block {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
}

.hero-copy {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 740px;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .hero-inner {
    max-width: 1100px;
    gap: clamp(1.3rem, 2.8vw, 2.1rem);
  }

  .hero-copy {
    text-align: center;
    align-items: center;
  }
}

.eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.65rem;
  opacity: 0.95;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.hero-title--display {
  font-size: clamp(2.05rem, 7.2vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0 0 0.68rem;
  text-wrap: balance;
}

.hero-title__line2 {
  display: block;
  margin-top: 0.06em;
}

.hero-trust {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  max-width: 740px;
}

.hero-trust--pills li {
  position: relative;
  padding-left: 0.75rem;
  font-size: 0.59rem;
  font-weight: 500;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.64);
}

.hero-trust--pills li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.btn-hero-main {
  position: relative;
  width: 100%;
  max-width: 740px;
  padding: 0.92rem 1.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  border-radius: 10px;
  border: 1px solid transparent;
  color: #f2df9a;
  background:
    linear-gradient(180deg, #0f0f0f, #0a0a0a) padding-box,
    linear-gradient(120deg, rgba(212, 175, 55, 0.25), rgba(255, 255, 255, 0.95), rgba(212, 175, 55, 0.22)) border-box;
  background-size: 100% 100%, 220% 100%;
  background-position: 0 0, 0 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 22px rgba(212, 175, 55, 0.24);
  animation: neon-border-shift 3.8s linear infinite;
}

.btn-hero-main span:last-child {
  position: relative;
  top: 0.02em;
}

.btn-hero-main:hover {
  transform: translateY(-1px);
  color: #fff7d1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 30px rgba(212, 175, 55, 0.52);
}

.tri-icon {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--gold);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.btn-hero-under-video {
  display: flex;
  width: 100%;
  margin-top: 0.7rem;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.22);
}

.btn-hero-under-video::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 8px;
  pointer-events: none;
  border: 1px solid rgba(212, 175, 55, 0.5);
  opacity: 0.65;
  animation: cta-pulse 2.2s ease-in-out infinite;
}

@keyframes neon-border-shift {
  to {
    background-position: 0 0, 220% 50%;
  }
}

@keyframes cta-pulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.9;
  }
}

.gold {
  color: var(--gold);
  text-shadow: 0 0 40px var(--gold-glow);
}

/* VSL */
.vsl-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.vsl-frame {
  position: relative;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(140deg, rgba(212, 175, 55, 0.42), rgba(212, 175, 55, 0.05) 52%, rgba(255, 255, 255, 0.04));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5), 0 0 26px rgba(212, 175, 55, 0.1);
}

.vsl-shine {
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.06) 50%, transparent 60%);
  animation: shine 6s ease-in-out infinite;
}

@keyframes shine {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

.vsl-aspect {
  position: relative;
  border-radius: calc(var(--radius-lg) - 3px);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--black-elevated);
}

.vsl-aspect.vsl-empty {
  background: url("../image/Yanis%203.jpg") center / cover no-repeat;
}

.vsl-aspect.vsl-empty .vsl-video {
  display: none;
}

.vsl-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vsl-aspect iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Wistia (web component) — remplit le cadre 16:9 */
.vsl-aspect--wistia {
  display: block;
}

.vsl-aspect--wistia wistia-player {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

wistia-player[media-id="mcdj0l8j9r"]:not(:defined) {
  background: center / cover no-repeat url("https://fast.wistia.com/embed/medias/mcdj0l8j9r/swatch");
  filter: blur(5px);
}

.vsl-fallback-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.7rem;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.65);
  display: none;
}

.vsl-aspect.show-hint .vsl-fallback-hint {
  display: block;
}

/* Sections titles */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.section-title.align-left {
  text-align: left;
}

.section-lead {
  text-align: center;
  color: var(--muted);
  margin: -0.5rem 0 2rem;
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-head .section-title {
  margin-bottom: 0.5rem;
}

.section-kicker {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  margin-bottom: 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.06);
}

/* Problem */
.section-problem {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.03));
}

.section-problem::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(70% 70% at 15% 0%, rgba(212, 175, 55, 0.08), transparent 70%),
    radial-gradient(50% 60% at 85% 100%, rgba(212, 175, 55, 0.05), transparent 80%);
}

.problem-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

@media (min-width: 768px) {
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-grid--premium .problem-card {
  position: relative;
  background: linear-gradient(165deg, rgba(19, 19, 19, 0.92), rgba(11, 11, 11, 0.92));
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 11px;
  padding: 1.15rem 1.15rem 1.15rem 3.35rem;
  display: flex;
  align-items: center;
  min-height: 62px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.problem-grid--premium .problem-card::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  bottom: 0.85rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.7), rgba(212, 175, 55, 0.1));
}

.problem-grid--premium .problem-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.42);
  background: linear-gradient(165deg, rgba(24, 24, 24, 0.95), rgba(12, 12, 12, 0.95));
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.48), 0 0 20px rgba(212, 175, 55, 0.08);
}

.problem-index {
  position: absolute;
  left: 1.18rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: rgba(212, 175, 55, 0.9);
}

.problem-grid--premium .problem-card p {
  margin: 0;
  color: rgba(245, 245, 245, 0.84);
  font-size: 0.96rem;
  line-height: 1.45;
}

.problem-grid--premium .problem-card strong {
  color: var(--white);
}

@media (min-width: 768px) {
  .problem-grid--premium {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin: 0 auto;
  }
}

/* Ancien style icône conservé pour autres sections éventuelles */
.problem-icon-wrap {
  flex-shrink: 0;
  width: 2.65rem;
  height: 2.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(232, 93, 4, 0.1);
  border: 1px solid rgba(232, 93, 4, 0.28);
}

.problem-icon-wrap .icon--problem {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--orange-fire);
}

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

.problem-card strong {
  color: var(--white);
}

/* Benefits */
.section-benefits {
  position: relative;
}

.section-benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(55% 40% at 10% 20%, rgba(212, 175, 55, 0.06), transparent 75%),
    radial-gradient(40% 40% at 90% 90%, rgba(212, 175, 55, 0.04), transparent 80%);
}

.benefits-stage {
  position: relative;
  height: 46px;
  margin: 0 auto 1rem;
  max-width: 920px;
}

.benefits-stage::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.32), transparent);
}

.benefits-stage::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 14%;
  width: 32%;
  height: 2px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.92), rgba(212, 175, 55, 0));
  filter: blur(0.6px);
  animation: benefits-scan 3.8s ease-in-out infinite;
}

@keyframes benefits-scan {
  0%,
  100% {
    left: 8%;
    opacity: 0.45;
  }
  50% {
    left: 60%;
    opacity: 1;
  }
}

.benefits-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefits-grid--elite {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}

.benefit-card {
  position: relative;
  background: radial-gradient(140% 120% at 0% 0%, rgba(255, 255, 255, 0.04), transparent 60%), linear-gradient(155deg, #181818, #101010 58%);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1.3rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.85), transparent);
  opacity: 0.6;
  transform: translateX(-35%);
  transition: transform 0.7s var(--transition), opacity var(--transition);
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, transparent 42%, rgba(255, 255, 255, 0.07) 50%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.9s var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px) scale(1.012);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.48), 0 0 26px rgba(212, 175, 55, 0.11);
}

.benefit-card:hover::before {
  transform: translateX(35%);
  opacity: 1;
}

.benefit-card:hover::after {
  transform: translateX(120%);
}

.benefit-ghost {
  position: absolute;
  right: 0.7rem;
  top: 0.35rem;
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: rgba(212, 175, 55, 0.08);
  user-select: none;
  pointer-events: none;
}

.benefit-id {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.95);
  padding: 0.33rem 0.58rem;
  border-radius: 5px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.09);
}

.benefit-icon {
  width: 2.7rem;
  height: 2.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.26);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform 0.45s var(--transition), box-shadow 0.45s var(--transition);
}

.benefit-card:hover .benefit-icon {
  transform: rotate(-5deg) scale(1.05);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.benefit-icon .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.42rem;
  letter-spacing: 0.075em;
  margin: 0 0 0.42rem;
  color: var(--gold);
}

.benefit-card p {
  margin: 0;
  color: rgba(245, 245, 245, 0.72);
  font-size: 0.93rem;
  line-height: 1.52;
}

@media (max-width: 640px) {
  .benefits-stage {
    height: 28px;
    margin-bottom: 0.75rem;
  }

  .benefit-ghost {
    font-size: 3rem;
    right: 0.55rem;
  }
}

/* Quote */
.section-quote {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.quote-mark {
  margin-bottom: 0.5rem;
}

.big-quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.quote-sub {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

/* Proof — transformation + strip Yanis */
.section-proof {
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.025) 40%, transparent);
}

.container--proof {
  max-width: 920px;
}

.proof-header {
  text-align: center;
  margin-bottom: clamp(1.75rem, 5vw, 2.5rem);
}

.proof-header .proof-badge {
  margin-bottom: 0.85rem;
}

.proof-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.5vw, 3.25rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
  line-height: 1;
}

.proof-title__sep {
  color: var(--gold);
  font-weight: 400;
  margin: 0 0.15em;
}

.proof-lead {
  margin: 0 auto;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.transform-showcase {
  margin-bottom: clamp(2.5rem, 7vw, 4rem);
}

.transform-frame {
  position: relative;
  margin: 0 auto;
  max-width: min(520px, 92vw);
  padding: 3px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.55), rgba(212, 175, 55, 0.08) 45%, rgba(255, 255, 255, 0.06));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 175, 55, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.transform-frame::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 17px;
  pointer-events: none;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.transform-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 17px;
  vertical-align: middle;
}

.transform-tag {
  position: absolute;
  bottom: 1rem;
  z-index: 3;
  padding: 0.35rem 0.75rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, #e4c349, var(--gold));
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.transform-tag--avant {
  left: 1rem;
}

.transform-tag--apres {
  right: 1rem;
}

.transform-split {
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  z-index: 3;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.95) 15%, rgba(212, 175, 55, 0.95) 85%, transparent);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
  pointer-events: none;
}

.yanis-block {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding-top: clamp(2rem, 5vw, 2.75rem);
}

.yanis-block__head {
  text-align: center;
  margin-bottom: 1.25rem;
}

.yanis-block__kicker {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.yanis-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}

.yanis-block__sub {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.yanis-strip {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0 0.75rem;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.35) transparent;
}

.yanis-strip::-webkit-scrollbar {
  height: 4px;
}

.yanis-strip::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.35);
  border-radius: 4px;
}

.yanis-card {
  flex: 0 0 min(42vw, 200px);
  scroll-snap-align: start;
  margin: 0;
}

@media (min-width: 700px) {
  .yanis-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }

  .yanis-strip {
    overflow-x: visible;
    padding-bottom: 0;
    margin: 0;
  }
}

.yanis-card__inner {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: #0e0e0e;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.45s var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.yanis-card__inner:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 22px 50px rgba(212, 175, 55, 0.08);
}

.yanis-card__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* About */
.section-about {
  background: rgba(18, 18, 18, 0.6);
}

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.about-visual {
  position: relative;
  isolation: isolate;
  padding: 0.28rem;
  border-radius: 20px;
  width: min(100%, 520px);
  margin: 0 auto;
}

.about-photo {
  position: relative;
  z-index: 2;
  border-radius: 14px;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.4px;
  background: rgba(212, 175, 55, 0.28);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}


.about-lead {
  font-size: 1.15rem;
  color: var(--white);
}

.about-intro {
  margin: 0 0 1rem;
  color: rgba(245, 245, 245, 0.92);
  font-size: 1.02rem;
  line-height: 1.55;
}

.about-story-flow {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.about-story-flow p {
  margin: 0;
  color: rgba(245, 245, 245, 0.72);
  line-height: 1.58;
  font-size: 0.93rem;
  padding: 0.78rem 0.85rem 0.78rem 0.95rem;
  border-left: 2px solid rgba(212, 175, 55, 0.4);
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.01) 42%, transparent);
  border-radius: 8px;
}

.about-story p:last-child {
  margin-bottom: 0;
}

.about-closing {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--white);
  line-height: 1.6;
}

.about-closing strong {
  color: var(--gold);
  font-weight: 600;
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Free */
.section-free .section-title {
  color: var(--gold);
}

.free-icon-top {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.free-icon-top .icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--gold);
  opacity: 0.9;
}

.free-checks {
  list-style: none;
  margin: 1.25rem auto 1rem;
  padding: 0;
  max-width: 22rem;
  text-align: left;
}

.free-checks li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.free-checks li .icon {
  color: var(--gold);
  flex-shrink: 0;
}

.free-text {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin: 0 0 1rem;
}

.free-sub {
  color: var(--muted);
  margin: 0;
}

/* Filter */
.filter-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
}

.filter-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
  background: var(--black-elevated);
  border-left: 3px solid var(--orange-fire);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--muted);
}

.filter-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(232, 93, 4, 0.08);
}

.filter-icon .icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--orange-fire);
}

.filter-list strong {
  color: var(--white);
}

/* Form */
.section-form {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.06), transparent);
}

.form-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .form-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.form-lead {
  color: var(--muted);
  margin: 0 0 1rem;
}

.form-bullets {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.form-bullets li {
  margin-bottom: 0.35rem;
}

.link-telegram {
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.form-card {
  background: var(--black-elevated);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.lead-form .field {
  margin-bottom: 1.1rem;
}

.lead-form label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.lead-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: #0a0a0a;
  border: 1px solid rgba(245, 245, 245, 0.12);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.lead-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.form-consent {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 1.25rem;
}

.form-msg {
  margin: 1rem 0 0;
  min-height: 1.5em;
  font-size: 0.9rem;
}

.form-msg.success {
  color: #7dcea0;
}

.form-msg.error {
  color: #f1948a;
}

.section-final-cta {
  padding-bottom: 6rem;
}

.cta-final-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.cta-final-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
  line-height: 1.05;
}

.cta-final-sub {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0.65rem 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(245, 245, 245, 0.12);
  border-radius: 999px;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.btn-ghost:hover {
  color: var(--gold);
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.06);
}

.btn-ghost .icon {
  width: 1rem;
  height: 1rem;
  opacity: 0.85;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.footer-inner p {
  margin: 0;
}

.footer-logo {
  opacity: 0.9;
  filter: drop-shadow(0 0 8px var(--gold-glow));
}

.footer-note {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.35rem;
  font-size: 0.78rem;
}

.footer-links a {
  color: rgba(212, 175, 55, 0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-links a:hover {
  color: #f0d77c;
}

@media (max-width: 768px) {
  .section-final-cta {
    padding-bottom: 4rem;
  }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

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

.reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.reveal:nth-child(4) {
  transition-delay: 0.24s;
}

/* ——— Modale programme (funnel clean + glow MCY) ——— */
body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--transition), visibility 0.4s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 4, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
}

.modal-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  max-height: min(92vh, 720px);
  overflow-y: auto;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.55), rgba(212, 175, 55, 0.08) 42%, rgba(232, 93, 4, 0.15));
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.12), 0 28px 90px rgba(0, 0, 0, 0.65), 0 0 80px rgba(212, 175, 55, 0.08);
  transform: translateY(28px) scale(0.94);
  opacity: 0;
  transition: transform 0.5s var(--transition), opacity 0.45s var(--transition);
}

.modal.is-open .modal-shell {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-shine {
  pointer-events: none;
  position: absolute;
  inset: 2px;
  border-radius: calc(var(--radius-lg) - 2px);
  background: linear-gradient(125deg, transparent 35%, rgba(255, 255, 255, 0.05) 48%, transparent 62%);
  animation: shine 5s ease-in-out infinite;
  z-index: 0;
}

.modal-inner {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #101010 0%, #0a0a0a 100%);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: clamp(1.5rem, 4vw, 2rem);
  padding-top: clamp(1.75rem, 4vw, 2.25rem);
}

.modal-logo-mini {
  display: flex;
  justify-content: center;
  margin: 0 0 0.75rem;
}

.modal-logo-mini img {
  width: 44px;
  height: auto;
  filter: drop-shadow(0 0 12px var(--gold-glow));
}

.modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition), background var(--transition), transform 0.2s;
}

.modal-close:hover {
  color: var(--white);
  background: rgba(212, 175, 55, 0.15);
  transform: rotate(90deg);
}

.modal-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.modal-heading {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.35rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
  line-height: 1.05;
}

.modal-desc {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.modal-desc strong {
  color: var(--white);
}

.modal-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.modal-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.55rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 245, 245, 0.08);
  border-radius: 999px;
}

.modal-pill .icon {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--gold);
}

.modal-mini-steps {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0.5rem 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--radius);
}

.modal-mini-steps li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
  justify-content: center;
}

.modal-mini-steps__sep {
  flex: 0 0 12px;
  height: 1px;
  background: rgba(212, 175, 55, 0.25);
  min-width: 8px;
}

.modal-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  font-size: 0.65rem;
  font-family: var(--font-body);
  color: var(--black);
  background: linear-gradient(135deg, #e4c349, var(--gold));
  border-radius: 50%;
  font-weight: 800;
}

.modal-form .modal-field {
  margin-bottom: 1rem;
}

.modal-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.45);
  margin-bottom: 0.4rem;
}

.modal-label--icon {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.modal-label--icon .icon {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
  opacity: 0.85;
}

.modal-input {
  width: 100%;
  padding: 0.95rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.modal-input::placeholder {
  color: rgba(245, 245, 245, 0.25);
}

.modal-input:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.modal-phone-wrap {
  width: 100%;
}

.phone-combo {
  display: grid;
  grid-template-columns: minmax(112px, 40%) 1fr;
  gap: 0.55rem;
  width: 100%;
}

.phone-country,
.phone-number {
  width: 100%;
  height: 52px;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 245, 255, 0.1);
  background: rgba(0, 0, 0, 0.45);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.2;
}

.phone-country {
  padding: 0 0.75rem;
  cursor: pointer;
  min-width: 0;
  white-space: nowrap;
}

.phone-number {
  padding: 0 1rem;
  min-width: 0;
}

.phone-country:focus,
.phone-number:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

/* garde une seule ligne aussi sur mobile */

/* Fallback propre avant init intl-tel-input */
.modal-phone-wrap > #modal-phone {
  width: 100%;
  padding: 0.95rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(245, 245, 255, 0.1);
  border-radius: var(--radius);
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.modal-phone-wrap > #modal-phone::placeholder {
  color: rgba(245, 245, 245, 0.25);
}

.modal-phone-wrap > #modal-phone:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.modal-phone-wrap > #modal-phone:-webkit-autofill,
.modal-phone-wrap > #modal-phone:-webkit-autofill:hover,
.modal-phone-wrap > #modal-phone:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--white);
  -webkit-box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.45) inset;
  box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.45) inset;
}

.modal-form .btn-modal-submit {
  width: 100%;
  margin-top: 0.35rem;
  padding: 1.05rem 1.25rem;
  font-size: 0.78rem;
}

.modal-form .btn-modal-submit .btn-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.modal-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0.85rem 0 0;
  font-size: 0.68rem;
  line-height: 1.45;
  color: rgba(245, 245, 245, 0.4);
}

.modal-consent .icon {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--gold);
  opacity: 0.7;
}

.modal-consent strong {
  color: rgba(245, 245, 245, 0.55);
}

.modal-msg {
  margin: 1rem 0 0;
  min-height: 1.4em;
  font-size: 0.88rem;
  line-height: 1.45;
}

.modal-msg.success {
  color: #7dcea0;
}

.modal-msg.error {
  color: #f5b7b1;
}

.modal-msg a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* intl-tel-input — thème sombre BGH */
.modal-form .iti {
  width: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(245, 245, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.modal-form .iti__country-container {
  left: 0;
}

.modal-form .iti__selected-flag {
  background: rgba(0, 0, 0, 0.56) !important;
  border-right: 1px solid rgba(245, 245, 255, 0.08);
  border-radius: 0;
  padding-left: 0.72rem;
  padding-right: 0.62rem;
}

.modal-form .iti__selected-flag:hover,
.modal-form .iti__selected-flag:focus {
  background: rgba(212, 175, 55, 0.12) !important;
}

.modal-form .iti__country-list {
  background: #141414;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  max-height: 220px;
}

.modal-form .iti__country-list .iti__country {
  color: var(--white);
}

.modal-form .iti__country-list .iti__country.iti__highlight {
  background: rgba(212, 175, 55, 0.15);
}

.modal-form .iti__country-name,
.modal-form .iti__dial-code {
  color: var(--muted);
}

.modal-form .iti__arrow {
  border-top-color: var(--gold);
}

.modal-form .iti input[type="tel"],
.modal-form .iti input.iti__tel-input {
  width: 100%;
  padding: 0.95rem 1rem 0.95rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.modal-form .iti input[type="tel"]:focus {
  outline: none;
}

.modal-form .iti:focus-within {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.modal-form.iti-error .iti input[type="tel"],
.modal-form.iti-error .iti input.iti__tel-input {
  border-color: rgba(241, 148, 138, 0.6);
}
