/* ==================== PREMIUM SAAS DESIGN SYSTEM ==================== */
/* Custom design to prevent template detection and copying */

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

:root {
    /* Premium Color Palette */
    --neon-lime: #CCFF00;
    --cyber-yellow: #FFE500;
    --deep-purple: #1a0b2e;
    --royal-purple: #6B46C1;
    --electric-blue: #00D9FF;
    --dark-surface: #0f0a1e;
    --glass-white: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

* {
    font-family: var(--font-primary);
}

body {
    background: var(--deep-purple);
    position: relative;
    overflow-x: hidden;
}

/* ==================== ANIMATED MESH GRADIENT BACKGROUND ==================== */
.premium-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #1a0b2e 0%, #16213e 50%, #0f0a1e 100%);
}

.premium-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(107, 70, 193, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(204, 255, 0, 0.15) 0%, transparent 50%);
    animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(5%, 5%) rotate(120deg); }
    66% { transform: translate(-5%, 5%) rotate(240deg); }
}

/* Tech Grid Overlay */
.tech-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(107, 70, 193, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107, 70, 193, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* ==================== GLASSMORPHISM CARDS ==================== */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(204, 255, 0, 0.3), 
        transparent);
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(204, 255, 0, 0.3);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(204, 255, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* ==================== PREMIUM BUTTONS ==================== */
.btn-premium {
    background: linear-gradient(135deg, var(--neon-lime), var(--cyber-yellow));
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 16px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 20px rgba(204, 255, 0, 0.3),
        0 0 40px rgba(204, 255, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-premium::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-premium:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 30px rgba(204, 255, 0, 0.5),
        0 0 60px rgba(204, 255, 0, 0.3);
}

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

.btn-premium:active {
    transform: translateY(0);
}

/* Secondary Button */
.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-lime);
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.2);
}

/* ==================== PREMIUM TYPOGRAPHY ==================== */
.display-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, var(--neon-lime) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-display {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neon-lime);
    text-shadow: 0 0 20px rgba(204, 255, 0, 0.5);
}

.label-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== PREMIUM INPUTS ==================== */
.input-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-premium:focus {
    outline: none;
    border-color: var(--neon-lime);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 0 0 3px rgba(204, 255, 0, 0.1),
        0 0 20px rgba(204, 255, 0, 0.2);
}

.input-premium::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* ==================== ANIMATED ELEMENTS ==================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(204, 255, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(204, 255, 0, 0.6); }
}

.glow-pulse {
    animation: glow-pulse 2s ease-in-out infinite;
}

/* ==================== PREMIUM NAVBAR ==================== */
.navbar-premium {
    background: rgba(15, 10, 30, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* ==================== SERVICE CARDS ==================== */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(204, 255, 0, 0.05) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(204, 255, 0, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(204, 255, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-card:hover::after {
    opacity: 1;
}

/* ==================== STATS DISPLAY ==================== */
.stat-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== LOADING STATES ==================== */
.skeleton-loader {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.03) 25%, 
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(255, 255, 255, 0.03) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

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

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--royal-purple), var(--neon-lime));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-lime), var(--electric-blue));
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .display-title {
        font-size: 2.5rem;
    }
    
    .price-display {
        font-size: 1.8rem;
    }
}
