File size: 25,622 Bytes
89db25c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Merchant Processing Pros - Premium Payment Solutions for Telehealth</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#2563eb',
secondary: '#1e40af',
accent: '#3b82f6',
dark: '#1e293b',
light: '#f8fafc'
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
scroll-behavior: smooth;
}
.hero-section {
height: 100vh;
min-height: 600px;
background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1581090763521-0ea28fe02f53?auto=format&fit=crop&w=1500&q=80');
background-size: cover;
background-position: center;
background-attachment: fixed;
}
.feature-card {
transition: all 0.3s ease;
border-radius: 12px;
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.comparison-table th, .comparison-table td {
padding: 1.25rem;
border-bottom: 1px solid #e2e8f0;
}
.comparison-table tr:nth-child(even) {
background-color: #f8fafc;
}
.comparison-table tr:hover {
background-color: #f1f5f9;
}
.testimonial-card {
background: linear-gradient(145deg, #ffffff, #f8fafc);
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.btn-primary {
background: linear-gradient(135deg, #2563eb, #1d4ed8);
transition: all 0.3s ease;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.btn-secondary {
background: white;
color: #2563eb;
border: 2px solid #2563eb;
transition: all 0.3s ease;
}
.btn-secondary:hover {
background: #2563eb;
color: white;
}
.nav-link {
position: relative;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #2563eb;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
</style>
</head>
<body class="bg-gray-50 text-gray-800">
<!-- Navigation -->
<nav class="bg-white shadow-lg fixed top-0 left-0 right-0 z-50">
<div class="max-w-7xl mx-auto px-6 py-4 flex justify-between items-center">
<div class="flex items-center space-x-2">
<div class="w-10 h-10 bg-primary rounded-full flex items-center justify-center text-white font-bold">MPP</div>
<div class="text-2xl font-bold text-primary">Merchant Processing Pros</div>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#hero" class="nav-link text-gray-700 hover:text-primary">Home</a>
<a href="#solutions" class="nav-link text-gray-700 hover:text-primary">Solutions</a>
<a href="#compare" class="nav-link text-gray-700 hover:text-primary">Comparison</a>
<a href="#testimonials" class="nav-link text-gray-700 hover:text-primary">Testimonials</a>
<a href="#contact" class="nav-link text-gray-700 hover:text-primary">Contact</a>
<a href="#contact" class="btn-primary px-6 py-2 rounded-lg font-semibold text-white shadow">
Get Free Quote <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<button class="md:hidden text-gray-700 focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</nav>
<!-- Hero Section -->
<section id="hero" class="hero-section flex items-center justify-center text-center px-4 pt-24">
<div class="max-w-4xl mx-auto">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight mb-6 text-white">
Premium Payment Solutions <br>for <span class="text-primary">Telehealth</span> Providers
</h1>
<p class="text-xl md:text-2xl text-gray-200 mb-8">
Direct partnerships with Visa, Mastercard, and major banks ensure the lowest rates and fastest approvals for your practice.
Our TUA payment plans outperform Klarna and traditional processors in every aspect.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#contact" class="btn-primary px-8 py-4 rounded-lg font-semibold text-white shadow-lg text-lg">
Get Instant Quote <i class="fas fa-bolt ml-2"></i>
</a>
<a href="#compare" class="btn-secondary px-8 py-4 rounded-lg font-semibold shadow-lg text-lg">
Compare Solutions <i class="fas fa-chart-bar ml-2"></i>
</a>
</div>
<div class="mt-8 text-gray-300 flex items-center justify-center">
<i class="fas fa-check-circle text-primary mr-2"></i>
<span>Free consultation with our payment experts</span>
</div>
</div>
</section>
<!-- Trust Badges -->
<section class="bg-white py-8 shadow-sm">
<div class="max-w-7xl mx-auto px-4">
<p class="text-center text-gray-500 mb-6">TRUSTED BY LEADING TELEHEALTH PROVIDERS AND PARTNERED WITH</p>
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/Visa_Inc._logo.svg/2560px-Visa_Inc._logo.svg.png" alt="Visa" class="h-8 opacity-70 hover:opacity-100 transition">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Mastercard-logo.svg/1280px-Mastercard-logo.svg.png" alt="Mastercard" class="h-8 opacity-70 hover:opacity-100 transition">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/72/Stripe_Logo%2C_revised_2016.svg/2560px-Stripe_Logo%2C_revised_2016.svg.png" alt="Stripe" class="h-8 opacity-70 hover:opacity-100 transition">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/American_Express_logo_%282018%29.svg/1200px-American_Express_logo_%282018%29.svg.png" alt="American Express" class="h-8 opacity-70 hover:opacity-100 transition">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/JPMorgan_Chase_logo.svg/1200px-JPMorgan_Chase_logo.svg.png" alt="Chase" class="h-8 opacity-70 hover:opacity-100 transition">
</div>
</div>
</section>
<!-- Solutions Section -->
<section id="solutions" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Tailored Payment Solutions for Telehealth</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
We understand the unique challenges of telehealth providers. Our solutions are built specifically for your industry with direct banking relationships that reduce costs and increase approval rates.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="feature-card bg-white p-8 rounded-xl shadow-md">
<div class="w-14 h-14 bg-blue-50 rounded-full flex items-center justify-center text-primary mb-6">
<i class="fas fa-shield-alt text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">HIPAA-Compliant Processing</h3>
<p class="text-gray-600 mb-4">
Fully compliant payment solutions that meet all healthcare privacy requirements, with end-to-end encryption and secure tokenization.
</p>
<a href="#contact" class="text-primary font-semibold inline-flex items-center">
Learn more <i class="fas fa-chevron-right ml-1 text-sm"></i>
</a>
</div>
<div class="feature-card bg-white p-8 rounded-xl shadow-md">
<div class="w-14 h-14 bg-blue-50 rounded-full flex items-center justify-center text-primary mb-6">
<i class="fas fa-percent text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Lowest Rates Guaranteed</h3>
<p class="text-gray-600 mb-4">
Our direct relationships with card networks and banks mean we pass the savings to you. Average 20-30% lower fees than competitors.
</p>
<a href="#contact" class="text-primary font-semibold inline-flex items-center">
Get your rate <i class="fas fa-chevron-right ml-1 text-sm"></i>
</a>
</div>
<div class="feature-card bg-white p-8 rounded-xl shadow-md">
<div class="w-14 h-14 bg-blue-50 rounded-full flex items-center justify-center text-primary mb-6">
<i class="fas fa-calendar-check text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Flexible Payment Plans</h3>
<p class="text-gray-600 mb-4">
Customizable installment options that work for both one-time visits and recurring therapy sessions. No rigid schedules or hidden fees.
</p>
<a href="#contact" class="text-primary font-semibold inline-flex items-center">
See options <i class="fas fa-chevron-right ml-1 text-sm"></i>
</a>
</div>
<div class="feature-card bg-white p-8 rounded-xl shadow-md">
<div class="w-14 h-14 bg-blue-50 rounded-full flex items-center justify-center text-primary mb-6">
<i class="fas fa-bolt text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Same-Day Approvals</h3>
<p class="text-gray-600 mb-4">
Get your merchant account approved within hours, not days or weeks. Our streamlined underwriting process is designed for healthcare.
</p>
<a href="#contact" class="text-primary font-semibold inline-flex items-center">
Apply now <i class="fas fa-chevron-right ml-1 text-sm"></i>
</a>
</div>
<div class="feature-card bg-white p-8 rounded-xl shadow-md">
<div class="w-14 h-14 bg-blue-50 rounded-full flex items-center justify-center text-primary mb-6">
<i class="fas fa-plug text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Seamless Integration</h3>
<p class="text-gray-600 mb-4">
Easy API connections with all major telehealth platforms. Our developers will handle the technical details for you.
</p>
<a href="#contact" class="text-primary font-semibold inline-flex items-center">
Integration docs <i class="fas fa-chevron-right ml-1 text-sm"></i>
</a>
</div>
<div class="feature-card bg-white p-8 rounded-xl shadow-md">
<div class="w-14 h-14 bg-blue-50 rounded-full flex items-center justify-center text-primary mb-6">
<i class="fas fa-headset text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Dedicated Support</h3>
<p class="text-gray-600 mb-4">
24/7 US-based support with payment experts who understand telehealth. No automated systems or endless transfers.
</p>
<a href="#contact" class="text-primary font-semibold inline-flex items-center">
Contact support <i class="fas fa-chevron-right ml-1 text-sm"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="py-16 bg-primary text-white">
<div class="max-w-7xl mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 text-center">
<div class="p-6">
<div class="text-4xl font-bold mb-2">98%</div>
<div class="text-lg">Approval Rate</div>
<p class="text-blue-100 mt-2 text-sm">Highest in the industry for telehealth providers</p>
</div>
<div class="p-6">
<div class="text-4xl font-bold mb-2">24h</div>
<div class="text-lg">Average Approval Time</div>
<p class="text-blue-100 mt-2 text-sm">Fastest onboarding with our direct bank relationships</p>
</div>
<div class="p-6">
<div class="text-4xl font-bold mb-2">1.8%</div>
<div class="text-lg">Average Processing Fee</div>
<p class="text-blue-100 mt-2 text-sm">Significantly lower than industry standard</p>
</div>
</div>
</div>
</section>
<!-- Comparison Table -->
<section id="compare" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">How We Compare to Klarna & Others</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
See why leading telehealth providers choose our TUA payment solutions over Klarna and traditional processors.
</p>
</div>
<div class="overflow-x-auto shadow-lg rounded-xl">
<table class="comparison-table w-full border-collapse">
<thead class="bg-gray-100">
<tr>
<th class="p-4 font-semibold text-gray-700 text-left">Features</th>
<th class="p-4 font-semibold text-primary text-center">TUA (Our Solution)</th>
<th class="p-4 font-semibold text-gray-700 text-center">Klarna</th>
<th class="p-4 font-semibold text-gray-700 text-center">Traditional Processors</th>
</tr>
</thead>
<tbody>
<tr>
<td class="p-4 font-medium">Direct Bank Relationships</td>
<td class="p-4 text-center text-primary font-semibold"><i class="fas fa-check-circle text-green-500 mr-1"></i> Yes</td>
<td class="p-4 text-center text-gray-600"><i class="fas fa-times-circle text-red-400 mr-1"></i> No</td>
<td class="p-4 text-center text-gray-600"><i class="fas fa-times-circle text-red-400 mr-1"></i> Rarely</td>
</tr>
<tr>
<td class="p-4 font-medium">HIPAA Compliance</td>
<td class="p-4 text-center text-primary font-semibold"><i class="fas fa-check-circle text-green-500 mr-1"></i> Built-in</td>
<td class="p-4 text-center text-gray-600"><i class="fas fa-exclamation-triangle text-yellow-500 mr-1"></i> Partial</td>
<td class="p-4 text-center text-gray-600"><i class="fas fa-exclamation-triangle text-yellow-500 mr-1"></i> Additional Cost</td>
</tr>
<tr>
<td class="p-4 font-medium">Average Processing Fee</td>
<td class="p-4 text-center text-primary font-semibold">1.5% - 2.2%</td>
<td class="p-4 text-center text-gray-600">2.9% + $0.30</td>
<td class="p-4 text-center text-gray-600">2.5% - 3.5%</td>
</tr>
<tr>
<td class="p-4 font-medium">Approval Time</td>
<td class="p-4 text-center text-primary font-semibold">Same Day</td>
<td class="p-4 text-center text-gray-600">2-5 Days</td>
<td class="p-4 text-center text-gray-600">3-7 Days</td>
</tr>
<tr>
<td class="p-4 font-medium">Recurring Billing</td>
<td class="p-4 text-center text-primary font-semibold"><i class="fas fa-check-circle text-green-500 mr-1"></i> Flexible Options</td>
<td class="p-4 text-center text-gray-600"><i class="fas fa-check-circle text-green-500 mr-1"></i> Limited</td>
<td class="p-4 text-center text-gray-600"><i class="fas fa-check-circle text-green-500 mr-1"></i> Available</td>
</tr>
<tr>
<td class="p-4 font-medium">Chargeback Protection</td>
<td class="p-4 text-center text-primary font-semibold"><i class="fas fa-check-circle text-green-500 mr-1"></i> Advanced</td>
<td class="p-4 text-center text-gray-600"><i class="fas fa-check-circle text-green-500 mr-1"></i> Basic</td>
<td class="p-4 text-center text-gray-600"><i class="fas fa-exclamation-triangle text-yellow-500 mr-1"></i> Varies</td>
</tr>
<tr>
<td class="p-4 font-medium">Integration Support</td>
<td class="p-4 text-center text-primary font-semibold"><i class="fas fa-check-circle text-green-500 mr-1"></i> Dedicated Team</td>
<td class="p-4 text-center text-gray-600"><i class="fas fa-check-circle text-green-500 mr-1"></i> Documentation</td>
<td class="p-4 text-center text-gray-600"><i class="fas fa-exclamation-triangle text-yellow-500 mr-1"></i> Additional Cost</td>
</tr>
<tr>
<td class="p-4 font-medium">Monthly Fees</td>
<td class="p-4 text-center text-primary font-semibold"><i class="fas fa-times-circle text-red-400 mr-1"></i> None</td>
<td class="p-4 text-center text-gray-600"><i class="fas fa-check-circle text-green-500 mr-1"></i> $20+</td>
<td class="p-4 text-center text-gray-600"><i class="fas fa-check-circle text-green-500 mr-1"></i> $10-$30</td>
</tr>
</tbody>
</table>
</div>
<div class="mt-12 text-center">
<a href="#contact" class="btn-primary px-8 py-4 rounded-lg font-semibold text-white shadow-lg text-lg inline-flex items-center">
Get Your Custom Quote <i class="fas fa-arrow-right ml-3"></i>
</a>
</div>
</div>
</section>
<!-- Testimonials -->
<section id="testimonials" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">What Our Clients Say</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Telehealth providers across the country trust our payment solutions for their practices.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="testimonial-card p-8">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-700 mb-6">
"Switching to Merchant Processing Pros saved us over $1,200/month in fees. Their direct Visa partnership made all the difference, and the integration with our telehealth platform was seamless."
</p>
<div class="flex items-center">
<div class="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center text-primary mr-4">
<span class="font-bold">JD</span>
</div>
<div>
<h4 class="font-bold">Dr. Jennifer Dawson</h4>
<p class="text-gray-500 text-sm">Telepsychiatry Practice, California</p>
</div>
</div>
</div>
<div class="testimonial-card p-8">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-700 mb-6">
"After being denied by two other processors, Merchant Processing Pros got us approved in 6 hours. Their understanding of telehealth regulations is unmatched in the industry."
</p>
<div class="flex items-center">
<div class="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center text-primary mr-4">
<span class="font-bold">MR</span>
</div>
<div>
<h4 class="font-bold">Michael Roberts</h4>
<p class="text-gray-500 text-sm">Online Therapy Network, Texas</p>
</div>
</div>
</div>
<div class="testimonial-card p-8">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-700 mb-6">
"The flexible payment plans have increased our patient retention by 35%. Our clients love the options, and we love the transparent pricing and reliable deposits."
</p>
<div class="flex items-center">
<div class="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center text-primary mr-4">
<span class="font-bold">SL</span>
</div>
<div>
<h4 class="font-bold">Sarah Lin</h4>
<p class="text-gray-500 text-sm">Nutrition Counseling LLC, New York</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section id="contact" class="py-16 bg-primary text-white">
<div class="max-w-4xl mx-auto px-4 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Upgrade Your Payment Processing?</h2>
<p class="text-xl mb-8 max-w-3xl mx-auto">
Schedule your free consultation with our payment experts today. We'll analyze your current processing and show you exactly how much you could save.
</p>
<div class="bg-white rounded-xl shadow-2xl p-8 max-w-2xl mx-auto">
<h3 class="text-2xl font-bold text-gray-900 mb-6">Get Your Free Quote</h3>
<form class="space-y-4 text-left">
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<label for="name" class="block text-gray-700 font-medium mb-1">Full Name</label>
<input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-primary focus:border-primary">
</div>
<div>
<label for="email" class="block text-gray-700 font-medium mb-1">Email</label>
<input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-primary focus:border-primary">
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<label for="phone" class="block text-gray-700 font-medium mb-1">Phone</label>
<input type="tel" id="phone" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-primary focus:border-primary">
</div>
<div>
<label for="practice" class="block text-gray-700 font-medium mb-1">Practice Type</label>
<select id="practice" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-primary focus:border-primary">
<option>Select your specialty</option>
<option>Psychiatry/Therapy</option>
<option>Primary Care</option>
<option>Specialty Care</option>
<option>Nutrition/Dietetics</option>
<option>Other</option>
</select>
</div>
</div>
<div>
<label for="volume" class="block text-gray-700 font-medium mb-1">Monthly Processing Volume</label>
<select id="volume" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-primary focus:border-primary">
<option>Select your volume</option>
<option>Under $10,000</option>
<option>$10,000 - $50,000</option>
<option>$50,000 - $100,000</option>
<option>Over $100,000</option>
</select>
</div>
<div>
<label for="current" class="block text-gray-700 font-medium mb-1">Current Processor (if any)</label>
<input type="text" id="current" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-primary focus:border-primary">
</div>
<div class="pt-2">
<button type="submit" class="btn-primary w-full py-4 rounded-lg font-semibold text-white shadow-lg text-lg">
Get My Custom Quote <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
<p class="text-gray-500 text-sm text-center">
By submitting this form, you agree to our <a href="#" class="text-primary hover:underline">Privacy Policy</a>. We'll never share your information without your permission.
</p>
</form>
</div>
<div class="mt-12 grid grid-cols-1 md:grid-cols-3 gap-8 text-left max-w-5xl mx-auto">
<div class="flex items-start">
<div class="bg-white bg-opacity-20 rounded-full p-
</html> |