:root {
            --primary: #00d4ff;
            --secondary: #ff006e;
            --accent: #ffbe0b;
            --dark: #0a0a0f;
            --darker: #050508;
            --card: #12121a;
            --text: #ffffff;
            --text-muted: #a0a0b0;
            --gradient-1: linear-gradient(135deg, #00d4ff, #7b2cbf, #ff006e);
            --gradient-2: linear-gradient(90deg, #00d4ff, #ff006e);
            --gradient-3: linear-gradient(135deg, #ffbe0b, #ff006e);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--darker);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--gradient-2);
            border-radius: 4px;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(5, 5, 8, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 0.8rem 5%;
            background: rgba(5, 5, 8, 0.95);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            cursor: pointer;
        }

        .logo img {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--text);
        }

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

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

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

        .btn {
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            outline: none;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-outline {
            background: transparent;
            color: var(--text);
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .btn-outline:hover {
            border-color: var(--primary);
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
        }

        .btn-primary {
            background: var(--gradient-2);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
        }

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

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

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text);
        }

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

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

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

        .orb-1 {
            width: 500px;
            height: 500px;
            background: var(--primary);
            top: -10%;
            right: -5%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 400px;
            height: 400px;
            background: var(--secondary);
            bottom: -10%;
            left: -5%;
            animation-delay: -5s;
        }

        .orb-3 {
            width: 300px;
            height: 300px;
            background: var(--accent);
            top: 40%;
            left: 30%;
            animation-delay: -10s;
            opacity: 0.2;
        }

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

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .hero-text h1 {
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

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

        .hero-text p {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            max-width: 500px;
            line-height: 1.7;
        }

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

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

        .stat p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0;
        }

        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .phone-mockup {
            width: 320px;
            height: 650px;
            background: var(--card);
            border-radius: 40px;
            border: 3px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 212, 255, 0.1);
            animation: phoneFloat 6s ease-in-out infinite;
        }

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

        .phone-notch {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 30px;
            background: var(--darker);
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px;
            z-index: 10;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            padding: 50px 20px 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            background: linear-gradient(180deg, #12121a 0%, #0a0a0f 100%);
        }

        .video-card {
            background: var(--dark);
            border-radius: 20px;
            height: 200px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .video-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-1);
            opacity: 0.3;
        }

        .video-card i {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            color: white;
            opacity: 0.9;
        }

        .video-info {
            padding: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .video-info span {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .coin-badge {
            position: absolute;
            top: 20px;
            right: -20px;
            background: var(--gradient-3);
            padding: 1rem 1.5rem;
            border-radius: 20px;
            font-weight: 800;
            font-size: 1.2rem;
            box-shadow: 0 10px 30px rgba(255, 190, 11, 0.3);
            animation: coinPulse 2s ease-in-out infinite;
            z-index: 20;
        }

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

        .floating-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .float-icon {
            position: absolute;
            font-size: 2rem;
            opacity: 0.6;
            animation: floatIcon 8s ease-in-out infinite;
        }

        .float-icon:nth-child(1) { top: 10%; left: 10%; color: var(--primary); animation-delay: 0s; }
        .float-icon:nth-child(2) { top: 20%; right: 10%; color: var(--secondary); animation-delay: -2s; }
        .float-icon:nth-child(3) { bottom: 20%; left: 5%; color: var(--accent); animation-delay: -4s; }
        .float-icon:nth-child(4) { bottom: 10%; right: 15%; color: var(--primary); animation-delay: -6s; }

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

        /* Features Section */
        .features {
            padding: 100px 5%;
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

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

        .section-header h2 span {
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

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

        .feature-card {
            background: var(--card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-2);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

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

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 212, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            background: rgba(0, 212, 255, 0.1);
            color: var(--primary);
        }

        .feature-card:nth-child(2) .feature-icon { background: rgba(255, 0, 110, 0.1); color: var(--secondary); }
        .feature-card:nth-child(3) .feature-icon { background: rgba(255, 190, 11, 0.1); color: var(--accent); }
        .feature-card:nth-child(4) .feature-icon { background: rgba(0, 212, 255, 0.1); color: var(--primary); }
        .feature-card:nth-child(5) .feature-icon { background: rgba(255, 0, 110, 0.1); color: var(--secondary); }
        .feature-card:nth-child(6) .feature-icon { background: rgba(255, 190, 11, 0.1); color: var(--accent); }

        .feature-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }

        .feature-card p {
            color: var(--text-muted);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* How It Works */
        .how-it-works {
            padding: 100px 5%;
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .steps-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            gap: 2rem;
            position: relative;
        }

        .steps-container::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 10%;
            right: 10%;
            height: 3px;
            background: var(--gradient-2);
            opacity: 0.3;
            z-index: 0;
        }

        .step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: var(--card);
            border: 3px solid rgba(0, 212, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            margin: 0 auto 1.5rem;
            color: var(--primary);
            position: relative;
            transition: all 0.3s ease;
        }

        .step:hover .step-number {
            background: var(--gradient-2);
            color: white;
            border-color: transparent;
            transform: scale(1.1);
        }

        .step h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }

        .step p {
            color: var(--text-muted);
            font-size: 0.95rem;
            max-width: 280px;
            margin: 0 auto;
        }

        /* Earning Section */
        .earning {
            padding: 100px 5%;
            position: relative;
        }

        .earning-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .earning-visual {
            position: relative;
        }

        .earning-card {
            background: var(--card);
            border-radius: 24px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            transition: all 0.3s ease;
        }

        .earning-card:hover {
            transform: translateX(10px);
            border-color: rgba(0, 212, 255, 0.2);
        }

        .earning-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: var(--gradient-3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            flex-shrink: 0;
        }

        .earning-card:nth-child(2) .earning-icon { background: var(--gradient-2); }
        .earning-card:nth-child(3) .earning-icon { background: var(--gradient-1); }

        .earning-info h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }

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

        .earning-info .amount {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--accent);
        }

        .earning-text h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

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

        .earning-text p {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .earning-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .earning-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            color: var(--text-muted);
        }

        .earning-list li i {
            color: var(--accent);
            font-size: 1.2rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 5%;
            background: var(--dark);
        }

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

        .testimonial-card {
            background: var(--card);
            border-radius: 24px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 0, 110, 0.2);
        }

        .stars {
            color: var(--accent);
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .testimonial-text {
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            color: var(--text);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .author-info h4 {
            font-weight: 700;
            font-size: 1rem;
        }

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

        /* CTA Section */
        .cta {
            padding: 120px 5%;
            position: relative;
            overflow: hidden;
        }

        .cta-container {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--card);
            border-radius: 40px;
            padding: 4rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

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

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

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

        .cta p {
            color: var(--text-muted);
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .download-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .download-btn {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: var(--dark);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1rem 2rem;
            border-radius: 16px;
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s ease;
            min-width: 200px;
            justify-content: center;
        }

        .download-btn:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
        }

        .download-btn i {
            font-size: 2rem;
        }

        .download-btn div {
            text-align: left;
        }

        .download-btn small {
            display: block;
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .download-btn strong {
            font-size: 1.1rem;
            font-weight: 700;
        }

        /* Footer */
        footer {
            background: var(--darker);
            padding: 60px 5% 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand p {
            color: var(--text-muted);
            margin-top: 1rem;
            line-height: 1.7;
        }

        .footer-links h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

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

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

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

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

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

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--card);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

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

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

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

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

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-text p {
                margin-left: auto;
                margin-right: auto;
            }
            .hero-stats {
                justify-content: center;
            }
            .hero-image {
                order: -1;
            }
            .phone-mockup {
                width: 280px;
                height: 570px;
            }
            .earning-grid {
                grid-template-columns: 1fr;
            }
            .steps-container {
                flex-direction: column;
            }
            .steps-container::before {
                display: none;
            }
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links, .nav-buttons {
                display: none;
            }
            .mobile-menu {
                display: block;
            }
            .hero-text h1 {
                font-size: 2.8rem;
            }
            .section-header h2, .earning-text h2, .cta h2 {
                font-size: 2.2rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            .cta-container {
                padding: 2.5rem 1.5rem;
            }
        }

/* ==========================================================================
   SHORTSCOIN NEW VISUAL ENHANCEMENTS & GLASSMORPHISM
   ========================================================================== */

/* Glassmorphism Cards */
.glass-card {
    background: rgba(18, 18, 26, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
body.light-theme .glass-card {
    background: rgba(255, 255, 255, 0.6);
}

/* Light Theme Variables */
body.light-theme {
    --dark: #f0f2f5;
    --darker: #f8f9fa;
    --card: #ffffff;
    --text: #1a1a24;
    --text-muted: #626272;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.08);
    --border-premium: 1px solid rgba(0, 0, 0, 0.05);
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.3rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
body.light-theme .theme-toggle-btn {
    border-color: rgba(0, 0, 0, 0.1);
}
.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(20deg);
}
body.light-theme .theme-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Custom Glowy Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 99999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    display: none;
}
.custom-cursor-glow {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 99998;
    display: none;
}
@media (min-width: 1024px) {
    body.has-custom-cursor .custom-cursor,
    body.has-custom-cursor .custom-cursor-glow {
        display: block;
    }
}

/* Shifting Text Gradients */
.gradient-text-shift {
    background: linear-gradient(90deg, #00d4ff, #ff006e, #ffbe0b, #00d4ff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 9999;
}
.scroll-progress-bar {
    height: 100%;
    background: var(--gradient-2);
    width: 0%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--gradient-2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.6);
}

/* Floating Action Button (FAB) */
.fab-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}
.fab-main {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-3);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 0, 110, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.fab-main:hover {
    transform: rotate(135deg) scale(1.05);
}
.fab-options {
    position: absolute;
    bottom: 70px;
    right: 5px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.fab-container.open .fab-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.fab-option {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--card);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}
.fab-option:hover {
    background: var(--gradient-1);
    color: white;
    transform: scale(1.1);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    background: rgba(18, 18, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
body.light-theme .cookie-consent {
    background: rgba(255, 255, 255, 0.95);
}
.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}
.cookie-consent h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.cookie-consent p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.cookie-buttons {
    display: flex;
    gap: 0.8rem;
}
.cookie-btn-accept {
    background: var(--gradient-2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-btn-decline {
    background: transparent;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Mobile responsive drawer overlay and panel */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-sidebar-overlay.open {
    opacity: 1;
    visibility: visible;
}
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 280px;
    height: 100%;
    background: var(--card);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10000;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}
.mobile-sidebar.open {
    right: 0;
}
.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-sidebar-header .close-sidebar {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.6rem;
    cursor: pointer;
}
.mobile-sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.mobile-sidebar-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}
.mobile-sidebar-links a:hover,
.mobile-sidebar-links a.active {
    color: var(--text);
    transform: translateX(5px);
}
.mobile-sidebar-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

/* Mobile Sticky Bottom Tab Bar Navigation */
.mobile-bottom-tabs {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 9998;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
}
body.light-theme .mobile-bottom-tabs {
    background: rgba(255, 255, 255, 0.95);
    border-top-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.03);
}
.mobile-tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-tab-item i {
    font-size: 1.25rem;
}
.mobile-tab-item.active {
    color: var(--primary);
}

/* Mobile Sticky Download Bar Adjustments */
.mobile-download-bar {
    display: none;
    position: fixed;
    bottom: 65px; /* Shift up to avoid bottom tabs */
    left: 0;
    right: 0;
    z-index: 9997;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 12px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    animation: slideUpBar 0.5s ease-out;
}
body.light-theme .mobile-download-bar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.08);
}
.mobile-download-bar .bar-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}
.mobile-download-bar .bar-info img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}
.mobile-download-bar .bar-info .bar-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}
.mobile-download-bar .bar-info .bar-text p {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin: 0;
}
.mobile-download-bar .bar-download-btn {
    background: var(--gradient-2);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    animation: pulseBtn 2s ease-in-out infinite;
}
.mobile-download-bar .bar-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px;
}

/* Trust badging & payment sections */
.trust-badges-section {
    padding: 40px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--darker);
    text-align: center;
}
.trust-badges-title {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}
.trust-badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.6;
    transition: all 0.4s ease;
}
.trust-badges-grid:hover {
    opacity: 0.85;
}
.trust-logo {
    height: 35px;
    filter: grayscale(1) brightness(2);
    transition: all 0.4s ease;
}
body.light-theme .trust-logo {
    filter: grayscale(1) brightness(0.2);
}
.trust-logo:hover {
    filter: grayscale(0) brightness(1);
    transform: scale(1.05);
}

/* Live User Activity Widget */
.live-counter-widget {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}
.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: dotPulse 1.5s infinite;
}
@keyframes dotPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.3; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes slideUpBar {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
@keyframes pulseBtn {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(0, 212, 255, 0.5); }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
    }
    .mobile-bottom-tabs {
        height: calc(65px + env(safe-area-inset-bottom));
        padding-bottom: env(safe-area-inset-bottom);
    }
    .mobile-download-bar {
        bottom: calc(65px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 768px) {
    .mobile-bottom-tabs {
        display: flex;
    }
    .mobile-download-bar {
        display: flex;
    }
    body {
        padding-bottom: 70px;
    }
    .trust-badges-grid {
        gap: 2rem;
    }
    .trust-logo {
        height: 25px;
    }
}
/* ==========================================================================
   MODAL STYLES (Login / Signup / Alerts)
   ========================================================================== */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--card);
    width: 90%;
    max-width: 450px;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 212, 255, 0.1);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h2 i {
    color: var(--primary);
}

.modal-close {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 0, 110, 0.2);
    color: var(--secondary);
    transform: rotate(90deg);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.divider span {
    padding: 0 10px;
}

.btn-google {
    background: white;
    color: #333;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-google:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-google i {
    color: #EA4335;
}

.modal-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.modal-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.modal-footer a:hover {
    color: var(--text);
}

/* RESTORED PAGE-SPECIFIC COMPONENTS */
.highlight-box { background: var(--card); border-radius: 20px; padding: 2rem; border: 1px solid rgba(255,255,255,0.05); margin: 2rem 0; }
.highlight-box h3 { color: var(--primary); margin-bottom: 1rem; font-size: 1.3rem; }
.highlight-box ul { list-style: none; padding: 0; }
.highlight-box li { padding: 0.5rem 0; color: var(--text-muted); display: flex; align-items: center; gap: 0.8rem; }
.highlight-box li i { color: var(--accent); }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.pricing-card { background: var(--card); border-radius: 24px; padding: 2.5rem; border: 1px solid rgba(255,255,255,0.05); text-align: center; transition: all 0.3s; position: relative; }
.pricing-card.popular { border-color: var(--primary); transform: scale(1.05); }
.pricing-card.popular::before { content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gradient-2); padding: 0.3rem 1rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.pricing-card:hover { transform: translateY(-5px); border-color: rgba(0,212,255,0.2); }
.pricing-card.popular:hover { transform: scale(1.05) translateY(-5px); }
.price { font-size: 3rem; font-weight: 900; margin: 1rem 0; }
.price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.pricing-features { list-style: none; margin: 2rem 0; text-align: left; }
.pricing-features li { padding: 0.7rem 0; color: var(--text-muted); display: flex; align-items: center; gap: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.03); }
.pricing-features li i { color: var(--primary); }

.faq-item { background: var(--card); border-radius: 16px; margin-bottom: 1rem; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); }
.faq-question { padding: 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; transition: all 0.3s; }
.faq-question:hover { color: var(--primary); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: all 0.3s; color: var(--text-muted); }
.faq-item.active .faq-answer { padding: 0 1.5rem 1.5rem; max-height: 300px; }
.faq-item.active .faq-question { color: var(--primary); }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.team-card { text-align: center; }
.team-avatar { width: 120px; height: 120px; border-radius: 50%; background: var(--gradient-1); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; font-weight: 800; }
.team-card h4 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.team-card p { color: var(--text-muted); font-size: 0.9rem; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.blog-card { background: var(--card); border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s; }
.blog-card:hover { transform: translateY(-5px); border-color: rgba(0,212,255,0.2); }
.blog-thumb { height: 200px; background: var(--gradient-1); display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.8; }
.blog-content { padding: 1.5rem; }
.blog-meta { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.5rem; display: flex; gap: 1rem; }
.blog-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.blog-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

.job-listing { background: var(--card); border-radius: 16px; padding: 1.5rem 2rem; margin-bottom: 1rem; display: flex; justify-content: space-between; align-items: center; border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s; }
.job-listing:hover { border-color: rgba(0,212,255,0.2); transform: translateX(5px); }
.job-info h4 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.job-info p { color: var(--text-muted); font-size: 0.9rem; }
.job-tags { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.job-tag { background: rgba(0,212,255,0.1); color: var(--primary); padding: 0.2rem 0.8rem; border-radius: 20px; font-size: 0.8rem; }

.press-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.press-card { background: var(--card); border-radius: 20px; padding: 2rem; border: 1px solid rgba(255,255,255,0.05); }
.press-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.press-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.press-source { color: var(--primary); font-weight: 600; font-size: 0.85rem; }

.calc-box { background: var(--card); border-radius: 24px; padding: 2.5rem; max-width: 600px; margin: 0 auto; border: 1px solid rgba(255,255,255,0.05); }
.calc-row { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.calc-row:last-child { border-bottom: none; }
.calc-row.total { font-size: 1.3rem; font-weight: 700; color: var(--accent); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 1024px) {
    .two-col { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .page-header h1 { font-size: 2.5rem; }
    .pricing-card.popular { transform: scale(1); }
}
@media (max-width: 768px) {
    .nav-links, .nav-buttons { display: none; }
    .mobile-menu { display: block; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .job-listing { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .page-header h1 { font-size: 2rem; }
    .section-header h2 { font-size: 2rem; }
}

/* Toast Notifications */
.toast { position: fixed; bottom: 30px; right: 30px; padding: 1rem 1.5rem; border-radius: 12px; color: white; font-weight: 500; display: flex; align-items: center; gap: 0.8rem; transform: translateY(100px); opacity: 0; transition: all 0.3s; z-index: 10000; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.toast.show { transform: translateY(0); opacity: 1; }
.toast-success { background: linear-gradient(135deg, #00c853, #00e676); }
.toast-error { background: linear-gradient(135deg, #ff1744, #f50057); }
.toast-info { background: linear-gradient(135deg, #2979ff, #448aff); }

/* MORE RESTORED PAGE-SPECIFIC COMPONENTS */
.page-header { padding: 140px 5% 60px; text-align: center; position: relative; overflow: hidden; }
.page-header h1 { font-size: 3.5rem; font-weight: 900; margin-bottom: 1rem; }
.page-header h1 span { background: var(--gradient-2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.page-header p { color: var(--text-muted); font-size: 1.2rem; max-width: 600px; margin: 0 auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section { padding: 80px 5%; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-header h2 { font-size: 2.8rem; font-weight: 800; margin-bottom: 1rem; }
.section-header h2 span { background: var(--gradient-2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card { background: var(--card); border: 1px solid rgba(255,255,255,0.05); border-radius: 24px; padding: 2.5rem; transition: all 0.4s; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gradient-2); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.card:hover::before { transform: scaleX(1); }
.card:hover { transform: translateY(-5px); border-color: rgba(0,212,255,0.2); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.card-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem; background: rgba(0,212,255,0.1); color: var(--primary); }
.card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.8rem; }
.card p { color: var(--text-muted); line-height: 1.7; }

footer { background: var(--darker); padding: 60px 5% 30px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--text-muted); margin-top: 1rem; line-height: 1.7; }
.footer-links h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }
.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-links a { width: 40px; height: 40px; border-radius: 10px; background: var(--card); display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; transition: all 0.3s; border: 1px solid rgba(255,255,255,0.05); }
.social-links a:hover { background: var(--gradient-2); color: white; transform: translateY(-3px); }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); font-size: 0.9rem; }

.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
