/* =====================
   RESET & BASE
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:    #09090b;
  --bg-card:    #111113;
  --bg-card2:   #18181b;
  --accent:     #EC4899;
  --accent2:    #DB2777;
  --neon:       #F472B6;
  --neon2:      #F9A8D4;
  --text:       #FAFAFA;
  --text-muted: #A1A1AA;
  --radius:     14px;
  --glow:       0 0 24px rgba(236,72,153,0.45);
  --glow2:      0 0 40px rgba(236,72,153,0.22);
}

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

body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* =====================
   UTILITY
===================== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.gradient-text {
  background: linear-gradient(135deg, var(--neon2), var(--neon), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent2), var(--neon));
  color: #FFFFFF;
  box-shadow: var(--glow);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 40px rgba(236,72,153,0.65);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--text);
}
.btn-outline:hover {
  background: rgba(236,72,153,0.1);
  transform: translateY(-2px);
}

/* =====================
   NAV
===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(9,9,11,0.90);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(236,72,153,0.15);
  padding: 16px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo-ai { color: #FFFFFF; -webkit-text-fill-color: #FFFFFF; }
nav .btn { padding: 10px 24px; font-size: 0.95rem; }
.conversion-page nav .btn-primary {
  position: relative;
  isolation: isolate;
  padding-left: 32px;
  padding-right: 32px;
}
.conversion-page nav .btn-primary::before,
.conversion-page nav .btn-primary::after {
  position: absolute;
  z-index: 1;
  color: #FFFFFF;
  content: '✦';
  font-size: 0.58rem;
  line-height: 1;
  pointer-events: none;
  text-shadow: 0 0 8px rgba(255,255,255,0.9);
  animation: nav-sparkle 1.8s ease-in-out infinite;
}
.conversion-page nav .btn-primary::before { top: 8px; left: 10px; }
.conversion-page nav .btn-primary::after { right: 10px; bottom: 8px; animation-delay: 0.7s; }
@keyframes nav-sparkle {
  0%, 100% { opacity: 0.45; transform: scale(0.7) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(18deg); }
}
.conversion-page .nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  margin-right: 20px;
}
.conversion-page .nav-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.conversion-page .nav-links a:hover,
.conversion-page .nav-links a:focus-visible { color: var(--neon2); }

/* =====================
   HERO
===================== */
#hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(236,72,153,0.14) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(244,114,182,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
/* Empêche les enfants de grid de déborder */
.hero-content,
.hero-mobile-visual { min-width: 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(236,72,153,0.12);
  border: 1px solid rgba(236,72,153,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.85rem;
  color: var(--neon2);
  margin-bottom: 24px;
}
.hero-badge span { width: 8px; height: 8px; border-radius: 50%; background: var(--neon2); display: inline-block; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.hero-title {
  font-size: clamp(1.9rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
  word-break: break-word;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.hero-rating-stars { color: #FBBF24; letter-spacing: 1px; }
.hero-rating-score { color: var(--text); font-weight: 800; }
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.hero-trust span { display: flex; align-items: center; gap: 5px; }
html[lang="en"] .hero-trust {
  flex-wrap: nowrap;
  gap: 12px;
  font-size: 0.72rem;
}
html[lang="en"] .hero-trust span { white-space: nowrap; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-visual-inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #1F1020, #3A1028);
  border: 1px solid rgba(236,72,153,0.18);
  box-shadow: var(--glow2), inset 0 0 60px rgba(236,72,153,0.06);
  display: flex;
  align-items: flex-end;
}
.conversion-page .float-badge { display: none; }
.conversion-page .hero-visual-inner.hero-mosaic {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: visible;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.conversion-page .hero-visual-inner.hero-mosaic .hero-mosaic-tile {
  position: absolute !important;
  z-index: 1 !important;
  width: 48.5% !important;
  height: 40% !important;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}
.conversion-page .hero-visual-inner.hero-mosaic .hero-mosaic-tile:nth-of-type(1) {
  top: 5.5%;
  left: 0;
  height: 53% !important;
}
.conversion-page .hero-visual-inner.hero-mosaic .hero-mosaic-tile:nth-of-type(2) {
  top: 0;
  right: 0;
}
.conversion-page .hero-visual-inner.hero-mosaic .hero-mosaic-tile:nth-of-type(3) {
  bottom: 0;
  left: 0;
}
.conversion-page .hero-visual-inner.hero-mosaic .hero-mosaic-tile:nth-of-type(4) {
  right: 0;
  bottom: 5.5%;
  height: 53% !important;
}
/* Mobile hero visual — hidden on desktop */
.hero-mobile-visual {
  display: none;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  width: 100%;
  overflow: hidden;
}

.mobile-prompt-box {
  background: var(--bg-card);
  border: 1px solid rgba(236,72,153,0.2);
  border-radius: 16px;
  padding: 16px;
}
.mobile-prompt-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.mobile-prompt-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card2);
  border: 1px solid rgba(236,72,153,0.12);
  border-radius: 50px;
  padding: 8px 8px 8px 16px;
  min-width: 0; /* empêche le flex container de déborder */
}
.mobile-prompt-text {
  flex: 1;
  min-width: 0; /* permet au texte de rétrécir en dessous de son contenu */
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-prompt-btn {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent2), var(--neon));
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 9px 18px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: var(--glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mobile-prompt-btn:hover { transform: scale(1.04); box-shadow: 0 0 28px rgba(236,72,153,0.6); }

.mobile-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  min-width: 0;
}
.mobile-teaser-item {
  position: relative;
  padding-top: 150%; /* ratio 2:3 — plus fiable qu'aspect-ratio sur iOS */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(236,72,153,0.1);
  /* Fix iOS Safari : overflow:hidden ne clippe pas transform sans ça */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}
.mobile-teaser-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(7px) brightness(0.6) saturate(1.2);
  transform: scale(1.15);
}
.mobile-teaser-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9,9,11,0.3);
}
.mobile-teaser-lock {
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
}

.mobile-unlock-hint {
  display: block;
  text-align: center;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--neon2);
  padding: 10px;
  border: 1px dashed rgba(236,72,153,0.25);
  border-radius: 50px;
  transition: all 0.2s ease;
}
.mobile-unlock-hint:hover {
  background: rgba(236,72,153,0.07);
  border-color: rgba(236,72,153,0.45);
}

/* Floating badge */
.float-badge {
  position: absolute;
  top: -16px; right: -16px;
  background: linear-gradient(135deg, var(--accent2), var(--neon));
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFFFFF;
  box-shadow: var(--glow);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }

/* =====================
   STATS STRIP
===================== */
#stats {
  background: var(--bg-card);
  border-top: 1px solid rgba(236,72,153,0.1);
  border-bottom: 1px solid rgba(236,72,153,0.1);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number { font-size: 2.2rem; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; }

/* =====================
   CONVERSION-FIRST CONTENT
===================== */
#price-snapshot {
  padding: 88px 0;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-deep) 100%);
}
#price-snapshot .section-sub { margin-left: auto; margin-right: auto; }
.price-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-snapshot-card,
.path-card {
  background: var(--bg-card);
  border: 1px solid rgba(236,72,153,0.16);
  border-radius: var(--radius);
  padding: 30px;
}
.price-snapshot-card--featured {
  border-color: rgba(244,114,182,0.55);
  box-shadow: var(--glow2);
  background: linear-gradient(145deg, rgba(236,72,153,0.14), var(--bg-card));
}
.price-kicker {
  display: block;
  color: var(--neon2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.price-snapshot-card strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.price-snapshot-card small { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; letter-spacing: 0; }
.price-snapshot-card p,
.path-card p,
.verdict-card p { color: var(--text-muted); }
.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--neon2);
  font-weight: 800;
}
.text-link:hover { color: var(--neon); }

#paths { padding: 96px 0; }
#paths .section-sub { margin-left: auto; margin-right: auto; }
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.path-card {
  display: flex;
  min-height: 282px;
  flex-direction: column;
  align-items: flex-start;
}
.path-card:hover { border-color: rgba(244,114,182,0.5); box-shadow: var(--glow2); }
.path-icon {
  color: var(--neon2);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 22px;
}
.path-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.path-card p { flex: 1; margin-bottom: 22px; }
.path-card .btn { padding: 12px 18px; font-size: 0.9rem; }

#verdict { padding: 0 0 96px; }
.verdict-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.5fr);
  gap: 40px;
  align-items: center;
  padding: 44px;
  border-radius: 22px;
  border: 1px solid rgba(236,72,153,0.2);
  background: linear-gradient(135deg, rgba(236,72,153,0.12), var(--bg-card));
}
.verdict-card .section-title { margin-bottom: 14px; }
.verdict-meta { display: grid; gap: 12px; color: var(--neon2); font-weight: 700; font-size: 0.93rem; }

/* Keep the character gallery; hide duplicate sections and invented testimonial content. */
.conversion-page #features,
.conversion-page #styles,
.conversion-page #social-proof,
.conversion-page #about,
.conversion-page #how,
.conversion-page #cta-band,
.conversion-page #pricing { display: none; }

/* =====================
   FEATURES
===================== */
#features { padding: 100px 0; }
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; }
.section-header { margin-bottom: 60px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(236,72,153,0.1);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { border-color: rgba(236,72,153,0.35); transform: translateY(-4px); box-shadow: var(--glow2); }
.feature-card:hover::before { opacity: 1; }
.feature-icon { font-size: 2.2rem; margin-bottom: 20px; display: block; }
.feature-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.feature-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* =====================
   SHOWCASE / MODELS
===================== */
#showcase { padding: 100px 0; background: var(--bg-card); }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.companion-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 32px auto 0;
  padding: 6px;
  width: fit-content;
  max-width: 100%;
  background: rgba(9,9,11,0.42);
  border: 1px solid rgba(236,72,153,0.16);
  border-radius: 999px;
}
.companion-tab {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 10px 18px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.companion-tab:hover { color: var(--text); background: rgba(236,72,153,0.1); }
.companion-tab.active {
  background: linear-gradient(135deg, var(--accent2), var(--neon));
  color: #FFFFFF;
  box-shadow: var(--glow2);
}
.companion-panel { margin-top: 32px; }
.companion-panel[hidden] { display: none; }
.companion-panel .showcase-grid { margin-top: 0; }
.companion-card {
  background: var(--bg-card2);
  border: 1px solid rgba(236,72,153,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  cursor: pointer;
}
.companion-card:hover { transform: translateY(-6px); box-shadow: var(--glow2); border-color: rgba(236,72,153,0.3); }

.companion-img {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #1F1020, #3A1028);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.companion-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,9,11,0.92) 0%, transparent 50%);
}
.companion-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  z-index: 1;
}
.companion-name { font-weight: 700; font-size: 1.05rem; }
.companion-tags { display: flex; gap: 6px; margin-top: 6px; flex-wrap: wrap; }
.tag {
  background: rgba(236,72,153,0.15);
  border: 1px solid rgba(236,72,153,0.3);
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 0.72rem;
  color: var(--neon2);
}
.companion-body {
  padding: 16px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.companion-desc { color: var(--text-muted); flex: 1; font-size: 0.88rem; line-height: 1.5; margin-bottom: 14px; }
.companion-cta { width: 100%; justify-content: center; padding: 12px 20px; font-size: 0.92rem; }
/* =====================
   HOW IT WORKS
===================== */
#how { padding: 100px 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.step { text-align: center; }
.step-number {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--neon));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900;
  color: #FFFFFF;
  margin: 0 auto 20px;
  box-shadow: var(--glow);
}
.step-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step-desc { color: var(--text-muted); font-size: 0.95rem; }

/* =====================
   STYLES SECTION
===================== */
#styles { padding: 100px 0; background: var(--bg-card); }
.styles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.style-pill {
  background: var(--bg-card2);
  border: 1px solid rgba(236,72,153,0.12);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.style-pill:hover { border-color: rgba(236,72,153,0.4); transform: translateY(-3px); box-shadow: var(--glow2); }
.style-pill-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.style-pill-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.style-pill-desc { color: var(--text-muted); font-size: 0.78rem; }

/* =====================
   REVIEWS
===================== */
#social-proof { padding: 100px 0; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.proof-card {
  background: var(--bg-card);
  border: 1px solid rgba(236,72,153,0.1);
  border-radius: var(--radius);
  padding: 28px 32px;
  position: relative;
  transition: all 0.3s ease;
}
.proof-card:hover { border-color: rgba(236,72,153,0.3); transform: translateY(-3px); box-shadow: var(--glow2); }
.proof-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(236,72,153,0.1);
  font-family: Georgia, serif;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--neon);
}
.proof-text {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.proofer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proofer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--neon));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #FFFFFF;
  flex-shrink: 0;
}
.proofer-name { font-weight: 700; font-size: 0.92rem; }
.proofer-tag { color: var(--text-muted); font-size: 0.8rem; }

/* =====================
   CTA BAND
===================== */
#cta-band {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
}
#cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(236,72,153,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; margin-bottom: 16px; }
.cta-band-sub { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band-trust {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.cta-band-trust span { display: flex; align-items: center; gap: 5px; }

/* =====================
   PRICING
===================== */
#pricing { padding: 100px 0; }

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid rgba(236,72,153,0.15);
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 60px;
}
.pricing-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  border: none;
  background: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.pricing-tab.active {
  background: linear-gradient(135deg, var(--accent2), var(--neon));
  color: #FFFFFF;
  box-shadow: var(--glow);
}
.pricing-tab .tab-badge {
  display: inline-block;
  background: rgba(236,72,153,0.18);
  color: var(--neon2);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 50px;
  margin-left: 6px;
  vertical-align: middle;
}
.pricing-tab.active .tab-badge {
  background: rgba(0,0,0,0.2);
  color: #FFFFFF;
}

.pricing-panels { position: relative; }
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 24px;
  align-items: start;
  max-width: 820px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(236,72,153,0.12);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s ease;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  background: linear-gradient(160deg, #2A1022 0%, #111113 100%);
  border-color: var(--accent);
  box-shadow: var(--glow), 0 20px 60px rgba(236,72,153,0.08);
}
.pricing-card.featured:hover { box-shadow: 0 0 48px rgba(236,72,153,0.5), 0 24px 64px rgba(236,72,153,0.12); }

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.pricing-badge.free-badge {
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.08);
}
.pricing-badge.premium-badge {
  background: linear-gradient(135deg, var(--accent2), var(--neon));
  color: #FFFFFF;
}

.pricing-save {
  position: absolute;
  top: -14px; right: 24px;
  background: linear-gradient(135deg, var(--accent2), var(--neon));
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.pricing-plan-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.pricing-price-block { margin-bottom: 8px; }
.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}
.pricing-price sup { font-size: 1.4rem; letter-spacing: 0; font-weight: 700; vertical-align: super; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.pricing-billed {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  min-height: 18px;
}
.pricing-billed strong { color: var(--neon2); }

.pricing-divider {
  border: none;
  border-top: 1px solid rgba(236,72,153,0.1);
  margin: 0 0 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.pricing-features li .check {
  color: var(--neon);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card.featured .pricing-features li { color: var(--text); }

.pricing-cta {
  width: 100%;
  justify-content: center;
  padding: 15px 20px;
  font-size: 1rem;
}

.pricing-free-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pricing-free-note a { color: var(--neon2); text-decoration: underline; text-underline-offset: 3px; }
.pricing-free-note a:hover { color: var(--neon); }

@media (max-width: 680px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { order: -1; }
  .pricing-toggle { flex-wrap: wrap; border-radius: 16px; }
}

/* =====================
   FAQ
===================== */
#faq { padding: 100px 0; }
.faq-list { margin-top: 60px; max-width: 740px; margin-left: auto; margin-right: auto; }
.faq-item { border-bottom: 1px solid rgba(236,72,153,0.1); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--neon2); }
.faq-chevron {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(236,72,153,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--accent); color: #FFFFFF; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 220px; padding-bottom: 24px; }

/* =====================
   FOOTER
===================== */
footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(236,72,153,0.08);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand { max-width: 300px; }
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.footer-links h4 { font-weight: 700; margin-bottom: 16px; font-size: 0.9rem; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--neon2); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(236,72,153,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }
.disclaimer { color: var(--text-muted); font-size: 0.78rem; max-width: 600px; text-align: right; }


.footer-language-switcher {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-lang-icon {
  font-size: 0.95rem;
  opacity: 0.9;
}
.footer-lang-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-lang-links a {
  color: var(--neon2);
  font-size: 0.88rem;
}
.footer-lang-links a:hover {
  color: var(--neon);
}
.footer-lang-sep {
  color: var(--text-muted);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .conversion-page .nav-inner { flex-wrap: wrap; gap: 10px; }
  .conversion-page .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 18px;
    margin: 0;
  }
  .conversion-page #hero { padding-top: 158px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  /* Use the exact desktop hero visual on smaller screens too. */
  .hero-visual {
    display: block;
    width: min(100%, 420px);
    margin: 0 auto;
  }
  .hero-mobile-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .price-snapshot-grid,
  .path-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 0; }
  .verdict-card { grid-template-columns: 1fr; gap: 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .disclaimer { text-align: left; }
}
@media (max-width: 600px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
  }

  .container { width: 100%; max-width: 100vw; padding: 0 20px; overflow: hidden; }
  nav { overflow: hidden; }
  nav .nav-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .conversion-page .nav-links {
    order: 3;
    width: calc(100% + 4px);
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding: 2px 2px 4px;
    -webkit-overflow-scrolling: touch;
  }
  .conversion-page .nav-links::-webkit-scrollbar { display: none; }
  .conversion-page .nav-links a { flex: 0 0 auto; font-size: 0.8rem; }
  nav .btn {
    padding: 9px 12px;
    font-size: 0.78rem;
    max-width: 128px;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .conversion-page nav .btn-primary { padding-left: 22px; padding-right: 22px; }
  .logo { font-size: 1.12rem; min-width: 0; }
  h1, h2, h3, p, li, a, span { overflow-wrap: anywhere; }

  /* Hero */
  #hero { padding: 90px 0 48px; }
  .conversion-page #hero { padding-top: 154px; }
  .hero-inner,
  .hero-content,
  .hero-mobile-visual,
  .section-header,
  .features-grid,
  .showcase-grid,
  .styles-grid,
  .proof-grid,
  .pricing-panels,
  .faq-list {
    width: 100%;
    max-width: 100%;
  }
  .hero-inner { gap: 24px; overflow: hidden; }
  .hero-badge { font-size: 0.75rem; padding: 5px 12px; white-space: normal; }
  .hero-title {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
    line-height: 1.16;
    letter-spacing: 0;
    max-width: 100%;
  }
  .hero-sub { font-size: 0.95rem; max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 0.97rem; }
  .hero-rating { gap: 6px; font-size: 0.76rem; white-space: nowrap; }
  .conversion-page .hero-trust { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; font-size: 0.72rem; }
  .hero-trust span { justify-content: center; text-align: center; min-width: 0; }
  html[lang="en"] .hero-trust span { white-space: normal; }
  .mobile-prompt-box { overflow: hidden; }
  .hero-mobile-visual { gap: 12px; margin-top: 0; }
  .conversion-page .mobile-teaser-grid,
  .conversion-page .mobile-unlock-hint { display: none; }
  .mobile-teaser-grid { gap: 6px; }
  .mobile-teaser-item { padding-top: 92%; }
  .mobile-teaser-lock { font-size: 1.25rem; }
  .mobile-unlock-hint { padding: 8px 10px; }

  /* Sections — padding réduit */
  #stats { padding: 28px 0; }
  #price-snapshot,
  #paths { padding: 56px 0; }
  #verdict { padding-bottom: 56px; }
  #features { padding: 56px 0; }
  #showcase { padding: 34px 0 48px; }
  #styles { padding: 56px 0; }
  #how { padding: 56px 0; }
  #social-proof { padding: 56px 0; }
  #cta-band { padding: 56px 0; }
  #pricing { padding: 56px 0; }
  #faq { padding: 56px 0; }
  #about { padding: 48px 0 !important; }
  footer { padding: 36px 0 24px; }

  /* Section headers */
  .section-header { margin-bottom: 32px; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-sub { font-size: 0.95rem; }

  /* Grilles internes */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 1.8rem; }
  .stat-label { font-size: 0.78rem; }
  .price-snapshot-grid,
  .path-grid { gap: 14px; }
  .price-snapshot-card,
  .path-card { padding: 24px; }
  .verdict-card { padding: 28px 24px; }
  .path-card .btn { width: 100%; justify-content: center; }
  .features-grid { gap: 16px; }
  .companion-tabs {
    justify-content: flex-start;
    margin-top: 24px;
    overflow-x: auto;
    width: 100%;
    padding: 6px;
    -webkit-overflow-scrolling: touch;
  }
  .companion-tabs::-webkit-scrollbar { display: none; }
  .companion-tab {
    flex: 0 0 auto;
    font-size: 0.82rem;
    padding: 9px 14px;
  }
  .companion-panel { margin-top: 20px; }
  .showcase-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0;
    padding: 0 0 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .showcase-grid::-webkit-scrollbar { display: none; }
  .companion-card {
    flex: 0 0 min(82vw, 320px);
    min-height: 585px;
    scroll-snap-align: start;
  }
  .companion-img {
    width: 100%;
    aspect-ratio: 4/5;
    height: auto;
    min-height: 0;
  }
  .companion-body { padding: 14px; }
  .companion-desc { font-size: 0.9rem; }
  .companion-cta {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  .styles-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .steps { gap: 24px; margin-top: 32px; }
  .proof-grid { gap: 16px; }

  /* CTA band */
  .cta-band-btns { flex-direction: column; align-items: center; }
  .cta-band-btns .btn { width: 100%; justify-content: center; }
  .cta-band-trust { flex-direction: column; align-items: center; gap: 8px; }
  .cta-band-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  /* FAQ */
  .faq-list { margin-top: 32px; }

  /* Footer */
  .footer-inner { gap: 24px; }
  .footer-language-switcher { margin-top: 20px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}
