/* Import Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Base styles */
.pricing-section {
    min-height: 100vh;
    padding-top: 6rem;
    padding-bottom: 5rem;
    position: relative;
    background: #0f0f1a;
    color: white;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Particle field background */
.particle-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Card component */
.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Button component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(to right, #00d9ff, #00b8d4);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 217, 255, 0.1);
}

.btn-primary:hover {
    box-shadow: 0 8px 15px rgba(0, 217, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Utility classes */
.text-gradient {
    background: linear-gradient(to right, white, #00d9ff, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-purple {
    background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.1), rgba(99, 102, 241, 0.1));
}

.bg-gradient-blue {
    background: linear-gradient(to bottom right, rgba(0, 217, 255, 0.1), rgba(0, 184, 212, 0.1));
}

.badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-purple {
    background: linear-gradient(to right, rgba(168, 85, 247, 0.2), rgba(99, 102, 241, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: rgb(216, 180, 254);
}

.badge-blue {
    background: linear-gradient(to right, rgba(0, 217, 255, 0.2), rgba(0, 184, 212, 0.2));
    border: 1px solid rgba(0, 217, 255, 0.3);
    color: #00d9ff;
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #00d9ff, #00b8d4);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Layout utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-32 {
    margin-bottom: 8rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.p-12 {
    padding: 3rem;
}

.h-full {
    height: 100%;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.overflow-hidden {
    overflow: hidden;
}

/* Typography */
.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-6xl {
    font-size: 3.75rem;
}

.text-7xl {
    font-size: 4.5rem;
}

.font-bold {
    font-weight: 700;
}

.text-white {
    color: white;
}

.text-gray-300 {
    color: rgb(209, 213, 219);
}

.text-gray-400 {
    color: rgb(156, 163, 175);
}

.text-purple-300 {
    color: rgb(216, 180, 254);
}

.text-purple-400 {
    color: rgb(192, 132, 252);
}

.text-blue-400 {
    color: #00d9ff;
}

.leading-relaxed {
    line-height: 1.625;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.scroll-mt-24 {
    scroll-margin-top: 6rem;
}

/* Responsive */
@media (min-width: 768px) {
    .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
    }
    
    .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
    }
    
    .md\:p-12 {
    padding: 3rem;
    }
    
    .md\:text-5xl {
    font-size: 3rem;
    }
    
    .md\:text-6xl {
    font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
    }
    
    .lg\:text-7xl {
    font-size: 4.5rem;
    }
}

/* Animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}