/* AI1App - Ultra Premium Animated Theme */
/* Professional Design with Advanced Animations */

:root {
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --primary-glow: rgba(124, 58, 237, 0.5);
    --secondary: #06b6d4;
    --secondary-dark: #0891b2;
    --accent: #f59e0b;
    --success: #10b981;
    --bg-dark: #09090b;
    --bg-darker: #030305;
    --bg-card: #18181b;
    --bg-card-hover: #27272a;
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(124, 58, 237, 0.15);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    --gradient-dark: linear-gradient(180deg, #09090b 0%, #18181b 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
}

/* Animated Background Gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 58, 237, 0.2), transparent),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(6, 182, 212, 0.15), transparent),
        radial-gradient(ellipse 50% 30% at 0% 100%, rgba(124, 58, 237, 0.1), transparent);
    pointer-events: none;
    z-index: -1;
    animation: bgShift 15s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 25s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 20s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 28s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 22s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 26s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 24s; }
.particle:nth-child(7) { left: 70%; animation-delay: 0.5s; animation-duration: 21s; }
.particle:nth-child(8) { left: 80%; animation-delay: 2.5s; animation-duration: 27s; }
.particle:nth-child(9) { left: 90%; animation-delay: 4.5s; animation-duration: 23s; }
.particle:nth-child(10) { left: 15%; animation-delay: 1.5s; animation-duration: 29s; }

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(9, 9, 11, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(9, 9, 11, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

/* ===== AI1APP LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

/* Brain Icon - Animated Gradient */
.logo .logo-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #7c3aed, #a78bfa, #06b6d4, #7c3aed);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoIconGradient 4s ease infinite;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.3));
}

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

.logo:hover .logo-icon {
    animation: logoIconGradient 1.5s ease infinite;
    filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.5));
}

/* Logo Text - Shimmer Effect on ALL characters */
.logo .logo-text {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #a78bfa 20%,
        #06b6d4 40%,
        #a78bfa 60%,
        #06b6d4 80%,
        #ffffff 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoTextShimmer 4s linear infinite;
}

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

.logo:hover .logo-text {
    animation: logoTextShimmer 2s linear infinite;
}

.logo img {
    height: 36px;
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

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

.nav a {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 10px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav a:hover::before {
    width: 60%;
}

.nav a.active {
    color: var(--text-primary);
    background: rgba(124, 58, 237, 0.15);
}

.nav a.active::before {
    width: 60%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4); }
    50% { box-shadow: 0 4px 35px rgba(124, 58, 237, 0.6); }
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.5);
    color: white;
    animation: none;
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-background .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(9, 9, 11, 0.85) 0%,
        rgba(124, 58, 237, 0.3) 50%,
        rgba(9, 9, 11, 0.9) 100%
    );
    z-index: 1;
}

/* Page Hero with Video Background */
.page-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.page-hero .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(9, 9, 11, 0.6) 0%,
        rgba(124, 58, 237, 0.3) 50%,
        rgba(9, 9, 11, 0.8) 100%
    );
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(124, 58, 237, 0.3);
    border: 1px solid rgba(124, 58, 237, 0.5);
    border-radius: 50px;
    color: #a78bfa;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease;
    backdrop-filter: blur(10px);
}

.page-hero .hero-badge i {
    color: #06b6d4;
}

.page-hero .page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

.page-hero .page-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    animation: fadeInUp 1s ease;
}

.page-hero .hero-cta {
    margin-top: 30px;
    animation: fadeInUp 1.2s ease;
}

.page-hero .hero-cta .btn-glow-primary {
    padding: 16px 36px;
    font-size: 1.1rem;
}

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

@media (max-width: 768px) {
    .page-hero {
        height: 60vh;
        min-height: 400px;
        margin-top: 70px;
    }
    .page-hero .page-title {
        font-size: 2.2rem;
    }
    .page-hero .page-description {
        font-size: 1rem;
    }
    .page-hero .hero-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 40%);
    animation: heroGlow 10s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1) rotate(0deg);
    }
    33% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1) rotate(2deg);
    }
    66% {
        opacity: 0.9;
        transform: translateX(-50%) scale(1.05) rotate(-2deg);
    }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    pointer-events: none;
}

/* Animated Grid Background */
.hero .grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -3px;
    animation: titleReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, #fff 0%, #a78bfa 40%, #06b6d4 70%, #fff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradient 5s ease infinite;
}

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

.hero .subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 52px;
    animation: fadeInUp 1s ease 0.3s both;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.5s both;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 100px;
    padding-top: 50px;
    border-top: 1px solid var(--border);
    animation: fadeInUp 1s ease 0.7s both;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: var(--border);
}

.stat-item:last-child::after {
    display: none;
}

.stat-item .number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .label {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Animated Counter */
.stat-item .number {
    animation: countUp 2s ease-out 1s both;
}

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

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

/* Sections */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 620px;
    margin: 20px auto 0;
}

/* Cards */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-12px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(124, 58, 237, 0.1);
}

.card:hover::before {
    transform: scaleX(1);
}

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

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 36px;
}

.service-card {
    text-align: center;
    padding: 56px 36px;
}

.service-card .icon {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.35);
    transition: var(--transition);
    position: relative;
}

.service-card .icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 28px;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    filter: blur(15px);
    transition: var(--transition);
}

.service-card:hover .icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.45);
}

.service-card:hover .icon::before {
    opacity: 0.6;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 36px;
}

.product-card {
    overflow: hidden;
    padding: 0;
}

.product-card .image {
    height: 240px;
    background: linear-gradient(135deg, var(--bg-card-hover), var(--bg-darker));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-card .image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.product-card .image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .image::before {
    opacity: 0.15;
}

.product-card:hover .image::after {
    transform: translate(-50%, -50%) scale(1);
}

.product-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .image img {
    transform: scale(1.12);
}

.product-card .image i {
    font-size: 5rem;
    transition: var(--transition);
}

.product-card:hover .image i {
    transform: scale(1.2);
}

.product-card .content {
    padding: 36px;
}

.product-card .status {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.product-card .status.active {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
    animation: statusPulse 2s ease infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.product-card .status.coming_soon {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.product-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.product-card p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.post-card {
    overflow: hidden;
    padding: 0;
}

.post-card .image {
    height: 200px;
    background: var(--bg-card-hover);
    overflow: hidden;
    position: relative;
}

.post-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover .image img {
    transform: scale(1.1);
}

.post-card .content {
    padding: 28px;
}

.post-card .meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.post-card .meta i {
    color: var(--primary-light);
}

.post-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.post-card h3 a {
    color: var(--text-primary);
}

.post-card h3 a:hover {
    color: var(--primary-light);
}

.post-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Why Choose Section / Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.feature-card {
    text-align: center;
    padding: 48px 28px;
}

.feature-card .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.1);
    border: 2px solid rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 1.8rem;
    color: var(--primary-light);
    transition: var(--transition);
    position: relative;
}

.feature-card .icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover .icon {
    color: white;
    border-color: transparent;
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.feature-card:hover .icon::before {
    opacity: 1;
    transform: scale(1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

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

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 100px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: ctaFloat 15s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    animation: ctaFloat 20s ease-in-out infinite reverse;
}

@keyframes ctaFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    max-width: 550px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.cta-section .btn {
    background: white;
    color: var(--primary);
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    padding: 18px 36px;
}

.cta-section .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 100px 0 50px;
    margin-top: 120px;
    border-top: 1px solid var(--border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 56px;
    margin-bottom: 56px;
}

.footer-col h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.footer-col ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateY(-50%);
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 16px;
}

.footer-col ul li a:hover::before {
    width: 10px;
}

.contact-info li {
    display: flex;
    gap: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.contact-info li i {
    color: var(--primary-light);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.social-links a {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 36px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-bottom a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 9999;
    max-width: 420px;
}

.flash {
    padding: 20px 28px;
    border-radius: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    font-weight: 500;
}

@keyframes slideIn {
    from { transform: translateX(150%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.flash-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.flash-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.flash-info {
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: var(--primary-light);
}

/* Page Header */
.page-header {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.3rem;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}

.page-header .breadcrumb {
    margin-bottom: 28px;
    color: var(--text-muted);
    position: relative;
}

.page-header .breadcrumb a {
    color: var(--text-muted);
}

.page-header .breadcrumb a:hover {
    color: var(--primary-light);
}

/* Content Area */
.content-area {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.content-area h2, .content-area h3, .content-area h4 {
    color: var(--text-primary);
    margin: 36px 0 18px;
}

.content-area p {
    margin-bottom: 22px;
}

.content-area ul, .content-area ol {
    margin-bottom: 22px;
    padding-left: 28px;
}

.content-area li {
    margin-bottom: 10px;
}

.content-area a {
    text-decoration: underline;
}

/* Scroll Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
[data-animate]:nth-child(1) { transition-delay: 0s; }
[data-animate]:nth-child(2) { transition-delay: 0.1s; }
[data-animate]:nth-child(3) { transition-delay: 0.2s; }
[data-animate]:nth-child(4) { transition-delay: 0.3s; }
[data-animate]:nth-child(5) { transition-delay: 0.4s; }
[data-animate]:nth-child(6) { transition-delay: 0.5s; }

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    color: var(--text-secondary);
}

.feature-list li i {
    color: var(--success);
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(9, 9, 11, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--border);
        gap: 4px;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 16px 24px;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 160px 0 100px;
    }

    .hero h1 {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .hero .subtitle {
        font-size: 1.15rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .stats-bar {
        flex-direction: column;
        gap: 36px;
    }

    .stat-item::after {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }

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

    .cta-section {
        padding: 70px 30px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary-light); }
.text-secondary { color: var(--text-secondary); }
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

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

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-card-hover);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Selection */
::selection {
    background: rgba(124, 58, 237, 0.4);
    color: white;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Glow Effect on Hover for Interactive Elements */
.glow-hover {
    transition: var(--transition);
}

.glow-hover:hover {
    filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.5));
}

/* Typing Animation */
.typing {
    overflow: hidden;
    border-right: 3px solid var(--primary);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary); }
}

/* ===========================================
   PREMIUM HOMEPAGE STYLES
   =========================================== */

/* Gradient Orbs */
.gradient-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orbFloat 25s ease-in-out infinite;
}

.orb-1 {
    width: 800px;
    height: 800px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4) 0%, rgba(99, 102, 241, 0.2) 100%);
    top: -300px;
    right: -200px;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3) 0%, rgba(14, 165, 233, 0.2) 100%);
    bottom: -200px;
    left: -200px;
    animation-delay: -8s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(168, 85, 247, 0.2) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -16s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(-50px, -30px) scale(1.05); }
}

/* Premium Particles */
.particles-premium {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 20s infinite;
}

.particle-dot:nth-child(odd) {
    background: var(--secondary);
}

.particle-dot:nth-child(1) { left: 5%; animation-delay: 0s; }
.particle-dot:nth-child(2) { left: 10%; animation-delay: 1s; }
.particle-dot:nth-child(3) { left: 15%; animation-delay: 2s; }
.particle-dot:nth-child(4) { left: 20%; animation-delay: 0.5s; }
.particle-dot:nth-child(5) { left: 25%; animation-delay: 1.5s; }
.particle-dot:nth-child(6) { left: 30%; animation-delay: 2.5s; }
.particle-dot:nth-child(7) { left: 35%; animation-delay: 0.3s; }
.particle-dot:nth-child(8) { left: 40%; animation-delay: 1.3s; }
.particle-dot:nth-child(9) { left: 45%; animation-delay: 2.3s; }
.particle-dot:nth-child(10) { left: 50%; animation-delay: 0.7s; }
.particle-dot:nth-child(11) { left: 55%; animation-delay: 1.7s; }
.particle-dot:nth-child(12) { left: 60%; animation-delay: 2.7s; }
.particle-dot:nth-child(13) { left: 65%; animation-delay: 0.2s; }
.particle-dot:nth-child(14) { left: 70%; animation-delay: 1.2s; }
.particle-dot:nth-child(15) { left: 75%; animation-delay: 2.2s; }
.particle-dot:nth-child(16) { left: 80%; animation-delay: 0.8s; }
.particle-dot:nth-child(17) { left: 85%; animation-delay: 1.8s; }
.particle-dot:nth-child(18) { left: 90%; animation-delay: 2.8s; }
.particle-dot:nth-child(19) { left: 95%; animation-delay: 0.4s; }
.particle-dot:nth-child(20) { left: 3%; animation-delay: 1.4s; }

@keyframes particleFloat {
    0% { transform: translateY(100vh); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh); opacity: 0; }
}

/* Hero Premium */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-premium .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-premium .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-premium .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(9, 9, 11, 0.92) 0%,
        rgba(15, 10, 30, 0.88) 50%,
        rgba(9, 9, 11, 0.92) 100%);
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    margin-bottom: 32px;
    font-size: 0.9rem;
    color: var(--primary-light);
    font-weight: 500;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-premium h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.hero-premium h1 .line-1,
.hero-premium h1 .line-3 {
    display: block;
    color: var(--text-primary);
}

.hero-premium h1 .line-2 {
    display: block;
}

.gradient-text-animated {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 25%, #06b6d4 50%, #a78bfa 75%, #7c3aed 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 5s ease infinite;
}

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

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

/* Premium Buttons */
.btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.btn-primary-glow {
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 50%, #06b6d4 100%);
    background-size: 200% 200%;
    color: white;
    animation: btnGradient 4s ease infinite;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4);
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.5);
    color: white;
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: var(--text-primary);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 48px;
    backdrop-filter: blur(10px);
}

.stat-card {
    text-align: center;
    padding: 0 40px;
    position: relative;
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.stat-value {
    display: inline;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    display: inline;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

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

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Trusted Section */
.trusted-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.trusted-header {
    text-align: center;
    margin-bottom: 32px;
}

.trusted-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.trusted-logos {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    gap: 60px;
    animation: scroll-logos 30s linear infinite;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item i {
    font-size: 1.5rem;
    color: var(--primary-light);
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section Headers Premium */
.section-header-premium {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 30px;
}

.section-header-premium h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header-premium p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section Premium */
.services-section {
    padding: 120px 0;
    position: relative;
}

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

.service-card-premium {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card-premium:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-8px);
}

.service-icon-wrapper {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
}

.service-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.1));
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.service-card-premium:hover .service-icon-bg {
    transform: rotate(45deg) scale(1.1);
}

.service-icon-wrapper i {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.8rem;
    color: var(--primary-light);
}

.service-card-premium h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-card-premium p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: var(--secondary);
}

.service-glow {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card-premium:hover .service-glow {
    opacity: 1;
}

/* Products Section Premium */
.products-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(24, 24, 27, 0.5) 0%, transparent 50%, rgba(24, 24, 27, 0.5) 100%);
    pointer-events: none;
}

.section-bg-gradient.reverse {
    background: linear-gradient(180deg, transparent 0%, rgba(24, 24, 27, 0.5) 50%, transparent 100%);
}

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

.product-card-premium {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

.product-visual {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-mockup img {
    max-width: 80%;
    max-height: 160px;
    object-fit: contain;
    border-radius: 12px;
}

.product-icon-large {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.product-icon-large.purple {
    background: rgba(124, 58, 237, 0.2);
    color: #a78bfa;
}

.product-icon-large.cyan {
    background: rgba(6, 182, 212, 0.2);
    color: #22d3ee;
}

.product-icon-large.pink {
    background: rgba(236, 72, 153, 0.2);
    color: #f472b6;
}

.product-status-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-status-badge.active {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.product-status-badge.coming_soon {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s infinite;
}

.product-info {
    padding: 28px;
}

.product-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.product-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-metrics {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.metric {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.metric i {
    color: var(--primary-light);
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    color: var(--primary-light);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-cta:hover {
    background: rgba(124, 58, 237, 0.2);
    transform: translateX(4px);
    color: var(--primary-light);
}

.product-cta.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Features Section Premium */
.features-section {
    padding: 120px 0;
    position: relative;
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-content .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.features-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.features-content > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item-premium {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-item-premium:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(8px);
}

.feature-icon-sm {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
}

.feature-icon-sm.purple { background: rgba(124, 58, 237, 0.15); color: #a78bfa; }
.feature-icon-sm.cyan { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }
.feature-icon-sm.green { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.feature-icon-sm.pink { background: rgba(236, 72, 153, 0.15); color: #f472b6; }

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

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

/* Code Window Visual */
.features-visual {
    position: relative;
}

.visual-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px;
    overflow: hidden;
}

.code-window {
    background: #0d0d12;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
}

.window-header {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca40; }

.code-content {
    padding: 24px;
    font-family: 'Fira Code', 'Monaco', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.code-content pre {
    margin: 0;
    white-space: pre-wrap;
}

.code-keyword { color: #c678dd; }
.code-var { color: #e06c75; }
.code-func { color: #61afef; }
.code-prop { color: #e5c07b; }
.code-string { color: #98c379; }
.code-bool { color: #d19a66; }
.code-comment { color: #5c6370; font-style: italic; }

.visual-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

/* Testimonials Section Premium */
.testimonials-section {
    padding: 120px 0;
    position: relative;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.3);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-color: rgba(124, 58, 237, 0.3);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--primary-light);
    opacity: 0.5;
}

.testimonial-card > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

/* Blog Section Premium */
.blog-section {
    padding: 120px 0;
}

.blog-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 48px;
}

.blog-card-premium {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.3);
}

.blog-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-premium:hover .blog-image img {
    transform: scale(1.05);
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.3;
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-premium .blog-content {
    padding: 28px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-meta i {
    color: var(--primary-light);
}

.blog-card-premium .blog-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-card-premium .blog-content h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-premium .blog-content h3 a:hover {
    color: var(--primary-light);
}

.blog-card-premium .blog-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-link:hover {
    gap: 12px;
    color: var(--secondary);
}

.section-cta {
    text-align: center;
}

/* CTA Section Premium */
.cta-section-premium {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(124, 58, 237, 0.3);
    top: -200px;
    left: -100px;
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(6, 182, 212, 0.2);
    bottom: -150px;
    right: -100px;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    backdrop-filter: blur(10px);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Newsletter Section Premium */
.newsletter-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
}

.newsletter-content {
    flex: 1;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.newsletter-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.newsletter-content p {
    color: var(--text-secondary);
}

.newsletter-form {
    flex: 1;
    max-width: 480px;
}

.input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.input-group input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.input-group input::placeholder {
    color: var(--text-muted);
}

.newsletter-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.newsletter-note i {
    color: #10b981;
}

/* AOS Animation Classes */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Responsive Premium */
@media (max-width: 1200px) {
    .hero-premium h1 {
        font-size: 3.5rem;
    }

    .services-grid-premium,
    .products-showcase,
    .testimonials-grid,
    .blog-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-premium h1 {
        font-size: 2.8rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .stat-card {
        flex: 1 1 45%;
        padding: 16px;
    }

    .features-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .features-visual {
        order: -1;
    }

    .newsletter-card {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .hero-premium {
        padding: 100px 0 60px;
    }

    .hero-premium h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-premium {
        width: 100%;
        max-width: 300px;
    }

    .section-header-premium h2 {
        font-size: 2.2rem;
    }

    .services-grid-premium,
    .products-showcase,
    .testimonials-grid,
    .blog-grid-premium {
        grid-template-columns: 1fr;
    }

    .cta-content {
        padding: 48px 24px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .input-group {
        flex-direction: column;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ============================================
   ULTRA PREMIUM HOMEPAGE ENHANCEMENTS
   ============================================ */

/* Animated Gradient Orbs */
.gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
    top: 50%;
    right: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    bottom: -100px;
    left: 30%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.9); }
    75% { transform: translate(-50px, -20px) scale(1.05); }
}

/* Floating Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(167, 139, 250, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.particle-dot:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.particle-dot:nth-child(2) { left: 20%; animation-delay: -2s; animation-duration: 18s; }
.particle-dot:nth-child(3) { left: 30%; animation-delay: -4s; animation-duration: 22s; }
.particle-dot:nth-child(4) { left: 40%; animation-delay: -6s; animation-duration: 16s; }
.particle-dot:nth-child(5) { left: 50%; animation-delay: -8s; animation-duration: 24s; }
.particle-dot:nth-child(6) { left: 60%; animation-delay: -10s; animation-duration: 19s; }
.particle-dot:nth-child(7) { left: 70%; animation-delay: -12s; animation-duration: 21s; }
.particle-dot:nth-child(8) { left: 80%; animation-delay: -14s; animation-duration: 17s; }
.particle-dot:nth-child(9) { left: 90%; animation-delay: -16s; animation-duration: 23s; }

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Premium Hero Enhancements */
.hero-premium-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary-light);
    margin-bottom: 24px;
    animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge i {
    color: var(--accent);
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(124, 58, 237, 0.2); }
}

.hero-title-xl {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.text-shimmer {
    background: linear-gradient(
        90deg,
        var(--text-primary) 0%,
        var(--primary-light) 25%,
        var(--secondary) 50%,
        var(--primary-light) 75%,
        var(--text-primary) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

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

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Glowing Buttons */
.btn-glow {
    position: relative;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-glow-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.btn-glow-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
}

.btn-glow-primary::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: left 0.5s;
}

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

.btn-glow-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-glow-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Stats Counter Premium */
.stats-premium {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat-premium {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Trusted By Section */
.trusted-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.trusted-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.trusted-logos:hover {
    opacity: 1;
}

.trusted-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.trusted-logo i {
    font-size: 2rem;
    color: var(--primary-light);
}

/* Scrolling Logos Animation */
.logos-scroll-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.logos-scroll {
    display: flex;
    gap: 80px;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}

.logos-scroll:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Premium Service Cards */
.service-card-premium {
    position: relative;
    background: rgba(24, 24, 27, 0.6);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-premium:hover::before {
    transform: scaleX(1);
}

.service-card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(124, 58, 237, 0.1);
}

.service-icon-premium {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    margin-bottom: 24px;
    font-size: 1.75rem;
    color: var(--primary-light);
    transition: all 0.3s ease;
}

.service-card-premium:hover .service-icon-premium {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.service-card-premium h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-card-premium p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--secondary);
    gap: 12px;
}

/* Product Showcase Premium */
.product-card-premium {
    position: relative;
    background: linear-gradient(145deg, rgba(24, 24, 27, 0.8) 0%, rgba(24, 24, 27, 0.4) 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(124, 58, 237, 0.15);
}

.product-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-premium:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 9, 11, 1) 0%, transparent 100%);
}

.product-status {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-status.live {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.product-status.coming-soon {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.product-content-premium {
    padding: 30px;
}

.product-content-premium h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-content-premium p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Why Choose Us - Feature Grid */
.features-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-premium-card {
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-premium-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.feature-premium-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-premium-card:hover::after {
    opacity: 0.05;
}

.feature-premium-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon-premium {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 16px;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.feature-premium-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-premium-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Premium CTA Section */
.cta-premium {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-premium-card {
    position: relative;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 32px;
    padding: 80px;
    text-align: center;
    overflow: hidden;
}

.cta-premium-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(124, 58, 237, 0.1), transparent 30%);
    animation: rotateCTA 20s linear infinite;
}

@keyframes rotateCTA {
    100% { transform: rotate(360deg); }
}

.cta-premium-content {
    position: relative;
    z-index: 1;
}

.cta-premium-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-premium-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Newsletter Premium */
.newsletter-premium {
    background: rgba(24, 24, 27, 0.6);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-content p {
    color: var(--text-secondary);
}

.newsletter-form-premium {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form-premium input {
    flex: 1;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form-premium input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.newsletter-form-premium button {
    white-space: nowrap;
}

/* Section Headers Premium */
.section-header-premium {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-header-premium h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header-premium p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Premium */
@media (max-width: 1024px) {
    .features-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-premium {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .newsletter-premium {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form-premium {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title-xl {
        font-size: 2.25rem;
    }

    .features-premium-grid {
        grid-template-columns: 1fr;
    }

    .cta-premium-card {
        padding: 40px 24px;
    }

    .cta-premium-content h2 {
        font-size: 2rem;
    }

    .newsletter-form-premium {
        flex-direction: column;
    }

    .trusted-logos {
        gap: 30px;
    }
}

/* ============================================
   Products 4-Grid with Video Support
   ============================================ */

.products-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card-video {
    position: relative;
    background: linear-gradient(145deg, rgba(24, 24, 27, 0.9) 0%, rgba(24, 24, 27, 0.6) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-video:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(124, 58, 237, 0.15);
}

.product-media-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: rgba(24, 24, 27, 0.8);
}

.product-media-wrapper .product-image,
.product-media-wrapper .product-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-video:hover .product-image,
.product-card-video:hover .product-video {
    transform: scale(1.1);
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-container .video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-video:hover .video-thumbnail {
    transform: scale(1.1);
}

.video-container .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(124, 58, 237, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.video-container:hover .play-button {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(124, 58, 237, 0.6);
}

.video-container .play-button i {
    margin-left: 3px;
}

/* YouTube iframe when playing */
.video-container.playing {
    height: 100%;
}

.video-container.playing iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-container.playing .video-thumbnail,
.video-container.playing .play-button {
    display: none;
}

/* Product Placeholder */
.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.2));
}

.product-placeholder i {
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.7;
}

/* Product Info */
.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.product-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    background: var(--gradient-primary);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.product-btn.disabled {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    cursor: default;
}

.product-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Responsive 4-Grid */
@media (max-width: 1200px) {
    .products-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-media-wrapper {
        height: 200px;
    }

    .product-info h3 {
        font-size: 1.2rem;
    }
}

/* ========================================
   CHAT ADMIN STYLES
   ======================================== */

.chat-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    padding: 8px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    flex-wrap: wrap;
}

.chat-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.chat-tab:hover {
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary-light);
}

.chat-tab.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.tab-badge {
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 20px;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-card);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.filter-tab:hover {
    border-color: var(--primary);
}

.filter-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.active { background: #10b981; }
.status-dot.waiting { background: #f59e0b; }
.status-dot.closed { background: #6b7280; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
}

.stat-active .stat-icon { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.stat-waiting .stat-icon { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.stat-today .stat-icon { background: rgba(124, 58, 237, 0.15); color: var(--primary-light); }

.stat-value {
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.api-docs .endpoint {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 16px;
}

.endpoint-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.method {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.method.get { background: #3b82f6; color: white; }
.method.post { background: #10b981; color: white; }
.method.put { background: #f59e0b; color: black; }
.method.delete { background: #ef4444; color: white; }

.path {
    font-family: monospace;
    font-size: 0.9rem;
}

.tag {
    padding: 2px 8px;
    background: rgba(124, 58, 237, 0.2);
    color: var(--primary-light);
    border-radius: 4px;
    font-size: 0.75rem;
}

.tag.auth {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.api-docs pre {
    background: #1e1e2e;
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 12px 0;
}

.api-docs code {
    font-family: monospace;
    font-size: 0.85rem;
    color: #a6e3a1;
}

/* Data Table Styles */
.table-responsive {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.data-table th {
    background: rgba(0, 0, 0, 0.2);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table td {
    font-size: 0.9rem;
}

.data-table tbody tr:hover {
    background: rgba(124, 58, 237, 0.05);
}

.data-table code {
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #a6e3a1;
}

.data-table a {
    color: var(--primary-light);
    text-decoration: none;
}

.data-table a:hover {
    text-decoration: underline;
}

.action-buttons {
    display: flex;
    gap: 8px;
}

.btn-sm {
    padding: 6px 10px;
    font-size: 0.8rem;
}

.btn-warning {
    background: #f59e0b;
    color: black;
}

.btn-danger {
    background: #ef4444;
    color: white;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-success {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.badge-danger {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Card Header/Body for Chat */
.card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-body {
    padding: 20px;
}

.card-body pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
}

.card-body code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #a6e3a1;
}

.card-body ul {
    margin-left: 20px;
}

.card-body h4 {
    margin-top: 20px;
    margin-bottom: 12px;
}

/* ============================================
   SCROLL INDICATOR - Clean Mouse Design
   ============================================ */

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

/* Mouse scroll indicator - Premium version */
.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    margin-top: 14px;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.15);
    display: block;
    transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-mouse {
    border-color: var(--primary-light);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--secondary) 100%);
    border-radius: 3px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheelMove 1.8s ease-in-out infinite;
}

@keyframes scrollWheelMove {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.3;
    }
}

/* Label below */
.scroll-indicator .scroll-label {
    position: relative;
    z-index: 2;
    margin-top: 14px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-label {
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 30px;
    }

    .scroll-arrow {
        padding: 14px 20px 18px;
    }

    .scroll-arrow i:first-child {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .scroll-indicator .scroll-ring {
        width: 36px;
        height: 36px;
    }

    .scroll-mouse {
        width: 22px;
        height: 36px;
        margin-top: 12px;
    }

    .scroll-indicator .scroll-label {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }
}

/* Hide on very small screens */
@media (max-width: 480px) {
    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-arrow {
        padding: 12px 18px 14px;
    }

    .scroll-arrow i:first-child {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .scroll-indicator .scroll-ring {
        width: 32px;
        height: 32px;
    }

    .scroll-mouse {
        display: none !important;
    }

    .scroll-indicator .scroll-label {
        margin-top: 8px;
        font-size: 0.55rem;
    }
}

/* Page hero specific positioning */
.page-hero {
    position: relative;
}

.page-hero .scroll-indicator {
    bottom: 30px;
}
