<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flywheel Advisors LLC</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<div class="logo">Flywheel Advisors LLC</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#clients">Clients</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<a href="#contact" class="cta">Get in Touch</a>
</div>
</header>
<section class="hero">
<div class="container">
<h1>Accelerating Growth for Early-Stage Tech Companies</h1>
<p>Expert advisory services to help you scale from $0 to $20M+ in revenue.</p>
<a href="#contact" class="cta">Schedule a Consultation</a>
</div>
</section>
<section id="about" class="about">
<div class="container">
<h2>About Flywheel Advisors LLC</h2>
<p>We provide strategic guidance for early-stage tech companies looking to scale and achieve sustainable growth.</p>
</div>
</section>
<section id="services" class="services">
<div class="container">
<h2>Our Services</h2>
<div class="service-grid">
<div class="service">
<h3>Strategic Advisory</h3>
<p>Helping founders and CEOs craft growth strategies.</p>
</div>
<div class="service">
<h3>Operational Consulting</h3>
<p>Optimizing operations and scaling teams efficiently.</p>
</div>
<div class="service">
<h3>Fundraising Guidance</h3>
<p>Navigating early-stage fundraising and investor relations.</p>
</div>
</div>
</div>
</section>
<section id="contact" class="contact">
<div class="container">
<h2>Let’s Connect</h2>
<form action="#">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
<label for="company">Company</label>
<input type="text" id="company" name="company" required>
<label for="message">Message</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Flywheel Advisors LLC. All rights reserved.</p>
</div>
</footer>
</body>
</html>