
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        
        :root {
            --background: #0B1220;
            --primary-blue: #1E3A8A;
            --accent-green: #22C55E;
            --text-white: #E5E7EB;
            --muted-gray: #9CA3AF;
            --card-bg: #111827;
            --border-color: #1F2937;
            --glow-blue: rgba(59, 130, 246, 0.5);
            --glow-green: rgba(34, 197, 94, 0.5);
            --neon-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
        }
        
        body {
            background-color: var(--background);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
        }
        
        /* Animated background particles */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            opacity: 0.5;
        }
        
        /* 3D Scene Container */
        #scene-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.15;
            pointer-events: none;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        /* Header with glassmorphism */
        header {
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(11, 18, 32, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(30, 58, 138, 0.3);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-white);
            text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
            position: relative;
            z-index: 1001;
        }
        
        .logo i {
            color: var(--accent-green);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        .logo::after {
            content: '3D';
            position: absolute;
            top: -8px;
            right: -35px;
            font-size: 0.7rem;
            background: linear-gradient(45deg, var(--accent-green), var(--primary-blue));
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: bold;
        }
        
        /* Desktop Navigation */
        .nav-desktop {
            display: flex;
            align-items: center;
            gap: 35px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        
        .nav-links a {
            color: var(--muted-gray);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            position: relative;
            transition: color 0.3s;
            padding: 5px 0;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
            transition: width 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--text-white);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-buttons {
            display: flex;
            gap: 15px;
        }
        
        .btn-3d {
            background: linear-gradient(145deg, var(--primary-blue), #1d4ed8);
            color: var(--text-white);
            border: none;
            padding: 12px 26px;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            box-shadow: 0 6px 0 rgba(15, 23, 42, 0.8), 0 8px 20px rgba(30, 58, 138, 0.4);
            transform: translateY(0);
        }
        
        .btn-3d:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 0 rgba(15, 23, 42, 0.8), 0 12px 25px rgba(30, 58, 138, 0.6);
            background: linear-gradient(145deg, #1d4ed8, var(--primary-blue));
        }
        
        .btn-3d:active {
            transform: translateY(2px);
            box-shadow: 0 2px 0 rgba(15, 23, 42, 0.8), 0 4px 15px rgba(30, 58, 138, 0.4);
        }
        
        .btn-3d.green {
            background: linear-gradient(145deg, var(--accent-green), #16a34a);
            box-shadow: 0 6px 0 rgba(21, 128, 61, 0.8), 0 8px 20px rgba(34, 197, 94, 0.4);
        }
        
        .btn-3d.green:hover {
            box-shadow: 0 8px 0 rgba(21, 128, 61, 0.8), 0 12px 25px rgba(34, 197, 94, 0.6);
            background: linear-gradient(145deg, #16a34a, var(--accent-green));
        }
        
        /* Mobile Navigation - Hamburger Menu */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            z-index: 1001;
            position: relative;
        }
        
        .hamburger-menu span {
            display: block;
            height: 3px;
            width: 100%;
            background: linear-gradient(90deg, var(--accent-green), var(--primary-blue));
            border-radius: 3px;
            transition: all 0.3s ease;
            transform-origin: right;
        }
        
        .hamburger-menu.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
            background: var(--accent-green);
        }
        
        .hamburger-menu.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger-menu.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
            background: var(--accent-green);
        }
        
        /* Mobile Navigation Overlay */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 400px;
            height: 100vh;
            background: rgba(11, 18, 32, 0.98);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            z-index: 999;
            transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
            padding: 100px 40px 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
            border-left: 1px solid rgba(30, 58, 138, 0.3);
        }
        
        .mobile-nav.active {
            right: 0;
        }
        
        .mobile-nav-links {
            list-style: none;
            margin-top: 40px;
        }
        
        .mobile-nav-links li {
            margin-bottom: 25px;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.3s ease;
        }
        
        .mobile-nav.active .mobile-nav-links li {
            opacity: 1;
            transform: translateX(0);
        }
        
        .mobile-nav.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
        .mobile-nav.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
        .mobile-nav.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
        .mobile-nav.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }
        .mobile-nav.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.5s; }
        
        .mobile-nav-links a {
            color: var(--text-white);
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(30, 58, 138, 0.2);
            transition: all 0.3s;
        }
        
        .mobile-nav-links a:hover {
            color: var(--accent-green);
            padding-left: 10px;
            border-bottom-color: var(--accent-green);
        }
        
        .mobile-nav-links i {
            font-size: 1.2rem;
            width: 30px;
            color: var(--accent-green);
        }
        
        .mobile-nav-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 40px;
        }
        
        .mobile-nav-buttons .btn-3d {
            width: 100%;
            text-align: center;
            padding: 16px;
            font-size: 1.1rem;
        }
        
        .mobile-nav-footer {
            margin-top: auto;
            padding-top: 30px;
            border-top: 1px solid rgba(30, 58, 138, 0.3);
            color: var(--muted-gray);
            font-size: 0.9rem;
            text-align: center;
        }
        
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Hero Section with 3D effect */
        .hero {
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(30, 58, 138, 0.25) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.15) 0%, transparent 50%);
            z-index: -1;
        }
        
        .hero h1 {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 25px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            background: linear-gradient(135deg, var(--text-white) 30%, var(--muted-gray) 70%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
        }
        
        .hero h1::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 5px;
            box-shadow: 0 0 15px var(--glow-blue);
        }
        
        .hero p {
            font-size: 1.3rem;
            color: var(--muted-gray);
            max-width: 700px;
            margin: 40px auto 50px;
            line-height: 1.8;
        }
        
        .cta-button {
            background: linear-gradient(145deg, var(--accent-green), #16a34a);
            color: var(--background);
            border: none;
            padding: 20px 40px;
            border-radius: 12px;
            font-size: 1.3rem;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 10px 0 rgba(21, 128, 61, 0.8), 
                        0 15px 30px rgba(34, 197, 94, 0.4),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transform: translateY(0);
            margin-bottom: 30px;
            z-index: 1;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s;
            z-index: -1;
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 0 rgba(21, 128, 61, 0.8), 
                        0 20px 40px rgba(34, 197, 94, 0.6),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button:active {
            transform: translateY(2px);
            box-shadow: 0 5px 0 rgba(21, 128, 61, 0.8), 
                        0 8px 20px rgba(34, 197, 94, 0.4),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }
        
        .trust-badges {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 80px;
            color: var(--muted-gray);
        }
        
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px 25px;
            background: rgba(17, 24, 39, 0.7);
            border-radius: 10px;
            border: 1px solid rgba(30, 58, 138, 0.3);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .trust-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-blue), var(--accent-green));
        }
        
        .trust-badge:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border-color: rgba(30, 58, 138, 0.6);
        }
        
        .trust-badge i {
            color: var(--accent-green);
            font-size: 1.2rem;
        }
        
        /* Features with 3D cards */
        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 80px;
            color: var(--text-white);
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 4px;
            box-shadow: 0 0 15px var(--glow-blue);
        }
        
        .features {
            padding: 100px 0;
            position: relative;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 100px;
        }
        
        .feature-card-3d {
            background: linear-gradient(145deg, rgba(17, 24, 39, 0.9), rgba(11, 18, 32, 0.9));
            border-radius: 20px;
            padding: 40px 30px;
            border: 1px solid rgba(30, 58, 138, 0.3);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            perspective: 1000px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
        }
        
        .feature-card-3d::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
        }
        
        .feature-card-3d:hover {
            transform: translateY(-15px) rotateX(5deg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(30, 58, 138, 0.2);
            border-color: rgba(34, 197, 94, 0.5);
        }
        
        .feature-icon-3d {
            width: 80px;
            height: 80px;
            background: linear-gradient(145deg, rgba(30, 58, 138, 0.3), rgba(34, 197, 94, 0.1));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: var(--accent-green);
            font-size: 2rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transform: translateZ(20px);
            position: relative;
            overflow: hidden;
        }
        
        .feature-icon-3d::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: skewX(-20deg);
            left: -50px;
            top: 0;
            transition: left 0.5s;
        }
        
        .feature-card-3d:hover .feature-icon-3d::after {
            left: calc(100% + 50px);
        }
        
        .feature-card-3d h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--text-white);
            transform: translateZ(15px);
        }
        
        .feature-card-3d p {
            color: var(--muted-gray);
            margin-bottom: 25px;
            line-height: 1.7;
            transform: translateZ(10px);
        }
        
        /* Live Dashboard Section */
        .dashboard {
            padding: 100px 0;
            position: relative;
        }
        
        .dashboard-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }
        
        @media (max-width: 1100px) {
            .dashboard-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .dashboard-card-3d {
            background: linear-gradient(145deg, rgba(17, 24, 39, 0.9), rgba(11, 18, 32, 0.9));
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(30, 58, 138, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }
        
        .dashboard-card-3d::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
        }
        
        .dashboard-card-3d h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--text-white);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .dashboard-card-3d h3 i {
            color: var(--accent-green);
        }
        
        /* Live crypto chart */
        .live-chart-container {
            height: 200px;
            margin-bottom: 40px;
            position: relative;
        }
        
        .chart-line {
            fill: none;
            stroke: var(--accent-green);
            stroke-width: 3;
            filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.5));
        }
        
        .chart-area {
            fill: url(#areaGradient);
        }
        
        .chart-grid {
            stroke: rgba(156, 163, 175, 0.1);
            stroke-width: 1;
        }
        
        .stat-grid-3d {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .stat-item-3d {
            background: linear-gradient(145deg, rgba(30, 58, 138, 0.2), rgba(11, 18, 32, 0.8));
            padding: 25px 20px;
            border-radius: 15px;
            border-left: 5px solid var(--primary-blue);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .stat-item-3d:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border-left-color: var(--accent-green);
        }
        
        .live-stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-green);
            text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
        }
        
        .stat-label {
            font-size: 1rem;
            color: var(--muted-gray);
            margin-top: 8px;
        }
        
        /* Activity feed with live updates */
        .activity-feed {
            max-height: 300px;
            overflow-y: auto;
            padding-right: 10px;
        }
        
        .activity-feed::-webkit-scrollbar {
            width: 6px;
        }
        
        .activity-feed::-webkit-scrollbar-track {
            background: rgba(30, 58, 138, 0.1);
            border-radius: 10px;
        }
        
        .activity-feed::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--primary-blue), var(--accent-green));
            border-radius: 10px;
        }
        
        .activity-item {
            padding: 20px;
            border-bottom: 1px solid rgba(30, 58, 138, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
            border-radius: 10px;
            margin-bottom: 10px;
        }
        
        .activity-item:hover {
            background: rgba(30, 58, 138, 0.1);
        }
        
        .activity-item:last-child {
            border-bottom: none;
        }
        
        .activity-content {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .activity-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(145deg, rgba(30, 58, 138, 0.3), rgba(11, 18, 32, 0.8));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--accent-green);
        }
        
        .activity-status {
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
            min-width: 100px;
            text-align: center;
        }
        
        .status-live {
            background: linear-gradient(90deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
            color: var(--accent-green);
            border: 1px solid rgba(34, 197, 94, 0.3);
            animation: pulseStatus 2s infinite;
        }
        
        @keyframes pulseStatus {
            0%, 100% { box-shadow: 0 0 5px rgba(34, 197, 94, 0.3); }
            50% { box-shadow: 0 0 15px rgba(34, 197, 94, 0.5); }
        }
        
        /* Security badges */
        .security-badges-3d {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .security-badge-3d {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 25px;
            background: linear-gradient(145deg, rgba(30, 58, 138, 0.2), rgba(11, 18, 32, 0.8));
            border-radius: 15px;
            border: 1px solid rgba(30, 58, 138, 0.3);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .security-badge-3d::before {
            content: '';
            position: absolute;
            width: 5px;
            height: 100%;
            left: 0;
            top: 0;
            background: linear-gradient(180deg, var(--primary-blue), var(--accent-green));
        }
        
        .security-badge-3d:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .security-badge-3d i {
            color: var(--accent-green);
            font-size: 2rem;
        }
        
        /* Why It Works Section */
      /* Why It Works Section - Enhanced 3D */
.why-works {
    padding: 120px 0;
    text-align: center;
    position: relative;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(30, 58, 138, 0.15) 0%,
        transparent 70%
    );
    overflow: hidden;
}

.why-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--accent-green),
        transparent
    );
    box-shadow: 0 0 20px var(--accent-green);
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 100px;
    color: var(--text-white);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.section-title::before {
    content: '✓';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, var(--accent-green), #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
    box-shadow: 0 0 20px var(--glow-green);
}

.benefits-grid-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.benefit-item-3d {
    padding: 60px 40px;
    background: linear-gradient(
        145deg,
        rgba(17, 24, 39, 0.95),
        rgba(11, 18, 32, 0.95)
    );
    border-radius: 25px;
    border: 1px solid rgba(30, 58, 138, 0.4);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.25),
        0 0 50px rgba(30, 58, 138, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.benefit-item-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--accent-green),
        var(--primary-blue)
    );
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.benefit-item-3d::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--accent-green), transparent);
    border-radius: 10px;
    opacity: 0.2;
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.benefit-item-3d:hover::after {
    transform: rotate(45deg) scale(1.5);
    opacity: 0.3;
}

.benefit-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(
        145deg,
        rgba(30, 58, 138, 0.3),
        rgba(34, 197, 94, 0.15)
    );
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    color: var(--accent-green);
    font-size: 2.8rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 40px rgba(34, 197, 94, 0.2);
    transform: translateZ(30px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.benefit-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: skewX(-20deg);
    left: -60px;
    top: 0;
    transition: left 0.6s ease;
}

.benefit-item-3d:hover .benefit-icon-wrapper {
    transform: translateZ(50px) scale(1.1);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 50px rgba(34, 197, 94, 0.4);
    background: linear-gradient(
        145deg,
        rgba(30, 58, 138, 0.4),
        rgba(34, 197, 94, 0.25)
    );
}

.benefit-item-3d:hover .benefit-icon-wrapper::before {
    left: calc(100% + 60px);
}

.benefit-item-3d h4 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-white);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    transform: translateZ(20px);
}

.benefit-item-3d h4::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), transparent);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.benefit-item-3d:hover h4::after {
    width: 100px;
    background: linear-gradient(90deg, var(--accent-green), var(--primary-blue));
}

.benefit-item-3d p {
    color: var(--muted-gray);
    line-height: 1.8;
    font-size: 1.15rem;
    margin-bottom: 0;
    transform: translateZ(15px);
    transition: color 0.3s ease;
}

.benefit-item-3d:hover p {
    color: rgba(229, 231, 235, 0.9);
}

/* Stats Counter */
.benefit-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.benefit-stat {
    text-align: center;
    padding: 30px;
    background: rgba(17, 24, 39, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(30, 58, 138, 0.3);
    min-width: 180px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(34, 197, 94, 0.05),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.benefit-stat:hover::before {
    transform: translateX(100%);
}

.benefit-stat:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(34, 197, 94, 0.15);
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-green);
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--muted-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 3D Hover Effects */
.benefit-item-3d:hover {
    transform: translateY(-20px) rotateX(5deg) rotateY(2deg) scale(1.03);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.35),
        0 0 80px rgba(34, 197, 94, 0.25),
        0 0 120px rgba(30, 58, 138, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(34, 197, 94, 0.6);
}

/* Floating Animation */
@keyframes floatBenefit {
    0%, 100% {
        transform: translateY(0) rotateX(0) rotateY(0);
    }
    33% {
        transform: translateY(-10px) rotateX(2deg) rotateY(1deg);
    }
    66% {
        transform: translateY(-5px) rotateX(-1deg) rotateY(-1deg);
    }
}

.benefit-item-3d {
    animation: floatBenefit 8s ease-in-out infinite;
}

.benefit-item-3d:nth-child(2) {
    animation-delay: 1s;
}

.benefit-item-3d:nth-child(3) {
    animation-delay: 2s;
}

/* Glow Effect */
.benefit-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(34, 197, 94, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: -1;
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-item-3d:hover .benefit-glow {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title {
        font-size: 3rem;
    }
    
    .benefits-grid-3d {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .why-works {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 70px;
    }
    
    .section-title::before {
        display: none;
    }
    
    .benefits-grid-3d {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 60px;
    }
    
    .benefit-item-3d {
        padding: 50px 30px;
    }
    
    .benefit-icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
    
    .benefit-item-3d h4 {
        font-size: 1.8rem;
    }
    
    .benefit-stats {
        gap: 20px;
    }
    
    .benefit-stat {
        min-width: 140px;
        padding: 25px 20px;
    }
    
    .stat-value {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }
    
    .benefit-item-3d {
        padding: 40px 25px;
    }
    
    .benefit-item-3d h4 {
        font-size: 1.6rem;
    }
    
    .benefit-item-3d p {
        font-size: 1.1rem;
    }
    
    .benefit-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-stat {
        width: 100%;
        max-width: 250px;
    }
}

/* Add pulse animation to stats */
@keyframes pulseStat {
    0%, 100% {
        box-shadow: 
            0 10px 25px rgba(0, 0, 0, 0.2),
            0 0 20px rgba(34, 197, 94, 0.1);
    }
    50% {
        box-shadow: 
            0 10px 25px rgba(0, 0, 0, 0.2),
            0 0 30px rgba(34, 197, 94, 0.2);
    }
}

.benefit-stat {
    animation: pulseStat 4s ease-in-out infinite;
}

.benefit-stat:nth-child(2) {
    animation-delay: 0.5s;
}

.benefit-stat:nth-child(3) {
    animation-delay: 1s;
}

/* Add connecting lines animation */
.benefit-connector {
    position: absolute;
    top: 50%;
    left: -25px;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    opacity: 0.3;
    z-index: 1;
}

.benefit-item-3d:nth-child(1) .benefit-connector {
    display: none;
}

@media (min-width: 768px) {
    .benefit-connector {
        display: block;
    }
}
        
        /* Footer */
        footer {
            padding: 80px 0 40px;
            border-top: 1px solid rgba(30, 58, 138, 0.3);
            margin-top: 60px;
            position: relative;
            background: rgba(11, 18, 32, 0.8);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .footer-column h4 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: var(--text-white);
            position: relative;
            display: inline-block;
        }
        
        .footer-column h4::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
            bottom: -10px;
            left: 0;
            border-radius: 3px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: var(--muted-gray);
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a:hover {
            color: var(--accent-green);
            transform: translateX(5px);
        }
        
        .footer-links a i {
            font-size: 0.8rem;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .footer-links a:hover i {
            opacity: 1;
        }
        
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(30, 58, 138, 0.3);
            color: var(--muted-gray);
            font-size: 0.95rem;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .nav-desktop {
                gap: 25px;
            }
            
            .nav-links {
                gap: 25px;
            }
        }
        
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 992px) {
            /* Hide desktop navigation */
            .nav-desktop {
                display: none;
            }
            
            /* Show hamburger menu */
            .hamburger-menu {
                display: flex;
            }
            
            /* Adjust header layout for mobile */
            .nav-container {
                position: relative;
            }
            
            /* Mobile header buttons */
            .mobile-header-buttons {
                display: flex;
                align-items: center;
                gap: 15px;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .features, .dashboard, .why-works {
                padding: 70px 0;
            }
            
            .trust-badges {
                flex-direction: column;
                gap: 20px;
            }
            
            .dashboard-card-3d {
                padding: 30px 20px;
            }
            
            .stat-grid-3d {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .mobile-nav {
                width: 90%;
                padding: 100px 30px 30px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .cta-button {
                padding: 16px 30px;
                font-size: 1.1rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-grid-3d {
                grid-template-columns: 1fr;
            }
            
            .benefits-grid-3d {
                grid-template-columns: 1fr;
            }
            
            .mobile-nav {
                width: 100%;
                padding: 100px 25px 25px;
            }
            
            .mobile-nav-links a {
                font-size: 1.3rem;
            }
            
            .mobile-header-buttons {
                gap: 10px;
            }
            
            .btn-3d {
                padding: 10px 18px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .cta-button {
                padding: 14px 25px;
                font-size: 1rem;
            }
            
            .logo {
                font-size: 1.5rem;
            }
            
            .logo::after {
                font-size: 0.6rem;
                right: -30px;
                top: -6px;
            }
        }
        
        /* Live notification dot */
        .live-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            background-color: var(--accent-green);
            border-radius: 50%;
            margin-right: 8px;
            animation: blink 1.5s infinite;
            box-shadow: 0 0 10px var(--accent-green);
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
        
        /* Floating elements */
        .floating-element {
            position: absolute;
            z-index: -1;
            opacity: 0.1;
        }
        
        .float-1 {
            top: 20%;
            left: 5%;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, var(--primary-blue), transparent);
            border-radius: 50%;
            animation: float 25s infinite linear;
        }
        
        .float-2 {
            top: 60%;
            right: 10%;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, var(--accent-green), transparent);
            border-radius: 50%;
            animation: float 30s infinite linear reverse;
        }
        
        .float-3 {
            bottom: 20%;
            left: 15%;
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, var(--primary-blue), transparent);
            border-radius: 50%;
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(20px, 20px) rotate(90deg); }
            50% { transform: translate(0, 40px) rotate(180deg); }
            75% { transform: translate(-20px, 20px) rotate(270deg); }
            100% { transform: translate(0, 0) rotate(360deg); }
        }
    