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

:root {
    --primary-purple: #8b5cf6;
    --dark-purple: #6d28d9;
    --light-purple: #a78bfa;
    --accent-purple: #c084fc;
    --bg-black: #0a0a0f;
    --bg-dark: #131318;
    --bg-card: #1a1a24;
    --text-white: #ffffff;
    --text-gray: #a1a1aa;
    --glow-purple: rgba(139, 92, 246, 0.5);
}

body {
    font-family: 'Rajdhani', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-black);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(139, 92, 246, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.02) 1px, transparent 1px);
    background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
    background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(192, 132, 252, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', 'Rajdhani', sans-serif;
    font-weight: 700;
}

.logo, .hero-title, .section-title, .page-title {
    font-family: 'Orbitron', sans-serif;
}

/* Floating Navigation Bar */
.navbar {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 92%;
    max-width: 1400px;
    animation: navEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes navEntrance {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-50px) scale(0.9);
        filter: blur(10px);
    }
    60% {
        opacity: 0.8;
        transform: translateX(-50%) translateY(5px) scale(1.02);
        filter: blur(0px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
        filter: blur(0px);
    }
}

.nav-container {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 16px;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
                0 0 80px rgba(139, 92, 246, 0.08),
                inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), transparent, rgba(192, 132, 252, 0.05));
    opacity: 0.5;
    pointer-events: none;
}

.nav-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.logo span {
    font-family: 'Orbitron', sans-serif;
    display: flex;
    gap: 2px;
}

.logo-plink {
    color: var(--primary-purple);
    transition: all 0.3s ease;
}

.logo-optimize {
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.logo:hover .logo-plink {
    color: var(--accent-purple);
    text-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
}

.logo:hover .logo-optimize {
    color: var(--text-white);
}

.logo-image {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.logo:hover .logo-image {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 0 24px rgba(139, 92, 246, 0.4);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(192, 132, 252, 0.1));
    border-radius: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(100%);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), var(--accent-purple), transparent);
    transition: transform 0.3s ease;
}

.nav-menu a:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.nav-menu a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu a:hover {
    color: rgba(255, 255, 255, 1);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    color: var(--text-white);
    background: transparent;
    border: none;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-family: inherit;
}

.dropdown-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-toggle:hover::before {
    opacity: 1;
}

.dropdown-toggle:hover {
    color: var(--accent-purple);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Overlay */
.dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.dropdown-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Dropdown Menu Container */
.dropdown-menu-container {
    position: fixed;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu-container.active {
    opacity: 1;
    visibility: visible;
    top: 100px;
}

.dropdown-menu {
    background: rgba(19, 19, 24, 0.98);
    backdrop-filter: blur(30px);
    border: 1.5px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 8px;
    min-width: 280px;
    list-style: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 
                0 10px 40px rgba(139, 92, 246, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-menu a::before {
    display: none;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    color: var(--text-white);
    background: rgba(139, 92, 246, 0.15);
    padding-left: 24px;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: var(--text-white);
    border: 1px solid rgba(139, 92, 246, 0.4);
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-purple), var(--primary-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover {
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.5);
    border-color: rgba(167, 139, 250, 0.6);
    transform: translateY(-2px);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

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

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.highlight {
    color: var(--primary-purple);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(139, 92, 246, 0.2);
    z-index: -1;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.highlight-text {
    color: var(--accent-purple);
    font-weight: 600;
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-purple);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.primary-button {
    background: var(--primary-purple);
    color: var(--text-white);
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
    background: var(--dark-purple);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.secondary-button:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--primary-purple);
    transform: translateY(-3px);
}

.platform-tags {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--light-purple);
}

/* Hero Visual */
.hero-visual {
    animation: fadeInRight 0.8s ease-out;
    position: relative;
}

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

.visual-card {
    background: linear-gradient(135deg, rgba(26, 26, 36, 0.9), rgba(19, 19, 24, 0.9));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 60%);
    animation: rotate 15s linear infinite;
}

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

/* Performance Dashboard */
.performance-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.performance-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background: rgba(13, 13, 18, 0.4);
    border-radius: 16px;
    backdrop-filter: blur(2px);
}

.placeholder-text {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    padding: 0 20px;
    animation: pulse 2s ease-in-out infinite;
}

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

.performance-dashboard {
    background: rgba(13, 13, 18, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 30px;
}

.performance-blurred {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 30px;
}

.dashboard-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 8px;
}

.badge {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* Chart Container */
.chart-container {
    background: rgba(26, 26, 36, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.chart-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Chart Bars */
.chart-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.chart-bar-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.chart-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chart-bar-container {
    position: relative;
}

.chart-bar {
    height: 24px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    width: 0;
    animation: barGrow 1.2s ease-out forwards;
}

@keyframes barGrow {
    to { width: var(--bar-width); }
}

.before-bar {
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.3), rgba(239, 68, 68, 0.5));
    border: 1px solid rgba(220, 38, 38, 0.5);
}

.after-bar {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.3), rgba(74, 222, 128, 0.5));
    border: 1px solid rgba(34, 197, 94, 0.5);
}

.fps-before { --bar-width: 36%; }
.fps-after { --bar-width: 100%; }
.ping-before { --bar-width: 100%; }
.ping-after { --bar-width: 25%; }

.chart-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    to { left: 100%; }
}

.chart-value {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    z-index: 1;
}

.before-value {
    color: rgba(239, 68, 68, 1);
}

.after-value {
    color: rgba(74, 222, 128, 1);
}

/* Improvement Badge */
.chart-improvement {
    text-align: center;
    margin-top: 10px;
}

.improvement-badge {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgb(74, 222, 128);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dashboard CTA Button */
.dashboard-cta {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    border: none;
    color: var(--text-white);
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 20px;
}

.dashboard-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.4);
}

.dashboard-cta svg {
    position: relative;
    z-index: 1;
}

.dashboard-cta:active {
    transform: translateY(-1px);
}

/* Products Section */
.products {
    padding: 120px 20px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, 
                rgba(10, 10, 15, 0.8) 0%, 
                rgba(13, 13, 18, 0.9) 50%, 
                rgba(10, 10, 15, 0.8) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background-image: 
        repeating-linear-gradient(45deg, 
            transparent, 
            transparent 50px, 
            rgba(139, 92, 246, 0.01) 50px, 
            rgba(139, 92, 246, 0.01) 52px);
    pointer-events: none;
    z-index: -1;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 25px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

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

/* Bundle Card Styling */
.bundle-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(109, 40, 217, 0.15));
    border: 2px solid var(--primary-purple);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
    }
    50% {
        box-shadow: 0 20px 80px rgba(139, 92, 246, 0.6);
    }
}

.bundle-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.5);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-icon svg {
    width: 56px;
    height: 56px;
    stroke: var(--primary-purple);
    transition: all 0.3s ease;
}

.product-card:hover .product-icon svg {
    stroke: var(--accent-purple);
    transform: scale(1.1);
}

.bundle-icon svg {
    width: 64px;
    height: 64px;
}

.product-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-white);
}

.product-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: 900;
    font-size: 1.2rem;
}

.product-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 20px;
}

.product-price-bundle {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.original-price {
    font-size: 1.5rem;
    color: var(--text-gray);
    text-decoration: line-through;
}

.bundle-price {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    border: 1px solid rgba(139, 92, 246, 0.5);
    color: var(--text-white);
    padding: 14px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Rajdhani', sans-serif;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.product-button:hover {
    background: linear-gradient(135deg, var(--accent-purple), var(--primary-purple));
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.5);
    border-color: var(--accent-purple);
}

.bundle-button {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    border: none;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

.bundle-button:hover {
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.7);
}

/* Features Section */
.features {
    padding: 120px 20px;
    background: linear-gradient(180deg, var(--bg-black), var(--bg-dark));
    position: relative;
    z-index: 1;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(26, 26, 36, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    background: rgba(139, 92, 246, 0.05);
}

.feature-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon svg {
    width: 56px;
    height: 56px;
    stroke: var(--primary-purple);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon svg {
    stroke: var(--accent-purple);
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

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

/* Team Section */
.team {
    padding: 120px 20px;
    background: var(--bg-black);
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(26, 26, 36, 0.6), rgba(19, 19, 24, 0.6));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-purple));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(109, 40, 217, 0.05));
}

.team-member:hover::before {
    transform: scaleX(1);
}

.member-avatar {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(192, 132, 252, 0.15));
    border: 2px solid rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.avatar-circle svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary-purple);
    transition: all 0.3s ease;
}

.avatar-placeholder {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(192, 132, 252, 0.2));
}

.avatar-initials {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Team Page Specific Styles */
.team-page {
    min-height: 100vh;
    padding-top: 140px;
    position: relative;
    background: #000000;
    overflow: hidden;
}

.team-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(120deg, transparent, transparent 70px, rgba(139, 92, 246, 0.03) 70px, rgba(139, 92, 246, 0.03) 140px),
        repeating-linear-gradient(60deg, transparent, transparent 70px, rgba(139, 92, 246, 0.03) 70px, rgba(139, 92, 246, 0.03) 140px),
        linear-gradient(60deg, rgba(0, 0, 0, 0.5) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.5) 75%, rgba(0, 0, 0, 0.5)),
        linear-gradient(120deg, rgba(0, 0, 0, 0.5) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.5) 75%, rgba(0, 0, 0, 0.5));
    background-size: 70px 122px;
    background-position: 0 0, 0 0, 0 0, 35px 61px;
    opacity: 0.3;
    z-index: 0;
}

.team-background-pattern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(220, 38, 38, 0.1) 100px,
        rgba(220, 38, 38, 0.1) 102px
    );
    animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(141px, 141px); }
}

.team-container {
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.page-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

/* Professional Team Grid */
.team-grid-professional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin: 80px 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.team-member-pro {
    text-align: center;
    position: relative;
    padding: 20px;
}

.member-avatar-pro {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 35px;
}

.avatar-circle-pro {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(192, 132, 252, 0.3));
    border: 4px solid rgba(139, 92, 246, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 10px 50px rgba(139, 92, 246, 0.4);
}

.avatar-circle-pro:hover {
    transform: scale(1.05);
    border-color: var(--accent-purple);
    box-shadow: 0 15px 60px rgba(139, 92, 246, 0.6);
}

.avatar-initials-pro {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.member-name-pro {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--text-white);
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.member-role-pro {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #dc2626;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.member-bio-pro {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Social Media Icons */
.member-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--primary-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.social-link:nth-child(1):hover {
    color: #00f2ea;
    border-color: #00f2ea;
}

.social-link:nth-child(2):hover {
    color: #ff0000;
    border-color: #ff0000;
}

.social-link:nth-child(3):hover {
    color: #9146ff;
    border-color: #9146ff;
}

.social-link:nth-child(4):hover {
    color: #5865f2;
    border-color: #5865f2;
}

.team-message {
    max-width: 1100px;
    margin: 100px auto 0;
}

.message-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(109, 40, 217, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.message-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), var(--accent-purple), transparent);
}

.message-card h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.message-card p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 25px;
}

.message-card p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for team page */
@media (max-width: 1200px) {
    .team-grid-professional {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .team-grid-professional {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .member-avatar-pro {
        width: 180px;
        height: 180px;
    }
    
    .avatar-circle-pro {
        width: 180px;
        height: 180px;
    }
    
    .avatar-initials-pro {
        font-size: 4rem;
    }
    
    .member-name-pro {
        font-size: 1.6rem;
    }
    
    .message-card {
        padding: 40px 30px;
    }
}

/* View All Products Button */
.view-all-products {
    text-align: center;
    margin-top: 60px;
}

.view-all-button {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: var(--text-white);
    border: none;
    padding: 18px 50px;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.view-all-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
}

.view-all-button:active {
    transform: translateY(-1px);
}

/* Products Page Specific Styles */
.products-page {
    min-height: 100vh;
    padding-top: 120px;
}

/* Disable fade-in animations for products page */
.no-animation .product-card {
    opacity: 1 !important;
    animation: none !important;
}

/* Terms Page Specific Styles */
.terms-page {
    min-height: 100vh;
    padding-top: 140px;
}

/* Active Navigation Link */
.nav-menu a.active {
    color: var(--accent-purple);
}

.nav-menu a.active::after {
    width: 100%;
}

.avatar-circle::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.team-member:hover .avatar-circle {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary-purple);
}

.team-member:hover .avatar-circle::before {
    opacity: 0.5;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--text-white), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.member-role {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-bio {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Terms of Service Section */
.terms-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, var(--bg-black), var(--bg-dark));
    position: relative;
}

.terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.terms-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.term-card {
    background: linear-gradient(135deg, rgba(26, 26, 36, 0.6), rgba(19, 19, 24, 0.6));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.term-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.term-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

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

.term-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.term-icon svg {
    stroke: var(--primary-purple);
    transition: all 0.3s ease;
}

.term-card:hover .term-icon {
    background: rgba(139, 92, 246, 0.2);
    transform: scale(1.05);
}

.term-card:hover .term-icon svg {
    stroke: var(--accent-purple);
}

.term-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-white);
}

.term-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.terms-notice {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 35px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.terms-notice p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.terms-notice p:last-child {
    margin-bottom: 0;
}

.terms-notice strong {
    color: var(--primary-purple);
    font-weight: 700;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-gray);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.link-column a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

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

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

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

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

    .chart-comparison {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .performance-dashboard {
        padding: 20px;
    }

    .placeholder-text {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

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

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

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

