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

        :root {
            --black: #0c0c0c;
            --cream: #f2e9dc;
            --glow: #fffae6;
            --orange: #ff8c00;
            --cream-15: rgba(242, 233, 220, 0.15);
            --cream-30: rgba(242, 233, 220, 0.3);
            --cream-70: rgba(242, 233, 220, 0.7);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--black);
            color: var(--cream);
            line-height: 1.6;
            overflow-x: hidden;
            cursor: none;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        /* ===== SIMPLE CURSOR SYSTEM ===== */
        .simple-cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            background: rgba(242, 233, 220, 0.8);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transition: transform 0.1s ease;
            transform: translate(-50%, -50%);
            will-change: transform;
        }

        .simple-cursor.hover {
            transform: translate(-50%, -50%) scale(1.5);
            background: rgba(255, 250, 230, 0.9);
        }

        input, textarea, select, button {
            cursor: pointer !important;
        }

        @media (max-width: 768px) {
            .simple-cursor {
                display: none;
            }
            
            body {
                cursor: default !important;
            }
        }

        /* ===== OPTIMIZED FLOATING ORBS ===== */
        .floating-orbs {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
            filter: blur(60px);
            opacity: 0.3;
            will-change: transform;
            backface-visibility: hidden;
            perspective: 1000px;
        }

        .orb1 { width: 300px; height: 300px; top: 10%; left: 10%; animation: drift1 20s infinite linear; }
        .orb2 { width: 200px; height: 200px; top: 60%; right: 10%; animation: drift2 25s infinite linear; }
        .orb3 { width: 400px; height: 400px; bottom: 20%; left: 50%; animation: drift3 30s infinite linear; }

        @keyframes drift1 {
            0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
            25% { transform: translate3d(30px, -20px, 0) rotate(90deg); }
            50% { transform: translate3d(-20px, 30px, 0) rotate(180deg); }
            75% { transform: translate3d(-30px, -10px, 0) rotate(270deg); }
        }

        @keyframes drift2 {
            0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
            33% { transform: translate3d(-40px, 20px, 0) rotate(120deg); }
            66% { transform: translate3d(25px, -35px, 0) rotate(240deg); }
        }

        @keyframes drift3 {
            0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
            50% { transform: translate3d(40px, -50px, 0) rotate(180deg); }
        }

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

        .navbar.scrolled {
            background: var(--black);
            border-bottom: 1px solid var(--cream-30);
        }

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

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(to right, #f97316, #fb923c, #fdba74);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .nav-links a {
            color: var(--cream-70);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .hamburger {
            display: none;
            cursor: pointer;
        }

        .hamburger .line {
            width: 25px;
            height: 3px;
            background-color: var(--cream);
            margin: 5px 0;
            transition: 0.4s;
        }

        /* ===== OPTIMIZED GLASS CARDS ===== */
        .glass-card {
            background: rgba(12, 12, 12, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid var(--cream-15);
            border-radius: 1rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            will-change: transform;
            backface-visibility: hidden;
        }

        .glass-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(255, 250, 230, 0.1);
            border-color: var(--cream-30);
        }

        /* ===== OPTIMIZED BUTTONS ===== */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 500;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: none;
            will-change: transform;
            backface-visibility: hidden;
        }

        .btn-primary {
            background: var(--cream);
            color: var(--black);
        }

        .btn-primary:hover {
            transform: translate3d(0, -2px, 0);
            box-shadow: 0 0 20px rgba(255, 250, 230, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--cream);
            border: 1px solid var(--cream-30);
        }

        .btn-secondary:hover {
            background: var(--cream-15);
            border-color: var(--cream);
            transform: translate3d(0, -2px, 0);
        }

        /* ===== SECTIONS ===== */
        .section {
            position: relative;
            z-index: 1;
            padding: 5rem 2rem;
            max-width: 100%;
            margin: 0 auto;
            contain: layout style;
        }
        .section-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, var(--black) 0%, rgba(12, 12, 12, 0.8) 100%);
        }

        .hero-content {
            max-width: 800px;
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--cream) 0%, var(--glow) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: var(--cream-70);
        }

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

        /* ===== BENEFITS GRID ===== */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            margin-top: 3rem;
            justify-items: center;
        }

        .benefits-grid::after {
            content: '';
            grid-column: 1 / -1;
            height: 0;
        }

        .benefit-card {
            padding: 2.5rem;
            text-align: center;
            transition: transform 0.3s ease;
            will-change: transform;
            width: 100%;
            max-width: 350px;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .benefit-card:hover {
            transform: translateY(-8px) rotateX(2deg);
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            background: var(--cream-15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        /* ===== PRODUCT TOUR ===== */
        .product-tour {
            background: linear-gradient(135deg, rgba(12, 12, 12, 0.9) 0%, var(--black) 100%);
            position: relative;
        }

        .tour-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
        }

        .tab-btn {
            padding: 0.75rem 1.5rem;
            background: transparent;
            border: 1px solid var(--cream-15);
            color: var(--cream-70);
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            will-change: transform, background-color;
        }

        .tab-btn.active,
        .tab-btn:hover {
            background: var(--cream-15);
            color: var(--cream);
            border-color: var(--cream-30);
            transform: translateY(-2px);
        }

        .phone-mockup {
            max-width: 300px; /* REALISTIC MOCKUP */
            margin: 0 auto;
            perspective: 1000px;
            position: relative;
            z-index: 2;
        }

        .phone {
            background: linear-gradient(135deg, #333 0%, #111 100%);
            border-radius: 2rem;
            padding: 1rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transform: rotateX(8deg) rotateY(-5deg);
            transition: transform 0.5s ease;
            animation: phoneFloat 6s ease-in-out infinite;
            will-change: transform;
        }

        .phone.active {
            transform: rotateX(0deg) rotateY(0deg);
        }

        @keyframes phoneFloat {
            0%, 100% { transform: rotateX(8deg) rotateY(-5deg) translateY(0px); }
            50% { transform: rotateX(8deg) rotateY(-5deg) translateY(-10px); }
        }

        .phone-screen {
            background: var(--black);
            border-radius: 1.5rem;
            color: var(--cream);
            text-align: center;
            min-height: 600px; /* REALISTIC SCREEN */
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: hidden;
        }
        
        .phone-screen img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 1.5rem;
        }

        /* ===== PRICING GRID ===== */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-card {
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--cream) 0%, var(--glow) 100%);
        }

        .pricing-card.featured {
            border-color: var(--glow);
            box-shadow: 0 0 30px rgba(255, 250, 230, 0.2);
        }

        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--cream);
            margin: 1rem 0;
        }

        /* ===== CONTACT SECTION ===== */
        .contact-grid {
            display: grid;
            grid-template-columns: 2fr 1fr; /* Give more space to the form */
            gap: 4rem;
            margin-top: 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            align-items: flex-start;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--cream);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            background: rgba(12, 12, 12, 0.5);
            border: 1px solid var(--cream-15);
            border-radius: 0.5rem;
            color: var(--cream);
            backdrop-filter: blur(10px);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--cream);
            box-shadow: 0 0 10px rgba(255, 250, 230, 0.1);
        }
        
        /* Custom Checkbox */
        .custom-checkbox {
            display: flex;
            align-items: center;
            cursor: pointer;
            color: var(--cream-70);
            white-space: nowrap; /* Prevent text from wrapping */
        }
        .custom-checkbox input {
            display: none;
        }
        .custom-checkbox .checkbox-box {
            width: 22px;
            height: 22px;
            border: 2px solid var(--cream-30);
            border-radius: 6px;
            margin-right: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            flex-shrink: 0; /* Prevent checkbox from shrinking */
        }
        .custom-checkbox .checkbox-box .checkmark {
            width: 12px;
            height: 12px;
            background-color: var(--orange);
            border-radius: 3px;
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.2s ease;
        }
        .custom-checkbox input:checked + .checkbox-box {
            border-color: var(--orange);
        }
        .custom-checkbox input:checked + .checkbox-box .checkmark {
            opacity: 1;
            transform: scale(1);
        }

        .checkbox-label {
            line-height: 1.2; /* Adjust line height for better alignment */
        }

        /* Styles for content inside phone mockup */
        .phone-content {
            padding: 1rem;
            text-align: left;
            overflow-y: auto;
            height: 100%;
            box-sizing: border-box;
        }

        .phone-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--cream);
        }

        .phone-content p {
            font-size: 0.9rem;
            line-height: 1.5;
            color: var(--cream-70);
            margin-bottom: 1rem;
        }

        .phone-content ul {
            list-style: none;
            padding-left: 0;
        }

        .phone-content ul li {
            font-size: 0.85rem;
            color: var(--cream-70);
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.2rem;
        }

        .phone-content ul li::before {
            content: '✓';
            color: var(--orange);
            position: absolute;
            left: 0;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translate3d(0, 30px, 0); }
            to { opacity: 1; transform: translate3d(0, 0, 0); }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: rgba(12, 12, 12, 0.8);
            backdrop-filter: blur(10px);
            border-top: 1px solid var(--cream-15);
            padding: 3rem 2rem;
            text-align: center;
        }

        /* ===== MOBILE RESPONSIVE ===== */
        .contact-form-container {
            padding: 3rem;
            justify-self: center;
            width: 50%;
        }

        @media (max-width: 992px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .contact-form-container {
                width: 80%;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links { 
                display: none;
                position: absolute;
                right: 0;
                top: 60px;
                background: var(--black);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 1rem 0;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero-content {
                padding-left: 10px;
                padding-right: 10px;
            }
            .hero-buttons { flex-direction: column; align-items: center; }
            .tour-tabs { flex-direction: column; align-items: center; }
            .floating-orbs { display: none; }
            .glass-card { backdrop-filter: none; background: rgba(12, 12, 12, 0.9); }
            .contact-form-container { width: 100%; padding: 1.5rem; }
        }

        /* ===== PERFORMANCE OPTIMIZATIONS ===== */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            .floating-orbs, .energy-river { display: none; }
        }