<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Net Vend Solutions | Data Center & Fiber Optic Services</title>
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet" />
<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black: #0a0c0a;
    --dark: #111411;
    --card-bg: #141814;
    --green: #22c55e;
    --green-dim: #16a34a;
    --green-glow: rgba(34,197,94,0.12);
    --green-border: rgba(34,197,94,0.25);
    --text: #e8f0e8;
    --muted: #8a9e8a;
    --border: rgba(255,255,255,0.07);
    --font-head: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 6vw;
    height: 70px;
    background: rgba(10,12,10,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
  }
  .nav-logo span { color: var(--green); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--green); }
  .nav-cta {
    background: var(--green);
    color: #0a0c0a;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: #16a34a; }

  /* ── HERO ── */
  #home {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 6vw 80px;
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(34,197,94,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(34,197,94,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  .hero-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green-glow);
    border: 1px solid var(--green-border);
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    width: fit-content;
  }
  .hero-tag::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
  }
  h1 {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 800px;
    margin-bottom: 1.5rem;
  }
  h1 em { font-style: normal; color: var(--green); }
  .hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 540px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--green);
    color: #0a0c0a;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: #16a34a; transform: translateY(-1px); }
  .btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
  }
  .btn-secondary:hover { border-color: var(--green); color: var(--green); }

  .hero-stats {
    display: flex; gap: 3rem; margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
  }
  .stat-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--green);
    display: block;
    line-height: 1;
    margin-bottom: 0.3rem;
  }
  .stat-label {
    font-size: 0.85rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* ── SECTION SHARED ── */
  section { padding: 100px 6vw; }
  .section-tag {
    font-size: 0.78rem;
    color: var(--green);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.2rem;
  }
  h2 em { font-style: normal; color: var(--green); }
  .section-intro {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 580px;
    margin-bottom: 4rem;
    line-height: 1.8;
  }

  /* ── ABOUT ── */
  #about { background: var(--dark); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .about-visual {
    position: relative;
    height: 380px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .about-icon-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
    padding: 2rem;
  }
  .about-icon-cell {
    aspect-ratio: 1;
    background: rgba(34,197,94,0.05);
    border: 1px solid var(--green-border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
  }
  .about-text p {
    color: var(--muted);
    margin-bottom: 1rem;
    line-height: 1.8;
  }
  .about-badges {
    display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem;
  }
  .badge {
    background: var(--green-glow);
    border: 1px solid var(--green-border);
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    letter-spacing: 0.03em;
  }

  /* ── SERVICES ── */
  #services { background: var(--black); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  .service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.25s, transform 0.2s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }
  .service-card:hover { border-color: var(--green-border); transform: translateY(-3px); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 48px; height: 48px;
    background: var(--green-glow);
    border: 1px solid var(--green-border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  .service-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--text);
  }
  .service-card p {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  .service-link {
    color: var(--green);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap 0.2s;
  }
  .service-link:hover { gap: 10px; }

  /* ── CONTACT ── */
  #contact { background: var(--dark); }
  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
  .contact-info h2 { margin-bottom: 1rem; }
  .contact-info p { color: var(--muted); margin-bottom: 2.5rem; line-height: 1.8; }
  .contact-item {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1.2rem;
  }
  .contact-icon {
    width: 44px; height: 44px;
    background: var(--green-glow);
    border: 1px solid var(--green-border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .contact-item a {
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .contact-item a:hover { color: var(--green); }
  .contact-item span { color: var(--muted); font-size: 0.8rem; display: block; }

  .contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
  }
  .form-group { margin-bottom: 1.2rem; }
  .form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--green); }
  .form-group select { cursor: pointer; }
  .form-group select option { background: #1a1f1a; }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-submit {
    width: 100%;
    background: var(--green);
    color: #0a0c0a;
    border: none;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
  }
  .form-submit:hover { background: var(--green-dim); }

  /* ── FOOTER ── */
  footer {
    background: #080908;
    border-top: 1px solid var(--border);
    padding: 3rem 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-logo {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text);
    text-decoration: none;
  }
  .footer-logo span { color: var(--green); }
  footer p {
    color: var(--muted);
    font-size: 0.85rem;
  }
  .footer-links { display: flex; gap: 1.5rem; }
  .footer-links a {
    color: var(--muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--green); }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    nav { padding: 0 4vw; }
    .nav-links { display: none; }
    #home, section { padding-left: 5vw; padding-right: 5vw; }
    .about-grid, .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { height: 220px; }
    .hero-stats { gap: 2rem; }
    footer { flex-direction: column; align-items: flex-start; }
  }
</style>
</head>
<body>

<!-- NAV -->
<nav>
  <a href="#home" class="nav-logo">Net<span>Vend</span> Solutions</a>
  <ul class="nav-links">
    <li><a href="#home">Home</a></li>
    <li><a href="#about">About</a></li>
    <li><a href="#services">Services</a></li>
    <li><a href="#contact">Contact</a></li>
  </ul>
  <a href="#contact" class="nav-cta">Get a Quote</a>
</nav>

<!-- HERO -->
<section id="home">
  <div class="hero-grid"></div>
  <div class="hero-glow"></div>
  <div class="hero-tag">Serving Texas Statewide</div>
  <h1>Powering Texas with <em>Next-Gen</em> Infrastructure</h1>
  <p class="hero-sub">Net Vend Solutions delivers enterprise-grade data center services, fiber optics, structured cabling, and in-building telecom solutions across the great state of Texas.</p>
  <div class="hero-actions">
    <a href="#services" class="btn-primary">Explore Services</a>
    <a href="#contact" class="btn-secondary">Contact Us</a>
  </div>
  <div class="hero-stats">
    <div>
      <span class="stat-num">100%</span>
      <span class="stat-label">Texas-Based</span>
    </div>
    <div>
      <span class="stat-num">5+</span>
      <span class="stat-label">Core Services</span>
    </div>
    <div>
      <span class="stat-num">24/7</span>
      <span class="stat-label">Support</span>
    </div>
    <div>
      <span class="stat-num">∞</span>
      <span class="stat-label">Scalable Solutions</span>
    </div>
  </div>
</section>

<!-- ABOUT -->
<section id="about">
  <div class="about-grid">
    <div class="about-visual">
      <div class="about-icon-grid">
        <div class="about-icon-cell">🖥️</div>
        <div class="about-icon-cell">🔌</div>
        <div class="about-icon-cell">📡</div>
        <div class="about-icon-cell">🔧</div>
        <div class="about-icon-cell">💡</div>
        <div class="about-icon-cell">🌐</div>
        <div class="about-icon-cell">🔒</div>
        <div class="about-icon-cell">⚡</div>
      </div>
    </div>
    <div class="about-text">
      <div class="section-tag">About Us</div>
      <h2>Built for the <em>Future</em> of Connectivity</h2>
      <p>Net Vend Solutions is a Texas-based technology infrastructure company dedicated to delivering reliable, high-performance data center and telecommunications services to businesses of all sizes.</p>
      <p>From fiber splicing in the field to structured cabling in your facility, our certified technicians bring precision, expertise, and professionalism to every project — on time and on budget.</p>
      <p>We serve clients across Texas, providing scalable infrastructure that grows with your business.</p>
      <div class="about-badges">
        <span class="badge">Certified Technicians</span>
        <span class="badge">Statewide Coverage</span>
        <span class="badge">Enterprise-Grade</span>
        <span class="badge">Reliable & Scalable</span>
      </div>
    </div>
  </div>
</section>

<!-- SERVICES -->
<section id="services">
  <div class="section-tag">What We Do</div>
  <h2>Our <em>Services</em></h2>
  <p class="section-intro">From the data center floor to in-building wiring, we provide end-to-end infrastructure solutions tailored to your needs.</p>
  <div class="services-grid">

    <div class="service-card">
      <div class="service-icon">🖥️</div>
      <h3>Data Center Solutions</h3>
      <p>Complete data center design, deployment, and management services. We handle everything from rack installation to power distribution, ensuring maximum uptime and efficiency for your critical infrastructure.</p>
      <a href="#contact" class="service-link">Learn More →</a>
    </div>

    <div class="service-card">
      <div class="service-icon">🔆</div>
      <h3>Fiber Optics</h3>
      <p>High-speed fiber optic installation and maintenance for commercial and industrial environments. We design and deploy fiber networks that deliver lightning-fast data transmission with minimal signal loss.</p>
      <a href="#contact" class="service-link">Learn More →</a>
    </div>

    <div class="service-card">
      <div class="service-icon">✂️</div>
      <h3>Fiber Splicing</h3>
      <p>Precision fusion and mechanical fiber splicing by certified technicians. We ensure clean, low-loss splices for both single-mode and multi-mode fiber in any environment — indoor or outdoor.</p>
      <a href="#contact" class="service-link">Learn More →</a>
    </div>

    <div class="service-card">
      <div class="service-icon">🔌</div>
      <h3>Structured Cabling</h3>
      <p>Professional structured cabling systems for voice, data, and video. Our clean, organized installations follow industry standards (TIA/EIA) and are built to support your network today and tomorrow.</p>
      <a href="#contact" class="service-link">Learn More →</a>
    </div>

    <div class="service-card">
      <div class="service-icon">📡</div>
      <h3>In-Building Telecom Services</h3>
      <p>Complete in-building telecommunication infrastructure including DAS (Distributed Antenna Systems), cable pathways, telecom rooms, and wireless infrastructure to keep your team connected anywhere inside your facility.</p>
      <a href="#contact" class="service-link">Learn More →</a>
    </div>

    <div class="service-card">
      <div class="service-icon">🛠️</div>
      <h3>Infrastructure Consulting</h3>
      <p>Not sure where to start? Our team provides expert consultation to assess your current infrastructure, identify gaps, and design a roadmap for a robust, future-proof technology environment.</p>
      <a href="#contact" class="service-link">Learn More →</a>
    </div>

  </div>
</section>

<!-- CONTACT -->
<section id="contact">
  <div class="contact-wrapper">
    <div class="contact-info">
      <div class="section-tag">Get In Touch</div>
      <h2>Let's Build <em>Together</em></h2>
      <p>Have a project in mind or need a quote? Reach out to our team. We serve businesses all across Texas and are ready to help.</p>

      <div class="contact-item">
        <div class="contact-icon">📞</div>
        <div>
          <span>Phone</span>
          <a href="tel:6823401297">(682) 340-1297</a>
        </div>
      </div>
      <div class="contact-item">
        <div class="contact-icon">✉️</div>
        <div>
          <span>Email</span>
          <a href="mailto:info@netvendsolutions.com">info@netvendsolutions.com</a>
        </div>
      </div>
      <div class="contact-item">
        <div class="contact-icon">📍</div>
        <div>
          <span>Location</span>
          <a href="#">Texas, Statewide</a>
        </div>
      </div>
    </div>

    <div class="contact-form">
      <div class="form-group">
        <label>Full Name</label>
        <input type="text" placeholder="John Smith" />
      </div>
      <div class="form-group">
        <label>Email Address</label>
        <input type="email" placeholder="john@company.com" />
      </div>
      <div class="form-group">
        <label>Phone Number</label>
        <input type="tel" placeholder="(555) 000-0000" />
      </div>
      <div class="form-group">
        <label>Service Needed</label>
        <select>
          <option value="">Select a service...</option>
          <option>Data Center Solutions</option>
          <option>Fiber Optics</option>
          <option>Fiber Splicing</option>
          <option>Structured Cabling</option>
          <option>In-Building Telecom Services</option>
          <option>Infrastructure Consulting</option>
          <option>Other</option>
        </select>
      </div>
      <div class="form-group">
        <label>Message</label>
        <textarea placeholder="Tell us about your project..."></textarea>
      </div>
      <button class="form-submit">Send Message</button>
    </div>
  </div>
</section>

<!-- FOOTER -->
<footer>
  <a href="#home" class="footer-logo">Net<span>Vend</span> Solutions</a>
  <p>© 2025 Net Vend Solutions. All rights reserved.</p>
  <div class="footer-links">
    <a href="#home">Home</a>
    <a href="#about">About</a>
    <a href="#services">Services</a>
    <a href="#contact">Contact</a>
  </div>
</footer>

</body>
</html>