:root {
    --lab-neon: #00d4ff;
    --lab-gold: #e6c14a;
    --lab-bg: #071b0f;
    --lab-card: #0a2a1a;
    --lab-border: #1a4a2a;
}

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

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Loader Overlay */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(1200px 800px at 20% -10%, rgba(20,255,114,0.2), transparent),
                radial-gradient(1000px 900px at 120% 10%, rgba(0,255,136,0.15), transparent),
                linear-gradient(180deg, #071b0f 0%, #03140b 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.5s ease-in-out;
}

.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Ensure loader dots and stars use lab theme colors */
.loader-background .dot {
    background: var(--lab-neon) !important;
}

.loader-background .star-bg {
    color: var(--lab-neon) !important;
}

.lottie-container {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.loading-spinner {
    font-size: 3rem;
    color: #00d4ff;
    animation: spin 2s linear infinite;
}

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

.loading-spinner {
    font-size: 3rem;
    color: #00d4ff;
    animation: spin 2s linear infinite;
}

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

/* Main Content */
.main-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
}

.main-content.hidden {
    display: none;
}

/* Global Background */
.global-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    z-index: 1000;
    padding: 1.2rem 0;
    margin: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

/* Ensure logo link is clickable */
.logo-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: block;
    z-index: 1000;
    position: relative;
    transition: all 0.3s ease;
}

.logo-link:hover {
    text-decoration: none;
    cursor: pointer;
}

.logo-text {
    background: linear-gradient(90deg, #00d4ff, #0099cc, #0066ff, #00d4ff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
    animation: titleShine 6s linear infinite;
}

.logo-text:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

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

.nav-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.auth-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-sizing: border-box;
    color: inherit;
}

.signin-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    position: relative;
}

.signin-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--lab-gold), #fff1a8, var(--lab-neon), var(--lab-gold));
    border-radius: 8px;
    z-index: -1;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.signin-btn:hover::before {
    background: linear-gradient(90deg, var(--lab-neon), var(--lab-gold), #fff1a8, var(--lab-neon));
}

.signin-btn:hover {
    box-shadow: 0 8px 25px rgba(20, 255, 114, 0.35);
}

.signup-btn {
    background: linear-gradient(90deg, var(--lab-gold), #fff1a8, var(--lab-neon), var(--lab-gold));
    background-size: 200% 100%;
    animation: titleShine 6s linear infinite;
    color: #071b0f;
    border: none;
}

.signup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(20,255,114,0.45), 0 0 14px rgba(230,193,74,0.35);
}

/* Profile Menu Styles */
.profile-menu {
    position: relative;
}

.profile-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.profile-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--lab-gold), #fff1a8, var(--lab-neon), var(--lab-gold));
    border-radius: 8px;
    z-index: -1;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.profile-btn:hover {
    background: rgba(20, 255, 114, 0.1);
    border-color: var(--lab-neon);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 255, 114, 0.2);
}

.profile-avatar {
    font-size: 1.2rem;
}

.profile-name {
    font-weight: 500;
}

.profile-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.profile-btn.active .profile-arrow {
    transform: rotate(180deg);
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: rgba(5, 18, 11, 0.95);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 200px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.profile-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--lab-gold), #fff1a8, var(--lab-neon), var(--lab-gold));
    border-radius: 12px;
    z-index: -1;
    padding: 1px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.profile-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(20, 255, 114, 0.1);
    color: var(--lab-neon);
}

.dropdown-item.logout-btn:hover {
    background: rgba(255, 87, 87, 0.1);
    color: #ff5757;
}

.item-icon {
    font-size: 1.1rem;
}

.dropdown-divider {
    height: 1px;
    background: rgba(20, 255, 114, 0.2);
    margin: 0.5rem 0;
}

/* Auth Button States */
.auth-buttons.guest-state,
.auth-buttons.logged-in-state {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--lab-neon, #00d4ff);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 18, 11, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    pointer-events: none;
    padding: 2rem 0;
}

/* Hide hamburger menu when mobile menu is open */
body.mobile-menu-open .hamburger-menu {
    display: none !important;
}

/* Ensure this rule takes precedence over media queries */
@media (max-width: 1024px) {
    body.mobile-menu-open .hamburger-menu {
        display: none !important;
    }
}

/* Additional specificity for mobile devices */
@media (max-width: 768px) {
    body.mobile-menu-open .hamburger-menu {
        display: none !important;
    }
}

@media (max-width: 480px) {
    body.mobile-menu-open .hamburger-menu {
        display: none !important;
    }
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Prevent scroll when mobile menu is active */
body.mobile-menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100vh !important;
    touch-action: none !important;
}

/* Profile page mobile responsive styles */
@media (max-width: 768px) {
    .profile-container {
        margin: 180px auto 30px auto !important;
        padding: 30px 20px !important;
        max-width: 95% !important;
    }
    
    .profile-header h1 {
        font-size: 2rem !important;
    }
    
    .profile-header p {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .profile-container {
        margin: 150px auto 30px auto !important;
        padding: 25px 15px !important;
        border-radius: 20px !important;
    }
    
    .profile-header h1 {
        font-size: 1.8rem !important;
    }
}

/* Additional scroll prevention for mobile menu */
.mobile-menu-overlay.active {
    touch-action: none;
}

.mobile-menu-overlay.active * {
    touch-action: none;
}

.mobile-menu-content {
    touch-action: auto;
}

.mobile-menu-content {
    width: 95%;
    max-width: 450px;
    max-height: 95vh;
    background: rgba(5, 18, 11, 0.95);
    border: 1px solid var(--lab-neon, #00d4ff);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    pointer-events: auto;
    overflow-y: auto;
    margin-top: 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--lab-neon, #00d4ff) transparent;
}

/* Custom scrollbar for webkit browsers */
.mobile-menu-content::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu-content::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-menu-content::-webkit-scrollbar-thumb {
    background: var(--lab-neon, #00d4ff);
    border-radius: 3px;
}

.mobile-menu-content::-webkit-scrollbar-thumb:hover {
    background: var(--lab-gold, #e6c14a);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(20, 255, 114, 0.2);
}

.mobile-menu-title {
    color: var(--lab-neon, #00d4ff);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--lab-neon, #00d4ff);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(20, 255, 114, 0.1);
    transform: scale(1.1);
}

/* Mobile Navigation Links */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-nav-link::before {
    content: '→';
    color: var(--lab-neon, #00d4ff);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(20, 255, 114, 0.1);
    border-color: var(--lab-neon, #00d4ff);
    transform: translateX(10px);
}

.mobile-nav-link:hover::before {
    transform: translateX(5px);
}

.mobile-nav-link.active {
    background: rgba(0, 255, 136, 0.15);
    border-color: #00ff88;
    color: #ffffff;
    font-weight: 600;
    transform: translateX(5px);
}

.mobile-nav-link.active::before {
    color: #00ff88;
    transform: translateX(5px);
}

.mobile-pricing-link {
    background: linear-gradient(90deg, var(--lab-gold, #e6c14a), #fff1a8, var(--lab-neon, #00d4ff));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: titleShine 6s linear infinite;
    font-weight: 600;
    position: relative;
}

/* Ensure mobile pricing link text is always visible */
.mobile-pricing-link {
    background: linear-gradient(90deg, var(--lab-gold, #e6c14a), #fff1a8, var(--lab-neon, #00d4ff)) !important;
    background-size: 200% 100% !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: var(--lab-gold) !important; /* Fallback color */
    animation: titleShine 6s linear infinite !important;
    font-weight: 600 !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important; /* Left align like other menu items */
}

/* Force text visibility on mobile pricing link */
.mobile-pricing-link span,
.mobile-pricing-link::before,
.mobile-pricing-link::after {
    color: var(--lab-gold) !important;
    -webkit-text-fill-color: var(--lab-gold) !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
}

/* Tablet-specific fix for mobile pricing link */
@media (max-width: 1024px) and (min-width: 769px) {
    .mobile-pricing-link {
        background: linear-gradient(90deg, var(--lab-gold, #e6c14a), #fff1a8, var(--lab-neon, #00d4ff)) !important;
        background-size: 200% 100% !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        color: var(--lab-gold) !important; /* Fallback color */
        animation: titleShine 6s linear infinite !important;
        font-weight: 600 !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }
    
    .mobile-pricing-link span,
    .mobile-pricing-link::before,
    .mobile-pricing-link::after {
        color: var(--lab-gold) !important;
        -webkit-text-fill-color: var(--lab-gold) !important;
        background: none !important;
        -webkit-background-clip: initial !important;
        background-clip: initial !important;
    }
}

/* Mobile-specific fix for mobile pricing link */
@media (max-width: 768px) {
    .mobile-pricing-link {
        color: var(--lab-gold) !important;
        -webkit-text-fill-color: var(--lab-gold) !important;
        background: none !important;
        -webkit-background-clip: initial !important;
        background-clip: initial !important;
        text-shadow: none !important;
    }
    
    .mobile-pricing-link span,
    .mobile-pricing-link::before,
    .mobile-pricing-link::after {
        color: var(--lab-gold) !important;
        -webkit-text-fill-color: var(--lab-gold) !important;
        background: none !important;
        -webkit-background-clip: initial !important;
        background-clip: initial !important;
    }
    
    /* Ensure mobile profile name is visible */
    .mobile-profile-btn .profile-name {
        color: #ffffff !important;
        font-weight: 500 !important;
        font-size: 1rem !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-left: 0.5rem !important;
        white-space: nowrap !important;
        overflow: visible !important;
    }
}

/* Mobile Auth Section */
.mobile-auth-section {
    border-top: 1px solid rgba(20, 255, 114, 0.2);
    padding-top: 1.5rem;
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-auth-btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: inherit;
}

.mobile-auth-btn.signin-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(20, 255, 114, 0.3);
}

.mobile-auth-btn.signin-btn:hover {
    background: rgba(20, 255, 114, 0.1);
    border-color: var(--lab-neon, #00d4ff);
    transform: translateY(-2px);
}

.mobile-auth-btn.signup-btn {
    background: linear-gradient(90deg, var(--lab-gold, #e6c14a), #fff1a8, var(--lab-neon, #00d4ff));
    color: #071b0f;
    font-weight: 700;
}

.mobile-auth-btn.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 255, 114, 0.3);
}

/* Mobile Profile Menu */
.mobile-profile-menu {
    position: relative;
}

.mobile-profile-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(20, 255, 114, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-profile-btn:hover {
    background: rgba(20, 255, 114, 0.1);
    border-color: var(--lab-neon, #00d4ff);
}

/* Ensure profile name is visible in mobile profile button */
.mobile-profile-btn .profile-name {
    color: #ffffff !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-left: 0.5rem !important;
}

.mobile-profile-dropdown {
    position: static;
    background: transparent;
    border: none;
    padding: 0;
    margin-top: 1rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    max-height: 60vh;
    overflow-y: auto;
}

.mobile-profile-dropdown.show {
    display: block;
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-dropdown-item:hover {
    background: rgba(20, 255, 114, 0.1);
    color: var(--lab-neon, #00d4ff);
}

.mobile-dropdown-item.logout-btn:hover {
    background: rgba(255, 87, 87, 0.1);
    color: #ff5757;
}

/* Responsive navigation */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .nav-container {
        justify-content: space-between;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hamburger-menu {
        width: 25px;
        height: 25px;
    }
    
    .hamburger-line {
        height: 2px;
    }
    
    .mobile-menu-content {
        width: 98%;
        padding: 2rem;
        max-height: 92vh;
        margin-top: 0.5rem;
    }
    
    .mobile-nav-link {
        font-size: 1.1rem;
        padding: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .mobile-auth-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .mobile-profile-dropdown {
        max-height: 50vh;
    }
}

@media (max-width: 480px) {
    .mobile-menu-content {
        padding: 1.5rem;
        max-height: 90vh;
        margin-top: 0.2rem;
    }
    
    .mobile-menu-title {
        font-size: 1.3rem;
    }
    
    .mobile-nav-link {
        font-size: 1rem;
        padding: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .mobile-profile-dropdown {
        max-height: 45vh;
    }
    
    .mobile-dropdown-item {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
}

.nav-link {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lab-gold), #fff1a8, var(--lab-neon), var(--lab-gold));
    background-size: 200% 100%;
    animation: titleShine 6s linear infinite;
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

.nav-link.active {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
    background: linear-gradient(90deg, #00ff88, #e6c14a);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Tablet Active States */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-link.active {
        color: #ffffff !important;
        text-shadow: 0 0 15px rgba(0, 212, 255, 0.8) !important;
        font-weight: 600 !important;
    }
    
    .nav-link.active::after {
        width: 100% !important;
        background: linear-gradient(90deg, #00ff88, #e6c14a) !important;
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.5) !important;
    }
    
    .mobile-nav-link.active {
        background: rgba(0, 255, 136, 0.15) !important;
        border-color: #00ff88 !important;
        color: #ffffff !important;
        font-weight: 600 !important;
        transform: translateX(5px) !important;
    }
    
    .mobile-nav-link.active::before {
        color: #00ff88 !important;
        transform: translateX(5px) !important;
    }
}

/* Mobile Active States */
@media (max-width: 768px) {
    .nav-link.active {
        color: #ffffff !important;
        text-shadow: 0 0 15px rgba(0, 212, 255, 0.8) !important;
        font-weight: 600 !important;
    }
    
    .nav-link.active::after {
        width: 100% !important;
        background: linear-gradient(90deg, #00ff88, #e6c14a) !important;
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.5) !important;
    }
    
    .mobile-nav-link.active {
        background: rgba(0, 255, 136, 0.15) !important;
        border-color: #00ff88 !important;
        color: #ffffff !important;
        font-weight: 600 !important;
        transform: translateX(5px) !important;
    }
    
    .mobile-nav-link.active::before {
        color: #00ff88 !important;
        transform: translateX(5px) !important;
    }
}

/* Small Mobile Active States */
@media (max-width: 480px) {
    .nav-link.active {
        color: #ffffff !important;
        text-shadow: 0 0 15px rgba(0, 212, 255, 0.8) !important;
        font-weight: 600 !important;
    }
    
    .nav-link.active::after {
        width: 100% !important;
        background: linear-gradient(90deg, #00ff88, #e6c14a) !important;
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.5) !important;
    }
    
    .mobile-nav-link.active {
        background: rgba(0, 255, 136, 0.15) !important;
        border-color: #00ff88 !important;
        color: #ffffff !important;
        font-weight: 600 !important;
        transform: translateX(5px) !important;
    }
    
    .mobile-nav-link.active::before {
        color: #00ff88 !important;
        transform: translateX(5px) !important;
    }
}

.pricing-link {
    background: linear-gradient(90deg, var(--lab-gold), #fff1a8, var(--lab-neon), var(--lab-gold));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: titleShine 6s linear infinite;
    font-weight: 600;
    position: relative;
}

.pricing-link::before {
    content: '✨';
    margin-right: 0.5rem;
    font-size: 1.1rem;
}










/* Liquid Badge */
.liquid-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: liquidFlow 3s ease-in-out infinite;
    overflow: hidden;
}

.badge-liquid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 136, 0.2));
    animation: liquidMorph 4s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.2rem;
    animation: bubbleFloat 2s ease-in-out infinite;
    z-index: 1;
}

.badge-text {
    color: #00d4ff;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.badge-bubble {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    animation: bubblePulse 3s ease-in-out infinite;
}

/* Hero Title */
.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }

.title-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: charReveal 0.6s ease-out forwards;
}

.title-line:nth-child(1) .title-char:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(1) .title-char:nth-child(2) { animation-delay: 0.35s; }
.title-line:nth-child(1) .title-char:nth-child(3) { animation-delay: 0.4s; }
.title-line:nth-child(1) .title-char:nth-child(4) { animation-delay: 0.45s; }
.title-line:nth-child(1) .title-char:nth-child(5) { animation-delay: 0.5s; }
.title-line:nth-child(1) .title-char:nth-child(6) { animation-delay: 0.55s; }

.title-line:nth-child(2) .title-char:nth-child(1) { animation-delay: 0.6s; }
.title-line:nth-child(2) .title-char:nth-child(2) { animation-delay: 0.65s; }
.title-line:nth-child(2) .title-char:nth-child(3) { animation-delay: 0.7s; }
.title-line:nth-child(2) .title-char:nth-child(4) { animation-delay: 0.75s; }
.title-line:nth-child(2) .title-char:nth-child(5) { animation-delay: 0.8s; }
.title-line:nth-child(2) .title-char:nth-child(6) { animation-delay: 0.85s; }
.title-line:nth-child(2) .title-char:nth-child(7) { animation-delay: 0.9s; }
.title-line:nth-child(2) .title-char:nth-child(8) { animation-delay: 0.95s; }
.title-line:nth-child(2) .title-char:nth-child(9) { animation-delay: 1s; }

.hero-title .highlight {
    background: linear-gradient(45deg, #00d4ff, #00ff88, #00d4ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

/* Hero Description */
.hero-description {
    font-size: 1.3rem;
    color: #b8c5d6;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 550px;
    opacity: 0;
    animation: slideInUp 0.8s ease-out 1s forwards;
}

.highlight-text {
    color: #00d4ff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Fluid Stats */
.fluid-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideInUp 0.8s ease-out 1.2s forwards;
}

.fluid-stat {
    flex: 1;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.fluid-stat:nth-child(1) { animation-delay: 1.4s; }
.fluid-stat:nth-child(2) { animation-delay: 1.6s; }
.fluid-stat:nth-child(3) { animation-delay: 1.8s; }

.fluid-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.stat-blob {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.3), rgba(0, 255, 136, 0.3));
    animation: blobMorph 6s ease-in-out infinite;
}

.blob-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    animation: innerBlob 4s ease-in-out infinite;
}

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

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #b8c5d6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideInUp 0.8s ease-out 1.4s forwards;
}

.liquid-cta {
    position: relative;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    border-radius: 25px;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.liquid-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

.cta-liquid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: liquidFlow 3s ease-in-out infinite;
}

.liquid-cta:hover .cta-liquid {
    opacity: 1;
}

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

.bubble {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: bubbleRise 3s ease-out infinite;
}

.bubble:nth-child(1) { top: 80%; left: 20%; animation-delay: 0s; }
.bubble:nth-child(2) { top: 70%; right: 30%; animation-delay: 1s; }
.bubble:nth-child(3) { top: 90%; left: 60%; animation-delay: 2s; }

.cta-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.5s ease;
}

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

.secondary-cta {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.secondary-cta:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    transform: translateY(-2px);
}

.cta-icon {
    font-size: 1.2rem;
}

.cta-text {
    font-weight: 600;
}

/* Hero Trust */
.hero-trust {
    opacity: 0;
    animation: slideInUp 0.8s ease-out 1.6s forwards;
}

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

.trust-badge {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.trust-badge:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-1px);
}

.trust-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    animation: trustGlow 3s ease-in-out infinite;
}

.trust-icon {
    font-size: 1rem;
    color: #00d4ff;
}

.trust-text {
    font-size: 0.9rem;
    color: #b8c5d6;
    font-weight: 500;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideInUp 0.8s ease-out 1.4s forwards;
}

.download-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 0;
    height: 44px;
    box-sizing: border-box;
}

.download-btn.android {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn.android:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.download-btn.ios {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    position: relative;
}

.download-btn.ios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 8px;
    z-index: -1;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.download-btn.ios:hover::before {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.play-icon {
    font-size: 0.8rem;
}

.apple-icon {
    font-size: 1.2rem;
}

.guide-button-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.download-btn.guide {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn.guide:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.guide-icon {
    font-size: 1rem;
}

/* Right side - Liquid Interface */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    animation: slideInRight 1s ease-out;
}

.liquid-interface {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.liquid-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: liquidFloat 6s ease-in-out infinite;
}

.liquid-surface {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.surface-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    animation: rippleExpand 4s ease-out infinite;
}

.surface-ripple:nth-child(1) { animation-delay: 0s; }
.surface-ripple:nth-child(2) { animation-delay: 1.5s; }
.surface-ripple:nth-child(3) { animation-delay: 3s; }

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

.floating-blob {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.4), rgba(0, 255, 136, 0.4));
    animation: floatingBlob 8s ease-in-out infinite;
}

.blob-a {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.blob-b {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 25%;
    animation-delay: 2s;
}

.blob-c {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

.liquid-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: bubbleFloat 6s ease-in-out infinite;
}

.bubble-1 { width: 12px; height: 12px; top: 10%; left: 15%; animation-delay: 0s; }
.bubble-2 { width: 8px; height: 8px; top: 30%; right: 20%; animation-delay: 1s; }
.bubble-3 { width: 15px; height: 15px; bottom: 30%; left: 30%; animation-delay: 2s; }
.bubble-4 { width: 10px; height: 10px; top: 70%; right: 40%; animation-delay: 3s; }
.bubble-5 { width: 6px; height: 6px; bottom: 60%; left: 70%; animation-delay: 4s; }
.bubble-6 { width: 14px; height: 14px; bottom: 10%; right: 10%; animation-delay: 5s; }

.interface-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.interface-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: statIndicator 0.8s ease-out forwards;
    opacity: 0;
}

.interface-stat:nth-child(1) { animation-delay: 0.5s; }
.interface-stat:nth-child(2) { animation-delay: 0.7s; }
.interface-stat:nth-child(3) { animation-delay: 0.9s; }

.interface-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.6);
}

.stat-wave {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 50%;
    animation: wavePulse 2s ease-in-out infinite;
}

.stat-text {
    font-size: 0.8rem;
    color: #b8c5d6;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 120px;
    height: 240px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    border: 3px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: phoneFloat 3s ease-in-out infinite;
}

.phone-screen {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.app-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.app-icon {
    width: 30px;
    height: 30px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    animation: appPulse 2s ease-in-out infinite;
}

.app-icon:nth-child(1) { animation-delay: 0s; }
.app-icon:nth-child(2) { animation-delay: 0.5s; }
.app-icon:nth-child(3) { animation-delay: 1s; }
.app-icon:nth-child(4) { animation-delay: 1.5s; }

.phone-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 20px;
    background: #333;
    border-radius: 2px;
}

/* Connection Line */
.connection-line {
    position: relative;
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #00ff88, #00d4ff);
    background-size: 200% 100%;
    border-radius: 2px;
    animation: connectionFlow 2s linear infinite;
    margin: 0 2rem;
}

.data-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.data-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border-radius: 50%;
    animation: dataFlow 1.5s linear infinite;
}

.data-particle:nth-child(1) { top: -1px; left: 0%; animation-delay: 0s; }
.data-particle:nth-child(2) { top: -1px; left: 25%; animation-delay: 0.5s; }
.data-particle:nth-child(3) { top: -1px; left: 50%; animation-delay: 1s; }
.data-particle:nth-child(4) { top: -1px; left: 75%; animation-delay: 1.5s; }

/* PC Mockup */
.pc-mockup {
    position: relative;
    width: 300px;
    height: 200px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    border: 3px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: pcFloat 3s ease-in-out infinite;
}

.pc-screen {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mirror-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid #00ff88;
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    animation: livePulse 1s ease-in-out infinite;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

.indicator-text {
    font-size: 0.7rem;
    color: #00ff88;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mirror-app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.mirror-app-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    animation: mirrorPulse 2s ease-in-out infinite;
}

.mirror-app-icon:nth-child(1) { animation-delay: 0s; }
.mirror-app-icon:nth-child(2) { animation-delay: 0.3s; }
.mirror-app-icon:nth-child(3) { animation-delay: 0.6s; }
.mirror-app-icon:nth-child(4) { animation-delay: 0.9s; }

.pc-frame {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: #333;
    border-radius: 0 0 10px 10px;
}

/* Performance Overlay */
.performance-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.performance-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.metric-label {
    font-size: 0.8rem;
    color: #b8c5d6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-size: 0.9rem;
    color: #00d4ff;
    font-weight: 700;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    z-index: 10;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

.scroll-arrow svg {
    color: #3b82f6;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(0, 212, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
.floating-icon:nth-child(3) { top: 80%; left: 20%; animation-delay: 4s; }
.floating-icon:nth-child(4) { top: 30%; right: 30%; animation-delay: 1s; }

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

/* Background elements */
.background-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--lab-neon);
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite;
}

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

.background-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star-bg {
    position: absolute;
    color: var(--lab-neon);
    font-size: 1.5rem;
    animation: twinkle 3s ease-in-out infinite;
}

.star-bg:nth-child(1) { top: 5%; left: 20%; animation-delay: 0s; }
.star-bg:nth-child(2) { top: 25%; left: 75%; animation-delay: 0.7s; }
.star-bg:nth-child(3) { top: 45%; left: 10%; animation-delay: 1.4s; }
.star-bg:nth-child(4) { top: 65%; left: 80%; animation-delay: 2.1s; }
.star-bg:nth-child(5) { top: 85%; left: 30%; animation-delay: 0.3s; }
.star-bg:nth-child(6) { top: 35%; left: 90%; animation-delay: 1s; }
.star-bg:nth-child(7) { top: 75%; left: 15%; animation-delay: 1.7s; }
.star-bg:nth-child(8) { top: 95%; left: 60%; animation-delay: 2.4s; }
.star-bg:nth-child(9) { top: 15%; left: 40%; animation-delay: 0.5s; }
.star-bg:nth-child(10) { top: 55%; left: 25%; animation-delay: 1.2s; }
.star-bg:nth-child(11) { top: 75%; left: 85%; animation-delay: 1.9s; }
.star-bg:nth-child(12) { top: 25%; left: 55%; animation-delay: 0.8s; }
.star-bg:nth-child(13) { top: 65%; left: 35%; animation-delay: 1.5s; }
.star-bg:nth-child(14) { top: 85%; left: 75%; animation-delay: 2.2s; }
.star-bg:nth-child(15) { top: 35%; left: 65%; animation-delay: 0.9s; }
.star-bg:nth-child(16) { top: 95%; left: 25%; animation-delay: 1.6s; }

/* Features Section - Modern Design */
.features-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: 4rem;
    margin: 0 auto;
    max-width: 1200px;
}

.features-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.features-header {
    text-align: center;
    margin-bottom: 1rem;
}

.features-badge {
    display: inline-block;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

.features-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.features-subtitle {
    font-size: 1.4rem;
    color: #00d4ff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

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

/* Tablet: Show 2 cards per row */
@media (max-width: 1024px) {
    .features-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile: Show 1 card per row */
@media (max-width: 768px) {
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.feature-showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 255, 136, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-showcase-item:hover::before {
    opacity: 1;
}

.feature-showcase-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 212, 255, 0.2);
}

.feature-visual {
    flex: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.feature-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.feature-icon-wrapper {
    position: relative;
    z-index: 3;
}

.feature-icon {
    font-size: 2.8rem;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8));
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Feature-specific animations */
.feature-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    animation: pulseRing 2s ease-in-out infinite;
}

.feature-pulse-ring:nth-child(2) {
    animation-delay: 0.5s;
}

.feature-pulse-ring:nth-child(3) {
    animation-delay: 1s;
}

.feature-pulse-ring:nth-child(4) {
    animation-delay: 1.5s;
}

.quality-indicator {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3px;
}

.quality-bar {
    width: 6px;
    height: 16px;
    background: linear-gradient(to top, #00d4ff, #00ff88);
    border-radius: 3px;
    animation: qualityPulse 1.5s ease-in-out infinite;
}

.quality-bar:nth-child(1) { animation-delay: 0s; }
.quality-bar:nth-child(2) { animation-delay: 0.2s; }
.quality-bar:nth-child(3) { animation-delay: 0.4s; }
.quality-bar:nth-child(4) { animation-delay: 0.6s; }

.connection-animation {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: connectionPulse 2s ease-in-out infinite;
}

.device-phone, .device-pc {
    font-size: 1.5rem;
    animation: float 2s ease-in-out infinite;
}

.connection-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
    border-radius: 1px;
    animation: connectionFlow 1.5s ease-in-out infinite;
}

.gaming-indicator {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.game-controller {
    font-size: 1.5rem;
    animation: gamePulse 1s ease-in-out infinite;
}

.performance-dots {
    display: flex;
    gap: 3px;
}

.performance-dots .dot {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    animation: performancePulse 1s ease-in-out infinite;
}

.performance-dots .dot:nth-child(1) { animation-delay: 0s; }
.performance-dots .dot:nth-child(2) { animation-delay: 0.2s; }
.performance-dots .dot:nth-child(3) { animation-delay: 0.4s; }

.recording-indicator {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.record-button {
    width: 32px;
    height: 32px;
    border: 2px solid #ff4444;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: recordPulse 1s ease-in-out infinite;
}

.record-dot {
    width: 12px;
    height: 12px;
    background: #ff4444;
    border-radius: 50%;
}

.audio-waves {
    display: flex;
    gap: 2px;
    align-items: end;
    height: 30px;
}

.audio-waves .wave {
    width: 4px;
    background: linear-gradient(to top, #00d4ff, #00ff88);
    border-radius: 2px;
    animation: audioWave 1s ease-in-out infinite;
}

.audio-waves .wave:nth-child(1) { height: 10px; animation-delay: 0s; }
.audio-waves .wave:nth-child(2) { height: 20px; animation-delay: 0.2s; }
.audio-waves .wave:nth-child(3) { height: 15px; animation-delay: 0.4s; }

.security-indicator {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shield-icon {
    font-size: 1.5rem;
    z-index: 3;
    animation: shieldGlow 2s ease-in-out infinite;
}

.security-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.security-rings .ring {
    position: absolute;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    animation: securityRing 2s ease-in-out infinite;
}

.security-rings .ring:nth-child(1) {
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.security-rings .ring:nth-child(2) {
    width: 80px;
    height: 80px;
    animation-delay: 0.5s;
}

.security-rings .ring:nth-child(3) {
    width: 100px;
    height: 100px;
    animation-delay: 1s;
}

.feature-content {
    flex: none;
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.feature-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}



.feature-description {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.feature-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

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

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.stat-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-action {
    display: flex;
    justify-content: center;
}

.feature-btn {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.feature-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.feature-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    }
    to {
        text-shadow: 0 0 50px rgba(0, 212, 255, 0.8), 0 0 70px rgba(0, 212, 255, 0.3);
    }
}

@keyframes twinkle {
    from {
        opacity: 0.3;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1.2);
    }
}

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

/* New animations for modern features */
@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

@keyframes qualityPulse {
    0%, 100% {
        height: 20px;
        opacity: 0.7;
    }
    50% {
        height: 30px;
        opacity: 1;
    }
}

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

@keyframes connectionFlow {
    0% {
        background: linear-gradient(90deg, #00d4ff, #00ff88);
    }
    50% {
        background: linear-gradient(90deg, #00ff88, #00d4ff);
    }
    100% {
        background: linear-gradient(90deg, #00d4ff, #00ff88);
    }
}

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

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

@keyframes recordPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(255, 68, 68, 0.8);
    }
}

@keyframes audioWave {
    0%, 100% {
        height: 10px;
    }
    50% {
        height: 25px;
    }
}

@keyframes shieldGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8));
    }
}

@keyframes securityRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}



/* Guide Section - Modern Timeline Design */
.guide-section {
    padding: 6rem 2rem;
    position: relative;
    margin-top: -2px;
}

.guide-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.guide-header {
    text-align: center;
    margin-bottom: 6rem;
}

.guide-badge {
    display: inline-block;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: float 3s ease-in-out infinite;
}

.guide-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
    line-height: 1.2;
}

.guide-subtitle {
    font-size: 1.4rem;
    color: #00d4ff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.guide-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(90deg, var(--lab-neon), var(--lab-gold)) !important;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.guide-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.guide-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-visual {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(90deg, var(--lab-neon), var(--lab-gold)) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5) !important;
    z-index: 2;
}

.step-number {
    font-size: 1.8rem;
    background:linear-gradient(90deg, var(--lab-neon), var(--lab-gold)) !important;
    font-weight: 800;
    color: white ;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.step-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(0, 255, 136, 0.3) !important;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.step-connector {
    width: 4px;
    height: 60px;
    background: linear-gradient(90deg, var(--lab-neon), var(--lab-gold)) !important;
    margin-top: 1rem;
    border-radius: 2px;
}

.step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 136, 0.1) !important;
    border-radius: 25px;
    padding: 2.5rem;
    margin: 0 2rem;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.3) !important;
}

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

.step-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.5)) !important;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3) !important;
}

.step-description {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
    border-radius: 4px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.progress-text {
    font-size: 0.9rem;
    color: #14ff72;
    font-weight: 600;
    white-space: nowrap;
}

.guide-cta {
    text-align: center;
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.guide-cta-btn {
    position: relative;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    height: 44px;
    box-sizing: border-box;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guide-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.guide-cta-btn:hover .btn-glow {
    opacity: 1;
}

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

.btn-icon {
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing-section {
    padding: 0;
    position: relative;
    margin-top: -2px;
}

/* Tablet: Remove padding for pricing section */
@media (max-width: 1024px) {
    .pricing-section {
        padding: 0;
    }
    
    .pricing-container {
        padding: 0 1rem;
    }
}

/* Mobile: Remove padding for pricing section */
@media (max-width: 768px) {
    .pricing-section {
        padding: 0;
    }
    
    .pricing-container {
        padding: 0;
    }
    
    .pricing-header {
        margin-bottom: 4rem; /* Reduce margin on mobile */
    }
}

/* Small Mobile: Remove padding for pricing section */
@media (max-width: 480px) {
    .pricing-section {
        padding: 0;
    }
    
    .pricing-container {
        padding: 0;
    }
    
    .pricing-header {
        margin-bottom: 3rem; /* Further reduce margin on small mobile */
    }
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.pricing-header {
    text-align: center;
    
}

.pricing-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: 1.4rem;
    color: #00d4ff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 2rem; */
    margin-top: 4rem;
    width: 100%;
    max-width: 1200px;
}

/* Pricing Loading Styles */
.pricing-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 25px;
    min-height: 300px;
}

.pricing-loading .loading-spinner {
    font-size: 3rem;
    color: #00ff88;
    margin-bottom: 1rem;
    animation: spin 2s linear infinite;
}

.pricing-loading p {
    color: #ffffff;
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Dynamic Pricing Card Animations */
.pricing-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 25px;
    padding: 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.pricing-card.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure pricing cards are visible by default */
.pricing-cards .pricing-card {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Pricing Grid */
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        
    }
    
    /* Ensure pricing page shows 2 cards on tablet */
    body.lab-theme .pricing-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr !important;
        
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        padding: 0; /* Remove padding on mobile */
    }
    
    /* Ensure pricing page shows 1 card on mobile */
    body.lab-theme .pricing-cards {
        grid-template-columns: 1fr !important;
        
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        padding: 0; /* Remove padding on mobile */
    }
    
    .pricing-loading {
        min-height: 250px;
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-cards {
        grid-template-columns: 1fr !important;
       
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
        padding: 0; /* Remove padding on small mobile */
    }
    
    /* Ensure pricing page shows 1 card on very small mobile */
    body.lab-theme .pricing-cards {
        grid-template-columns: 1fr !important;
        
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
        padding: 0; /* Remove padding on small mobile */
    }
    
    .pricing-card {
        padding: 1.5rem 1.5rem;
        min-height: 450px;
    }
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 25px;
    padding: 2rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible !important;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 255, 136, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}


.pricing-card.professional {
    border-color: rgba(0, 255, 136, 0.3);
}


.pricing-card.basic {
    border-color: rgba(0, 212, 255, 0.3);
}


.pricing-card.premium {
    border-color: rgba(0, 255, 136, 0.3);
}


.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--lab-neon), var(--lab-gold));
    color: #1a1a2e;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
    
}

.card-header {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.plan-icon {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: #14ff72;
    filter: drop-shadow(0 0 15px rgba(20, 255, 114, 0.37));
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
}

.plan-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--lab-neon), var(--lab-gold)) !important;
    color: #1a1a2e;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-discount {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    margin: 0.5rem 0;
    animation: pulse 2s infinite;
}

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

.pricing-loading {
    text-align: center;
    padding: 3rem;
    color: #ffffff;
}

.pricing-loading .loading-spinner {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: spin 2s linear infinite;
}

.pricing-loading p {
    color: #ccc;
    font-size: 1.1rem;
}

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

.plan-price {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
    vertical-align: top;
}

.amount {
    font-size: 2rem;
    font-weight: 800;
    color: #14ff72;
    text-shadow: 0 0 20px rgba(20, 255, 114, 0.5);
}

.period {
    font-size: 1rem;
    color: #ccc;
    font-weight: 400;
}

.plan-features {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
    flex: 1;
    min-height: 120px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    text-align: left;
}

.feature-icon {
    color: #00ff88;
    font-weight: bold;
    font-size: 2.8rem;
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.5));
}

.feature-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.4;
}

.pricing-btn {
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    height: 44px;
    box-sizing: border-box;
    width: 100%;
    margin-top: auto;
    text-decoration: none;
    text-align: center;
}

/* .pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    background: linear-gradient(45deg, #00ff88, #00d4ff);
} */

.btn-arrow {
    transition: transform 0.3s ease;
}

/* .pricing-btn:hover .btn-arrow {
    transform: translateX(5px);
} */

/* Current Plan Badge */
.current-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--lab-neon), var(--lab-gold)) !important;
    color: #1a1a2e;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
    z-index: 99999999999999999999;
    
}


/* Current Plan Card Styling */
.pricing-card.current-plan {
    border-color: rgba(76, 175, 80, 0.5);
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.3);
    background: rgba(76, 175, 80, 0.05);
    position: relative;
}

.pricing-card.current-plan::before {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(69, 160, 73, 0.1));
    opacity: 1;
}

.pricing-card.current-plan::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.02), rgba(69, 160, 73, 0.02));
    border-radius: 25px;
    pointer-events: none;
    
}

/* Plan Action Buttons */
.plan-actions {
    margin-top: auto;
    padding-top: 1.5rem;
}

.pricing-btn.current-btn {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    cursor: not-allowed;
    opacity: 0.8;
}

.pricing-btn.current-btn:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.pricing-btn.upgrade-btn {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    color: #1a1a2e;
    position: relative;
    overflow: hidden;
}

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

/* Removed hover effect */

/* Removed hover effect */

.pricing-btn.downgrade-btn {
    background: linear-gradient(45deg, #ff9800, #f57c00);
    color: white;
}

/* Removed hover effect */

.pricing-btn .btn-icon {
    font-size: 0.9rem;
    margin-left: 0.3rem;
}

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

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card {
        padding: 1.5rem 1.5rem;
        min-height: 450px;
    }
    
    .pricing-loading {
        min-height: 250px;
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 1.25rem 1rem;
        min-height: 400px;
    }
    
    .plan-name {
        font-size: 1.5rem;
    }
    
    .plan-icon {
        font-size: 1.8rem;
    }
}



/* Download Section */
.download-section {
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    margin-top: -2px;
}

.download-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.download-header {
    margin-bottom: 3rem;
}

.download-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.download-description {
    font-size: 1.3rem;
    color: white;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.download-btn-main {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 0;
    height: 44px;
    box-sizing: border-box;
}

.download-btn-main.android {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn-main.android:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.download-btn-main.ios {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    position: relative;
}

.download-btn-main.ios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 8px;
    z-index: -1;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.download-btn-main.ios:hover::before {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.download-disclaimer {
    font-size: 1rem;
    color: white;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: transparent;
    padding: 2rem 0;
    margin-top: -2px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--lab-gold), #fff1a8, var(--lab-neon), var(--lab-gold));
    background-size: 200% 100%;
    box-shadow: 0 0 10px rgba(230, 193, 74, 0.5);
    animation: titleShine 6s linear infinite;
}

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

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

.footer-logo-link {
    text-decoration: none;
    display: inline-block;
}

.footer-logo-text {
    background: linear-gradient(90deg, var(--lab-gold), #fff1a8, var(--lab-neon), var(--lab-gold));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    transition: all 0.3s ease;
    animation: titleShine 6s linear infinite;
}

.footer-logo-link:hover .footer-logo-text {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.footer-logo-text:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

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

.footer-link {
    background: linear-gradient(90deg, var(--lab-gold), #fff1a8, var(--lab-neon), var(--lab-gold));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    animation: titleShine 6s linear infinite;
}

.footer-link:hover {
    filter: brightness(1.3);
    transform: translateY(-2px);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--lab-gold), #fff1a8, var(--lab-neon), var(--lab-gold));
    background-size: 200% 100%;
    transition: width 0.3s ease;
    animation: titleShine 6s linear infinite;
}

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

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    position: relative;
}

.footer-copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--lab-gold), #fff1a8, var(--lab-neon), var(--lab-gold));
    background-size: 200% 100%;
    box-shadow: 0 0 10px rgba(230, 193, 74, 0.5);
    animation: titleShine 6s linear infinite;
}

.footer-copyright p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Tablet responsive design */
@media (max-width: 1024px) and (min-width: 769px) {
    .footer {
        background: radial-gradient(ellipse at center, rgba(20, 255, 114, 0.05) 0%, transparent 70%);
        position: relative;
    }
    
    .footer::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 20%, rgba(230, 193, 74, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(20, 255, 114, 0.03) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        align-items: center;
        position: relative;
        z-index: 1;
    }
    
    .footer-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        max-width: 900px;
        margin: 0 auto;
        flex-wrap: wrap;
    }
    
    .footer-link {
        font-size: 0.9rem;
        text-align: center;
        white-space: nowrap;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .footer-link:hover {
        background: rgba(20, 255, 114, 0.1);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(20, 255, 114, 0.2);
    }
    
    .footer-logo-text {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-shadow: 0 0 20px rgba(20, 255, 114, 0.5);
        letter-spacing: 1px;
        font-weight: 800;
    }
    
    .footer-copyright {
        margin-top: 2rem;
    }
}

/* Small tablet responsive design */
@media (max-width: 900px) and (min-width: 769px) {
    .footer-links {
        gap: 2rem;
        max-width: 800px;
    }
    
    .footer-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .footer-logo-text {
        font-size: 1.6rem;
    }
}

/* Mobile responsive design */
@media (max-width: 768px) {
    .lottie-container {
        width: 250px;
        height: 250px;
    }
    
    /* Navigation Responsive */
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .features-section {
        padding: 4rem 1rem;
    }
    
    .features-title {
        font-size: 2.5rem;
    }
    
    .features-subtitle {
        font-size: 1.1rem;
    }
    
    .features-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature-showcase-item {
        padding: 2rem;
    }
    
    .feature-visual {
        flex: none;
    }
    
    .feature-circle {
        width: 150px;
        height: 150px;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
    
    .feature-stats {
        justify-content: center;
    }
    
    .feature-action {
        justify-content: center;
    }
    

    
    .guide-timeline {
        max-width: 100%;
    }
    
    .guide-step {
        flex-direction: column;
        text-align: center;
        align-items: stretch !important;
        width: 100% !important;
    }
    
    .guide-step:nth-child(even) {
        flex-direction: column;
    }
    
    .step-visual {
        flex: none;
        margin-bottom: 2rem;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 1rem;
        width: 100% !important;
    }
    
    /* Add connector line for the last step (step 4) on mobile */
    .guide-step:last-child .step-visual::after {
        content: '';
        display: block;
        width: 4px;
        height: 60px;
        background: linear-gradient(90deg, var(--lab-neon), var(--lab-gold)) !important;
        margin-top: 1rem;
        border-radius: 2px;
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    
    .step-content {
        margin: 0 !important;
        text-align: center;
        padding: 2rem 1.5rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .step-circle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
    }
    
    .timeline-line {
        display: none;
        position: absolute;
        left: 50%;
        top: 60px;
        transform: translateX(-50%);
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, var(--lab-neon), var(--lab-gold));
        z-index: 1;
    }
    
    .pricing-section {
        padding: 0;
    }
    
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .pricing-subtitle {
        font-size: 1.1rem;
    }
    
    .guide-section {
        padding: 4rem 1rem;
    }
    
    .guide-title {
        font-size: 2.5rem;
    }
    
    .guide-subtitle {
        font-size: 1.1rem;
    }
    
    .download-section {
        padding: 4rem 1rem;
    }
    
    .download-title {
        font-size: 2.5rem;
    }
    
    .download-description {
        font-size: 1.1rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    

    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .pricing-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    

    
    .download-btn-main {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        height: 40px;
    }
    
    /* Footer Responsive */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }
    
    .hero-left {
        flex: 1;
    }
    
    .hero-right {
        flex: 1;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin: 0 auto 2rem auto;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .guide-button-container {
        margin-top: 0.8rem;
    }
    
    .hero-image {
        max-width: 110%;
    }
}

@media (max-width: 480px) {
    .lottie-container {
        width: 200px;
        height: 200px;
    }
    
    /* Navigation Mobile Responsive */
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-container {
        padding: 0 0.8rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .features-section {
        padding: 3rem 1rem;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .features-subtitle {
        font-size: 1rem;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-showcase-item {
        padding: 1.5rem;
    }
    
    .feature-circle {
        width: 120px;
        height: 120px;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-stats {
        flex-direction: column;
        gap: 1rem;
    }
    

    
    .amount {
        font-size: 3rem;
    }
    
    .plan-icon {
        font-size: 1.8rem;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .step-number {
        font-size: 1.5rem;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .step-content {
        padding: 2rem 1.5rem;
    }
    
    .download-section {
        padding: 3rem 1rem;
    }
    
    .download-title {
        font-size: 2rem;
    }
    
    .download-description {
        font-size: 1rem;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    

    
    .download-btn-main {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        height: 40px;
    }
    
    /* Footer Mobile Responsive */
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .footer-logo-text {
        font-size: 1.3rem;
    }
    
    .hero-container {
        padding: 1rem;
        padding-top: 5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .download-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        height: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
    }
    
    .guide-button-container {
        margin-top: 0.6rem;
    }
    
    .hero-image {
        max-width: 105%;
    }
}

/* Feature Demo Modal Styles */
.feature-demo-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.demo-visual {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-info {
    flex: 1;
    color: white;
}

.demo-info h3 {
    color: #00d4ff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.demo-info p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

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

.stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.stat-desc {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Demo-specific styles */
.latency-demo {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: latencyPulse 2s ease-in-out infinite;
}

.phone-screen, .pc-screen {
    font-size: 2rem;
    animation: float 2s ease-in-out infinite;
}

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

.latency-bar {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
    border-radius: 2px;
    animation: latencyFlow 1s ease-in-out infinite;
}

.latency-text {
    font-size: 0.9rem;
    color: #00ff88;
    font-weight: 600;
}

.quality-comparison {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quality-before, .quality-after {
    text-align: center;
}

.quality-before h4, .quality-after h4 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.quality-preview {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.quality-preview.blur {
    background: linear-gradient(45deg, #666, #999);
    filter: blur(2px);
}

.quality-preview.sharp {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.quality-arrow {
    font-size: 1.5rem;
    color: #00d4ff;
    animation: arrowPulse 1s ease-in-out infinite;
}

.connection-steps {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.step-icon {
    font-size: 2rem;
    animation: stepPulse 2s ease-in-out infinite;
}

.step-text {
    font-size: 0.8rem;
    color: #00d4ff;
    text-align: center;
}

.step-arrow {
    font-size: 1.2rem;
    color: #00d4ff;
    animation: arrowFlow 1.5s ease-in-out infinite;
}

.game-screen {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.game-ui {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-controller {
    font-size: 2rem;
    animation: gamePulse 1s ease-in-out infinite;
}

.performance-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.metric {
    font-size: 0.8rem;
    color: #00ff88;
    font-weight: 600;
}

.recording-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.record-btn {
    width: 40px;
    height: 40px;
    border: 3px solid #ff4444;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: recordPulse 1s ease-in-out infinite;
}

.record-dot {
    width: 16px;
    height: 16px;
    background: #ff4444;
    border-radius: 50%;
}

.recording-status {
    color: #ff4444;
    font-weight: 600;
    animation: statusBlink 1s ease-in-out infinite;
}

.audio-visualizer {
    display: flex;
    gap: 3px;
    align-items: end;
    height: 40px;
}

.audio-bar {
    width: 6px;
    background: linear-gradient(to top, #00d4ff, #00ff88);
    border-radius: 3px;
    animation: audioWave 1s ease-in-out infinite;
}

.audio-bar:nth-child(1) { height: 15px; animation-delay: 0s; }
.audio-bar:nth-child(2) { height: 25px; animation-delay: 0.2s; }
.audio-bar:nth-child(3) { height: 20px; animation-delay: 0.4s; }
.audio-bar:nth-child(4) { height: 30px; animation-delay: 0.6s; }
.audio-bar:nth-child(5) { height: 18px; animation-delay: 0.8s; }

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

.shield-icon {
    font-size: 3rem;
    animation: shieldGlow 2s ease-in-out infinite;
}

.security-layers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.layer {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #00ff88;
    text-align: center;
    animation: layerPulse 2s ease-in-out infinite;
}

.layer:nth-child(1) { animation-delay: 0s; }
.layer:nth-child(2) { animation-delay: 0.5s; }
.layer:nth-child(3) { animation-delay: 1s; }

/* Additional animations for demos */
@keyframes latencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes latencyFlow {
    0% { background: linear-gradient(90deg, #00d4ff, #00ff88); }
    50% { background: linear-gradient(90deg, #00ff88, #00d4ff); }
    100% { background: linear-gradient(90deg, #00d4ff, #00ff88); }
}

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

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

@keyframes arrowFlow {
    0% { transform: translateX(0); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

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

@keyframes layerPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }
}

/* Responsive styles for feature demos */
@media (max-width: 768px) {
    .feature-demo-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .demo-visual {
        flex: none;
    }
    
    .demo-stats {
        justify-content: center;
    }
    
    .quality-comparison {
        flex-direction: column;
        gap: 1rem;
    }
    
    .connection-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
} 

/* FAQ Section */
.faq-section {
    padding: 3rem 2rem;
    position: relative;
}

/* Tablet: Remove padding for FAQ section */
@media (max-width: 1024px) {
    .faq-section {
        padding: 0;
    }
    
    .faq-container {
        padding: 0 1rem;
        padding-top: 3rem;
    }
}

.faq-container {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem;
    padding-top: 3rem;
    margin: 0 auto;
    max-width: 1200px;
}

.faq-header {
    text-align: center;
    margin-bottom: 5rem;
}

.faq-title {
    font-size: 4rem !important;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.4rem !important;
    color: #00d4ff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 255, 136, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.faq-item.active {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 25px 50px rgba(0, 255, 136, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.05);
}

.faq-icon {
    position: relative;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.faq-icon-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, var(--lab-neon), var(--lab-gold)) !important;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
    animation: faqPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(72, 255, 0, 0.5));
}

.faq-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, var(--lab-neon), var(--lab-gold)) !important;
    border-radius: 50%;
    animation: faqGlow 3s ease-in-out infinite;
}

.faq-question-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin: 0;
    flex: 1;
    line-height: 1.4;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    position: relative;
    margin-left: 1rem;
    flex-shrink: 0;
}

.faq-toggle i {
    font-size: 16px;
    color: var(--lab-neon);
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
    color: var(--lab-neon);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(0, 212, 255, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.answer-content {
    padding: 0 2rem 2rem;
    color: #00d4ff;
    line-height: 1.6;
}

.answer-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.answer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.answer-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(20, 255, 114, 0.1);
    border: 1px solid rgba(20, 255, 114, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #14ff72;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(20, 255, 114, 0.2);
}

.answer-feature:hover {
    background: rgba(20, 255, 114, 0.2);
    border-color: rgba(20, 255, 114, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(20, 255, 114, 0.4);
}

.feature-dot {
    font-size: 1rem;
    color: #14ff72;
    filter: drop-shadow(0 0 5px rgba(20, 255, 114, 0.5));
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(20px);
}

.faq-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.faq-cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.faq-cta-text {
    font-size: 1.2rem;
    color: #00d4ff;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.faq-cta-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 0;
    height: 44px;
    box-sizing: border-box;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.faq-cta-btn .btn-content {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.faq-cta-btn .btn-icon {
    font-size: 0.8rem;
}

/* FAQ Animations */
@keyframes faqPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
    }
}

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

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 0 !important; /* Remove padding on mobile with !important */
    }
    
    /* Ensure pricing page FAQ section padding is removed */
    body.lab-theme .faq-section {
        padding: 0 !important;
    }
    
    .faq-container {
        padding: 0 1rem; /* Minimal container padding */
        padding-top: 2rem; /* Reduced top padding */
    }
    
    /* FAQ icon glow 50px on mobile */
    .faq-icon-glow {
        width: 50px !important;
        height: 50px !important;
    }
}

@media (max-width: 1024px) {
    
    
    .faq-subtitle {
        font-size: 1.1rem !important;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-icon-text {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .faq-question-text {
        font-size: 1.1rem;
    }
    
    .answer-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .answer-features {
        flex-direction: column;
    }
    
    .faq-cta-content h3 {
        font-size: 2rem;
    }
    
    .faq-cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 0 !important; /* Remove padding on small mobile with !important */
    }
    
    /* Ensure pricing page FAQ section padding is removed */
    body.lab-theme .faq-section {
        padding: 0 !important;
    }
    
    .faq-container {
        
        padding-top: 1.5rem; /* Reduced top padding */
    }
    
    /* FAQ icon glow 50px on small mobile */
    .faq-icon-glow {
        width: 50px !important;
        height: 50px !important;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 2rem !important;
    }
    
    .faq-subtitle {
        font-size: 1rem !important;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-icon-text {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .answer-content {
        padding: 0 1rem 1rem;
    }
    
    .faq-cta {
        padding: 1.5rem 1.5rem; /* Reduced CTA padding */
    }
    
    .faq-cta-content h3 {
        font-size: 1.8rem;
    }
    
    .faq-cta-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* New Hero Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    }
}

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

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

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

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes pcFloat {
    0%, 100% {
        transform: translateY(0) rotate(2deg);
    }
    50% {
        transform: translateY(-8px) rotate(-2deg);
    }
}

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

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

@keyframes dataFlow {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes livePulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

@keyframes mirrorPulse {
    0%, 100% {
        transform: scale(1);
        background: rgba(0, 212, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        background: rgba(0, 212, 255, 0.5);
    }
}

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

/* New 3D Background Animations */
@keyframes sphereRotate {
    0% { transform: translate(-50%, -50%) rotateY(0deg) rotateX(0deg); }
    100% { transform: translate(-50%, -50%) rotateY(360deg) rotateX(360deg); }
}

@keyframes corePulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 50px rgba(0, 212, 255, 0.6);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 80px rgba(0, 212, 255, 0.8);
    }
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes sphereParticle {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg) translateX(100px) rotate(0deg);
        opacity: 0;
    }
    50% { opacity: 1; }
    100% { 
        transform: translate(-50%, -50%) rotate(360deg) translateX(100px) rotate(-360deg);
        opacity: 0;
    }
}

@keyframes nodePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 0 30px rgba(0, 212, 255, 1);
    }
}

@keyframes digitalRain {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

/* Enhanced Badge Animations */
@keyframes badgeSweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

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

/* Character Animation */
@keyframes charReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) rotateX(90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

/* Progress Fill Animation */
@keyframes progressFill {
    0% { stroke-dashoffset: 100; }
    100% { stroke-dashoffset: 0; }
}

/* CTA Particle Animation */
@keyframes ctaParticle {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--x, 50px), var(--y, -50px)) scale(1);
        opacity: 0;
    }
}

/* Trust Glow Animation */
@keyframes trustGlow {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Image Animations */
@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-10px) rotateY(2deg);
    }
}

@keyframes overlayGlow {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes overlayParticle {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--x, 50px), var(--y, -50px)) scale(1);
        opacity: 0;
    }
}

@keyframes cornerGlow {
    0%, 100% {
        border-color: rgba(0, 212, 255, 0.6);
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    }
    50% {
        border-color: rgba(0, 212, 255, 1);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    }
}

@keyframes statIndicator {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Liquid Morphing Animations */
@keyframes blobMorph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: scale(1) rotate(0deg);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: scale(1.1) rotate(90deg);
    }
    50% {
        border-radius: 50% 30% 60% 40% / 40% 60% 30% 70%;
        transform: scale(0.9) rotate(180deg);
    }
    75% {
        border-radius: 40% 50% 30% 60% / 60% 30% 70% 40%;
        transform: scale(1.05) rotate(270deg);
    }
}

@keyframes organicMorph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: scale(1) rotate(0deg);
    }
    33% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: scale(1.2) rotate(120deg);
    }
    66% {
        border-radius: 50% 30% 60% 40% / 40% 60% 30% 70%;
        transform: scale(0.8) rotate(240deg);
    }
}

@keyframes fluidFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-15px);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) translateX(5px);
        opacity: 0.9;
    }
}

@keyframes waveMorph {
    0%, 100% {
        transform: translateX(-50%) scaleX(1);
        border-radius: 50% 50% 0 0;
    }
    25% {
        transform: translateX(-25%) scaleX(1.2);
        border-radius: 60% 40% 0 0;
    }
    50% {
        transform: translateX(0%) scaleX(0.8);
        border-radius: 40% 60% 0 0;
    }
    75% {
        transform: translateX(-75%) scaleX(1.1);
        border-radius: 70% 30% 0 0;
    }
}

@keyframes liquidFlow {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateX(10px) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes liquidMorph {
    0%, 100% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        transform: scale(1);
    }
    25% {
        border-radius: 60% 40% 40% 60% / 60% 40% 40% 60%;
        transform: scale(1.05);
    }
    50% {
        border-radius: 40% 60% 60% 40% / 40% 60% 60% 40%;
        transform: scale(0.95);
    }
    75% {
        border-radius: 50% 50% 60% 40% / 50% 50% 60% 40%;
        transform: scale(1.02);
    }
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) scale(1.1);
        opacity: 1;
    }
}

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

@keyframes bubbleRise {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

@keyframes innerBlob {
    0%, 100% {
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(1);
    }
    25% {
        border-radius: 60% 40% 40% 60% / 60% 40% 40% 60%;
        transform: translate(-50%, -50%) scale(1.1);
    }
    50% {
        border-radius: 40% 60% 60% 40% / 40% 60% 60% 40%;
        transform: translate(-50%, -50%) scale(0.9);
    }
    75% {
        border-radius: 50% 50% 60% 40% / 50% 50% 60% 40%;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes liquidFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(1deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

@keyframes rippleExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

@keyframes floatingBlob {
    0%, 100% {
        transform: translateY(0) scale(1);
        border-radius: 50%;
    }
    25% {
        transform: translateY(-20px) scale(1.1);
        border-radius: 60% 40% 40% 60% / 60% 40% 40% 60%;
    }
    50% {
        transform: translateY(-10px) scale(0.9);
        border-radius: 40% 60% 60% 40% / 40% 60% 60% 40%;
    }
    75% {
        transform: translateY(-30px) scale(1.05);
        border-radius: 50% 50% 60% 40% / 50% 50% 60% 40%;
    }
}

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

.badge-accent {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    animation: accentPulse 2s ease-in-out infinite;
}

/* Hero Heading */
.hero-heading {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.heading-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.heading-sub {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
}

/* Hero Description */
.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #667eea;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.5s forwards;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.btn-play {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn-secondary:hover .btn-play {
    transform: scale(1.1);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 2s forwards;
}

.cta-primary {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cta-text {
    font-weight: 600;
}

.cta-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

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

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.8s forwards;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.trust-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right Column */
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 4;
}

/* Device Showcase */
.device-showcase {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

/* Phone Device */
.phone-device {
    position: relative;
    width: 100px;
    height: 200px;
    animation: phoneFloat 4s ease-in-out infinite;
}

.phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border: 2px solid #4a5568;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: linear-gradient(145deg, #1a202c, #2d3748);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem;
}

.phone-header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-status {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(72, 187, 120, 0.2);
    border: 1px solid #48bb78;
    border-radius: 8px;
    padding: 0.25rem 0.5rem;
}

.status-dot {
    width: 4px;
    height: 4px;
    background: #48bb78;
    border-radius: 50%;
    animation: statusBlink 1s ease-in-out infinite;
}

.phone-status span {
    font-size: 0.5rem;
    color: #48bb78;
    font-weight: 600;
}

.phone-apps {
    display: flex;
    gap: 0.4rem;
}

.app-icon {
    width: 24px;
    height: 24px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

/* Connection */
.connection {
    position: relative;
    width: 60px;
    height: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connection-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 1px;
}

.connection-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dot {
    width: 3px;
    height: 3px;
    background: #667eea;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.7s; }
.dot:nth-child(3) { animation-delay: 1.4s; }

/* Laptop Device */
.laptop-device {
    position: relative;
    width: 140px;
    height: 100px;
    animation: laptopFloat 4s ease-in-out infinite;
    animation-delay: 1s;
}

.laptop-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border: 2px solid #4a5568;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.laptop-screen {
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: linear-gradient(145deg, #1a202c, #2d3748);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.laptop-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem;
}

.laptop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.laptop-title {
    font-size: 0.6rem;
    color: #667eea;
    font-weight: 600;
}

.laptop-status {
    font-size: 0.5rem;
    color: #48bb78;
    font-weight: 600;
}

.laptop-apps {
    display: flex;
    gap: 0.4rem;
}

.laptop-app {
    width: 28px;
    height: 28px;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.laptop-metrics {
    display: flex;
    gap: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.metric-label {
    font-size: 0.5rem;
    color: #9ca3af;
}

.metric-value {
    font-size: 0.6rem;
    color: #10b981;
    font-weight: 700;
}

.laptop-base {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 6px;
    background: #374151;
    border-radius: 0 0 3px 3px;
}

/* Feature Cards */
.feature-cards {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.8s forwards;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 120px;
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2);
}

.feature-card .card-icon {
    color: #667eea;
}

.feature-card .card-content h4 {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0 0 0.1rem 0;
}

.feature-card .card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    margin: 0;
}

/* Floating UI Elements */
.floating-ui {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 4;
}

.ui-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 0.8rem 1.2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    animation: uiCardFloat 4s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.ui-card:nth-child(1) { animation-delay: 0s; }
.ui-card:nth-child(2) { animation-delay: 1s; }
.ui-card:nth-child(3) { animation-delay: 2s; }

.ui-card:hover {
    transform: translateX(-5px) scale(1.05);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.card-icon {
    font-size: 1.2rem;
    animation: cardIconPulse 2s ease-in-out infinite;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.card-title {
    font-size: 0.7rem;
    color: #b8c5d6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-value {
    font-size: 0.9rem;
    color: #00d4ff;
    font-weight: 700;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 3s forwards;
    z-index: 3;
}

.scroll-text {
    font-size: 0.9rem;
    color: #b8c5d6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.arrow-line {
    width: 2px;
    height: 15px;
    background: linear-gradient(to bottom, #00d4ff, transparent);
    border-radius: 1px;
    animation: arrowBounce 2s ease-in-out infinite;
}

.arrow-line:nth-child(2) {
    animation-delay: 0.3s;
}

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

@keyframes sphereFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(180deg); }
}

@keyframes corePulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 100px rgba(0, 255, 136, 0.3);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 0 0 150px rgba(0, 255, 136, 0.5);
    }
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes particleFloat {
    0% { 
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { 
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

@keyframes digitalRain {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

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

@keyframes badgeSweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

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

@keyframes charReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes featureSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes ctaParticle {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    50% { opacity: 1; }
    100% {
        transform: translate(var(--x, 50px), var(--y, -50px)) scale(1);
        opacity: 0;
    }
}

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

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes pcFloat {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-12px) rotate(-2deg); }
}

@keyframes appPulse {
    0%, 100% { 
        transform: scale(1);
        background: rgba(0, 212, 255, 0.2);
    }
    50% { 
        transform: scale(1.1);
        background: rgba(0, 212, 255, 0.4);
    }
}

@keyframes indicatorPulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }
    50% { 
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    }
}

@keyframes dotBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

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

@keyframes beamGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes beamParticle {
    0% { 
        transform: translateX(-100%);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { 
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes dataBitFlow {
    0% { 
        transform: translateX(-100%);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { 
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes headerPulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
    }
    50% { 
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    }
}

@keyframes mirrorAppPulse {
    0%, 100% { 
        transform: scale(1);
        background: rgba(0, 212, 255, 0.3);
    }
    50% { 
        transform: scale(1.05);
        background: rgba(0, 212, 255, 0.5);
    }
}

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

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

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

@keyframes elegantFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

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

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

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

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

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes particleFlow {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

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

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

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

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .device-showcase {
        gap: 1.5rem;
    }
    
    .pc-device {
        width: 280px;
        height: 200px;
    }
    
    .phone-device {
        width: 120px;
        height: 240px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }
    
    .hero-left {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .trust-stats {
        justify-content: center;
    }
    
    .device-showcase {
        flex-direction: column;
        gap: 2rem;
    }
    
    .connection-beam {
        width: 8px;
        height: 100px;
        transform: rotate(90deg);
    }
    
    .floating-ui {
        position: relative;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .ui-card {
        flex-direction: column;
        text-align: center;
        padding: 0.6rem 1rem;
    }
}

/* Additional Modal Styles for Footer */
.feedback-content, .status-content {
    color: white;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.9rem;
}

.feedback-input, .feedback-select, .feedback-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: white;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.feedback-input:focus, .feedback-select:focus, .feedback-textarea:focus {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.feedback-textarea {
    resize: vertical;
    min-height: 100px;
}

.feedback-submit-btn {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feedback-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.feedback-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Status Modal Styles */
.status-overview {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.status-overview h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    width: fit-content;
    margin: 0 auto;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: statusBlink 2s ease-in-out infinite;
}

.status-text {
    color: #00ff88;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-services {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 10px;
}

.service-name {
    color: #b8c5d6;
    font-weight: 500;
}

.service-indicator {
    color: #00ff88;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-indicator.online::before {
    content: '●';
    color: #00ff88;
    margin-right: 0.5rem;
    animation: statusBlink 2s ease-in-out infinite;
}

.status-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.status-footer p {
    color: #888;
    font-size: 0.8rem;
    margin: 0;
}

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

@media (max-width: 768px) {
    .feedback-form {
        gap: 1rem;
    }
    
    .service-status {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .phone-device {
        width: 100px;
        height: 200px;
    }
    
    .pc-device {
        width: 240px;
        height: 180px;
    }
    
    .floating-ui {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Modern Hero Section */
.modern-hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    padding: 100px 0 60px;
}

/* Dynamic Background */
.hero-dynamic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Morphing Shapes */
.morphing-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
    animation: morphShape 20s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 10%;
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 15%;
    width: 150px;
    height: 150px;
    animation-delay: 5s;
}

.shape-3 {
    bottom: 20%;
    left: 20%;
    width: 180px;
    height: 180px;
    animation-delay: 10s;
}

.shape-4 {
    top: 30%;
    right: 30%;
    width: 120px;
    height: 120px;
    animation-delay: 15s;
}

/* Energy Waves */
.energy-waves {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    animation: waveFlow 8s ease-in-out infinite;
}

.wave-1 { top: 25%; animation-delay: 0s; }
.wave-2 { top: 50%; animation-delay: 2s; }
.wave-3 { top: 75%; animation-delay: 4s; }

/* Floating Orbs */
.floating-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
    animation: orbFloat 12s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.orb-1 { top: 20%; left: 20%; animation-delay: 0s; }
.orb-2 { top: 60%; right: 25%; animation-delay: 4s; }
.orb-3 { bottom: 30%; left: 60%; animation-delay: 8s; }

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

/* Left Panel */
.hero-left-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.badge-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 136, 0.2));
    border-radius: 50px;
    animation: badgePulse 3s ease-in-out infinite;
}

.badge-text {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    position: relative;
}

/* Main Title */
.hero-main-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.title-primary {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.title-word {
    display: inline-block;
    animation: titleReveal 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.title-word:nth-child(1) { animation-delay: 0.2s; }
.title-word:nth-child(2) { animation-delay: 0.4s; }
.title-word:nth-child(3) { animation-delay: 0.6s; }

.title-accent {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 2px;
    animation: accentLineExpand 1s ease-out 1s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.accent-text {
    color: #00ff88;
    font-size: 1.2rem;
    font-weight: 600;
    animation: accentTextReveal 0.8s ease-out 1.2s forwards;
    opacity: 0;
    transform: translateX(-20px);
}

/* Description */
.hero-description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.desc-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0;
    animation: descReveal 0.8s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.desc-highlights {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.highlight {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 500;
    animation: highlightReveal 0.8s ease-out 1.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.highlight:nth-child(1) { animation-delay: 1.4s; }
.highlight:nth-child(2) { animation-delay: 1.6s; }
.highlight:nth-child(3) { animation-delay: 1.8s; }

/* Performance Metrics */
.hero-metrics {
    display: flex;
    gap: 2rem;
    animation: metricsReveal 0.8s ease-out 2s forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

.metric-circle {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.metric-bg {
    fill: none;
    stroke: rgba(0, 212, 255, 0.2);
    stroke-width: 3;
}

.metric-progress {
    fill: none;
    stroke: #00d4ff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 20;
    animation: metricProgress 2s ease-out 2.5s forwards;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00d4ff;
    z-index: 2;
    position: relative;
}

.metric-label {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

/* Action Buttons */
.hero-actions-modern {
    display: flex;
    gap: 1rem;
    animation: actionsReveal 0.8s ease-out 2.2s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.action-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 0;
    height: 44px;
    box-sizing: border-box;
}

.action-btn.primary-modern {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-btn.primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.action-btn.secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    position: relative;
}

.action-btn.secondary-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 8px;
    z-index: -1;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.action-btn.secondary-modern:hover::before {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}



/* Right Panel */
.hero-right-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: rightPanelReveal 1s ease-out 1.5s forwards;
    opacity: 0;
    transform: translateX(50px);
}

/* Device Showcase */
.device-showcase {
    position: relative;
    width: 100%;
    height: 500px;
}

.device {
    position: absolute;
    animation: deviceFloat 6s ease-in-out infinite;
}

.phone-device {
    top: 20%;
    left: 10%;
    width: 120px;
    height: 240px;
    animation-delay: 0s;
}

.laptop-device {
    bottom: 20%;
    right: 15%;
    width: 300px;
    height: 200px;
    animation-delay: 2s;
}

.device-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a4a, #1a1a2e);
    border-radius: 12px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    overflow: hidden;
}

.device-screen {
    position: absolute;
    top: 5%;
    left: 5%;
    right: 5%;
    bottom: 5%;
    background: #0a0a1a;
    border-radius: 8px;
    overflow: hidden;
}

.screen-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 1rem;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.app-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 4px;
    animation: appPulse 2s ease-in-out infinite;
}

.app-icon:nth-child(1) { animation-delay: 0s; }
.app-icon:nth-child(2) { animation-delay: 0.5s; }
.app-icon:nth-child(3) { animation-delay: 1s; }
.app-icon:nth-child(4) { animation-delay: 1.5s; }

.connection-indicator {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
}

.indicator-dot {
    width: 6px;
    height: 6px;
    background: #666;
    border-radius: 50%;
    animation: indicatorPulse 1.5s ease-in-out infinite;
}

.indicator-dot.active {
    background: #00d4ff;
    animation: indicatorPulse 1.5s ease-in-out infinite;
}

.device-base {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 10px;
    background: linear-gradient(135deg, #2a2a4a, #1a1a2e);
    border-radius: 0 0 8px 8px;
}

.device-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.mirror-window {
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    border-radius: 8px;
    overflow: hidden;
}

.window-header {
    height: 20px;
    background: #2a2a4a;
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
}

.window-dots {
    display: flex;
    gap: 0.25rem;
}

.window-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #666;
}

.window-dots .dot:nth-child(1) { background: #ff5f56; }
.window-dots .dot:nth-child(2) { background: #ffbd2e; }
.window-dots .dot:nth-child(3) { background: #27ca3f; }

.window-content {
    padding: 1rem;
    height: calc(100% - 20px);
}

.mirror-feed {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feed-line {
    height: 4px;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 2px;
    animation: feedPulse 2s ease-in-out infinite;
}

.feed-line:nth-child(1) { animation-delay: 0s; }
.feed-line:nth-child(2) { animation-delay: 0.5s; }
.feed-line:nth-child(3) { animation-delay: 1s; }

/* Connection Beam */
.connection-beam {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    border-radius: 2px;
    animation: beamGlow 3s ease-in-out infinite;
}

.beam-core {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    border-radius: 2px;
    animation: beamCore 2s ease-in-out infinite;
}

.beam-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.beam-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #00ff88;
    border-radius: 50%;
    animation: beamParticle 4s ease-in-out infinite;
}

.beam-particle:nth-child(1) { top: -5px; left: 10%; animation-delay: 0s; }
.beam-particle:nth-child(2) { top: -5px; left: 30%; animation-delay: 1s; }
.beam-particle:nth-child(3) { top: -5px; left: 50%; animation-delay: 2s; }
.beam-particle:nth-child(4) { top: -5px; left: 70%; animation-delay: 3s; }
.beam-particle:nth-child(5) { top: -5px; left: 90%; animation-delay: 4s; }

/* Floating UI */
.floating-ui {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ui-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    animation: uiCardFloat 8s ease-in-out infinite;
}

.ui-card:nth-child(1) { animation-delay: 0s; }
.ui-card:nth-child(2) { animation-delay: 2s; }
.ui-card:nth-child(3) { animation-delay: 4s; }

.ui-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.card-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.card-value {
    font-size: 1rem;
    font-weight: 700;
    color: #00d4ff;
    line-height: 1;
}

.card-label {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: scrollIndicatorFloat 3s ease-in-out infinite;
}

.scroll-text {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.arrow-line {
    width: 20px;
    height: 2px;
    background: #00d4ff;
    border-radius: 1px;
    animation: arrowBounce 2s ease-in-out infinite;
}

.arrow-line:nth-child(1) { transform: rotate(45deg) translateX(-5px); }
.arrow-line:nth-child(2) { transform: rotate(-45deg) translateX(-5px); }

/* Animations */
@keyframes morphShape {
    0%, 100% { border-radius: 50%; transform: scale(1) rotate(0deg); }
    25% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: scale(1.1) rotate(90deg); }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; transform: scale(0.9) rotate(180deg); }
    75% { border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%; transform: scale(1.05) rotate(270deg); }
}

@keyframes waveFlow {
    0%, 100% { transform: translateX(-100%); opacity: 0; }
    50% { transform: translateX(100%); opacity: 1; }
}

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

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes accentLineExpand {
    to {
        transform: scaleX(1);
    }
}

@keyframes accentTextReveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes descReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes highlightReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes metricsReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes metricProgress {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes actionsReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rightPanelReveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

@keyframes feedPulse {
    0%, 100% { opacity: 0.7; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.1); }
}

@keyframes beamGlow {
    0%, 100% { opacity: 0.3; box-shadow: 0 0 10px rgba(0, 212, 255, 0.3); }
    50% { opacity: 0.8; box-shadow: 0 0 20px rgba(0, 212, 255, 0.6); }
}

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

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

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

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

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

@keyframes badgePulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

@keyframes btnParticleFloat {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    50% { transform: translateY(-20px) translateX(10px); opacity: 1; }
    100% { transform: translateY(-40px) translateX(20px); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-modern-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .title-primary {
        font-size: 3.5rem;
    }
    
    .hero-metrics {
        justify-content: center;
    }
    
    .hero-actions-modern {
        justify-content: center;
    }
    
    .device-showcase {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .modern-hero-section {
        padding: 80px 0 40px;
    }
    
    .title-primary {
        font-size: 3rem;
    }
    
    .desc-text {
        font-size: 1.1rem;
    }
    
    .hero-metrics {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .hero-actions-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .device-showcase {
        height: 300px;
    }
    
    .phone-device {
        width: 80px;
        height: 160px;
    }
    
    .laptop-device {
        width: 200px;
        height: 120px;
    }
    
    .floating-ui {
        position: relative;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .ui-card {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .title-primary {
        font-size: 2.5rem;
    }
    
    .desc-text {
        font-size: 1rem;
    }
    
    .desc-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .highlight {
        width: 100%;
        text-align: center;
    }
    
    .device-showcase {
        height: 250px;
    }
    
    .phone-device {
        width: 60px;
        height: 120px;
    }
    
    .laptop-device {
        width: 150px;
        height: 100px;
    }
    
    .floating-ui {
        flex-direction: column;
        align-items: center;
    }
    
    .ui-card {
        width: 100%;
        max-width: 200px;
    }
}

/* Background Elements */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #00d4ff;
    border-radius: 50%;
    animation: heroParticleFloat 8s ease-in-out infinite;
    opacity: 0.6;
}

.hero-particle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.hero-particle:nth-child(2) { top: 60%; right: 20%; animation-delay: 2s; }
.hero-particle:nth-child(3) { bottom: 30%; left: 80%; animation-delay: 4s; }
.hero-particle:nth-child(4) { top: 80%; left: 60%; animation-delay: 1s; }
.hero-particle:nth-child(5) { bottom: 60%; right: 40%; animation-delay: 3s; }
.hero-particle:nth-child(6) { top: 40%; left: 40%; animation-delay: 5s; }

.hero-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.03;
}

.hero-grid .grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    height: 1px;
    width: 100%;
}

.hero-grid .grid-line:nth-child(1) { top: 25%; }
.hero-grid .grid-line:nth-child(2) { top: 50%; }
.hero-grid .grid-line:nth-child(3) { top: 75%; }

.hero-glow {
    position: absolute;
    width: 100%;
    height: 100%;
}

.glow-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlowFloat 12s ease-in-out infinite;
}

.glow-orb:nth-child(1) { top: 10%; right: 10%; animation-delay: 0s; }
.glow-orb:nth-child(2) { bottom: 20%; left: 15%; animation-delay: 6s; }

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

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

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
}

.title-normal {
    color: #ffffff;
}

.title-highlight {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-description {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #00d4ff;
    margin: 0;
    max-width: 500px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.25rem;
    opacity: 0;
    animation: slideInUp 0.8s ease-out 1.4s forwards;
}

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

.hero-buttons-center {
    display: flex;
    justify-content: center;
}

.hero-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 0;
    height: 44px;
    box-sizing: border-box;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn.primary {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}



/* .hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    background: linear-gradient(45deg, #00ff88, #00d4ff);
} */

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    position: relative;
}



.hero-btn.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 8px;
    z-index: -1;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

/* .hero-btn.secondary:hover::before {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
} */

.hero-btn.outline {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/* .hero-btn.outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    background: linear-gradient(45deg, #00ff88, #00d4ff);
} */

.btn-icon {
    font-size: 1.2rem;
}

.btn-text {
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: slideInUp 0.8s ease-out 1.2s forwards;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    /* background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%); */
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-image:hover::before {
    opacity: 1;
}

.hero-img {
    max-width: 120%;
    height: auto;
    transition: all 0.3s ease;
    animation: heroImageFloat 6s ease-in-out infinite;
    cursor: pointer;
}



.hero-img:active {
    transform: translateY(-3px) scale(0.98);
    transition: all 0.1s ease;
}



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

@keyframes heroImagePulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    }
    50% { 
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        padding: 160px 2rem 0 !important;
    }
    
    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem;
        text-align: center;
        grid-template-columns: 1fr !important;
        grid-template-areas: none !important;
    }
    
    .hero-content {
        order: 1 !important;
        grid-area: unset !important;
        width: 100% !important;
        margin-top: 1rem !important;
    }
    
    .hero-image {
        order: 2 !important;
        grid-area: unset !important;
        width: 90% !important;
        margin-top: 0.5rem !important;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        margin: 0 auto;
    }
    
    .hero-buttons {
        align-items: center;
    }
    
    .hero-buttons-row {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile: Additional styling for smaller screens */
@media (max-width: 768px) {
    .hero-container {
        gap: 1.5rem;
    }
    
    .hero-section {
        padding: 100px 1rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.8rem;
    }
}



@media (max-width: 480px) {
    .hero-container {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .hero-section {
        padding: 100px 1rem 0 !important;
    }
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .hero-buttons-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.75rem;
    }
    
    .btn-icon {
        font-size: 1rem;
    }
    
    .hero-img {
        max-width: 100%;
        height: auto;
    }
}

/* Admin Styles */
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
}

.admin-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 25px;
}

.admin-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
}

.admin-header p {
    font-size: 1.2rem;
    color: #00d4ff;
    opacity: 0.8;
}

.admin-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 25px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.admin-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #00d4ff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.form-group small {
    color: #00d4ff;
    opacity: 0.7;
    font-size: 0.8rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.plans-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.plan-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

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

.plan-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.plan-type {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-type.free {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.plan-type.professional {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
}

.plan-type.enterprise {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

.plan-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ff88;
}

.plan-details {
    margin-bottom: 1.5rem;
}

.plan-description {
    color: white;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.plan-features,
.plan-limits {
    color: #14ff72;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.plan-limits {
    display: flex;
    gap: 1rem;
}

.plan-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-edit,
.btn-toggle,
.btn-delete,
.btn-import {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-edit {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.btn-edit:hover {
    background: rgba(0, 212, 255, 0.3);
}

.btn-toggle {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.btn-toggle:hover {
    background: rgba(0, 255, 136, 0.3);
}

.btn-delete {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.btn-delete:hover {
    background: rgba(255, 107, 107, 0.3);
}

.btn-import {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.btn-import:hover {
    background: rgba(255, 193, 7, 0.3);
}

.quick-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-action {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-action:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.loading,
.no-plans {
    text-align: center;
    padding: 3rem;
    color: #00d4ff;
    font-size: 1.1rem;
}

.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

.notification.success {
    background: rgba(0, 255, 136, 0.9);
}

.notification.error {
    background: rgba(255, 107, 107, 0.9);
}

.notification.info {
    background: rgba(0, 212, 255, 0.9);
}

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

.default-plan {
    border-color: rgba(255, 193, 7, 0.3);
    background: rgba(255, 193, 7, 0.05);
}

/* Responsive Admin */
@media (max-width: 768px) {
    .admin-container {
        padding: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .plan-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .plan-actions {
        justify-content: center;
    }
    
    .quick-actions {
        justify-content: center;
    }
}


.pricing-card.free {
    border-color: rgba(0, 212, 255, 0.3);
}


/* Partners Page Styles */
.partners-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 25%;
    animation-delay: 1s;
}

.shape-5 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    animation-delay: 3s;
}

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: pulse 8s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3), transparent);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.3), transparent);
    bottom: 10%;
    left: 30%;
    animation-delay: 4s;
}

/* Partners Hero Section */
.partners-hero {
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.title-normal {
    display: block;
    color: #ffffff;
}

.title-highlight {
    display: block;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00ff88;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Partnership Network Visual */
.partnership-network {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.network-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.node-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.node-2 {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.node-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.node-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
}

.node-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    height: 2px;
    border-radius: 1px;
    animation: pulse 3s ease-in-out infinite;
}

.line-1 {
    width: 120px;
    top: 50px;
    left: 80px;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.line-2 {
    width: 120px;
    top: 50px;
    right: 80px;
    transform: rotate(-45deg);
    animation-delay: 1s;
}

.line-3 {
    width: 120px;
    bottom: 50px;
    left: 80px;
    transform: rotate(-45deg);
    animation-delay: 2s;
}

.line-4 {
    width: 120px;
    bottom: 50px;
    right: 80px;
    transform: rotate(45deg);
    animation-delay: 3s;
}

.line-5 {
    width: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    animation-delay: 4s;
}

/* Partnership Types Section */
.partnership-types {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
}

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.highlight-text {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

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

.partnership-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 25px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 255, 136, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.partnership-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.card-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.card-badge {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: auto;
}

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

.card-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.feature {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.card-footer {
    text-align: center;
}

.card-btn {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

/* Success Stories Section */
.success-stories {
    padding: 4rem 2rem;
}

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

.story-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 25px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.2);
}

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

.partner-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.partner-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.3rem 0;
}

.partner-type {
    font-size: 0.9rem;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content {
    margin-bottom: 1.5rem;
}

.story-quote {
    color: #cccccc;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.story-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 0.3rem;
}

.metric-label {
    font-size: 0.8rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Partnership Process Section */
.partnership-process {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00d4ff, #00ff88);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.step-content {
    flex: 1;
    padding: 15px 2rem;
    text-align: center;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

/* Partnership CTA Section */
.partnership-cta {
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
}

.cta-btn.secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.cta-btn.primary:hover {
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
}

/* Partners Section */
.partners-section {
    padding: 6rem 2rem 4rem;
    min-height: 100vh;
    display: flex;
   width: 100%;
    align-items: center;
    position: relative;
}

/* Tablet: Remove padding for partners section */
@media (max-width: 1024px) {
    .partners-section {
        padding: 0;
    }
}

.partners-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lab-gold), #fff1a8, var(--lab-neon), var(--lab-gold));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    box-shadow: 0 0 20px rgba(230, 193, 74, 0.8);
    animation: titleShine 6s linear infinite;
    filter: brightness(1.2);
}

/* Partner Details Cards */
.partner-details-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.partner-card {
    background: rgba(7, 27, 15, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(20, 255, 114, 0.3);
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    max-width: 335px;
    flex: 0 0 auto;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--lab-gold), var(--lab-neon));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}


/* Removed old card-header styles - now using vertical layout */

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    margin-bottom: 0.5rem;
}

.logo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: none;
}

.partner-info {
    flex: 1;
}

.partner-name {
    margin: 0;
}

.partner-name h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
}

.partner-badge {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    background: rgba(20, 255, 114, 0.1);
    border: 1px solid rgba(20, 255, 114, 0.3);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    display: inline-block;
}

/* Removed old card-content styles - now using vertical layout */

.partner-description {
    margin: 0;
}

.partner-description p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.partner-button {
    margin-top: auto;
    width: 100%;
}

.partner-website {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, var(--lab-gold), #fff1a8, var(--lab-neon), var(--lab-gold));
    background-size: 200% 100%;
    animation: titleShine 6s linear infinite;
    color: #071b0f;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.partner-website:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(20, 255, 114, 0.3);
}

.website-icon {
    font-size: 1.1rem;
}

    .website-text {
        font-size: 0.9rem;
    }

    /* Loading and No Partners States */
    .loading-partners {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 4rem 2rem;
        min-height: 60vh;
        text-align: center;
    }

    .lottie-loader {
        width: 120px;
        height: 120px;
        margin: 0 auto;
        position: relative;
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
    }

    .fallback-loader {
        position: relative;
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .loader-ring {
        position: absolute;
        width: 100%;
        height: 100%;
        border: 3px solid transparent;
        border-top: 3px solid #00d4ff;
        border-radius: 50%;
        animation: loaderSpin 1.5s linear infinite;
    }

    .loader-ring:nth-child(1) {
        animation-delay: 0s;
        border-top-color: #00d4ff;
    }

    .loader-ring:nth-child(2) {
        animation-delay: 0.3s;
        border-top-color: #00ff88;
        width: 80%;
        height: 80%;
        top: 10%;
        left: 10%;
    }

    .loader-ring:nth-child(3) {
        animation-delay: 0.6s;
        border-top-color: #ff6b6b;
        width: 60%;
        height: 60%;
        top: 20%;
        left: 20%;
    }

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

    .no-partners-message {
        text-align: center;
        padding: 3rem;
        color: #cccccc;
        max-width: 500px;
        margin: 0 auto;
    }

    .no-partners-message h3 {
        color: #ffffff;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .no-partners-message p {
        font-size: 1rem;
        margin: 0;
        line-height: 1.6;
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .partner-details-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .partners-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column !important;
        text-align: center;
    }
    
    .step-content {
        padding: 1rem 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .partner-details-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
        padding: 0 1rem;
    }
    
    .partner-card {
        width: 100%;
        max-width: 380px;
        min-width: 300px;
    }
    
    .partner-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

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

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

/* User Key Section Styling */
.user-key-section {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(20, 255, 114, 0.05);
    border: 1px solid rgba(20, 255, 114, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.key-info h3 {
    color: #14ff72;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.key-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(20, 255, 114, 0.1);
    border: 1px solid rgba(20, 255, 114, 0.3);
    border-radius: 15px;
}

.key-value {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: #14ff72;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(20, 255, 114, 0.4);
}

.copy-key-btn {
    background: rgba(20, 255, 114, 0.2);
    border: 1px solid rgba(20, 255, 114, 0.4);
    color: #14ff72;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.copy-key-btn:hover {
    background: rgba(20, 255, 114, 0.3);
    border-color: rgba(20, 255, 114, 0.6);
    transform: translateY(-2px);
}

.key-details {
    text-align: center;
}

.key-details p {
    margin: 0.5rem 0;
    color: #b8f5d3;
    font-size: 0.95rem;
}

.key-details strong {
    color: #e9ffee;
}

.status-active {
    color: #14ff72;
    font-weight: 600;
    background: rgba(20, 255, 114, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
}