:root {
    --bg-primary: #0b0f19;
    --bg-secondary: #161c2e;
    --glass-bg: rgba(22, 28, 46, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    
    /* Vibrant harmonized colors */
    --accent-blue: #3b82f6;
    --accent-indigo: #6366f1;
    --accent-purple: #8b5cf6;
    
    --grad-primary: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-indigo) 50%, var(--accent-purple) 100%);
    --grad-text: linear-gradient(to right, #60a5fa, #a78bfa);
    
    --font-sans: 'Outfit', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 90% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 30% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Gradients Glows */
.ambient-glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
    pointer-events: none;
}

.ambient-glow-2 {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
    pointer-events: none;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 15, 25, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.cta-btn {
    background: var(--grad-primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

/* Sections */
section {
    padding: 4.5rem 2rem 2.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.section-title span {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70vh;
    padding-top: 7rem;
    padding-bottom: 2rem;
    gap: 4rem;
}

.hero-content {
    flex: 1.2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-secondary);
}

.hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Interactive SVG Illustration */
.hero-svg {
    max-width: 480px;
    width: 100%;
    height: auto;
    overflow: visible;
}

.animated-globe {
    transform-origin: 350px 200px;
    animation: rotateGlobe 40s linear infinite;
}

.floating-shop {
    animation: floatPlatform 5s ease-in-out infinite;
}

.pulsing-ring {
    transform-origin: center;
    animation: pulseRing 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.stream-line {
    animation: flowStream 1.5s linear infinite;
}

@keyframes rotateGlobe {
    0% { transform: translate(350px, 200px) rotate(0deg); }
    100% { transform: translate(350px, 200px) rotate(360deg); }
}

@keyframes floatPlatform {
    0%, 100% { transform: translate(110px, 310px); }
    50% { transform: translate(110px, 300px); }
}

@keyframes pulseRing {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes flowStream {
    to {
        stroke-dashoffset: -20;
    }
}


/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-indigo);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: "✓";
    color: var(--accent-indigo);
    font-weight: bold;
}

/* Pricing / Calculator section */
.calculator-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem;
    backdrop-filter: blur(12px);
}

.calc-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.calc-group label {
    font-weight: 600;
    font-size: 1.1rem;
}

.calc-select {
    width: 100%;
    padding: 1rem;
    background: rgba(11, 15, 25, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.calc-select:focus {
    border-color: var(--accent-indigo);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(11, 15, 25, 0.4);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition-smooth);
    user-select: none;
}

.checkbox-label:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.checkbox-label input {
    accent-color: var(--accent-indigo);
    width: 1.2rem;
    height: 1.2rem;
}

.calc-summary {
    background: rgba(11, 15, 25, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px dashed rgba(99, 102, 241, 0.3);
}

.calc-price {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 1rem 0;
}

.calc-time {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem;
    backdrop-filter: blur(12px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(11, 15, 25, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--accent-indigo);
}

textarea.form-input {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: none;
    background: var(--grad-primary);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    transition: var(--transition-smooth);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 8rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-desc {
        margin: 0 auto 2rem auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(11, 15, 25, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        transform: translateY(-150%);
        transition: var(--transition-smooth);
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-container .cta-btn {
        display: none; /* Hide top CTA on mobile to save space, or show inside nav */
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 9999px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-indigo);
}

/* Active Nav Links styling */
.nav-links a.active-link {
    color: var(--text-primary) !important;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
}

/* Mobile Toggle classes styling */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Roadmap/Process styling */
.roadmap-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.roadmap-step {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.roadmap-step:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.roadmap-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-primary);
    opacity: 0;
    transition: var(--transition-smooth);
}

.roadmap-step:hover::before {
    opacity: 1;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-indigo);
    font-weight: 400;
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   PORTFOLIO & PROJECTS SECTION
   ========================================================================== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(22, 28, 46, 0.4);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.portfolio-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.15);
}

.card-visual {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: #0b0f19;
    transition: var(--transition-smooth);
}

/* Dark gradient overlay to ensure the project label text is perfectly readable */
.card-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 15, 25, 0.1) 0%, rgba(11, 15, 25, 0.75) 100%);
    z-index: 2;
    pointer-events: none;
}

.portfolio-card:hover .card-visual {
    filter: brightness(1.1);
}

/* Ensure visual tags stay on top of the slideshow */
.shop-visual::after,
.portal-visual::after,
.voice-visual::after,
.hotel-visual::after,
.tracker-visual::after,
.ytshorts-visual::after {
    z-index: 3;
    pointer-events: none;
}

/* Slideshow Structure */
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Floating dot indicators */
.slideshow-dots {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.4rem;
    background: rgba(11, 15, 25, 0.6);
    padding: 0.35rem 0.5rem;
    border-radius: 99px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    z-index: 4;
}

.slideshow-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: var(--transition-smooth);
}

.slideshow-dots .dot.active {
    background: var(--accent-indigo);
    transform: scale(1.2);
    box-shadow: 0 0 6px var(--accent-indigo);
}

/* ==========================================================================
   VECOTR WORKSPACE COMPONENTS & DASHBOARD SCREENSHOTS
   ========================================================================== */

/* 1. E-Commerce Store Slides */
.mockup-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    width: 100%;
}
.mockup-product-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}
.mockup-icon {
    font-size: 1.5rem;
}
.mockup-line-sm {
    width: 70%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}
.mockup-price-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: #10b981;
}

.mockup-checkout {
    display: flex;
    gap: 1rem;
    width: 100%;
    align-items: center;
}
.mockup-credit-card {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    border-radius: 10px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 140px;
    height: 85px;
    font-family: monospace;
    font-size: 0.65rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}
.card-chip {
    width: 18px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
}
.card-number {
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}
.card-holder {
    opacity: 0.7;
    font-size: 0.55rem;
}
.mockup-checkout-form {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex-grow: 1;
}
.mockup-input-bar {
    height: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
}
.mockup-btn-pay {
    background: #10b981;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-align: center;
    padding: 0.4rem;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.mockup-analytics {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}
.mockup-chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 50px;
    padding: 0 1rem;
}
.mockup-bar {
    width: 12px;
    background: var(--grad-primary);
    border-radius: 3px 3px 0 0;
    animation: pulseHeight 2s ease-in-out infinite alternate;
}
.mockup-stat {
    font-size: 0.85rem;
    font-weight: 700;
    color: #10b981;
    text-align: center;
}

/* 2. Investing Tracker Slides */
.mockup-chart-full {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.mockup-sparkline {
    width: 100%;
    height: 60px;
    overflow: visible;
}
.mockup-chart-label {
    font-size: 0.95rem;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.trend-green {
    color: #10b981;
    font-size: 0.8rem;
}
.pulsing-spark {
    animation: pulseRing 1.5s infinite;
}

.mockup-assets-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
}
.asset-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
}
.asset-symbol {
    font-weight: 700;
}
.asset-mini-chart {
    width: 60px;
    height: 20px;
}
.asset-val {
    font-weight: 600;
}

.mockup-ledger {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
}
.ledger-header {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-secondary);
}
.ledger-row {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}
.ledger-row.buy {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}
.ledger-row.sell {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* 3. Voice AI Pipeline Slides */
.mockup-waves {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
}
.wave-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
}
.wave-bar {
    width: 4px;
    background: #3b82f6;
    border-radius: 99px;
    transition: height 0.3s ease;
}
.wave-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}
.play-icon {
    color: #3b82f6;
    font-size: 0.75rem;
}
.wave-progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    flex-grow: 1;
    position: relative;
    border-radius: 99px;
}
.wave-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: #3b82f6;
    border-radius: 99px;
}
.wave-time {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.mockup-nodes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.mockup-nodes .node {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
}
.mockup-nodes .node.active {
    border-color: #6366f1;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
}
.node-processor {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}
.node-line {
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    flex-grow: 1;
    position: relative;
}
.node-line::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #a78bfa;
    border-radius: 50%;
    animation: flowNode 1.5s infinite linear;
}

.mockup-voice-cards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}
.voice-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}
.voice-row.active {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.05);
}
.voice-row .badge {
    font-size: 0.65rem;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    background: rgba(255,255,255,0.08);
}
.voice-row.active .badge {
    background: #8b5cf6;
    color: white;
}

/* 4. Hotel Reservation Slides */
.mockup-hotel-room {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    align-items: center;
}
.hotel-img-placeholder {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.05);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hotel-details-mini {
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
    gap: 0.25rem;
}
.hotel-name {
    font-size: 0.85rem;
    font-weight: 700;
}
.hotel-price {
    font-size: 0.75rem;
    font-weight: 700;
    color: #60a5fa;
}

.mockup-calendar {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    width: 100%;
}
.calendar-hdr {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-align: center;
}
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.3rem;
    text-align: center;
    font-size: 0.75rem;
}
.calendar-days span {
    padding: 0.2rem;
    border-radius: 4px;
}
.calendar-days span.selected {
    background: #6366f1;
    color: white;
    font-weight: 700;
}

.mockup-amenities {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
}
.amenity-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* 5. Productivity API Slides */
.mockup-api-metrics {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    justify-content: center;
}
.metric-circle-container {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.metric-circle-container::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #10b981;
    animation: rotateGlobe 3s linear infinite;
}
.uptime {
    font-size: 0.8rem;
    font-weight: 800;
    color: #10b981;
}
.api-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-family: monospace;
}

.mockup-schema {
    display: flex;
    flex-direction: column;
    background: rgba(11, 15, 25, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.5rem;
    width: 100%;
    font-family: monospace;
    font-size: 0.7rem;
}
.schema-header {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.3rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
    color: #8b5cf6;
}
.schema-row {
    display: flex;
    justify-content: space-between;
    padding: 0.15rem 0;
}
.schema-row .type {
    color: var(--text-secondary);
}

.mockup-logs {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: #050811;
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    width: 100%;
    font-family: monospace;
    font-size: 0.65rem;
    text-align: left;
    height: 70px;
    overflow: hidden;
}
.log-line {
    color: rgba(255,255,255,0.5);
}
.log-line.green {
    color: #10b981;
}


/* 8. Video Automation Slides */
.mockup-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    width: 100%;
}
.timeline-layer {
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: left;
}
.timeline-layer.audio {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-left: 3px solid #3b82f6;
}
.timeline-layer.text {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border-left: 3px solid #8b5cf6;
}
.timeline-layer.video {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border-left: 3px solid #f59e0b;
}

.mockup-compiler {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}
.compiler-status {
    font-size: 0.75rem;
    font-weight: 800;
    color: #ef4444;
}

.mockup-pub-queue {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
}
.queue-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}
.queue-row .status {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-secondary);
}
.queue-row .status.green {
    color: #10b981;
}

/* Animations */
@keyframes pulseHeight {
    0% { transform: scaleY(0.9); }
    100% { transform: scaleY(1.15); transform-origin: bottom; }
}
@keyframes flowNode {
    0% { left: 0%; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* Beautiful dynamic background patterns for project card visual placeholders */
.voice-visual {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(99, 102, 241, 0.3) 100%), 
                radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.4) 0%, transparent 60%);
}
.voice-visual::after {
    content: "🎙️ VOICE AI PIPELINE";
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.45;
    font-size: 1.1rem;
}

.shop-visual {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(139, 92, 246, 0.3) 100%),
                radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.4) 0%, transparent 60%);
}
.shop-visual::after {
    content: "🛍️ E-COMMERCE STORE";
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.45;
    font-size: 1.1rem;
}

.portal-visual {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(59, 130, 246, 0.3) 100%),
                radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.4) 0%, transparent 60%);
}
.portal-visual::after {
    content: "📊 BUSINESS CRM";
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.45;
    font-size: 1.1rem;
}

.hotel-visual {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(59, 130, 246, 0.3) 100%),
                radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.45) 0%, transparent 60%);
}
.hotel-visual::after {
    content: "🏨 HOTEL RESERVATIONS";
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.45;
    font-size: 1.1rem;
}

.tracker-visual {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(139, 92, 246, 0.25) 100%),
                radial-gradient(circle at 60% 60%, rgba(59, 130, 246, 0.4) 0%, transparent 60%);
}
.tracker-visual::after {
    content: "⏱️ PRODUCTIVITY API";
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.45;
    font-size: 1.1rem;
}

.medical-visual {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(16, 185, 129, 0.25) 100%),
                radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.4) 0%, transparent 60%);
}
.medical-visual::after {
    content: "🏥 MEDICAL PORTAL";
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.45;
    font-size: 1.1rem;
}

.farmers-visual {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(16, 185, 129, 0.25) 100%),
                radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.35) 0%, transparent 60%);
}
.farmers-visual::after {
    content: "🍎 ORGANIC GROCERY";
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.45;
    font-size: 1.1rem;
}

.ytshorts-visual {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(139, 92, 246, 0.25) 100%),
                radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.4) 0%, transparent 60%);
}
.ytshorts-visual::after {
    content: "🎬 VIDEO AUTOMATION";
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.45;
    font-size: 1.1rem;
}

.card-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-cat {
    color: var(--accent-indigo);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.card-info h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.project-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    width: 100%;
}

.case-study-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.case-study-btn:hover {
    color: var(--text-primary);
}

.demo-trigger-btn {
    background: transparent;
    border: none;
    color: var(--accent-indigo);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition-smooth);
}

.demo-trigger-btn:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

/* ==========================================================================
   PROJECT DETAIL MODAL
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    max-width: 750px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    scrollbar-width: none; /* Firefox */
}

.modal-content::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.modal-body {
    padding: 3rem;
}

.modal-hero-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin-bottom: 1rem;
}

.modal-body h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section h4 {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-indigo);
    margin-bottom: 0.5rem;
}

.modal-section p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.modal-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.tech-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   MAGNETIC INTERACTION & GLOW STYLINGS
   ========================================================================== */
.magnetic-btn {
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Track hover styles on cards for radial gradients in JS */
.service-card, .portfolio-card, .calculator-container, .contact-container, .roadmap-step {
    position: relative;
}

.hover-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* ==========================================================================
   FORM PROGRESS & DYNAMIC VALIDATION STYLES
   ========================================================================== */
.form-progress-container {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: var(--grad-primary);
    border-radius: 9999px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: right;
}

/* Validation status animations and focus ring styles */
.form-input.input-valid {
    border-color: rgba(16, 185, 129, 0.5) !important;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.15) !important;
}

.form-input.input-invalid {
    border-color: rgba(239, 68, 68, 0.5) !important;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.15) !important;
}

/* ==========================================================================
   TESTIMONIALS SLIDER STYLING
   ========================================================================== */
.testimonials-container {
    max-width: 850px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.testimonial-slide {
    opacity: 0;
    visibility: hidden;
    display: none;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.testimonial-text {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    font-style: italic;
    color: var(--text-primary);
}

.testimonial-text::before {
    content: "“";
    font-size: 4rem;
    color: var(--accent-indigo);
    position: absolute;
    top: -2rem;
    left: -1.5rem;
    opacity: 0.25;
    font-family: serif;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.user-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.user-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.user-details span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 250px;
    margin: 0 auto;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background: var(--grad-primary);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transform: scale(1.08);
}

.slider-dots {
    display: flex;
    gap: 0.6rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--accent-indigo);
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.6);
}

/* ==========================================================================
   FAQ SEARCH BAR
   ========================================================================== */
.faq-search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.faq-search-input {
    width: 100%;
    padding: 1.1rem 1.5rem 1.1rem 3.2rem;
    background: rgba(22, 28, 46, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 9999px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
}

.faq-search-input:focus {
    border-color: var(--accent-indigo);
    background: rgba(22, 28, 46, 0.6);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.faq-search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--text-secondary);
    pointer-events: none;
}

/* Smooth filtering states for FAQ items */
.faq-item.search-hidden {
    opacity: 0;
    transform: scale(0.95);
    max-height: 0;
    margin-bottom: 0;
    padding: 0;
    border: none;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease, margin 0.3s ease;
}

/* ==========================================================================
   SCROLL PROGRESS LINE (TOP OF VIEWPORT)
   ========================================================================== */
.scroll-progress-line {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: var(--grad-primary);
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.4);
    transition: width 0.1s ease-out;
}

/* ==========================================================================
   TECH STACK MARQUEE
   ========================================================================== */
.tech-marquee-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(22, 28, 46, 0.2);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    margin: 4rem 0;
}

.tech-marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 25s linear infinite;
    gap: 3rem;
    padding-left: 3rem;
}

.tech-marquee-track:hover {
    animation-play-state: paused;
}

.tech-tag {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    cursor: default;
    user-select: none;
    white-space: nowrap;
}

.tech-tag:hover {
    color: var(--text-primary);
    text-shadow: 0 0 12px rgba(99, 102, 241, 0.5);
}

.tech-marquee-mask-left, .tech-marquee-mask-right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 15%;
    z-index: 2;
    pointer-events: none;
}

.tech-marquee-mask-left {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}

.tech-marquee-mask-right {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* translate exactly half (first duplicate block) */
    }
}

/* ==========================================================================
   MODAL TABS STYLING
   ========================================================================== */
.modal-tabs {
    display: flex;
    background: rgba(11, 15, 25, 0.4);
    border-bottom: 1px solid var(--glass-border);
    padding: 0 5rem 0 2rem;
    gap: 1.5rem;
}

.modal-tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 1.25rem 0.5rem;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.modal-tab-btn:hover {
    color: var(--text-primary);
}

.modal-tab-btn.active {
    color: var(--accent-indigo);
}

.modal-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--grad-primary);
    border-radius: 9999px;
}

/* ==========================================================================
   INTERACTIVE DEMOS STYLING
   ========================================================================== */

/* 1. Shop Demo */
.demo-shop-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.demo-shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(11, 15, 25, 0.5);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.cart-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-badge {
    background: var(--accent-indigo);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.85rem;
}

.demo-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.demo-shop-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
}

.item-icon {
    font-size: 2.2rem;
}

.item-price {
    font-weight: 700;
    color: var(--text-primary);
}

.add-cart-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.add-cart-btn:hover {
    background: var(--grad-primary);
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
}

.checkout-btn {
    background: var(--grad-primary);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 700;
    transition: var(--transition-smooth);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 2. Investing Tracker Demo */
.demo-invest-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.demo-invest-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.metric-card {
    background: rgba(11, 15, 25, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
}

.metric-card span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.metric-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 0.25rem;
}

.growth-text {
    color: #10b981;
}

.demo-chart-container {
    background: rgba(11, 15, 25, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chart-timeline-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.chart-timeline-btn.active {
    background: rgba(99, 102, 241, 0.15);
    color: var(--accent-indigo);
    border-color: var(--accent-indigo);
}

.mock-chart-visual {
    height: 180px;
    width: 100%;
    position: relative;
}

.mock-chart-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* 3. Voice Demo */
.demo-voice-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.voice-textarea {
    width: 100%;
    height: 90px;
    background: rgba(11, 15, 25, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    padding: 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    resize: none;
    outline: none;
}

.voice-textarea:focus {
    border-color: var(--accent-indigo);
}

.voice-profiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.voice-profile-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.voice-profile-card.active {
    border-color: var(--accent-indigo);
    background: rgba(99, 102, 241, 0.1);
}

.voice-profile-card span {
    font-size: 1.5rem;
}

.synthesize-btn {
    background: var(--grad-primary);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-sans);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

/* Audio wave visualization */
.audio-visual-panel {
    background: rgba(11, 15, 25, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.play-pause-btn {
    background: var(--accent-indigo);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.waveform-equalizer {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
    flex-grow: 1;
}

.eq-bar {
    width: 3px;
    height: 10%;
    background: var(--accent-indigo);
    border-radius: 9999px;
    transition: height 0.15s ease-in-out;
}

.waveform-equalizer.playing .eq-bar {
    animation: bounceBar 0.8s ease-in-out infinite alternate;
}

@keyframes bounceBar {
    0% { height: 10%; }
    100% { height: 90%; }
}

/* ==========================================================================
   INTERACTIVE ONBOARDING WIZARD STYLES
   ========================================================================== */
.wizard-container {
    padding: 3rem !important;
}

.wizard-header {
    margin-bottom: 3rem;
}

.wizard-steps-indicators {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    cursor: default;
}

.step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(22, 28, 46, 0.9);
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-line {
    flex-grow: 1;
    height: 2px;
    background: var(--glass-border);
    margin: 0 -10px;
    transform: translateY(-13px);
    z-index: 1;
    transition: var(--transition-smooth);
}

/* Active and Completed step indicator classes */
.step-indicator.active .step-dot {
    background: var(--accent-indigo);
    border-color: var(--accent-indigo);
    color: white;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

.step-indicator.active .step-label {
    color: var(--text-primary);
}

.step-indicator.completed .step-dot {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.step-indicator.completed .step-label {
    color: #10b981;
}

.step-line.completed {
    background: #10b981;
}

.wizard-step {
    display: none;
    animation: fadeIn 0.4s ease-in-out forwards;
}

.wizard-step.active {
    display: block;
}

.wizard-step-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wizard-step-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Step 1 Scope Options Grid */
.wizard-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.wizard-card-option {
    cursor: pointer;
    position: relative;
}

.wizard-card-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.card-option-content {
    background: rgba(11, 15, 25, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-option-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    transition: var(--transition-smooth);
}

.card-option-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card-option-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Card option hover and select states */
.wizard-card-option:hover .card-option-content {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.1);
}

.wizard-card-option input[type="radio"]:checked + .card-option-content {
    border-color: var(--accent-indigo);
    background: rgba(99, 102, 241, 0.1);
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.2);
}

.wizard-card-option input[type="radio"]:checked + .card-option-content .card-option-icon {
    transform: scale(1.15);
}

/* Step 2 Timeline & Budget sliders */
.wizard-range-group {
    background: rgba(11, 15, 25, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.range-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.range-header label {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin-bottom: 0 !important;
}

.range-value {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wizard-range-slider {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.wizard-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-indigo);
    border: 2px solid white;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.8);
    transition: var(--transition-smooth);
}

.wizard-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Step 4 Confirmation Summary Card */
.wizard-summary-card {
    background: rgba(11, 15, 25, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 0.75rem;
}

.summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.summary-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.summary-val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}

.wizard-actions button {
    min-width: 140px;
    padding: 0.9rem 1.8rem;
}

/* ==========================================================================
   TECHNICAL INSIGHTS BLOG SECTION STYLES
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-primary);
    opacity: 0;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
    width: max-content;
}

.blog-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: var(--text-primary);
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.read-more-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-blue);
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.blog-card:hover .read-more-link {
    color: #60a5fa;
    transform: translateX(4px);
}

/* ==========================================================================
   BLOG READER MODAL STYLES
   ========================================================================== */
.blog-modal-content {
    max-width: 800px !important;
}

.blog-modal-body {
    padding: 2.5rem 3rem !important;
    text-align: left;
}

.blog-modal-header {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.blog-modal-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-modal-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.5px;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-post-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem 0;
    color: var(--accent-indigo);
}

.blog-post-content blockquote {
    border-left: 4px solid var(--accent-blue);
    background: rgba(59, 130, 246, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text-secondary);
    margin: 1.5rem 0;
}

.blog-post-content pre {
    background: rgba(11, 15, 25, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.25rem;
    font-family: monospace;
    font-size: 0.85rem;
    overflow-x: auto;
    margin: 1.5rem 0;
    color: #60a5fa;
}

/* ==========================================================================
   MOBILE MEDIA OVERRIDES
   ========================================================================== */
@media (max-width: 600px) {
    .wizard-steps-indicators {
        max-width: 100%;
    }
    .step-label {
        display: none;
    }
    .step-line {
        transform: translateY(-18px);
    }
    .wizard-actions {
        flex-direction: column-reverse;
        gap: 1rem;
    }
    .wizard-actions button {
        width: 100%;
    }
    .blog-modal-body {
        padding: 1.5rem !important;
    }
    .blog-modal-header h2 {
        font-size: 1.6rem;
    }
}
/* FAQ Search Query Highlight Style */
.faq-highlight {
    background: rgba(139, 92, 246, 0.35); /* styled soft purple */
    color: #fff;
    padding: 0.1rem 0.25rem;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
    font-weight: 600;
}

