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

:root {
    --primary: #5865f2;
    --primary-dark: #4752c4;
    --secondary: #7289da;
    --accent: #00d4aa;
    --background: #0a0a0a;
    --surface: #1a1a1a;
    --surface-light: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b9bbbe;
    --text-muted: #72767d;
    --border: #2f3136;
    --success: #43b581;
    --warning: #faa61a;
    --error: #f04747;
    
    --glow-primary: 0 0 20px rgba(88, 101, 242, 0.4);
    --glow-accent: 0 0 20px rgba(0, 212, 170, 0.4);
    --glow-success: 0 0 20px rgba(67, 181, 129, 0.4);
}

html {
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
    scroll-padding-top: 80px;
}

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Advanced Smooth Scrolling */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
    
    body {
        scroll-behavior: smooth;
    }
}

/* Hide any potential sidebars */
.sidebar,
.nav-sidebar,
.side-panel {
    display: none !important;
}

/* Enhanced Responsive Animations */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
        transition: font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
        transition: font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .hero-container {
        gap: 3rem;
        transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        transition: font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .hero-container {
        gap: 2rem;
        transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    will-change: transform, background;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

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

.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;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(88, 101, 242, 0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
    overflow: hidden;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease-in-out infinite;
}

.subtitle-text {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.8em;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 540px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

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

.btn-primary,
.btn-secondary {
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 180px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 
        0 4px 15px rgba(88, 101, 242, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(88, 101, 242, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(3px);
}

.btn-secondary:hover .btn-icon {
    transform: rotate(180deg);
}

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

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

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
    position: relative;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(42, 42, 42, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    backdrop-filter: blur(20px);
    transform: translateZ(0);
    will-change: transform;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-card {
    width: 320px;
    padding: 2.5rem;
    animation: responsiveFloat 8s ease-in-out infinite;
    z-index: 3;
}

.main-card:hover {
    animation-play-state: paused;
    transform: translateY(-20px) scale(1.05) translateZ(0);
}

.accent-card-1,
.accent-card-2,
.accent-card-3 {
    position: absolute;
    width: 100px;
    height: 100px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.accent-card-1 {
    top: 20%;
    left: 10%;
    animation: responsiveFloat 6s ease-in-out infinite 1s;
}

.accent-card-2 {
    top: 15%;
    right: 15%;
    animation: responsiveFloat 7s ease-in-out infinite 2s;
}

.accent-card-3 {
    bottom: 25%;
    left: 5%;
    animation: responsiveFloat 8s ease-in-out infinite 3s;
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.6;
    filter: blur(25px);
    animation: rotateGlow 6s linear infinite;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.bot-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.avatar-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.8;
    filter: blur(15px);
    animation: pulse 3s ease-in-out infinite;
}

.avatar-icon {
    width: 50px;
    height: 50px;
    color: white;
}

.bot-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.bot-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.bot-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--success);
    font-weight: 500;
    font-size: 0.95rem;
    justify-content: center;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.bot-metrics {
    display: flex;
    gap: 2rem;
    justify-content: center;
    width: 100%;
}

.metric {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.mini-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.mini-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

/* Background Elements */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(88, 101, 242, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88, 101, 242, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

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

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary), transparent);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent), transparent);
    top: 50%;
    right: 10%;
    animation-delay: -12s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--secondary), transparent);
    bottom: 15%;
    left: 50%;
    animation-delay: -8s;
}

.orb-4 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.8), transparent);
    top: 30%;
    right: 40%;
    animation-delay: -15s;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: var(--surface);
}

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

.feature-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform, border-color, box-shadow;
    animation: smoothScaleIn 0.6s ease-out;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03) translateZ(0);
    border-color: var(--primary);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(88, 101, 242, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fluidGlow 2s ease-in-out infinite;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Performance Section */
.performance {
    padding: 8rem 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.performance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(88, 101, 242, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(114, 137, 218, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.metric-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(42, 42, 42, 0.8));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, transparent, rgba(88, 101, 242, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.metric-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(88, 101, 242, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.metric-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(20px);
    opacity: 0.6;
    z-index: -1;
}

.speed-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    animation: speedPulse 3s ease-in-out infinite;
}

.memory-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    animation: memoryPulse 3s ease-in-out infinite 1s;
}

.storage-icon {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    animation: storagePulse 3s ease-in-out infinite 2s;
}

.metric-icon svg {
    width: 30px;
    height: 30px;
    color: white;
    z-index: 1;
}

.metric-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
}

.metric-value {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.metric-value .value {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.metric-value .unit {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.chart-container {
    height: 150px;
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.3), rgba(26, 26, 26, 0.5));
}

.performance-chart {
    width: 100%;
    height: 100%;
}

.metric-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}

.status-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    filter: blur(8px);
    opacity: 0.7;
}

.status-indicator.online {
    background: var(--success);
    animation: statusPulse 2s ease-in-out infinite;
}

.status-indicator.efficient {
    background: var(--accent);
    animation: statusPulse 2s ease-in-out infinite 0.5s;
}

.status-indicator.minimal {
    background: var(--primary);
    animation: statusPulse 2s ease-in-out infinite 1s;
}

/* Pricing Section */
.pricing {
    padding: 8rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    will-change: transform, box-shadow;
    animation: smoothSlideIn 0.8s ease-out;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.card-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.feature svg {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

.plan-btn {
    width: 100%;
    padding: 1rem;
    background: var(--surface-light);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.featured-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-color: var(--primary);
}

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

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--surface);
}

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

.about-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Analytics Section */
.analytics {
    padding: 8rem 0;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(16, 16, 16, 0.98)),
        radial-gradient(circle at 20% 80%, rgba(88, 101, 242, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.08) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.analytics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(88, 101, 242, 0.02) 50%, transparent 100%);
    animation: analyticsShimmer 10s ease-in-out infinite;
}

.analytics-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.analytics-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(42, 42, 42, 0.9));
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(30px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    animation: cardFloatIn 0.8s ease-out;
}

.analytics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(88, 101, 242, 0.05) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(0, 212, 170, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.analytics-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(88, 101, 242, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.main-chart {
    grid-row: span 2;
    padding: 3rem;
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.chart-title-section h3 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.chart-title-section p {
    color: var(--text-secondary);
    font-size: 1rem;
    opacity: 0.8;
}

.chart-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat-badge {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: statPulse 3s ease-in-out infinite;
}

.stat-badge.success {
    background: rgba(67, 181, 129, 0.1);
    border-color: rgba(67, 181, 129, 0.3);
    animation-delay: 1s;
}

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

.stat-badge:hover::before {
    left: 100%;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-badge.success .stat-number {
    color: var(--success);
    background: linear-gradient(135deg, var(--success), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.chart-container.large {
    height: 320px;
    margin-bottom: 2rem;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.4), rgba(26, 26, 26, 0.6));
    border: 1px solid rgba(88, 101, 242, 0.1);
}

.chart-container.mini {
    height: 120px;
    margin-bottom: 1rem;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.3), rgba(26, 26, 26, 0.5));
}

.main-analytics-chart,
.mini-analytics-chart {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.chart-overlay-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.chart-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 60%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(88, 101, 242, 0.15) 0%, transparent 70%);
    filter: blur(30px);
    animation: chartGlowPulse 4s ease-in-out infinite;
}

.chart-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(88, 101, 242, 0.6) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 170, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(114, 137, 218, 0.5) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 60px 60px;
    opacity: 0.3;
    animation: particleFloat 15s linear infinite;
}

.chart-legend-enhanced {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.75rem 1.25rem;
    background: rgba(88, 101, 242, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(88, 101, 242, 0.15);
    transition: all 0.3s ease;
}

.legend-item:hover {
    background: rgba(88, 101, 242, 0.1);
    border-color: rgba(88, 101, 242, 0.3);
    transform: translateY(-2px);
}

.legend-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: relative;
}

.legend-item.primary .legend-indicator {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

.legend-item.secondary .legend-indicator {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    box-shadow: 0 0 15px rgba(0, 212, 170, 0.4);
}

.legend-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
}

.mini-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.mini-chart-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.trend-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trend-indicator.positive {
    color: var(--success);
    background: rgba(67, 181, 129, 0.1);
    border: 1px solid rgba(67, 181, 129, 0.3);
}

.trend-indicator.stable {
    color: var(--primary);
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.trend-indicator svg {
    width: 14px;
    height: 14px;
}

/* Analytics Animations */
@keyframes analyticsShimmer {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(100%);
        opacity: 1;
    }
}

@keyframes cardFloatIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes statPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(88, 101, 242, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px 0 rgba(88, 101, 242, 0.2);
    }
}

@keyframes chartGlowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

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

/* Responsive Analytics */
@media (max-width: 1024px) {
    .analytics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .main-chart {
        grid-row: span 1;
        padding: 2rem;
    }
    
    .analytics-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .chart-stats {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .analytics {
        padding: 4rem 0;
    }
    
    .analytics-card {
        padding: 1.5rem;
    }
    
    .main-chart {
        padding: 2rem;
    }
    
    .chart-title-section h3 {
        font-size: 1.5rem;
    }
    
    .stat-badge {
        padding: 1rem 1.25rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .chart-container.large {
        height: 250px;
    }
    
    .chart-legend-enhanced {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Comparison Section */
.comparison {
    padding: 8rem 0;
    background: var(--surface);
}

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

.comparison-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(42, 42, 42, 0.8));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.comparison-card.full-width {
    grid-column: 1 / -1;
}

.comparison-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(88, 101, 242, 0.3);
}

.comparison-header {
    margin-bottom: 2rem;
}

.comparison-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

.comparison-chart {
    width: 100%;
    height: 100%;
}

.comparison-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-color.acronix {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.legend-color.competitor-a {
    background: #ff6b6b;
}

.legend-color.competitor-b {
    background: #ffa726;
}

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

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(88, 101, 242, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(88, 101, 242, 0.2);
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-charts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.resource-chart-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-primary);
}

.chart-container.small {
    height: 200px;
}

.resource-chart {
    width: 100%;
    height: 100%;
}

/* Plan Specifications */
.plan-specs {
    background: rgba(88, 101, 242, 0.05);
    border: 1px solid rgba(88, 101, 242, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

/* Professional Chart Interactions */
.comparison-card {
    cursor: pointer;
    user-select: none;
}

.comparison-card .chart-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-card .chart-container canvas {
    transition: transform 0.2s ease;
}

.comparison-card:active .chart-container canvas {
    transform: scale(0.98);
}

/* Enhanced Tooltips for Charts */
.chart-tooltip,
.radar-tooltip,
.doughnut-tooltip {
    font-family: 'Inter', sans-serif;
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(88, 101, 242, 0.2);
}

.chart-tooltip::before,
.radar-tooltip::before,
.doughnut-tooltip::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: inherit;
    border: inherit;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    z-index: -1;
}

/* Advanced Performance Metrics */
.metric-card:hover .metric-value .value {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(88, 101, 242, 0.6);
}

.metric-card:hover .chart-container {
    box-shadow: inset 0 0 20px rgba(88, 101, 242, 0.1);
}

/* Smooth Chart Transitions */
.comparison-grid,
.performance-grid {
    perspective: 1000px;
}

.comparison-card,
.metric-card {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.comparison-card:hover,
.metric-card:hover {
    transform: translateY(-8px) rotateX(2deg);
}

/* Interactive Elements Focus States */
.comparison-chart:focus,
.resource-chart:focus,
.performance-chart:focus {
    outline: 2px solid rgba(88, 101, 242, 0.5);
    outline-offset: 4px;
    border-radius: 8px;
}

/* High-End Loading States */
.chart-container.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(88, 101, 242, 0.2);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: chartLoading 1s linear infinite;
}

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

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

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Chart Interaction Animations */
@keyframes chartRipple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

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

.comparison-chart,
.resource-chart,
.performance-chart {
    transition: filter 0.3s ease;
}

.comparison-chart:hover,
.resource-chart:hover,
.performance-chart:hover {
    filter: brightness(1.1) contrast(1.05);
}

.comparison-card:hover .chart-container {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Enhanced Chart Container Interactions */
.chart-container {
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.chart-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, transparent, rgba(88, 101, 242, 0.1), transparent);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.chart-container:hover::before {
    opacity: 1;
}

/* Interactive Chart Overlays */
.chart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.comparison-card:hover .chart-overlay {
    background: linear-gradient(145deg, transparent, rgba(88, 101, 242, 0.02));
}

/* Footer */
.footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1rem;
}

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

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

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

/* Advanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) translateZ(0);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

@keyframes smoothSlideIn {
    from {
        opacity: 0;
        transform: translateX(-40px) translateZ(0);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateZ(0);
    }
}

@keyframes smoothScaleIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateZ(0);
    }
    to {
        opacity: 1;
        transform: scale(1) translateZ(0);
    }
}

@keyframes responsiveFloat {
    0%, 100% {
        transform: translateY(0px) translateZ(0);
    }
    50% {
        transform: translateY(-15px) translateZ(0);
    }
}

@keyframes fluidGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(88, 101, 242, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(88, 101, 242, 0.6);
    }
}

@keyframes smoothRotate {
    from {
        transform: rotate(0deg) translateZ(0);
    }
    to {
        transform: rotate(360deg) translateZ(0);
    }
}

/* Responsive Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px) translateZ(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}

.smooth-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
}

.smooth-hover:hover {
    transform: translateY(-8px) scale(1.02) translateZ(0);
}

/* Enhanced Responsive Breakpoints */
@media (max-width: 480px) {
    .animate-on-scroll {
        transform: translateY(20px) translateZ(0);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes drift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

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

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

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

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

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

@keyframes speedPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 107, 107, 0);
    }
}

@keyframes memoryPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(78, 205, 196, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(78, 205, 196, 0);
    }
}

@keyframes storagePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(168, 237, 234, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(168, 237, 234, 0);
    }
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

@keyframes chartGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(88, 101, 242, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(88, 101, 242, 0.6));
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--surface);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .visual-container {
        height: 400px;
    }

    .main-card {
        width: 280px;
        padding: 2rem;
    }

    .accent-card-1,
    .accent-card-2,
    .accent-card-3 {
        width: 80px;
        height: 80px;
        padding: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .resource-charts {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .comparison-legend {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

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