/* ══════════════════════════════════════════════════════════
   DATE A GODDESS — Princess Barbie Gothic Theme v2
   ══════════════════════════════════════════════════════════ */
:root {
  --pink: #ff2d95;
  --pink-light: #ff5cb0;
  --pink-glow: rgba(255,45,149,0.4);
  --indigo: #6c2bd9;
  --indigo-light: #8b5cf6;
  --indigo-glow: rgba(108,43,217,0.4);
  --accent: #c084fc;
  --gold: #f5c842;
  --dark: #0d0015;
  --darker: #08000e;
  --black: #030008;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border: rgba(255,45,149,0.12);
  --text: #f0e6f6;
  --text-muted: rgba(240,230,246,0.6);
  --warning: #fbbf24;
  --success: #34d399;
  --radius: 1rem;
  --radius-sm: 0.5rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; }
.text-7xl { font-size: 4.5rem; }
.text-5xl { font-size: 3rem; }
.text-4xl { font-size: 2.25rem; }
.text-3xl { font-size: 1.875rem; }
.text-2xl { font-size: 1.5rem; }
.text-xl { font-size: 1.25rem; }
.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.font-black { font-weight: 900; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.opacity-70 { opacity: 0.7; }
.opacity-60 { opacity: 0.6; }
.opacity-50 { opacity: 0.5; }
.opacity-40 { opacity: 0.4; }
.opacity-30 { opacity: 0.3; }
.text-center { text-align: center; }
.text-pink { color: var(--pink); }
.text-indigo { color: var(--indigo-light); }
.text-gold { color: var(--gold); }
.text-warning { color: var(--warning); }
.text-success { color: var(--success); }

/* ── Glow Effects ── */
.glow-pink { text-shadow: 0 0 20px var(--pink-glow), 0 0 40px rgba(255,45,149,0.15); }
.glow-indigo { text-shadow: 0 0 20px var(--indigo-glow), 0 0 40px rgba(108,43,217,0.15); }

/* ── Layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 1.5rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.hidden { display: none !important; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .text-7xl { font-size: 3rem; }
  .text-5xl { font-size: 2rem; }
  .text-3xl { font-size: 1.5rem; }
  .section { padding: 3rem 1rem; }
  .md-grid-2 { grid-template-columns: 1fr; }
}

/* ── Backgrounds ── */
.bg-gothic-gradient {
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 30%, rgba(108,43,217,0.12) 60%, rgba(255,45,149,0.08) 100%);
}
.bg-surface { background: var(--surface); }
.bg-dark { background: var(--dark); }
.bg-darker { background: var(--darker); }

/* ── Header ── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,0,14,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.8rem 1.5rem;
}
.header-logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 800; font-size: 1.1rem; }
.header-nav { display: flex; gap: 0.5rem; align-items: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.6rem 1.4rem; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 0.9rem; cursor: pointer; transition: var(--transition); border: none;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--pink), var(--indigo)); color: white; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 20px var(--pink-glow); }
.btn-secondary { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--surface-hover); border-color: var(--pink); }
.btn-outline { background: transparent; color: var(--pink); border: 1px solid rgba(255,45,149,0.3); }
.btn-outline:hover { background: rgba(255,45,149,0.08); border-color: var(--pink); }
.btn-gold { background: linear-gradient(135deg, var(--gold), #f59e0b); color: #000; font-weight: 800; }
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(245,200,66,0.4); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; border-radius: var(--radius); }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.8rem; }
.btn-xs { padding: 0.3rem 0.8rem; font-size: 0.75rem; }
.btn-block { width: 100%; }

/* ── Gothic Glow Button ── */
.gothic-glow {
  box-shadow: 0 0 15px var(--pink-glow), 0 0 30px rgba(108,43,217,0.2);
}
.gothic-glow:hover {
  box-shadow: 0 0 25px var(--pink-glow), 0 0 50px rgba(108,43,217,0.3);
}

/* ── Cards ── */
.gothic-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}
.gothic-card:hover {
  border-color: rgba(255,45,149,0.25);
  box-shadow: 0 0 20px rgba(255,45,149,0.05);
}
.gothic-card-glow {
  background: var(--surface);
  border: 1px solid rgba(255,45,149,0.25);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 0 20px rgba(255,45,149,0.08);
}

/* ── Badges ── */
.badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.35rem 0.8rem; border-radius: 2rem; font-size: 0.75rem; font-weight: 700;
}
.badge-pink { background: rgba(255,45,149,0.15); color: var(--pink); border: 1px solid rgba(255,45,149,0.2); }
.badge-indigo { background: rgba(108,43,217,0.15); color: var(--indigo-light); border: 1px solid rgba(108,43,217,0.2); }
.badge-accent { background: rgba(192,132,252,0.15); color: var(--accent); border: 1px solid rgba(192,132,252,0.2); }
.badge-gold { background: rgba(245,200,66,0.15); color: var(--gold); border: 1px solid rgba(245,200,66,0.2); }
.badge-warning { background: rgba(251,191,36,0.12); color: var(--warning); border: 1px solid rgba(251,191,36,0.2); }
.badge-success { background: rgba(52,211,153,0.12); color: var(--success); border: 1px solid rgba(52,211,153,0.2); }
.badge-verified { background: linear-gradient(135deg, rgba(255,45,149,0.2), rgba(108,43,217,0.2)); color: var(--pink-light); border: 1px solid rgba(255,45,149,0.3); }

/* ── Verification Badge ── */
.verified-icon {
  display: inline-flex; align-items: center; gap: 0.25rem;
  color: var(--pink); font-size: 0.75rem; font-weight: 700;
}
.verified-icon::before {
  content: '✓'; display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%; font-size: 0.6rem; font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--indigo)); color: white;
}

/* ── Profile Cards ── */
.profile-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.profile-card:hover {
  border-color: rgba(255,45,149,0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255,45,149,0.12);
}
.profile-avatar {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, rgba(255,45,149,0.2), rgba(108,43,217,0.3));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
}
.profile-avatar-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(8,0,14,0.9));
  padding: 1.5rem 1rem 0.8rem;
}
.profile-body { padding: 1.2rem; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.5rem; }
.profile-tag {
  padding: 0.2rem 0.5rem; border-radius: 1rem; font-size: 0.65rem; font-weight: 600;
  background: rgba(255,45,149,0.08); color: var(--pink-light); border: 1px solid rgba(255,45,149,0.12);
}
.profile-stats {
  display: flex; gap: 1rem; margin-top: 0.8rem; padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}
.profile-stat { text-align: center; flex: 1; }
.profile-stat-value { font-size: 1rem; font-weight: 800; color: var(--pink); }
.profile-stat-label { font-size: 0.6rem; opacity: 0.5; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Testimonial Cards ── */
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: -0.5rem; left: 1rem;
  font-size: 4rem; color: rgba(255,45,149,0.15); font-family: Georgia, serif; line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9rem; opacity: 0.8; line-height: 1.7; margin: 0.8rem 0; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--indigo));
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.testimonial-name { font-weight: 700; font-size: 0.85rem; }
.testimonial-meta { font-size: 0.7rem; opacity: 0.4; }

/* ── Pricing Table ── */
.pricing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; text-align: center;
  transition: var(--transition); position: relative;
}
.pricing-card.featured {
  border-color: rgba(255,45,149,0.4);
  box-shadow: 0 0 30px rgba(255,45,149,0.1);
  transform: scale(1.03);
}
.pricing-card .popular-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink), var(--indigo));
  color: white; padding: 0.3rem 1.2rem; border-radius: 2rem;
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
}
.pricing-amount { font-size: 2.5rem; font-weight: 900; color: var(--pink); }
.pricing-period { font-size: 0.85rem; opacity: 0.5; }
.pricing-features { list-style: none; text-align: left; margin: 1.5rem 0; }
.pricing-features li {
  padding: 0.5rem 0; font-size: 0.85rem; opacity: 0.7;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  display: flex; align-items: center; gap: 0.5rem;
}
.pricing-features li::before { content: '♛'; color: var(--pink); font-size: 0.7rem; }

/* ── Trust Bar ── */
.trust-bar {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem;
  padding: 1.5rem; background: rgba(255,45,149,0.03);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; opacity: 0.6;
}

/* ── Alert ── */
.alert {
  display: flex; gap: 1rem; padding: 1.2rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
}

/* ── Price Rows ── */
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; }
.price-divider { height: 1px; background: var(--border); margin: 0.5rem 0; }
.price-total { font-size: 1.5rem; font-weight: 900; color: var(--pink); }

/* ── Forms ── */
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.4rem; color: var(--text); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.7rem 1rem; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--text); font-size: 0.9rem; transition: var(--transition);
  font-family: inherit;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--pink); box-shadow: 0 0 12px rgba(255,45,149,0.15);
}
.form-textarea { min-height: 80px; resize: vertical; }
.form-select option { background: var(--darker); color: var(--text); }

/* ── Time Grid ── */
.time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 0.4rem; }
.time-slot {
  padding: 0.5rem; text-align: center; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border);
  font-size: 0.8rem; cursor: pointer; transition: var(--transition);
}
.time-slot:hover { border-color: var(--pink); }
.time-slot.active { background: linear-gradient(135deg, var(--pink), var(--indigo)); border-color: var(--pink); color: white; font-weight: 700; }

/* ── Toggle ── */
.toggle-wrap { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; }
.toggle-input { display: none; }
.toggle-switch {
  width: 44px; height: 24px; border-radius: 12px; background: rgba(255,255,255,0.1);
  position: relative; transition: var(--transition); flex-shrink: 0;
}
.toggle-switch::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%; background: white;
  transition: var(--transition);
}
.toggle-input:checked + .toggle-switch { background: linear-gradient(135deg, var(--pink), var(--indigo)); }
.toggle-input:checked + .toggle-switch::after { transform: translateX(20px); }

/* ── Range slider ── */
input[type="range"] {
  width: 100%; -webkit-appearance: none; height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, var(--pink), var(--indigo)); outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: white; cursor: pointer; box-shadow: 0 0 10px var(--pink-glow);
}

/* ── Animations ── */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 15px var(--pink-glow); } 50% { box-shadow: 0 0 30px var(--pink-glow), 0 0 50px rgba(108,43,217,0.2); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }

/* ── Nyx Chat ── */
.nyx-widget {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 500;
}
.nyx-toggle {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--indigo));
  border: 2px solid rgba(255,255,255,0.15); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 4px 20px rgba(255,45,149,0.3);
  transition: var(--transition);
}
.nyx-toggle:hover { transform: scale(1.08); box-shadow: 0 4px 30px rgba(255,45,149,0.5); }
.nyx-panel {
  position: fixed; bottom: 6rem; right: 1.5rem;
  width: 380px; max-height: 520px; border-radius: var(--radius);
  background: var(--darker); border: 1px solid rgba(255,45,149,0.25);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6); display: flex; flex-direction: column;
  overflow: hidden;
}
@media (max-width: 500px) { .nyx-panel { width: calc(100vw - 2rem); right: 1rem; bottom: 5.5rem; } }
.nyx-header {
  padding: 1rem; background: linear-gradient(135deg, rgba(255,45,149,0.1), rgba(108,43,217,0.1));
  border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.75rem;
}
.nyx-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--indigo));
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.nyx-status { width: 8px; height: 8px; border-radius: 50%; background: var(--success); display: inline-block; }
.nyx-messages {
  flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem;
  max-height: 350px;
}
.nyx-msg {
  padding: 0.8rem 1rem; border-radius: var(--radius); font-size: 0.85rem; line-height: 1.5;
  max-width: 90%;
}
.nyx-msg.nyx {
  background: linear-gradient(135deg, rgba(255,45,149,0.1), rgba(108,43,217,0.1));
  border: 1px solid rgba(255,45,149,0.12); align-self: flex-start;
}
.nyx-msg.user {
  background: rgba(108,43,217,0.15); border: 1px solid rgba(108,43,217,0.2);
  align-self: flex-end;
}
.nyx-quick-btns { display: flex; flex-wrap: wrap; gap: 0.3rem; padding: 0.5rem 1rem; }
.nyx-quick-btn {
  padding: 0.35rem 0.7rem; border-radius: 2rem; font-size: 0.7rem; font-weight: 600;
  background: rgba(255,45,149,0.08); border: 1px solid rgba(255,45,149,0.15);
  color: var(--pink-light); cursor: pointer; transition: var(--transition);
}
.nyx-quick-btn:hover { background: rgba(255,45,149,0.15); border-color: var(--pink); }
.nyx-input-row {
  display: flex; gap: 0.5rem; padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
}
.nyx-input {
  flex: 1; padding: 0.6rem 0.8rem; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--text); font-size: 0.85rem; outline: none;
}
.nyx-send {
  padding: 0.6rem 1rem; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--pink), var(--indigo));
  border: none; color: white; cursor: pointer; font-weight: 700;
}

/* ── T&C Modal ── */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.hidden { display: none; }
.modal-content {
  background: var(--darker); border: 1px solid rgba(255,45,149,0.3);
  border-radius: var(--radius); max-width: 700px; width: 100%; max-height: 90vh;
  display: flex; flex-direction: column; box-shadow: 0 0 40px rgba(255,45,149,0.15);
}
.modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 1.5rem; border-bottom: 1px solid rgba(255,45,149,0.15);
}
.modal-body { padding: 1.5rem; overflow-y: auto; flex: 1; }
.modal-footer { padding: 1rem 1.5rem; border-top: 1px solid rgba(255,45,149,0.15); }

/* ── Misc ── */
.divider { height: 1px; background: var(--border); }
.error-msg { color: #ff4444; font-size: 0.85rem; padding: 0.5rem; text-align: center; font-weight: 600; }

/* ── Sparkle text ── */
.sparkle-text {
  background: linear-gradient(90deg, var(--pink), var(--gold), var(--pink), var(--indigo));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ═══════════════ PAGE NAVIGATION ═══════════════ */
.page {
  display: none;
}
.page.active {
  display: block;
}
