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

:root {
  --bg-deep:    #08040a;
  --bg-card:    #130914;
  --bg-card2:   #1d0d1b;
  --accent:     #ff4989;
  --accent2:    #ff6a3d;
  --neon:       #ff7aa8;
  --neon2:      #ffd1df;
  --text:       #fff4f8;
  --text-muted: #b78a9b;
  --radius:     12px;
  --glow:       0 0 24px rgba(255,73,137,0.45);
  --glow2:      0 0 40px rgba(255,73,137,0.22);
}

html { scroll-behavior: smooth; }

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: 1180px; 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: #160711;
  box-shadow: var(--glow);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 40px rgba(255,73,137,0.65);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--text);
}
.btn-outline:hover {
  background: rgba(255,73,137,0.1);
  transform: translateY(-2px);
}

/* =====================
   NAV
===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,7,6,0.90);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,73,137,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;
}
.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}
.nav-logo {
  height: 40px;
  max-width: 160px;
}
.age-gate-brand-logo {
  height: 34px;
  max-width: 180px;
  margin: 0 auto 24px;
}
.footer-logo {
  height: 40px;
  max-width: 160px;
  margin-bottom: 12px;
}
nav .btn { padding: 10px 24px; font-size: 0.95rem; }

/* =====================
   HERO
===================== */
#hero {
  min-height: 100vh;
  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(255,73,137,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(255,132,164,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(255,73,137,0.12);
  border: 1px solid rgba(255,73,137,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: 0;
  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-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; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-visual-inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #20101a, #351222);
  border: 1px solid rgba(255,73,137,0.18);
  box-shadow: var(--glow2), inset 0 0 60px rgba(255,73,137,0.06);
  display: flex;
  align-items: flex-end;
}
.hero-profile-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(19,9,20,0.18), rgba(19,9,20,0.88));
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}
.hero-profile-name {
  font-size: 1.35rem;
  font-weight: 900;
}
.hero-profile-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* 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(255,73,137,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(255,73,137,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: #160711;
  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(255,73,137,0.6); }

.mobile-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  min-width: 0;
}
.mobile-preview-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(255,73,137,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-preview-vid {
  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-preview-item img.mobile-preview-vid {
  display: block;
}
.mobile-preview-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,7,6,0.3);
}
.mobile-preview-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(255,73,137,0.25);
  border-radius: 50px;
  transition: all 0.2s ease;
}
.mobile-unlock-hint:hover {
  background: rgba(255,73,137,0.07);
  border-color: rgba(255,73,137,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: #160711;
  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(255,73,137,0.1);
  border-bottom: 1px solid rgba(255,73,137,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; }

/* =====================
   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(255,73,137,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(255,73,137,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(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.companion-card {
  background: var(--bg-card2);
  border: 1px solid rgba(255,73,137,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.companion-card:hover { transform: translateY(-6px); box-shadow: var(--glow2); border-color: rgba(255,73,137,0.3); }

.companion-img {
  aspect-ratio: 2/3;
  background: linear-gradient(145deg, #20101a, #351222);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
  color: inherit;
}
.companion-img video,
.companion-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.45s ease;
}
.companion-card:hover .companion-img video,
.companion-card:hover .companion-img img {
  transform: scale(1.05);
}
.companion-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,7,6,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-age { color: var(--text-muted); font-size: 0.78rem; margin-top: 2px; }
.companion-tags { display: flex; gap: 6px; margin-top: 6px; flex-wrap: wrap; }
.tag {
  background: rgba(255,73,137,0.15);
  border: 1px solid rgba(255,73,137,0.3);
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 0.72rem;
  color: var(--neon2);
}
.companion-body { padding: 16px; }
.companion-desc { color: var(--text-muted); 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; }

/* =====================
   REDIRECT PAGE
===================== */
.redirect-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,73,137,0.18), transparent 34%),
    radial-gradient(circle at 80% 70%, rgba(255,106,61,0.14), transparent 30%),
    var(--bg-deep);
}
.redirect-card {
  width: min(460px, 100%);
  padding: 42px 36px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid rgba(255,73,137,0.22);
  border-radius: 20px;
  box-shadow: var(--glow2), 0 32px 90px rgba(0,0,0,0.55);
}
.redirect-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--neon));
  color: #160711;
  font-weight: 900;
}
.redirect-logo {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 16px;
}
.redirect-title {
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 10px;
}
.redirect-sub,
.redirect-link {
  color: var(--text-muted);
  font-size: 0.94rem;
}
.redirect-link a {
  color: var(--neon2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.redirect-bar {
  height: 7px;
  overflow: hidden;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  margin: 26px 0 18px;
}
.redirect-bar-fill {
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent2), var(--neon));
  animation: redirect-load 1.5s ease-in-out infinite;
}
@keyframes redirect-load {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(230%); }
}

/* =====================
   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: #160711;
  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(255,73,137,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(255,73,137,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
===================== */
#reviews { padding: 100px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,73,137,0.1);
  border-radius: var(--radius);
  padding: 28px 32px;
  position: relative;
  transition: all 0.3s ease;
}
.review-card:hover { border-color: rgba(255,73,137,0.3); transform: translateY(-3px); box-shadow: var(--glow2); }
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255,73,137,0.1);
  font-family: Georgia, serif;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--neon);
}
.review-text {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-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: #160711;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.92rem; }
.reviewer-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(255,73,137,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(255,73,137,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: #160711;
  box-shadow: var(--glow);
}
.pricing-tab .tab-badge {
  display: inline-block;
  background: rgba(255,73,137,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: #160711;
}

.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(255,73,137,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, #26101b 0%, #170912 100%);
  border-color: var(--accent);
  box-shadow: var(--glow), 0 20px 60px rgba(255,73,137,0.08);
}
.pricing-card.featured:hover { box-shadow: 0 0 48px rgba(255,73,137,0.5), 0 24px 64px rgba(255,73,137,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: #160711;
}

.pricing-save {
  position: absolute;
  top: -14px; right: 24px;
  background: linear-gradient(135deg, var(--accent2), var(--neon));
  color: #160711;
  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: 0;
}
.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(255,73,137,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(255,73,137,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(255,73,137,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: #160711; }
.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(255,73,137,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(255,73,137,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);
}

/* =====================
   AGE GATE
===================== */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8,7,6,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 1;
  transition: opacity 0.4s ease;
}
#age-gate.hidden {
  opacity: 0;
  pointer-events: none;
}

.age-gate-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,73,137,0.22);
  border-radius: 24px;
  padding: 48px 44px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--glow2), 0 32px 80px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}
.age-gate-card::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,73,137,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.age-gate-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 16px rgba(255,73,137,0.5));
}

.age-gate-logo {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.age-gate-title {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.2;
}

.age-gate-sub {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.age-gate-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.age-gate-btns .btn {
  width: 100%;
  justify-content: center;
  padding: 15px 24px;
  font-size: 1rem;
}

.age-gate-deny {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-align: center;
}
.age-gate-deny:hover {
  border-color: rgba(255,255,255,0.22);
  color: var(--text);
}

.age-gate-legal {
  margin-top: 20px;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
  opacity: 0.7;
}

/* lock scroll when gate is visible */
body.age-gate-open { overflow: hidden; }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { display: none; }
  .hero-mobile-visual { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .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; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .disclaimer { text-align: left; }
}
@media (max-width: 600px) {
  /* Hero */
  #hero { padding: 90px 0 48px; }
  .hero-inner { gap: 24px; }
  .hero-badge { font-size: 0.75rem; padding: 5px 12px; white-space: normal; }
  .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-trust { flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: space-between; font-size: 0.75rem; }
  .mobile-prompt-box { overflow: hidden; }

  /* Sections — padding réduit */
  #stats { padding: 28px 0; }
  #features { padding: 56px 0; }
  #showcase { padding: 56px 0; }
  #styles { padding: 56px 0; }
  #how { padding: 56px 0; }
  #reviews { 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; }
  .features-grid { gap: 16px; }
  .showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .styles-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .steps { gap: 24px; margin-top: 32px; }
  .reviews-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; }
}

@media (max-width: 480px) {
  .companion-body { padding: 12px; }
  .companion-name { font-size: 0.95rem; }
  .companion-desc { font-size: 0.78rem; line-height: 1.45; }
  .companion-cta { padding: 10px 12px; font-size: 0.78rem; }
  .tag { font-size: 0.65rem; padding: 2px 7px; }
}
