/* 
   GOD MODE UI - TheLionAI Agent Pages
   "Beyond God Level" Visual Enhancements
*/

:root {
    --neon-primary: #6366f1;
    --neon-secondary: #ec4899;
    --neon-accent: #8b5cf6;
    --glass-surface: rgba(255, 255, 255, 0.03);
    --glass-border-light: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);
}

/* ==========================================
   HERO SECTION OVERHAUL (ULTRA GOD MODE)
   ========================================== */

@keyframes hero-entrance {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes text-shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes border-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float-hologram {
    0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
    25% { transform: translateY(-15px) rotateX(2deg) rotateY(2deg); }
    50% { transform: translateY(0) rotateX(0) rotateY(0); }
    75% { transform: translateY(15px) rotateX(-2deg) rotateY(-2deg); }
}

@keyframes scan-line {
    0% { top: -10%; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 110%; opacity: 0; }
}

.agent-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
                linear-gradient(180deg, rgba(10, 10, 20, 0.8) 0%, rgba(5, 5, 10, 1) 100%);
}

/* Cyber Grid Background */
.agent-hero::before {
    content: '';
    position: absolute;
    inset: -50%;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(1000px) rotateX(60deg);
    animation: grid-move 20s linear infinite;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 40%, black 80%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 40%, black 80%, transparent);
    z-index: 0;
    pointer-events: none;
}

@keyframes grid-move {
    0% { transform: perspective(1000px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(1000px) rotateX(60deg) translateY(60px); }
}

.agent-hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

/* Hero Text Area */
.agent-hero-text {
    order: 1;
    animation: hero-entrance 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.agent-hero h1 {
    font-size: 5.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, #ffffff, #a5b4fc, #6366f1, #ffffff);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shimmer 5s linear infinite;
    filter: drop-shadow(0 0 40px rgba(99, 102, 241, 0.5));
    letter-spacing: -0.04em;
    position: relative;
}

.agent-subtitle {
    font-size: 1.4rem;
    color: var(--neon-secondary);
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    position: relative;
    padding-bottom: 0.5rem;
}

.agent-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--neon-secondary);
    box-shadow: 0 0 10px var(--neon-secondary);
}

.agent-tagline {
    font-size: 1.35rem;
    color: #e2e8f0;
    margin-bottom: 3rem;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--neon-primary);
    padding: 1.5rem;
    border-radius: 0 16px 16px 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 90%;
}

/* Futuristic Meta Pills */
.agent-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.meta-item {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.85rem 1.5rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.meta-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.meta-item:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--neon-primary);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.2);
}

.meta-item:hover::before {
    left: 100%;
}

.meta-item i {
    color: var(--neon-primary);
    font-size: 1.1em;
    filter: drop-shadow(0 0 5px var(--neon-primary));
}

/* Hero Image - Holographic Container */
.agent-hero-icon {
    position: relative;
    order: 2;
    perspective: 1500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.agent-hero-icon img {
    width: 100%;
    max-width: 550px;
    height: auto;
    filter: drop-shadow(0 0 60px rgba(99, 102, 241, 0.4));
    animation: float-hologram 8s ease-in-out infinite;
    transform-style: preserve-3d;
    z-index: 2;
}

/* Holographic Platform */
.agent-hero-icon::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%) rotateX(70deg);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.3), inset 0 0 30px rgba(99, 102, 241, 0.3);
    animation: pulse-platform 4s infinite alternate;
    z-index: 1;
}

@keyframes pulse-platform {
    0% { opacity: 0.5; transform: translateX(-50%) rotateX(70deg) scale(0.9); }
    100% { opacity: 1; transform: translateX(-50%) rotateX(70deg) scale(1.1); }
}

/* Scanning Effect */
.agent-hero-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 550px;
    height: 5px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 40px var(--neon-primary);
    z-index: 5;
    animation: scan-line 4s ease-in-out infinite;
    opacity: 0;
}

.meta-item:hover {
    border-color: var(--neon-primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.meta-item i {
    color: var(--neon-accent);
}

/* Status Badge - Holographic Chip */
.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
}

.status-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

/* ==========================================
   METRICS SECTION - GLASS PRISMS
   ========================================== */

.metrics-section {
    position: relative;
    z-index: 5;
    margin-top: -4rem; /* Overlap hero */
    padding-bottom: 6rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.metric-card {
    background: rgba(30, 41, 59, 0.7);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-primary), var(--neon-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.metric-card:hover::before {
    opacity: 1;
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-inline: auto;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.metric-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(180deg, #fff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* ==========================================
   FEATURES SECTION - DASHBOARD CARDS
   ========================================== */

.features-detail-section {
    padding: 6rem 0;
}

.features-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.feature-detail-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.6));
    border: 1px solid var(--glass-border-light);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s ease;
}

.feature-detail-card:hover {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8));
    border-color: var(--neon-primary);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-primary), var(--neon-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.feature-detail-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-benefits {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border-light);
}

.feature-benefits li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.feature-benefits li i {
    color: var(--success-color);
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.4));
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes float-hero {
    0%, 100% { transform: translateY(0) rotateX(0); }
    50% { transform: translateY(-20px) rotateX(2deg); }
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* Scroll Reveal Classes (triggered by JS) */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness Adjustments */
@media (max-width: 768px) {
    .agent-hero {
        min-height: initial;
        padding-top: 6rem;
        padding-bottom: 2rem;
    }
    
    .agent-hero::before {
        display: none; /* Hide complex grid on mobile for performance */
    }
    
    .agent-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .agent-hero-icon {
        order: 1;
        margin: 0 auto;
        max-width: 200px;
    }
    
    .agent-hero-text {
        order: 2;
    }
    
    .agent-hero h1 {
        font-size: 2.25rem;
        line-height: 1.2;
        filter: none; /* Remove glow for performance */
    }
    
    .agent-subtitle {
        font-size: 0.9rem;
    }
    
    .agent-meta {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .meta-item {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .agent-tagline {
        font-size: 1rem;
        padding: 1rem;
        border-left: none;
        border-top: 3px solid var(--neon-primary);
        border-radius: 0 0 12px 12px;
        max-width: 100%;
    }
}

/* Extra Small Mobile (iPhone SE) */
@media (max-width: 375px) {
    .agent-hero {
        padding-top: 5rem;
    }
    
    .agent-hero h1 {
        font-size: 1.75rem;
    }
    
    .agent-hero-icon {
        max-width: 150px;
    }
    
    .agent-subtitle {
        font-size: 0.8rem;
    }
    
    .agent-tagline {
        font-size: 0.9rem;
    }
    
    .meta-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 992px) {
    .agent-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .agent-hero-text {
        order: 2;
    }

    .agent-hero-icon {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .agent-hero h1 {
        font-size: 3.5rem;
    }
    
    .agent-tagline {
        margin-left: auto;
        margin-right: auto;
        border-left: none;
        border-top: 4px solid var(--neon-primary);
        border-radius: 0 0 16px 16px;
    }
    
    .agent-meta {
        justify-content: center;
    }
    
    .agent-subtitle::after {
        left: 50%;
        transform: translateX(-50%);
    }
}



/* ==========================================
   METRICS SECTION (ULTRA GOD MODE)
   ========================================== */

.metrics-section {
    position: relative;
    padding: 8rem 0;
    background: #0f172a;
    overflow: hidden;
}

/* Background Glows */
.metrics-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.metrics-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--neon-primary);
    margin: 1rem auto 0;
    border-radius: 2px;
    box-shadow: 0 0 15px var(--neon-primary);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.metric-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--neon-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(99, 102, 241, 0.2),
                inset 0 0 20px rgba(99, 102, 241, 0.1);
}

.metric-card:hover::before {
    opacity: 1;
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    color: var(--neon-primary);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.metric-card:hover .metric-icon {
    background: var(--neon-primary);
    color: #fff;
    transform: rotateY(180deg);
    box-shadow: 0 0 30px var(--neon-primary);
}

.metric-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.metric-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================
   FEATURES SECTION (ULTRA GOD MODE - CAROUSEL)
   ========================================== */

.features-detail-section {
    padding: 8rem 0;
    background: radial-gradient(circle at 50% 50%, #1a1c2e 0%, #0b0f19 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Orbs */
.features-detail-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    animation: float-orb 10s infinite alternate;
}

.features-detail-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    animation: float-orb 10s infinite alternate-reverse;
}

@keyframes float-orb {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Carousel Container */
.features-detail-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2.5rem;
    padding: 4rem 2rem; /* Space for hover effects */
    position: relative;
    z-index: 2;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    scroll-behavior: smooth;
    align-items: stretch;
}

.features-detail-grid::-webkit-scrollbar {
    display: none;
}

/* Carousel Card - Beautiful Theme */
.feature-detail-card {
    flex: 0 0 400px; /* Fixed width for carousel */
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
}

/* Beautiful Gradient Overlay */
.feature-detail-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.feature-detail-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 
                0 0 30px rgba(99, 102, 241, 0.2),
                inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.feature-detail-card:hover::before {
    opacity: 1;
}

/* Content Styling */
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2e3250, #1e2030);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.feature-detail-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--neon-primary), var(--neon-secondary));
    box-shadow: 0 0 40px var(--neon-primary);
    border-color: transparent;
}

.feature-detail-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
    position: relative;
    z-index: 1;
    background: linear-gradient(to right, #fff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-detail-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: auto; /* Push list to bottom */
    position: relative;
    z-index: 1;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.feature-benefits li:hover {
    transform: translateX(5px);
    color: #fff;
}

.feature-benefits li i {
    color: var(--neon-secondary);
    font-size: 1.1rem;
    filter: drop-shadow(0 0 8px var(--neon-secondary));
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.carousel-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--neon-primary);
    border-color: var(--neon-primary);
    box-shadow: 0 0 30px var(--neon-primary);
    transform: scale(1.1);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .feature-detail-card {
        flex: 0 0 85vw; /* Wider on mobile */
        padding: 2rem;
    }
    
    .features-detail-grid {
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
}



/* ==========================================
   CTA SECTION (ULTRA GOD MODE)
   ========================================== */

.cta-section {
    padding: 8rem 0;
    position: relative;
    background: #000;
    overflow: hidden;
    text-align: center;
}

/* Animated Gradient Background */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #4f46e5, #ec4899, #8b5cf6, #4f46e5);
    background-size: 400% 400%;
    animation: gradient-flow 15s ease infinite;
    opacity: 0.2;
    z-index: 0;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #e0e7ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.3));
}

.cta-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn-light {
    background: #fff;
    color: var(--neon-primary);
    font-weight: 700;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.cta-buttons .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255,255,255,0.5);
}

.cta-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

.cta-note {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.cta-note i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .cta-content {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-note {
        flex-direction: column;
        gap: 0.5rem;
    }
}



/* ==========================================
   MICRO-INTERACTIONS (FORENSIC AUDIT FIXES)
   ========================================== */

/* 1. Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--neon-primary), var(--neon-secondary));
    border-radius: 5px;
    border: 2px solid #050505;
}

::-webkit-scrollbar-track {
    background: #050505;
}

/* 2. Selection Color */
::selection {
    background: var(--neon-primary);
    color: #fff;
    text-shadow: 0 0 10px #fff;
}

/* 3. Custom Cursor - DISABLED FOR USABILITY */
/*
body {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    mix-blend-mode: difference;
}

.custom-cursor.hovered {
    width: 50px;
    height: 50px;
    background-color: rgba(99, 102, 241, 0.2);
    border-color: var(--neon-secondary);
    mix-blend-mode: normal;
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}
*/

/* ==========================================
   NEW SECTIONS (MARKET GAP FILLERS)
   ========================================== */

/* Process Section */
.process-section {
    padding: 8rem 0;
    background: #080810;
    position: relative;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
}

/* Connecting Line */
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    padding: 0 1rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #0f172a;
    border: 2px solid var(--neon-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 2rem;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    background: var(--neon-primary);
    box-shadow: 0 0 40px var(--neon-primary);
}

.process-step h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.process-step p {
    color: #94a3b8;
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background: #050505;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--neon-primary);
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--neon-primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 2rem;
    color: #94a3b8;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-steps::before {
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 1.25rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
        font-size: 0.95rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .step-number {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
        font-size: 0.85rem;
