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

        :root {
            --color-primary: #7D5FFF;
            --color-purple: #A047E5;
            --color-magenta: #DC3B86;
            --color-coral: #FF6161;
            --color-orange: #FFA740;
            --color-white: #FFFFFF;
            --color-dark: #0a0118;
            --color-dark-purple: #1a0b2e;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--color-dark);
            color: var(--color-white);
            overflow-x: hidden;
        }

        .landing-container {
            position: relative;
            min-height: 100vh;
            background: radial-gradient(ellipse at top, #1a0b2e 0%, #0a0118 50%);
        }

        /* Stars Background */
        .stars-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .star {
            position: absolute;
            background: white;
            border-radius: 50%;
            animation: twinkle 3s infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.2); }
        }

        /* Dynamic Light Rays */
        .light-rays {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            opacity: 0.6;
        }

        .ray {
            position: absolute;
            width: 2px;
            height: 200%;
            background: linear-gradient(180deg, 
                transparent 0%,
                var(--color-purple) 20%,
                var(--color-magenta) 40%,
                var(--color-coral) 60%,
                transparent 100%
            );
            transform-origin: center;
            animation: rayMove 15s linear infinite;
            filter: blur(1px);
        }

        @keyframes rayMove {
            0% { transform: translateY(-100%) rotate(var(--ray-angle)); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(100%) rotate(var(--ray-angle)); opacity: 0; }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            padding: 1.5rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(10px);
            background: rgba(10, 1, 24, 0.7);
            border-bottom: 1px solid rgba(125, 95, 255, 0.2);
        }

        .logo {
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            height: 45px;
            z-index: 102;
        }

        .logo:hover {
            transform: scale(1.05);
            filter: drop-shadow(0 0 20px rgba(125, 95, 255, 0.6));
        }

        .logo img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }

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

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 102;
            transition: all 0.3s ease;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: linear-gradient(135deg, var(--color-primary), var(--color-magenta));
            border-radius: 3px;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .hamburger:hover span {
            background: linear-gradient(135deg, var(--color-magenta), var(--color-coral));
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(20px);
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* Mobile Menu Overlay */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: linear-gradient(180deg, rgba(26, 11, 46, 0.98), rgba(10, 1, 24, 0.98));
            backdrop-filter: blur(20px);
            border-left: 2px solid rgba(125, 95, 255, 0.3);
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
            z-index: 101;
            transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            padding: 6rem 2rem 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

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

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

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

        .mobile-menu .btn {
            width: 100%;
            justify-content: center;
            padding: 1rem 2rem;
            font-size: 1rem;
        }

        .mobile-menu-header {
            text-align: center;
            margin-bottom: 1rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(125, 95, 255, 0.2);
        }

        .mobile-menu-header h3 {
            font-size: 1.2rem;
            background: linear-gradient(135deg, var(--color-white), var(--color-primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.3rem;
        }

        .mobile-menu-header p {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .btn {
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }

        .btn-outline {
            background: transparent;
            color: var(--color-white);
            border: 2px solid var(--color-primary);
        }

        .btn-outline:hover {
            background: var(--color-primary);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(125, 95, 255, 0.4);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--color-purple), var(--color-magenta));
            color: var(--color-white);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::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;
        }

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

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(220, 59, 134, 0.5);
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6rem 3rem 3rem;
            z-index: 2;
        }

        .hero-content {
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text {
            animation: fadeInUp 1s ease-out;
        }

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

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.5rem;
            background: rgba(125, 95, 255, 0.2);
            border: 1px solid var(--color-primary);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            animation: pulse 2s infinite;
        }

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

        .hero-title {
            font-size: 5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, 
                var(--color-white) 0%,
                var(--color-primary) 30%,
                var(--color-magenta) 60%,
                var(--color-coral) 100%
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 8s ease infinite;
            background-size: 200% 200%;
        }

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

        .hero-tagline {
            font-size: 1.8rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3rem;
            font-style: italic;
        }

        .hero-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 3rem;
            max-width: 550px;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .cta-main {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--color-magenta), var(--color-coral));
            border: none;
            border-radius: 50px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(220, 59, 134, 0.4);
        }

        .cta-main:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(220, 59, 134, 0.6);
        }

        .cta-secondary {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.2rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            background: rgba(125, 95, 255, 0.15);
            border: 2px solid var(--color-primary);
            border-radius: 50px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .cta-secondary:hover {
            background: rgba(125, 95, 255, 0.3);
            transform: translateY(-3px);
        }

        /* Phone Mockup */
        .phone-showcase {
            position: relative;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .phone-mockup {
            position: relative;
            width: 320px;
            height: 650px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(125, 95, 255, 0.1), rgba(220, 59, 134, 0.1));
            border-radius: 40px;
            padding: 12px;
            box-shadow: 
                0 0 60px rgba(125, 95, 255, 0.4),
                0 0 100px rgba(220, 59, 134, 0.2),
                inset 0 0 30px rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease;
        }

        .phone-mockup:hover {
            transform: scale(1.02) rotateY(5deg);
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, #1a0b2e 0%, #0a0118 100%);
            border-radius: 32px;
            overflow: hidden;
            position: relative;
        }

        .phone-notch {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 28px;
            background: black;
            border-radius: 0 0 20px 20px;
            z-index: 10;
        }

        .video-content {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 50px 20px 30px;
            background: linear-gradient(180deg, 
                rgba(125, 95, 255, 0.2) 0%,
                rgba(220, 59, 134, 0.1) 50%,
                rgba(0, 0, 0, 0.8) 100%
            );
            position: relative;
        }

        .video-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 20%, rgba(125, 95, 255, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(220, 59, 134, 0.3) 0%, transparent 50%);
            animation: videoGlow 6s ease-in-out infinite;
        }

        @keyframes videoGlow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .play-button-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            z-index: 5;
        }

        .play-button-overlay:hover {
            transform: translate(-50%, -50%) scale(1.1);
            background: var(--color-magenta);
        }

        .play-button-overlay svg {
            width: 32px;
            height: 32px;
            color: var(--color-dark);
            margin-left: 4px;
        }

        .play-button-overlay:hover svg {
            color: white;
        }

        .video-info {
            position: relative;
            z-index: 5;
        }

        .video-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .video-stats {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .video-creator {
            font-weight: 600;
        }

        .video-interactions {
            position: relative;
            z-index: 5;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: center;
        }

        .interaction-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .interaction-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .interaction-btn svg {
            width: 24px;
            height: 24px;
            color: white;
        }

        /* Floating Elements */
        .floating-phones {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .mini-phone {
            position: absolute;
            width: 60px;
            height: 120px;
            background: rgba(125, 95, 255, 0.1);
            border: 1px solid rgba(125, 95, 255, 0.3);
            border-radius: 12px;
            animation: float 6s ease-in-out infinite;
            backdrop-filter: blur(5px);
        }

        .mini-phone:nth-child(1) {
            top: 10%;
            right: 15%;
            animation-delay: 0s;
        }

        .mini-phone:nth-child(2) {
            top: 60%;
            right: 5%;
            animation-delay: 2s;
        }

        .mini-phone:nth-child(3) {
            top: 30%;
            right: 25%;
            animation-delay: 4s;
        }

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

        /* Features Section */
        .features {
            position: relative;
            padding: 8rem 3rem;
            z-index: 2;
            background: linear-gradient(180deg, transparent 0%, rgba(26, 11, 46, 0.5) 100%);
        }

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

        .section-title {
            text-align: center;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 4rem;
            background: linear-gradient(135deg, var(--color-white), var(--color-primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .feature-card {
            background: rgba(125, 95, 255, 0.05);
            border: 1px solid rgba(125, 95, 255, 0.2);
            border-radius: 24px;
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            cursor: pointer;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(125, 95, 255, 0.1);
            border-color: var(--color-magenta);
            box-shadow: 0 20px 60px rgba(220, 59, 134, 0.3);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--color-purple), var(--color-magenta));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            transform: rotateY(180deg);
        }

        .feature-icon svg {
            width: 35px;
            height: 35px;
            color: white;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--color-white);
        }

        .feature-desc {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        /* Stats Section */
        .stats {
            padding: 6rem 3rem;
            position: relative;
            z-index: 2;
        }

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

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--color-coral), var(--color-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        /* CTA Section */
        .cta-section {
            padding: 8rem 3rem;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(125, 95, 255, 0.1), rgba(220, 59, 134, 0.1));
            border: 2px solid rgba(125, 95, 255, 0.3);
            border-radius: 40px;
            padding: 5rem 3rem;
            backdrop-filter: blur(20px);
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--color-white);
        }

        .cta-text {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3rem;
        }

        /* Footer */
        footer {
            padding: 3rem;
            text-align: center;
            border-top: 1px solid rgba(125, 95, 255, 0.2);
            position: relative;
            z-index: 2;
        }

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

        .footer-logo {
            height: 35px;
            width: auto;
        }

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

        .footer-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .footer-link:hover {
            color: var(--color-magenta);
        }

        .copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* Modal Form Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 1, 24, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

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

        .modal-container {
            background: linear-gradient(135deg, rgba(26, 11, 46, 0.95), rgba(10, 1, 24, 0.95));
            border: 2px solid rgba(125, 95, 255, 0.3);
            border-radius: 30px;
            padding: 3rem;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 
                0 0 60px rgba(125, 95, 255, 0.4),
                0 0 100px rgba(220, 59, 134, 0.2);
            transform: scale(0.9) translateY(30px);
            transition: all 0.4s ease;
        }

        .modal-overlay.active .modal-container {
            transform: scale(1) translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 40px;
            height: 40px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: white;
            font-size: 1.5rem;
        }

        .modal-close:hover {
            background: rgba(220, 59, 134, 0.3);
            transform: rotate(90deg);
        }

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

        .form-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .form-title {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--color-white), var(--color-primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .form-subtitle {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .form-encouragement {
            background: rgba(125, 95, 255, 0.1);
            border-left: 3px solid var(--color-magenta);
            padding: 1rem 1.5rem;
            margin-bottom: 2rem;
            border-radius: 8px;
        }

        .form-encouragement p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            font-style: italic;
        }

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

        .form-label {
            display: block;
            font-size: 1rem;
            font-weight: 600;
            color: var(--color-white);
            margin-bottom: 0.5rem;
        }

        .form-helper {
            display: block;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 0.3rem;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 0.9rem 1.2rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(125, 95, 255, 0.3);
            border-radius: 12px;
            color: white;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--color-magenta);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 20px rgba(220, 59, 134, 0.2);
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-file-upload {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
            border: 2px dashed rgba(125, 95, 255, 0.4);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-file-upload:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--color-magenta);
        }

        .form-file-upload input[type="file"] {
            position: absolute;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .file-upload-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: var(--color-primary);
        }

        .file-upload-text {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
        }

        .file-name {
            margin-top: 0.5rem;
            font-size: 0.85rem;
            color: var(--color-magenta);
            font-weight: 600;
        }

        .form-submit {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, var(--color-magenta), var(--color-coral));
            border: none;
            border-radius: 50px;
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(220, 59, 134, 0.4);
            margin-top: 1rem;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(220, 59, 134, 0.6);
        }

        .form-submit:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Tablet Landscape (1024px and below) */
        @media (max-width: 1024px) {
            .hero-content {
                gap: 3rem;
            }

            .hero-title {
                font-size: 4rem;
            }

            .hero-tagline {
                font-size: 1.5rem;
            }

            .features {
                padding: 6rem 2rem;
            }

            .stats {
                padding: 4rem 2rem;
            }

            .cta-section {
                padding: 6rem 2rem;
            }

            /* Reduce light ray intensity on tablets */
            .light-rays {
                opacity: 0.4;
            }
        }

        /* Tablet Portrait (768px and below) */
        @media (max-width: 768px) {
            nav {
                padding: 1.2rem 1.5rem;
                flex-direction: row;
                justify-content: space-between;
            }

            .logo {
                height: 35px;
            }

            /* Hide desktop nav buttons, show hamburger */
            .nav-buttons {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .mobile-menu {
                width: 280px;
            }

            .hero {
                padding: 5rem 2rem 2rem;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            .hero-tagline {
                font-size: 1.4rem;
                margin-bottom: 2rem;
            }

            .hero-description {
                margin-left: auto;
                margin-right: auto;
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .hero-cta {
                justify-content: center;
            }

            .cta-main,
            .cta-secondary {
                padding: 1rem 2rem;
                font-size: 1rem;
            }

            .phone-mockup {
                margin-top: 2rem;
                width: 280px;
                height: 570px;
            }

            .floating-phones {
                display: none;
            }

            .features {
                padding: 5rem 2rem;
            }

            .section-title {
                font-size: 2.5rem;
                margin-bottom: 3rem;
            }

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

            .feature-card {
                padding: 2.5rem 2rem;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .stat-number {
                font-size: 3rem;
            }

            .cta-section {
                padding: 5rem 2rem;
            }

            .cta-container {
                padding: 4rem 2rem;
            }

            .cta-title {
                font-size: 2.2rem;
            }

            .cta-text {
                font-size: 1.1rem;
            }

            footer {
                padding: 2rem;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }

            .modal-container {
                padding: 2.5rem 2rem;
                width: 92%;
                max-width: 500px;
            }

            .form-title {
                font-size: 1.8rem;
            }

            .form-subtitle {
                font-size: 0.95rem;
            }

            /* Reduce light rays on tablets */
            .light-rays {
                opacity: 0.3;
            }

            /* Fewer stars on smaller screens */
            .star:nth-child(n+30) {
                display: none;
            }
        }

        /* Mobile Landscape (640px and below) */
        @media (max-width: 640px) {
            .mobile-menu {
                width: 260px;
            }
            .hero-title {
                font-size: 2.8rem;
            }

            .hero-tagline {
                font-size: 1.2rem;
            }

            .hero-label {
                font-size: 0.75rem;
                padding: 0.4rem 1rem;
            }

            .cta-main,
            .cta-secondary {
                width: 100%;
                justify-content: center;
                /* Larger touch targets for mobile */
                min-height: 48px;
            }

            .btn-outline,
            .btn-primary {
                width: 100%;
                min-height: 44px;
            }

            .phone-mockup {
                width: 250px;
                height: 510px;
            }

            .video-title {
                font-size: 1.1rem;
            }

            .video-stats {
                font-size: 0.75rem;
            }

            .interaction-btn {
                width: 45px;
                height: 45px;
            }

            .play-button-overlay {
                width: 70px;
                height: 70px;
            }

            .section-title {
                font-size: 2rem;
            }

            .feature-title {
                font-size: 1.3rem;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
            }

            .feature-icon svg {
                width: 30px;
                height: 30px;
            }

            .stats-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .cta-title {
                font-size: 1.8rem;
            }

            .cta-text {
                font-size: 1rem;
            }

            .modal-container {
                padding: 2rem 1.5rem;
                width: 95%;
            }

            .form-title {
                font-size: 1.5rem;
            }

            .form-icon {
                font-size: 2.5rem;
            }

            .modal-close {
                width: 35px;
                height: 35px;
            }

            /* Minimal light rays on mobile */
            .light-rays {
                opacity: 0.2;
            }

            .ray:nth-child(n+7) {
                display: none;
            }

            /* Even fewer stars */
            .star:nth-child(n+20) {
                display: none;
            }
        }

        /* Mobile Portrait (480px and below) */
        @media (max-width: 480px) {
            nav {
                padding: 1rem;
            }

            .logo {
                height: 30px;
            }

            .mobile-menu {
                width: 240px;
                padding: 5rem 1.5rem 2rem;
            }

            .hamburger span {
                width: 24px;
            }

            .hero {
                padding: 4.5rem 1.5rem 2rem;
            }

            .hero-title {
                font-size: 2.2rem;
                line-height: 1.2;
            }

            .hero-tagline {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .hero-description {
                font-size: 0.9rem;
                line-height: 1.6;
            }

            .cta-main {
                padding: 1rem 2rem;
                font-size: 0.95rem;
            }

            .cta-secondary {
                padding: 1rem 2rem;
                font-size: 0.95rem;
            }

            .btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.85rem;
            }

            .phone-mockup {
                width: 220px;
                height: 450px;
            }

            .phone-notch {
                width: 100px;
                height: 24px;
            }

            .features,
            .stats,
            .cta-section {
                padding: 4rem 1.5rem;
            }

            .section-title {
                font-size: 1.8rem;
                margin-bottom: 2rem;
            }

            .feature-card {
                padding: 2rem 1.5rem;
            }

            .feature-title {
                font-size: 1.2rem;
            }

            .feature-desc {
                font-size: 0.9rem;
            }

            .stat-number {
                font-size: 2.2rem;
            }

            .stat-label {
                font-size: 1rem;
            }

            .cta-container {
                padding: 3rem 1.5rem;
                border-radius: 30px;
            }

            .cta-title {
                font-size: 1.6rem;
                margin-bottom: 1rem;
            }

            .cta-text {
                font-size: 0.95rem;
                margin-bottom: 2rem;
            }

            footer {
                padding: 2rem 1.5rem;
            }

            .footer-logo {
                height: 28px;
            }

            .footer-links {
                gap: 0.8rem;
            }

            .footer-link {
                font-size: 0.9rem;
            }

            .copyright {
                font-size: 0.8rem;
            }

            .modal-container {
                padding: 1.5rem;
                border-radius: 20px;
            }

            .form-title {
                font-size: 1.3rem;
            }

            .form-subtitle {
                font-size: 0.85rem;
            }

            .form-encouragement {
                padding: 0.8rem 1rem;
                font-size: 0.8rem;
            }

            .form-encouragement p {
                font-size: 0.8rem;
            }

            .form-label {
                font-size: 0.9rem;
            }

            .form-helper {
                font-size: 0.75rem;
            }

            .form-input,
            .form-textarea {
                padding: 0.8rem 1rem;
                font-size: 0.9rem;
                /* Better touch targets */
                min-height: 44px;
            }

            .form-textarea {
                min-height: 100px;
            }

            .form-file-upload {
                padding: 1.5rem;
            }

            .file-upload-text {
                font-size: 0.8rem;
            }

            .form-submit {
                padding: 1rem;
                font-size: 1rem;
                min-height: 48px;
            }

            /* Very minimal background effects */
            .light-rays {
                opacity: 0.15;
            }
        }

        /* Extra Small Mobile (375px and below) */
        @media (max-width: 375px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-tagline {
                font-size: 0.95rem;
            }

            .hero-label {
                font-size: 0.7rem;
                padding: 0.35rem 0.8rem;
            }

            .phone-mockup {
                width: 200px;
                height: 410px;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .cta-title {
                font-size: 1.4rem;
            }

            .modal-container {
                padding: 1.2rem;
            }

            .form-title {
                font-size: 1.2rem;
            }

            .modal-close {
                top: 1rem;
                right: 1rem;
                width: 32px;
                height: 32px;
                font-size: 1.2rem;
            }

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

            /* Minimal effects on smallest screens */
            .light-rays {
                display: none;
            }

            .star:nth-child(n+15) {
                display: none;
            }
        }
