@charset "utf-8";
/* CSS Document */

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

        :root {
            --primary-grey: #e5e7eb;
            --primary-orange: #f97316;
            --primary-purple: #1c24c4;
            --secondary-amber: #fbbf24;
            --dark-bg: #1a0b2e;
            --darker-bg: #0f051a;
            --card-bg: rgba(229, 231, 235, 0.03);
            --border-color: rgba(229, 231, 235, 0.2);
            --text-primary: #ffffff;
            --text-secondary: #a1a1aa;
            --primary-cyan: #00ffff;
            --primary-pink: #0800ff;
        }

        body {
            font-family: 'JetBrains Mono', 'Fira Code', monospace;
            background: var(--darker-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Enhanced Cyberpunk Background */
        .cyber-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--darker-bg);
            overflow: hidden;
            z-index: -5;
        }

        /* Animated gradient background */
        .cyber-gradient {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 60% 20%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
            animation: gradientRotate 30s linear infinite;
            filter: blur(40px);
        }

        @keyframes gradientRotate {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.2); }
            100% { transform: rotate(360deg) scale(1); }
        }

        /* Matrix rain effect */
        .matrix-rain {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            opacity: 0.15;
        }

        .matrix-column {
            position: absolute;
            top: -100vh;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            color: var(--primary-cyan);
            text-shadow: 0 0 5px var(--primary-cyan);
            animation: matrixFall linear infinite;
            writing-mode: vertical-rl;
            text-orientation: upright;
            background: linear-gradient(to bottom, transparent 0%, var(--primary-cyan) 50%, transparent 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .matrix-column:nth-child(3n) {
            color: var(--primary-pink);
            text-shadow: 0 0 5px var(--primary-pink);
            background: linear-gradient(to bottom, transparent 0%, var(--primary-pink) 50%, transparent 100%);
        }

        .matrix-column:nth-child(5n) {
            color: var(--primary-purple);
            text-shadow: 0 0 5px var(--primary-purple);
            background: linear-gradient(to bottom, transparent 0%, var(--primary-purple) 50%, transparent 100%);
        }

        @keyframes matrixFall {
            0% { transform: translateY(0); }
            100% { transform: translateY(200vh); }
        }

        /* Animated grid overlay */
        .grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }

        .grid-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        .grid-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 0, 255, 0.03) 2px, transparent 2px),
                linear-gradient(90deg, rgba(255, 0, 255, 0.03) 2px, transparent 2px);
            background-size: 100px 100px;
            animation: gridMove 30s linear infinite reverse;
        }

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

        /* Floating particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -3;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-cyan);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--primary-cyan);
            animation: float 20s infinite;
            opacity: 0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .particle:nth-child(odd) {
            background: var(--primary-pink);
            box-shadow: 0 0 10px var(--primary-pink);
            animation-duration: 25s;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }

        /* Glowing orbs */
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            animation: orbFloat 20s ease-in-out infinite;
            pointer-events: none;
            z-index: -4;
        }

        .orb1 {
            width: 300px;
            height: 300px;
            background: var(--primary-cyan);
            top: 10%;
            left: -150px;
            animation-delay: 0s;
        }

        .orb2 {
            width: 400px;
            height: 400px;
            background: var(--primary-pink);
            bottom: 10%;
            right: -200px;
            animation-delay: 5s;
        }

        .orb3 {
            width: 250px;
            height: 250px;
            background: var(--primary-purple);
            top: 50%;
            left: 50%;
            animation-delay: 10s;
        }

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

        /* Scanlines effect */
        .scanlines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .scanlines::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                transparent 0%,
                rgba(0, 255, 255, 0.03) 50%,
                transparent 100%
            );
            background-size: 100% 4px;
            animation: scanline 8s linear infinite;
        }

        .scanlines::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
            pointer-events: none;
        }

        /* Noise texture overlay */
        .noise-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            z-index: -1;
            pointer-events: none;
            background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
                repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(0, 255, 255, 0.02) 2px, rgba(0, 255, 255, 0.02) 4px);
        }

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

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem 2rem;
            background: rgba(15, 15, 35, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            z-index: 10000;
            transition: all 0.3s ease;
        }

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

        /* Mobile Menu Button */
        .mobile-menu-button {
            display: none;
            background: none;
            border: none;
            color: var(--primary-cyan);
            font-size: 1.5rem;
            cursor: pointer;
            position: relative;
            width: 30px;
            height: 30px;
            transition: all 0.3s ease;
        }

        .mobile-menu-button:hover {
            color: var(--primary-orange);
            transform: scale(1.1);
        }

        .hamburger {
            position: relative;
            width: 25px;
            height: 20px;
            margin: auto;
        }

        .hamburger span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: var(--primary-cyan);
            border-radius: 1px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: all 0.25s ease-in-out;
            box-shadow: 0 0 5px var(--primary-cyan);
            transform-origin: center;
        }

        .hamburger span:nth-child(1) {
            top: 0px;
        }

        .hamburger span:nth-child(2) {
            top: 9px;
        }

        .hamburger span:nth-child(3) {
            top: 18px;
        }

        .mobile-menu-button.active .hamburger span:nth-child(1) {
            top: 9px;
            transform: rotate(135deg);
            background: var(--primary-orange);
        }

        .mobile-menu-button.active .hamburger span:nth-child(2) {
            opacity: 0;
            left: -25px;
        }

        .mobile-menu-button.active .hamburger span:nth-child(3) {
            top: 9px;
            transform: rotate(-135deg);
            background: var(--primary-orange);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 78px;
            right: -100%;
            width: 80%;
            max-width: 350px;
            height: calc(100vh - 78px);
            background: var(--darker-bg);
            backdrop-filter: blur(20px);
            border-left: 2px solid var(--border-color);
            z-index: 9999;
            transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            overflow-y: auto;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

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

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

        .mobile-menu-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-cyan);
            text-shadow: 0 0 15px var(--primary-cyan);
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .mobile-menu-logo::before {
            content: '>';
            margin-right: 0.5rem;
            color: var(--primary-orange);
            transition: all 0.3s ease;
        }

        .mobile-menu-logo::after {
            content: '_';
            animation: blink 1s infinite;
            color: var(--primary-cyan);
        }

        .mobile-menu-logo:hover {
            text-shadow: 0 0 25px var(--primary-cyan);
            transform: scale(1.05);
        }

        .mobile-menu-logo:hover::before {
            margin-right: 0.8rem;
            text-shadow: 0 0 10px var(--primary-orange);
        }

        .mobile-menu-close {
            background: none;
            border: none;
            color: var(--primary-cyan);
            font-size: 1.5rem;
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .mobile-menu-close:hover {
            color: var(--primary-orange);
            transform: rotate(90deg);
        }

        .mobile-menu-nav {
            padding: 0;
            flex-grow: 1;
        }

        .mobile-menu-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu-nav li {
            margin: 0;
        }

        .mobile-menu-nav a {
            display: block;
            padding: 1.5rem 2rem;
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            border-bottom: 1px solid rgba(229, 231, 235, 0.1);
        }

        .mobile-menu-nav a:hover {
            color: var(--primary-cyan);
            background: rgba(0, 255, 255, 0.05);
            padding-left: 3rem;
            text-shadow: 0 0 10px var(--primary-cyan);
        }

        .mobile-menu-nav a::before {
            content: '>';
            position: absolute;
            left: 2rem;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            color: var(--primary-orange);
        }

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

        .mobile-menu-nav li:last-child a {
            border-bottom: none;
        }

        .mobile-menu-cta {
            padding: 2rem;
            flex-shrink: 0;
            border-bottom: 1px solid var(--border-color);
        }

        .cyber-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
            color: var(--darker-bg);
            padding: 1rem 2rem;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
            width: 100%;
            text-align: center;
        }

        .cyber-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
        }

        /* Animation keyframes for mobile menu */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        /* Desktop Navigation Layout */
        @media (min-width: 769px) {
            .mobile-menu-button {
                display: none !important;
            }
            
            .nav-container {
                flex-direction: row;
                align-items: center;
                gap: 0;
            }
            
            .nav-top {
                flex: 0 0 auto;
            }
            
            .nav-links {
                flex: 1;
                display: flex;
                flex-direction: row;
                justify-content: center;
                margin: 0 2rem;
                max-width: none;
            }
            
            .nav-links a {
                padding: 0;
                border-bottom: none;
                font-size: 0.9rem;
            }
            
            .nav-links a:hover {
                background: none;
                transform: none;
                padding-left: 0;
            }
            
            .nav-links a::before {
                display: none;
            }
            
            .nav-bottom {
                flex: 0 0 auto;
            }
            
            .cyber-button {
                width: auto;
                max-width: none;
            }
        }

        /* Logo Styling */
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: var(--primary-cyan);
            font-weight: 700;
            font-size: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            position: relative;
        }

        .logo-image {
            width: 40px;
            height: 40px;
            object-fit: contain;
            filter: drop-shadow(0 0 10px var(--primary-cyan));
            transition: all 0.3s ease;
        }

        .logo-text {
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
        }

        .logo:hover .logo-image {
            filter: drop-shadow(0 0 20px var(--primary-cyan)) brightness(1.2);
            transform: scale(1.1);
        }

        .logo:hover .logo-text {
            text-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
        }

        /* Mobile Logo Styling */
        .mobile-menu-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: var(--primary-cyan);
            font-weight: 700;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .mobile-logo-image {
            width: 35px;
            height: 35px;
            object-fit: contain;
            filter: drop-shadow(0 0 8px var(--primary-cyan));
        }

        .mobile-logo-text {
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Hero Section Logo */
        .hero-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 2rem;
            filter: drop-shadow(0 0 30px var(--primary-cyan));
            animation: logoFloat 3s ease-in-out infinite;
        }

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

        /* Footer Logo */
        .footer-logo {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            filter: drop-shadow(0 0 15px var(--primary-cyan));
            opacity: 0.8;
        }

        /* Responsive Logo */
        @media (max-width: 768px) {
            .logo-image {
                width: 35px;
                height: 35px;
            }
            
            .logo-text {
                font-size: 1.2rem;
            }
            
            .hero-logo {
                width: 100px;
                height: 100px;
            }
        }

        @media (max-width: 480px) {
            .logo-image {
                width: 30px;
                height: 30px;
            }
            
            .logo-text {
                font-size: 1rem;
            }
            
            .hero-logo {
                width: 80px;
                height: 80px;
            }
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-cyan);
            text-shadow: 0 0 20px var(--primary-cyan);
            position: relative;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .logo:hover {
            text-shadow: 0 0 30px var(--primary-cyan);
            transform: scale(1.05);
        }

        .logo::before {
            content: '>';
            margin-right: 0.5rem;
            color: var(--primary-orange);
            transition: all 0.3s ease;
        }

        .logo:hover::before {
            margin-right: 0.8rem;
            text-shadow: 0 0 10px var(--primary-orange);
        }

        .logo::after {
            content: '_';
            animation: blink 1s infinite;
            color: var(--primary-cyan);
        }

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

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

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
            font-size: 0.9rem;

            letter-spacing: 1px;
        }

        .nav-links a:hover {
            color: var(--primary-cyan);
            text-shadow: 0 0 10px var(--primary-cyan);
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
            transition: width 0.3s ease;
            box-shadow: 0 0 10px var(--primary-cyan);
        }

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

        /* Hero Section */
        .hero {
            padding: 150px 2rem 100px;
            text-align: center;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            cursor: pointer;
            line-height: 1.2;
        }

        .hero-nexus {
            background: linear-gradient(135deg, var(--primary-cyan), #00ccff);
            background: -webkit-linear-gradient(135deg, var(--primary-cyan), #00ccff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            transition: all 0.3s ease;
            animation: cyanPulse 3s ease-in-out infinite;
            position: relative;
        }

        .hero-flow {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
            background: -webkit-linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-left: 0.1em;
            display: inline-block;
            transition: all 0.3s ease;
            animation: purplePulse 3s ease-in-out infinite;
            animation-delay: 1.5s;
            position: relative;
        }

        @keyframes cyanPulse {
            0%, 100% { 
                filter: brightness(1) drop-shadow(0 0 15px rgba(0, 255, 255, 0.6));
                transform: translateY(0) scale(1);
            }
            50% { 
                filter: brightness(1.1) drop-shadow(0 0 25px rgba(0, 255, 255, 0.8));
                transform: translateY(-2px) scale(1.01);
            }
        }

        @keyframes purplePulse {
            0%, 100% { 
                filter: brightness(1) drop-shadow(0 0 15px rgba(98, 0, 255, 0.6));
                transform: translateY(0) scale(1);
            }
            50% { 
                filter: brightness(1.1) drop-shadow(0 0 25px rgba(0, 85, 255, 0.8));
                transform: translateY(-2px) scale(1.01);
            }
        }

        /* Clean hover effect */
        .hero-title:hover .hero-nexus {
            transform: translateX(-3px) scale(1.02);
            filter: brightness(1.2) drop-shadow(0 0 30px rgba(0, 255, 255, 0.9));
        }

        .hero-title:hover .hero-flow {
            transform: translateX(3px) scale(1.02);
            filter: brightness(1.2) drop-shadow(0 0 30px rgba(255, 0, 255, 0.9));
        }

        /* Subtle background glow for each word */
        .hero-nexus::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.08) 0%, transparent 60%);
            filter: blur(50px);
            z-index: -1;
            animation: glowPulse 4s ease-in-out infinite;
            pointer-events: none;
        }

        .hero-flow::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 0, 255, 0.08) 0%, transparent 60%);
            filter: blur(50px);
            z-index: -1;
            animation: glowPulse 4s ease-in-out infinite;
            animation-delay: 2s;
            pointer-events: none;
        }

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

        /* Apply animation pause on hover */
        .hero-title:hover .hero-nexus,
        .hero-title:hover .hero-flow {
            animation-play-state: paused;
        }

        /* Border animation */
        .hero-nexus::after,
        .hero-flow::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 0;
            height: 3px;
            transition: width 0.3s ease;
        }

        .hero-nexus::after {
            background: linear-gradient(90deg, var(--primary-cyan), transparent);
        }

        .hero-flow::after {
            background: linear-gradient(90deg, transparent, var(--primary-pink));
            left: auto;
            right: 0;
        }

        .hero-title:hover .hero-nexus::after,
        .hero-title:hover .hero-flow::after {
            width: 100%;
        }

        /* Typing effect for hero text on load */
        @keyframes typeIn {
            0% { 
                opacity: 0;
                transform: translateY(20px);
            }
            100% { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Remove scanner line for cleaner look */

        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
            opacity: 0.9;
            background: linear-gradient(135deg, var(--text-secondary), var(--primary-grey));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 10;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
            color: var(--darker-bg);
            padding: 1.2rem 3rem;
            border: none;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
        }

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

        /* Start Project Button - Larger Font */
        #startProjectBtn {
            font-size: 1.3rem;
            padding: 1.4rem 3.5rem;
            cursor: pointer;
            -webkit-tap-highlight-color: rgba(0, 255, 255, 0.3);
            position: relative;
            z-index: 10;
            touch-action: manipulation;
            -webkit-touch-callout: none;
            user-select: none;
            display: inline-block;
            width: auto;
            min-width: 200px;
        }
        
        #startProjectBtn:active {
            transform: scale(0.98);
            opacity: 0.9;
        }
        
        #startProjectBtn:focus {
            outline: 2px solid var(--primary-cyan);
            outline-offset: 2px;
        }
        
        /* Ensure button is always clickable */
        #startProjectBtn * {
            pointer-events: none;
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary-cyan);
            padding: 1.2rem 3rem;
            border: 2px solid var(--primary-cyan);
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
        }

        .btn-secondary:hover {
            background: var(--primary-cyan);
            color: var(--darker-bg);
            box-shadow: 0 0 30px var(--primary-cyan);
        }

        /* Split Buttons Animation */
        .split-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            align-items: center;
        }

        .split-btn-instagram,
        .split-btn-call {
            display: inline-block;
            text-decoration: none;
            cursor: pointer;
        }

        /* Instagram Button - Instagram Brand Colors */
        .split-btn-instagram {
            background: linear-gradient(45deg, #833AB4, #FD1D1D, #FCAF45) !important;
            background-size: 200% 200% !important;
            color: white !important;
            box-shadow: 0 0 20px rgba(131, 58, 180, 0.4);
            animation: instagramGradient 3s ease infinite;
        }

        .split-btn-instagram:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(131, 58, 180, 0.6);
            background-position: 100% 0;
        }

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

        /* Call Button - Phone/Call Colors */
        .split-btn-call {
            background: linear-gradient(135deg, #25D366, #128C7E) !important;
            color: white !important;
            box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
        }

        .split-btn-call:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
            background: linear-gradient(135deg, #128C7E, #25D366) !important;
        }

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

        @keyframes slideInRight {
            0% {
                opacity: 0;
                transform: translateX(30px) scale(0.9);
            }
            100% {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

        @media (max-width: 768px) {
            #startProjectBtn {
                font-size: 1.1rem;
                padding: 1.2rem 2.5rem;
            }
            
            .split-buttons {
                flex-direction: column;
                width: 100%;
                gap: 1rem;
            }
            
            .split-btn-instagram,
            .split-btn-call {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            #startProjectBtn {
                font-size: 1rem;
                padding: 1rem 2rem;
            }
            
            .split-buttons {
                gap: 0.8rem;
            }
            
            .split-btn-instagram,
            .split-btn-call {
                max-width: 280px;
                padding: 1rem 2rem;
                font-size: 0.9rem;
            }
        }

        /* Features Section */
        .features {
            padding: 120px 2rem;
            position: relative;
        }

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

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

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-cyan);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            position: relative;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
            box-shadow: 0 0 20px var(--primary-cyan);
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        /* Laptop and desktop - 2 platforms per row */
        @media (min-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .feature-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            padding: 3rem;
            position: relative;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-pink));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 255, 255, 0.2);
        }

        .feature-card:hover::before {
            opacity: 0.1;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
        }

        /* Lucide SVG icon sizing */
        .feature-icon svg {
            width: 36px;
            height: 36px;
            stroke: #fff;
            stroke-width: 1.5;
        }

        .security-icon-large {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
        }

        .security-icon-large svg {
            width: 44px;
            height: 44px;
            stroke: #fff;
            stroke-width: 1.5;
        }

        .section-title svg,
        .category-title svg,
        h1 svg {
            width: 0.85em;
            height: 0.85em;
            stroke: var(--primary-cyan);
            stroke-width: 2;
            vertical-align: -0.05em;
            margin-right: 0.15em;
            filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.6));
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-cyan);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .feature-card p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        /* Platform-specific styles */
        .platform-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .platform-tag {
            background: rgba(0, 255, 255, 0.1);
            border: 1px solid rgba(0, 255, 255, 0.3);
            color: var(--primary-cyan);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .platform-cta {
            margin-top: auto;
        }

        .platform-cta .btn-secondary {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
            color: var(--text-primary);
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
        }
        
        /* Platform Categories */
        .platform-category {
            margin-bottom: 4rem;
        }
        
        /* Platform grid responsive layout */
        /* Mobile and tablet: 1 platform per row */
        @media (max-width: 1023px) {
            .features-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        
        /* Small mobile screens: tighter spacing */
        @media (max-width: 480px) {
            .features-grid {
                gap: 1.5rem;
            }
            
            .feature-card {
                padding: 1.5rem 1rem;
            }
        }
        
        .platform-category:last-child {
            margin-bottom: 0;
        }
        
        .category-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-cyan);
            text-align: center;
            margin-bottom: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .category-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
            border-radius: 2px;
        }
        
        /* Ensure category titles are properly styled */
        .platform-category .category-title {
            font-size: 1.8rem !important;
            font-weight: 700 !important;
            color: var(--primary-cyan) !important;
            text-align: center !important;
            margin-bottom: 2.5rem !important;
            text-transform: uppercase !important;
            letter-spacing: 2px !important;
            position: relative !important;
            padding-bottom: 1rem !important;
            display: block !important;
        }
        
        .platform-category .category-title::after {
            content: '' !important;
            position: absolute !important;
            bottom: 0 !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            width: 80px !important;
            height: 3px !important;
            background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple)) !important;
            border-radius: 2px !important;
        }

        .platform-cta .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
        }

        /* Stats Section */
        .stats {
            padding: 80px 2rem;
            background: rgba(0, 255, 255, 0.02);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

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

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

        .stat-item {
            position: relative;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
            margin-bottom: 0.5rem;
            filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
        }

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

        /* Pricing Section */
        .pricing {
            padding: 120px 2rem;
        }

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

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

        .pricing-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            padding: 3rem;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            clip-path: polygon(30px 0%, 100% 0%, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0% 100%, 0% 30px);
        }

        .pricing-card.featured {
            border-color: var(--primary-cyan);
            background: rgba(0, 255, 255, 0.05);
            transform: scale(1.05);
            box-shadow: 0 0 50px rgba(0, 255, 255, 0.3);
        }

        .pricing-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-pink));
            color: var(--darker-bg);
            padding: 0.5rem 2rem;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 255, 255, 0.2);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-cyan);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
        }

        .plan-price {
            font-size: 4rem;
            font-weight: 900;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            text-shadow: 0 0 20px var(--primary-cyan);
        }

        .plan-period {
            color: var(--text-secondary);
            margin-bottom: 3rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 3rem;
            text-align: left;
        }

        .plan-features li {
            padding: 1rem 0;
            color: var(--text-secondary);
            position: relative;
            padding-left: 2rem;
            border-bottom: 1px solid rgba(0, 255, 255, 0.1);
        }

        .plan-features li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--primary-cyan);
            font-size: 0.8rem;
        }

        /* Contact CTA Section */
        .contact-cta {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 3rem;
            background: rgba(0, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .contact-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
            clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
            z-index: -1;
        }

        .contact-cta:hover::before {
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(255, 0, 255, 0.15));
        }

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

        .cta-content h3 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-pink));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
        }

        .cta-content p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

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

        .cta-buttons .btn-primary,
        .cta-buttons .btn-secondary {
            min-width: 200px;
            text-align: center;
        }

        @media (max-width: 768px) {
            .contact-cta {
                padding: 2rem 1rem;
            }
            
            .cta-content h3 {
                font-size: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-buttons .btn-primary,
            .cta-buttons .btn-secondary {
                width: 100%;
                max-width: 300px;
            }
        }

        /* Management Service Section */
        .management-service {
            position: relative;
            padding: 6rem 0;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(0, 255, 255, 0.05) 100%);
            border-top: 1px solid rgba(139, 92, 246, 0.1);
            border-bottom: 1px solid rgba(0, 255, 255, 0.1);
        }

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

        .management-content {
            display: flex;
            flex-direction: column;
            gap: 4rem;
            margin-top: 3rem;
        }

        .management-hero {
            text-align: center;
            padding: 3rem;
            background-image: url('images/fixed-rate-background.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .management-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            pointer-events: none;
            z-index: 1;
        }

        .management-icon-large {
            display: none;
        }

        .management-hero h3 {
            font-size: 2.2rem;
            color: #ffffff;
            margin-bottom: 1rem;
            font-weight: 700;
            position: relative;
            z-index: 2;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(139, 92, 246, 0.5);
        }

        .management-hero p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

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

        .management-feature {
            text-align: center;
            padding: 2rem;
            background: rgba(0, 255, 255, 0.03);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 15px;
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

        .management-feature:hover::before {
            transform: translateX(100%);
        }

        .management-feature:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 255, 255, 0.4);
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
        }

        .management-feature .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .management-feature h4 {
            font-size: 1.3rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .management-feature p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .management-cta {
            text-align: center;
            padding: 3rem;
            background: rgba(139, 92, 246, 0.03);
            border: 1px solid rgba(139, 92, 246, 0.15);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            position: relative;
        }

        .management-cta::after {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            background: linear-gradient(45deg, rgba(139, 92, 246, 0.2), rgba(0, 255, 255, 0.2), rgba(139, 92, 246, 0.2));
            border-radius: 21px;
            z-index: -1;
            animation: borderGlow 4s ease-in-out infinite;
        }

        .management-cta h3 {
            font-size: 1.8rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .management-cta p {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

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

        /* Mobile Responsiveness for Management Service */
        @media (max-width: 768px) {
            .management-features {
                grid-template-columns: 1fr;
            }
            
            .management-hero h3 {
                font-size: 1.8rem;
            }
            
            .management-hero {
                min-height: 300px;
                padding: 2rem;
            }
            
            .management-hero,
            .management-cta {
                padding: 2rem;
            }
        }

        @media (max-width: 480px) {
            .management-container {
                padding: 0 1rem;
            }
            
            .management-cta h3 {
                font-size: 1.5rem;
            }
            
            .management-hero h3 {
                font-size: 1.6rem;
            }
        }

        /* Privacy Policy Page Styles */
        .privacy-hero {
            padding: 8rem 0 4rem;
            text-align: center;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(139, 92, 246, 0.1));
        }

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

        .privacy-hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
            text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
        }

        .privacy-hero-nexus {
            color: #00ffff;
        }

        .privacy-hero-flow {
            color: #8b5cf6;
        }

        .privacy-hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .privacy-content {
            padding: 4rem 0;
        }

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

        .privacy-card {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 20px;
            padding: 3rem;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .privacy-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #00ffff, #8b5cf6);
        }

        .privacy-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .privacy-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            display: block;
            animation: pulse 2s ease-in-out infinite;
        }

        .privacy-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
        }

        .privacy-icon svg {
            width: 44px;
            height: 44px;
            stroke: #fff;
            stroke-width: 1.5;
        }

        .privacy-header h2 {
            font-size: 2.5rem;
            color: #00ffff;
            font-weight: 700;
        }

        .privacy-text {
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .privacy-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .privacy-text h3 {
            color: var(--text-primary);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            font-weight: 600;
        }

        .privacy-list {
            list-style: none;
            margin: 1.5rem 0;
            padding-left: 0;
        }

        .privacy-list li {
            padding: 0.5rem 0;
            padding-left: 2rem;
            position: relative;
            font-size: 1.1rem;
        }

        .privacy-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00ffff;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .privacy-contact {
            background: rgba(0, 255, 255, 0.05);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 15px;
            padding: 2rem;
            margin-top: 2rem;
            text-align: center;
        }

        .privacy-email {
            display: inline-block;
            color: #00ffff;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 8px;
            margin-top: 1rem;
            transition: all 0.3s ease;
        }

        .privacy-email:hover {
            background: rgba(0, 255, 255, 0.1);
            border-color: rgba(0, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        .privacy-cta {
            padding: 4rem 0;
            background: rgba(139, 92, 246, 0.05);
            border-top: 1px solid rgba(139, 92, 246, 0.1);
        }

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

        .privacy-cta .cta-content {
            text-align: center;
        }

        .privacy-cta h3 {
            font-size: 2rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .privacy-cta p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

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

        /* Mobile Responsiveness for Privacy Policy */
        @media (max-width: 768px) {
            .privacy-hero-title {
                font-size: 2.5rem;
            }
            
            .privacy-card {
                padding: 2rem;
            }
            
            .privacy-header h2 {
                font-size: 2rem;
            }
            
            .privacy-text p,
            .privacy-list li {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .privacy-container,
            .privacy-cta-container {
                padding: 0 1rem;
            }
            
            .privacy-card {
                padding: 1.5rem;
            }
            
            .privacy-hero-title {
                font-size: 2rem;
            }
            
            .privacy-cta h3 {
                font-size: 1.5rem;
            }
        }

        /* Terms of Service Page Styles */
        .terms-hero {
            padding: 8rem 0 4rem;
            text-align: center;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(0, 255, 255, 0.1));
        }

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

        .terms-hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
            text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
        }

        .terms-hero-nexus {
            color: #8b5cf6;
        }

        .terms-hero-flow {
            color: #00ffff;
        }

        .terms-hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .terms-content {
            padding: 4rem 0;
        }

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

        .terms-card {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 20px;
            padding: 3rem;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .terms-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #8b5cf6, #00ffff);
        }

        .terms-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .terms-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            display: block;
            animation: pulse 2s ease-in-out infinite;
        }

        .terms-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
        }

        .terms-icon svg {
            width: 44px;
            height: 44px;
            stroke: #fff;
            stroke-width: 1.5;
        }

        .terms-header h2 {
            font-size: 2.5rem;
            color: #8b5cf6;
            font-weight: 700;
        }

        .terms-text {
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .terms-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .terms-text h3 {
            color: var(--text-primary);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            font-weight: 600;
        }

        .terms-list {
            list-style: none;
            margin: 1.5rem 0;
            padding-left: 0;
        }

        .terms-list li {
            padding: 0.5rem 0;
            padding-left: 2rem;
            position: relative;
            font-size: 1.1rem;
        }

        .terms-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #8b5cf6;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .terms-contact {
            background: rgba(139, 92, 246, 0.05);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 15px;
            padding: 2rem;
            margin-top: 2rem;
            text-align: center;
        }

        .terms-email {
            display: inline-block;
            color: #8b5cf6;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 8px;
            margin-top: 1rem;
            transition: all 0.3s ease;
        }

        .terms-email:hover {
            background: rgba(139, 92, 246, 0.1);
            border-color: rgba(139, 92, 246, 0.5);
            transform: translateY(-2px);
        }

        .terms-cta {
            padding: 4rem 0;
            background: rgba(0, 255, 255, 0.05);
            border-top: 1px solid rgba(0, 255, 255, 0.1);
        }

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

        .terms-cta .cta-content {
            text-align: center;
        }

        .terms-cta h3 {
            font-size: 2rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .terms-cta p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

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

        /* Mobile Responsiveness for Terms of Service */
        @media (max-width: 768px) {
            .terms-hero-title {
                font-size: 2.5rem;
            }
            
            .terms-card {
                padding: 2rem;
            }
            
            .terms-header h2 {
                font-size: 2rem;
            }
            
            .terms-text p,
            .terms-list li {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .terms-container,
            .terms-cta-container {
                padding: 0 1rem;
            }
            
            .terms-card {
                padding: 1.5rem;
            }
            
            .terms-hero-title {
                font-size: 2rem;
            }
            
            .terms-cta h3 {
                font-size: 1.5rem;
            }
        }

        /* Contact Section */
        .contact {
            padding: 120px 2rem;
            background: rgba(0, 255, 255, 0.02);
            border-top: 1px solid var(--border-color);
        }

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

        /* Footer */
        .footer {
            padding: 60px 2rem 40px;
            border-top: 1px solid var(--border-color);
            text-align: center;
            background: rgba(0, 0, 0, 0.5);
            margin-top: 80px;
        }

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

        .footer-links {
            margin-bottom: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0 0.5rem;
        }

        .footer-links a:hover {
            color: var(--primary-cyan);
            text-shadow: 0 0 10px var(--primary-cyan);
            transform: translateY(-2px);
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1px;
            background: var(--primary-cyan);
            transition: width 0.3s ease;
            box-shadow: 0 0 5px var(--primary-cyan);
        }

        .footer-links a:hover::after {
            width: 80%;
        }

        .footer-separator {
            color: var(--primary-cyan);
            opacity: 0.5;
            font-size: 0.8rem;
            margin: 0 0.2rem;
        }

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

        .footer-bottom p {
            margin: 0.5rem 0;
        }

        .footer-credit {
            font-size: 0.85rem;
            opacity: 0.8;
            margin-top: 0.5rem;
        }

        .footer-credit a {
            color: var(--primary-cyan);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .footer-credit a:hover {
            color: var(--primary-pink);
            text-shadow: 0 0 10px var(--primary-pink);
            text-decoration: underline;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .mobile-menu-button {
                display: block !important;
            }
            
            .nav-links {
                display: none;
            }
            
            .nav-bottom .cyber-button {
                display: none;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 300px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contact {
                padding: 80px 1rem;
            }
            
            .contact-form {
                padding: 2rem;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
            
            .footer-links a {
                padding: 0.5rem 1rem;
            }
            
            .footer-separator {
                display: none;
            }
            
            .footer {
                margin-top: 40px;
                padding: 40px 1rem 30px;
            }
        }

        @media (max-width: 480px) {
            .mobile-menu {
                width: 90%;
                max-width: none;
            }
            
            .mobile-menu-header {
                padding: 1.5rem;
            }
            
            .mobile-menu-nav a {
                padding: 1.2rem 1.5rem;
                font-size: 1rem;
            }
            
            .mobile-menu-cta {
                padding: 1.5rem;
            }
            
            .cyber-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-nexus, .hero-flow {
                display: block;
                margin: 0;
            }
        }

        /* Scroll animations */
        .fade-up {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

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

        /* Data streams */
        .data-streams {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -3;
            pointer-events: none;
        }

        .data-stream {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
            opacity: 0;
            animation: dataFlow 3s ease-in-out infinite;
        }

        .data-stream:nth-child(odd) {
            background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
            animation-duration: 4s;
        }

        @keyframes dataFlow {
            0% {
                width: 0;
                opacity: 0;
                transform: translateX(0);
            }
            50% {
                width: 300px;
                opacity: 0.8;
            }
            100% {
                width: 0;
                opacity: 0;
                transform: translateX(100vw);
            }
        }

        /* Performance optimization for mobile */
        /* Laptop-specific optimizations */
        @media (min-width: 481px) and (max-width: 1024px) {
            .matrix-rain {
                opacity: 0.2;
            }
            
            .matrix-column {
                font-size: 12px;
            }
        }
        
        @media (max-width: 480px) {
            .matrix-rain {
                display: none;
            }
            
            .particles {
                opacity: 0.5;
            }
            
            .particle {
                animation-duration: 30s !important;
            }
            
            .orb {
                filter: blur(100px);
                opacity: 0.3;
            }
            
            .scanlines::before {
                animation: none;
                transform: translateY(0);
            }
            
            .data-streams {
                display: none;
            }
            
            .noise-overlay {
                display: none;
            }
        }

        /* Reduced motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            .cyber-gradient,
            .grid-lines,
            .grid-glow,
            .particle,
            .orb,
            .matrix-column,
            .scanlines::before,
            .data-stream,
            .trusted-by-track {
                animation: none !important;
            }
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

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

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--primary-cyan), var(--primary-pink));
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(var(--primary-pink), var(--primary-cyan));
        }

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    /* Navigation fixes */
    nav {
        padding: 0.8rem 1rem;
    }
    
    .nav-container {
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    /* Mobile menu improvements */
    .mobile-menu {
        top: 70px;
        width: 85%;
        max-width: 320px;
        height: calc(100vh - 70px);
        border-left: 1px solid var(--border-color);
    }
    
    .mobile-menu-header {
        padding: 1.5rem;
    }
    
    .mobile-menu-logo {
        font-size: 1.3rem;
    }
    
    .mobile-menu-nav a {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .mobile-menu-cta {
        padding: 1.5rem;
    }
    
    .cyber-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    /* Hero section mobile fixes */
    .hero {
        padding: 120px 1rem 80px;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
        line-height: 1.1;
        margin-bottom: 1.5rem;
        letter-spacing: 2px;
    }
    
    .hero-nexus, .hero-flow {
        display: inline-block;
        margin: 0;
        word-break: keep-all;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    /* Features section mobile fixes */
    .features {
        padding: 80px 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* Platform features mobile fixes */
    .platform-features {
        gap: 0.4rem;
        margin-bottom: 1rem;
    }

    .platform-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .platform-cta .btn-secondary {
        width: 100%;
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }
    
    /* Stats section mobile fixes */
    .stats {
        padding: 60px 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Contact section mobile fixes */
    .contact {
        padding: 80px 1rem;
    }
    
    .contact-cta {
        padding: 2rem 1.5rem;
        margin: 0 auto;
    }

    .cta-content h3 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary {
        width: 100%;
        max-width: 280px;
    }
    
    /* Footer mobile fixes */
    .footer {
        padding: 40px 1rem 30px;
        margin-top: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-links a {
        padding: 0.3rem 0;
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
    
    .footer-credit {
        font-size: 0.75rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    /* Navigation for very small screens */
    nav {
        padding: 0.6rem 0.8rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    /* Mobile menu for very small screens */
    .mobile-menu {
        width: 90%;
        max-width: none;
        top: 65px;
        height: calc(100vh - 65px);
    }
    
    .mobile-menu-header {
        padding: 1.2rem;
    }
    
    .mobile-menu-logo {
        font-size: 1.1rem;
    }
    
    .mobile-menu-nav a {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .mobile-menu-cta {
        padding: 1.2rem;
    }
    
    .cyber-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    
    /* Hero section for very small screens */
    .hero {
        padding: 100px 0.8rem 60px;
        min-height: 85vh;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.3rem;
    }
    
    .hero-buttons {
        padding: 0 0.5rem;
    }
    
    .btn-primary, .btn-secondary {
        max-width: 260px;
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
    }
    
    /* Features for very small screens */
    .features {
        padding: 60px 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .feature-card {
        padding: 1.8rem 1.2rem;
        margin: 0 0.3rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    /* Category titles for mobile */
    .platform-category .category-title {
        font-size: 1.5rem !important;
        margin-bottom: 2rem !important;
        letter-spacing: 1px !important;
    }
    
    .platform-category .category-title::after {
        width: 60px !important;
        height: 2px !important;
    }
    
    /* Very small screens - single column for better mobile experience */
    @media (max-width: 480px) {
        .features-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .feature-card {
            padding: 1.5rem 1rem;
        }
    }
        margin-bottom: 1.2rem;
    }
    
    /* Stats for very small screens */
    .stats {
        padding: 50px 0.8rem;
    }
    
    .stats-grid {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Contact for very small screens */
    .contact {
        padding: 60px 0.8rem;
    }
    
    .contact-cta {
        padding: 1.8rem 1.2rem;
        margin: 0 auto;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .cta-buttons .btn-primary {
        max-width: 260px;
    }
    
    /* Footer for very small screens */
    .footer {
        padding: 30px 0.8rem 25px;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
    }
    
    .footer-credit {
        font-size: 0.7rem;
    }
}

/* Landscape mobile orientation fixes */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 100px 1rem 60px;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: auto;
        max-width: 200px;
    }
    
    .mobile-menu {
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
    /* Larger touch targets */
    .nav-links a,
    .mobile-menu-nav a,
    .btn-primary,
    .btn-secondary,
    .cyber-button {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better button spacing */
    .hero-buttons {
        gap: 1.2rem;
    }
    
    /* Improved card spacing */
    .feature-card {
        margin-bottom: 1rem;
    }
    
    /* Better text readability */
    .hero-subtitle,
    .section-subtitle,
    .feature-card p,
    .cta-content p {
        line-height: 1.6;
    }
}

/* Security Section Styles */
.security-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

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

.security-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.security-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.security-hero {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.security-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.security-hero .hero-content {
  position: relative;
  z-index: 2;
}

/* Enhanced Stats */
.security-hero .stat {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.security-hero .stat::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: transform 0.6s ease;
}

.security-hero .stat:hover::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.security-hero .stat:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.2);
}

.security-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

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

.security-hero h3 {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.security-hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

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

.security-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.security-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.security-stats .stat-item:hover::before {
    transform: translateX(100%);
}

.security-stats .stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.security-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.security-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.security-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
}

.security-cta::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(139, 92, 246, 0.2), rgba(0, 255, 255, 0.2));
    border-radius: 21px;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.security-cta h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.security-cta p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.security-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00ffff, #8b5cf6);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
}

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

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

.security-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

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

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .security-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .security-stats {
        grid-template-columns: 1fr;
    }
    
    .security-hero h3 {
        font-size: 1.5rem;
    }
    
    .security-icon-large {
        width: 70px;
        height: 70px;
    }

    .security-icon-large svg {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 480px) {
    .security-container {
        padding: 0 1rem;
    }
    
    .security-cta h3 {
        font-size: 1.5rem;
    }
    
    .security-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Security Page Styles - Fixed */
.security-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.security-nav .logo {
  color: #00ffff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.security-nav .logo:hover {
  color: #8b5cf6 !important;
}

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

.security-nav .nav-links a {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.security-nav .nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 20px;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.security-nav .nav-links a:hover::before {
  transform: scale(1);
}

/* Hero Section */
.security-hero {
  padding: 8rem 0 4rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(139, 92, 246, 0.1));
}

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

.security-hero h1 {
  font-size: 3.5rem;
  color: #00ffff !important;
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.security-hero .hero-subtitle {
  font-size: 1.3rem;
  color: #ffffff !important;
  margin-bottom: 3rem;
  line-height: 1.6;
}

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

.security-hero .stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.security-hero .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #00ffff !important;
  margin-bottom: 0.5rem;
}

.security-hero .stat-label {
  font-size: 0.9rem;
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Intro Section */
.security-intro {
  padding: 6rem 0;
  background: rgba(0, 0, 0, 0.3);
}

.security-intro h2 {
  font-size: 2.5rem;
  color: #00ffff !important;
  margin-bottom: 2rem;
  text-align: center;
}

.security-intro .intro-text {
  font-size: 1.2rem;
  color: #ffffff !important;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.warning-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 15px;
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.warning-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.warning-icon svg {
  width: 32px;
  height: 32px;
  stroke: #ffc107;
  stroke-width: 2;
  filter: drop-shadow(0 0 6px rgba(255, 193, 7, 0.5));
}

.warning-content h3 {
  color: #ffc107 !important;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.warning-content p {
  color: #ffffff !important;
  line-height: 1.6;
  margin: 0;
}

/* Practices Section */
.security-practices {
  padding: 6rem 0;
  background: rgba(139, 92, 246, 0.05);
}

.security-practices h2 {
  font-size: 2.5rem;
  color: #8b5cf6 !important;
  margin-bottom: 1rem;
  text-align: center;
}

.security-practices .section-intro {
  font-size: 1.2rem;
  color: #ffffff !important;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

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

.practice-card {
  background: rgba(0, 0, 0, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00ffff, #8b5cf6);
}

.practice-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 255, 0.3) !important;
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.1);
}

.practice-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.practice-icon svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  stroke-width: 1.5;
}

.practice-card h3 {
  color: #ffffff !important;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.practice-card p {
  color: #cccccc !important;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.practice-tip {
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 10px;
  padding: 1rem;
  font-size: 0.9rem;
}

.practice-tip strong {
  color: #00ffff !important;
}

/* Threats Section */
.security-threats {
  padding: 6rem 0;
  background: rgba(0, 0, 0, 0.3);
}

.security-threats h2 {
  font-size: 2.5rem;
  color: #ff6b6b !important;
  margin-bottom: 1rem;
  text-align: center;
}

.security-threats .section-intro {
  font-size: 1.2rem;
  color: #ffffff !important;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

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

.threat-card {
  background: rgba(0, 0, 0, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.threat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #ffa500);
}

.threat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 107, 0.3) !important;
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.1);
}

.threat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.3);
}

.threat-icon svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  stroke-width: 1.5;
}

.threat-card h3 {
  color: #ffffff !important;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.threat-card p {
  color: #cccccc !important;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.threat-signs h4 {
  color: #ff6b6b !important;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.threat-signs ul {
  color: #cccccc !important;
  padding-left: 1.5rem;
  line-height: 1.5;
}

.threat-signs li {
  margin-bottom: 0.5rem;
}

/* Report Section */
.security-report {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(139, 92, 246, 0.1));
}

.security-report .report-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.security-report h2 {
  font-size: 2.5rem;
  color: #00ffff !important;
  margin-bottom: 1.5rem;
}

.security-report p {
  font-size: 1.2rem;
  color: #ffffff !important;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.report-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.report-buttons .btn-primary {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  background: linear-gradient(135deg, #00ffff, #8b5cf6);
  color: #000000 !important;
  box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
}

.report-buttons .btn-secondary {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6 !important;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.report-buttons .btn-primary:hover, .report-buttons .btn-secondary:hover {
  transform: translateY(-2px);
}

.report-buttons .btn-primary:hover {
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.report-buttons .btn-secondary:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
}

/* Footer */
.security-footer {
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  padding: 3rem 0;
}

.security-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.security-footer .footer-links {
  margin-bottom: 2rem;
}

.security-footer .footer-links a {
  color: #ffffff !important;
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.security-footer .footer-links a:hover {
  color: #00ffff !important;
}

.security-footer .separator {
  color: #ffffff !important;
}

.security-footer .footer-bottom {
  color: #ffffff !important;
  font-size: 0.9rem;
}

.security-footer .last-updated {
  color: #ffffff !important;
  opacity: 0.7;
  margin-top: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .security-nav .nav-links {
    display: none;
  }
  
  .security-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .security-hero .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .practices-grid, .threats-grid {
    grid-template-columns: 1fr;
  }
  
  .warning-box {
    flex-direction: column;
    text-align: center;
  }
  
  .report-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .security-hero h1 {
    font-size: 2rem;
  }
  
  .security-hero .hero-subtitle {
    font-size: 1.1rem;
  }
}

/* Security Page Text Fixes */
.security-hero h1,
.security-hero .hero-subtitle,
.security-intro h2,
.security-intro .intro-text,
.security-practices h2,
.security-practices .section-intro,
.security-threats h2,
.security-threats .section-intro,
.security-report h2,
.security-report p,
.practice-card h3,
.practice-card p,
.threat-card h3,
.threat-card p,
.threat-signs h4,
.threat-signs ul,
.threat-signs li,
.warning-content h3,
.warning-content p {
  color: #ffffff !important;
}

.security-hero h1 {
  color: #00ffff !important;
}

.security-intro h2 {
  color: #00ffff !important;
}

.security-practices h2 {
  color: #8b5cf6 !important;
}

.security-threats h2 {
  color: #ff6b6b !important;
}

.security-report h2 {
  color: #00ffff !important;
}

.practice-tip strong {
  color: #00ffff !important;
}

.threat-signs h4 {
  color: #ff6b6b !important;
}

/* Force text to be visible */
.security-hero,
.security-intro,
.security-practices,
.security-threats,
.security-report {
  color: #ffffff !important;
}

/* Ensure all text elements inherit proper color */
.security-hero *,
.security-intro *,
.security-practices *,
.security-threats *,
.security-report * {
  color: inherit;
}

/* Specific text overrides */
.security-hero h1 {
  color: #00ffff !important;
}

.security-intro h2 {
  color: #00ffff !important;
}

.security-practices h2 {
  color: #8b5cf6 !important;
}

.security-threats h2 {
  color: #ff6b6b !important;
}

.security-report h2 {
  color: #00ffff !important;
}
/* Christmas Animation Styles */
#christmasAnimation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #151522;
  z-index: 99999;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#christmasAnimation svg {
  width: 90%;
  height: 90%;
  visibility: hidden;
}

/* ============================================================
   Trusted By — Client Logo Carousel (Phase 3, PROOF-01/02/03)
   ============================================================ */

.trusted-by {
        padding: 3rem 1.5rem 2rem;
        position: relative;
        z-index: 1;
}

.trusted-by-container {
        max-width: 1200px;
        margin: 0 auto;
}

.trusted-by-viewport {
        margin-top: 2rem;
        overflow: hidden;
        position: relative;
        width: 100%;
        -webkit-mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}

.trusted-by-track {
        display: flex;
        align-items: center;
        gap: 3rem;
        width: max-content;
        animation: trusted-by-scroll 28s linear infinite;
        will-change: transform;
}

.trusted-by-track:hover {
        animation-play-state: paused;
}

.trusted-by-logo {
        flex: 0 0 auto;
        width: 200px;
        height: 80px;
        object-fit: contain;
        opacity: 0.75;
        filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.15));
        transition: opacity 0.3s ease, filter 0.3s ease;
}

.trusted-by-logo:hover {
        opacity: 1;
        filter: drop-shadow(0 0 12px rgba(0, 255, 255, 0.45));
}

@keyframes trusted-by-scroll {
        from {
                transform: translateX(0);
        }
        to {
                transform: translateX(-50%);
        }
}

@media (max-width: 768px) {
        .trusted-by {
                padding: 2rem 1rem 1.5rem;
        }
        .trusted-by-track {
                gap: 2rem;
                animation-duration: 24s;
        }
        .trusted-by-logo {
                width: 140px;
                height: 56px;
        }
}

@media (max-width: 480px) {
        .trusted-by {
                padding: 1.5rem 0.75rem 1rem;
        }
        .trusted-by-track {
                gap: 1.5rem;
                animation-duration: 22s;
        }
        .trusted-by-logo {
                width: 110px;
                height: 44px;
        }
}

/* ============================================================
   Reviews Section — Google Review CTA (Phase 3, PROOF-04/05)
   ============================================================ */

.reviews {
        padding: 4rem 1.5rem;
        position: relative;
        z-index: 1;
}

.reviews-container {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
        padding: 2.5rem 2rem;
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        box-shadow: 0 0 40px rgba(0, 255, 255, 0.08);
        position: relative;
}

.reviews-container::before {
        content: '';
        position: absolute;
        inset: -1px;
        border-radius: 12px;
        padding: 1px;
        background: linear-gradient(135deg, rgba(0, 255, 255, 0.4), rgba(8, 0, 255, 0.25), transparent 60%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
                mask-composite: exclude;
        pointer-events: none;
}

.reviews-stars {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin: 1.5rem 0 1.25rem;
}

.reviews-stars svg,
.reviews-stars i[data-lucide] {
        width: 32px;
        height: 32px;
        color: var(--primary-cyan);
        fill: var(--primary-cyan);
        filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.55));
}

.reviews-blurb {
        max-width: 560px;
        margin: 0 auto 1.75rem;
        color: var(--text-secondary);
        font-size: 1rem;
        line-height: 1.6;
}

.reviews-cta {
        display: flex;
        justify-content: center;
}

@media (max-width: 768px) {
        .reviews {
                padding: 3rem 1rem;
        }
        .reviews-container {
                padding: 2rem 1.25rem;
        }
        .reviews-stars svg,
        .reviews-stars i[data-lucide] {
                width: 26px;
                height: 26px;
        }
        .reviews-blurb {
                font-size: 0.95rem;
        }
}

@media (max-width: 480px) {
        .reviews {
                padding: 2.5rem 0.75rem;
        }
        .reviews-container {
                padding: 1.75rem 1rem;
        }
        .reviews-stars {
                gap: 0.35rem;
        }
        .reviews-stars svg,
        .reviews-stars i[data-lucide] {
                width: 22px;
                height: 22px;
        }
}
