 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

 body {
     font-family: 'Inter', sans-serif;
     overflow-x: hidden;
     background: #0a0a0a;
     color: #ffffff;
 }

 /* Smooth Scrolling */
 html {
     scroll-behavior: smooth;
 }

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

 ::-webkit-scrollbar-track {
     background: #0a0a0a;
 }

 ::-webkit-scrollbar-thumb {
     background: linear-gradient(180deg, #8B5CF6, #EC4899);
     border-radius: 10px;
 }

 /* Glassmorphism */
 .glass {
     background: rgba(255, 255, 255, 0.03);
     backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 /* Gradient Text */
 .gradient-text {
     background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F59E0B 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 /* Hero Gradient Background */
 .hero-gradient {
     background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
         radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
         radial-gradient(circle at 40% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
 }

 /* Animated Gradient Border */
 .gradient-border {
     position: relative;
     border-radius: 24px;
     padding: 2px;
     background: linear-gradient(45deg, #8B5CF6, #EC4899, #F59E0B, #8B5CF6);
     background-size: 300% 300%;
     animation: gradientShift 6s ease infinite;
 }

 .gradient-border-content {
     background: #0a0a0a;
     border-radius: 22px;
     padding: 2rem;
 }

 @keyframes gradientShift {

     0%,
     100% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }
 }

 /* Floating Animation */
 .float {
     animation: float 6s ease-in-out infinite;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px) rotate(0deg);
     }

     33% {
         transform: translateY(-20px) rotate(2deg);
     }

     66% {
         transform: translateY(-10px) rotate(-2deg);
     }
 }

 /* Fade In Animation */
 .fade-in {
     opacity: 0;
     transform: translateY(40px);
     transition: opacity 0.8s ease, transform 0.8s ease;
 }

 .fade-in.visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* Card Hover Effect */
 .card-3d {
     transform-style: preserve-3d;
     transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
 }

 .card-3d:hover {
     transform: translateY(-10px) scale(1.02);
 }

 /* Neon Glow */
 .neon-glow {
     box-shadow: 0 0 20px rgba(139, 92, 246, 0.3),
         0 0 40px rgba(236, 72, 153, 0.2);
 }

 .neon-glow:hover {
     box-shadow: 0 0 30px rgba(139, 92, 246, 0.5),
         0 0 60px rgba(236, 72, 153, 0.3),
         0 0 80px rgba(245, 158, 11, 0.2);
 }

 /* Button Styles */
 .btn-primary {
     background: linear-gradient(135deg, #8B5CF6, #EC4899);
     color: white;
     padding: 16px 32px;
     border-radius: 12px;
     font-weight: 600;
     transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
     position: relative;
     overflow: hidden;
 }

 .btn-primary::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
     transition: left 0.5s;
 }

 .btn-primary:hover::before {
     left: 100%;
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
 }

 /* Nav Styles */
 nav {
     transition: all 0.3s ease;
 }

 nav.scrolled {
     background: rgba(10, 10, 10, 0.9);
     backdrop-filter: blur(20px);
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 /* Pricing Card Premium */
 .pricing-premium {
     position: relative;
     overflow: hidden;
 }

 .pricing-premium::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: conic-gradient(from 0deg, transparent, rgba(139, 92, 246, 0.3), transparent 30%);
     animation: rotate 4s linear infinite;
 }

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

 .pricing-premium-content {
     position: relative;
     z-index: 1;
 }

 /* Grid Background */
 .grid-bg {
     background-image:
         linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
         linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
     background-size: 50px 50px;
 }

 /* Mobile Menu */
 .mobile-menu {
     transform: translateX(100%);
     transition: transform 0.3s ease;
 }

 .mobile-menu.active {
     transform: translateX(0);
 }

 /* Stats Counter */
 .stat-number {
     font-size: 3.5rem;
     font-weight: 900;
     line-height: 1;
 }

 /* Feature Icon */
 .feature-icon {
     width: 64px;
     height: 64px;
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 28px;
     background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 /* Testimonial Card */
 .testimonial-card {
     background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 24px;
     padding: 32px;
     transition: all 0.4s ease;
 }

 .testimonial-card:hover {
     border-color: rgba(139, 92, 246, 0.5);
     transform: translateY(-5px);
 }

 /* Section Title */
 .section-title {
     font-size: 3rem;
     font-weight: 800;
     letter-spacing: -0.02em;
 }

 @media (max-width: 768px) {
     .section-title {
         font-size: 2rem;
     }

     .stat-number {
         font-size: 2.5rem;
     }
 }

 /* Portfolio Card */
 .portfolio-card {
     position: relative;
     border-radius: 24px;
     overflow: hidden;
     background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
     border: 1px solid rgba(255, 255, 255, 0.1);
     transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
 }

 .portfolio-card:hover {
     transform: scale(1.03);
     border-color: rgba(139, 92, 246, 0.5);
 }

 .portfolio-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9));
     opacity: 0;
     transition: opacity 0.4s ease;
 }

 .portfolio-card:hover .portfolio-overlay {
     opacity: 1;
 }

 /* Badge */
 .badge {
     display: inline-block;
     padding: 8px 16px;
     border-radius: 100px;
     font-size: 12px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 /* Input Styles */
 input,
 textarea,
 select {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 12px;
     padding: 16px;
     color: white;
     transition: all 0.3s ease;
     width: 100%;
 }

 input:focus,
 textarea:focus,
 select:focus {
     outline: none;
     border-color: rgba(139, 92, 246, 0.5);
     background: rgba(255, 255, 255, 0.08);
     box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
 }

 input::placeholder,
 textarea::placeholder {
     color: rgba(255, 255, 255, 0.4);
 }

 /* Footer Links */
 .footer-link {
     color: rgba(255, 255, 255, 0.6);
     transition: color 0.3s ease;
 }

 .footer-link:hover {
     color: #8B5CF6;
 }

 /* Container Slideshow */
 .hero-slideshow {
     position: relative;
     width: 100%;
 }

 /* Slide Individual */
 .hero-slide {
     display: none;
     /* Sembunyikan semua slide secara default */
     width: 100%;
     animation: fadeEffect 1s ease-in-out;
 }

 /* Slide yang Aktif */
 .hero-slide.active {
     display: block;
     /* Munculkan slide yang punya class active */
 }

 /* Animasi Fade */
 @keyframes fadeEffect {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Style untuk Dots (Indikator) */
 .slide-dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background-color: rgba(255, 255, 255, 0.2);
     border: none;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .slide-dot.active {
     background-color: #fff;
     transform: scale(1.2);
     box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
 }