 :root{
    --brand-primary: #8B5CF6;
    --brand-secondary: #A855F7; 
    --accent: #F59E0B;
    --success: #10B981;
    --glass: rgba(255,255,255,0.08);
  }
  
  body { 
    font-family: "Inter", sans-serif;
    background: linear-gradient(135deg, #0F0F23 0%, #1E1B4B 50%, #312E81 100%);
    color: #F8FAFC;
    scroll-behavior: smooth;
  }
  
  .gradient-text {
    background: linear-gradient(90deg, var(--brand-primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .card-glass {
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(139, 92, 246, 0.15);
    backdrop-filter: blur(20px);
  }
  
  .btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.25);
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.35);
  }
  
  .feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
  }
  
  .stats-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
  }
  
  .phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1F2937, #111827);
    border-radius: 32px;
    border: 8px solid #374151;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  }
  
  .testimonial {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    border-left: 4px solid var(--accent);
  }
  
  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  
  .nav-link {
    position: relative;
    transition: all 0.3s ease;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--brand-primary), var(--accent));
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
  }
  
  .floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(245, 158, 11, 0.1));
    filter: blur(40px);
  }
  
  .pricing-card {
    transition: all 0.3s ease;
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
  }
  
  .social-proof-item {
    animation: scroll 20s linear infinite;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  .scroll-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
  }
  
  .scroll-container::before,
  .scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
  }
  
  .scroll-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(15, 15, 35, 1), rgba(15, 15, 35, 0));
  }
  
  .scroll-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(15, 15, 35, 1), rgba(15, 15, 35, 0));
  }
  
  .category-card {
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
  }
  
  .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  }
  
  .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  .video-placeholder {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #1E1B4B, #312E81);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
  }
  
  .play-button {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .play-button:hover {
    transform: scale(1.1);
    background: white;
  }
  
  .play-button i {
    color: var(--brand-primary);
    font-size: 30px;
    margin-left: 5px;
  }