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

:root {
  --bg-deep:    #08050f;
  --bg-card:    #0f0a18;
  --bg-card2:   #150e22;
  --accent:     #a855f7;
  --accent2:    #7c3aed;
  --neon:       #d946ef;
  --neon2:      #f0abfc;
  --pink:       #ec4899;
  --pink2:      #f472b6;
  --text:       #f3e8ff;
  --text-muted: #9b8ab8;
  --radius:     14px;
  --glow:       0 0 24px rgba(168,85,247,0.45);
  --glow2:      0 0 40px rgba(168,85,247,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: 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: #f3e8ff;
  box-shadow: var(--glow);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 40px rgba(168,85,247,0.65);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--text);
}
.btn-outline:hover {
  background: rgba(168,85,247,0.1);
  transform: translateY(-2px);
}

/* =====================
   NAV
===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,5,15,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(168,85,247,0.18);
  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;
}
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(168,85,247,0.12) 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(217,70,239,0.08) 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;
}
.hero-content,
.hero-mobile-visual { min-width: 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168,85,247,0.12);
  border: 1px solid rgba(168,85,247,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-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, #1a0a2e, #2a1050);
  border: 1px solid rgba(168,85,247,0.22);
  box-shadow: var(--glow2), inset 0 0 60px rgba(168,85,247,0.06);
  display: flex;
  align-items: flex-end;
}

/* 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(168,85,247,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(168,85,247,0.12);
  border-radius: 50px;
  padding: 8px 8px 8px 16px;
  min-width: 0;
}
.mobile-prompt-text {
  flex: 1;
  min-width: 0;
  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: #f3e8ff;
  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(168,85,247,0.6); }

.mobile-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
  min-width: 0;
}
.mobile-preview-item {
  position: relative;
  padding-top: 150%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(168,85,247,0.1);
  -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-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,5,15,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(168,85,247,0.25);
  border-radius: 50px;
  transition: all 0.2s ease;
}
.mobile-unlock-hint:hover {
  background: rgba(168,85,247,0.07);
  border-color: rgba(168,85,247,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: #f3e8ff;
  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(168,85,247,0.1);
  border-bottom: 1px solid rgba(168,85,247,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; }

/* =====================
   SECTIONS
===================== */
.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; }

/* =====================
   CHARACTERS / SHOWCASE
===================== */
#characters { padding: 100px 0; background: var(--bg-card); }
.characters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.companion-card {
  background: var(--bg-card2);
  border: 1px solid rgba(168,85,247,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(168,85,247,0.3); }

.companion-img {
  display: block;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #1a0a2e, #2a1050);
  position: relative;
  overflow: hidden;
}
.companion-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.companion-card:hover .companion-img img {
  transform: scale(1.05);
}

/* Gradient overlay */
.companion-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,5,15,0.92) 0%, transparent 52%);
  pointer-events: none;
  z-index: 1;
}

.companion-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  z-index: 2;
}
.companion-name { font-weight: 700; font-size: 1.05rem; }
.companion-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  margin-bottom: 2px;
}
.companion-age {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neon2);
}
.companion-gender {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}
.companion-tags { display: flex; gap: 6px; margin-top: 6px; flex-wrap: wrap; }
.tag-break { width: 100%; height: 0; }
.tag {
  background: rgba(168,85,247,0.15);
  border: 1px solid rgba(168,85,247,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.85rem; line-height: 1.5; margin-bottom: 14px; }
.companion-cta { width: 100%; justify-content: center; padding: 12px 20px; font-size: 0.9rem; }

/* =====================
   FEATURES
===================== */
#features { padding: 100px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(168,85,247,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(168,85,247,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; }

/* =====================
   HOW IT WORKS
===================== */
#how { padding: 100px 0; background: var(--bg-card); }
.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: #f3e8ff;
  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; }

/* =====================
   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(168,85,247,0.1);
  border-radius: var(--radius);
  padding: 28px 32px;
  position: relative;
  transition: all 0.3s ease;
}
.review-card:hover { border-color: rgba(168,85,247,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(168,85,247,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: #f3e8ff;
  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(168,85,247,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; }

/* =====================
   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(168,85,247,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(168,85,247,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: #f3e8ff; }
.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: 260px; padding-bottom: 24px; }

/* =====================
   FOOTER
===================== */
footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(168,85,247,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: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(168,85,247,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; }

/* =====================
   PRICING
===================== */
#pricing { padding: 100px 0; background: var(--bg-card); }

.pricing-toggle {
  display: inline-flex;
  background: rgba(168,85,247,0.08);
  border-radius: 50px;
  border: 1px solid rgba(168,85,247,0.15);
  margin-bottom: 48px;
}
.pricing-tab {
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-muted);
  border: none;
  background: none;
}
.pricing-tab.active {
  background: linear-gradient(135deg, var(--accent2), var(--neon));
  color: #f3e8ff;
  box-shadow: var(--glow);
}
.pricing-tab .tab-badge {
  display: inline-block;
  background: rgba(168,85,247,0.2);
  border-radius: 50px;
  padding: 2px 8px;
  font-size: 0.72rem;
  margin-left: 6px;
}
.pricing-tab.active .tab-badge {
  background: rgba(0,0,0,0.2);
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card2);
  border: 1px solid rgba(168,85,247,0.1);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--glow2); border-color: rgba(168,85,247,0.3); }
.pricing-card.featured {
  background: linear-gradient(160deg, #1a0a2e 0%, #120620 100%);
  border-color: rgba(168,85,247,0.4);
  box-shadow: var(--glow2);
}
.pricing-card.featured:hover {
  box-shadow: 0 0 48px rgba(168,85,247,0.5), 0 24px 64px rgba(168,85,247,0.12);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.pricing-badge.free-badge {
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
}
.pricing-badge.premium-badge {
  background: linear-gradient(135deg, var(--accent2), var(--neon));
  color: #f3e8ff;
}
.pricing-save {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(217,70,239,0.15);
  color: var(--neon);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.pricing-plan-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-price-block { margin-bottom: 8px; }
.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}
.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: 20px;
}
.pricing-billed strong { color: var(--neon2); }

.pricing-divider {
  border: none;
  border-top: 1px solid rgba(168,85,247,0.1);
  margin: 20px 0;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.pricing-features li .check {
  color: var(--neon);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-card.featured .pricing-features li { color: var(--text); }

.pricing-cta {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 0.95rem;
}
.pricing-card.featured .pricing-cta {
  background: linear-gradient(135deg, var(--accent2), var(--neon));
  box-shadow: var(--glow);
  color: #f3e8ff;
  border: none;
}

.pricing-free-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  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); }

/* =====================
   MALE CHARACTERS
===================== */
#male-characters { padding: 100px 0; }
.male-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
  .characters-grid { grid-template-columns: repeat(2, 1fr); }
  .male-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

@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; }
  .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 { 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; }

  #stats { padding: 28px 0; }
  #characters { padding: 56px 0; }
  #features { padding: 56px 0; }
  #how { padding: 56px 0; }
  #reviews { padding: 56px 0; }
  #cta-band { padding: 56px 0; }
  #faq { padding: 56px 0; }
  #about { padding: 48px 0 !important; }
  footer { padding: 36px 0 24px; }

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

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .characters-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .features-grid { gap: 16px; }
  .steps { gap: 24px; margin-top: 32px; }
  .reviews-grid { gap: 16px; }

  .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-list { margin-top: 32px; }

  .footer-inner { gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; }

  .companion-desc { font-size: 0.8rem; }
  .companion-cta { font-size: 0.82rem; padding: 10px 16px; }
}

@media (max-width: 380px) {
  .characters-grid { grid-template-columns: 1fr; }
  .male-grid { grid-template-columns: 1fr; }
  .pricing-toggle { flex-wrap: wrap; border-radius: 16px; }
}

/* =====================
   RTL SUPPORT
===================== */
html[dir="rtl"] {
  direction: rtl;
  text-align: right;
}
html[dir="rtl"] .nav-inner { flex-direction: row-reverse; }
html[dir="rtl"] .hero-ctas { flex-direction: row-reverse; }
html[dir="rtl"] .hero-trust { flex-direction: row-reverse; }
html[dir="rtl"] .float-badge { right: auto; left: -16px; }
html[dir="rtl"] .companion-meta { flex-direction: row-reverse; }
html[dir="rtl"] .faq-question { text-align: right; flex-direction: row-reverse; }
html[dir="rtl"] .mobile-prompt-inner { flex-direction: row-reverse; }
html[dir="rtl"] .mobile-prompt-inner .mobile-prompt-btn { order: -1; }
html[dir="rtl"] .footer-inner { flex-direction: row-reverse; }
html[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
html[dir="rtl"] .disclaimer { text-align: left; }
html[dir="rtl"] .cta-band-btns { flex-direction: row-reverse; }
html[dir="rtl"] .cta-band-trust { flex-direction: row-reverse; }
html[dir="rtl"] .pricing-save { right: auto; left: 16px; }
html[dir="rtl"] .review-card::before { right: auto; left: 24px; }
html[dir="rtl"] .reviewer { flex-direction: row-reverse; }
html[dir="rtl"] .btn { flex-direction: row-reverse; }

@media (max-width: 900px) {
  html[dir="rtl"] .disclaimer { text-align: right; }
  html[dir="rtl"] .footer-inner { flex-direction: column; }
  html[dir="rtl"] .footer-bottom { flex-direction: column; }
}
@media (max-width: 600px) {
  html[dir="rtl"] .hero-ctas { flex-direction: column; }
  html[dir="rtl"] .cta-band-btns { flex-direction: column; align-items: center; }
  html[dir="rtl"] .cta-band-btns .btn { flex-direction: row; }
  html[dir="rtl"] .hero-ctas .btn { flex-direction: row; }
}
