* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        .navbar {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #333;
        }

        .logo-img {
            height: 40px;
            margin-right: 10px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: #333;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: #FFD700;
        }        .btn-primary {
            background-color: #FFD700;
            color: #333;
            border: 2px solid #333;
            padding: 1rem 2rem;
            font-weight: 600;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
        }

        .btn-primary:hover {
            background-color: #333;
            color: #FFD700;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */        .hero {
            background: linear-gradient(135deg, #FFD700,  #ffdb12);
            padding: 120px 0 80px;
            text-align: center;
            color: #fff;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .hero .lead {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Platform Explanation */
        .platform-explanation {
            background: #fff;
            padding: 80px 0;
        }

        .platform-explanation h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
            color: #333;
        }

        .platform-explanation .lead {
            font-size: 1.1rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #666;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .platform-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .feature-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-card i {
            font-size: 3rem;
            color: #FFD700;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .feature-card p {
            color: #666;
        }        /* How It Works */
        .how-it-works {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .how-it-works::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23FFD700" opacity="0.1"/></svg>') repeat;
            background-size: 50px 50px;
            pointer-events: none;
        }

        .how-it-works h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 1rem;
            color: #333;
            position: relative;
        }

        .process-section {
            position: relative;
            z-index: 1;
        }

        .process-section h3 {
            font-size: 1.8rem;
            text-align: center;
            color: #333;
            margin-bottom: 4rem;
            position: relative;
        }

        .process-section h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #FFD700, #f0c14b);
            border-radius: 2px;
        }        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .step-card {
            background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            position: relative;
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.1),
                0 1px 8px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            overflow: hidden;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #FFD700, #f0c14b);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.15),
                0 8px 16px rgba(0, 0, 0, 0.1);
            border-color: #FFD700;
        }

        .step-card:hover::before {
            transform: scaleX(1);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #FFD700 0%, #f0c14b 100%);
            color: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1.5rem;
            box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .step-card:hover .step-number {
            background: linear-gradient(135deg, #333 0%, #444 100%);
            color: #FFD700;
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 12px 24px rgba(51, 51, 51, 0.4);
        }

        .step-card h4 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: #333;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .step-card:hover h4 {
            color: #FFD700;
        }

        .step-card p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .step-card:hover p {
            color: #555;
        }        /* Connection lines for larger screens */
        @media (min-width: 768px) {
            .steps-grid {
                position: relative;
            }
            
            .steps-grid::before {
                content: '';
                position: absolute;
                top: 30px;
                left: 12.5%;
                right: 12.5%;
                height: 2px;
                background: linear-gradient(90deg, transparent 0%, #FFD700 10%, #FFD700 90%, transparent 100%);
                z-index: 0;
            }
        }

        /* Mobile responsive */
        @media (max-width: 767px) {
            .steps-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .step-card {
                padding: 2rem 1.5rem;
            }
            
            .how-it-works h2 {
                font-size: 2rem;
            }
            
            .process-section h3 {
                font-size: 1.5rem;
            }
        }

        /* Tablet responsive */
        @media (max-width: 1024px) and (min-width: 768px) {
            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
            
            .steps-grid::before {
                display: none;
            }
        }

        /* Customer Benefits */
        .customer-benefits {
            background: #fff;
            padding: 80px 0;
            border-top: 1px solid #eee;
        }

        .customer-benefits h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #333;
            position: relative;
        }

        .customer-benefits h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #FFD700, #f0c14b);
            border-radius: 2px;
        }

        .customer-benefits .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .customer-benefits .benefit-card {
            background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .customer-benefits .benefit-card:hover {
            transform: translateY(-8px);
            border-color: #FFD700;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .customer-benefits .benefit-card i {
            font-size: 3rem;
            color: #FFD700;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .customer-benefits .benefit-card:hover i {
            color: #333;
            transform: scale(1.1);
        }

        .customer-benefits .benefit-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: #333;
            font-weight: 600;
        }

        .customer-benefits .benefit-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Benefits */
        .benefits {
            background: #fff;
            padding: 80px 0;
        }

        .benefits h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #333;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .benefit-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
        }

        .benefit-card i {
            font-size: 3rem;
            color: #FFD700;
            margin-bottom: 1rem;
        }

        .benefit-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .benefit-card p {
            color: #666;
        }

        /* Requirements */
        .requirements {
            background: #f8f9fa;
            padding: 80px 0;
        }

        .requirements h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #333;
        }

        .requirements-content {
            max-width: 800px;
            margin: 0 auto;
            background: #fff;
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .requirements-list {
            list-style: none;
            padding: 0;
        }

        .requirements-list li {
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .requirements-list li:last-child {
            border-bottom: none;
        }

        .requirements-list li::before {
            content: "✓";
            color: #FFD700;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 1rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #FFD700, #ffdb12);
            padding: 80px 0;
            text-align: center;
            color: #333;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }        .cta-section .btn-primary {
            background: #333;
            color: #FFD700 !important;
            border: 2px solid #333;
            font-size: 1.1rem;
            padding: 15px 30px;
        }

        .cta-section .btn-primary:hover {
            background: #222;
            transform: translateY(-3px);
        }        /* Footer */
        .footer {
            background: #333;
            color: #fff;
            padding: 60px 0 40px;
            margin-top: 2rem;
            border-top: 5px solid #FFD700;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-info h3 {
            color: #f9c74f;
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-info h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: #f9c74f;
        }

        .footer-info p {
            margin-bottom: 0.8rem;
            transition: transform 0.3s ease;
        }

        .footer-info a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-info a:hover {
            color: #f9c74f;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-links a {
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 15px;
        }

        .footer-links a::before {
            content: '→';
            position: absolute;
            left: 0;
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .footer-links a:hover {
            color: #f9c74f;
            padding-left: 20px;
        }

        .footer-links a:hover::before {
            opacity: 1;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            color: #f9c74f;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            color: #fff;        transform: translateY(-3px);
        }

        /* Beta App Section */
        .beta-app-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-top: 4px solid #FFD700;
        }

        .beta-app-section h2 {
            color: #333;
            margin-bottom: 1rem;
            text-align: center;
            font-size: 2.5rem;
        }

        .beta-app-section .lead {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .beta-app-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .beta-features h3,
        .download-guide h3 {
            color: #333;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            border-bottom: 2px solid #FFD700;
            padding-bottom: 0.5rem;
        }

        .beta-features ul {
            list-style: none;
            padding: 0;
        }

        .beta-features li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            padding: 0.75rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .beta-features li:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .beta-features li i {
            color: #FFD700;
            margin-right: 1rem;
            font-size: 1.2rem;
            width: 20px;
        }

        .download-steps {
            margin-bottom: 2rem;
        }

        .step {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            padding: 1rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .step:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .step-number {
            background: #FFD700;
            color: #333;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .step p {
            margin: 0;
            color: #333;
            font-weight: 500;
        }

        .beta-download-btn-container {
            text-align: center;
        }

        .btn-beta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #333;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .btn-beta:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
            border-color: #333;
        }

        .btn-beta i {
            font-size: 1.2rem;
        }

        .beta-disclaimer {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #666;
            font-style: italic;
        }

        .beta-disclaimer i {
            color: #FFA500;
            margin-right: 0.5rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                display: none;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .platform-explanation h2,
            .how-it-works h2,
            .benefits h2,
            .requirements h2,
            .cta-section h2,
            .beta-app-section h2 {
                font-size: 2rem;
            }

            .requirements-content {
                padding: 2rem;
            }

            .beta-app-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .beta-app-section .lead {
                font-size: 1.1rem;
            }

            .btn-beta {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
        }