:root {
  --bg: #0a0a12;
  --bg-card: #12121f;
  --bg-elevated: #1a1a2e;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f0f0f5;
  --text-muted: #9898b0;
  --accent: #e91e8c;
  --accent-2: #9b4dff;
  --accent-glow: rgba(233, 30, 140, 0.45);
  --gold: #f5c542;
  --success: #22c55e;
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Manrope', system-ui, sans-serif;
  --header-h: 72px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { width: min(1140px, 92vw); margin: 0 auto; }
.container-narrow { width: min(720px, 92vw); margin: 0 auto; }
.center { text-align: center; }

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.bg-glow-1 { width: 500px; height: 500px; background: var(--accent-glow); top: -100px; right: -100px; opacity: 0.35; }
.bg-glow-2 { width: 400px; height: 400px; background: rgba(155, 77, 255, 0.3); bottom: 20%; left: -120px; opacity: 0.25; }

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 32px var(--accent-glow);
}
.btn-primary:hover { box-shadow: 0 12px 40px var(--accent-glow); }

.btn-ghost {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

.btn-outline {
  border: 2px solid rgba(233, 30, 140, 0.5);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--accent); background: rgba(233,30,140,0.1); }

.btn-glow { background: linear-gradient(135deg, #ff2d95, #b44dff); color: #fff; box-shadow: 0 0 40px var(--accent-glow); }
.btn-gold { background: linear-gradient(135deg, #f5c542, #e89a1e); color: #1a1000; font-weight: 700; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-xl { padding: 1.1rem 2rem; font-size: 1.1rem; }
.btn-block { width: 100%; }

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.header.scrolled {
  background: rgba(10, 10, 18, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.35rem;
}
.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--accent-glow);
  overflow: hidden;
}
.logo-icon svg {
  display: block;
  width: 40px;
  height: 40px;
}
.logo .accent { color: var(--accent); -webkit-text-fill-color: var(--accent); }

.nav { display: flex; gap: 1.75rem; }
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Cookie */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-bar p { font-size: 0.9rem; color: var(--text-muted); max-width: 600px; }
.cookie-actions { display: flex; gap: 0.5rem; }

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.badge-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.25rem; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}
.badge-live { color: #ff6b9d; border-color: rgba(255,107,157,0.3); }
.badge-gold { background: rgba(245,197,66,0.15); color: var(--gold); border-color: rgba(245,197,66,0.3); }

.pulse {
  width: 8px; height: 8px;
  background: #ff3d7a;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }

.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.hero-trust strong { color: var(--text); display: block; font-size: 1.1rem; }

/* Hero video card */
.hero-visual { position: relative; }

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.video-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(0,0,0,0.4);
  font-size: 0.8rem;
  font-weight: 700;
  color: #ff4d8a;
}
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #ff3d7a;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 1.5s infinite;
}
.video-timer { color: var(--text-muted); font-weight: 500; }

.video-preview {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #1a1030 0%, #2d1548 50%, #1a2040 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
  overflow: hidden;
}

.preview-person {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-color: #1a1030;
  transition: opacity 0.5s ease;
}
.preview-person::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,18,0.9) 0%, transparent 50%);
}

.scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: scan 2.5s linear infinite;
  opacity: 0.6;
}
@keyframes scan {
  0% { top: 0; }
  100% { top: 100%; }
}

.preview-label {
  position: relative;
  z-index: 2;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  text-align: center;
}

.video-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0,0,0,0.3);
}

.ctrl-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.ctrl-btn svg { width: 20px; height: 20px; }
.ctrl-btn:hover { background: rgba(255,255,255,0.1); transform: scale(1.05); }
.ctrl-btn.muted { opacity: 0.45; }
.ctrl-btn.ctrl-next {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
}

.floating-card {
  position: absolute;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: float 4s ease-in-out infinite;
}
.fc-1 { top: 10%; left: -8%; animation-delay: 0s; }
.fc-2 { bottom: 15%; right: -5%; animation-delay: 1s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Stats */
.stats {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(18,18,31,0.6);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* Sections */
.section { position: relative; z-index: 1; padding: 5rem 0; }
.section-dark { background: rgba(18,18,31,0.5); }

.section-head { margin-bottom: 2.5rem; }
.section-head.center { text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 0.5rem; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: #fff;
}

/* Girls grid */
.girls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.girl-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.girl-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 16px 48px var(--accent-glow);
}
.girl-card.hidden { display: none; }

.girl-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  background: #1a1030;
}
.girl-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(10,10,18,0.92) 0%, rgba(10,10,18,0.15) 45%, transparent 70%);
}

.girl-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(255,61,122,0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  z-index: 3;
}
.girl-badge.new { background: var(--accent-2); }

.girl-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  z-index: 3;
}
.girl-info h4 { font-size: 1rem; font-weight: 700; }
.girl-info span { font-size: 0.8rem; color: var(--text-muted); }

.girl-chat-btn {
  position: absolute;
  bottom: 1rem; right: 1rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
  z-index: 4;
}
.girl-card:hover .girl-chat-btn { opacity: 1; transform: scale(1); }

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(233,30,140,0.3);
  transform: translateY(-4px);
}
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.92rem; }

/* Steps */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.step-num {
  display: inline-flex;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--text-muted); font-size: 0.9rem; }
.step-arrow { font-size: 1.5rem; color: var(--accent); padding-top: 2.5rem; }

/* Reviews */
.reviews-slider { overflow: hidden; margin-bottom: 1.5rem; }
.reviews-track {
  display: flex;
  transition: transform 0.4s ease;
}
.review-card {
  flex: 0 0 100%;
  padding: 0 0.5rem;
}
.review-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.review-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 1rem; }
.review-text { font-size: 1.05rem; font-style: italic; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.7; }
.review-author { font-weight: 700; }
.review-author span { display: block; font-weight: 400; font-size: 0.85rem; color: var(--text-muted); }

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.reviews-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.reviews-btn:hover { background: var(--bg-elevated); border-color: var(--accent); }
.reviews-dots { display: flex; gap: 0.5rem; }
.review-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.review-dot.active { background: var(--accent); width: 28px; border-radius: 5px; }

/* Premium */
.premium-box {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(233,30,140,0.12), rgba(155,77,255,0.12));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
}
.premium-content h2 { font-size: 1.8rem; margin: 1rem 0; }
.premium-list { margin: 1.5rem 0 2rem; color: var(--text-muted); }
.premium-list li { margin-bottom: 0.5rem; }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.price-card:hover { border-color: rgba(233,30,140,0.4); }
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
  transform: scale(1.03);
}
.price-badge {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
}
.price-card h4 { margin-bottom: 0.5rem; color: var(--text-muted); font-size: 0.9rem; }
.price { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.25rem; }
.price-desc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.25rem; }

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg-card);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 1.25rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-grid h2 { font-size: 2rem; margin-bottom: 1rem; }
.contact-grid > div > p { color: var(--text-muted); margin-bottom: 1.5rem; }
.contact-email {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: opacity var(--transition);
}
.contact-email:hover { opacity: 0.8; }
.contact-info li { color: var(--text-muted); margin-bottom: 0.5rem; font-size: 0.95rem; }

.contact-form label {
  display: block;
  margin-bottom: 1rem;
}
.contact-form label span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea { resize: vertical; min-height: 100px; }

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(10,10,18,0.8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.75rem; max-width: 260px; }
.footer-links h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 1rem; }
.footer-links a {
  display: block;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Chat overlay */
.chat-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.chat-overlay.open {
  opacity: 1;
  visibility: visible;
}

.chat-room {
  width: min(900px, 100%);
  max-height: 95vh;
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.chat-overlay.open .chat-room { transform: scale(1); }

.chat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.chat-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  font-size: 1.4rem;
  line-height: 1;
}
.chat-partner { display: flex; align-items: center; gap: 0.75rem; flex: 1; }
.chat-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-color: #2a2040;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}
.chat-partner strong { display: block; }
.chat-partner span { font-size: 0.8rem; color: var(--text-muted); }
.chat-live { font-size: 0.75rem; font-weight: 700; color: #ff4d8a; }

.chat-video-area {
  position: relative;
  aspect-ratio: 16/10;
  background: #0d0d18;
  overflow: hidden;
}
.chat-remote {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-color: #1a1030;
}
.chat-remote::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}
.chat-local {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 120px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2a2a40, #1a1a2e);
  border-radius: 10px;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  z-index: 2;
}
.chat-connecting {
  position: absolute;
  inset: 0;
  background: rgba(10,10,18,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 5;
  transition: opacity 0.4s ease;
}
.chat-connecting.hidden { opacity: 0; pointer-events: none; }

.spinner {
  width: 48px; height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.chat-messages {
  flex: 1;
  min-height: 120px;
  max-height: 160px;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.chat-msg {
  max-width: 75%;
  padding: 0.5rem 0.85rem;
  border-radius: 14px;
  font-size: 0.9rem;
  animation: msgIn 0.3s ease;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg.them {
  align-self: flex-start;
  background: var(--bg-elevated);
  border-bottom-left-radius: 4px;
}
.chat-msg.me {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-bottom-right-radius: 4px;
}

.chat-footer {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
.chat-footer input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-family: inherit;
}
.chat-footer input:focus { outline: none; border-color: var(--accent); }
.chat-footer .btn { padding: 0.75rem 1.25rem; border-radius: 999px; }

/* Modals */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-backdrop.open { opacity: 1; visibility: visible; }

.modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 260;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  width: min(420px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.modal.modal-lg { width: min(640px, 92vw); }

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  font-size: 1.5rem;
  line-height: 1;
}
.modal h2 { margin-bottom: 1.25rem; font-size: 1.5rem; }
.modal p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; }
.modal label {
  display: block;
  margin-bottom: 1rem;
}
.modal label span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}
.modal input[type="text"],
.modal input[type="email"],
.modal input[type="password"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
}
.modal input:focus { outline: none; border-color: var(--accent); }
.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.checkbox-label input { width: auto; }
.modal-switch { text-align: center; margin-top: 1rem; font-size: 0.9rem; color: var(--text-muted); }
.link-btn { color: var(--accent); font-weight: 600; text-decoration: underline; }

.premium-modal-plans { display: flex; flex-direction: column; gap: 0.75rem; }
.plan-btn {
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-weight: 600;
  transition: var(--transition);
}
.plan-btn:hover { border-color: var(--accent); background: rgba(233,30,140,0.1); }
.plan-btn-featured {
  background: linear-gradient(135deg, rgba(233,30,140,0.2), rgba(155,77,255,0.2));
  border-color: var(--accent);
}

.modal-page-content h2 { margin-bottom: 1rem; }
.modal-page-content h3 { margin: 1.25rem 0 0.5rem; font-size: 1rem; }
.modal-page-content p, .modal-page-content li {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.modal-page-content ul { padding-left: 1.25rem; list-style: disc; }

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 400;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .fc-1 { left: 0; }
  .fc-2 { right: 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .premium-box { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--bg-elevated);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  .nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .burger { display: flex; }
  .header-actions .btn-ghost { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .step-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .chat-local { width: 90px; }
}
