<!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>
    <link href="https://fonts.googleapis.com" rel="stylesheet">
    <style>
        body { font-family: 'Inter', sans-serif; background-color: #ffffff; }
        /* The specific orange glow behind the curve */
        .orange-glow {
            background: radial-gradient(50% 50% at 50% 50%, rgba(255, 122, 0, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
            width: 100%;
            height: 400px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
        }
        /* Step curve path alignment */
        .steps-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            align-items: end;
            height: 320px;
        }
        .step-item { position: relative; z-index: 10; }
        /* Step 2 is raised to follow the curve */
        .step-2 { margin-bottom: 80px; }
        .line-svg {
            position: absolute;
            top: 140px;
            left: 0;
            width: 100%;
            z-index: 5;
            pointer-events: none;
        }
    </style>
</head>
<body>
    <!-- SECTION 1: HOW IT WORKS -->
            How It Works
        <h1>
            Setup In Minutes Not <br> Hours And Start Working
        </h1>
        <p>
            Quickly onboard your team and start assigning tasks and work at lightning fast speed.
        </p>
        <!-- The Curve Area -->
            <!-- The Connecting Line -->
            <svg 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>
                <!-- Step 1 -->
                    1
                    <h3>Join & Build Team</h3>
                    <p>Create account and configure your team members</p>
                <!-- Step 2 (The Peak) -->
                    2
                    <h3>Create Project</h3>
                    <p>Start a new project and assign your team with tasks</p>
                <!-- Step 3 -->
                    3
                    <h3>Track Progress</h3>
                    <p>Monitor tasks and be updated on project progress</p>
    <!-- SECTION 2: TESTIMONIALS -->
                Testimonials
            <h2>
                Teams Switched To Work <br> Bolt Never Regretted
            </h2>
            <p>Discover how work bolt have helped teams worldwide work better together.</p>
            <!-- Card Template -->
                <img decoding="async" src="https://i.pravatar.cc" alt="User">
                <h4>Clark B.</h4>
                <p>Managing Director</p>
                <p>"workbolt has changed our team workflow by 10x faster"</p>
                <img decoding="async" src="https://i.pravatar.cc" alt="User">
                <h4>Flyona K.</h4>
                <p>Sr. Software Eng.</p>
                <p>"Best workspace our team ever used by increasing our workflow lightning fast."</p>
                <img decoding="async" src="https://i.pravatar.cc" alt="User">
                <h4>Mark D.</h4>
                <p>NodeJS Developer</p>
                <p>"We switched to work bolt and we can already feel the difference in our pace."</p>
</body>
</html>