<?php
$page_title = 'Our Partners';
$meta_description = 'CVN Managed Services works with industry-leading technology partners including Microsoft, BitDefender, Cloudflare, Zoho, Proxmox, Yeastar, Ubiquiti and more.';
require_once __DIR__ . '/../config.php';
require_once __DIR__ . '/../includes/header.php';

$partners = [
    [
        'icon' => '🪟',
        'name' => 'Microsoft',
        'desc' => 'Microsoft 365, Azure, Windows Server, and business productivity solutions.',
        'color' => '#00a4ef',
    ],
    [
        'icon' => '🛡️',
        'name' => 'BitDefender & Huntress',
        'desc' => 'Next-generation endpoint detection and response (EDR) platform.',
        'color' => '#e1001a',
    ],
    [
        'icon' => '🌐',
        'name' => 'Cloudflare',
        'desc' => 'DNS, CDN, and security services for web properties.',
        'color' => '#f6821f',
    ],
    [
        'icon' => '🐙',
        'name' => 'Zoho',
        'desc' => 'Business applications, CRM, Email Systems, ERP.',
        'color' => '#e42527',
    ],
    [
        'icon' => '🔐',
        'name' => 'VaultWarden',
        'desc' => 'Open-source enterprise password management platform.',
        'color' => '#175ddc',
    ],
    [
        'icon' => '📧',
        'name' => 'SMTP2GO',
        'desc' => 'Reliable email delivery infrastructure for business communications.',
        'color' => '#2d8cff',
    ],
    [
        'icon' => '☁️',
        'name' => 'Comet Backup',
        'desc' => 'Cloud backup and storage solutions for business continuity.',
        'color' => '#4a90d9',
    ],
    [
        'icon' => '💾',
        'name' => 'UGreen NAS',
        'desc' => 'Local backups and storage solutions.',
        'color' => '#00a550',
    ],
    [
        'icon' => '⚙️',
        'name' => 'Proxmox',
        'desc' => 'Open-source enterprise hypervisor for virtual machine management & hosting.',
        'color' => '#e57000',
    ],
    [
        'icon' => '📞',
        'name' => 'Yeastar',
        'desc' => 'VOIP Phone PBX software with enterprise AI integration.',
        'color' => '#0090d9',
    ],
    [
        'icon' => '🖨️',
        'name' => 'Ricoh',
        'desc' => 'Enterprise grade printer systems.',
        'color' => '#004b9e',
    ],
    [
        'icon' => '📡',
        'name' => 'Ubiquiti',
        'desc' => 'Enterprise networking and security hardware.',
        'color' => '#0559c9',
    ],
];
?>

<section class="page-hero">
  <div class="container">
    <div class="section-label">Partnerships</div>
    <h1>Our Partners</h1>
    <p>We work with industry-leading technology vendors to deliver the best possible solutions for your business.</p>
  </div>
</section>

<section class="content-section">
  <div class="container text-center">
    <div class="section-label">Technology Partners</div>
    <h2 class="section-title">Trusted Vendor Relationships</h2>
    <p class="section-subtitle">Our carefully selected partner ecosystem allows us to deliver enterprise-grade solutions at prices that make sense for small and medium businesses.</p>

    <div class="partners-grid" style="margin-top:48px;grid-template-columns:repeat(4,1fr);">
      <?php foreach ($partners as $p): ?>
      <div class="partner-card" style="border-top:3px solid <?= $p['color'] ?>;">
        <div class="partner-icon" style="font-size:2.8rem;margin-bottom:14px;"><?= $p['icon'] ?></div>
        <h4 style="font-family:'Sora',sans-serif;font-size:0.95rem;font-weight:700;color:var(--text-primary);margin-bottom:8px;">
          <?= htmlspecialchars($p['name']) ?>
        </h4>
        <p style="font-size:0.82rem;color:var(--text-muted);line-height:1.55;margin:0;">
          <?= htmlspecialchars($p['desc']) ?>
        </p>
      </div>
      <?php endforeach; ?>
    </div>
  </div>
</section>

<section class="content-section alt">
  <div class="container text-center">
    <div class="section-label">Become a Partner</div>
    <h2 class="section-title">Interested in Partnering With Us?</h2>
    <p class="section-subtitle">We're always looking to expand our partner ecosystem with vendors who share our commitment to quality and value. Get in touch to discuss partnership opportunities.</p>
    <div class="mt-4">
      <a href="/pages/contact" class="btn btn-primary btn-lg">Contact Us</a>
    </div>
  </div>
</section>

<?php require_once __DIR__ . '/../includes/footer.php'; ?>
