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

        :root {
            --light-blue: #3498db;
            --dark-blue: #2c3e50;
            --orange: #e67e22;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --text-gray: #6c757d;
        }

        /* Navigation Bar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(52, 152, 219, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            position: relative;
            width: 32px;
            height: 32px;
            transform: rotate(-45deg);
        }

        .logo-facet {
            position: absolute;
            width: 0;
            height: 0;
            border-style: solid;
        }

        .logo-facet.top {
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            border-width: 0 16px 16px 16px;
            border-color: transparent transparent var(--light-blue) transparent;
        }

        .logo-facet.left {
            bottom: 0;
            left: 0;
            border-width: 16px 0 16px 16px;
            border-color: transparent transparent transparent var(--light-blue);
        }

        .logo-facet.right {
            bottom: 0;
            right: 0;
            border-width: 16px 16px 16px 0;
            border-color: transparent var(--orange) transparent transparent;
        }

        .logo-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 0 6px 6px;
            border-color: transparent transparent var(--white) transparent;
            margin-left: 2px;
            margin-top: -1px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-blue);
            letter-spacing: 0.5px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
            margin: 0;
            padding: 0;
        }

        .nav-menu li a {
            color: var(--dark-blue);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu li a:hover {
            color: var(--orange);
        }

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

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

        .nav-cta {
            background: linear-gradient(135deg, var(--orange) 0%, #d35400 100%);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
        }

        /* Mobile Menu Toggle Button */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 30px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            width: 100%;
            height: 3px;
            background: var(--dark-blue);
            border-radius: 2px;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Navigation - Cross Browser Compatible */
        @media screen and (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex !important;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding: 80px 30px 30px;
                transition: right 0.3s ease;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
                z-index: 1000;
                gap: 0;
            }

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

            .nav-menu li {
                width: 100%;
                margin-bottom: 20px;
            }

            .nav-menu li a {
                display: block;
                padding: 15px 0;
                font-size: 1.1rem;
                font-weight: 600;
                border-bottom: 1px solid rgba(52, 152, 219, 0.1);
                width: 100%;
            }

            .nav-menu li a:hover {
                color: var(--orange);
                padding-left: 10px;
            }

            .nav-menu li a::after {
                display: none;
            }
            
            .nav-content {
                justify-content: space-between;
                padding: 15px 0;
                gap: 15px;
            }
            
            .logo-text {
                font-size: 1.3rem;
            }
            
            /* Force hide Join Waitlist button on mobile - Cross Browser */
            .nav-cta {
                display: none !important;
                visibility: hidden !important;
                opacity: 0 !important;
                height: 0 !important;
                width: 0 !important;
                padding: 0 !important;
                margin: 0 !important;
                overflow: hidden !important;
            }

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

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

            /* Hero Content - Use Flexbox for Better Browser Support */
            .hero-content {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                gap: 40px !important;
                text-align: center;
                padding: 20px 0;
            }

            .hero-text {
                order: 1 !important;
                width: 100% !important;
            }

            .hero-text h1 {
                font-size: 2.2rem;
                margin-bottom: 20px;
            }

            .hero-text p {
                font-size: 1.1rem;
                margin-bottom: 30px;
                line-height: 1.6;
            }

            .hero-cta {
                flex-direction: column;
                gap: 20px;
                align-items: center;
            }

            .cta-button {
                width: 100%;
                max-width: 280px;
                padding: 16px 24px;
                font-size: 16px;
            }

            .waitlist-form {
                padding: 30px 20px;
            }

            .features-grid, .steps {
                grid-template-columns: 1fr;
            }

            /* Platform Preview Mobile Styles - Force Below Hero */
            .platform-preview {
                padding: 15px;
                margin: 0;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                overflow: visible;
                position: relative;
                order: 2 !important;
                display: block !important;
            }

            .preview-header {
                flex-direction: column;
                gap: 8px;
                text-align: center;
                margin-bottom: 15px;
                padding-bottom: 10px;
            }

            .preview-url {
                font-size: 0.75rem;
                word-break: break-all;
                line-height: 1.2;
            }

            .ai-prompt-demo {
                padding: 12px;
                margin-bottom: 15px;
                width: 100%;
                box-sizing: border-box;
            }

            .prompt-input {
                font-size: 13px;
                padding: 8px;
                width: 100%;
                box-sizing: border-box;
            }

            .preview-result {
                padding: 12px;
                width: 100%;
                box-sizing: border-box;
            }

            .result-header {
                margin-bottom: 10px;
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }

            .result-title {
                font-size: 0.9rem;
            }

            .live-indicator {
                font-size: 0.8rem;
            }

            .preview-content {
                grid-template-columns: 1fr;
                gap: 8px;
                width: 100%;
            }

            .preview-block {
                height: 45px;
                width: 100%;
            }

            .preview-block.header {
                grid-column: 1;
                height: 40px;
            }
        }

        /* Chrome-specific mobile fixes */
        @media screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 0) {
            .nav-cta {
                display: none !important;
                visibility: hidden !important;
            }
            
            .hero-content {
                display: flex !important;
                flex-direction: column !important;
            }
        }

        /* Safari-specific mobile fixes */
        @media screen and (max-width: 768px) and (-webkit-appearance: none) {
            .hero-content {
                display: flex !important;
                flex-direction: column !important;
            }
            
            .platform-preview {
                order: 2 !important;
                margin-top: 40px !important;
            }
        }

        /* Extra small mobile screens - Cross Browser Compatible */
        @media screen and (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.8rem;
            }

            .hero-text p {
                font-size: 1rem;
            }

            .platform-preview {
                padding: 10px;
                margin: 0;
                order: 2 !important;
                display: block !important;
            }

            .preview-url {
                font-size: 0.7rem;
            }

            .prompt-input {
                font-size: 12px;
            }

            .preview-block {
                height: 40px;
            }

            .preview-block.header {
                height: 35px;
            }

            .result-header {
                flex-direction: column;
                gap: 6px;
            }

            .result-title {
                font-size: 0.85rem;
            }

            .live-indicator {
                font-size: 0.75rem;
            }

            .container {
                padding: 0 15px;
            }

            /* Force hide Join Waitlist button on very small screens */
            .nav-cta {
                display: none !important;
                visibility: hidden !important;
            }
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--dark-blue);
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--light-blue) 0%, var(--dark-blue) 100%);
            min-height: 100vh;
            padding-top: 80px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(230, 126, 34, 0.1) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }

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

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .hero-text .highlight {
            color: var(--orange);
            position: relative;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px rgba(230, 126, 34, 0.5); }
            to { text-shadow: 0 0 30px rgba(230, 126, 34, 0.8), 0 0 40px rgba(230, 126, 34, 0.3); }
        }

        .hero-text p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .hero-cta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .cta-button {
            padding: 18px 40px;
            background: linear-gradient(135deg, var(--orange) 0%, #d35400 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
        }

        .cta-button:active {
            transform: translateY(0);
        }

        .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.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .hero-stats {
            display: flex;
            gap: 30px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-stat-number {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--orange);
        }

        /* Platform Preview */
        .platform-preview {
            position: relative;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
        }

        .preview-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .browser-dots {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            animation: dotPulse 2s infinite;
        }

        .dot.red { background: #ff5f57; animation-delay: 0s; }
        .dot.yellow { background: #ffbd2e; animation-delay: 0.3s; }
        .dot.green { background: #28ca42; animation-delay: 0.6s; }

        @keyframes dotPulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(0.95); }
        }

        .preview-url {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            font-family: 'Courier New', monospace;
        }

        .ai-prompt-demo {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .prompt-input {
            background: transparent;
            border: none;
            color: white;
            font-size: 16px;
            width: 100%;
            outline: none;
        }

        .prompt-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .typing-animation {
            border-right: 2px solid var(--orange);
            animation: typing 3s infinite;
        }

        @keyframes typing {
            0%, 50% { border-right-color: var(--orange); }
            51%, 100% { border-right-color: transparent; }
        }

        .preview-result {
            background: white;
            border-radius: 12px;
            padding: 20px;
            color: var(--dark-blue);
            position: relative;
            overflow: hidden;
        }

        .result-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .result-title {
            font-weight: bold;
            color: var(--dark-blue);
        }

        .live-indicator {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.8rem;
            color: #2ecc71;
        }

        .live-dot {
            width: 6px;
            height: 6px;
            background: #2ecc71;
            border-radius: 50%;
            animation: blink 1s infinite;
        }

        .preview-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .preview-block {
            height: 60px;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .preview-block.header {
            background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
            grid-column: 1 / -1;
        }

        .preview-block.sidebar {
            background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
        }

        .preview-block.content {
            background: linear-gradient(135deg, var(--orange), #d35400);
        }

        .preview-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }

        .modal {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 400px;
            width: 90%;
            position: relative;
            transform: scale(0.7);
            transition: transform 0.3s ease;
        }

        .modal.show {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-gray);
        }

        .modal h3 {
            color: var(--dark-blue);
            margin-bottom: 20px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-blue);
        }

        .form-group input {
            width: 100%;
            padding: 16px;
            border: 2px solid #e0e6ed;
            border-radius: 12px;
            font-size: 16px;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--light-blue);
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
        }

        .success-message {
            display: none;
            background: #d4edda;
            color: #155724;
            padding: 16px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #c3e6cb;
            text-align: center;
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark-blue);
            margin-bottom: 16px;
        }

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

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--light-blue), var(--orange));
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--light-blue);
            margin-bottom: 24px;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            color: var(--dark-blue);
            margin-bottom: 16px;
        }

        .feature-card p {
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* How It Works */
        .how-it-works {
            padding: 100px 0;
            background: white;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--orange);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 24px;
        }

        .step h3 {
            font-size: 1.3rem;
            color: var(--dark-blue);
            margin-bottom: 12px;
        }

        /* Stats Section */
        .stats {
            padding: 80px 0;
            background: var(--dark-blue);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(230, 126, 34, 0.05) 50%, transparent 70%);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .stat {
            position: relative;
            padding: 20px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .stat:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.1);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--orange);
            margin-bottom: 8px;
            display: block;
            text-shadow: 0 0 20px rgba(230, 126, 34, 0.3);
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 12px;
        }

        .stat-indicator {
            font-size: 0.9rem;
            color: #2ecc71;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .stat-indicator i {
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-5px); }
            60% { transform: translateY(-3px); }
        }

        .stat-pulse {
            width: 12px;
            height: 12px;
            background: #2ecc71;
            border-radius: 50%;
            margin: 10px auto;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
            }
        }

        .integration-icons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
        }

        .pulse-icon {
            font-size: 1.2rem;
            color: var(--orange);
            animation: iconPulse 3s infinite;
        }

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

        .time-display {
            font-family: 'Courier New', monospace;
        }

        .availability-dot {
            width: 10px;
            height: 10px;
            background: #2ecc71;
            border-radius: 50%;
            margin: 10px auto;
            animation: blink 1s infinite;
        }

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

        /* Download Section */
        .download-section {
            padding: 120px 0;
            background: linear-gradient(135deg, 
                rgba(52, 152, 219, 0.05) 0%, 
                rgba(255, 255, 255, 0.95) 25%,
                rgba(230, 126, 34, 0.05) 100%);
            position: relative;
            overflow: hidden;
        }

        .download-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(52, 152, 219, 0.03) 0%, transparent 50%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .download-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .download-text h2 {
            font-size: 2.8rem;
            color: var(--dark-blue);
            margin-bottom: 24px;
            line-height: 1.2;
            position: relative;
        }

        .download-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--orange), var(--light-blue));
            border-radius: 2px;
        }

        .download-text p {
            font-size: 1.3rem;
            color: var(--text-gray);
            margin-bottom: 50px;
            line-height: 1.7;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .download-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .download-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--dark-blue);
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: 16px;
            border: 1px solid rgba(52, 152, 219, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: left;
        }

        .download-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(52, 152, 219, 0.15);
            border-color: var(--light-blue);
        }

        .download-feature i {
            color: var(--orange);
            width: 24px;
            font-size: 1.3rem;
            transition: transform 0.3s ease;
        }

        .download-feature:hover i {
            transform: scale(1.2) rotate(5deg);
        }

        .download-feature span {
            font-weight: 600;
        }

        .download-showcase {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .download-buttons {
            display: flex;
            gap: 30px;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .app-button.large {
            width: 220px;
            padding: 18px 25px;
            background: linear-gradient(135deg, #000 0%, #333 100%);
            color: white;
            border-radius: 16px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            align-items: center;
            gap: 18px;
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.2),
                0 1px 8px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .app-button.large::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s ease;
        }

        .app-button.large:hover::before {
            left: 100%;
        }

        .app-button.large:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 
                0 20px 50px rgba(0, 0, 0, 0.25),
                0 5px 20px rgba(0, 0, 0, 0.15);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .app-button.large:active {
            transform: translateY(-2px) scale(0.98);
        }

        .app-button.large i {
            font-size: 2.2rem;
            transition: transform 0.3s ease;
        }

        .app-button.large:hover i {
            transform: scale(1.1) rotate(-5deg);
        }

        .app-button-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .app-button-text .small {
            font-size: 0.8rem;
            opacity: 0.8;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .app-button-text .large {
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 0.3px;
        }

        /* iOS specific styling */
        .app-button.ios {
            background: linear-gradient(135deg, #007AFF 0%, #005BB5 100%);
        }

        .app-button.ios:hover {
            background: linear-gradient(135deg, #0056D6 0%, #003D82 100%);
        }

        /* Android specific styling */
        .app-button.android {
            background: linear-gradient(135deg, #34A853 0%, #137333 100%);
        }

        .app-button.android:hover {
            background: linear-gradient(135deg, #0F9D58 0%, #0A7E07 100%);
        }

        .qr-section {
            margin-top: 30px;
            text-align: center;
        }

        .qr-code {
            color: var(--text-gray);
            transition: all 0.3s ease;
        }

        .qr-placeholder {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--dark-blue), var(--light-blue));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .qr-placeholder::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--orange), var(--light-blue), var(--orange));
            border-radius: 16px;
            z-index: -1;
            animation: borderRotate 3s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .qr-placeholder:hover::before {
            opacity: 1;
        }

        @keyframes borderRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .qr-placeholder:hover {
            transform: scale(1.05) rotate(5deg);
            box-shadow: 0 15px 40px rgba(52, 152, 219, 0.3);
        }

        .qr-placeholder i {
            font-size: 2.5rem;
            color: white;
            transition: transform 0.3s ease;
        }

        .qr-placeholder:hover i {
            transform: scale(1.1);
        }

        .qr-code span {
            font-size: 0.95rem;
            font-weight: 500;
        }

        .download-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 20px;
            padding-top: 30px;
            border-top: 1px solid rgba(52, 152, 219, 0.1);
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .download-stat {
            text-align: center;
            color: var(--text-gray);
        }

        .download-stat-number {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--orange);
            display: block;
            margin-bottom: 5px;
        }

        .download-stat-label {
            font-size: 0.9rem;
        }

        /* Footer */
        .footer {
            background: var(--dark-blue);
            color: white;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: var(--orange);
            font-size: 1.1rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

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

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--orange);
        }

        .footer-section.contact p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: var(--orange);
            color: var(--orange);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
        }

        .social-link i {
            font-size: 1.2rem;
        }

        .app-downloads {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .app-button {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .app-button:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .app-button i {
            font-size: 1.5rem;
        }

        .app-button-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .app-button-text .small {
            font-size: 0.75rem;
            opacity: 0.8;
        }

        .app-button-text .large {
            font-size: 0.95rem;
            font-weight: 600;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }


        .success-message {
            display: none;
            background: #d4edda;
            color: #155724;
            padding: 16px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #c3e6cb;
        }



