<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>Iconic Acquisition System | AI-Powered B2B Appointment Generation</title>

    <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">

    <script src="https://unpkg.com/lucide@latest"></script>

    <style>

        :root {

            --midnight: #0a0a0f;

            --charcoal: #12121a;

            --gold: #d4af37;

            --gold-light: #f4d03f;

            --cream: #faf9f6;

            --gray-light: #e5e5e5;

            --gray-dark: #2a2a35;

        }


        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }


        body {

            font-family: 'Inter', sans-serif;

            background: var(--midnight);

            color: var(--cream);

            line-height: 1.6;

            overflow-x: hidden;

        }


        .serif {

            font-family: 'Playfair Display', serif;

        }


        /* Navigation */

        nav {

            position: fixed;

            top: 0;

            width: 100%;

            padding: 1.5rem 5%;

            display: flex;

            justify-content: space-between;

            align-items: center;

            z-index: 1000;

            background: rgba(10, 10, 15, 0.9);

            backdrop-filter: blur(20px);

            border-bottom: 1px solid rgba(212, 175, 55, 0.1);

        }


        .logo {

            font-family: 'Playfair Display', serif;

            font-size: 1.5rem;

            font-weight: 600;

            color: var(--gold);

            letter-spacing: 2px;

        }


        .nav-links {

            display: flex;

            gap: 2.5rem;

            list-style: none;

        }


        .nav-links a {

            color: var(--cream);

            text-decoration: none;

            font-size: 0.9rem;

            font-weight: 400;

            transition: color 0.3s;

            opacity: 0.8;

        }


        .nav-links a:hover {

            color: var(--gold);

            opacity: 1;

        }


        .nav-cta {

            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);

            color: var(--midnight);

            padding: 0.75rem 1.5rem;

            border-radius: 50px;

            font-weight: 600;

            font-size: 0.85rem;

            text-decoration: none;

            transition: transform 0.3s, box-shadow 0.3s;

        }


        .nav-cta:hover {

            transform: translateY(-2px);

            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);

        }


        /* Hero Section */

        .hero {

            min-height: 100vh;

            display: flex;

            align-items: center;

            padding: 8rem 5% 4rem;

            position: relative;

            overflow: hidden;

        }


        .hero-bg {

            position: absolute;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background: 

                radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),

                radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 40%);

            pointer-events: none;

        }


        .hero-grid {

            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 4rem;

            max-width: 1400px;

            margin: 0 auto;

            width: 100%;

            position: relative;

            z-index: 1;

        }


        .hero-content h1 {

            font-size: clamp(3rem, 5vw, 4.5rem);

            line-height: 1.1;

            margin-bottom: 1.5rem;

            font-weight: 500;

        }


        .hero-content h1 span {

            color: var(--gold);

            font-style: italic;

        }


        .hero-subtitle {

            font-size: 1.25rem;

            color: rgba(250, 249, 246, 0.7);

            margin-bottom: 2rem;

            max-width: 540px;

            line-height: 1.7;

        }


        .guarantee-badge {

            display: inline-flex;

            align-items: center;

            gap: 0.75rem;

            background: rgba(212, 175, 55, 0.1);

            border: 1px solid rgba(212, 175, 55, 0.3);

            padding: 1rem 1.5rem;

            border-radius: 100px;

            margin-bottom: 2.5rem;

            font-size: 0.9rem;

        }


        .guarantee-badge i {

            color: var(--gold);

        }


        .hero-cta-group {

            display: flex;

            gap: 1rem;

            flex-wrap: wrap;

        }


        .btn-primary {

            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);

            color: var(--midnight);

            padding: 1.25rem 2.5rem;

            border-radius: 50px;

            font-weight: 600;

            font-size: 1rem;

            text-decoration: none;

            display: inline-flex;

            align-items: center;

            gap: 0.5rem;

            transition: all 0.3s;

            border: none;

            cursor: pointer;

        }


        .btn-primary:hover {

            transform: translateY(-3px);

            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);

        }


        .btn-secondary {

            background: transparent;

            color: var(--cream);

            padding: 1.25rem 2.5rem;

            border-radius: 50px;

            font-weight: 500;

            font-size: 1rem;

            text-decoration: none;

            display: inline-flex;

            align-items: center;

            gap: 0.5rem;

            border: 1px solid rgba(250, 249, 246, 0.3);

            transition: all 0.3s;

        }


        .btn-secondary:hover {

            border-color: var(--gold);

            color: var(--gold);

        }


        .hero-visual {

            position: relative;

            display: flex;

            align-items: center;

            justify-content: center;

        }


        .floating-card {

            background: var(--charcoal);

            border: 1px solid rgba(212, 175, 55, 0.2);

            border-radius: 20px;

            padding: 2rem;

            position: absolute;

            backdrop-filter: blur(10px);

            animation: float 6s ease-in-out infinite;

        }


        .floating-card:nth-child(1) {

            top: 10%;

            right: 0;

            animation-delay: 0s;

        }


        .floating-card:nth-child(2) {

            bottom: 20%;

            left: 0;

            animation-delay: 2s;

        }


        .floating-card:nth-child(3) {

            top: 50%;

            right: 10%;

            animation-delay: 4s;

        }


        @keyframes float {

            0%, 100% { transform: translateY(0px); }

            50% { transform: translateY(-20px); }

        }


        .metric {

            font-size: 2.5rem;

            font-weight: 700;

            color: var(--gold);

            display: block;

        }


        .metric-label {

            font-size: 0.85rem;

            color: rgba(250, 249, 246, 0.6);

            text-transform: uppercase;

            letter-spacing: 1px;

        }


        /* Problem Section */

        .section {

            padding: 6rem 5%;

            max-width: 1400px;

            margin: 0 auto;

        }


        .section-header {

            text-align: center;

            max-width: 800px;

            margin: 0 auto 4rem;

        }


        .section-label {

            color: var(--gold);

            text-transform: uppercase;

            letter-spacing: 3px;

            font-size: 0.85rem;

            margin-bottom: 1rem;

            display: block;

        }


        .section-title {

            font-size: clamp(2rem, 4vw, 3rem);

            line-height: 1.2;

            margin-bottom: 1.5rem;

        }


        .problems-grid {

            display: grid;

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

            gap: 2rem;

        }


        .problem-card {

            background: var(--charcoal);

            border: 1px solid var(--gray-dark);

            border-radius: 16px;

            padding: 2.5rem;

            transition: all 0.3s;

        }


        .problem-card:hover {

            border-color: rgba(212, 175, 55, 0.3);

            transform: translateY(-5px);

        }


        .problem-icon {

            width: 60px;

            height: 60px;

            background: rgba(212, 175, 55, 0.1);

            border-radius: 12px;

            display: flex;

            align-items: center;

            justify-content: center;

            margin-bottom: 1.5rem;

            color: var(--gold);

        }


        .problem-card h3 {

            font-size: 1.25rem;

            margin-bottom: 1rem;

            font-weight: 600;

        }


        .problem-card p {

            color: rgba(250, 249, 246, 0.7);

            line-height: 1.7;

        }


        /* Solution Section */

        .solution {

            background: var(--charcoal);

            position: relative;

        }


        .solution::before {

            content: '';

            position: absolute;

            top: 0;

            left: 0;

            right: 0;

            height: 1px;

            background: linear-gradient(90deg, transparent, var(--gold), transparent);

        }


        .solution-grid {

            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 4rem;

            align-items: center;

        }


        .solution-content h2 {

            font-size: clamp(2rem, 3vw, 2.5rem);

            margin-bottom: 1.5rem;

            line-height: 1.3;

        }


        .solution-content > p {

            color: rgba(250, 249, 246, 0.7);

            margin-bottom: 2rem;

            font-size: 1.1rem;

            line-height: 1.8;

        }


        .features-list {

            list-style: none;

            space-y: 1rem;

        }


        .features-list li {

            display: flex;

            align-items: flex-start;

            gap: 1rem;

            margin-bottom: 1.25rem;

            padding: 1rem;

            background: rgba(10, 10, 15, 0.5);

            border-radius: 12px;

            border-left: 3px solid var(--gold);

        }


        .features-list i {

            color: var(--gold);

            flex-shrink: 0;

            margin-top: 0.25rem;

        }


        .features-list strong {

            display: block;

            margin-bottom: 0.25rem;

            color: var(--cream);

        }


        .features-list span {

            font-size: 0.9rem;

            color: rgba(250, 249, 246, 0.6);

        }


        .solution-visual {

            position: relative;

        }


        .system-diagram {

            background: var(--midnight);

            border: 1px solid rgba(212, 175, 55, 0.2);

            border-radius: 24px;

            padding: 3rem 2rem;

            position: relative;

        }


        .diagram-node {

            background: var(--charcoal);

            border: 1px solid rgba(212, 175, 55, 0.3);

            border-radius: 12px;

            padding: 1.5rem;

            margin-bottom: 1rem;

            display: flex;

            align-items: center;

            gap: 1rem;

            position: relative;

        }


        .diagram-node::after {

            content: '';

            position: absolute;

            bottom: -1rem;

            left: 50%;

            transform: translateX(-50%);

            width: 2px;

            height: 1rem;

            background: var(--gold);

        }


        .diagram-node:last-child::after {

            display: none;

        }


        .node-icon {

            width: 40px;

            height: 40px;

            background: rgba(212, 175, 55, 0.1);

            border-radius: 8px;

            display: flex;

            align-items: center;

            justify-content: center;

            color: var(--gold);

        }


        .node-content h4 {

            font-size: 0.9rem;

            margin-bottom: 0.25rem;

        }


        .node-content p {

            font-size: 0.8rem;

            color: rgba(250, 249, 246, 0.5);

        }


        /* How It Works */

        .process {

            background: var(--midnight);

        }


        .process-steps {

            display: grid;

            grid-template-columns: repeat(4, 1fr);

            gap: 2rem;

            position: relative;

        }


        .process-steps::before {

            content: '';

            position: absolute;

            top: 3rem;

            left: 0;

            right: 0;

            height: 2px;

            background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);

            opacity: 0.3;

        }


        .step {

            position: relative;

            padding-top: 5rem;

        }


        .step-number {

            position: absolute;

            top: 0;

            left: 0;

            width: 4rem;

            height: 4rem;

            background: var(--charcoal);

            border: 2px solid var(--gold);

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

            font-family: 'Playfair Display', serif;

            font-size: 1.5rem;

            font-weight: 600;

            color: var(--gold);

            z-index: 1;

        }


        .step h3 {

            font-size: 1.25rem;

            margin-bottom: 1rem;

        }


        .step p {

            color: rgba(250, 249, 246, 0.7);

            font-size: 0.95rem;

            line-height: 1.7;

        }


        /* Guarantee Section */

        .guarantee {

            background: linear-gradient(135deg, var(--charcoal) 0%, var(--midnight) 100%);

            border-top: 1px solid rgba(212, 175, 55, 0.2);

            border-bottom: 1px solid rgba(212, 175, 55, 0.2);

        }


        .guarantee-content {

            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 4rem;

            align-items: center;

        }


        .guarantee-badge-large {

            background: rgba(212, 175, 55, 0.05);

            border: 2px solid var(--gold);

            border-radius: 24px;

            padding: 3rem;

            text-align: center;

        }


        .guarantee-badge-large i {

            width: 80px;

            height: 80px;

            color: var(--gold);

            margin-bottom: 1.5rem;

        }


        .guarantee-badge-large h3 {

            font-size: 1.75rem;

            margin-bottom: 1rem;

        }


        .guarantee-badge-large p {

            color: rgba(250, 249, 246, 0.8);

            line-height: 1.7;

        }


        .guarantee-text h2 {

            font-size: clamp(2rem, 3vw, 2.5rem);

            margin-bottom: 1.5rem;

        }


        .guarantee-text > p {

            color: rgba(250, 249, 246, 0.7);

            margin-bottom: 2rem;

            font-size: 1.1rem;

            line-height: 1.8;

        }


        .guarantee-points {

            list-style: none;

        }


        .guarantee-points li {

            display: flex;

            align-items: center;

            gap: 1rem;

            margin-bottom: 1rem;

            font-size: 1.1rem;

        }


        .guarantee-points i {

            color: var(--gold);

        }


        /* Pricing */

        .pricing {

            background: var(--midnight);

        }


        .pricing-grid {

            display: grid;

            grid-template-columns: 1fr 1.2fr;

            gap: 3rem;

            max-width: 1000px;

            margin: 0 auto;

        }


        .pricing-card {

            background: var(--charcoal);

            border: 1px solid var(--gray-dark);

            border-radius: 24px;

            padding: 3rem;

            position: relative;

            transition: all 0.3s;

        }


        .pricing-card.featured {

            border-color: var(--gold);

            background: linear-gradient(135deg, var(--charcoal) 0%, rgba(212, 175, 55, 0.05) 100%);

            transform: scale(1.05);

        }


        .pricing-card.featured::before {

            content: 'Most Popular';

            position: absolute;

            top: -12px;

            left: 50%;

            transform: translateX(-50%);

            background: var(--gold);

            color: var(--midnight);

            padding: 0.5rem 1.5rem;

            border-radius: 50px;

            font-size: 0.85rem;

            font-weight: 600;

        }


        .pricing-header {

            margin-bottom: 2rem;

        }


        .pricing-header h3 {

            font-size: 1.5rem;

            margin-bottom: 0.5rem;

        }


        .pricing-header p {

            color: rgba(250, 249, 246, 0.6);

            font-size: 0.9rem;

        }


        .price {

            font-size: 3.5rem;

            font-weight: 700;

            color: var(--gold);

            margin-bottom: 0.5rem;

        }


        .price span {

            font-size: 1rem;

            color: rgba(250, 249, 246, 0.5);

            font-weight: 400;

        }


        .price-note {

            color: rgba(250, 249, 246, 0.6);

            font-size: 0.9rem;

            margin-bottom: 2rem;

            padding-bottom: 2rem;

            border-bottom: 1px solid var(--gray-dark);

        }


        .pricing-features {

            list-style: none;

            margin-bottom: 2rem;

        }


        .pricing-features li {

            display: flex;

            align-items: center;

            gap: 0.75rem;

            margin-bottom: 1rem;

            font-size: 0.95rem;

        }


        .pricing-features i {

            color: var(--gold);

            width: 20px;

        }


        .pricing-cta {

            width: 100%;

            text-align: center;

            justify-content: center;

        }


        .compare-note {

            text-align: center;

            margin-top: 3rem;

            color: rgba(250, 249, 246, 0.5);

            font-size: 0.9rem;

        }


        /* FAQ */

        .faq {

            background: var(--charcoal);

        }


        .faq-list {

            max-width: 800px;

            margin: 0 auto;

        }


        .faq-item {

            border-bottom: 1px solid var(--gray-dark);

            padding: 1.5rem 0;

        }


        .faq-question {

            display: flex;

            justify-content: space-between;

            align-items: center;

            cursor: pointer;

            font-size: 1.1rem;

            font-weight: 500;

            transition: color 0.3s;

        }


        .faq-question:hover {

            color: var(--gold);

        }


        .faq-question i {

            transition: transform 0.3s;

        }


        .faq-item.active .faq-question i {

            transform: rotate(180deg);

        }


        .faq-answer {

            max-height: 0;

            overflow: hidden;

            transition: max-height 0.3s, padding 0.3s;

            color: rgba(250, 249, 246, 0.7);

            line-height: 1.7;

        }


        .faq-item.active .faq-answer {

            max-height: 500px;

            padding-top: 1rem;

        }


        /* CTA Section */

        .cta {

            background: var(--midnight);

            text-align: center;

            position: relative;

            overflow: hidden;

        }


        .cta::before {

            content: '';

            position: absolute;

            top: 50%;

            left: 50%;

            transform: translate(-50%, -50%);

            width: 600px;

            height: 600px;

            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);

            pointer-events: none;

        }


        .cta-content {

            position: relative;

            z-index: 1;

            max-width: 700px;

            margin: 0 auto;

        }


        .cta h2 {

            font-size: clamp(2rem, 4vw, 3rem);

            margin-bottom: 1.5rem;

        }


        .cta > p {

            color: rgba(250, 249, 246, 0.7);

            font-size: 1.2rem;

            margin-bottom: 2.5rem;

        }


        .cta-features {

            display: flex;

            justify-content: center;

            gap: 2rem;

            margin-bottom: 2.5rem;

            flex-wrap: wrap;

        }


        .cta-feature {

            display: flex;

            align-items: center;

            gap: 0.5rem;

            color: rgba(250, 249, 246, 0.8);

            font-size: 0.95rem;

        }


        .cta-feature i {

            color: var(--gold);

        }


        /* Footer */

        footer {

            background: var(--charcoal);

            border-top: 1px solid var(--gray-dark);

            padding: 3rem 5%;

            text-align: center;

        }


        .footer-logo {

            font-family: 'Playfair Display', serif;

            font-size: 1.5rem;

            color: var(--gold);

            margin-bottom: 1rem;

        }


        .footer-text {

            color: rgba(250, 249, 246, 0.5);

            font-size: 0.9rem;

        }


        /* Responsive */

        @media (max-width: 1024px) {

            .hero-grid,

            .solution-grid,

            .guarantee-content,

            .pricing-grid {

                grid-template-columns: 1fr;

            }


            .process-steps {

                grid-template-columns: repeat(2, 1fr);

            }


            .process-steps::before {

                display: none;

            }


            .pricing-card.featured {

                transform: none;

            }

        }


        @media (max-width: 768px) {

            .nav-links {

                display: none;

            }


            .hero {

                padding-top: 6rem;

            }


            .floating-card {

                display: none;

            }


            .process-steps {

                grid-template-columns: 1fr;

            }


            .step {

                padding-top: 0;

                padding-left: 5rem;

            }


            .step-number {

                left: 0;

            }

        }


        /* Animations */

        @keyframes fadeInUp {

            from {

                opacity: 0;

                transform: translateY(30px);

            }

            to {

                opacity: 1;

                transform: translateY(0);

            }

        }


        .animate-in {

            animation: fadeInUp 0.8s ease-out forwards;

        }

    </style>

<base target="_blank">

</head>

<body>

    <nav>

        <div class="logo">ICONIC</div>

        <ul class="nav-links">

            <li><a href="#problem">Problem</a></li>

            <li><a href="#solution">Solution</a></li>

            <li><a href="#process">Process</a></li>

            <li><a href="#case-studies">Results</a></li>

            <li><a href="#guarantee">Guarantee</a></li>

        </ul>

        <a href="#cta" class="nav-cta">Book a Call</a>

    </nav>


    <section class="hero">

        <div class="hero-bg"></div>

        <div class="hero-grid">

            <div class="hero-content">

                <div class="guarantee-badge">

                    <i data-lucide="shield-check"></i>

                    <span>90-Day ROI Guarantee - We work until you hit your numbers</span>

                </div>

                <h1 class="serif">

                    The <span>Iconic</span> Acquisition System

                </h1>

                <p class="hero-subtitle">

                    An AI-powered outbound infrastructure that books 20-60 qualified appointments monthly - 

                    guaranteed. You own the system. We build it. You keep it.

                </p>

                <div class="hero-cta-group">

                    <a href="#cta" class="btn-primary">

                        Book Your Strategy Call

                        <i data-lucide="arrow-right"></i>

                    </a>

                    <a href="#solution" class="btn-secondary">

                        See How It Works

                    </a>

                </div>

            </div>

            <div class="hero-visual">

                <div class="floating-card">

                    <span class="metric">60+</span>

                    <span class="metric-label">Appointments/Month</span>

                </div>

                <div class="floating-card">

                    <span class="metric">3x</span>

                    <span class="metric-label">Average ROI</span>

                </div>

                <div class="floating-card">

                    <span class="metric">90</span>

                    <span class="metric-label">Days to Results</span>

                </div>

            </div>

        </div>

    </section>


    <section class="section" id="problem">

        <div class="section-header">

            <span class="section-label">The Reality</span>

            <h2 class="section-title serif">Why Most Outbound Fails</h2>

            <p style="color: rgba(250, 249, 246, 0.7);">

                You've tried cold email. You've hired SDRs. You've paid agencies monthly retainers. 

                Yet your calendar remains empty and your pipeline unpredictable.

            </p>

        </div>

        <div class="problems-grid">

            <div class="problem-card">

                <div class="problem-icon">

                    <i data-lucide="users"></i>

                </div>

                <h3>The "Employee Trap"</h3>

                <p>Monthly retainers feel like hiring another employee who may or may not perform. You're locked into $36K-$60K/year commitments with no guarantee of results.</p>

            </div>

            <div class="problem-card">

                <div class="problem-icon">

                    <i data-lucide="tool"></i>

                </div>

                <h3>Feature Selling</h3>

                <p>Agencies sell you tools, inboxes, and "activities." They brag about emails sent, open rates, and vanity metrics that don't pay your bills. You don't need more software. You need conversations with qualified buyers ready to purchase.</p>

            </div>

            <div class="problem-card">

                <div class="problem-icon">

                    <i data-lucide="lock"></i>

                </div>

                <h3>Hostage to the Agency</h3>

                <p>Stop renting your growth. When you stop paying, everything stops working. You deserve to own the infrastructure that generates your revenue.</p>

            </div>

        </div>

    </section>


    <section class="section solution" id="solution">

        <div class="solution-grid">

            <div class="solution-content">

                <span class="section-label">The Solution</span>

                <h2 class="serif">Own Your Growth Infrastructure</h2>

                <p>

                    The Iconic Acquisition System isn't another monthly service. It's a proprietary AI-powered 

                    outbound engine that we build, optimize, and transfer to you. Book 20-60 qualified appointments 

                    monthly - then choose to run it yourself or have us manage it.

                </p>

                <ul class="features-list">

                    <li>

                        <i data-lucide="check-circle-2"></i>

                        <div>

                            <strong>AI-Powered Infrastructure</strong>

                            <span>Proprietary cold email system with 36,000+ inbox capacity and 98% deliverability</span>

                        </div>

                    </li>

                    <li>

                        <i data-lucide="check-circle-2"></i>

                        <div>

                            <strong>Done-For-You Optimization</strong>

                            <span>Offer audit, sales scripts, pre/post-call sequences, and conversion assets built with AI</span>

                        </div>

                    </li>

                    <li>

                        <i data-lucide="check-circle-2"></i>

                        <div>

                            <strong>Human SDR Layer</strong>

                            <span>Professional appointment setters managing responses and booking qualified meetings</span>

                        </div>

                    </li>

                    <li>

                        <i data-lucide="check-circle-2"></i>

                        <div>

                            <strong>Full Ownership Transfer</strong>

                            <span>After 90 days, the entire system - lists, scripts, infrastructure - is yours to keep</span>

                        </div>

                    </li>

                </ul>

            </div>

            <div class="solution-visual">

                <div class="system-diagram">

                    <div class="diagram-node">

                        <div class="node-icon"><i data-lucide="target"></i></div>

                        <div class="node-content">

                            <h4>ICP Research & List Building</h4>

                            <p>300K+ revenue, $5K+ LTV targets</p>

                        </div>

                    </div>

                    <div class="diagram-node">

                        <div class="node-icon"><i data-lucide="mail"></i></div>

                        <div class="node-content">

                            <h4>AI Email Infrastructure</h4>

                            <p>25K-30K contacts, 60K-90K emails/month</p>

                        </div>

                    </div>

                    <div class="diagram-node">

                        <div class="node-icon"><i data-lucide="user-check"></i></div>

                        <div class="node-content">

                            <h4>SDR Response Management</h4>

                            <p>Instant reply handling & cold calling</p>

                        </div>

                    </div>

                    <div class="diagram-node">

                        <div class="node-icon"><i data-lucide="calendar-check"></i></div>

                        <div class="node-content">

                            <h4>Qualified Appointments</h4>

                            <p>20-60 booked meetings monthly</p>

                        </div>

                    </div>

                </div>

            </div>

        </div>

    </section>


    <section class="section process" id="process">

        <div class="section-header">

            <span class="section-label">How It Works</span>

            <h2 class="section-title serif">From Zero to Booked Calendar in 90 Days</h2>

        </div>

        <div class="process-steps">

            <div class="step">

                <div class="step-number">1</div>

                <h3>Discovery & Offer Audit</h3>

                <p>We analyze your offer, ICP, and current sales process. Then rebuild your positioning using our AI tools for maximum conversion.</p>

            </div>

            <div class="step">

                <div class="step-number">2</div>

                <h3>Infrastructure Build</h3>

                <p>We construct your Iconic Engine: domain warming, inbox infrastructure, lead lists, and automated sequences tailored to your market.</p>

            </div>

            <div class="step">

                <div class="step-number">3</div>

                <h3>Launch & Optimize</h3>

                <p>Your dedicated SDR team manages responses, books meetings, and refines messaging based on real market feedback and data.</p>

            </div>

            <div class="step">

                <div class="step-number">4</div>

                <h3>Ownership Transfer</h3>

                <p>At day 90, we transfer the entire system to you. Keep running it solo, hire internally, or continue with our managed service.</p>

            </div>

        </div>

    </section>


    <section class="section guarantee" id="guarantee">

        <div class="guarantee-content">

            <div class="guarantee-badge-large">

                <i data-lucide="shield-check"></i>

                <h3 class="serif">The Iconic Guarantee</h3>

                <p>If we don't double your investment from closed revenue with the agreed-upon results within 90 days, we'll continue working for free until we do. You either get results or we work for free.</p>

            </div>

            <div class="guarantee-text">

                <span class="section-label">Risk Reversal</span>

                <h2 class="serif">We Put Skin in the Game</h2>

                <p>

                    Most agencies charge monthly retainers regardless of performance. We don't. 

                    Our fee is tied to results. If we don't double your investment from closed revenue 

                    with the agreed-upon results within 90 days, we'll continue working for free until we do. 

                    You either get results or we work for free.

                </p>

                <ul class="guarantee-points">

                    <li><i data-lucide="check"></i> Double your investment guarantee</li>

                    <li><i data-lucide="check"></i> Work-for-free until ROI clause</li>

                    <li><i data-lucide="check"></i> Full system ownership at completion</li>

                    <li><i data-lucide="check"></i> No long-term contracts required</li>

                </ul>

            </div>

        </div>

    </section>


    <section class="section" id="case-studies">

        <div class="section-header">

            <span class="section-label">Proven Results</span>

            <h2 class="section-title serif">Client Success Stories</h2>

            <p style="color: rgba(250, 249, 246, 0.7);">

                Real results from real clients. No vanity metrics - just revenue-producing appointments and closed deals.

            </p>

        </div>

        <div class="case-studies-grid">


            <div class="case-study-card">

                <div class="case-study-header">

                    <h3>Fiscomm</h3>

                    <span class="case-study-result">150+ Meetings in 6 Weeks, 66% Close Rate</span>

                </div>

                <p>Cold email system generated 150+ qualified meetings in just 6 weeks for this fintech SaaS serving small ecommerce businesses. With a 66% close rate, Fiscomm rapidly scaled their customer base.</p>

            </div>


            <div class="case-study-card">

                <div class="case-study-header">

                    <h3>MeetGeek.ai</h3>

                    <span class="case-study-result">90+ Interested Leads, 40% Closed, $500k Seed Round</span>

                </div>

                <p>Ran 3 simultaneous campaigns for this AI note-taking platform targeting mid-market and enterprise. Generated 90+ interested leads with a 40% close rate, directly contributing to their $500k seed raise.</p>

            </div>




            <div class="case-study-card">

                <div class="case-study-header">

                    <h3>Miros.ai</h3>

                    <span class="case-study-result">7-Figure Pipeline for Enterprise Retail</span>

                </div>

                <p>Built a complete cold outreach engine for this ecommerce AI search platform targeting enterprise retail brands. Our multi-channel approach drove a 7-figure pipeline.</p>

            </div>




            <div class="case-study-card">

                <div class="case-study-header">

                    <h3>Joinbrands</h3>

                    <span class="case-study-result">90+ Leads in Less Than 90 Days</span>

                </div>

                <p>Built and executed a comprehensive cold outreach strategy that generated 90+ qualified leads in under 90 days, filling their pipeline with enterprise prospects.</p>

            </div>


            <div class="case-study-card">

                <div class="case-study-header">

                    <h3>Handoff</h3>

                    <span class="case-study-result">130+ Opportunities in 90 Days (Including 80 for Live Event)</span>

                </div>

                <p>Built a complete outbound system for this LATAM talent recruitment agency serving US moving and relocation companies. Generated 50 qualified meetings in 3 months, then delivered 80 opportunities in just 2 weeks for an in-person event. Consistent 2-3 meetings per week ongoing.</p>

            </div>

            </div>

        </div>


        <div class="testimonials-section">

            <div class="section-header" style="margin-top: 4rem;">

                <span class="section-label">What Clients Say</span>

                <h2 class="section-title serif">Trusted by Founders</h2>

            </div>

            <div class="testimonials-grid">

                <div class="testimonial-card">

                    <div class="testimonial-stars">

                        <i data-lucide="star"></i><i data-lucide="star"></i><i data-lucide="star"></i><i data-lucide="star"></i><i data-lucide="star"></i>

                    </div>

                    <p>"We knew we had to move quickly. We had the right product and a compelling offer, but we needed help to put that offer in front of the right people. Stefan and his team were able to generate over 100 meetings for us in less than 2 months."</p>

                    <div class="testimonial-author">

                        <strong>Rastko Damnjanovic</strong>

                        <span>CEO at Fiscomm</span>

                    </div>

                </div>


                <div class="testimonial-card">

                    <div class="testimonial-stars">

                        <i data-lucide="star"></i><i data-lucide="star"></i><i data-lucide="star"></i><i data-lucide="star"></i><i data-lucide="star"></i>

                    </div>

                    <p>"Stefan and his team were able to quickly start generating meetings with ecommerce agencies for us. Stefan helped us perfect our pitch, nail down our ICP, value proposition and build out the infrastructure for the Agency Partnership program."</p>

                    <div class="testimonial-author">

                        <strong>Niki Mezei</strong>

                        <span>Founder, OptiMonk</span>

                    </div>

                </div>


                <div class="testimonial-card">

                    <div class="testimonial-stars">

                        <i data-lucide="star"></i><i data-lucide="star"></i><i data-lucide="star"></i><i data-lucide="star"></i><i data-lucide="star"></i>

                    </div>

                    <p>"We needed to quickly validate our product in front of several buyers, as we were raising our Seed round. The team took a very detailed approach to generating outbound meetings with a combination of personalized outreach at scale and creative outreach using video and images. We ended up having 50 meetings in the span of 2 months."</p>

                    <div class="testimonial-author">

                        <strong>Dan Huru</strong>

                        <span>CEO at MeetGeek</span>

                    </div>

                </div>

            </div>

        </div>

    </section>


    <style>

        .case-studies-grid {

            display: grid;

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

            gap: 2rem;

            max-width: 1200px;

            margin: 0 auto;

        }


        .case-study-card {

            background: var(--charcoal);

            border: 1px solid var(--gray-dark);

            border-radius: 16px;

            padding: 2rem;

            transition: all 0.3s;

        }


        .case-study-card:hover {

            border-color: rgba(212, 175, 55, 0.3);

            transform: translateY(-5px);

        }


        .case-study-header {

            margin-bottom: 1rem;

        }


        .case-study-header h3 {

            color: var(--gold);

            font-size: 1.25rem;

            margin-bottom: 0.5rem;

        }


        .case-study-result {

            display: block;

            font-weight: 600;

            font-size: 1.1rem;

            color: var(--cream);

            margin-bottom: 1rem;

        }


        .case-study-card p {

            color: rgba(250, 249, 246, 0.7);

            line-height: 1.7;

            font-size: 0.95rem;

        }


        .testimonials-grid {

            display: grid;

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

            gap: 2rem;

            max-width: 1200px;

            margin: 0 auto;

        }


        .testimonial-card {

            background: var(--charcoal);

            border: 1px solid rgba(212, 175, 55, 0.2);

            border-radius: 16px;

            padding: 2rem;

            position: relative;

        }


        .testimonial-stars {

            display: flex;

            gap: 0.25rem;

            margin-bottom: 1rem;

            color: var(--gold);

        }


        .testimonial-card > p {

            color: rgba(250, 249, 246, 0.9);

            line-height: 1.8;

            font-style: italic;

            margin-bottom: 1.5rem;

        }


        .testimonial-author strong {

            display: block;

            color: var(--cream);

            margin-bottom: 0.25rem;

        }


        .testimonial-author span {

            color: rgba(250, 249, 246, 0.6);

            font-size: 0.9rem;

        }

    </style>



    <section class="section faq" id="faq">

        <div class="section-header">

            <span class="section-label">FAQ</span>

            <h2 class="section-title serif">Common Questions</h2>

        </div>

        <div class="faq-list">

            <div class="faq-item">

                <div class="faq-question">

                    <span>What happens after the 90 days?</span>

                    <i data-lucide="chevron-down"></i>

                </div>

                <div class="faq-answer">

                    You own everything - the infrastructure, the lists, the scripts, the sequences. 

                    You can run it yourself, hire internally, or continue with our optional managed service 

                    at a reduced rate. Most clients choose to continue with us because the system works, 

                    but the choice is entirely yours.

                </div>

            </div>

            <div class="faq-item">

                <div class="faq-question">

                    <span>Do you work with any industry?</span>

                    <i data-lucide="chevron-down"></i>

                </div>

                <div class="faq-answer">

                    We specialize in B2B high-ticket service businesses: agencies, consultancies, 

                    SaaS companies, professional services, and capital-raising firms. Ideal clients 

                    have a $5,000+ lifetime value and $300K+ annual revenue. We don't work with 

                    e-commerce, local businesses, or low-ticket offers.

                </div>

            </div>

            <div class="faq-item">

                <div class="faq-question">

                    <span>How is this different from other cold email agencies?</span>

                    <i data-lucide="chevron-down"></i>

                </div>

                <div class="faq-answer">

                    Three key differences: (1) You own the infrastructure, not rent it. (2) We guarantee 

                    results or work for free. (3) We optimize your entire sales process, not just send emails. 

                    Most agencies charge monthly retainers forever. We build you an asset you control.

                </div>

            </div>

            <div class="faq-item">

                <div class="faq-question">

                    <span>What if I don't have a sales team to handle the appointments?</span>

                    <i data-lucide="chevron-down"></i>

                </div>

                <div class="faq-answer">

                    We include sales process optimization as part of the build. We'll help you create 

                    scripts, presentation decks, and follow-up sequences. If you need ongoing sales support, 

                    we can discuss our Closer Partnership program after the initial 90 days.

                </div>

            </div>

            <div class="faq-item">

                <div class="faq-question">

                    <span>Is there a payment plan available?</span>

                    <i data-lucide="chevron-down"></i>

                </div>

                <div class="faq-answer">

                    Yes. While we prefer full payment upfront (which includes a discount), we offer 

                    structured payment plans: 50% to start, 25% at day 30, 25% at day 60. We also 

                    work with third-party financing partners for qualified businesses.

                </div>

            </div>

        </div>

    </section>


    <section class="section cta" id="cta">

        <div class="cta-content">

            <span class="section-label">Limited Availability</span>

            <h2 class="serif">Ready for Predictable Revenue?</h2>

            <p>

                We only accept 5 new clients per month to ensure quality delivery and results. 

                Book your strategy call to see if we're a fit for your business.

            </p>

            <div class="cta-features">

                <div class="cta-feature">

                    <i data-lucide="check-circle"></i>

                    <span>Free 30-min strategy session</span>

                </div>

                <div class="cta-feature">

                    <i data-lucide="check-circle"></i>

                    <span>Custom ICP analysis included</span>

                </div>

                <div class="cta-feature">

                    <i data-lucide="check-circle"></i>

                    <span>No obligation proposal</span>

                </div>

            </div>

            <a href="#" class="btn-primary" style="font-size: 1.1rem; padding: 1.5rem 3rem;">

                Book Your Strategy Call

                <i data-lucide="arrow-right"></i>

            </a>

            <p style="margin-top: 2rem; color: rgba(250, 249, 246, 0.5); font-size: 0.9rem;">

                Next available start date: April 2026

            </p>

        </div>

    </section>


    <footer>

        <div class="footer-logo">ICONIC</div>

        <p class="footer-text">

            AI-Powered B2B Acquisition Systems<br>

            Built for founders who want to own their growth.

        </p>

    </footer>


    <script>

        // Initialize Lucide icons

        lucide.createIcons();


        // FAQ Accordion

        document.querySelectorAll('.faq-question').forEach(question => {

            question.addEventListener('click', () => {

                const item = question.parentElement;

                const isActive = item.classList.contains('active');


                // Close all

                document.querySelectorAll('.faq-item').forEach(faq => {

                    faq.classList.remove('active');

                });


                // Open clicked if wasn't active

                if (!isActive) {

                    item.classList.add('active');

                }

            });

        });


        // Smooth scroll

        document.querySelectorAll('a[href^="#"]').forEach(anchor => {

            anchor.addEventListener('click', function (e) {

                e.preventDefault();

                const target = document.querySelector(this.getAttribute('href'));

                if (target) {

                    target.scrollIntoView({

                        behavior: 'smooth',

                        block: 'start'

                    });

                }

            });

        });


        // Scroll animations

        const observerOptions = {

            threshold: 0.1,

            rootMargin: '0px 0px -50px 0px'

        };


        const observer = new IntersectionObserver((entries) => {

            entries.forEach(entry => {

                if (entry.isIntersecting) {

                    entry.target.classList.add('animate-in');

                }

            });

        }, observerOptions);


        document.querySelectorAll('.problem-card, .step, .pricing-card').forEach(el => {

            observer.observe(el);

        });

    </script>

</body>

</html>