:root {
    --bg-dark: #0B0B15;
    --neon-purple: #8B5CF6;
    --neon-cyan: #06B6D4;
    --text-light: #F3F4F6;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Typography & Effects */
.glow-text {
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5),
        0 0 20px rgba(6, 182, 212, 0.3);
}

.text-gradient {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* Navbar Customizations */
.navbar-glass {
    background: rgba(11, 11, 21, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
    letter-spacing: -0.5px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--neon-cyan) !important;
}

/* Buttons */
.btn-cta {
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 50rem;
    /* Pill shape */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);

    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Background Glowing Blobs */
.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.6;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--neon-purple);
    top: -100px;
    left: -100px;
    animation: blob-float 10s infinite alternate;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--neon-cyan);
    bottom: -50px;
    right: -50px;
    animation: blob-float 8s infinite alternate-reverse;
}

@keyframes blob-float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 50px);
    }
}

/* Secondary Outline Button */
.btn-outline-glow {
    background: transparent;
    border: 2px solid var(--neon-purple);
    color: white;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 50rem;
    transition: all 0.3s ease;
}

.btn-outline-glow:hover {
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
    color: white;
    border-color: var(--neon-cyan);
}

/* FAQ Section */
.accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-button {
    background: transparent;
    color: var(--text-light);
    font-weight: 600;
    box-shadow: none !important;
    padding: 1.5rem 0;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--neon-cyan);
}

.accordion-button::after {
    filter: invert(1);
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1) drop-shadow(0 0 5px var(--neon-cyan));
    transform: rotate(180deg);
}

.accordion-body {
    color: rgba(255, 255, 255, 0.6);
    padding-bottom: 2rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(6, 182, 212, 0.9));
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

/* Typewriter Effect */
.typewriter-text {
    color: var(--neon-cyan);
    font-weight: 600;
    border-right: 2px solid var(--neon-cyan);
    padding-right: 5px;
    animation: blink-cursor 0.75s step-end infinite;
}

@keyframes blink-cursor {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--neon-cyan)
    }
}

/* Logo Cloud */
.logo-cloud {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-icon {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Adjust based on duplication length */
}

/* Features Section */
.feature-card {
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--neon-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
}

.feature-card:hover .feature-icon {
    color: var(--neon-purple);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

/* Pricing Section */
.pricing-card {
    transition: transform 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card-pro {
    position: relative;
    border: 1px solid transparent;
    background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
        linear-gradient(135deg, var(--neon-purple), var(--neon-cyan)) border-box;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.bg-gradient-premium {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    color: white;
    border: none;
}

.check-icon {
    color: var(--neon-cyan);
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: #05050A;
    /* Darker than body */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: var(--neon-cyan);
}

.social-icon {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: white;
}


/* Dashboard Preview Refactor */
.dashboard-container {
    perspective: 1000px;
    margin-top: -50px;
}

.dashboard-preview {
    /* Removed padding/border from here, moving to inner window */
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

.mock-browser-window {
    background: rgba(15, 15, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    transform: rotateX(5deg) scale(0.95);
    transition: transform 0.5s ease;
    animation: dashboard-float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.mock-browser-window:hover {
    transform: rotateX(0deg) scale(1);
    animation-play-state: paused;
}

/* Sidebar */
.mock-sidebar {
    width: 80px;
    background: rgba(0, 0, 0, 0.2);
}

.nav-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-icon:hover,
.nav-icon.active {
    background: rgba(139, 92, 246, 0.1);
    color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

/* Content Area details */
.glass-input-group {
    background: rgba(255, 255, 255, 0.03);
}

.grid-overlay {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    background-color: var(--neon-cyan);
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}



@keyframes dashboard-float {

    0%,
    100% {
        transform: rotateX(5deg) scale(0.95) translateY(0);
    }

    50% {
        transform: rotateX(5deg) scale(0.95) translateY(-20px);
    }
}

.floating-card {
    backdrop-filter: blur(12px);
    background: rgba(30, 30, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Use Cases Tabs */
.nav-tabs {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.nav-tabs .nav-link {
    color: rgba(255, 255, 255, 0.6);
    border: none;
    padding: 1rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: white;
    box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.2);
}

.nav-tabs .nav-link.active {
    color: white;
    background: transparent;
    border-bottom: 3px solid var(--neon-purple);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* Terminal Window */
.terminal-window {
    background: #1e1e2e;
    border-radius: 0.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Courier New', monospace;
    min-height: 200px;
}

.terminal-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* How It Works Section */
.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--neon-purple);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.step-image {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.step-image:hover {
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.4);
}

/* Testimonials Section */
.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.star-rating {
    color: var(--neon-purple);
    /* Neon Purple */
    margin-bottom: 1rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 2px solid var(--neon-purple);
}

.carousel-indicators {
    bottom: -3rem;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--neon-cyan);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

/* FAQ Section */
.accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-button {
    background: transparent;
    color: var(--text-light);
    font-weight: 600;
    box-shadow: none !important;
    padding: 1.5rem 0;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--neon-cyan);
}

.accordion-button::after {
    filter: invert(1);
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1) drop-shadow(0 0 5px var(--neon-cyan));
    transform: rotate(180deg);
}

.accordion-body {
    color: rgba(255, 255, 255, 0.6);
    padding-bottom: 2rem;
}

/* Final CTA */

.final-cta {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    border-top: 1px solid transparent;
    background-clip: padding-box;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), var(--neon-cyan), transparent);
    z-index: 10;
}

.final-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}