/* Modern CSS Variables for Dynamic Theming */
:root {
    --primary-color: #6366f1;
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --background: #ffffff;
    --background-secondary: #f9fafb;
    --background-dark: #111827;
    --border-color: #e5e7eb;
    --border-radius: 12px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-text: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.brand-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.brand-name-logo {
    height: 35px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.brand-name-logo:hover {
    transform: scale(1.05);
}
.brand-icon {
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

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

.upgrade-link {
    background: var(--primary-gradient);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.upgrade-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    overflow: hidden;
}

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

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.floating-element {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    animation: float 20s infinite linear;
    opacity: 0.9;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 70%;
    right: 10%;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    top: 30%;
    right: 30%;
    animation-delay: -10s;
}

.floating-element:nth-child(4) {
    bottom: 20%;
    left: 20%;
    animation-delay: -15s;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
    min-height: 40vh;
    padding: 1rem 1rem;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 100%;
}

/* Hero Video Section */
.hero-video-section {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-audio {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
}
.hero-audio-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-top: 1rem;
    width: 100%;
}
.hero-spacy-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
}
.audio-container{
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}
.audio-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.audio-player {
    width: 100%;
    margin-top: 0.75rem;
    padding : 0 4rem 0 4rem;
    align-items: center;
    overflow: hidden;

}
.video-container {
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.video-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.video-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-header p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.video-player {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5rem;
}

.hero-embedded-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-embedded-video:hover {
    transform: scale(1.02);
}

.video-overlay-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.8);
    opacity: 0;
    pointer-events: none;
}

.video-player:hover .video-overlay-play {
    opacity: 1;
    pointer-events: all;
}

.video-overlay-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(99, 102, 241, 1);
}

.video-overlay-play i {
    color: white;
    font-size: 1.5rem;
    margin-left: 3px;
}

.video-features {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 1rem;
}

.video-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
}

.video-feature:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.video-feature i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.video-feature span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

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

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(240, 249, 255, 0.95) 0%,
        rgba(224, 242, 254, 0.95) 100%
    );
    backdrop-filter: blur(5px);
    z-index: 2;
}

/* Network Animation */
.network-animation-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0.1;
    pointer-events: none;
    mix-blend-mode: soft-light;
}

.network-animation {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
}

/* Hero Logo Section */
.hero-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 11;
}

.hero-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    animation: heroLogoFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(99, 102, 241, 0.3));
    position: relative;
    z-index: 12;
}

@keyframes heroLogoFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.98);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 11;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 11;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.7;
    position: relative;
    z-index: 11;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 11;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.98);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: var(--text-primary);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: transform 0.3s ease;
    backdrop-filter: blur(20px);
}

.feature-pill:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.feature-pill i {
    color: var(--primary-color);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 11;
}

.install-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.install-command {
    display: flex;
    align-items: center;
    background: var(--background-dark);
    color: #10b981;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    min-width: 300px;
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.copy-btn {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    margin-left: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 11;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Revolutionary Auto-Intelligence Section */
.revolutionary-auto-intelligence {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.revolutionary-auto-intelligence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.revolutionary-auto-intelligence .container {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
    }
    50% {
        box-shadow: 0 4px 25px rgba(99, 102, 241, 0.2);
    }
}

.section-badge i {
    font-size: 1rem;
    animation: robotPulse 2s ease-in-out infinite;
}

@keyframes robotPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.auto-intelligence-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0 4rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.intro-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

/* Auto-Intelligence Cards */
.auto-intelligence-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 4rem 0;
}

.intelligence-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: cardSlideIn 0.6s ease forwards;
}

.intelligence-card[data-animation-delay="0"] {
    animation-delay: 0.2s;
}

.intelligence-card[data-animation-delay="200"] {
    animation-delay: 0.4s;
}

.intelligence-card[data-animation-delay="400"] {
    animation-delay: 0.6s;
}

.intelligence-card[data-animation-delay="600"] {
    animation-delay: 0.8s;
}

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

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

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

.intelligence-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

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

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

.card-icon i {
    font-size: 1.75rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.card-icon:hover i {
    transform: scale(1.1);
}

.card-icon.auto-dimension {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.card-icon.auto-relationships {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.card-icon.auto-discovery {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.card-icon.auto-optimization {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.card-badge {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(10px);
}

.card-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-highlights {
    margin: 1.5rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
}

.highlight-item i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

.code-demo {
    margin-top: 2rem;
    background: #0f0f0f;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.demo-header {
    background: #1a1a1a;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #333;
}

.demo-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #e6e6e6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.code-demo .code-block {
    margin: 0;
    border: none;
    border-radius: 0;
    background: #0f0f0f;
}

.code-demo pre {
    background: #0f0f0f !important;
    margin: 0 !important;
    padding: 1.5rem !important;
    overflow-x: auto;
}

.code-demo code {
    background: #0f0f0f !important;
    color: #e6e6e6 !important;
    font-family: 'Monaco', 'Menlo', 'Consolas', 'Courier New', monospace !important;
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Auto-Intelligence Conclusion */
.auto-intelligence-conclusion {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.conclusion-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.conclusion-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.conclusion-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.conclusion-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.conclusion-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.conclusion-stat .stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.conclusion-stat .stat-description {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

/* Revolutionary Features */
.revolutionary-features {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-code {
    background: var(--background-dark);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-top: 1rem;
}

.feature-code code {
    color: #10b981;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    white-space: pre-wrap;
}

/* Why RudraDB Section */
.why-rudradb {
    padding: 6rem 0;
    background: var(--background-secondary);
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
}

.comparison-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.card-header {
    padding: 1.5rem;
    display: flex;
    justify-content: between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.card-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-badge.limited {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.card-badge.revolutionary {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.card-content {
    padding: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.text-red {
    color: #dc2626;
}

.text-green {
    color: #059669;
}

.traditional {
    border-left: 4px solid #dc2626;
}

.rudradb {
    border-left: 4px solid #059669;
}

.vs-separator {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vs-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
}

/* Relationship Types */
.relationship-types {
    margin-top: 4rem;
    text-align: center;
}

.relationship-types h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.type-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.type-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.type-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.type-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.type-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Getting Started Section */
.getting-started {
    padding: 6rem 0;
    background: white;
}

.getting-started-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    gap: 1.5rem;
    background: var(--background-secondary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

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

.code-block {
    background: var(--background-dark);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.code-block code {
    color: #10b981;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: block;
    max-width: 100%;
}

.code-block pre {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

.code-block .copy-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

/* Framework Integrations */
.framework-integrations {
    margin-top: 4rem;
    text-align: center;
}

.framework-integrations h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.frameworks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.framework-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.framework-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.framework-logo {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.framework-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.framework-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Demo Section */
.demo-section {
    padding: 6rem 0;
    background: var(--background-secondary);
}

.demo-container {
    max-width: 1000px;
    margin: 0 auto;
}

.demo-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.demo-side {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.demo-side h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-primary);
}

.traditional-demo {
    border-left: 4px solid #f59e0b;
}

.rudradb-demo {
    border-left: 4px solid #10b981;
}

.search-visualization {
    background: var(--background-secondary);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.search-query {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    padding: 0.5rem;
    background: white;
    border-radius: 8px;
    text-align: center;
}

.search-results {
    margin: 1rem 0;
}

.result-item {
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--border-color);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.result-item.direct {
    border-left-color: #3b82f6;
}

.result-item.relationship {
    border-left-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
    position: relative;
}

.result-item.relationship::after {
    content: attr(data-hop) '-hop';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 600;
}

.result-count {
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.5rem;
    background: white;
    border-radius: 8px;
}

.result-count.enhanced {
    color: #10b981;
}

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

.insight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.insight i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.insight p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.use-case-card.pharmacy::before {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.use-case-card.healthcare::before {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.use-case-card.pharmacy:hover {
    box-shadow: 0 20px 25px -5px rgba(236, 72, 153, 0.1), 0 10px 10px -5px rgba(236, 72, 153, 0.04);
}

.use-case-card.healthcare:hover {
    box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.1), 0 10px 10px -5px rgba(6, 182, 212, 0.04);
}

/* Use Cases */
.use-cases {
    padding: 6rem 0;
    background: white;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.use-case-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.use-case-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.use-case-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.use-case-features span {
    background: var(--background-secondary);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Community Section */
.community {
    padding: 6rem 0;
    background: var(--background-secondary);
    text-align: center;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.community-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.community-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
    box-shadow: var(--shadow-md);
}

.community-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.community-btn.github {
    background: #24292e;
}

.community-btn.linkedin{
    background: #0A66C2;
}
.community-btn.discord {
    background: #5865f2;
}

.community-btn.docs {
    background: var(--primary-color);
}

.community-btn.examples {
    background: var(--secondary-color);
}

/* Upgrade Section */
.upgrade-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
}

.upgrade-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.upgrade-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.upgrade-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.7;
}

.upgrade-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
}

.upgrade-tier {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.upgrade-tier h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tier-features {
    /* Add spacing between features */
    overflow: hidden;
}
.tier-features .feature {
    margin-bottom: 0.75rem;
}
.tier-features .feature:last-child {
    margin-bottom: 0;
}

.tier-features .feature {
    display: block;
    padding: 0.5rem 0;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-features .feature:last-child {
    border-bottom: none;
}

.upgrade-arrow {
    font-size: 2rem;
    font-weight: 800;
    opacity: 0.7;
}

.upgrade-code {
    text-align: left;
    margin: 3rem 0;
}

.upgrade-code h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.upgrade-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.libutton { display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7px;
    text-align: center;
    outline:none;
    text-decoration: none !important;
    color: #ffffff !important;
    width: 200px;
    height: 32px;
    border-radius: 16px;
    background-color: #0A66C2;
    font-family: "SF Pro Text", Helvetica, sans-serif;
}
.upgrade-btn {
    background: var(--primary-gradient);
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    grid-column: span 1;
}

.footer-brand .brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 28px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.footer-brand .brand i {
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    opacity: 0.7;
    font-size: 0.875rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .brand-logo {
        height: 28px;
    }
    
    .hero-logo {
        height: 60px;
    }
    
    .hero-video {
        opacity: 0.03;
    }
    
    .network-animation-container {
        opacity: 0.08;
    }
    
    /* Hero Grid Mobile Layout */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero-video-section {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .video-container {
        max-width: 100%;
        padding: 1rem;
    }
    
    .video-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .video-feature {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

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

    .hero-actions {
        flex-direction: column;
        gap: 1.5rem;
    }

    .install-section {
        width: 100%;
    }

    .install-command {
        width: 100%;
        min-width: unset;
        font-size: 1rem;
    }

    .comparison-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .vs-separator {
        display: none;
    }

    .demo-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .upgrade-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .upgrade-arrow {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .container {
        padding: 0 15px;
    }

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

    .section-header p {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .brand-logo {
        height: 24px;
    }
    
    .hero-logo {
        height: 50px;
    }
    
    .footer-logo {
        height: 24px;
    }
    
    .hero-video {
        opacity: 0.02;
    }
    
    .network-animation-container {
        display: none;
    }
    
    /* Mobile Hero Grid */
    .hero-grid {
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .video-container {
        padding: 0.75rem;
    }
    
    .video-header h3 {
        font-size: 1.25rem;
    }
    
    .video-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .video-feature {
        padding: 0.5rem;
    }
    
    .video-feature span {
        font-size: 0.7rem;
    }

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

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

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .features-grid,
    .use-cases-grid,
    .frameworks-grid,
    .types-grid {
        grid-template-columns: 1fr;
    }

    .getting-started-steps {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        text-align: center;
        overflow: hidden;
    }
    
    /* Code Block Styling */
        .code-block {
            background: #0f0f0f !important;
            border: 1px solid #333 !important;
            border-radius: 8px !important;
        }
        
        .example-code {
            background: #0f0f0f !important;
            border: 1px solid #333 !important;
            border-radius: 8px !important;
        }
        
        .code-block pre {
            background: #0f0f0f !important;
            margin: 0 !important;
        }
        
        .code-block code {
            background: #0f0f0f !important;
            color: #e6e6e6 !important;
        }
        
        .example-code pre {
            background: #0f0f0f !important;
            margin: 0 !important;
        }
        
        .example-code pre code {
            background: #0f0f0f !important;
            color: #e6e6e6 !important;
        }
        
        /* Prism.js overrides for darker theme */
        pre[class*="language-"] {
            background: #0f0f0f !important;
        }
        
        code[class*="language-"] {
            background: #0f0f0f !important;
            color: #e6e6e6 !important;
        }
        
        /* Install command styling */
        #install-step {
            background: #0f0f0f !important;
            color: #e6e6e6 !important;
            padding: 12px 16px !important;
            border-radius: 6px !important;
            border: 1px solid #333 !important;
        }
        

    .community-actions {
        flex-direction: column;
        align-items: center;
    }

    .community-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .upgrade-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }

/* Professional Code Block Styling - Dark Theme with Line Numbers */
.code-block, .example-code, .code-example, .feature-code {
    background: #0f0f0f !important;
    border: 0px solid #333 !important;
    border-radius: 8px !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 1rem 1rem !important;
    font-family: 'Monaco', 'Menlo', 'Consolas', 'Courier New', monospace !important;
}

.code-block pre, .example-code pre, .code-example pre, .feature-code pre {
    background: #0f0f0f !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    counter-reset: line-number !important;
    line-height: 1.5 !important;
}

.code-block code, .example-code code, .code-example code, .feature-code code {
    background: #0f0f0f !important;
    color: #e6e6e6 !important;
    display: block !important;
    padding: 1rem 1rem 1rem 3rem !important;
    white-space: pre !important;
    overflow-x: auto !important;
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
    position: relative !important;
}

/* Line Numbers */
.code-block code::before, .example-code code::before, .code-example code::before, .feature-code code::before {
    content: counter(line-number) !important;
    counter-increment: line-number !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 2.5rem !important;
    padding: 1rem 0.5rem !important;
    color: #6b7280 !important;
    background: #1a1a1a !important;
    border-right: 1px solid #333 !important;
    font-size: 0.75rem !important;
    text-align: right !important;
    user-select: none !important;
    line-height: 1.5 !important;
    white-space: pre !important;
}

/* Multi-line code blocks */
.code-block pre code, .example-code pre code, .code-example pre code, .feature-code pre code {
    counter-reset: line-number !important;
    display: block !important;
}

.code-block pre code::before, .example-code pre code::before, .code-example pre code::before, .feature-code pre code::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 2.5rem !important;
    background: #1a1a1a !important;
    border-right: 1px solid #333 !important;
    z-index: 1 !important;
}

/* Line numbering for multi-line */
.code-with-lines {
    background: #0f0f0f !important;
    border: 1px solid #333 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    position: relative !important;
}

.code-with-lines .line-numbers {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 2.5rem !important;
    background: #1a1a1a !important;
    border-right: 1px solid #333 !important;
    padding: 1rem 0.5rem !important;
    color: #6b7280 !important;
    font-size: 0.75rem !important;
    text-align: right !important;
    line-height: 1.5 !important;
    user-select: none !important;
    z-index: 2 !important;
    counter-reset: line-number !important;
    white-space: pre !important;
}

.code-with-lines .line-numbers span {
    display: block !important;
    counter-increment: line-number !important;
}

.code-with-lines .line-numbers span::before {
    content: counter(line-number) !important;
}

.code-with-lines pre {
    background: #0f0f0f !important;
    margin: 0 !important;
    padding: 1rem 1rem 1rem 3rem !important;
    overflow-x: auto !important;
    color: #e6e6e6 !important;
    line-height: 1.5 !important;
    position: relative !important;
    z-index: 1 !important;
}

.code-with-lines code {
    background: transparent !important;
    color: #e6e6e6 !important;
    padding: 0 !important;
    font-family: 'Monaco', 'Menlo', 'Consolas', 'Courier New', monospace !important;
    font-size: 0.875rem !important;
}

/* Copy Button Styling */
.copy-btn {
    position: absolute !important;
    top: 0.75rem !important;
    right: 0.75rem !important;
    background: rgba(107, 114, 128, 0.1) !important;
    border: 1px solid #333 !important;
    color: #9ca3af !important;
    padding: 0.5rem !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-size: 0.875rem !important;
    z-index: 10 !important;
    backdrop-filter: blur(5px) !important;
}

.copy-btn:hover {
    background: rgba(107, 114, 128, 0.2) !important;
    color: #e6e6e6 !important;
    border-color: #555 !important;
}

.copy-btn:active {
    transform: scale(0.95) !important;
}

.copy-btn.copied {
    background: rgba(16, 185, 129, 0.1) !important;
    color: #10b981 !important;
    border-color: #10b981 !important;
}

/* Syntax Highlighting */
.token.comment {
    color: #6b7280 !important;
    font-style: italic !important;
}

.token.keyword {
    color: #3b82f6 !important;
    font-weight: 600 !important;
}

.token.string {
    color: #10b981 !important;
}

.token.number {
    color: #f59e0b !important;
}

.token.function {
    color: #8b5cf6 !important;
}

.token.class-name {
    color: #06b6d4 !important;
}

.token.operator {
    color: #e6e6e6 !important;
}

.token.punctuation {
    color: #9ca3af !important;
}

.token.variable {
    color: #ec4899 !important;
}

.token.builtin {
    color: #f97316 !important;
}

.token.boolean {
    color: #3b82f6 !important;
}

.token.attr-name {
    color: #06b6d4 !important;
}

.token.attr-value {
    color: #10b981 !important;
}

.token.tag {
    color: #3b82f6 !important;
}

.token.property {
    color: #06b6d4 !important;
}

.token.method {
    color: #8b5cf6 !important;
}

/* Prism.js Dark Theme Override */
pre[class*="language-"] {
    background: #0f0f0f !important;
    color: #e6e6e6 !important;
    border: 1px solid #333 !important;
    border-radius: 8px !important;
    margin: 1rem 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: relative !important;
}

code[class*="language-"] {
    background: #0f0f0f !important;
    color: #e6e6e6 !important;
    font-family: 'Monaco', 'Menlo', 'Consolas', 'Courier New', monospace !important;
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
    padding: 1rem 1rem 1rem 3rem !important;
    position: relative !important;
    display: block !important;
    overflow-x: auto !important;
}

/* Install command specific styling */
.install-command {
    background: #0f0f0f !important;
    border: 1px solid #333 !important;
    border-radius: 8px !important;
    padding: 1rem 1.5rem !important;
    font-family: 'Monaco', 'Menlo', 'Consolas', 'Courier New', monospace !important;
    font-size: 1.1rem !important;
    color: #10b981 !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-width: 300px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.install-command code {
    background: transparent !important;
    color: #10b981 !important;
    padding: 0 !important;
    font-size: inherit !important;
}

/* Code title styling */
.code-title {
    background: #1a1a1a !important;
    color: #e6e6e6 !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    border-bottom: 1px solid #333 !important;
    margin: 0 !important;
    border-radius: 8px 8px 0 0 !important;
}

.code-block-with-title {
    background: #0f0f0f !important;
    border: 1px solid #333 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    margin: 1rem 0 !important;
    position: relative !important;
}

.code-block-with-title pre {
    margin: 0 !important;
    border-radius: 0 !important;
    border: none !important;
}

/* Documentation specific code styling */
.docs-content .code-example {
    background: #0f0f0f !important;
    border: 1px solid #333 !important;
    border-radius: 8px !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 1.5rem 0 !important;
}

.docs-content .example-title {
    background: #1a1a1a !important;
    color: #e6e6e6 !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    border-bottom: 1px solid #333 !important;
    margin: 0 !important;
}

.docs-content .code-example pre {
    background: #0f0f0f !important;
    margin: 0 !important;
    padding: 1rem 1rem 1rem 3rem !important;
    overflow-x: auto !important;
    position: relative !important;
}

.docs-content .code-example code {
    background: #0f0f0f !important;
    color: #e6e6e6 !important;
    font-family: 'Monaco', 'Menlo', 'Consolas', 'Courier New', monospace !important;
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
}

/* Examples page specific styling */
.example-code {
    background: #0f0f0f !important;
    border: 1px solid #333 !important;
    border-radius: 8px !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 1rem 0 !important;
}

.example-code pre {
    background: #0f0f0f !important;
    margin: 0 !important;
    padding: 1rem 1rem 1rem 3rem !important;
    overflow-x: auto !important;
    position: relative !important;
}

.example-code code {
    background: #0f0f0f !important;
    color: #e6e6e6 !important;
    font-family: 'Monaco', 'Menlo', 'Consolas', 'Courier New', monospace !important;
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
}

/* Responsive code blocks */
@media (max-width: 768px) {
    .code-block code, .example-code code, .code-example code, .feature-code code {
        font-size: 0.8rem !important;
        padding: 1rem 1rem 1rem 2.5rem !important;
    }
    
    .code-block code::before, .example-code code::before, .code-example code::before, .feature-code code::before {
        width: 2rem !important;
        font-size: 0.7rem !important;
    }
    
    .install-command {
        min-width: unset !important;
        font-size: 1rem !important;
        padding: 1rem !important;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

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

/* Dark scrollbar for code blocks */
.code-block::-webkit-scrollbar,
.example-code::-webkit-scrollbar,
.code-example::-webkit-scrollbar,
.feature-code::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.code-block::-webkit-scrollbar-track,
.example-code::-webkit-scrollbar-track,
.code-example::-webkit-scrollbar-track,
.feature-code::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.code-block::-webkit-scrollbar-thumb,
.example-code::-webkit-scrollbar-thumb,
.code-example::-webkit-scrollbar-thumb,
.feature-code::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}

.code-block::-webkit-scrollbar-thumb:hover,
.example-code::-webkit-scrollbar-thumb:hover,
.code-example::-webkit-scrollbar-thumb:hover,
.feature-code::-webkit-scrollbar-thumb:hover {
    background: #666;
}