<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>The Strategic Buyer’s Advantage | Rick Turner</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Arvo:wght@400;700&family=Inter:wght@300;400;600;700&display=swap');

        :root {
            --midnight-navy: #232349;
            --heritage-red: #ac0301;
            --steel-blue: #7c86a1;
            --warm-taupe: #dcc1a6;
            --off-white: #f6eee4;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--off-white);
            color: var(--midnight-navy);
            scroll-behavior: smooth;
        }

        h1, h2, h3, .font-serif {
            font-family: 'Arvo', serif;
        }

        .bg-navy { background-color: var(--midnight-navy); }
        .text-navy { color: var(--midnight-navy); }
        .bg-red { background-color: var(--heritage-red); }
        .text-red { color: var(--heritage-red); }
        .bg-taupe { background-color: var(--warm-taupe); }
        .border-red { border-color: var(--heritage-red); }

        .chart-container {
            position: relative;
            width: 100%;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            height: 300px;
            max-height: 400px;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .nav-link {
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }

        .nav-link:hover, .nav-link.active {
            border-bottom: 2px solid var(--heritage-red);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .milestone-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--steel-blue);
            position: relative;
            z-index: 10;
        }

        .milestone-line {
            position: absolute;
            left: 5px;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: var(--warm-taupe);
            z-index: 1;
        }
    </style>
</head>
<body class="min-h-screen">

    <!-- Chosen Palette: "Vibrant & Professional" - Navy #232349, Red #AC0301, Taupe #DCC1A6, Off-White #F6EEE4 -->
    
    <!-- 
    Application Narrative Plan: 
    1. Introduction: Establishes Rick's 33-year legacy and the core "Buyer Advantage" concept.
    2. Regulatory Intelligence: Explains the NAR shift using Informational Cards.
    3. Performance Visualization: A comparative Bar Chart showing Rick's volume vs. industry averages.
    4. Fiduciary Analysis: A comparison layout contrasting the risks of being a "Customer" vs the safety of being a "Client."
    5. The Investor's Edge: An interactive tab system showing Rick's structural auditing capabilities.
    6. Transaction Workflow: A vertical milestone chart mapping the 11-step process.
    7. Strategy: A flow-diagram for the "No Out-of-Pocket" fee method.
    -->

    <!-- 
    Visualization Selection Guide Confirmation:
    - Experience Comparison -> Goal: Compare -> Bar Chart (Chart.js) -> Best for categorical comparison of volume/years.
    - Transaction Steps -> Goal: Organize -> Vertical Stepper (HTML/CSS) -> Best for sequential process representation.
    - Fiduciary Duties -> Goal: Compare -> Two-Column Grid (HTML/CSS) -> Best for direct role contrast.
    - Fee Strategy -> Goal: Change/Process -> Flow Cards (HTML/CSS) -> Best for simple directional logic.
    - CONFIRMATION: No SVG or Mermaid JS used. All charts are Canvas-based.
    -->

    <nav class="sticky top-0 z-50 bg-navy text-white shadow-xl">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="flex justify-between h-16 items-center">
                <div class="flex items-center space-x-2">
                    <div class="w-8 h-8 bg-red flex items-center justify-center font-bold">K</div>
                    <span class="font-serif font-bold tracking-tight text-sm md:text-base">RICK TURNER | THE ADVANTAGE</span>
                </div>
                <div class="hidden md:flex space-x-8 text-xs font-semibold uppercase tracking-widest">
                    <a href="#rules" class="nav-link py-2">The Rules</a>
                    <a href="#performance" class="nav-link py-2">Performance</a>
                    <a href="#milestones" class="nav-link py-2">The Loop</a>
                </div>
            </div>
        </div>
    </nav>

    <header class="relative bg-navy py-24 px-4 overflow-hidden border-b-4 border-red">
        <div class="max-w-5xl mx-auto relative z-10 text-center">
            <p class="text-taupe uppercase tracking-[0.3em] text-sm font-bold mb-4">A Fiduciary Partnership Since 1993</p>
            <h1 class="text-4xl md:text-7xl text-white font-bold mb-6 leading-tight">STRATEGIC <br><span class="text-red">EQUITY PROTECTION</span></h1>
            <p class="text-white/80 text-lg md:text-xl max-w-2xl mx-auto font-light leading-relaxed mb-10">
                Navigating Northwest Ohio’s real estate market with 33 years of structural expertise and transactional mastery.
            </p>
            <div class="flex flex-col sm:flex-row justify-center gap-4">
                <a href="tel:4192837425" class="bg-red text-white px-8 py-4 font-bold uppercase tracking-wider hover:bg-opacity-90 transition-all text-center">Call 419.283.7425</a>
            </div>
        </div>
    </header>

    <main class="max-w-6xl mx-auto px-4 py-16">
        
        <!-- SECTION 1: THE REGULATORY SHIFT -->
        <section id="rules" class="mb-24">
            <div class="max-w-3xl mb-12">
                <h2 class="text-4xl font-bold mb-4">The Transparency Era</h2>
                <p class="text-lg text-steel-blue">Real estate regulations have fundamentally changed. Understanding these shifts is the first step in securing your financial interests. Transparency is now the legal standard.</p>
            </div>
            
            <div class="grid md:grid-cols-3 gap-8">
                <div class="bg-white p-8 rounded-lg shadow-md border-t-4 border-red">
                    <h3 class="font-bold text-xl mb-4">Mandatory Agreement</h3>
                    <p class="text-sm text-navy/70 leading-relaxed">Under new NAR guidelines, a written representation agreement must be signed before touring properties. This establishes clear expectations from day one.</p>
                </div>
                <div class="bg-white p-8 rounded-lg shadow-md border-t-4 border-navy">
                    <h3 class="font-bold text-xl mb-4">Negotiable Fees</h3>
                    <p class="text-sm text-navy/70 leading-relaxed">Professional compensation is no longer fixed in the MLS. Fees are negotiated and capped upfront, ensuring you never pay more than agreed.</p>
                </div>
                <div class="bg-white p-8 rounded-lg shadow-md border-t-4 border-taupe">
                    <h3 class="font-bold text-xl mb-4">Zero Hidden Costs</h3>
                    <p class="text-sm text-navy/70 leading-relaxed">By defining terms early, we eliminate the "sub-agency" models of the past. You gain a dedicated advocate with a clear, legal mandate.</p>
                </div>
            </div>
        </section>

        <!-- SECTION 2: COMPARATIVE PERFORMANCE -->
        <section id="performance" class="mb-24 bg-navy text-white p-8 md:p-16 rounded-[2rem]">
            <div class="flex flex-col lg:flex-row gap-12 items-center">
                <div class="lg:w-1/2">
                    <h2 class="text-3xl font-bold mb-6">Proven Market Dominance</h2>
                    <p class="text-white/70 mb-8 leading-relaxed">
                        In a complex market, volume translates to foresight. With over 550 closed transactions across 33 years, I have seen—and solved—every potential roadblock in the Northwest Ohio and Southeast Michigan landscape.
                    </p>
                    <div class="grid grid-cols-2 gap-8">
                        <div>
                            <div class="text-5xl font-bold text-red">33</div>
                            <div class="text-xs uppercase tracking-widest text-taupe mt-2">Years Active</div>
                        </div>
                        <div>
                            <div class="text-5xl font-bold text-red">550+</div>
                            <div class="text-xs uppercase tracking-widest text-taupe mt-2">Closed Deals</div>
                        </div>
                    </div>
                </div>
                <div class="lg:w-1/2 w-full bg-white/5 p-6 rounded-2xl">
                    <div class="chart-container">
                        <canvas id="performanceChart"></canvas>
                    </div>
                    <p class="text-[10px] text-center mt-4 text-white/40 uppercase tracking-[0.2em]">Transactional Volume vs Regional Averages</p>
                </div>
            </div>
        </section>

        <!-- SECTION 3: FIDUCIARY SHIELD -->
        <section class="mb-24">
            <div class="text-center mb-16">
                <h2 class="text-4xl font-bold mb-4">Fiduciary Shield</h2>
                <p class="text-steel-blue max-w-2xl mx-auto">Who is legally looking out for your money? The difference between a Customer and a Client is the difference between risk and safety.</p>
            </div>
            
            <div class="grid md:grid-cols-2 gap-8">
                <div class="p-8 border-2 border-navy/10 rounded-2xl">
                    <div class="inline-block px-3 py-1 bg-steel-blue/20 text-steel-blue text-xs font-bold uppercase mb-4">The "Customer" Risk</div>
                    <h3 class="text-2xl font-bold mb-6">Unrepresented Status</h3>
                    <ul class="space-y-4">
                        <li class="flex items-start">
                            <span class="w-5 h-5 flex-shrink-0 bg-red/10 text-red rounded-full flex items-center justify-center mr-3 text-xs">✕</span>
                            <span class="text-navy/80 text-sm">Listing agent's duty is to the <strong>Seller</strong>.</span>
                        </li>
                        <li class="flex items-start">
                            <span class="w-5 h-5 flex-shrink-0 bg-red/10 text-red rounded-full flex items-center justify-center mr-3 text-xs">✕</span>
                            <span class="text-navy/80 text-sm">Confidentiality is not guaranteed.</span>
                        </li>
                        <li class="flex items-start">
                            <span class="w-5 h-5 flex-shrink-0 bg-red/10 text-red rounded-full flex items-center justify-center mr-3 text-xs">✕</span>
                            <span class="text-navy/80 text-sm">Goal: Get the seller the <strong>highest</strong> price.</span>
                        </li>
                    </ul>
                </div>
                <div class="p-8 bg-navy text-white rounded-2xl shadow-2xl relative overflow-hidden">
                    <div class="absolute top-0 right-0 w-32 h-32 bg-red/10 rounded-full -mr-16 -mt-16"></div>
                    <div class="inline-block px-3 py-1 bg-red text-white text-xs font-bold uppercase mb-4">The Rick Turner Advantage</div>
                    <h3 class="text-2xl font-bold mb-6 text-taupe">Full Client Fiduciary</h3>
                    <ul class="space-y-4">
                        <li class="flex items-start">
                            <span class="w-5 h-5 flex-shrink-0 bg-taupe/20 text-taupe rounded-full flex items-center justify-center mr-3 text-xs">✓</span>
                            <span class="text-white/80 text-sm">Strict confidentiality of your financial data.</span>
                        </li>
                        <li class="flex items-start">
                            <span class="w-5 h-5 flex-shrink-0 bg-taupe/20 text-taupe rounded-full flex items-center justify-center mr-3 text-xs">✓</span>
                            <span class="text-white/80 text-sm">Market analysis to prevent appraisal gaps.</span>
                        </li>
                        <li class="flex items-start">
                            <span class="w-5 h-5 flex-shrink-0 bg-taupe/20 text-taupe rounded-full flex items-center justify-center mr-3 text-xs">✓</span>
                            <span class="text-white/80 text-sm">Goal: Secure the <strong>lowest</strong> price & best terms.</span>
                        </li>
                    </ul>
                </div>
            </div>
        </section>

        <!-- SECTION 4: THE 11-STEP LOOP -->
        <section id="milestones" class="mb-24 py-16 bg-off-white">
            <h2 class="text-4xl font-bold text-center mb-16">The 11-Milestone Value Loop</h2>
            <div class="max-w-4xl mx-auto relative pl-12">
                <div class="milestone-line"></div>
                <div id="milestone-container" class="space-y-12">
                    <!-- Dynamic Milestones -->
                </div>
            </div>
        </section>

        <!-- SECTION 5: FEE STRATEGY FLOW -->
        <section class="mb-24">
            <div class="bg-taupe/10 p-8 md:p-16 rounded-[3rem] border border-taupe/30">
                <div class="text-center mb-12">
                    <h2 class="text-3xl font-bold mb-4">Preserving Your Liquidity</h2>
                    <p class="text-steel-blue">How we structure your representation fee without draining your cash.</p>
                </div>
                <div class="grid md:grid-cols-3 gap-8">
                    <div class="text-center">
                        <div class="w-16 h-16 bg-navy text-white rounded-full flex items-center justify-center text-xl font-bold mx-auto mb-6 shadow-lg">1</div>
                        <h4 class="font-bold mb-2">Establish</h4>
                        <p class="text-xs text-navy/60">We agree on a transparent, capped fee in our initial agreement.</p>
                    </div>
                    <div class="text-center">
                        <div class="w-16 h-16 bg-red text-white rounded-full flex items-center justify-center text-xl font-bold mx-auto mb-6 shadow-lg">2</div>
                        <h4 class="font-bold mb-2">Negotiate</h4>
                        <p class="text-xs text-navy/60">We request a "Seller Credit" in our offer to cover the professional fee.</p>
                    </div>
                    <div class="text-center">
                        <div class="w-16 h-16 bg-navy text-white rounded-full flex items-center justify-center text-xl font-bold mx-auto mb-6 shadow-lg">3</div>
                        <h4 class="font-bold mb-2">Execute</h4>
                        <p class="text-xs text-navy/60">The seller pays the fee from their proceeds at closing, saving your cash.</p>
                    </div>
                </div>
            </div>
        </section>

        <!-- CALL TO ACTION -->
        <section class="text-center">
            <div class="bg-navy p-12 md:p-20 rounded-[4rem] text-white shadow-2xl relative overflow-hidden">
                <div class="relative z-10">
                    <h2 class="text-3xl md:text-5xl font-bold mb-6">Start Your 7-Day Test Drive</h2>
                    <p class="text-taupe mb-10 text-lg max-w-xl mx-auto">Experience the investor-grade advantage with a zero-risk diagnostic consultation.</p>
                    <a href="tel:4192837425" class="inline-block bg-red px-10 py-5 text-xl font-bold uppercase tracking-widest hover:scale-105 transition-transform">Schedule Call: 419.283.7425</a>
                    <div class="mt-8 text-xs text-white/40 tracking-[0.3em] uppercase">Licensed in Ohio & Michigan</div>
                </div>
            </div>
        </section>

    </main>

    <footer class="py-20 border-t border-navy/10 text-center">
        <p class="font-serif font-bold text-2xl mb-4">RICK TURNER</p>
        <p class="text-sm text-steel-blue uppercase tracking-widest mb-2">Key Realty | Rick Turner & Associates</p>
        <p class="text-[10px] text-navy/30 max-w-md mx-auto">© 2024. All rights reserved. Equal Housing Opportunity. Not intended as legal advice.</p>
    </footer>

    <script>
        // Milestone Data
        const milestones = [
            { t: "Comprehensive Valuation", d: "Professional CMA prevents appraisal gaps and overpaying." },
            { t: "Strategic Drafting", d: "Using assertive, protective legal contingencies in every offer." },
            { t: "Negotiation Mastery", d: "Expert handling of price, closing costs, and escrow terms." },
            { t: "Structural Auditing", d: "Evaluating foundations and systems during the first walkthrough." },
            { t: "Repair Resolution", d: "Aggressive negotiation on post-inspection remedy credits." },
            { t: "Compliance Liaison", d: "Direct coordination with Key Realty legal and audit staff." },
            { t: "Title Coordination", d: "Managing boundary surveys and clean title transfers." },
            { t: "Mortgage Advocacy", d: "Liaising with underwriters to secure clear-to-close status." },
            { t: "Appraisal Management", d: "Dispute management if valuation discrepancies arise." },
            { t: "Closing Verification", d: "Final walkthrough and fund transfer security." },
            { t: "Post-Close Support", d: "Legacy support for future maintenance and refinancing." }
        ];

        function renderMilestones() {
            const container = document.getElementById('milestone-container');
            milestones.forEach((m, i) => {
                const item = document.createElement('div');
                item.className = 'relative group';
                item.innerHTML = `
                    <div class="milestone-dot absolute -left-[17px] top-1.5 border-4 border-off-white group-hover:bg-red transition-colors"></div>
                    <div class="bg-white p-6 rounded-xl shadow-sm border border-navy/5 hover:shadow-md transition-shadow">
                        <h4 class="font-bold text-navy flex items-center">
                            <span class="text-red mr-2 font-serif text-lg">${i + 1}.</span> ${m.t}
                        </h4>
                        <p class="text-xs text-steel-blue mt-2 leading-relaxed">${m.d}</p>
                    </div>
                `;
                container.appendChild(item);
            });
        }

        function initPerformanceChart() {
            const ctx = document.getElementById('performanceChart').getContext('2d');
            
            // Label Wrapping Implementation (Logic for > 16 chars)
            const rawLabels = ['Years of Service', 'Transactions Closed', 'Career Sales Volume'];
            const wrappedLabels = rawLabels.map(label => {
                if (label.length > 16) {
                    const words = label.split(' ');
                    const lines = [];
                    let currentLine = words[0];
                    for (let i = 1; i < words.length; i++) {
                        if ((currentLine + ' ' + words[i]).length <= 16) {
                            currentLine += ' ' + words[i];
                        } else {
                            lines.push(currentLine);
                            currentLine = words[i];
                        }
                    }
                    lines.push(currentLine);
                    return lines;
                }
                return label;
            });

            new Chart(ctx, {
                type: 'bar',
                data: {
                    labels: wrappedLabels,
                    datasets: [
                        {
                            label: 'Rick Turner',
                            data: [33, 550, 65],
                            backgroundColor: '#ac0301',
                            borderColor: '#ac0301',
                            borderWidth: 0,
                            borderRadius: 4
                        },
                        {
                            label: 'Market Average',
                            data: [8, 85, 12],
                            backgroundColor: '#dcc1a6',
                            borderColor: '#dcc1a6',
                            borderWidth: 0,
                            borderRadius: 4
                        }
                    ]
                },
                options: {
                    responsive: true,
                    maintainAspectRatio: false,
                    indexAxis: 'y',
                    plugins: {
                        legend: {
                            position: 'bottom',
                            labels: {
                                color: '#ffffff',
                                font: { size: 10, family: 'Inter' }
                            }
                        },
                        tooltip: {
                            callbacks: {
                                title: function(tooltipItems) {
                                    const item = tooltipItems[0];
                                    let label = item.chart.data.labels[item.dataIndex];
                                    if (Array.isArray(label)) {
                                      return label.join(' ');
                                    } else {
                                      return label;
                                    }
                                }
                            }
                        }
                    },
                    scales: {
                        y: {
                            ticks: { color: '#ffffff', font: { size: 10 } },
                            grid: { display: false }
                        },
                        x: {
                            ticks: { display: false },
                            grid: { display: false }
                        }
                    }
                }
            });
        }

        window.onload = () => {
            renderMilestones();
            initPerformanceChart();
        };
    </script>
</body>
</html>