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

:root {
    --primary-purple: #8b5cf6;
    --dark-purple: #4c1d95;
    --neon-purple: #a855f7;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #030005; /* Deep black-purple */
    color: #f3f4f6;
    overflow-x: hidden;
}

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

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

::-webkit-scrollbar-thumb {
    background: #4c1d95;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6d28d9;
}

/* Glow Effects */
.purple-glow {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.purple-glow-hover:hover {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
    transition: all 0.3s ease;
}

.text-gradient {
    background: linear-gradient(to right, #c084fc, #8b5cf6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #1e1b4b 0%, #2e1065 100%);
}

/* Hero abstract background */
.hero-bg {
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(88, 28, 135, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.2) 0%, transparent 50%);
}

/* Card Hover Effects */
.pricing-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #a855f7;
}

/* FAQ Accordion Transition */
.faq-content {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.faq-content.active {
    opacity: 1;
}

/* Before/After Placeholder Styling */
.ba-slider {
    position: relative;
    width: 100%;
    height: 400px;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
}

.ba-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(45deg, #111 25%, #1a1a1a 25%, #1a1a1a 50%, #111 50%, #111 75%, #1a1a1a 75%, #1a1a1a 100%);
    background-size: 20px 20px;
}
