:root {
  /* Bright purple/cyan gradient theme colors */
  --bg-gradient-start: #0a0a15;
  --bg-gradient-mid: #1a1f3a;
  --bg-gradient-end: #141829;
  --bg-dark: #050810;
  --bg-surface: rgba(255, 255, 255, 0.08);
  --bg-card: rgba(255, 255, 255, 0.06);
  
  /* Text colors */
  --text-primary: #ffffff;
  --text-secondary: #E5E5FF;
  --text-muted: #B8B8CC;
  
  /* Bright accent colors */
  --primary: #7B3FF2;
  --primary-light: #9C8FFF;
  --primary-dark: #5b21b6;
  --accent-purple: #9600ff;
  --accent-cyan: #00E5FF;
  --accent-green: #00ff88;
  --accent-pink: #ec4899;
  
  /* UI colors */
  --success: #00ff88;
  --warning: #FFC107;
  --danger: #ef4444;
  --border: rgba(255, 255, 255, 0.15);
  --border-light: rgba(255, 255, 255, 0.08);
  
  /* Spacing */
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 25px 80px rgba(139, 69, 255, 0.3);
  --shadow-lg: 0 30px 100px rgba(139, 69, 255, 0.4);
  --glow: 0 0 40px rgba(139, 69, 255, 0.5);
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-display: 'Poppins', var(--font-sans);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: linear-gradient(180deg, #050810 0%, #0a0f1e 20%, #141829 40%, #1a1f3a 60%, #0f2a50 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Background geometric pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(123, 63, 242, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 229, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(150, 0, 255, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
}

/* Grid pattern overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

/* Skip to content */
.skip-to-content {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background: var(--primary);
  color: white;
  text-decoration: none;
}

.skip-to-content:focus {
  left: 50%;
  transform: translateX(-50%);
  top: 1rem;
}

/* Container - Mobile First */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header - Mobile First */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(5, 8, 16, 0.95);
  backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .site-header {
    padding: 1rem 0;
  }
}

.header-wrap, .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .header-wrap, .header-container {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .header-wrap, .header-container {
    gap: 3rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.logo img {
  height: 28px;
  width: auto;
  filter: brightness(1.1);
}

@media (min-width: 768px) {
  .logo img {
    height: 36px;
  }
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
  justify-content: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  transition: width 0.3s ease;
}

nav a:hover {
  color: white;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

nav a:hover::after {
  width: 100%;
}

/* Header CTA */
.header-cta, nav + .btn.primary {
  background: linear-gradient(135deg, #9600ff, #7B3FF2);
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(150, 0, 255, 0.4);
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.header-cta:hover, nav + .btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(150, 0, 255, 0.5);
  background: linear-gradient(135deg, #a620ff, #8B4FF2);
}

/* Mobile Menu */
.mobile-menu, .mobile-menu-toggle {
  display: block;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  cursor: pointer;
  padding: 0.625rem 0.75rem;
  color: white;
  font-size: 20px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu:hover, .mobile-menu-toggle:hover {
  background: rgba(123, 63, 242, 0.15);
  border-color: rgba(123, 63, 242, 0.3);
}

@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none;
  }
}

/* Hero Section - Mobile First */
.hero-section {
  padding: 80px 0 60px;
  position: relative;
  overflow: visible;
  background: linear-gradient(135deg, rgba(5,8,20,0.98) 0%, rgba(20,25,60,0.95) 50%, rgba(5,8,20,0.98) 100%);
  border-bottom: 2px solid rgba(139, 69, 255, 0.3);
}

@media (min-width: 768px) {
  .hero-section {
    padding: 120px 0 80px;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 140px 0 100px;
  }
}

/* Hero spotlight/halo effect */
.hero-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(150, 0, 255, 0.2) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  transform: translate(0, -50%);
}

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

@media (min-width: 768px) {
  .hero-grid {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    text-align: left;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-badges {
    flex-direction: row;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-badges {
    justify-content: flex-start;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 13px;
  color: white;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(139, 69, 255, 0.2);
}

.badge img {
  height: 24px;
  width: auto;
  filter: brightness(1.2);
}

@media (min-width: 768px) {
  .badge {
    padding: 0.625rem 1.25rem;
    font-size: 14px;
  }

  .badge img {
    height: 28px;
  }
}

.hero-title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  color: #FFFFFF;
  text-shadow: 0 0 30px rgba(139, 69, 255, 0.3);
}

@media (min-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.gradient-text {
  background: linear-gradient(90deg, #9600ff, #00E5FF, #9600ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  filter: drop-shadow(0 0 25px rgba(139, 69, 255, 0.6));
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.hero-subtitle {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #E5E5FF;
  margin-bottom: 1.5rem;
  max-width: 100%;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

/* CTA Buttons with gradient glow - Mobile First */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .cta-buttons {
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: none;
    width: auto;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .cta-buttons {
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 44px;
  width: 100%;
}

@media (min-width: 768px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 16px;
    border-radius: 12px;
    width: auto;
  }
}

.btn.primary {
  background: linear-gradient(135deg, #9600ff, #7B3FF2);
  color: white;
  box-shadow: 0 8px 30px rgba(150, 0, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(150, 0, 255, 0.5);
  background: linear-gradient(135deg, #a620ff, #8B4FF2);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-cyan);
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.3);
  transform: translateY(-3px);
}

/* Stats Bar - Mobile First */
.stats-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(139, 69, 255, 0.2);
}

@media (min-width: 768px) {
  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .stats-bar {
    gap: 2rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
  }
}

.stat-item {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
}

@media (min-width: 768px) {
  .stat-item {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 0;
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
  line-height: 1;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
}

.stat-label {
  font-size: 13px;
  color: #E5E5FF;
  text-align: left;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 14px;
    text-align: center;
  }
}

/* Hero Image with glow */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mr-voxe {
  width: 100%;
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(150, 0, 255, 0.4)) brightness(1.1);
  animation: float 6s ease-in-out infinite;
}

@media (min-width: 768px) {
  .mr-voxe {
    max-width: 400px;
  }
}

@media (min-width: 1024px) {
  .mr-voxe {
    max-width: 500px;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Video Section with bright card - Mobile First */
.video-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(139, 69, 255, 0.05) 0%, rgba(20, 25, 60, 0.1) 100%);
  position: relative;
}

@media (min-width: 768px) {
  .video-section {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .video-section {
    padding: 100px 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 3rem;
  }
}

.section-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(150, 0, 255, 0.2), rgba(0, 229, 255, 0.2));
  border: 1px solid rgba(139, 69, 255, 0.4);
  border-radius: 20px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(139, 69, 255, 0.5);
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(139, 69, 255, 0.3);
  line-height: 1.2;
}

@media (min-width: 480px) {
  .section-header h2 {
    font-size: 1.75rem;
  }
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}

.section-header p {
  font-size: 0.95rem;
  color: #E5E5FF;
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .section-header p {
    font-size: 1.125rem;
    max-width: 700px;
    line-height: 1.6;
  }
}

/* Video card with glow and shadow */
.video-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.video-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1f3a 0%, #141829 100%);
  border: 2px solid rgba(139, 69, 255, 0.3);
  box-shadow: 0 25px 80px rgba(139, 69, 255, 0.25), 0 10px 40px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 90px rgba(139, 69, 255, 0.35);
}

.video-thumbnail {
  width: 100%;
  height: auto;
  display: block;
}

/* Bright gradient play button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(150, 0, 255, 0.9), rgba(0, 229, 255, 0.9));
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(150, 0, 255, 0.5);
}

.play-btn:hover {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 12px 40px rgba(150, 0, 255, 0.6);
}

.play-btn svg {
  width: 30px;
  height: 30px;
  color: white;
  margin-left: 5px;
}

.video-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: #E5E5FF;
  font-size: 14px;
}

/* Testimonials Section with lighter panel - Mobile First */
.testimonials-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(30, 40, 80, 0.15) 0%, rgba(139, 69, 255, 0.05) 100%);
}

@media (min-width: 768px) {
  .testimonials-section {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .testimonials-section {
    padding: 100px 0;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(139, 69, 255, 0.3);
  border-radius: 16px;
  padding: 1.25rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(139, 69, 255, 0.15);
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 1.75rem;
    border-radius: 18px;
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    padding: 2rem;
    border-radius: 20px;
  }
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(139, 69, 255, 0.25);
  border-color: var(--accent-cyan);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.07));
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 229, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2);
}

.testimonial-header h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #FFFFFF;
}

.testimonial-header p {
  font-size: 14px;
  color: #B8B8CC;
}

.testimonial-rating {
  margin-left: auto;
  color: var(--warning);
  font-size: 14px;
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.6;
  color: #E5E5FF;
  font-style: italic;
}

/* Services Section with gradient cards - Mobile First */
.services {
  padding: 60px 0;
  background: rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .services {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .services {
    padding: 100px 0;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    gap: 2rem;
    margin-top: 3rem;
  }
}

.service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(139, 69, 255, 0.05));
  border: 1px solid rgba(139, 69, 255, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(139, 69, 255, 0.15);
}

@media (min-width: 768px) {
  .service-card {
    padding: 2rem;
    border-radius: 18px;
  }
}

@media (min-width: 1024px) {
  .service-card {
    padding: 2.5rem;
    border-radius: 20px;
  }
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(139, 69, 255, 0.25);
  border-color: var(--accent-cyan);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(139, 69, 255, 0.08));
}

/* Gradient-filled service icons */
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(139, 69, 255, 0.4);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .service-card h3 {
    font-size: 1.5rem;
  }
}

.service-card p {
  color: #E5E5FF;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  color: #B8B8CC;
  font-size: 14px;
}

.service-link {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: white;
  transform: translateX(5px);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

/* FAQ Section with alternating tones - Mobile First */
.faq-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(139, 69, 255, 0.03) 0%, rgba(0, 229, 255, 0.03) 100%);
}

@media (min-width: 768px) {
  .faq-section {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .faq-section {
    padding: 100px 0;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .faq-grid {
    gap: 2rem;
    margin-top: 3rem;
  }
}

.faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(139, 69, 255, 0.25);
  border-radius: 12px;
  padding: 1.25rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .faq-item {
    padding: 1.5rem;
    border-radius: 14px;
  }
}

@media (min-width: 1024px) {
  .faq-item {
    padding: 1.75rem;
    border-radius: 16px;
  }
}

.faq-item:nth-child(even) {
  background: linear-gradient(135deg, rgba(139, 69, 255, 0.1), rgba(0, 229, 255, 0.05));
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139, 69, 255, 0.2);
  border-color: var(--accent-cyan);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.faq-item p {
  color: #E5E5FF;
  line-height: 1.6;
  font-size: 15px;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
}

/* CTA Section with purple gradient and glow - Mobile First */
.cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(150, 0, 255, 0.15), rgba(0, 229, 255, 0.1));
  position: relative;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 100px 0;
  }
}

@media (min-width: 1280px) {
  .cta-section {
    padding: 120px 0;
  }
}

/* Radial glow behind CTA text */
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(139, 69, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  color: #FFFFFF;
  text-shadow: 0 0 30px rgba(139, 69, 255, 0.4);
  line-height: 1.2;
}

@media (min-width: 480px) {
  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .cta-content h2 {
    font-size: 3rem;
  }
}

.cta-content p {
  font-size: 0.95rem;
  color: #E5E5FF;
  margin-bottom: 1.5rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
  }
}

@media (min-width: 1024px) {
  .cta-content p {
    font-size: 1.25rem;
  }
}

.btn.large {
  padding: 1.25rem 2.5rem;
  font-size: 18px;
}

.btn.ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-cyan);
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.3);
}

/* Footer with gradient - Mobile First */
.site-footer {
  background: linear-gradient(180deg, rgba(10, 10, 21, 0.98) 0%, #050810 100%);
  border-top: 1px solid rgba(139, 69, 255, 0.2);
  padding: 60px 0 30px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 70px 0 35px;
    margin-top: 80px;
  }
}

@media (min-width: 1024px) {
  .site-footer {
    padding: 80px 0 40px;
    margin-top: 100px;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(139, 69, 255, 0.3);
}

.footer-section a {
  color: #B8B8CC;
  text-decoration: none;
  font-size: 14px;
  line-height: 2;
  transition: color 0.3s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-section a {
    min-height: auto;
    display: inline;
    justify-content: flex-start;
  }
}

.footer-section a:hover {
  color: var(--accent-cyan);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(139, 69, 255, 0.2);
  text-align: center;
  font-size: 14px;
}

@media (min-width: 768px) {
  .footer-bottom {
    padding-top: 2rem;
    font-size: 15px;
  }
}

/* Form Inputs - Mobile First */
input, textarea, select {
  font-size: 16px;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Images - Mobile First */
img {
  max-width: 100%;
  height: auto;
}

/* Prevent horizontal scrolling */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Additional hover animations */
.card:hover, .service-card:hover, .testimonial-card:hover {
  animation: subtle-lift 0.3s ease forwards;
}

@keyframes subtle-lift {
  to {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(139, 69, 255, 0.3);
  }
}

/* Neon glow on hover for buttons */
.btn:hover {
  animation: neon-pulse 1.5s ease-in-out infinite;
}

@keyframes neon-pulse {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(150, 0, 255, 0.4);
  }
  50% {
    box-shadow: 0 8px 40px rgba(150, 0, 255, 0.6);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-image {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .mr-voxe {
    max-width: 350px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  
  .header-cta, nav + .btn.primary {
    display: none;
  }
  
  .mobile-menu, .mobile-menu-toggle {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .stats-bar {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
}