        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

        body {
            background: #ffffff;
            max-width: 100vw;
            overflow-x: hidden;
            color: #1f2937;
            line-height: 1.6;
        }

        .hero {
            position: relative;
            width: 100%;
            min-height: 100vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            padding: 140px 0 80px;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
        }

        .geometric-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            opacity: 0.1;
            background-image: radial-gradient(circle at 25% 25%, rgba(160, 29, 38, 0.05) 0%, transparent 50%),
                              radial-gradient(circle at 75% 75%, rgba(160, 29, 38, 0.03) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.1; }
            50% { opacity: 0.15; }
        }

        .hero-content-wrapper {
            position: relative;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            padding: 4rem 2rem;
        }

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

        .hero-content {
            padding: 2rem 0;
        }

        .hero-badge {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(160, 29, 38, 0.08);
            color: #A01D26;
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border: 1px solid rgba(160, 29, 38, 0.15);
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            color: #1f2937;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero h1 .highlight {
            color: #A01D26;
        }

        .hero p {
            font-size: 1.25rem;
            color: #6b7280;
            max-width: 600px;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .cta-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary-hero {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 16px 32px;
            background: linear-gradient(135deg, #A01D26, #dc2626);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.125rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(160, 29, 38, 0.3);
        }

        .btn-primary-hero:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(160, 29, 38, 0.4);
        }

        .btn-secondary-enhanced {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 16px 32px;
            background: white;
            color: #A01D26;
            text-decoration: none;
            border: 2px solid #A01D26;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.125rem;
            transition: all 0.3s ease;
        }

        .btn-secondary-enhanced:hover {
            background: #A01D26;
            color: white;
        }

        .hero-visual {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .marketplace-showcase {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.2rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.95);
            border: 2px solid rgba(160, 29, 38, 0.15);
            border-radius: 16px;
            max-width: 600px;
        }

        .showcase-item {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            background: #f9fafb;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .showcase-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .showcase-item img {
            max-width: 100%;
            max-height: 60px;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section { padding: 90px 0; }

        .section-header { text-align: center; margin-bottom: 70px; }
        .section-title {
            font-size: 2.75rem;
            font-weight: 900;
            color: #1f2937;
            margin-bottom: 1rem;
        }
        .section-title .red { color: #A01D26; }
        .section-desc {
            font-size: 1.25rem;
            color: #6b7280;
            max-width: 750px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .marketplaces-section {
            background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
        }

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

        .marketplace-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            border: 2px solid #e5e7eb;
            transition: all 0.3s ease;
            text-align: center;
        }

        .marketplace-card:hover {
            border-color: #A01D26;
            transform: translateY(-8px);
            box-shadow: 0 25px 60px rgba(160, 29, 38, 0.15);
        }

        .marketplace-logo-container {
            width: 100%;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: #f9fafb;
            border-radius: 12px;
        }

        .marketplace-logo-container img {
            max-width: 100%;
            max-height: 80px;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        .marketplace-name {
            font-size: 1.5rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .marketplace-desc {
            color: #6b7280;
            line-height: 1.7;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            border: 2px solid #e5e7eb;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            border-color: #2563eb;
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
        }

        .service-icon {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, #2563eb, #3b82f6);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin-bottom: 1.5rem;
        }

        .service-title {
            font-size: 1.75rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .service-desc {
            color: #6b7280;
            font-size: 1.0625rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .service-features {
            list-style: none;
            padding: 0;
        }

        .service-features li {
            padding: 0.625rem 0;
            color: #4b5563;
            display: flex;
            align-items: center;
            gap: 0.875rem;
            font-size: 1rem;
        }

        .service-features li::before {
            content: '✓';
            color: #2563eb;
            font-weight: 800;
            font-size: 1.25rem;
        }

        .distribution-section {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
        }

        .distribution-section .section-title,
        .distribution-section .section-desc {
            color: white;
        }

        .distribution-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .distribution-card {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .distribution-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-5px);
        }

        .distribution-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #A01D26, #dc2626);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.25rem;
            color: white;
            margin: 0 auto 1.5rem;
        }

        .distribution-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
        }

        .distribution-desc {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
        }

        .stats-section {
            background: white;
            padding: 60px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

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

        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #A01D26, #dc2626);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            color: #6b7280;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-section {
            background: linear-gradient(135deg, #A01D26 0%, #dc2626 100%);
            text-align: center;
            padding: 90px 20px;
        }

        .cta-section h2 {
            font-size: 3rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.95);
            max-width: 700px;
            margin: 0 auto 2.5rem;
            line-height: 1.8;
        }

        /* Tablet and below */
        @media (max-width: 768px) {
            .hero {
                min-height: auto !important;
                padding: 100px 0 50px !important;
            }

            .hero-content-wrapper {
                padding: 2rem 1.5rem;
            }

            .content-grid {
                grid-template-columns: 1fr !important;
                gap: 2rem;
            }

            .hero h1 {
                font-size: 2.5rem !important;
            }

            .hero p {
                font-size: 1.125rem;
            }

            .marketplace-showcase {
                grid-template-columns: repeat(2, 1fr);
                max-width: 400px;
                gap: 1rem;
                padding: 1.5rem;
            }

            .showcase-item {
                padding: 1rem;
            }

            .services-grid {
                grid-template-columns: 1fr !important;
            }

            .distribution-grid {
                grid-template-columns: 1fr !important;
            }

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

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

            .marketplaces-grid {
                grid-template-columns: 1fr !important;
            }

            .section {
                padding: 60px 1.5rem;
            }

            .container {
                padding: 0 1.5rem;
            }
        }

        /* Mobile phones */
        @media (max-width: 480px) {
            .hero {
                padding: 80px 0 40px !important;
            }

            .hero-content-wrapper {
                padding: 1.5rem 1rem;
            }

            .hero-badge {
                font-size: 0.7rem;
                padding: 5px 12px;
                margin-bottom: 1rem;
            }

            .hero h1 {
                font-size: 2rem !important;
                line-height: 1.2;
            }

            .hero p {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .cta-group {
                flex-direction: column;
                gap: 0.75rem;
            }

            .btn-primary-hero,
            .btn-secondary-enhanced {
                padding: 12px 24px !important;
                font-size: 1rem !important;
                width: 100%;
                justify-content: center;
            }

            .marketplace-showcase {
                grid-template-columns: 1fr;
                max-width: 300px;
            }

            .stats-grid {
                grid-template-columns: 1fr !important;
                gap: 1.5rem;
            }

            .section {
                padding: 40px 1rem;
            }

            .container {
                padding: 0 1rem;
            }

            .section-title {
                font-size: 1.75rem;
                padding: 0 0.5rem;
            }

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

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