<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GHL Projects — White-label GHL solutions for agencies</title>
<meta name="description" content="We build the GHL stack agencies sell. Websites, funnels, automations, AI agents, snapshots — delivered in 3-5 days. Trusted by 75+ agencies.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300..800&family=Manrope:wght@300..800&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<style>
:root {
  --bg: #0D1A63;
  --bg-elev: #0F1F75;
  --bg-card: #112387;
  --border: #1E293B;
  --border-strong: #334155;
  --text: #F8FAFC;
  --text-mute: #94A3B8;
  --text-dim: #64748B;
  --indigo: #4F46E5;
  --indigo-light: #818CF8;
  --indigo-glow: #A5B4FC;
  --lime: #A3E635;
  --cyan: #06B6D4;
  --cyan-light: #67E8F9;
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body: 'Manrope', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-weight: 400;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  user-drag: none;
  -webkit-user-drag: none;
}

/* Subtle grid background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 70, 229, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 70, 229, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at top, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at top, black 30%, transparent 80%);
}

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }


/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 14, 26, 0.7);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; max-width: 1280px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 32px; height: 32px; }
.logo-text {
  font-family: var(--display); font-weight: 600; font-size: 18px;
  letter-spacing: -0.5px; color: var(--text);
}
.logo-text span { color: var(--indigo-light); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text-mute); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-weight: 600; font-size: 14px;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary {
  background: var(--lime); color: #0A0E1A;
  padding: 11px 18px; border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(163, 230, 53, 0.3), 0 8px 24px -8px rgba(163, 230, 53, 0.4);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(163, 230, 53, 0.5), 0 12px 32px -8px rgba(163, 230, 53, 0.5);
}
.btn-primary .arrow { transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(3px); }/* ============ HERO ============ */
.hero {
  padding: 96px 0 80px; position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  color: var(--text-mute); letter-spacing: 0.5px;
  padding: 8px 14px; border: 1px solid var(--border);
  border-radius: 100px; background: rgba(255,255,255,0.02);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 8px var(--lime);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(48px, 8vw, 104px); line-height: 0.95;
  letter-spacing: -3px; max-width: 1100px; margin-bottom: 32px;
}
.hero h1 .accent { color: var(--indigo-light); font-style: italic; font-weight: 400; }
.hero h1 .dot { color: var(--lime); }

.hero-sub {
  font-size: 19px; color: var(--text-mute); max-width: 620px;
  line-height: 1.55; margin-bottom: 40px; font-weight: 400;
}
.hero-cta-row {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-cta-row .btn-primary { padding: 14px 22px; font-size: 15px; }
.hero-proof {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-dim);
}
.hero-proof .dots {
  display: flex;
}
.hero-proof .dots > div {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.hero-proof .dots > div:first-child { margin-left: 0; background: linear-gradient(135deg, #4F46E5, #818CF8); }
.hero-proof .dots > div:nth-child(2) { background: linear-gradient(135deg, #06B6D4, #67E8F9); }
.hero-proof .dots > div:nth-child(3) { background: linear-gradient(135deg, #A3E635, #BEF264); }
.hero-proof .dots > div:nth-child(4) { background: linear-gradient(135deg, #F472B6, #C026D3); }

/* Marquee */
.marquee {
  margin-top: 80px; padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex; gap: 56px; white-space: nowrap;
  animation: scroll 40s linear infinite;
  width: max-content;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--display); font-size: 22px; font-weight: 500;
  color: var(--text-dim); display: flex; align-items: center; gap: 16px;
  letter-spacing: -0.5px;
}
.marquee-item .sep { width: 6px; height: 6px; background: var(--indigo); border-radius: 50%; }

/* ============ SECTIONS ============ */
section { position: relative; }
.section-pad { padding: 120px 0; }
.section-eyebrow {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  color: var(--lime); letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(32px, 5vw, 56px); line-height: 1.05;
  letter-spacing: -1.5px; max-width: 800px; margin-bottom: 16px;
}
.section-title em { color: var(--indigo-light); font-style: italic; font-weight: 400; }
.section-sub {
  font-size: 17px; color: var(--text-mute); max-width: 600px; margin-bottom: 64px;
}

/* ============ STATS ============ */
.stats {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--display); font-weight: 500;
  font-size: 56px; line-height: 1; letter-spacing: -2px;
  color: var(--text); margin-bottom: 6px;
}
.stat-number sup { color: var(--lime); font-size: 32px; }
.stat-label {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  color: var(--text-mute); letter-spacing: 0.5px; text-transform: uppercase;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
.service {
  background: var(--bg); padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: background 0.3s;
  position: relative;
  min-height: 240px;
}
.service:hover { background: var(--bg-card); }
.service-icon {
  width: 44px; height: 44px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: rgba(79, 70, 229, 0.12);
  color: var(--indigo-glow);
}
.service h3 {
  font-family: var(--display); font-weight: 500; font-size: 22px;
  letter-spacing: -0.5px; margin-bottom: 10px;
}
.service p {
  font-size: 14px; color: var(--text-mute); line-height: 1.6;
}
.service-num {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--mono); font-size: 11px; color: var(--text-dim);
}

/* ============ PRICING ============ */
.pricing-group { margin-bottom: 56px; }
.pricing-group:last-child { margin-bottom: 0; }
.pricing-group-label {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  color: var(--lime); letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 24px;
}
.pricing-group-label::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pricing-grid.full { grid-template-columns: 1fr; }

.price-card {
  background: var(--bg-elev);
  border: 1px solid var(--border); border-radius: 16px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.price-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.price-card.featured {
  border-color: var(--indigo);
  background: linear-gradient(145deg, rgba(79, 70, 229, 0.08), var(--bg-elev));
}
.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: -10px; left: 28px;
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  color: #0D1A63; background: var(--lime);
  padding: 4px 10px; border-radius: 4px; letter-spacing: 1px;
}
.price-name {
  font-family: var(--display); font-weight: 500; font-size: 20px;
  letter-spacing: -0.3px; margin-bottom: 8px;
}
.price-pages {
  font-size: 13px; color: var(--text-mute); margin-bottom: 24px;
  line-height: 1.5;
}
.price-amount {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 8px;
}
.price-amount .currency {
  font-family: var(--display); font-size: 22px; color: var(--text-mute); font-weight: 500;
}
.price-amount .num {
  font-family: var(--display); font-weight: 500; font-size: 48px;
  letter-spacing: -2px; color: var(--text); line-height: 1;
}
.price-delivery {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px; color: var(--lime);
  background: rgba(163, 230, 53, 0.1);
  padding: 4px 10px; border-radius: 4px;
  margin-bottom: 24px; align-self: flex-start;
  letter-spacing: 0.5px;
}
.price-features {
  list-style: none; margin-bottom: 28px; flex: 1;
}
.price-features li {
  font-size: 13px; color: var(--text-mute);
  padding: 8px 0; padding-left: 22px; position: relative;
  border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 12px; height: 6px;
  border-left: 1.5px solid var(--lime);
  border-bottom: 1.5px solid var(--lime);
  transform: rotate(-45deg);
}
.price-card .btn {
  width: 100%; justify-content: center;
  background: transparent; color: var(--text);
  border: 1px solid var(--border-strong);
  padding: 12px;
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s;
}
.price-card .btn:hover { background: var(--lime); color: #0D1A63; border-color: var(--lime); }

.custom-card {
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: 16px; padding: 40px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
}
.custom-card-text h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 28px; letter-spacing: -0.8px; margin-bottom: 8px;
}
.custom-card-text p { font-size: 15px; color: var(--text-mute); max-width: 540px; }
.custom-card-price {
  font-family: var(--display); font-size: 22px;
  color: var(--cyan-light); white-space: nowrap;
}

/* ============ PROCESS ============ */
.process-list { position: relative; }
.process-list::before {
  content: ''; position: absolute;
  left: 23px; top: 24px; bottom: 24px;
  width: 1px; background: var(--border);
}
.process-step {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 28px; padding: 24px 0;
  position: relative;
}
.process-step + .process-step { border-top: 1px solid var(--border); }
.step-num {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg); border: 1px solid var(--border-strong);
  border-radius: 50%;
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  color: var(--lime); position: relative; z-index: 2;
}
.step-content h4 {
  font-family: var(--display); font-weight: 500; font-size: 22px;
  letter-spacing: -0.4px; margin-bottom: 6px;
}
.step-content p { font-size: 15px; color: var(--text-mute); max-width: 600px; }
.step-meta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px; color: var(--cyan-light);
  margin-top: 8px; letter-spacing: 0.5px;
}

/* ============ INDUSTRIES ============ */
.industries-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.industry {
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative; overflow: hidden;
}
.industry:hover { border-color: var(--indigo); transform: translateY(-3px); }
.industry-icon {
  width: 36px; height: 36px; margin-bottom: 56px;
  color: var(--indigo-glow);
}
.industry h4 {
  font-family: var(--display); font-weight: 500; font-size: 18px;
  letter-spacing: -0.3px;
}
.industry.custom {
  background: linear-gradient(145deg, rgba(6, 182, 212, 0.08), var(--bg-elev));
  border-color: rgba(6, 182, 212, 0.3);
}
.industry.custom .industry-icon { color: var(--cyan-light); }

/* ============ FINAL CTA ============ */
.cta-section {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.cta-inner {
  max-width: 880px; margin: 0 auto; text-align: center;
}
.cta-inner h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(40px, 6vw, 72px); line-height: 1; letter-spacing: -2.5px;
  margin-bottom: 24px;
}
.cta-inner h2 em { color: var(--indigo-light); font-style: italic; font-weight: 400; }
.cta-inner h2 .dot { color: var(--lime); }
.cta-inner p {
  font-size: 18px; color: var(--text-mute); max-width: 540px;
  margin: 0 auto 40px;
}
.cta-section .btn-primary { padding: 16px 28px; font-size: 16px; }
.cta-meta {
  display: flex; gap: 32px; justify-content: center;
  margin-top: 40px; flex-wrap: wrap;
}
.cta-meta-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-dim);
  font-family: var(--mono); letter-spacing: 0.3px;
}
.cta-meta-item svg { color: var(--lime); }

/* ============ BOOKING FORM ============ */
.booking-form {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-family: var(--body);
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-group select {
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-weight: 400;
}

.booking-form .btn {
  cursor: pointer;
  pointer-events: auto;
}

.form-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ============ FOOTER ============ */
.footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.footer-copy {
  font-size: 13px; color: var(--text-dim); font-family: var(--mono);
}
.footer-links {
  display: flex; gap: 24px;
}
.footer-links a {
  font-size: 13px; color: var(--text-mute); text-decoration: none;
  transition: color 0.2s;
  pointer-events: none;
}
.footer-links a:hover { color: var(--text); }

/* ============ PROTECTION ============ */
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
}

/* Disable right-click context menu */
html {
  -webkit-touch-callout: none;
}

/* Prevent inspector/developer tools interference */
*[contenteditable] {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-links.cta { display: block; }
  .hero { padding: 56px 0 60px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .industry.custom { grid-column: 1 / -1; }
  .custom-card { grid-template-columns: 1fr; gap: 20px; }
  .section-pad { padding: 80px 0; }
  .stat-number { font-size: 44px; }
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 16px 20px; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .hero h1 { letter-spacing: -2px; }
  .cta-inner h2 { letter-spacing: -1.5px; }
}

/* Reveal animation */
@keyframes reveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: reveal 0.8s ease-out backwards; }
.reveal.d1 { animation-delay: 0.1s; }
.reveal.d2 { animation-delay: 0.2s; }
.reveal.d3 { animation-delay: 0.3s; }
.reveal.d4 { animation-delay: 0.4s; }
</style>
</head>
<body>

<!-- ============ NAV ============ -->
<nav class="nav" id="nav">
  <div class="nav-inner">
    <a href="#" class="logo">
      <svg class="logo-mark" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
        <rect x="0" y="0" width="72" height="72" rx="16" fill="#4F46E5"/>
        <path d="M 36 18 A 18 18 0 1 0 54 36 L 38 36" stroke="#FFFFFF" stroke-width="6.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
        <circle cx="54" cy="36" r="4.5" fill="#A3E635"/>
      </svg>
      <div class="logo-text"><span>ghl</span>projects</div>
    </a>
    <div class="nav-links">
      <a href="#services">Services</a>
      <a href="#pricing">Pricing</a>
      <a href="#process">Process</a>
      <a href="#industries">Industries</a>
    </div>
    <a href="#book" class="btn btn-primary">
      Book a consultation call
      <svg class="arrow" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><path d="M5 12h14M13 5l7 7-7 7"/></svg>
    </a>
  </div>
</nav>

<!-- ============ HERO ============ -->
<header class="hero">
  <div class="wrap">
    <div class="hero-eyebrow reveal">White-label GHL solutions for agencies</div>
    <h1 class="reveal d1">
      We build the <em>GHL stack</em><br>
      agencies sell<span class="dot">.</span>
    </h1>
    <p class="hero-sub reveal d2">
      Websites, funnels, automations, AI agents, integrations, snapshots — done for you in 3 to 5 days. Trusted by 75+ agencies and white-label partners worldwide.
    </p>
    <div class="hero-cta-row reveal d3">
      <a href="#book" class="btn btn-primary">
        Book a consultation call
        <svg class="arrow" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><path d="M5 12h14M13 5l7 7-7 7"/></svg>
      </a>
      <div class="hero-proof">
        <div class="dots"><div></div><div></div><div></div><div></div></div>
        Trusted by 75+ GHL agencies
      </div>
    </div>

    <!-- Marquee -->
    <div class="marquee">
      <div class="marquee-track">
        <span class="marquee-item">Funnels<span class="sep"></span></span>
        <span class="marquee-item">AI Agents<span class="sep"></span></span>
        <span class="marquee-item">Snapshots<span class="sep"></span></span>
        <span class="marquee-item">Automations<span class="sep"></span></span>
        <span class="marquee-item">Integrations<span class="sep"></span></span>
        <span class="marquee-item">White-label<span class="sep"></span></span>
        <span class="marquee-item">Websites<span class="sep"></span></span>
        <span class="marquee-item">Pipelines<span class="sep"></span></span>
        <!-- duplicate for seamless loop -->
        <span class="marquee-item">Funnels<span class="sep"></span></span>
        <span class="marquee-item">AI Agents<span class="sep"></span></span>
        <span class="marquee-item">Snapshots<span class="sep"></span></span>
        <span class="marquee-item">Automations<span class="sep"></span></span>
        <span class="marquee-item">Integrations<span class="sep"></span></span>
        <span class="marquee-item">White-label<span class="sep"></span></span>
        <span class="marquee-item">Websites<span class="sep"></span></span>
        <span class="marquee-item">Pipelines<span class="sep"></span></span>
      </div>
    </div>
  </div>
</header>

<!-- ============ STATS ============ -->
<section class="stats">
  <div class="wrap">
    <div class="stats-grid">
      <div class="stat">
        <div class="stat-number">4<sup>+</sup></div>
        <div class="stat-label">Years in GHL</div>
      </div>
      <div class="stat">
        <div class="stat-number">75<sup>+</sup></div>
        <div class="stat-label">Agencies served</div>
      </div>
      <div class="stat">
        <div class="stat-number">15<sup>+</sup></div>
        <div class="stat-label">In-house developers</div>
      </div>
      <div class="stat">
        <div class="stat-number">3–5<sup></sup></div>
        <div class="stat-label">Days avg. delivery</div>
      </div>
    </div>
  </div>
</section>

<!-- ============ SERVICES ============ -->
<section class="section-pad" id="services">
  <div class="wrap">
    <div class="section-eyebrow">// What we build</div>
    <h2 class="section-title">Every <em>moving part</em> of a GHL system, shipped fast.</h2>
    <p class="section-sub">From the first funnel page to the last automation trigger, we build the deliverables your clients pay you for — under your brand, on your timeline.</p>

    <div class="services-grid">
      <div class="service">
        <div class="service-num">01</div>
        <div class="service-icon">
          <svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="4" width="20" height="16" rx="2"/><path d="M2 9h20M6 6.5h.01M9 6.5h.01M12 6.5h.01"/></svg>
        </div>
        <h3>Websites</h3>
        <p>Conversion-grade sites built directly in GHL. From 2-page lead magnets to full home-service stacks with location pages.</p>
      </div>

      <div class="service">
        <div class="service-num">02</div>
        <div class="service-icon">
          <svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M3 4h18l-7 8v7l-4 2v-9z"/></svg>
        </div>
        <h3>Funnels</h3>
        <p>Opt-ins, VSLs, application funnels, tripwires — designed and wired to your offer with thank-you flows that actually convert.</p>
      </div>

      <div class="service">
        <div class="service-num">03</div>
        <div class="service-icon">
          <svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><circle cx="6" cy="6" r="2.5"/><circle cx="18" cy="12" r="2.5"/><circle cx="6" cy="18" r="2.5"/><path d="M8.5 6h7M15.5 12H8.5M8.5 18h7"/></svg>
        </div>
        <h3>Automations</h3>
        <p>Lead nurture, appointment reminders, pipeline routing, win-backs. Workflows that run themselves and keep your clients shipping.</p>
      </div>

      <div class="service">
        <div class="service-num">04</div>
        <div class="service-icon">
          <svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v4M12 18v4M4.93 4.93l2.83 2.83M16.24 16.24l2.83 2.83M2 12h4M18 12h4M4.93 19.07l2.83-2.83M16.24 7.76l2.83-2.83"/><circle cx="12" cy="12" r="4"/></svg>
        </div>
        <h3>AI Agents</h3>
        <p>Voice and chat agents that answer, qualify, and book — trained on your client's offer, deployed inside GHL. 24/7 receptionist, no salary.</p>
      </div>

      <div class="service">
        <div class="service-num">05</div>
        <div class="service-icon">
          <svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M9 3H5a2 2 0 0 0-2 2v4M15 3h4a2 2 0 0 1 2 2v4M21 15v4a2 2 0 0 1-2 2h-4M9 21H5a2 2 0 0 1-2-2v-4"/><path d="M8 12h8M12 8v8"/></svg>
        </div>
        <h3>Integrations</h3>
        <p>Stripe, Zapier, Make, custom webhooks, calendar syncs, third-party CRMs — connected and tested so nothing breaks at 2am.</p>
      </div>

      <div class="service">
        <div class="service-num">06</div>
        <div class="service-icon">
          <svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="14" height="14" rx="2"/><rect x="7" y="7" width="14" height="14" rx="2"/></svg>
        </div>
        <h3>Snapshots</h3>
        <p>Production-ready snapshots — websites, funnels, automations, pipelines, and AI agents bundled. Deploy to clients in one click.</p>
      </div>
    </div>
  </div>
</section>

<!-- ============ PRICING ============ -->
<section class="section-pad" id="pricing" style="background: linear-gradient(180deg, transparent, rgba(79, 70, 229, 0.03), transparent);">
  <div class="wrap">
    <div class="section-eyebrow">// Pricing</div>
    <h2 class="section-title">Fixed scope. <em>Fixed price.</em> Shipped in days.</h2>
    <p class="section-sub">No hourly games, no scope creep. Pick a package, send the brief, get it built. Custom work priced separately.</p>

    <!-- Websites -->
    <div class="pricing-group">
      <div class="pricing-group-label">Websites</div>
      <div class="pricing-grid">
        <div class="price-card">
          <div class="price-name">Starter Site</div>
          <div class="price-pages">2–3 page conversion website</div>
          <div class="price-amount"><span class="currency">$</span><span class="num">247</span></div>
          <span class="price-delivery">▸ 2–3 days</span>
          <ul class="price-features">
            <li>Up to 3 pages designed & built</li>
            <li>Mobile-responsive in GHL</li>
            <li>Lead capture forms wired</li>
            <li>Basic SEO meta setup</li>
          </ul>
          <a href="#book" class="btn">Book a consultation call</a>
        </div>

        <div class="price-card featured">
          <div class="price-name">Growth Site</div>
          <div class="price-pages">5–6 page marketing website</div>
          <div class="price-amount"><span class="currency">$</span><span class="num">499</span></div>
          <span class="price-delivery">▸ 3–5 days</span>
          <ul class="price-features">
            <li>Up to 6 pages designed & built</li>
            <li>Custom sections & components</li>
            <li>Forms, calendars, lead routing</li>
            <li>SEO meta + schema setup</li>
          </ul>
          <a href="#book" class="btn">Book a consultation call</a>
        </div>

        <div class="price-card">
          <div class="price-name">Home Service Stack</div>
          <div class="price-pages">Service + location pages, full build</div>
          <div class="price-amount"><span class="currency">$</span><span class="num">999</span></div>
          <span class="price-delivery">▸ 5–7 days</span>
          <ul class="price-features">
            <li>Service pages (unlimited)</li>
            <li>Location pages with local SEO</li>
            <li>Booking + quote forms</li>
            <li>Review + testimonial sections</li>
          </ul>
          <a href="#book" class="btn">Book a consultation call</a>
        </div>
      </div>
    </div>

    <!-- Systems -->
    <div class="pricing-group">
      <div class="pricing-group-label">Done-for-you systems</div>
      <div class="pricing-grid">
        <div class="price-card">
          <div class="price-name">Account Setup</div>
          <div class="price-pages">Automations, pipelines, tags, custom fields & values, AI agents</div>
          <div class="price-amount"><span class="currency">$</span><span class="num">999</span></div>
          <span class="price-delivery">▸ 7–10 days</span>
          <ul class="price-features">
            <li>Pipelines + stages configured</li>
            <li>Tags, custom fields, custom values</li>
            <li>Core automations wired</li>
            <li>AI agent baseline deployed</li>
          </ul>
          <a href="#book" class="btn">Book a consultation call</a>
        </div>

        <div class="price-card">
          <div class="price-name">Snapshot Build</div>
          <div class="price-pages">1 site + 1 funnel + automations + AI agents</div>
          <div class="price-amount"><span class="currency">$</span><span class="num">1,199</span></div>
          <span class="price-delivery">▸ 7–10 days</span>
          <ul class="price-features">
            <li>1 full website + 1 funnel</li>
            <li>Automations + AI agents</li>
            <li>Packaged as deployable snapshot</li>
            <li>Documentation + Loom walkthrough</li>
          </ul>
          <a href="#book" class="btn">Book a consultation call</a>
        </div>

        <div class="price-card featured">
          <div class="price-name">Complete Build</div>
          <div class="price-pages">Website + automation + AI agent</div>
          <div class="price-amount"><span class="currency">$</span><span class="num">1,499</span></div>
          <span class="price-delivery">▸ 7–10 days</span>
          <ul class="price-features">
            <li>Full marketing website</li>
            <li>Automation suite (lead → close)</li>
            <li>AI voice or chat agent</li>
            <li>Integrations + handoff training</li>
          </ul>
          <a href="#book" class="btn">Book a consultation call</a>
        </div>
      </div>
    </div>

    <!-- Custom -->
    <div class="pricing-group">
      <div class="pricing-group-label">Custom scope</div>
      <div class="custom-card">
        <div class="custom-card-text">
          <h3>Automations + Integrations, scoped to you.</h3>
          <p>Complex multi-platform workflows, custom API work, large-scale snapshot builds, recurring agency partnerships. Priced after a 30-minute scoping call.</p>
        </div>
        <div style="display: flex; flex-direction: column; align-items: flex-end; gap: 16px;">
          <div class="custom-card-price">Custom pricing</div>
          <a href="#book" class="btn btn-primary">
            Book a consultation call
            <svg class="arrow" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><path d="M5 12h14M13 5l7 7-7 7"/></svg>
          </a>
        </div>
      </div>
    </div>
  </div>
</section>

<!-- ============ PROCESS ============ -->
<section class="section-pad" id="process">
  <div class="wrap">
    <div class="section-eyebrow">// How it works</div>
    <h2 class="section-title">From call to <em>handover</em>, six clear steps.</h2>
    <p class="section-sub">No black boxes. You see exactly where your project is at every stage — from the first call to the final Loom walkthrough.</p>

    <div class="process-list">
      <div class="process-step">
        <div class="step-num">01</div>
        <div class="step-content">
          <h4>Book a consultation call</h4>
          <p>30-minute call to walk through your requirements, audience, brand, and the exact deliverables. You'll leave with a scope and a quote.</p>
        </div>
      </div>

      <div class="process-step">
        <div class="step-num">02</div>
        <div class="step-content">
          <h4>Onboarded into Slack</h4>
          <p>You get added to a private Slack channel with your assigned project lead. Async-first communication, no ghost emails.</p>
        </div>
      </div>

      <div class="process-step">
        <div class="step-num">03</div>
        <div class="step-content">
          <h4>Payment + Miro board within 5 hours</h4>
          <p>Send the deposit and receive a Miro board mapping every page, funnel, automation, and integration we'll build. Sign-off in writing before code touches GHL.</p>
          <div class="step-meta">▸ Within 5 hours of payment</div>
        </div>
      </div>

      <div class="process-step">
        <div class="step-num">04</div>
        <div class="step-content">
          <h4>Implementation kicks off</h4>
          <p>The build starts immediately. You receive your first progress update — wireframes, drafts, or working components — within 24 hours.</p>
          <div class="step-meta">▸ First update inside 24 hours</div>
        </div>
      </div>

      <div class="process-step">
        <div class="step-num">05</div>
        <div class="step-content">
          <h4>Project completed + review call</h4>
          <p>Once everything is shipped and tested, we book a final consultation call to walk through the build, address feedback, and confirm sign-off.</p>
        </div>
      </div>

      <div class="process-step">
        <div class="step-num">06</div>
        <div class="step-content">
          <h4>Looms + project handover</h4>
          <p>You receive Loom walkthroughs of every component, a written handover doc, and access transferred. White-label ready for your clients.</p>
        </div>
      </div>
    </div>
  </div>
</section>

<!-- ============ INDUSTRIES ============ -->
<section class="section-pad" id="industries">
  <div class="wrap">
    <div class="section-eyebrow">// Where we ship</div>
    <h2 class="section-title">Industries we've <em>built into</em> dozens of times.</h2>
    <p class="section-sub">Pattern recognition matters. We've already solved the lead-flow puzzle for these verticals — your client gets the playbook, not the experiment.</p>

    <div class="industries-grid">
      <div class="industry">
        <svg class="industry-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M19 14c1.5-1.5 3-3.4 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.8 0-3 .5-4.5 2-1.5-1.5-2.7-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.1 1.5 4 3 5.5l7 7Z"/></svg>
        <h4>Healthcare</h4>
      </div>
      <div class="industry">
        <svg class="industry-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M3 12l9-9 9 9M5 10v10h14V10"/></svg>
        <h4>Home Services</h4>
      </div>
      <div class="industry">
        <svg class="industry-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="18" height="18" rx="2"/><path d="M3 9h18M9 21V9"/></svg>
        <h4>Real Estate</h4>
      </div>
      <div class="industry">
        <svg class="industry-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="8" r="4"/><path d="M4 21c0-4.4 3.6-8 8-8s8 3.6 8 8"/></svg>
        <h4>Coaches & Consultants</h4>
      </div>
      <div class="industry custom">
        <svg class="industry-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="3"/><path d="M19.4 15a1.7 1.7 0 0 0 .3 1.8l.1.1a2 2 0 1 1-2.8 2.8l-.1-.1a1.7 1.7 0 0 0-1.8-.3 1.7 1.7 0 0 0-1 1.5V21a2 2 0 1 1-4 0v-.1a1.7 1.7 0 0 0-1.1-1.5 1.7 1.7 0 0 0-1.8.3l-.1.1a2 2 0 1 1-2.8-2.8l.1-.1a1.7 1.7 0 0 0 .3-1.8 1.7 1.7 0 0 0-1.5-1H3a2 2 0 1 1 0-4h.1A1.7 1.7 0 0 0 4.6 9a1.7 1.7 0 0 0-.3-1.8l-.1-.1a2 2 0 1 1 2.8-2.8l.1.1a1.7 1.7 0 0 0 1.8.3H9a1.7 1.7 0 0 0 1-1.5V3a2 2 0 1 1 4 0v.1a1.7 1.7 0 0 0 1 1.5 1.7 1.7 0 0 0 1.8-.3l.1-.1a2 2 0 1 1 2.8 2.8l-.1.1a1.7 1.7 0 0 0-.3 1.8V9a1.7 1.7 0 0 0 1.5 1H21a2 2 0 1 1 0 4h-.1a1.7 1.7 0 0 0-1.5 1Z"/></svg>
        <h4>Custom verticals</h4>
      </div>
    </div>
  </div>
</section>

<!-- ============ BOOKING FORM ============ -->
<section class="section-pad" id="book">
  <div class="wrap">
    <div style="max-width: 680px; margin: 0 auto;">
      <div class="section-eyebrow" style="text-align: center; justify-content: center; display: flex;">// Book Your Call</div>
      <h2 class="section-title" style="text-align: center; margin-bottom: 32px;">Schedule your <em>30-minute</em> consultation.</h2>
      
      <form class="booking-form">
        <div class="form-group">
          <label>Full Name *</label>
          <input type="text" name="name" placeholder="Your name" required>
        </div>

        <div class="form-group">
          <label>Email *</label>
          <input type="email" name="email" placeholder="your@email.com" required>
        </div>

        <div class="form-group">
          <label>Company Name *</label>
          <input type="text" name="company" placeholder="Your company" required>
        </div>

        <div class="form-group">
          <label>Phone Number *</label>
          <input type="tel" name="phone" placeholder="+1 (555) 000-0000" required>
        </div>

        <div class="form-group">
          <label>What are you looking to build? *</label>
          <select name="service" required>
            <option value="">Select a service</option>
            <option value="website">Website</option>
            <option value="funnel">Funnel</option>
            <option value="automations">Automations</option>
            <option value="ai-agent">AI Agent</option>
            <option value="snapshot">Snapshot Build</option>
            <option value="custom">Custom Build</option>
          </select>
        </div>

        <div class="form-group">
          <label>Tell us more about your project</label>
          <textarea name="message" placeholder="Any details about your project..." rows="4"></textarea>
        </div>

        <button type="submit" class="btn btn-primary" style="width: 100%; justify-content: center; cursor: pointer; pointer-events: auto;">
          Schedule Your Call
          <svg class="arrow" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><path d="M5 12h14M13 5l7 7-7 7"/></svg>
        </button>

        <div class="form-meta" style="margin-top: 24px; text-align: center; font-size: 13px; color: var(--text-dim);">
          We'll get back to you within 24 hours
        </div>
      </form>
    </div>
  </div>
</section>

<!-- ============ FOOTER ============ -->
<footer class="footer">
  <div class="wrap">
    <div class="footer-inner">
      <a href="#" class="logo">
        <svg class="logo-mark" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
          <rect x="0" y="0" width="72" height="72" rx="16" fill="#4F46E5"/>
          <path d="M 36 18 A 18 18 0 1 0 54 36 L 38 36" stroke="#FFFFFF" stroke-width="6.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
          <circle cx="54" cy="36" r="4.5" fill="#A3E635"/>
        </svg>
        <div class="logo-text"><span>ghl</span>projects</div>
      </a>
      <div class="footer-copy">© 2026 GHL Projects · ghlprojects.com</div>
      <div class="footer-links">
        <a href="#services">Services</a>
        <a href="#pricing">Pricing</a>
        <a href="#process">Process</a>
        <a href="#book">Book a call</a>
      </div>
    </div>
  </div>
</footer>

<script>
  // Protection: Disable common editing shortcuts
  document.addEventListener('keydown', function(e) {
    // Disable F12, Ctrl+Shift+I, Ctrl+Shift+C, Ctrl+Shift+J
    if (e.key === 'F12' || 
        (e.ctrlKey && e.shiftKey && (e.key === 'I' || e.key === 'C' || e.key === 'J')) ||
        (e.ctrlKey && e.key === 'S')) {
      e.preventDefault();
    }
  });

  // Disable right-click
  document.addEventListener('contextmenu', function(e) {
    e.preventDefault();
    return false;
  });

  // Form submission handler
  const bookingForm = document.querySelector('.booking-form');
  if (bookingForm) {
    bookingForm.addEventListener('submit', function(e) {
      e.preventDefault();
      
      // Get form data
      const formData = new FormData(this);
      const data = Object.fromEntries(formData);
      
      // Create message
      const message = `New Booking Request:\n\nName: ${data.name}\nEmail: ${data.email}\nCompany: ${data.company}\nPhone: ${data.phone}\nService: ${data.service}\nMessage: ${data.message}`;
      
      // Log to console (you can replace this with actual form submission)
      console.log(message);
      
      // Show success message
      const submitBtn = this.querySelector('button[type="submit"]');
      const originalText = submitBtn.innerHTML;
      submitBtn.innerHTML = '✓ Submitted Successfully';
      submitBtn.style.background = 'var(--lime)';
      
      // Reset form
      this.reset();
      
      // Restore button after 3 seconds
      setTimeout(() => {
        submitBtn.innerHTML = originalText;
        submitBtn.style.background = 'var(--lime)';
      }, 3000);
    });
  }

  // Nav border on scroll
  const nav = document.getElementById('nav');
  let ticking = false;
  window.addEventListener('scroll', () => {
    if (!ticking) {
      requestAnimationFrame(() => {
        if (window.scrollY > 12) nav.classList.add('scrolled');
        else nav.classList.remove('scrolled');
        ticking = false;
      });
      ticking = true;
    }
  });
</script>

</body>
</html>