body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    background: #0c0c0e;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

body.landing-body {
    position: relative;
    min-height: 100vh;
}

/* WebGL shader background layer — must sit outside <main>, not behind opaque stacks */
.shader-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: block;
}

body.landing-body:has(.shader-canvas) {
    background: #0c0c0e;
}

body.landing-body:has(.shader-canvas) .landing-main {
    position: relative;
    z-index: 1;
    background: transparent !important;
}

body.landing-body:has(.shader-canvas) .landing-footer {
    position: relative;
    z-index: 1;
    background: rgba(10, 10, 14, 0.5);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top-color: rgba(99, 102, 241, 0.12);
}

body.landing-body:has(.shader-canvas) nav.fixed {
    background: rgba(10, 10, 14, 0.5) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: rgba(99, 102, 241, 0.12) !important;
}

/* Landing page specific - no scroll */
body.landing-page {
    height: 100%;
    overflow: hidden;
}

/* Allow scroll on other pages */
body.scrollable-page {
    overflow-y: auto;
}

/* ========================================
   NEON ANIMATIONS & KEYFRAMES
   ======================================== */

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(124, 138, 255, 0.3),
                    0 0 20px rgba(124, 138, 255, 0.2),
                    0 0 40px rgba(124, 138, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 10px rgba(124, 138, 255, 0.5),
                    0 0 30px rgba(124, 138, 255, 0.3),
                    0 0 60px rgba(124, 138, 255, 0.2);
    }
}

@keyframes neonGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(124, 138, 255, 0.5),
                     0 0 20px rgba(124, 138, 255, 0.3),
                     0 0 40px rgba(124, 138, 255, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(124, 138, 255, 0.8),
                     0 0 40px rgba(124, 138, 255, 0.5),
                     0 0 80px rgba(124, 138, 255, 0.3);
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(124, 138, 255, 0.2);
    }
    50% {
        border-color: rgba(124, 138, 255, 0.5);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    box-sizing: border-box;
    background: linear-gradient(to bottom, rgba(18, 18, 20, 0.9), transparent);
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: #6366f1;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: neonGlow 3s ease-in-out infinite;
}

.landing-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #fff;
    text-align: center;
    padding-top: 60px;
}

.hero-section {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.8s ease-out;
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 10px;
    color: #ffffff;
    animation: neonGlow 4s ease-in-out infinite;
}

.title .hero-logo {
    width: 80px;
    height: 80px;
}

/* Animated text effect */
@keyframes textShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.title span {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #7c8aff 25%,
        #ffffff 50%,
        #7c8aff 75%,
        #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s linear infinite;
}

@media (max-width: 768px) {
    .title .hero-logo {
        width: 50px;
        height: 50px;
    }
}

.subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
    opacity: 0.6;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    background: rgba(124, 138, 255, 0.06);
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(124, 138, 255, 0.15);
    max-width: 200px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

.feature:nth-child(1) { animation-delay: 0.3s; }
.feature:nth-child(2) { animation-delay: 0.4s; }
.feature:nth-child(3) { animation-delay: 0.5s; }
.feature:nth-child(4) { animation-delay: 0.6s; }

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(124, 138, 255, 0.8), transparent);
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 100%;
}

.feature::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(124, 138, 255, 0.1), transparent, rgba(124, 138, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature:hover {
    border-color: rgba(124, 138, 255, 0.5);
    box-shadow: 0 0 30px rgba(124, 138, 255, 0.2),
                0 0 60px rgba(124, 138, 255, 0.1);
    transform: translateY(-5px);
}

.feature:hover::after {
    opacity: 1;
}

.feature h3 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: #5c7cfa;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.feature p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.6;
}

.actions {
    pointer-events: auto;
    display: flex;
    gap: 16px;
    margin-top: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 0.85rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #818cf8);
    background-size: 200% 200%;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.5);
    color: #ffffff;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
    animation: neonPulse 3s ease-in-out infinite;
}

.btn-primary:hover {
    background-position: 100% 100%;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.6),
                0 0 80px rgba(99, 102, 241, 0.3),
                0 8px 30px rgba(99, 102, 241, 0.4);
    border-color: #818cf8;
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(124, 138, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 138, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-secondary:hover {
    background: rgba(124, 138, 255, 0.1);
    color: #fff;
    border-color: #5c7cfa;
    box-shadow: 0 0 20px rgba(124, 138, 255, 0.2);
    transform: translateY(-2px);
}

.btn-secondary:hover::before {
    left: 100%;
}

/* ========================================
   TOP NAVBAR STYLES
   ======================================== */

.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(12, 12, 14, 0.95), rgba(12, 12, 14, 0.85));
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.15);
    animation: slideInLeft 0.5s ease-out;
}

.top-navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 138, 255, 0.5), transparent);
    animation: shimmer 4s ease-in-out infinite;
    background-size: 200% 100%;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-navbar .nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #6366f1;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-navbar .nav-brand .brand-logo {
    width: 32px;
    height: 32px;
}

.top-navbar .nav-brand:hover {
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.8),
                 0 0 40px rgba(99, 102, 241, 0.4);
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #7c8aff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(124, 138, 255, 0.5);
}

.nav-link:hover {
    color: #fff;
    background: rgba(124, 138, 255, 0.1);
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link.active {
    color: #7c8aff;
    background: rgba(124, 138, 255, 0.15);
}

.nav-link.active::after {
    width: 60%;
}

.top-navbar .nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.top-navbar .nav-actions .btn-sm {
    padding: 8px 18px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    min-width: auto;
}

.top-navbar .nav-actions .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
}

.top-navbar .nav-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.top-navbar .nav-actions .btn-primary {
    animation: none;
    box-shadow: 0 0 15px rgba(124, 138, 255, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(124, 138, 255, 0.15);
    color: #7c8aff;
}

/* Mobile Dropdown Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 0 20px 20px;
    border-top: 1px solid rgba(124, 138, 255, 0.1);
    background: rgba(5, 6, 15, 0.98);
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    padding: 14px 16px;
    border-radius: 6px;
    transition: all 0.2s;
}

.mobile-nav-link:hover {
    background: rgba(124, 138, 255, 0.1);
    color: #fff;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(124, 138, 255, 0.1);
}

.mobile-nav-actions .btn {
    text-align: center;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-container {
        padding: 12px 20px;
    }

    .nav-links,
    .top-navbar .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* ========================================
   PAGE CONTENT STYLES
   ======================================== */

.page-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    color: #fff;
    padding-top: 80px;
    overflow-x: hidden;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

/* About Hero */
.about-hero {
    text-align: center;
    padding: 60px 0 80px;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 138, 255, 0.15);
    border: 1px solid rgba(124, 138, 255, 0.3);
    color: #5c7cfa;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.page-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.text-gradient {
    background: linear-gradient(135deg, #5c7cfa, #7b93fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.section-title.centered {
    text-align: center;
}

.section-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 16px;
}

.section-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 700px;
}

.section-description.centered {
    text-align: center;
    margin: 0 auto;
}

/* Visual Cards (Stats) */
.section-visual {
    display: flex;
    gap: 20px;
}

.visual-card {
    flex: 1;
    background: rgba(124, 138, 255, 0.06);
    border: 1px solid rgba(124, 138, 255, 0.15);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(124, 138, 255, 0.6), transparent);
}

.visual-card:hover {
    border-color: rgba(124, 138, 255, 0.4);
    box-shadow: 0 0 30px rgba(124, 138, 255, 0.15);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5c7cfa;
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(124, 138, 255, 0.5);
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: rgba(124, 138, 255, 0.04);
    border: 1px solid rgba(124, 138, 255, 0.12);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 138, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.value-card:hover {
    border-color: rgba(124, 138, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(124, 138, 255, 0.15);
}

.value-card:hover::after {
    opacity: 1;
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 138, 255, 0.1);
    border-radius: 50%;
    color: #5c7cfa;
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 138, 255, 0.2);
}

.value-card:hover .value-icon {
    box-shadow: 0 0 30px rgba(124, 138, 255, 0.4);
    border-color: rgba(124, 138, 255, 0.5);
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #fff;
}

.value-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 40px;
    background: rgba(124, 138, 255, 0.04);
    border: 1px solid rgba(124, 138, 255, 0.15);
    border-radius: 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(124, 138, 255, 0.6), transparent);
    animation: shimmer 4s ease-in-out infinite;
    background-size: 200% 100%;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 138, 255, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ========================================
   PRICING STYLES
   ======================================== */

.pricing-section {
    padding: 40px 0 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: rgba(124, 138, 255, 0.04);
    border: 1px solid rgba(124, 138, 255, 0.12);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(124, 138, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.pricing-card:hover {
    border-color: rgba(124, 138, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(124, 138, 255, 0.15);
}

.pricing-card.featured {
    background: rgba(124, 138, 255, 0.08);
    border-color: rgba(124, 138, 255, 0.4);
    transform: scale(1.03);
    animation: neonPulse 4s ease-in-out infinite;
}

.pricing-card.featured::before {
    opacity: 1;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 100%;
}

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

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #5c7cfa, #7b93fb);
    color: #121214;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(124, 138, 255, 0.5);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(124, 138, 255, 0.1);
}

.plan-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #5c7cfa;
}

.plan-price {
    margin-bottom: 8px;
}

.plan-price .price {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.plan-price .period {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.plan-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.plan-features li svg {
    color: #5c7cfa;
    flex-shrink: 0;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: rgba(124, 138, 255, 0.04);
    border: 1px solid rgba(124, 138, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(124, 138, 255, 0.3);
    transform: translateY(-3px);
}

.faq-item h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #fff;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   AI FEATURES PAGE STYLES
   ======================================== */

.ai-features-section {
    padding: 40px 0;
}

.ai-feature-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    padding: 50px;
    background: rgba(124, 138, 255, 0.03);
    border: 1px solid rgba(124, 138, 255, 0.12);
    border-radius: 20px;
    margin-bottom: 30px;
    align-items: start;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ai-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(124, 138, 255, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ai-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 138, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.ai-feature-card:hover {
    border-color: rgba(124, 138, 255, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(124, 138, 255, 0.1);
}

.ai-feature-card:hover::before {
    opacity: 1;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 100%;
}

.ai-feature-card:hover::after {
    opacity: 1;
}

.ai-feature-card.reverse {
    grid-template-columns: 1fr 120px;
}

.ai-feature-card.reverse .feature-icon-large {
    order: 2;
}

.ai-feature-card.reverse::after {
    right: auto;
    left: 0;
}

.ai-feature-card.featured-card {
    background: linear-gradient(135deg, rgba(124, 138, 255, 0.08), rgba(124, 138, 255, 0.03));
    border-color: rgba(124, 138, 255, 0.3);
    animation: borderGlow 4s ease-in-out infinite;
}

.ai-feature-card.featured-card::before {
    opacity: 1;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 100%;
}

.feature-icon-large {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 138, 255, 0.1);
    border-radius: 20px;
    color: #5c7cfa;
    transition: all 0.4s ease;
    border: 1px solid rgba(124, 138, 255, 0.2);
}

.ai-feature-card:hover .feature-icon-large {
    box-shadow: 0 0 40px rgba(124, 138, 255, 0.4);
    border-color: rgba(124, 138, 255, 0.5);
    transform: scale(1.05);
}

.feature-content h2 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.feature-tagline {
    color: #5c7cfa;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.feature-content > p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.feature-highlights li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding-left: 20px;
    position: relative;
}

.feature-highlights li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #5c7cfa;
}

.coming-soon-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    animation: neonPulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.tech-item {
    background: rgba(124, 138, 255, 0.06);
    border: 1px solid rgba(124, 138, 255, 0.12);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 138, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.tech-item:hover {
    border-color: rgba(124, 138, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 138, 255, 0.15);
}

.tech-item:hover::before {
    left: 100%;
}

.tech-name {
    display: block;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.tech-use {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ========================================
   LANDING PAGE ENHANCEMENTS
   ======================================== */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(124, 138, 255, 0.15);
    border: 1px solid rgba(124, 138, 255, 0.3);
    color: #5c7cfa;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite, neonPulse 3s ease-in-out infinite;
}

.hero-description {
    max-width: 550px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 138, 255, 0.15);
    border-radius: 14px;
    border: 1px solid rgba(124, 138, 255, 0.2);
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    box-shadow: 0 0 25px rgba(124, 138, 255, 0.4);
    border-color: rgba(124, 138, 255, 0.5);
    color: #5c7cfa;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 1024px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .ai-feature-card,
    .ai-feature-card.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ai-feature-card.reverse .feature-icon-large {
        order: 0;
    }

    .feature-icon-large {
        margin: 0 auto;
    }

    .feature-highlights {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .section-visual {
        flex-direction: column;
    }

    .cta-section {
        padding: 50px 24px;
    }

    .ai-feature-card {
        padding: 30px 24px;
    }
}
