<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HTSAL Fiber Optics — High-Performance Fiber & Cable Installation</title>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--blue: #0071E3;
--blue-d: #0077ed;
--green: #34C759;
--text: #1d1d1f;
--sub: #6e6e73;
--bg: #fff;
--bg-alt: #f5f5f7;
--border: rgba(0,0,0,0.08);
}
html { scroll-behavior: smooth; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text',
'Helvetica Neue', Arial, sans-serif;
background: var(--bg);
color: var(--text);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
}
/* ─── NAV ─────────────────────────────────────────────── */
nav {
position: sticky;
top: 0;
z-index: 1000;
height: 52px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 32px;
background: rgba(255, 255, 255, 0.85);
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px);
border-bottom: 1px solid var(--border);
}
.nav-logo {
font-size: 17px;
font-weight: 700;
color: var(--text);
letter-spacing: -0.4px;
text-decoration: none;
}
.nav-links {
display: flex;
align-items: center;
gap: 28px;
list-style: none;
}
.nav-links a {
font-size: 13px;
font-weight: 400;
color: var(--text);
text-decoration: none;
transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--sub); }
.nav-cta {
font-size: 13px;
font-weight: 500;
color: var(--blue) !important;
}
@media (max-width: 640px) {
nav { padding: 0 20px; }
.nav-links { gap: 18px; }
.nav-links li:not(:last-child):not(:nth-last-child(2)) { display: none; }
}
/* ─── HERO ────────────────────────────────────────────── */
.hero {
padding: 100px 24px 90px;
text-align: center;
background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
display: inline-block;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.14em;
color: var(--blue);
text-transform: uppercase;
margin-bottom: 20px;
}
.hero h1 {
font-size: clamp(44px, 8vw, 80px);
font-weight: 700;
letter-spacing: -3px;
line-height: 1.03;
color: var(--text);
max-width: 820px;
margin: 0 auto 24px;
}
.hero h1 span {
background: linear-gradient(135deg, #0071E3 0%, #34C759 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-sub {
font-size: clamp(17px, 2.4vw, 21px);
color: var(--sub);
max-width: 520px;
margin: 0 auto 40px;
line-height: 1.55;
}
.hero-actions {
display: flex;
align-items: center;
justify-content: center;
gap: 14px;
flex-wrap: wrap;
}
.btn-primary {
display: inline-block;
background: var(--blue);
color: #fff;
text-decoration: none;
border-radius: 980px;
padding: 14px 28px;
font-size: 16px;
font-weight: 500;
letter-spacing: -0.1px;
transition: background 0.18s ease, transform 0.12s ease;
}
.btn-primary:hover { background: var(--blue-d); }
.btn-primary:active { transform: scale(0.97); }
.btn-secondary {
display: inline-flex;
align-items: center;
gap: 5px;
color: var(--blue);
text-decoration: none;
font-size: 16px;
font-weight: 500;
letter-spacing: -0.1px;
transition: opacity 0.15s ease;
}
.btn-secondary:hover { opacity: 0.75; }
.btn-secondary::after { content: "›"; font-size: 20px; line-height: 1; }
/* ─── STATS STRIP ─────────────────────────────────────── */
.stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
border-bottom: 1px solid var(--border);
}
.stat-item {
padding: 44px 24px;
text-align: center;
border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
font-size: clamp(36px, 5vw, 52px);
font-weight: 700;
letter-spacing: -2px;
color: var(--text);
line-height: 1;
margin-bottom: 8px;
}
.stat-num span {
background: linear-gradient(135deg, #0071E3, #34C759);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.stat-label {
font-size: 14px;
color: var(--sub);
font-weight: 400;
}
@media (max-width: 640px) {
.stats { grid-template-columns: 1fr; }
.stat-item { border-right: none; border-bottom: 1px solid var(--border); }
.stat-item:last-child { border-bottom: none; }
}
/* ─── SECTION BASE ────────────────────────────────────── */
section {
padding: 96px 24px;
}
.section-eyebrow {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--blue);
margin-bottom: 14px;
text-align: center;
}
.section-heading {
font-size: clamp(32px, 5vw, 52px);
font-weight: 700;
letter-spacing: -1.8px;
line-height: 1.07;
color: var(--text);
text-align: center;
max-width: 680px;
margin: 0 auto 16px;
}
.section-sub {
font-size: 17px;
color: var(--sub);
text-align: center;
max-width: 520px;
margin: 0 auto 64px;
line-height: 1.55;
}
/* ─── SERVICES ────────────────────────────────────────── */
.services { background: var(--bg-alt); }
.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2px;
background: var(--border);
border: 1px solid var(--border);
border-radius: 20px;
overflow: hidden;
max-width: 1000px;
margin: 0 auto;
}
@media (max-width: 800px) {
.services-grid { grid-template-columns: 1fr; }
}
.service-card {
background: #fff;
padding: 44px 36px;
}
.service-icon {
width: 48px;
height: 48px;
background: linear-gradient(135deg, #0071E3 0%, #34C759 100%);
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 22px;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
font-size: 19px;
font-weight: 600;
letter-spacing: -0.4px;
color: var(--text);
margin-bottom: 10px;
line-height: 1.25;
}
.service-card p {
font-size: 15px;
color: var(--sub);
line-height: 1.6;
}
/* ─── WHY CHOOSE ──────────────────────────────────────── */
.why { background: var(--bg); }
.why-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
max-width: 1000px;
margin: 0 auto;
}
@media (max-width: 800px) {
.why-grid { grid-template-columns: 1fr; gap: 20px; }
}
.why-card {
background: var(--bg-alt);
border-radius: 20px;
padding: 36px 30px;
}
.why-num {
font-size: 13px;
font-weight: 700;
color: var(--blue);
letter-spacing: 0.06em;
margin-bottom: 16px;
}
.why-card h3 {
font-size: 20px;
font-weight: 600;
letter-spacing: -0.4px;
color: var(--text);
margin-bottom: 10px;
}
.why-card p {
font-size: 15px;
color: var(--sub);
line-height: 1.6;
}
/* ─── MISSION BANNER ──────────────────────────────────── */
.mission {
background: var(--text);
padding: 96px 24px;
text-align: center;
}
.mission .section-eyebrow { color: var(--green); }
.mission-quote {
font-size: clamp(22px, 3.5vw, 36px);
font-weight: 600;
letter-spacing: -0.8px;
line-height: 1.25;
color: #fff;
max-width: 740px;
margin: 0 auto 44px;
}
.mission-quote em {
font-style: normal;
color: var(--green);
}
/* ─── AREAS ───────────────────────────────────────────── */
.areas { background: var(--bg-alt); }
.areas-list {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
max-width: 700px;
margin: 0 auto;
}
.area-pill {
background: #fff;
border: 1px solid rgba(0,0,0,0.1);
border-radius: 980px;
padding: 10px 22px;
font-size: 15px;
font-weight: 500;
color: var(--text);
}
/* ─── CTA ─────────────────────────────────────────────── */
.cta-section {
text-align: center;
background: var(--bg);
}
.cta-card {
background: linear-gradient(145deg, #0071E3 0%, #005bb5 100%);
border-radius: 28px;
padding: 72px 40px;
max-width: 760px;
margin: 0 auto;
}
.cta-card .section-eyebrow { color: rgba(255,255,255,0.7); }
.cta-card .section-heading { color: #fff; margin-bottom: 14px; }
.cta-card .section-sub { color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.btn-white {
display: inline-block;
background: #fff;
color: var(--blue);
text-decoration: none;
border-radius: 980px;
padding: 14px 28px;
font-size: 16px;
font-weight: 600;
letter-spacing: -0.1px;
transition: opacity 0.18s ease, transform 0.12s ease;
}
.btn-white:hover { opacity: 0.92; }
.btn-white:active { transform: scale(0.97); }
/* ─── CONTACT ─────────────────────────────────────────── */
.contact { background: var(--bg-alt); }
.contact-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2px;
background: rgba(0,0,0,0.06);
border: 1px solid rgba(0,0,0,0.06);
border-radius: 20px;
overflow: hidden;
max-width: 740px;
margin: 0 auto;
}
@media (max-width: 640px) {
.contact-grid { grid-template-columns: 1fr; }
}
.contact-item {
background: #fff;
padding: 32px 28px;
text-align: center;
}
.contact-icon { font-size: 26px; margin-bottom: 12px; }
.contact-label {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--sub);
margin-bottom: 6px;
}
.contact-value { font-size: 15px; font-weight: 500; color: var(--text); }
.contact-value a { color: var(--blue); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }
/* ─── FOOTER ──────────────────────────────────────────── */
footer {
background: var(--text);
padding: 40px 32px;
}
.footer-inner {
max-width: 960px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
}
.footer-logo { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: -0.3px; }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.15s ease; }
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
@media (max-width: 640px) {
.footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}
</style>
</head>
<body>
<!-- ── NAV ─────────────────────────────────────────────── -->
<nav>
<a href="#" class="nav-logo">HTSAL</a>
<ul class="nav-links">
<li><a href="#services">Services</a></li>
<li><a href="#why">Why Us</a></li>
<li><a href="#areas">Coverage</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="htsal_application.html" class="nav-cta">Apply Now</a></li>
</ul>
</nav>
<!-- ── HERO ────────────────────────────────────────────── -->
<section class="hero">
<span class="hero-eyebrow">Fiber Optics & Cable Installation</span>
<h1>Your connection.<br><span>Our commitment.</span></h1>
<p class="hero-sub">
HTSAL Fiber Optics delivers high-performance fiber optic and cable installation — fast, reliable, and built to last.
</p>
<div class="hero-actions">
<a href="#services" class="btn-primary">Explore Services</a>
<a href="#contact" class="btn-secondary">Get in touch</a>
</div>
</section>
<!-- ── STATS ────────────────────────────────────────────── -->
<div class="stats">
<div class="stat-item">
<div class="stat-num"><span>99.9</span>%</div>
<div class="stat-label">Network uptime guarantee</div>
</div>
<div class="stat-item">
<div class="stat-num"><span>10</span>+</div>
<div class="stat-label">States served across the U.S.</div>
</div>
<div class="stat-item">
<div class="stat-num"><span>24</span>/7</div>
<div class="stat-label">Rapid response support</div>
</div>
</div>
<!-- ── SERVICES ─────────────────────────────────────────── -->
<section class="services" id="services">
<p class="section-eyebrow">What We Do</p>
<h2 class="section-heading">Built for speed.<br>Engineered to last.</h2>
<p class="section-sub">From backbone infrastructure to last-mile connectivity, we handle every layer of your network.</p>
<div class="services-grid">
<div class="service-card">
<div class="service-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="3"/>
<path d="M12 1v4M12 19v4M4.22 4.22l2.83 2.83M16.95 16.95l2.83 2.83M1 12h4M19 12h4M4.22 19.78l2.83-2.83M16.95 7.05l2.83-2.83"/>
</svg>
</div>
<h3>Fiber Optic Splicing & Termination</h3>
<p>Precision splicing services ensuring minimal signal loss and maximum throughput across your entire network.</p>
</div>
<div class="service-card">
<div class="service-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="2" y="3" width="20" height="14" rx="2"/>
<path d="M8 21h8M12 17v4"/>
</svg>
</div>
<h3>Fiber Optic Internet Installation</h3>
<p>High-speed internet setup for homes and businesses — designed for performance today and scalable for tomorrow.</p>
</div>
<div class="service-card">
<div class="service-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="22 12 18 12 15 21 9 3 6 12 2 12"/>
</svg>
</div>
<h3>Network Design & Structured Fiber</h3>
<p>Custom infrastructure planning for commercial buildings and residences — from initial layout to full deployment.</p>
</div>
</div>
</section>
<!-- ── WHY CHOOSE ────────────────────────────────────────── -->
<section class="why" id="why">
<p class="section-eyebrow">Why HTSAL</p>
<h2 class="section-heading">Precision. Reliability. Partnership.</h2>
<p class="section-sub">Three pillars that set us apart from every other provider in the industry.</p>
<div class="why-grid">
<div class="why-card">
<div class="why-num">01</div>
<h3>Precision Engineering</h3>
<p>Architectural solutions from backbone infrastructure to last-mile connectivity, with an uncompromising focus on technical excellence.</p>
</div>
<div class="why-card">
<div class="why-num">02</div>
<h3>Unmatched Reliability</h3>
<p>Top-tier materials and rigorous testing standards at every stage to ensure your network is resilient when it matters most.</p>
</div>
<div class="why-card">
<div class="why-num">03</div>
<h3>Customer-Centric Focus</h3>
<p>Transparent communication, rapid response times, and a partnership-first approach — because your success is our success.</p>
</div>
</div>
</section>
<!-- ── MISSION BANNER ────────────────────────────────────── -->
<section class="mission">
<p class="section-eyebrow">Our Mission</p>
<p class="mission-quote">
"In an industry that never hits the pause button, you need a team that moves as <em>fast as your data.</em>"
</p>
<a href="#contact" class="btn-primary" style="background:#34C759;color:#fff;">Work with us →</a>
</section>
<!-- ── COVERAGE AREAS ────────────────────────────────────── -->
<section class="areas" id="areas">
<p class="section-eyebrow">Coverage</p>
<h2 class="section-heading">Serving communities across the U.S.</h2>
<p class="section-sub" style="margin-bottom:40px;">We operate in major markets across the East Coast, South, and Midwest.</p>
<div class="areas-list">
<span class="area-pill">New York</span>
<span class="area-pill">New Jersey</span>
<span class="area-pill">Pennsylvania</span>
<span class="area-pill">Indiana</span>
<span class="area-pill">Texas — Austin</span>
<span class="area-pill">Texas — San Antonio</span>
<span class="area-pill">Wisconsin</span>
<span class="area-pill">Maine</span>
<span class="area-pill">New Hampshire</span>
<span class="area-pill">+ More</span>
</div>
</section>
<!-- ── TECH APPLY CTA ────────────────────────────────────── -->
<section class="cta-section">
<div class="cta-card">
<p class="section-eyebrow">Career Opportunity</p>
<h2 class="section-heading">Join our network of technicians.</h2>
<p class="section-sub">We're always looking for skilled fiber optic and cable technicians. Apply today and get matched to work in your market.</p>
<a href="htsal_application.html" class="btn-white">Apply as a Technician →</a>
</div>
</section>
<!-- ── CONTACT ───────────────────────────────────────────── -->
<section class="contact" id="contact">
<p class="section-eyebrow">Get in Touch</p>
<h2 class="section-heading">We'd love to hear from you.</h2>
<p class="section-sub" style="margin-bottom:44px;">Reach out to discuss a project, get a quote, or learn more about joining our team.</p>
<div class="contact-grid">
<div class="contact-item">
<div class="contact-icon">✉️</div>
<div class="contact-label">Email</div>
<div class="contact-value"><a href="mailto:info@htsalfiberoptics.com">info@htsalfiberoptics.com</a></div>
</div>
<div class="contact-item">
<div class="contact-icon">📞</div>
<div class="contact-label">Phone</div>
<div class="contact-value"><a href="tel:9294279771">(929) 427-9771</a></div>
</div>
<div class="contact-item">
<div class="contact-icon">📍</div>
<div class="contact-label">Location</div>
<div class="contact-value">New York, NY</div>
</div>
</div>
</section>
<!-- ── FOOTER ────────────────────────────────────────────── -->
<footer>
<div class="footer-inner">
<span class="footer-logo">HTSAL Fiber Optics</span>
<ul class="footer-links">
<li><a href="#services">Services</a></li>
<li><a href="#why">Why Us</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="htsal_application.html">Apply</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
<span class="footer-copy">© 2025–2026 HTSAL Fiber Optics</span>
</div>
</footer>
</body>
</html>