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

        :root {
            --primary: #0891b2;
            --primary-dark: #0e7490;
            --primary-light: #06b6d4;
            --secondary: #8b5cf6;
            --accent: #ec4899;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            --dark: #0f172a;
            --dark-light: #1e293b;
            --dark-lighter: #334155;
            --text-primary: #f1f5f9;
            --text-secondary: #cbd5e1;
            --text-muted: #94a3b8;
            --border: #334155;
        }

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

        /* Animated Background */
        #bg-3d {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            opacity: 0.6;
            transition: opacity 0.5s ease;
        }

        .bg-animated {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        }

        /* 3D Card Styles */
        .card-3d {
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
            will-change: transform;
        }

        .card-3d:hover {
            transform: perspective(1000px) rotateY(5deg) rotateX(5deg) translateY(-10px);
            box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
        }

        .card-3d .card-front,
        .card-3d .card-back {
            backface-visibility: hidden;
            transition: transform 0.6s ease;
        }

        .card-3d .card-back {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transform: rotateY(180deg);
        }

        .bg-animated::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
            animation: bgMove 20s ease-in-out infinite;
        }

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

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

        .navbar.scrolled {
            background: rgba(15, 23, 42, 0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

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

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

        .nav-logo {
            width: 40px;
            height: 40px;
            border-radius: 10px;
        }

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

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

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

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
        }

        /* Dropdown Menu */
        .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 0.5rem 0;
            min-width: 200px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1000;
            list-style: none;
        }

        .nav-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-link {
            display: block;
            padding: 0.75rem 1.5rem;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .dropdown-link:hover {
            background: rgba(99, 102, 241, 0.1);
            color: var(--primary-light);
            padding-left: 2rem;
        }

        .dropdown-link i {
            margin-right: 0.5rem;
            width: 20px;
            text-align: center;
        }







        .btn-dashboard {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            background-size: 200% 200%;
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: gradientShift 3s ease infinite;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }

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

        .btn-dashboard:hover::before {
            left: 150%;
        }

        .btn-dashboard:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 
                0 8px 25px rgba(99, 102, 241, 0.5),
                0 0 25px rgba(99, 102, 241, 0.3);
            animation: gradientMove 0.8s ease infinite;
        }

        .btn-dashboard:active {
            transform: translateY(0) scale(0.98);
        }












        /* Currency Switcher */
        /* .currency-switcher {
            position: fixed;
            top: 100px;
            right: 20px;
            z-index: 999;
            background: var(--dark-light);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .currency-switcher i {
            color: var(--primary);
        }

        .currency-switcher select {
            background: transparent;
            color: var(--text-primary);
            border: none;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            outline: none;
        }

        .currency-switcher select:hover {
            background: var(--dark-lighter);
        } */

        /* Hero Section */
        .hero {
            padding: 150px 2rem 100px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }


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

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

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

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary, .btn-secondary {
            padding: 1rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
        }

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

        .btn-secondary:hover {
            background: var(--dark-lighter);
            border-color: var(--primary);
        }




        /* Gradient Button Animations */
        .btn-primary,
        .btn-dashboard,
        .pricing-cta,
        .pricing-cta-free,
        .btn-calculate,
        .deploy-now-btn,
        .send-button {
            position: relative;
            overflow: hidden;
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite;
        }

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

        /* Hover effect with moving gradient */
        .btn-primary:hover,
        .btn-dashboard:hover,
        .pricing-cta:hover,
        .pricing-cta-free:hover,
        .btn-calculate:hover,
        .deploy-now-btn:hover,
        .send-button:hover {
            animation: gradientMove 0.8s ease infinite;
        }

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

        /* Shimmer effect on hover */
        .btn-primary::before,
        .btn-dashboard::before,
        .pricing-cta::before,
        .pricing-cta-free::before,
        .btn-calculate::before,
        .deploy-now-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent
            );
            transition: left 0.5s ease;
        }

        .btn-primary:hover::before,
        .btn-dashboard:hover::before,
        .pricing-cta:hover::before,
        .pricing-cta-free:hover::before,
        .btn-calculate:hover::before,
        .deploy-now-btn:hover::before {
            left: 100%;
        }

        /* Pulse animation */
        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
            }
            50% {
                box-shadow: 0 8px 35px rgba(99, 102, 241, 0.5);
            }
        }

        .btn-primary,
        .pricing-cta {
            animation: pulse 2s ease-in-out infinite;
        }

        /* Glow effect on hover */
        .btn-primary:hover,
        .btn-dashboard:hover,
        .pricing-cta:hover,
        .btn-calculate:hover {
            box-shadow: 
                0 12px 35px rgba(99, 102, 241, 0.4),
                0 0 30px rgba(99, 102, 241, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
        }

        /* Border gradient animation */
        .btn-secondary {
            position: relative;
            background: var(--dark-light);
            border: 2px solid transparent;
            background-clip: padding-box;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
            background-size: 300% 300%;
            border-radius: 12px;
            z-index: -1;
            animation: borderGradient 3s ease infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .btn-secondary:hover::before {
            opacity: 1;
        }

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

        /* Rainbow gradient for special buttons */
        .pricing-card.popular .pricing-cta {
            background: linear-gradient(
                135deg,
                #667eea 0%,
                #764ba2 25%,
                #f093fb 50%,
                #4facfe 75%,
                #00f2fe 100%
            );
            background-size: 300% 300%;
            animation: rainbowGradient 4s ease infinite;
        }

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

        /* Button press effect */
        .btn-primary:active,
        .btn-dashboard:active,
        .pricing-cta:active,
        .btn-calculate:active {
            transform: translateY(-1px) scale(0.98);
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
        }

        /* Ripple effect on click */
        .btn-primary,
        .pricing-cta,
        .btn-calculate {
            position: relative;
            overflow: hidden;
        }

        .btn-primary::after,
        .pricing-cta::after,
        .btn-calculate::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary:active::after,
        .pricing-cta:active::after,
        .btn-calculate:active::after {
            width: 300px;
            height: 300px;
            opacity: 0;
        }

        /* Animated gradient text for buttons */
        .btn-primary span,
        .pricing-cta span {
            background: linear-gradient(90deg, #fff, #f0f0f0, #fff);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: textShine 3s linear infinite;
        }

        @keyframes textShine {
            to {
                background-position: 200% center;
            }
        }

        /* Loading state animation */
        .btn-primary.loading,
        .pricing-cta.loading {
            pointer-events: none;
            position: relative;
        }

        .btn-primary.loading::before,
        .pricing-cta.loading::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            margin: -10px 0 0 -10px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
        }

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

        /* Success state */
        .btn-primary.success {
            background: linear-gradient(135deg, var(--success), #059669);
        }

        /* Error state */
        .btn-primary.error {
            background: linear-gradient(135deg, var(--danger), #dc2626);
            animation: shake 0.5s ease;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-10px); }
            75% { transform: translateX(10px); }
        }

        /* Magnetic hover effect */
        @media (hover: hover) {
            .btn-primary,
            .pricing-cta {
                transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            }
        }
















        /* Confetti Animation */
        .confetti {
            position: fixed;
            width: 10px;
            height: 10px;
            background: var(--primary);
            position: absolute;
            animation: confetti-fall 3s linear forwards;
            z-index: 10000;
        }

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

        /* Success Message Overlay */
        .success-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            animation: fadeIn 0.3s ease;
        }

        .success-message-box {
            background: var(--dark-light);
            border: 2px solid var(--primary);
            border-radius: 24px;
            padding: 3rem 4rem;
            text-align: center;
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
            animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes scaleIn {
            from {
                transform: scale(0.5);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .success-icon {
            font-size: 5rem;
            color: var(--success);
            margin-bottom: 1.5rem;
            animation: bounceIn 0.6s ease;
        }

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

        .success-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .success-text {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .redirect-timer {
            font-size: 1rem;
            color: var(--primary);
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .spinner {
            width: 20px;
            height: 20px;
            border: 3px solid var(--border);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

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







        /* Trust Indicators */
        .trust-indicators {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

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

        .trust-item-text strong {
            display: block;
            font-size: 1.5rem;
            color: var(--text-primary);
        }

        .trust-item-text span {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            height: 500px;
        }

        .hero-terminal {
            background: var(--dark-light);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        .terminal-header {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

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

        .terminal-dot:nth-child(1) { background: #ef4444; }
        .terminal-dot:nth-child(2) { background: #f59e0b; }
        .terminal-dot:nth-child(3) { background: #10b981; }

        .terminal-body {
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .terminal-line {
            margin-bottom: 0.5rem;
            opacity: 0;
            animation: fadeInLine 0.5s ease forwards;
        }

        .terminal-line:nth-child(1) { animation-delay: 0.5s; }
        .terminal-line:nth-child(2) { animation-delay: 1s; }
        .terminal-line:nth-child(3) { animation-delay: 1.5s; }
        .terminal-line:nth-child(4) { animation-delay: 2s; }

        @keyframes fadeInLine {
            to { opacity: 1; }
        }

        .terminal-prompt {
            color: var(--primary);
        }

        .terminal-success {
            color: var(--success);
        }

        /* Floating Stats Cards */
        .floating-stats {
            position: absolute;
            background: var(--dark-light);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1rem 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: float 3s ease-in-out infinite;
        }

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

 
        .hero-visual .floating-stats:nth-child(2) {
            top: 350px;
            right: 270px;
            animation-delay: 0s;
        }
        .hero-visual .floating-stats:nth-child(3) {
            bottom: 100px;
            right: 20px;
            animation-delay: 1s;
        }
        .hero-visual .floating-stats:nth-child(4) {
            top: 260px;
            left: 10px;
            animation-delay: 2s;
        }


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

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

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

        /* Features Section */
        .features {
            padding: 100px 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .section-header h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

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

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

        .feature-card {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transform-style: preserve-3d;
            transform: translateZ(0);
        }

        .feature-card:hover {
            transform: translateY(-10px) translateZ(15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            background: rgba(30, 41, 59, 0.85);
            border-color: var(--primary);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

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

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

        /* Stats Section */
        .stats-section {
            padding: 80px 2rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            margin: 0 2rem;
            border-radius: 24px;
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .stat-card {
            position: relative;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-text {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Pricing Section */
        .pricing {
            padding: 100px 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .pricing-toggle {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-bottom: 3rem;
        }


        /* Currency Switcher in Pricing */
        .pricing-currency-switcher {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 2rem;
            padding: 0.75rem 1.5rem;
            background: var(--dark-light);
            border: 1px solid var(--border);
            border-radius: 12px;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-currency-switcher i {
            color: var(--primary);
            font-size: 1.2rem;
        }

        .pricing-currency-switcher select {
            background: var(--dark-lighter);
            color: var(--text-primary);
            border: 1px solid var(--border);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            outline: none;
            font-size: 1rem;
        }

        .pricing-currency-switcher select:hover {
            border-color: var(--primary);
            background: var(--dark);
        }

        .toggle-label {
            font-weight: 600;
            color: var(--text-secondary);
        }

        .toggle-label.active {
            color: var(--primary);
        }

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


        @media (min-width: 1200px) {
            .pricing-cards {
                grid-template-columns: repeat(5, 1fr);
            }
        }        

        .nav-brand, .footer-brand h3 {
            color: var(--primary-light) !important;
        }

        .nav-brand:hover, .footer-brand h3:hover {
            color: var(--primary-light);
        }
        
        .pricing-card {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transform-style: preserve-3d;
            transform: translateZ(0);
        }

        .pricing-card.popular {
            border-color: var(--primary);
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* ✅ Added smooth transition */
        }


        .pricing-card.popular:hover {
            transform: scale(1.08) translateY(-10px);
            box-shadow: 0 25px 70px rgba(99, 102, 241, 0.5);
        }


        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 0.4rem 1.5rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .pricing-card:hover {
            transform: translateY(-15px) translateZ(20px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
            background: rgba(30, 41, 59, 0.85);
            border-color: var(--primary);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .pricing-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
        }

        .pricing-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .pricing-description {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .pricing-price {
            text-align: center;
            margin-bottom: 2rem;
        }

        .price-amount {
            font-size: 2.9rem;
            font-weight: 800;
            color: var(--text-primary);
        }

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

        .price-period {
            color: var(--text-muted);
            font-size: 1rem;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border);
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features i {
            color: var(--success);
            font-size: 1.1rem;
        }

        .pricing-cta {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
            text-align: center;
            margin-top: auto;
        }

        .pricing-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
        }

        /* Testimonials Section */
        .testimonials {
            padding: 100px 2rem;
            background: var(--dark-light);
        }

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

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

        .testimonial-card {
            background: var(--dark);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

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

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

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .testimonial-info h4 {
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .testimonial-info p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .testimonial-rating {
            color: #f59e0b;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            color: var(--text-secondary);
            line-height: 1.7;
            font-style: italic;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--dark-light);
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--text-primary);
        }

        .faq-item {
            background: var(--dark-light);
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item:hover {
            border-color: var(--primary);
            transform: translateX(5px);
        }

        .faq-item.active {
            border-color: var(--primary);
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.2);
        }

        .faq-icon {
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--text-secondary);
        }

        .faq-item.active .faq-icon {
            color: var(--primary);
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            padding-top: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 800px;
            padding-top: 0;
        }

        .faq-answer-content {
            padding: 0 1.5rem 1.5rem;
            color: var(--text-secondary);
            line-height: 1.7;
            transform: translateY(-10px);
            opacity: 0;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, opacity 0.4s ease 0.1s;
        }

        .faq-item.active .faq-answer-content {
            transform: translateY(0);
            opacity: 1;
        }

        .faq-answer-content {
            padding: 0 1.5rem 1.5rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Footer */
        .footer {
            background: var(--dark-light);
            border-top: 1px solid var(--border);
            padding: 4rem 2rem 2rem;
        }

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

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

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

        .footer-logo {
            width: 35px;
            height: 35px;
            border-radius: 8px;
        }

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

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: var(--dark-lighter);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .footer-section h4 {
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

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

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

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

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

            .hero-visual {
                display: none;
            }

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

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

            .hero-content h1 {
                font-size: 2.5rem;
            }

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

            .features-grid,
            .pricing-cards,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

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

            .currency-switcher {
                top: 80px;
                right: 10px;
            }
        }

        /* Loading Animation */
        .loading {
            opacity: 0;
            animation: fadeIn 0.5s ease forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        /* Comparison Table */
        .comparison-table {
            background: var(--dark-light);
            border-radius: 16px;
            padding: 2rem;
            margin-top: 3rem;
            overflow-x: auto;
        }

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

        .comparison-table th {
            background: var(--dark-lighter);
            padding: 1rem;
            text-align: left;
            color: var(--text-primary);
            font-weight: 600;
        }

        .comparison-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--border);
            color: var(--text-secondary);
        }

        .comparison-table tr:hover {
            background: var(--dark);
        }

        .check-icon {
            color: var(--success);
        }

        .cross-icon {
            color: var(--danger);
        }













        .server-locations {
            padding: 100px 2rem 150px; /* Extra bottom padding */
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .map-container {
            position: relative;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            border-radius: 24px;
            padding: 5rem 3rem 3rem; /* Extra top padding */
            border: 1px solid var(--border);
            overflow: visible; /* CRITICAL: Changed from hidden */
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }


        .map-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .world-map {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            height: 400px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2000 1000"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%23334155;stop-opacity:0.3" /><stop offset="100%" style="stop-color:%23334155;stop-opacity:0.1" /></linearGradient></defs><g fill="url(%23grad)" stroke="%2364748b" stroke-width="1.5"><path d="M 320 180 L 340 160 L 380 160 L 400 180 L 420 170 L 440 190 L 460 180 L 480 200 L 460 220 L 440 240 L 420 260 L 400 270 L 380 260 L 360 250 L 340 240 L 320 220 Z M 500 200 L 520 190 L 560 200 L 580 220 L 600 230 L 620 250 L 600 270 L 580 280 L 560 270 L 540 260 L 520 240 L 500 220 Z M 280 300 L 300 290 L 320 300 L 340 320 L 360 340 L 380 360 L 400 380 L 380 400 L 360 420 L 340 400 L 320 380 L 300 360 L 280 340 Z M 450 320 L 480 310 L 510 320 L 540 340 L 520 360 L 490 370 L 460 360 L 450 340 Z M 650 250 L 680 240 L 710 250 L 740 270 L 720 290 L 700 300 L 680 290 L 660 280 Z M 900 240 L 920 230 L 950 240 L 980 260 L 1010 280 L 1040 290 L 1020 310 L 990 320 L 960 310 L 930 290 L 900 270 Z M 1100 300 L 1130 290 L 1160 300 L 1190 320 L 1220 340 L 1200 360 L 1170 370 L 1140 360 L 1110 340 Z M 1300 280 L 1330 270 L 1360 280 L 1380 300 L 1400 320 L 1380 340 L 1360 350 L 1340 340 L 1320 320 Z M 1450 320 L 1480 310 L 1510 320 L 1540 340 L 1560 360 L 1540 380 L 1510 390 L 1480 380 L 1460 360 Z M 800 450 L 830 440 L 860 450 L 880 470 L 900 490 L 880 510 L 850 520 L 820 510 L 800 490 Z M 1250 500 L 1280 490 L 1310 500 L 1340 520 L 1360 540 L 1340 560 L 1310 570 L 1280 560 L 1260 540 Z M 1500 600 L 1530 590 L 1560 600 L 1590 620 L 1610 640 L 1590 660 L 1560 670 L 1530 660 L 1510 640 Z M 220 500 L 250 490 L 280 500 L 310 520 L 290 540 L 260 550 L 230 540 Z M 1700 400 L 1730 390 L 1760 400 L 1780 420 L 1760 440 L 1730 450 L 1710 440 Z"/></g><g fill="none" stroke="%23475569" stroke-width="1" opacity="0.4"><line x1="0" y1="250" x2="2000" y2="250"/><line x1="0" y1="500" x2="2000" y2="500"/><line x1="0" y1="750" x2="2000" y2="750"/><line x1="500" y1="0" x2="500" y2="1000"/><line x1="1000" y1="0" x2="1000" y2="1000"/><line x1="1500" y1="0" x2="1500" y2="1000"/></g></svg>');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 12px;
            overflow: visible; /* Allow tooltips to show */
        }

        /* Grid overlay */
        .world-map::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                repeating-linear-gradient(0deg, transparent, transparent 99px, rgba(100, 116, 139, 0.1) 99px, rgba(100, 116, 139, 0.1) 100px),
                repeating-linear-gradient(90deg, transparent, transparent 99px, rgba(100, 116, 139, 0.1) 99px, rgba(100, 116, 139, 0.1) 100px);
            pointer-events: none;
        }

        .server-marker {
            position: absolute;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }

        .server-marker:hover {
            transform: scale(1.15);
            z-index: 20;
        }

        .marker-ping {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
        }

        .marker-ping::before,
        .marker-ping::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 30px;
            height: 30px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
        }

        .marker-ping::after {
            animation-delay: 1s;
        }

        @keyframes ping {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
            75%, 100% {
                transform: translate(-50%, -50%) scale(2.5);
                opacity: 0;
            }
        }

        .marker-core {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            box-shadow: 
                0 0 20px rgba(99, 102, 241, 0.8),
                0 0 40px rgba(99, 102, 241, 0.4),
                inset 0 0 10px rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .marker-core i {
            font-size: 0.7rem;
            color: white;
            text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
        }

        .marker-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
            border-radius: 50%;
            animation: glow 2s ease-in-out infinite;
        }

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

        .marker-tooltip {
            position: absolute;
            bottom: 45px;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(10px);
            padding: 1.25rem 1.5rem;
            border-radius: 16px;
            border: 1px solid var(--primary);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 100;
            min-width: 240px;
        }

        .server-marker:hover .marker-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .marker-tooltip::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid var(--primary);
        }











    /* Updated Quick Action Boxes */
    .quick-action-box {
        background: var(--dark-light);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 1.25rem;
        display: flex;
        gap: 1rem;
        align-items: center;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .quick-action-box:hover {
        border-color: var(--primary);
        transform: translateX(5px);
        box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
    }

    .stat-value-small {
        color: var(--text-primary);
        font-size: 1rem;
        font-weight: 600;
    }

    .action-arrow {
        color: var(--text-muted);
        margin-left: auto;
        transition: all 0.3s ease;
    }

    .quick-action-box:hover .action-arrow {
        color: var(--primary);
        transform: translateX(5px);
    }

    .discord-bg {
        background: linear-gradient(135deg, #5865F2, #7289DA);
    }

    .extra-info {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
        background: var(--dark-light);
        border-radius: 12px;
        border: 1px solid var(--border);
    }

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

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

    /* Message styling for links */
    .message-text a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .message-text a:hover {
        color: var(--primary-light);
        text-decoration: underline;
    }

    .location-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 0;
        color: var(--text-secondary);
    }

    .location-item i {
        color: var(--success);
        width: 20px;
    }

    .plan-item {
        background: var(--dark-lighter);
        padding: 0.75rem;
        border-radius: 8px;
        margin: 0.5rem 0;
        border-left: 3px solid var(--primary);
    }

    .plan-item strong {
        color: var(--primary);
    }













        /* Custom Plan Calculator Section */
        .plan-calculator {
            padding: 100px 2rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .calculator-container {
            background: var(--dark-light);
            border-radius: 24px;
            padding: 3rem;
            border: 1px solid var(--border);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
        }

        .calculator-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            background-size: 200% 100%;
            animation: gradientSlide 3s ease infinite;
        }

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

        .calculator-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 2rem;
        }

        /* Left Side - Controls */
        .calculator-controls {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .control-group {
            background: var(--dark);
            padding: 1.5rem;
            border-radius: 16px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .control-group:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
        }

        .control-label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .control-label-text {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .control-label-text i {
            color: var(--primary);
            font-size: 1.2rem;
        }

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

        .slider-container {
            position: relative;
            padding: 0.5rem 0;
        }

        .slider {
            width: 100%;
            height: 8px;
            background: var(--dark-lighter);
            border-radius: 10px;
            outline: none;
            -webkit-appearance: none;
            position: relative;
            cursor: pointer;
        }

        .slider::-webkit-slider-track {
            width: 100%;
            height: 8px;
            background: var(--dark-lighter);
            border-radius: 10px;
        }

        .slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
            transition: all 0.3s ease;
        }

        .slider::-webkit-slider-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
        }

        .slider::-moz-range-track {
            width: 100%;
            height: 8px;
            background: var(--dark-lighter);
            border-radius: 10px;
        }

        .slider::-moz-range-thumb {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
            transition: all 0.3s ease;
        }

        .slider::-moz-range-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
        }

        .slider-fill {
            position: absolute;
            top: 50%;
            left: 0;
            height: 8px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 10px;
            transform: translateY(-50%);
            pointer-events: none;
            transition: width 0.2s ease;
        }

        .slider-marks {
            display: flex;
            justify-content: space-between;
            margin-top: 0.5rem;
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* Toggle Switch */
        .toggle-group {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .toggle-switch {
            position: relative;
            width: 60px;
            height: 30px;
            background: var(--dark-lighter);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid var(--border);
        }

        .toggle-switch.active {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-color: var(--primary);
        }

        .toggle-slider {
            position: absolute;
            top: 3px;
            left: 3px;
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .toggle-switch.active .toggle-slider {
            transform: translateX(30px);
        }

        .toggle-label-switch {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* Select Dropdown */
        .select-wrapper {
            position: relative;
        }

        .select-custom {
            width: 100%;
            padding: 0.75rem 1rem;
            background: var(--dark);
            border: 1px solid var(--border);
            border-radius: 10px;
            color: var(--text-primary);
            font-size: 1rem;
            cursor: pointer;
            outline: none;
            transition: all 0.3s ease;
            appearance: none;
        }

        .select-custom:hover,
        .select-custom:focus {
            border-color: var(--primary);
        }

        .select-wrapper::after {
            content: '\f107';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary);
            pointer-events: none;
        }

        /* Right Side - Summary */
        .calculator-summary {
            background: var(--dark);
            padding: 2rem;
            border-radius: 20px;
            border: 2px solid var(--primary);
            position: sticky;
            top: 100px;
            height: fit-content;
        }

        .summary-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid var(--border);
        }

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

        .summary-header p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .price-display {
            text-align: center;
            margin-bottom: 2rem;
        }

        .price-main {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .price-currency {
            font-size: 2rem;
            color: var(--text-secondary);
            font-weight: 700;
        }

        .price-number {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }

        .price-period {
            font-size: 1.2rem;
            color: var(--text-muted);
        }

        .price-subtitle {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .savings-badge {
            display: inline-block;
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: #10b981;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }

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

        .spec-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem;
            background: var(--dark-lighter);
            border-radius: 10px;
            border: 1px solid var(--border);
        }

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

        .spec-label i {
            color: var(--primary);
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
        }

        .spec-value {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 1rem;
        }

        .summary-features {
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: var(--dark-lighter);
            border-radius: 12px;
            border: 1px solid var(--border);
        }

        .summary-features h4 {
            font-size: 1rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .summary-features h4 i {
            color: var(--success);
        }

        .features-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

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

        .feature-item-calc i {
            color: var(--success);
            font-size: 0.9rem;
        }

        .calculator-cta {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .btn-calculate {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }

        .btn-calculate:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
        }

        .btn-reset {
            width: 100%;
            padding: 1rem;
            background: var(--dark-lighter);
            color: var(--text-secondary);
            border: 1px solid var(--border);
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .btn-reset:hover {
            background: var(--dark);
            border-color: var(--primary);
            color: var(--text-primary);
        }

        .calculator-note {
            margin-top: 2rem;
            padding: 1.5rem;
            background: var(--dark-lighter);
            border-left: 4px solid var(--primary);
            border-radius: 8px;
        }

        .calculator-note p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .calculator-note strong {
            color: var(--text-primary);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .calculator-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .calculator-summary {
                position: static;
            }
            
            .price-number {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .calculator-container {
                padding: 2rem 1.5rem;
            }
            
            .control-group {
                padding: 1.25rem;
            }
        }


















        .tooltip-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid var(--border);
        }

        .tooltip-flag {
            font-size: 2rem;
            line-height: 1;
        }

        .tooltip-title-text h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
            line-height: 1.2;
        }

        .tooltip-title-text p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin: 0.2rem 0 0 0;
        }

        .tooltip-info {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .tooltip-row {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .tooltip-row i {
            color: var(--primary);
            width: 18px;
            font-size: 0.95rem;
        }

        .tooltip-row strong {
            color: var(--text-primary);
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.8rem;
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 20px;
            font-size: 0.8rem;
            color: #10b981;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        .status-pulse {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            animation: statusPulse 2s ease-in-out infinite;
            box-shadow: 0 0 8px #10b981;
        }

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

        /* Server positioning - Accurate world map positions */
        .server-us-east {
            top: 38%;
            left: 22%;
        }

        .server-europe {
            top: 32%;
            left: 50%;
        }

        .server-canada {
            top: 28%;
            left: 20%;
        }

        .server-india {
            top: 42%;
            left: 68%;
        }

        .server-asia-pacific {
            top: 45%;
            left: 82%;
        }

        /* Connection lines between servers */
        .connection-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .connection-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(99, 102, 241, 0.3) 20%, 
                rgba(99, 102, 241, 0.3) 80%,
                transparent
            );
            transform-origin: left center;
            opacity: 0.5;
            animation: dataFlow 4s ease-in-out infinite;
        }

        @keyframes dataFlow {
            0%, 100% {
                opacity: 0.2;
            }
            50% {
                opacity: 0.6;
            }
        }

        /* Map legend */
        .map-legend {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.25rem 1.5rem;
            border-radius: 16px;
            border: 1px solid var(--border);
            z-index: 50;
        }

        .map-legend h4 {
            font-size: 0.9rem;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
            font-weight: 600;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.6rem;
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

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

        .legend-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            box-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
            flex-shrink: 0;
        }

        .legend-line {
            width: 20px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            flex-shrink: 0;
        }

        /* Location Stats */
        .location-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-box {
            background: var(--dark-light);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid var(--border);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

        .stat-box:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
        }

        .stat-box:hover::before {
            transform: scaleX(1);
        }

        .stat-box i {
            font-size: 2.5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }

        .stat-box h4 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .stat-box p {
            color: var(--text-secondary);
            font-size: 1rem;
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .world-map {
                height: 450px;
            }
            
            .map-legend {
                top: 1rem;
                right: 1rem;
                padding: 1rem;
                font-size: 0.8rem;
            }
            
            .marker-tooltip {
                min-width: 200px;
                padding: 1rem;
            }
            
            .location-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .world-map {
                height: 350px;
            }
            
            .server-marker {
                transform: scale(0.8);
            }
            
            .marker-tooltip {
                font-size: 0.85rem;
                min-width: 180px;
            }
            
            .location-stats {
                grid-template-columns: 1fr;
            }
            
            .map-legend {
                position: static;
                margin-top: 1rem;
            }
        }





















        /* Horizontal Starter Plan */
        .pricing-card-free {
            background: linear-gradient(135deg, var(--dark-light), var(--dark-lighter));
            border: 2px solid var(--primary);
            border-radius: 20px;
            padding: 2rem;
            margin: 0 2rem 4rem;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
        }

        .free-plan-header {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .free-plan-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            flex-shrink: 0;
        }

        .free-plan-title {
            flex: 1;
            min-width: 200px;
        }

        .free-plan-title h3 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .free-plan-price {
            text-align: right;
            flex-shrink: 0;
        }

        .price-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
        }

        .price-label {
            display: block;
            color: var(--text-muted);
            font-size: 1rem;
            margin-top: 0.5rem;
        }

        .free-plan-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

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

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

        .feature-item i.fa-info-circle {
            color: var(--warning);
        }

        .pricing-cta-free {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .pricing-cta-free:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
        }

        /* Currency Switcher in Pricing */
        .pricing-currency-switcher {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 2rem;
            padding: 0.75rem 1.5rem;
            background: var(--dark-light);
            border: 1px solid var(--border);
            border-radius: 12px;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-currency-switcher i {
            color: var(--primary);
            font-size: 1.2rem;
        }

        .pricing-currency-switcher select {
            background: var(--dark-lighter);
            color: var(--text-primary);
            border: 1px solid var(--border);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            outline: none;
            font-size: 1rem;
        }

        .pricing-currency-switcher select:hover {
            border-color: var(--primary);
            background: var(--dark);
        }

        /* .chat-button {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
            transition: all 0.3s ease;
            z-index: 998;
        }

        .chat-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(6, 182, 212, 0.6);
        }
 */



        .chat-button {
            position: fixed;
            bottom: 100px;
            right: 25px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
            transition: all 0.3s ease;
            z-index: 998;

            /* ✅ Center the icon */
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none; /* optional: removes underline from <a> */
        }

        .chat-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(6, 182, 212, 0.6);
        }


        /* Live Coding Terminal Section - Simplified */
        .live-terminal-section {
            padding: 100px 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .terminal-demo-container {
            margin-top: 3rem;
        }

        /* Full Width Terminal Box */
        .live-terminal-box-full {
            background: var(--dark-light);
            border: 1px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            margin-bottom: 3rem;
        }

        .terminal-demo-header {
            background: var(--dark-lighter);
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            border-bottom: 1px solid var(--border);
        }

        .terminal-demo-dots {
            display: flex;
            gap: 0.5rem;
        }

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

        .dot.red { background: #ef4444; }
        .dot.yellow { background: #f59e0b; }
        .dot.green { background: #10b981; }

        .terminal-demo-title {
            flex: 1;
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-family: 'Courier New', monospace;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .terminal-demo-actions {
            display: flex;
            gap: 0.5rem;
        }

        .replay-btn {
            background: var(--dark);
            border: 1px solid var(--border);
            color: var(--primary);
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
        }

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

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

        .replay-btn:hover i {
            transform: rotate(360deg);
        }

        .terminal-demo-body {
            background: var(--dark);
            padding: 2rem;
            min-height: 500px;
            max-height: 500px;
            overflow-y: auto;
            font-family: 'Courier New', monospace;
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .terminal-demo-body::-webkit-scrollbar {
            width: 10px;
        }

        .terminal-demo-body::-webkit-scrollbar-track {
            background: var(--dark-lighter);
        }

        .terminal-demo-body::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }

        .terminal-demo-line {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .terminal-prompt {
            color: var(--primary);
            font-weight: bold;
        }

        .terminal-command {
            color: var(--text-primary);
        }

        .terminal-output {
            color: var(--text-secondary);
            padding-left: 1.5rem;
        }

        .terminal-success {
            color: var(--success);
        }

        .terminal-error {
            color: var(--danger);
        }

        .terminal-warning {
            color: var(--warning);
        }

        .terminal-info {
            color: var(--primary);
        }

        .terminal-cursor {
            color: var(--primary);
            animation: blink 1s infinite;
        }

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

        /* Deployment Steps */
        .deployment-steps {
            background: var(--dark-light);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 3rem;
        }

        .deployment-steps h3 {
            font-size: 1.8rem;
            color: var(--text-primary);
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .deployment-steps h3 i {
            color: var(--primary);
        }

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

        .step-card {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            flex-shrink: 0;
        }

        .step-content h4 {
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .step-content p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .terminal-demo-body {
                min-height: 400px;
                max-height: 400px;
                font-size: 0.85rem;
                padding: 1.5rem;
            }
            
            .steps-grid {
                grid-template-columns: 1fr;
            }
            
            .deployment-steps {
                padding: 2rem;
            }
        }

        @media (max-width: 768px) {
            .terminal-demo-header {
                flex-wrap: wrap;
            }
            
            .replay-btn {
                width: 100%;
                justify-content: center;
            }
        }









        /* Toast Notifications */
        .toast-container {
            position: fixed;
            top: 100px;
            right: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .toast {
            background: var(--dark-light);
            border: 1px solid var(--border);
            border-left: 4px solid var(--primary);
            border-radius: 12px;
            padding: 1rem 1.5rem;
            min-width: 300px;
            max-width: 400px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            gap: 1rem;
            animation: slideInRight 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .toast.success {
            border-left-color: var(--success);
        }

        .toast.error {
            border-left-color: var(--danger);
        }

        .toast.warning {
            border-left-color: var(--warning);
        }

        .toast.info {
            border-left-color: var(--primary);
        }

        .toast-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .toast.success .toast-icon {
            color: var(--success);
        }

        .toast.error .toast-icon {
            color: var(--danger);
        }

        .toast.warning .toast-icon {
            color: var(--warning);
        }

        .toast.info .toast-icon {
            color: var(--primary);
        }

        .toast-content {
            flex: 1;
        }

        .toast-title {
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .toast-message {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .toast-close {
            background: transparent;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            font-size: 1.2rem;
            padding: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .toast-close:hover {
            background: var(--dark-lighter);
            color: var(--text-primary);
        }

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

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

        .toast.hiding {
            animation: slideOutRight 0.3s ease forwards;
        }

        @media (max-width: 768px) {
            .toast-container {
                top: 80px;
                right: 10px;
                left: 10px;
            }
            
            .toast {
                min-width: auto;
                max-width: 100%;
            }
        }













        .nav-logo {
            transition: transform 0.6s ease; 
        }

        .nav-logo:hover {
            transform: rotate(360deg);
        }

        .footer-logo {
            transition: transform 0.6s ease; 
        }


        .footer-logo:hover {
            transform: rotate(360deg); 
        }    




        .banner-cta {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .banner-cta:hover {
            background: white;
            color: var(--primary-dark);
            transform: translateY(-2px);
        }

        /* Optional: smooth entry animation */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }



        .chat-button {
            transition: transform 0.6s ease;
        }


        .chat-button:hover {
            transform: rotate(360deg); 
        }   


        /* Responsive for Starter Plan */
        @media (max-width: 768px) {
            .free-plan-header {
                flex-direction: column;
                text-align: center;
            }
            
            .free-plan-price {
                text-align: center;
            }
            
            .free-plan-features {
                grid-template-columns: 1fr;
            }
            
            .pricing-cta-free {
                width: 100%;
                justify-content: center;
            }
        }

        /* Smooth price change */
        .price-currency,
        .price-amount,
        .price-number {
        transition: opacity .18s ease, transform .18s ease;
        will-change: opacity, transform;
        }

        .price-fade {
        opacity: 0;
        transform: translateY(-6px);
        }



        /* Live Bot Preview Section */
        .bot-preview-section {
            padding: 100px 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .bot-preview-container {
            margin-top: 3rem;
        }

        .preview-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 2rem;
        }

        /* Bot Chat Interface */
        .bot-chat-interface {
            background: var(--dark-light);
            border: 1px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 600px;
        }

        .chat-header {
            background: var(--dark-lighter);
            padding: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            border-bottom: 1px solid var(--border);
        }

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

        .bot-info {
            flex: 1;
        }

        .bot-info h3 {
            margin: 0;
            color: var(--text-primary);
            font-size: 1.1rem;
        }

        .bot-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }

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

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



        









        .server-badge {
            background: var(--dark);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.85rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Chat Messages */
        .chat-messages {
            flex: 1;
            padding: 1.5rem;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .chat-messages::-webkit-scrollbar {
            width: 8px;
        }

        .chat-messages::-webkit-scrollbar-track {
            background: var(--dark);
        }

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

        .message {
            display: flex;
            gap: 1rem;
            animation: slideInMessage 0.3s ease;
        }

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

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

        .user-message .message-avatar {
            background: var(--dark-lighter);
        }

        .message-content {
            flex: 1;
        }

        .message-author {
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
            font-size: 0.9rem;
        }

        .message-text {
            background: var(--dark);
            padding: 0.75rem 1rem;
            border-radius: 12px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .user-message .message-text {
            background: var(--primary);
            color: white;
        }

        .command-pills {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: 0.75rem;
        }

        .pill {
            background: var(--dark-lighter);
            color: var(--primary);
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            font-size: 0.85rem;
            font-family: 'Courier New', monospace;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid var(--border);
        }

        .pill:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        /* Chat Input */
        .chat-input-container {
            padding: 1.5rem;
            background: var(--dark);
            border-top: 1px solid var(--border);
            display: flex;
            gap: 1rem;
        }

        .chat-input {
            flex: 1;
            background: var(--dark-lighter);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 0.75rem 1rem;
            color: var(--text-primary);
            font-size: 1rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .chat-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        .send-button {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            border-radius: 10px;
            padding: 0.75rem 1.5rem;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .send-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
        }

        /* Stats Panel */
        .bot-stats-panel {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

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

        .stats-header h3 {
            color: var(--text-primary);
            font-size: 1.3rem;
        }

        .live-indicator {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.3);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            color: #10b981;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            animation: pulse 1.5s ease-in-out infinite;
        }

        .stat-box-preview {
            background: var(--dark-light);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.5rem;
            display: flex;
            gap: 1rem;
            align-items: center;
            transition: all 0.3s ease;
        }

        .stat-box-preview:hover {
            border-color: var(--primary);
            transform: translateX(5px);
        }

        .stat-icon-preview {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: white;
            flex-shrink: 0;
        }

        .stat-details {
            flex: 1;
        }

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

        .stat-value {
            color: var(--text-primary);
            font-size: 1.3rem;
            font-weight: 700;
        }

        .deployment-info {
            background: var(--dark-light);
            border: 2px solid var(--primary);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            margin-top: 1rem;
        }

        .deployment-info h4 {
            color: var(--text-primary);
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .deployment-info p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .deploy-now-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 1rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .deploy-now-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .preview-grid {
                grid-template-columns: 1fr;
            }
            
            .bot-chat-interface {
                height: 500px;
            }
        }




        
        /* Referral Banner */
        /* .referral-banner {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-align: center;
            padding: 0.8rem 1.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.75rem;
            font-weight: 600;
            font-size: 1rem;
            position: sticky;
            top: 60px; 
            z-index: 900;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            animation: slideDown 0.8s ease;
        } */
/* 
        .referral-banner i {
            font-size: 1.2rem;
            color: #fff;
        }


        .banner-close {
            background: transparent;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            margin-left: 1rem;
            transition: opacity 0.3s ease;
        }

        .banner-close:hover {
            opacity: 0.7;
        }
 */








        /* First-Time Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
            z-index: 99999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: opacity 0.8s ease;
        }

        .loading-screen.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        .loading-content {
            text-align: center;
            position: relative;
        }

        /* Animated Logo */
        .loading-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 2rem;
            position: relative;
            animation: logoFloat 3s ease-in-out infinite;
        }

        .loading-logo img {
            width: 100%;
            height: 100%;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.6);
            animation: logoPulse 2s ease-in-out infinite;
        }

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

        @keyframes logoPulse {
            0%, 100% { 
                box-shadow: 0 20px 60px rgba(99, 102, 241, 0.6);
                transform: scale(1);
            }
            50% { 
                box-shadow: 0 25px 80px rgba(99, 102, 241, 0.9);
                transform: scale(1.05);
            }
        }

        /* Loading Text */
        .loading-title {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            animation: gradientShift 3s ease infinite;
            background-size: 200% 200%;
        }

        .loading-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeInUp 0.6s ease 0.3s forwards;
        }

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

        /* Server Rack Animation */
        .server-rack {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeInUp 0.6s ease 0.6s forwards;
        }

        .server-unit {
            width: 60px;
            height: 80px;
            background: var(--dark-light);
            border: 2px solid var(--border);
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .server-unit::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(0deg, 
                transparent 0%, 
                rgba(99, 102, 241, 0.3) 50%, 
                transparent 100%
            );
            animation: serverScan 2s ease-in-out infinite;
        }

        .server-unit:nth-child(1) { animation-delay: 0s; }
        .server-unit:nth-child(2) { animation-delay: 0.2s; }
        .server-unit:nth-child(3) { animation-delay: 0.4s; }
        .server-unit:nth-child(4) { animation-delay: 0.6s; }
        .server-unit:nth-child(5) { animation-delay: 0.8s; }

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

        .server-lights {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 4px;
        }

        .server-light {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--success);
            animation: blink 1.5s ease-in-out infinite;
        }

        .server-light:nth-child(1) { animation-delay: 0s; }
        .server-light:nth-child(2) { animation-delay: 0.3s; }
        .server-light:nth-child(3) { animation-delay: 0.6s; }

        @keyframes blink {
            0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--success); }
            50% { opacity: 0.3; box-shadow: none; }
        }

        /* Progress Bar */
        .loading-progress {
            width: 400px;
            max-width: 90%;
            margin: 0 auto;
            opacity: 0;
            animation: fadeInUp 0.6s ease 0.9s forwards;
        }

        .progress-bar-container {
            height: 6px;
            background: var(--dark-lighter);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 1rem;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .progress-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            background-size: 200% 100%;
            border-radius: 10px;
            width: 0%;
            transition: width 0.3s ease;
            animation: progressGradient 2s ease infinite;
            box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
        }

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

        .progress-text {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .progress-status {
            color: var(--primary);
            font-weight: 600;
        }









        /* Loading Messages */
        .loading-messages {
            height: 40px;
            margin-top: 2rem;
            opacity: 0;
            animation: fadeInUp 0.6s ease 1.2s forwards;
            min-height: 40px;
        }

        .loading-message {
            color: var(--text-primary);
            font-size: 1.1rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            opacity: 0;
            animation: messageFade 1.5s ease forwards;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .loading-message i {
            color: var(--primary);
            font-size: 1.3rem;
            filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.6));
        }

        @keyframes messageFade {
            0% { 
                opacity: 0; 
                transform: translateY(15px) scale(0.95);
            }
            15% { 
                opacity: 1; 
                transform: translateY(0) scale(1);
            }
            85% { 
                opacity: 1; 
                transform: translateY(0) scale(1);
            }
            100% { 
                opacity: 0; 
                transform: translateY(-15px) scale(0.95);
            }
        }

        /* Particle Background */
        .loading-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.6;
            animation: particleFloat 10s linear infinite;
        }

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

        /* Responsive */
        @media (max-width: 768px) {
            .loading-title {
                font-size: 2rem;
            }
            
            .loading-logo {
                width: 100px;
                height: 100px;
            }
            
            .server-rack {
                gap: 0.5rem;
            }
            
            .server-unit {
                width: 50px;
                height: 70px;
            }
            
            .loading-progress {
                width: 90%;
            }
        }




        /* Theme Switcher & Color Customizer */
        .theme-controls {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Dark/Light Toggle */
        .theme-toggle {
            position: relative;
            width: 60px;
            height: 30px;
            background: var(--dark-lighter);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid var(--border);
        }








        .color-picker-btn {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
            flex-shrink: 0; /* ✅ NEW: Prevents button from shrinking */
            min-width: 40px; /* ✅ NEW: Ensures minimum width */
        }

        .color-picker-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.5);
        }

        .color-picker-btn:active {
            transform: translateY(0);
        }








        .theme-toggle:hover {
            border-color: var(--primary);
        }

        .theme-toggle-slider {
            position: absolute;
            top: 3px;
            left: 3px;
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
        }

        .theme-toggle.light .theme-toggle-slider {
            transform: translateX(30px);
            background: #fbbf24;
        }

        .theme-toggle-slider i {
            color: var(--dark);
        }

        .color-customizer-panel {
            position: fixed;
            top: 70px;
            right: 30px;
            width: 320px;
            background: var(--dark-light);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            z-index: 998;
            transform: translateY(-20px);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            pointer-events: none; /* ✅ NEW: Prevents accidental clicks */
        }

        .color-customizer-panel.active {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto; /* ✅ NEW: Enables clicks when active */
        }

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

        .customizer-header h3 {
            font-size: 1.2rem;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .customizer-close {
            background: transparent;
            border: none;
            color: var(--text-muted);
            font-size: 1.5rem;
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .customizer-close:hover {
            background: var(--dark-lighter);
            color: var(--text-primary);
        }

        /* Color Schemes Grid */
        .color-schemes {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .color-scheme {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 3px solid transparent;
            overflow: hidden;
        }

        .color-scheme:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .color-scheme.active {
            border-color: white;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
        }

        .color-scheme.active::after {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 1.5rem;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        }

        .scheme-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            font-size: 0.75rem;
            padding: 0.4rem;
            text-align: center;
            font-weight: 600;
        }

        /* Predefined Color Schemes */
        .scheme-ocean { background: linear-gradient(135deg, #0891b2, #8b5cf6); }
        .scheme-purple { background: linear-gradient(135deg, #a855f7, #ec4899); }
        .scheme-green { background: linear-gradient(135deg, #10b981, #059669); }
        .scheme-sunset { background: linear-gradient(135deg, #f97316, #ef4444); }
        .scheme-midnight { background: linear-gradient(135deg, #1e40af, #6366f1); }
        .scheme-rose { background: linear-gradient(135deg, #f43f5e, #fbbf24); }

        /* Reset Button */
        .customizer-reset {
            width: 100%;
            padding: 0.75rem;
            background: var(--dark-lighter);
            border: 1px solid var(--border);
            border-radius: 10px;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .customizer-reset:hover {
            background: var(--danger);
            color: white;
            border-color: var(--danger);
        }

        /* Light Mode Styles */
        body.light-mode {
            --dark: #f8fafc;
            --dark-light: #ffffff;
            --dark-lighter: #f1f5f9;
            --text-primary: #0f172a;
            --text-secondary: #334155;
            --text-muted: #64748b;
            --border: #e2e8f0;
        }

        body.light-mode .bg-animated {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        body.light-mode .navbar {
            background: rgba(255, 255, 255, 0.95);
        }

        body.light-mode .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        body.light-mode .footer {
            background: #ffffff;
        }

        body.light-mode .theme-toggle {
            background: #e2e8f0;
        }

        body.light-mode .color-customizer-panel {
            background: #ffffff;
        }

        /* Smooth Theme Transition */
        body,
        .navbar,
        .hero,
        .features,
        .pricing,
        .footer,
        .feature-card,
        .pricing-card,
        .faq-item,
        .testimonial-card,
        .terminal-demo-body,
        .bot-chat-interface,
        .stat-box,
        .floating-stats {
            transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        }

        @media (max-width: 768px) {
            .theme-controls {
                gap: 0.5rem;
                flex-wrap: nowrap; /* ✅ NEW: Prevents wrapping */
            }
            
            .nav-menu {
                gap: 1rem; /* ✅ NEW: Reduces gap on mobile */
            }
            
            .color-picker-btn {
                width: 38px; /* ✅ Changed from 36px */
                height: 38px; /* ✅ Changed from 36px */
                font-size: 1.1rem; /* ✅ Changed from 1rem */
                min-width: 38px; /* ✅ NEW */
            }
            
            .color-customizer-panel {
                right: 10px;
                left: 10px;
                width: auto;
                top: 70px;                     /* ✅ Changed from bottom */
            }
            
            .color-schemes {
                grid-template-columns: repeat(2, 1fr);
            }
        }





        /* ========================================
        ENHANCED NEWSLETTER SECTION
        ======================================== */

        .newsletter-section {
            position: relative;
            padding: 6rem 2rem;
            background: linear-gradient(135deg, 
                rgba(37, 99, 235, 0.15) 0%, 
                rgba(59, 130, 246, 0.08) 50%,
                rgba(147, 51, 234, 0.12) 100%
            );
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }

        /* Animated Background Orbs */
        .newsletter-bg-orbs {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

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

        .orb-1 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            top: -100px;
            left: -100px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, var(--secondary-color), #9333ea);
            bottom: -80px;
            right: -80px;
            animation-delay: 7s;
        }

        .orb-3 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #06b6d4, var(--primary-color));
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 14s;
        }

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

        .newsletter-container {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

        /* Icon Badge */
        .newsletter-icon-badge {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            box-shadow: 0 10px 40px rgba(37, 99, 235, 0.4);
            animation: pulseGlow 3s infinite ease-in-out;
        }

        @keyframes pulseGlow {
            0%, 100% {
                box-shadow: 0 10px 40px rgba(37, 99, 235, 0.4);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 15px 50px rgba(37, 99, 235, 0.6);
                transform: scale(1.05);
            }
        }

        .newsletter-content h2 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .newsletter-content p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        /* Enhanced Form */
        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 600px;
            margin: 0 auto 1.5rem;
        }

        .newsletter-input-wrapper {
            position: relative;
            flex: 1;
        }

        
        .input-icon {
            position: absolute;
            left: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-secondary);
            transition: color 0.3s ease;
            pointer-events: none;
            font-size: 1.1rem;
            z-index: 2;
            opacity: 0.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            will-change: color;
        }

        .newsletter-input:focus ~ .input-icon {
            color: var(--primary-color);
            opacity: 1;
        }

        .newsletter-input {
            width: 100%;
            padding: 1.2rem 1.2rem 1.2rem 3rem;
            border: 2px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary-color);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
        }

        .newsletter-input:focus ~ .input-icon {
            color: var(--primary-color);
        }

        .newsletter-input.valid {
            border-color: #10b981;
        }

        .newsletter-input.invalid {
            border-color: #ef4444;
        }

        .input-validation-icon {
            position: absolute;
            right: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .newsletter-input.valid ~ .input-validation-icon {
            opacity: 1;
            color: #10b981;
        }

        .newsletter-input.invalid ~ .input-validation-icon {
            opacity: 1;
            color: #ef4444;
        }

        .newsletter-input.invalid ~ .input-validation-icon i::before {
            content: "\f057"; /* fa-times-circle */
        }

        /* Enhanced Button */
        .newsletter-btn {
            padding: 1.2rem 2.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border: none;
            border-radius: 16px;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

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

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

        .newsletter-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
        }

        .newsletter-btn:active {
            transform: translateY(-1px);
        }

        .newsletter-btn.loading {
            pointer-events: none;
            opacity: 0.8;
        }

        .btn-loader {
            display: none;
        }

        .newsletter-btn.loading .btn-text {
            display: none;
        }

        .newsletter-btn.loading .btn-loader {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Status Messages */
        .newsletter-status {
            margin: 1rem 0;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            font-size: 0.95rem;
            display: none;
            align-items: center;
            gap: 0.75rem;
            animation: slideDown 0.4s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .newsletter-status.show {
            display: flex;
        }

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

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

        .newsletter-status i {
            font-size: 1.2rem;
        }

        /* Privacy Note */
        .newsletter-privacy {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 1.5rem;
            opacity: 0.8;
        }

        .newsletter-privacy i {
            color: var(--primary-color);
        }

        /* Stats */
        .newsletter-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .stat-item i {
            color: var(--primary-color);
            font-size: 1.1rem;
        }

        .stat-item strong {
            color: var(--text-primary);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .newsletter-section {
                padding: 4rem 1.5rem;
            }
            
            .newsletter-content h2 {
                font-size: 2rem;
            }
            
            .newsletter-content p {
                font-size: 1rem;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-btn {
                justify-content: center;
                width: 100%;
            }
            
            .newsletter-stats {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }
            
            .orb {
                width: 150px !important;
                height: 150px !important;
            }
        }

        @media (max-width: 480px) {
            .newsletter-icon-badge {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .newsletter-content h2 {
                font-size: 1.75rem;
            }
        }
