/* Niche Job Hub Premium Styling - Obsidian Cyberpunk Theme */

:root {
  --bg-primary: #090d16;
  --bg-secondary: #0f1524;
  --bg-card: rgba(18, 24, 38, 0.65);
  --border-glow: rgba(79, 70, 229, 0.15);
  --accent-indigo: #6366f1;
  --accent-purple: #a855f7;
  --accent-pink: #ec4899;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --emerald-green: #10b981;
  --amber-yellow: #f59e0b;
  --rose-red: #ef4444;
}

body {
  background: radial-gradient(circle at 50% 0%, #151a30 0%, #080b13 70%);
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  min-height: 100vh;
}

/* Glassmorphism Premium Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.08);
}

/* Side-by-Side Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pricing-card {
  position: relative;
  background: rgba(15, 21, 36, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transition: all 0.3s ease;
}

.pricing-card.popular {
  border: 1.5px solid rgba(99, 102, 241, 0.4);
  box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.2);
}

.pricing-card.popular::before {
  content: '⚡ HIGH-BOOST VISIBILITY';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent-indigo), var(--accent-purple));
  color: white;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Micro-animations and hover scales */
button:active,
a:active {
  transform: scale(0.98);
}

/* Custom scrollbars */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #080c14;
}

::-webkit-scrollbar-thumb {
  background: #1b2336;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2b3854;
}

/* Trust Badges Grid */
.trust-badge-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .trust-badge-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
