  

  
  <!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="/interfaces/fiverr-clone/styles.css?v=1764176028" id="global-css-link">

    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Clonerr - Find the perfect freelance services for your business</title>
    <link rel="stylesheet" href="/interfaces/fiverr-clone/styles.css">
    <link href="https://fonts.googleapis.com/css2?family=Macan:wght@400;500;600;700&display=swap" rel="stylesheet">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #404145;
            line-height: 1.5;
        }
        
        /* Header */
        .header {
            background: #fff;
            padding: 12px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #e4e5e7;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #404145;
            text-decoration: none;
        }
        
        .logo span {
            color: #1dbf73;
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        
        .nav-link {
            text-decoration: none;
            color: #62646a;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.2s;
        }
        
        .nav-link:hover {
            color: #1dbf73;
        }
        
        .btn-outline {
            padding: 8px 16px;
            border: 1px solid #1dbf73;
            color: #1dbf73;
            background: transparent;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .btn-outline:hover {
            background: #1dbf73;
            color: #fff;
        }
        
        .btn-primary {
            padding: 10px 20px;
            background: #1dbf73;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .btn-primary:hover {
            background: #19a463;
        }
        
        /* Hero Section */
        .hero {
            background: url('https://images.pexels.com/photos/957024/forest-trees-perspective-bright-957024.jpeg');
            background-size: cover;
            background-position: center;
            padding: 120px 24px;
            color: #fff;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        
        .hero-content {
            max-width: 650px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.2;
        }
        
        .search-box {
            display: flex;
            background: #fff;
            border-radius: 4px;
            overflow: hidden;
            max-width: 600px;
        }
        
        .search-box input {
            flex: 1;
            padding: 16px 20px;
            border: none;
            font-size: 16px;
            outline: none;
            color: #404145;
        }
        
        .search-box button {
            padding: 16px 24px;
            background: #404145;
            border: none;
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .search-box button:hover {
            background: #1dbf73;
        }
        
        .search-icon {
            width: 20px;
            height: 20px;
            fill: #fff;
        }
        
        .popular-tags {
            margin-top: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        
        .popular-tags span {
            font-size: 14px;
            opacity: 0.9;
        }
        
        .tag {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid #fff;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 14px;
            color: #fff;
            text-decoration: none;
            transition: all 0.2s;
        }
        
        .tag:hover {
            background: #fff;
            color: #404145;
        }
        
        /* Trusted By Section */
        .trusted-by {
            background: #fafafa;
            padding: 24px;
            text-align: center;
        }
        
        .trusted-by p {
            color: #b5b6ba;
            font-size: 14px;
            margin-bottom: 16px;
        }
        
        .trusted-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
            opacity: 0.6;
        }
        
        .trusted-logos span {
            font-size: 24px;
            font-weight: 700;
            color: #b5b6ba;
        }
        
        /* Categories Section */
        .categories {
            padding: 60px 24px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: #404145;
            margin-bottom: 32px;
        }
        
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 24px;
        }
        
        .category-card {
            background: linear-gradient(135deg, #1dbf73 0%, #19a463 100%);
            border-radius: 8px;
            padding: 24px;
            color: #fff;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            min-height: 150px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .category-card:nth-child(2) {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5253 100%);
        }
        
        .category-card:nth-child(3) {
            background: linear-gradient(135deg, #4834d4 0%, #686de0 100%);
        }
        
        .category-card:nth-child(4) {
            background: linear-gradient(135deg, #f9ca24 0%, #f0932b 100%);
        }
        
        .category-card:nth-child(5) {
            background: linear-gradient(135deg, #00cec9 0%, #00b894 100%);
        }
        
        .category-card:nth-child(6) {
            background: linear-gradient(135deg, #e056fd 0%, #be2edd 100%);
        }
        
        .category-card:nth-child(7) {
            background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
        }
        
        .category-card:nth-child(8) {
            background: linear-gradient(135deg, #636e72 0%, #2d3436 100%);
        }
        
        .category-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .category-icon {
            font-size: 32px;
            margin-bottom: 16px;
        }
        
        .category-card h3 {
            font-size: 18px;
            font-weight: 600;
        }
        
        /* Popular Services Section */
        .popular-services {
            padding: 60px 24px;
            background: #fafafa;
        }
        
        .popular-services .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .services-slider {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }
        
        .service-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
        }
        
        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }
        
        .service-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            background: #e4e5e7;
        }
        
        .service-info {
            padding: 16px;
        }
        
        .seller-info {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }
        
        .seller-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #1dbf73;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
        }
        
        .seller-name {
            font-size: 14px;
            font-weight: 600;
            color: #404145;
        }
        
        .seller-level {
            font-size: 12px;
            color: #ffb33e;
        }
        
        .service-title {
            font-size: 16px;
            color: #404145;
            margin-bottom: 12px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .service-rating {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 12px;
        }
        
        .star {
            color: #ffb33e;
        }
        
        .rating-score {
            font-weight: 600;
            color: #ffb33e;
        }
        
        .rating-count {
            color: #95979d;
            font-size: 14px;
        }
        
        .service-price {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 12px;
            border-top: 1px solid #e4e5e7;
        }
        
        .starting-at {
            font-size: 12px;
            color: #95979d;
            text-transform: uppercase;
        }
        
        .price {
            font-size: 18px;
            font-weight: 700;
            color: #404145;
        }
        
        /* How It Works */
        .how-it-works {
            padding: 80px 24px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 48px;
            margin-top: 48px;
        }
        
        .step {
            text-align: center;
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background: #f0fdf4;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 36px;
        }
        
        .step h3 {
            font-size: 20px;
            font-weight: 700;
            color: #404145;
            margin-bottom: 12px;
        }
        
        .step p {
            color: #62646a;
            font-size: 16px;
        }
        
        /* Testimonials */
        .testimonials {
            background: #0d084d;
            color: #fff;
            padding: 80px 24px;
        }
        
        .testimonials .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .testimonials .section-title {
            color: #fff;
            text-align: center;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 32px;
        }
        
        .testimonial-text {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 24px;
            opacity: 0.95;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #1dbf73;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 600;
        }
        
        .author-info h4 {
            font-size: 16px;
            font-weight: 600;
        }
        
        .author-info p {
            font-size: 14px;
            opacity: 0.7;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #1dbf73 0%, #19a463 100%);
            padding: 80px 24px;
            text-align: center;
            color: #fff;
        }
        
        .cta-section h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        
        .cta-section p {
            font-size: 18px;
            opacity: 0.95;
            margin-bottom: 32px;
        }
        
        .cta-section .btn-white {
            background: #fff;
            color: #1dbf73;
            padding: 14px 32px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s;
        }
        
        .cta-section .btn-white:hover {
            transform: scale(1.05);
        }
        
        /* Footer */
        .footer {
            background: #404145;
            color: #fff;
            padding: 60px 24px 24px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section li {
            margin-bottom: 12px;
        }
        
        .footer-section a {
            color: #b5b6ba;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }
        
        .footer-section a:hover {
            color: #1dbf73;
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 24px;
            border-top: 1px solid #62646a;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: 700;
        }
        
        .footer-logo span {
            color: #1dbf73;
        }
        
        .social-links {
            display: flex;
            gap: 16px;
        }
        
        .social-links a {
            color: #b5b6ba;
            font-size: 20px;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .social-links a:hover {
            color: #1dbf73;
        }
        
        .copyright {
            color: #b5b6ba;
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .search-box {
                flex-direction: column;
            }
            
            .search-box button {
                padding: 14px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
    </style>
</head>
<body>
    <!-- Header -->
    <header class="header">
        <a href="#" class="logo">Clonerr<span>.</span></a>
        <nav class="nav-menu">
            <a href="#" class="nav-link">Explore</a>
            <a href="#" class="nav-link">Become a Seller</a>
            <a href="#" class="nav-link">Business</a>
            <button class="btn-outline">Sign In</button>
            <button class="btn-primary">Join</button>
        </nav>
    </header>
    
    <!-- Hero Section -->
    <section class="hero">
        <div class="hero-content">
            <h1>Find the perfect <i>freelance</i> services for your business</h1>
            <div class="search-box">
                <input type="text" placeholder="Search for any service...">
                <button>
                    <svg class="search-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
                        <circle cx="11" cy="11" r="8"/>
                        <path d="M21 21l-4.35-4.35"/>
                    </svg>
                </button>
            </div>
            <div class="popular-tags">
                <span>Popular:</span>
                <a href="#" class="tag">Website Design</a>
                <a href="#" class="tag">Logo Design</a>
                <a href="#" class="tag">WordPress</a>
                <a href="#" class="tag">AI Services</a>
            </div>
        </div>
    </section>
    
    <!-- Trusted By -->
    <section class="trusted-by">
        <p>Trusted by:</p>
        <div class="trusted-logos">
            <span>Meta</span>
            <span>Google</span>
            <span>Netflix</span>
            <span>P&G</span>
            <span>PayPal</span>
        </div>
    </section>
    
    <!-- Categories -->
    <section class="categories">
        <h2 class="section-title">Explore Popular Categories</h2>
        <div class="categories-grid">
            <div class="category-card">
                <div class="category-icon">🎨</div>
                <h3>Graphics & Design</h3>
            </div>
            <div class="category-card">
                <div class="category-icon">📱</div>
                <h3>Digital Marketing</h3>
            </div>
            <div class="category-card">
                <div class="category-icon">✍️</div>
                <h3>Writing & Translation</h3>
            </div>
            <div class="category-card">
                <div class="category-icon">🎬</div>
                <h3>Video & Animation</h3>
            </div>
            <div class="category-card">
                <div class="category-icon">🎵</div>
                <h3>Music & Audio</h3>
            </div>
            <div class="category-card">
                <div class="category-icon">💻</div>
                <h3>Programming & Tech</h3>
            </div>
            <div class="category-card">
                <div class="category-icon">📈</div>
                <h3>Business</h3>
            </div>
            <div class="category-card">
                <div class="category-icon">🤖</div>
                <h3>AI Services</h3>
            </div>
        </div>
    </section>
    
    <!-- Popular Services -->
    <section class="popular-services">
        <div class="container">
            <h2 class="section-title">Popular Services</h2>
            <div class="services-slider">
                <!-- Service Card 1 -->
                <div class="service-card">
                    <img src="/placeholder.png" alt="Service" class="service-image">
                    <div class="service-info">
                        <div class="seller-info">
                            <div class="seller-avatar">JD</div>
                            <div>
                                <div class="seller-name">john_designer</div>
                                <div class="seller-level">⭐ Top Rated</div>
                            </div>
                        </div>
                        <p class="service-title">I will create a modern minimalist logo design for your brand</p>
                        <div class="service-rating">
                            <span class="star">★</span>
                            <span class="rating-score">4.9</span>
                            <span class="rating-count">(2.3k)</span>
                        </div>
                        <div class="service-price">
                            <span class="starting-at">Starting at</span>
                            <span class="price">$25</span>
                        </div>
                    </div>
                </div>
                
                <!-- Service Card 2 -->
                <div class="service-card">
                    <img src="/placeholder.png" alt="Service" class="service-image">
                    <div class="service-info">
                        <div class="seller-info">
                            <div class="seller-avatar">SM</div>
                            <div>
                                <div class="seller-name">sarah_marketing</div>
                                <div class="seller-level">⭐ Level 2 Seller</div>
                            </div>
                        </div>
                        <p class="service-title">I will manage and grow your social media accounts</p>
                        <div class="service-rating">
                            <span class="star">★</span>
                            <span class="rating-score">4.8</span>
                            <span class="rating-count">(1.8k)</span>
                        </div>
                        <div class="service-price">
                            <span class="starting-at">Starting at</span>
                            <span class="price">$50</span>
                        </div>
                    </div>
                </div>
                
                <!-- Service Card 3 -->
                <div class="service-card">
                    <img src="/placeholder.png" alt="Service" class="service-image">
                    <div class="service-info">
                        <div class="seller-info">
                            <div class="seller-avatar">MK</div>
                            <div>
                                <div class="seller-name">mike_codes</div>
                                <div class="seller-level">⭐ Top Rated</div>
                            </div>
                        </div>
                        <p class="service-title">I will build a responsive website using React and Next.js</p>
                        <div class="service-rating">
                            <span class="star">★</span>
                            <span class="rating-score">5.0</span>
                            <span class="rating-count">(890)</span>
                        </div>
                        <div class="service-price">
                            <span class="starting-at">Starting at</span>
                            <span class="price">$150</span>
                        </div>
                    </div>
                </div>
                
                <!-- Service Card 4 -->
                <div class="service-card">
                    <img src="/placeholder.png" alt="Service" class="service-image">
                    <div class="service-info">
                        <div class="seller-info">
                            <div class="seller-avatar">EW</div>
                            <div>
                                <div class="seller-name">emma_writes</div>
                                <div class="seller-level">⭐ Level 2 Seller</div>
                            </div>
                        </div>
                        <p class="service-title">I will write SEO-optimized blog posts and articles</p>
                        <div class="service-rating">
                            <span class="star">★</span>
                            <span class="rating-score">4.9</span>
                            <span class="rating-count">(3.1k)</span>
                        </div>
                        <div class="service-price">
                            <span class="starting-at">Starting at</span>
                            <span class="price">$35</span>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>
    
    <!-- How It Works -->
    <section class="how-it-works">
        <h2 class="section-title" style="text-align: center;">How Clonerr Works</h2>
        <div class="steps-grid">
            <div class="step">
                <div class="step-icon">🔍</div>
                <h3>Find the Perfect Service</h3>
                <p>Browse through thousands of services from talented freelancers around the world.</p>
            </div>
            <div class="step">
                <div class="step-icon">💬</div>
                <h3>Connect with Sellers</h3>
                <p>Message sellers to discuss your project requirements and get a custom quote.</p>
            </div>
            <div class="step">
                <div class="step-icon">✅</div>
                <h3>Get Quality Work Done</h3>
                <p>Pay securely and receive your completed work with our satisfaction guarantee.</p>
            </div>
        </div>
    </section>
    
    <!-- Testimonials -->
    <section class="testimonials">
        <div class="container">
            <h2 class="section-title">What Our Users Say</h2>
            <div class="testimonial-grid">
                <div class="testimonial-card">
                    <p class="testimonial-text">"Clonerr has completely transformed how I hire freelancers. The quality of work and professionalism is unmatched. Highly recommend!"</p>
                    <div class="testimonial-author">
                        <div class="author-avatar">R</div>
                        <div class="author-info">
                            <h4>Rachel Thompson</h4>
                            <p>CEO, StartupXYZ</p>
                        </div>
                    </div>
                </div>
                <div class="testimonial-card">
                    <p class="testimonial-text">"As a freelancer, Clonerr gives me access to amazing clients from around the world. The platform is intuitive and payments are always on time."</p>
                    <div class="testimonial-author">
                        <div class="author-avatar">M</div>
                        <div class="author-info">
                            <h4>Marcus Chen</h4>
                            <p>Graphic Designer</p>
                        </div>
                    </div>
                </div>
                <div class="testimonial-card">
                    <p class="testimonial-text">"Found an amazing developer who built our entire e-commerce platform. The project was delivered ahead of schedule and under budget!"</p>
                    <div class="testimonial-author">
                        <div class="author-avatar">L</div>
                        <div class="author-info">
                            <h4>Lisa Anderson</h4>
                            <p>Business Owner</p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>
    
    <!-- CTA Section -->
    <section class="cta-section">
        <h2>Ready to Get Started?</h2>
        <p>Join millions of businesses and freelancers on Clonerr today.</p>
        <button class="btn-white">Join Clonerr</button>
    </section>
    
    <!-- Footer -->
    <footer class="footer">
        <div class="footer-content">
            <div class="footer-section">
                <h4>Categories</h4>
                <ul>
                    <li><a href="#">Graphics & Design</a></li>
                    <li><a href="#">Digital Marketing</a></li>
                    <li><a href="#">Writing & Translation</a></li>
                    <li><a href="#">Video & Animation</a></li>
                    <li><a href="#">Programming & Tech</a></li>
                </ul>
            </div>
            <div class="footer-section">
                <h4>About</h4>
                <ul>
                    <li><a href="#">About Clonerr</a></li>
                    <li><a href="#">Careers</a></li>
                    <li><a href="#">Press & News</a></li>
                    <li><a href="#">Partnerships</a></li>
                    <li><a href="#">Investor Relations</a></li>
                </ul>
            </div>
            <div class="footer-section">
                <h4>Support</h4>
                <ul>
                    <li><a href="#">Help & Support</a></li>
                    <li><a href="#">Trust & Safety</a></li>
                    <li><a href="#">Selling on Clonerr</a></li>
                    <li><a href="#">Buying on Clonerr</a></li>
                </ul>
            </div>
            <div class="footer-section">
                <h4>Community</h4>
                <ul>
                    <li><a href="#">Customer Stories</a></li>
                    <li><a href="#">Community Hub</a></li>
                    <li><a href="#">Forum</a></li>
                    <li><a href="#">Events</a></li>
                    <li><a href="#">Blog</a></li>
                </ul>
            </div>
        </div>
        <div class="footer-bottom">
            <div class="footer-logo">Clonerr<span>.</span></div>
            <div class="social-links">
                <a href="#">𝕏</a>
                <a href="#">in</a>
                <a href="#">f</a>
                <a href="#">📸</a>
            </div>
            <p class="copyright">© 2024 Clonerr. All rights reserved.</p>
        </div>
    </footer>
</body>
</html>


