<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Work Bolt Layout</title>
    <script src="https://cdn.tailwindcss.com"></script>
    
    
</head>
<body class="py-20">

    <!-- SECTION 1: HOW IT WORKS -->
    <div class="max-w-5xl mx-auto text-center px-4">
        <div class="inline-block bg-[#FFF0E6] text-[#FF7A00] px-3 py-1 rounded-md text-[10px] font-bold uppercase mb-6 border border-[#FFE0CC]">
            How It Works
        </div>
        <h1 class="text-4xl md:text-[42px] font-extrabold text-[#111827] leading-tight mb-4">
            Setup In Minutes Not <br> Hours And Start Working
        </h1>
        <p class="text-gray-400 text-sm max-w-md mx-auto mb-20 leading-relaxed">
            Quickly onboard your team and start assigning tasks and work at lightning fast speed.
        </p>

        <!-- The Curve Area -->
        <div class="relative max-w-4xl mx-auto">
            <div class="orange-glow"></div>
            
            <!-- The Connecting Line -->
            <svg class="line-svg hidden md:block" viewBox="0 0 800 150" fill="none">
                <path d="M120 120 C 300 10, 500 10, 680 120" stroke="#FF7A00" stroke-width="1.5" stroke-dasharray="6 6" />
            </svg>

            <div class="steps-wrapper">
                <!-- Step 1 -->
                <div class="step-item">
                    <div class="text-[#FF7A00] text-7xl font-bold opacity-80 mb-2">1</div>
                    <div class="w-3 h-3 bg-[#FF7A00] rounded-full mx-auto mb-4 border-2 border-white shadow-sm ring-1 ring-orange-100"></div>
                    <h3 class="font-bold text-lg text-gray-900">Join & Build Team</h3>
                    <p class="text-gray-400 text-xs mt-1 px-4">Create account and configure your team members</p>
                </div>

                <!-- Step 2 (The Peak) -->
                <div class="step-item step-2">
                    <div class="text-[#FF7A00] text-7xl font-bold opacity-80 mb-2">2</div>
                    <div class="w-3 h-3 bg-[#FF7A00] rounded-full mx-auto mb-4 border-2 border-white shadow-sm ring-1 ring-orange-100"></div>
                    <h3 class="font-bold text-lg text-gray-900">Create Project</h3>
                    <p class="text-gray-400 text-xs mt-1 px-4">Start a new project and assign your team with tasks</p>
                </div>

                <!-- Step 3 -->
                <div class="step-item">
                    <div class="text-[#FF7A00] text-7xl font-bold opacity-80 mb-2">3</div>
                    <div class="w-3 h-3 bg-[#FF7A00] rounded-full mx-auto mb-4 border-2 border-white shadow-sm ring-1 ring-orange-100"></div>
                    <h3 class="font-bold text-lg text-gray-900">Track Progress</h3>
                    <p class="text-gray-400 text-xs mt-1 px-4">Monitor tasks and be updated on project progress</p>
                </div>
            </div>
        </div>
    </div>

    <!-- SECTION 2: TESTIMONIALS -->
    <div class="max-w-5xl mx-auto mt-40 px-4">
        <div class="mb-12">
            <div class="inline-block bg-[#FFF0E6] text-[#FF7A00] px-3 py-1 rounded-md text-[10px] font-bold uppercase mb-4 border border-[#FFE0CC]">
                Testimonials
            </div>
            <h2 class="text-3xl font-extrabold text-[#111827] leading-snug">
                Teams Switched To Work <br> Bolt Never Regretted
            </h2>
            <p class="text-gray-400 text-sm mt-3">Discover how work bolt have helped teams worldwide work better together.</p>
        </div>

        <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
            <!-- Card Template -->
            <div class="bg-white p-8 rounded-2xl border border-gray-100 shadow-[0_4px_20px_rgba(0,0,0,0.03)] text-center">
                <img decoding="async" src="https://i.pravatar.cc" class="w-12 h-12 rounded-full mx-auto mb-4 grayscale" alt="User" title="Elementor #9366">
                <h4 class="font-bold text-gray-900">Clark B.</h4>
                <p class="text-[#FF7A00] text-[10px] font-semibold italic mb-4">Managing Director</p>
                <p class="text-gray-500 text-sm italic">"workbolt has changed our team workflow by 10x faster"</p>
            </div>

            <div class="bg-white p-8 rounded-2xl border border-gray-100 shadow-[0_4px_20px_rgba(0,0,0,0.03)] text-center">
                <img decoding="async" src="https://i.pravatar.cc" class="w-12 h-12 rounded-full mx-auto mb-4 grayscale" alt="User" title="Elementor #9366">
                <h4 class="font-bold text-gray-900">Flyona K.</h4>
                <p class="text-[#FF7A00] text-[10px] font-semibold italic mb-4">Sr. Software Eng.</p>
                <p class="text-gray-500 text-sm italic">"Best workspace our team ever used by increasing our workflow lightning fast."</p>
            </div>

            <div class="bg-white p-8 rounded-2xl border border-gray-100 shadow-[0_4px_20px_rgba(0,0,0,0.03)] text-center">
                <img decoding="async" src="https://i.pravatar.cc" class="w-12 h-12 rounded-full mx-auto mb-4 grayscale" alt="User" title="Elementor #9366">
                <h4 class="font-bold text-gray-900">Mark D.</h4>
                <p class="text-[#FF7A00] text-[10px] font-semibold italic mb-4">NodeJS Developer</p>
                <p class="text-gray-500 text-sm italic">"We switched to work bolt and we can already feel the difference in our pace."</p>
            </div>
        </div>
    </div>

</body>
</html>