<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>David Kirkland | Strategic Growth & Operations Partner</title>

    <style>

        :root {

            --primary: #0f172a;

            --accent: #0284c7;

            --text: #334155;

            --light: #f8fafc;

        }

        body {

            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

            margin: 0;

            padding: 0;

            color: var(--text);

            background-color: var(--light);

            line-height: 1.6;

        }

        header {

            background-color: var(--primary);

            color: white;

            padding: 1.5rem 5%;

            display: flex;

            justify-content: space-between;

            align-items: center;

        }

        header h1 { margin: 0; font-size: 1.3rem; letter-spacing: -0.5px; }

        .hero {

            padding: 7rem 5%;

            text-align: center;

            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

            color: white;

        }

        .hero h2 { font-size: 2.75rem; max-width: 850px; margin: 0 auto 1.5rem auto; line-height: 1.2; }

        .hero p { font-size: 1.2rem; color: #94a3b8; max-width: 650px; margin: 0 auto 2.5rem auto; }

        .btn {

            background-color: var(--accent);

            color: white;

            padding: 0.75rem 2rem;

            text-decoration: none;

            border-radius: 6px;

            font-weight: 600;

            transition: background 0.2s;

            display: inline-block;

        }

        .btn:hover { background-color: #0369a1; }

        .services {

            padding: 5rem 5%;

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

            gap: 2rem;

            max-width: 1200px;

            margin: 0 auto;

        }

        .card {

            background: white;

            padding: 2.5rem;

            border-radius: 8px;

            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);

        }

        .card h3 { margin-top: 0; color: var(--primary); font-size: 1.25rem; }

        footer {

            text-align: center;

            padding: 3rem;

            background-color: #0f172a;

            color: #64748b;

            font-size: 0.85rem;

        }

    </style>

</head>

<body>


    <header>

        <h1>David Kirkland | Strategic Growth</h1>

        <!-- Updated Header Button to your target Calendly page -->

        <a href="https://calendly.com/davidkirklandfinance-6nla/30min" target="_blank" rel="noopener noreferrer" class="btn" style="padding: 0.5rem 1.2rem; font-size: 0.9rem;">Book a Call</a>

    </header>


    <section class="hero">

        <h2>Bridging the Gap Between Your Vision & Market-Leading Execution</h2>

        <p>Partnering with founders and leadership teams to scale operations, build high-performance infrastructure, and fix growth bottlenecks without breaking your systems.</p>

        <!-- Updated Hero Main Call to Action -->

        <a href="https://calendly.com/davidkirklandfinance-6nla/30min" target="_blank" rel="noopener noreferrer" class="btn">Schedule a 30-Min Strategic Review</a>

    </section>


    <section class="services">

        <div class="card">

            <h3>Strategic Business Development</h3>

            <p>Accelerating revenue and long-term valuation through high-value corporate partnerships, pipeline engineering, and end-to-end project lifecycle oversight.</p>

        </div>

        <div class="card">

            <h3>Operational Architecture</h3>

            <p>Optimizing tech stacks, cost-overhead allocation, and logistics workflows specifically built for scaling e-commerce, retail, and digital technology platforms.</p>

        </div>

        <div class="card">

            <h3>Assembling A-Player Teams</h3>

            <p>Leveraging deep cross-industry recruitment and mentorship frameworks to fill critical leadership gaps, preparing your company cleanly from idea to exit.</p>

        </div>

    </section>


    <footer>

        <p>&copy; 2026 David Kirkland. Information provided on this website is for general corporate strategy tracking. David Kirkland operates strictly as an independent operational consultant and does not offer public retail securities trading advice or regulated Canadian investment advisory services.</p>

    </footer>


</body>

</html>