/* ==========================================================================
   Jukeboxed Landing Page Styling - Modern Neon & Dark Glassmorphism Theme
   ========================================================================== */

:root {
  --bg-dark: #07090e;
  --bg-card: rgba(18, 22, 34, 0.7);
  --bg-card-hover: rgba(28, 34, 52, 0.85);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(124, 58, 237, 0.3);
  
  --primary-purple: #8b5cf6;
  --primary-cyan: #06b6d4;
  --primary-pink: #ec4899;
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  
  --font-heading: 'Rubik', 'Syne', sans-serif;
  --font-body: 'Heebo', 'Plus Jakarta Sans', sans-serif;
  
  --shadow-neon: 0 0 25px rgba(139, 92, 246, 0.35);
  --shadow-cyan: 0 0 25px rgba(6, 182, 212, 0.35);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Typography & Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-purple) 50%, var(--primary-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }
.hidden { display: none !important; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Ambient Background Glows */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(139, 92, 246, 0.18);
  top: -100px;
  right: -100px;
}

.bg-glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(6, 182, 212, 0.15);
  top: 600px;
  left: -150px;
}

/* Header Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(7, 9, 14, 0.8);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  box-shadow: var(--shadow-neon);
}

.logo-icon.sm {
  width: 32px;
  height: 32px;
  font-size: 1rem;
}

.spin-icon {
  animation: spin 10s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.logo-dot {
  color: var(--primary-cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-cyan);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(139, 92, 246, 0.6);
}

.btn-glow {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glow);
  color: #fff;
}

.btn-glow:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: var(--primary-purple);
  box-shadow: var(--shadow-neon);
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Hero Section */
.hero-section {
  padding: 5rem 0 6rem;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--primary-cyan);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-cyan);
  box-shadow: 0 0 10px var(--primary-cyan);
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #fff;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

/* Waitlist Form */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.input-group {
  display: flex;
  align-items: center;
  background: rgba(20, 24, 38, 0.9);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 0.4rem 0.8rem;
  transition: border-color 0.3s ease;
}

.input-group:focus-within {
  border-color: var(--primary-purple);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.25);
}

.input-icon {
  color: var(--text-dim);
  font-size: 1.1rem;
  margin: 0 0.6rem;
}

.input-group input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1rem;
  padding: 0.75rem 0.5rem;
}

.role-select {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
}

.role-select option {
  background: #111420;
  color: #fff;
}

.waitlist-feedback {
  padding: 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.waitlist-feedback.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10b981;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-color);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.visual-card-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.glow-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.3), transparent 70%);
  pointer-events: none;
}

.hero-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-visual:hover .hero-main-img {
  transform: scale(1.02);
}

/* Floating Queue Card */
.floating-queue-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(11, 14, 23, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.queue-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
}

.live-tag {
  color: #ef4444;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pulse {
  animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.venue-name {
  color: var(--text-muted);
  font-weight: 500;
}

.queue-card-track {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.track-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}

.track-info {
  flex: 1;
}

.track-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.track-artist {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.track-requester {
  font-size: 0.75rem;
  color: var(--primary-cyan);
  margin-top: 0.2rem;
}

/* Equalizer Bars Animation */
.equalizer-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
}

.equalizer-bars span {
  width: 3px;
  background: linear-gradient(to top, var(--primary-cyan), var(--primary-purple));
  border-radius: 2px;
  animation: eq 1s ease-in-out infinite alternate;
}

.equalizer-bars span:nth-child(1) { height: 60%; animation-delay: 0.1s; }
.equalizer-bars span:nth-child(2) { height: 100%; animation-delay: 0.3s; }
.equalizer-bars span:nth-child(3) { height: 40%; animation-delay: 0.2s; }
.equalizer-bars span:nth-child(4) { height: 80%; animation-delay: 0.4s; }

@keyframes eq {
  0% { height: 20%; }
  100% { height: 100%; }
}

/* Section Header */
.section-header {
  margin-bottom: 3.5rem;
}

.section-subtitle {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--primary-cyan);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.8rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Interactive Demo Section */
.demo-section {
  padding: 6rem 0;
  background: rgba(13, 16, 26, 0.4);
  border-y: 1px solid var(--border-color);
}

.demo-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3rem;
  align-items: center;
}

/* Phone Frame Mockup */
.phone-frame {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  background: #181c28;
  border: 12px solid #000;
  border-radius: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(139, 92, 246, 0.2);
  overflow: hidden;
  position: relative;
}

.phone-screen {
  background: #0f121d;
  height: 580px;
  display: flex;
  flex-direction: column;
}

.phone-header {
  padding: 0.75rem 1rem 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.phone-camera-notch {
  width: 70px;
  height: 16px;
  background: #000;
  border-radius: 10px;
}

.phone-app-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}

.app-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-venue-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.app-venue-info i {
  color: var(--primary-pink);
  font-size: 1rem;
}

.app-venue-info h4 {
  font-size: 0.85rem;
  color: #fff;
}

.app-venue-info p {
  font-size: 0.7rem;
  color: var(--text-dim);
}

.price-badge {
  background: rgba(6, 182, 212, 0.15);
  color: var(--primary-cyan);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
}

.app-search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.4rem 0.75rem;
}

.app-search-box i {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.app-search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.8rem;
  padding-left: 0.5rem;
  width: 100%;
}

.demo-song-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.demo-song-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.demo-song-card:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--primary-purple);
}

.demo-song-card img {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  object-fit: cover;
}

.song-card-info {
  flex: 1;
}

.song-card-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}

.song-card-artist {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.req-btn {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
  border: none;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.req-btn:hover {
  transform: scale(1.05);
}

/* Venue Queue Display Card */
.screen-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.screen-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.screen-card-header h3 {
  font-size: 1.2rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.live-status {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-cyan);
  border-radius: 50%;
  animation: pulse-cyan 1.5s infinite;
}

@keyframes pulse-cyan {
  0%, 100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7); }
  50% { box-shadow: 0 0 0 8px rgba(6, 182, 212, 0); }
}

.now-playing-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.now-playing-art {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
}

.now-playing-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-audio-btn {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.play-audio-btn:hover {
  background: rgba(139, 92, 246, 0.7);
}

.now-playing-details {
  flex: 1;
}

.np-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--primary-pink);
}

.now-playing-details h3 {
  font-size: 1.4rem;
  color: #fff;
  margin: 0.2rem 0;
}

.now-playing-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.progress-bar-container {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.3rem;
}

.progress-bar-fill {
  height: 100%;
  width: 40%;
  background: linear-gradient(to right, var(--primary-purple), var(--primary-cyan));
  transition: width 0.3s ease;
}

.time-stamps {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.upcoming-queue-container h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.queue-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.queue-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.queue-num {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary-cyan);
  width: 24px;
}

.queue-item img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

.queue-item-info {
  flex: 1;
}

.queue-item-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.queue-item-artist {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.queue-item-tip {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  padding: 0.25rem 0.6rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem;
}

/* Features Grid */
.features-section {
  padding: 6rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: var(--shadow-neon);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-cyan);
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Revenue Calculator */
.calculator-section {
  padding: 6rem 0;
}

.calculator-card {
  background: linear-gradient(135deg, rgba(20, 26, 42, 0.9), rgba(12, 15, 25, 0.95));
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 28px;
  padding: 3.5rem 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.calc-header {
  text-align: center;
  margin-bottom: 3rem;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.slider-group {
  margin-bottom: 2rem;
}

.slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--text-main);
}

.slider-value {
  color: var(--primary-cyan);
  font-weight: 800;
  font-size: 1.1rem;
}

input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
  cursor: pointer;
  box-shadow: 0 0 10px var(--primary-cyan);
  transition: transform 0.2s ease;
}

input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-results {
  background: rgba(13, 17, 28, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.result-box {
  padding: 1.5rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
}

.res-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.4rem;
}

.res-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #fff, var(--primary-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.res-sub {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.res-amount-sm {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #10b981;
}

/* App Mockup Banner Section */
.mockup-banner-section {
  padding: 6rem 0;
  border-y: 1px solid var(--border-color);
}

.banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.banner-text h2 {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 1rem;
}

.banner-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.banner-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.banner-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-main);
  font-weight: 600;
}

.banner-checklist i {
  color: var(--primary-cyan);
}

.mobile-mockup-img {
  width: 100%;
  max-width: 360px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-cyan);
  display: block;
  margin: 0 auto;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  color: var(--primary-cyan);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Bottom CTA Section */
.bottom-cta-section {
  padding: 6rem 0;
}

.cta-card {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
  border: 1px solid var(--primary-purple);
  border-radius: 28px;
  padding: 4rem 2rem;
  box-shadow: var(--shadow-neon);
}

.cta-title {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-desc {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 3rem 0;
  background: #040508;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;

}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-cyan);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  width: 100%;
  padding-top: 1.5rem;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-grid, .demo-grid, .calc-grid, .banner-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .input-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .role-select {
    margin-top: 0.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .stat-divider {
    display: none;
  }
}

/* RTL Specific Fixes */
html[dir="rtl"] .faq-question {
  text-align: right;
}

html[dir="rtl"] .app-search-box input {
  padding-left: 0;
  padding-right: 0.5rem;
}

html[dir="rtl"] .input-group input {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

