Sharing Is Caring

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ACT Commercial Intelligence Review™ | ACT Business Consultants Ltd</title>
    <style>
        :root {
            --navy: #1B2A4A;
            --navy-dark: #121c32;
            --gold: #D4AF37;
            --gold-hover: #c29e2f;
            --white: #FFFFFF;
            --off-white: #F8F9FA;
            --gray-light: #E9ECEF;
            --gray-text: #495057;
            --dark-text: #212529;
            --transition: all 0.3s ease;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--white);
            color: var(--dark-text);
            line-height: 1.6;
            font-size: 16px;
        }

        header {
            background-color: var(--navy);
            color: var(--white);
            padding: 5rem 1.5rem 6rem 1.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .hero-tag {
            display: inline-block;
            background-color: rgba(212, 175, 55, 0.15);
            color: var(--gold);
            padding: 0.4rem 1rem;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border-radius: 4px;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        h1 {
            font-size: clamp(2.2rem, 4.5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1.2rem;
            color: var(--white);
            letter-spacing: -0.5px;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            max-width: 750px;
            margin: 0 auto 2.5rem auto;
            color: #E2E8F0;
            font-weight: 300;
        }

        .btn-gold {
            display: inline-block;
            background-color: var(--gold);
            color: var(--navy-dark);
            padding: 0.9rem 2.2rem;
            font-size: 1.05rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 4px;
            transition: var(--transition);
            box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
        }

        .btn-gold:hover {
            background-color: var(--gold-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
        }

        /* Mantra Banner */
        .mantra-banner {
            background-color: var(--navy-dark);
            color: var(--white);
            padding: 2.5rem 1.5rem;
            text-align: center;
            border-top: 3px solid var(--gold);
            border-bottom: 3px solid var(--gold);
        }

        .mantra-banner h2 {
            font-size: clamp(1.4rem, 2.5vw, 2rem);
            font-weight: 500;
            letter-spacing: 0.5px;
            color: var(--gold);
        }

        /* Sections General */
        section {
            padding: 5rem 0;
        }

        section:nth-child(even) {
            background-color: var(--off-white);
        }

        h2.section-title {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            color: var(--navy);
            margin-bottom: 1rem;
            text-align: center;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--gray-text);
            max-width: 700px;
            margin: 0 auto 3rem auto;
            font-size: 1.1rem;
        }

        /* Emotional Hook (5 Questions) */
        .hook-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 850px;
            margin: 0 auto;
        }

        .hook-item {
            background: var(--white);
            padding: 1.5rem 2rem;
            border-left: 4px solid var(--gold);
            box-shadow: 0 2px 10px rgba(0,0,0,0.04);
            border-radius: 0 6px 6px 0;
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
        }

        .hook-number {
            color: var(--gold);
            font-weight: 700;
            font-size: 1.2rem;
            min-width: 25px;
        }

        .hook-text {
            color: var(--navy);
            font-weight: 500;
            font-size: 1.05rem;
        }

        /* Methodology & Guarantee */
        .methodology-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: var(--gray-text);
        }

        .methodology-content p {
            margin-bottom: 1.5rem;
        }

        .guarantee-box {
            background: var(--white);
            border: 1px solid var(--gray-light);
            border-top: 4px solid var(--navy);
            padding: 2.5rem;
            margin-top: 2rem;
            border-radius: 6px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        }

        .guarantee-box h3 {
            color: var(--navy);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* Statistic Highlight */
        .stat-section {
            background-color: var(--navy);
            color: var(--white);
            text-align: center;
            padding: 4rem 1.5rem;
        }

        .stat-number {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 700;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 1rem;
        }

        .stat-description {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            max-width: 800px;
            margin: 0 auto;
            font-weight: 300;
            color: #E2E8F0;
        }

        /* Narrative Case Study */
        .case-study-box {
            background: var(--white);
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            padding: 3rem;
            max-width: 900px;
            margin: 0 auto;
            border-top: 4px solid var(--gold);
        }

        .case-study-box h3 {
            color: var(--navy);
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
        }

        .case-study-box p {
            color: var(--gray-text);
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }

        /* What You Get (3 Columns) */
        .columns-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .column-card {
            background: var(--white);
            padding: 2.5rem 2rem;
            border-radius: 6px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.04);
            border-top: 3px solid var(--navy);
            transition: var(--transition);
        }

        .column-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            border-top-color: var(--gold);
        }

        .column-card h3 {
            color: var(--navy);
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .column-card p {
            color: var(--gray-text);
            font-size: 0.98rem;
        }

        /* Why Owners Call ACT */
        .why-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: var(--gray-text);
        }

        .why-content p {
            margin-bottom: 1.5rem;
        }

        /* What Happens Next */
        .next-steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .step-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
            border-left: 3px solid var(--gold);
        }

        .step-card h4 {
            color: var(--navy);
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }

        .step-card p {
            color: var(--gray-text);
            font-size: 0.95rem;
        }

        /* 4-Step Process */
        .process-timeline {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .process-step {
            display: flex;
            gap: 2rem;
            margin-bottom: 2.5rem;
            position: relative;
        }

        .process-badge {
            background-color: var(--navy);
            color: var(--gold);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            flex-shrink: 0;
            box-shadow: 0 4px 10px rgba(27, 42, 74, 0.2);
        }

        .process-info h3 {
            color: var(--navy);
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .process-info p {
            color: var(--gray-text);
            font-size: 1.02rem;
        }

        /* Pricing Section */
        .pricing-box {
            background: var(--white);
            border: 2px solid var(--gold);
            border-radius: 8px;
            max-width: 600px;
            margin: 0 auto;
            padding: 3rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
        }

        .pricing-box h3 {
            color: var(--navy);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .price-tag {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--navy);
            margin: 1rem 0;
        }

        .pricing-box p {
            color: var(--gray-text);
            margin-bottom: 2rem;
        }

        /* About ACT */
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.05rem;
            color: var(--gray-text);
            text-align: center;
        }

        .about-content p {
            margin-bottom: 1.5rem;
        }

        /* Final CTA */
        .final-cta {
            background-color: var(--navy);
            color: var(--white);
            text-align: center;
            padding: 5rem 1.5rem;
        }

        .final-cta h2 {
            color: var(--white);
            margin-bottom: 1rem;
        }

        .final-cta p {
            color: #E2E8F0;
            max-width: 650px;
            margin: 0 auto 2.5rem auto;
            font-size: 1.1rem;
        }

        /* Footer */
        footer {
            background-color: var(--navy-dark);
            color: #A0AEC0;
            padding: 3rem 1.5rem;
            text-align: center;
            font-size: 0.9rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        footer p {
            margin-bottom: 0.8rem;
        }

        footer a {
            color: var(--gold);
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            section {
                padding: 3.5rem 0;
            }
            .case-study-box, .pricing-box {
                padding: 2rem 1.5rem;
            }
        }
    </style>
</head>
<body>

    <!-- Hero Section -->
    <header>
        <div class="container">
            <span class="hero-tag">ACT Commercial Intelligence Review™</span>
            <h1>Every important business decision carries risk</h1>
            <p class="hero-subtitle">Designed for established Thames Valley SME owners. For businesses turning between £250k and £2m, guesswork is the silent killer of margin and momentum. Eliminate it with commercial evidence before you invest another pound or hour.</p>
            <a href="https://meet.brevo.com/john-goodwin/intro" class="btn-gold" target="_blank" rel="noopener">Schedule Your Discovery Conversation</a>
        </div>
    </header>

    <!-- Mantra Banner -->
    <div class="mantra-banner">
        <div class="container">
            <h2>ACT doesn't sell advice. ACT sells commercial evidence.</h2>
        </div>
    </div>

    <!-- Emotional Hook Section -->
    <section>
        <div class="container">
            <h2 class="section-title">Do you recognize these strategic blind spots?</h2>
            <p class="section-subtitle">Owner-managed businesses frequently operate under silent constraints that drain profitability and compound owner dependency.</p>
            
            <div class="hook-grid">
                <div class="hook-item">
                    <span class="hook-number">01</span>
                    <span class="hook-text">Are you making pivotal commercial decisions based on gut feel rather than hard data?</span>
                </div>
                <div class="hook-item">
                    <span class="hook-number">02</span>
                    <span class="hook-text">Do you know exactly where your business leaks 10% to 20% in hidden profit every month?</span>
                </div>
                <div class="hook-item">
                    <span class="hook-number">03</span>
                    <span class="hook-text">Is your growth bottlenecked by owner-dependency that consumes 60+ hours of your week?</span>
                </div>
                <div class="hook-item">
                    <span class="hook-number">04</span>
                    <span class="hook-text">Are your cash flow forecasts consistently undermined by unpredictable operational drag?</span>
                </div>
                <div class="hook-item">
                    <span class="hook-number">05</span>
                    <span class="hook-text">If you stepped away for three months tomorrow, would your business accelerate or stall?</span>
                </div>
            </div>
        </div>
    </section>

    <!-- Methodology & Confidence Guarantee -->
    <section>
        <div class="container">
            <h2 class="section-title">Methodology & Confidence Guarantee</h2>
            <div class="methodology-content">
                <p>The ACT Commercial Intelligence Review™ operates on a rigorous, multi-layered diagnostic methodology. We do not provide generic consultancy templates or subjective opinions. Instead, we examine your internal financial and operational realities alongside external market realities to establish undeniable commercial truth.</p>
                
                <div class="guarantee-box">
                    <h3>The ACT Confidence Guarantee</h3>
                    <p>Evidence builds confidence. We guarantee that our review will provide complete clarity on your profit leakage, operational bottlenecks, and strategic options. We do not take decisions away from you; we make those decisions transparent, measurable, and logically unassailable.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Statistic Section -->
    <div class="stat-section">
        <div class="container">
            <div class="stat-number">10% – 20%</div>
            <p class="stat-description">Typical hidden profit leakage recovered and operational friction removed within our structured diagnostic review for established Thames Valley SMEs.</p>
        </div>
    </div>

    <!-- Narrative Case Study -->
    <section>
        <div class="container">
            <h2 class="section-title">Real-World Impact</h2>
            <p class="section-subtitle">How evidence transformed commercial trajectory for an established regional retailer.</p>
            
            <div class="case-study-box">
                <h3>Case Study: Restoring Margins and Clarity for a Thames Valley Retailer</h3>
                <p>A long-standing family-owned retailer in Berkshire with turnover above £1.2m faced stagnant margins, rising overheads, and heavy owner-dependency. The leadership team was working grueling hours while net profit steadily eroded.</p>
                <p>Through the ACT Commercial Intelligence Review™, our team conducted a deep financial and operational diagnostic. We uncovered £35,000 in unoptimized supplier costs, redundant logistics overheads, and unprofitable product lines within the first 8 weeks.</p>
                <p>Rather than dictating changes, we delivered an options-based commercial report. This empowered the owner to restructure supplier contracts and delegate operational oversight with complete confidence, lifting net margins by 14% and reclaiming 15 hours of weekly personal time.</p>
            </div>
        </div>
    </section>

    <!-- What You Get (3 Columns) -->
    <section>
        <div class="container">
            <h2 class="section-title">What You Get</h2>
            <p class="section-subtitle">A comprehensive diagnostic framework engineered to provide total operational and financial clarity.</p>
            
            <div class="columns-grid">
                <div class="column-card">
                    <h3>Business Intelligence™</h3>
                    <p>Rigorous internal analysis of your financial performance, cost structures, margin drivers, and operational workflows to isolate where cash and time are being lost.</p>
                </div>
                <div class="column-card">
                    <h3>Market Intelligence™</h3>
                    <p>External benchmark analysis evaluating competitor positioning, pricing elasticity, and wider commercial context to validate opportunities and challenge assumptions.</p>
                </div>
                <div class="column-card">
                    <h3>Risk & Options Assessment™</h3>
                    <p>Structured evaluation of every commercial path forward. We quantify risks, outline potential outcomes, and present clear strategic choices backed by evidence.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Why Owners Call ACT -->
    <section>
        <div class="container">
            <h2 class="section-title">Why Owners Call ACT</h2>
            <div class="why-content">
                <p>Established business owners across Berkshire, Buckinghamshire, Oxfordshire, and Wiltshire turn to ACT when they have hit a ceiling. They are tired of generic advice, superficial coaching, and consultants who sell solutions without understanding the intricate realities of owner-managed enterprises.</p>
                <p>They call us because they want rigorous, objective commercial truth delivered with discretion, empathy, and professional excellence.</p>
            </div>
        </div>
    </section>

    <!-- What Happens Next -->
    <section>
        <div class="container">
            <h2 class="section-title">What Happens Next</h2>
            <p class="section-subtitle">A straightforward, consultative pathway designed to respect your time.</p>
            
            <div class="next-steps-grid">
                <div class="step-card">
                    <h4>1. Initial Dialogue</h4>
                    <p>A 30-minute introductory conversation to discuss your current business model, challenges, and growth objectives.</p>
                </div>
                <div class="step-card">
                    <h4>2. Fit Assessment</h4>
                    <p>We evaluate whether the Commercial Intelligence Review™ aligns precisely with what your business requires right now.</p>
                </div>
                <div class="step-card">
                    <h4>3. Engagement Kickoff</h4>
                    <p>Upon mutual agreement, we initiate the diagnostic process with zero disruption to your day-to-day operations.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- 4-Step Process -->
    <section>
        <div class="container">
            <h2 class="section-title">Our 4-Step Process</h2>
            <p class="section-subtitle">A proven methodology from initial discovery to measurable implementation.</p>
            
            <div class="process-timeline">
                <div class="process-step">
                    <div class="process-badge">01</div>
                    <div class="process-info">
                        <h3>Discovery Call</h3>
                        <p>An exploratory conversation to review your current commercial trajectory, explore strategic friction points, and establish mutual fit.</p>
                    </div>
                </div>
                <div class="process-step">
                    <div class="process-badge">02</div>
                    <div class="process-info">
                        <h3>Commercial Review</h3>
                        <p>An 8–10 week diagnostic deep-dive encompassing internal financial audit, operational workflow analysis, and market benchmarking.</p>
                    </div>
                </div>
                <div class="process-step">
                    <div class="process-badge">03</div>
                    <div class="process-info">
                        <h3>Evidence Report</h3>
                        <p>Delivery of the comprehensive ACT Commercial Intelligence Review™ outlining quantified profit opportunities, risk evaluations, and strategic options.</p>
                    </div>
                </div>
                <div class="process-step">
                    <div class="process-badge">04</div>
                    <div class="process-info">
                        <h3>90-Day Implementation</h3>
                        <p>Seamless transition into Volume 2 execution, providing structured mentorship and gate-signed governance to ensure measurable ROI.</p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Pricing Section -->
    <section>
        <div class="container">
            <h2 class="section-title">Investment</h2>
            <p class="section-subtitle">Transparent pricing designed for immediate return on investment.</p>
            
            <div class="pricing-box">
                <h3>ACT Commercial Intelligence Review™</h3>
                <div class="price-tag">Typically from £2,500 + VAT</div>
                <p>Fixed-scope diagnostic investment structured to uncover hidden profit leakage that frequently exceeds 10x the review cost within the first quarter.</p>
                <a href="https://meet.brevo.com/john-goodwin/intro" class="btn-gold" target="_blank" rel="noopener">Secure Your Review</a>
            </div>
        </div>
    </section>

    <!-- About ACT -->
    <section>
        <div class="container">
            <h2 class="section-title">About ACT Business Consultants Ltd</h2>
            <div class="about-content">
                <p>ACT Business Consultants Ltd is a specialist advisory firm dedicated to owner-managed SMEs across the Thames Valley and M4 corridor. We help established business owners transition from stressful, owner-dependent operations to systematic, highly valuable commercial assets.</p>
                <p>Our philosophy is rooted in evidence before advice. By combining deep financial diagnostics with strategic market intelligence, we empower leaders to make confident, profitable decisions that stand the test of time.</p>
            </div>
        </div>
    </section>

    <!-- Final CTA -->
    <div class="final-cta">
        <div class="container">
            <h2>Ready to eliminate guesswork and uncover hidden profit?</h2>
            <p>Let's discuss whether the ACT Commercial Intelligence Review™ is the right catalyst for your business objectives.</p>
            <a href="https://meet.brevo.com/john-goodwin/intro" class="btn-gold" target="_blank" rel="noopener">Schedule Your Discovery Conversation</a>
        </div>
    </div>

    <!-- Footer -->
    <footer>
        <div class="container">
            <p><strong>ACT Business Consultants Ltd</strong></p>
            <p>Phone: <a href="tel:01235886222">01235 886222</a> | Email: <a href="mailto:johngoodwin@actbusinessconsultants.co.uk">johngoodwin@actbusinessconsultants.co.uk</a></p>
            <p>&copy; 2026 ACT Business Consultants Ltd. All rights reserved. | <a href="https://www.actbusinessconsultants.co.uk" target="_blank" rel="noopener">www.actbusinessconsultants.co.uk</a></p>
        </div>
    </footer>

</body>
</html>