:root {
    --primary: #6c5ce7;
    --primary-dark: #5a4bd1;
    --secondary: #00cec9;
    --dark: #1a1a2e;
    --darker: #0f0f1a;
    --gradient: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 50%, #00cec9 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5f6fa;
    padding-top: 76px;
}

/* Navbar */
.navbar {
    background: rgba(26, 26, 46, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 12px 0;
}
.navbar-brand { font-size: 1.4rem; letter-spacing: -0.5px; }
.navbar .nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    background: rgba(108, 92, 231, 0.15);
    color: #a29bfe !important;
}

/* Hero */
.hero {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.min-vh-80 { min-height: 80vh; }
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-white-70 { color: rgba(255,255,255,0.7); }
.bg-primary-soft {
    background: rgba(108, 92, 231, 0.15);
    color: #a29bfe;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
}

/* Hero stats */
.hero-stats { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.stat-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    min-width: 130px;
    transition: transform 0.3s;
}
.stat-card:hover { transform: translateY(-5px); }
.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* Feature cards */
.feature-card {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(108,92,231,0.1);
}
.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(108,92,231,0.1) 0%, rgba(0,206,201,0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Pricing cards */
.pricing-card {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(108,92,231,0.12);
}
.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(108,92,231,0.15);
}
.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient);
    color: white;
    padding: 4px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
}
.price { line-height: 1; }
.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
}
.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    vertical-align: super;
}
.price-period { font-size: 0.9rem; color: #999; margin-left: 4px; }
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    font-size: 0.9rem;
    color: #555;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 0.9rem;
}
.fw-900 { font-weight: 900; }
.pricing-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, rgba(108,92,231,0.1) 0%, rgba(0,206,201,0.1) 100%);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--primary);
}
.hover-white:hover { color: white !important; }
.btn-sm { padding: 8px 20px !important; font-size: 0.85rem; border-radius: 10px; }
.navbar .btn { border-radius: 10px; }

/* Page header */
.page-header {
    background: var(--gradient-dark);
    padding: 100px 0 60px;
}

/* Spec card */
.spec-card {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s;
    height: 100%;
}
.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(108,92,231,0.1);
}

/* Buttons */
.btn-primary {
    background: var(--gradient);
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(108,92,231,0.3);
}
.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 12px;
    font-weight: 600;
    padding: 12px 30px;
}
.btn-outline-primary:hover {
    background: var(--gradient);
    border-color: transparent;
    color: white;
}
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    font-weight: 600;
    padding: 12px 30px;
}
.btn-outline-light:hover {
    background: white;
    color: var(--dark);
    border-color: white;
}

/* Footer */
.footer {
    background: var(--darker);
    color: white;
    padding: 60px 0 30px;
}
.footer h6 { font-size: 0.9rem; margin-bottom: 16px; }

/* Table */
.table th { border-top: none; font-weight: 600; font-size: 0.85rem; }
.table td { vertical-align: middle; }

/* Form */
.form-control {
    border-radius: 10px;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    font-size: 0.9rem;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108,92,231,0.1);
}

/* Modal */
.modal-content { border-radius: 16px; }

/* Responsive */
@media (max-width: 768px) {
    .hero { padding: 80px 0 60px; }
    .price-amount { font-size: 2rem; }
}
