/* ============================================================
   PROJECT-LEADS.CSS — HubPro Project Leads Page
   Completely self-contained — no other CSS file needed
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --navy:         #1A3A5C;
  --navy-light:   #21476E;
  --navy-dark:    #122B4A;
  --orange:       #FF6A00;
  --orange-dark:  #E05E00;
  --steel:        #A0B3C8;
  --green:        #22C55E;
  --blue-400:     #60a5fa;
  --amber-400:    #fbbf24;
  --purple-400:   #c084fc;
  --green-400:    #4ade80;
  --font-display: 'Oswald', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--navy);
  color: var(--steel);
  line-height: 1.6;
  min-height: 100vh;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.1; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
img { display: block; max-width: 100%; }

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--steel); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ── CONTAINER ─────────────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background-color: rgba(18,43,74,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
@media (min-width: 1024px) { .navbar-inner { height: 72px; } }

.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.logo-icon { width: 32px; height: 32px; background-color: var(--orange); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: white; font-size: 14px; flex-shrink: 0; }
.logo-text { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: white; letter-spacing: 0.05em; transition: color 0.2s; }
.logo:hover .logo-text { color: var(--orange); }

.nav-links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link { padding: 0.5rem 0.75rem; font-size: 14px; font-weight: 500; color: var(--steel); border-radius: 4px; transition: color 0.2s; text-decoration: none; }
.nav-link:hover { color: white; }
.nav-link.active { color: var(--orange); }

.navbar-cta { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .navbar-cta { display: flex; } }
.login-link { font-size: 14px; font-weight: 500; color: var(--steel); text-decoration: none; transition: color 0.2s; }
.login-link:hover { color: white; }
.join-btn { padding: 10px 20px; background-color: var(--orange); color: white; font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 0.025em; border-radius: 4px; text-decoration: none; transition: all 0.2s; }
.join-btn:hover { background-color: var(--orange-dark); box-shadow: 0 10px 25px rgba(255,106,0,0.2); }

.mobile-toggle { display: flex; align-items: center; justify-content: center; padding: 0.5rem; color: white; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

.mobile-menu { display: none; background-color: rgba(18,43,74,0.98); backdrop-filter: blur(16px); border-top: 1px solid rgba(255,255,255,0.05); padding: 1rem 0; }
.mobile-menu.open { display: block; }
.mobile-nav-link { display: block; padding: 0.75rem 1rem; font-size: 16px; font-weight: 500; color: var(--steel); border-radius: 4px; transition: all 0.2s; text-decoration: none; }
.mobile-nav-link:hover, .mobile-nav-link.active { color: white; background-color: rgba(255,255,255,0.05); }
.mobile-cta-section { padding: 1rem 1rem 0; margin-top: 0.25rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-login { text-align: center; padding: 0.75rem; color: var(--steel); font-weight: 500; text-decoration: none; display: block; }
.mobile-login:hover { color: white; }
.mobile-join-btn { text-align: center; padding: 0.75rem; background-color: var(--orange); color: white; font-family: var(--font-display); font-weight: 600; letter-spacing: 0.025em; border-radius: 4px; text-decoration: none; display: block; transition: background-color 0.2s; }
.mobile-join-btn:hover { background-color: var(--orange-dark); }

/* ── UTILITIES ─────────────────────────────────────────────── */
.section-divider-top { clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%); margin-top: -5rem; padding-top: 8rem; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── HERO ───────────────────────────────────────────────────── */
.pl-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.pl-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.pl-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(18,43,74,0.92) 0%, rgba(18,43,74,0.72) 60%, rgba(18,43,74,0.55) 100%);
}
.pl-hero-inner {
  position: relative; z-index: 10;
  padding-top: 6rem; padding-bottom: 4rem;
  width: 100%;
}
.pl-hero-content { max-width: 48rem; }

.pl-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}
.pl-badge-text { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); }

.pl-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 700;
  color: white;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.pl-h1 span { color: var(--orange); }

.pl-hero-desc {
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 36rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .pl-hero-desc { font-size: 1.25rem; } }
.pl-hero-desc strong { color: white; }

.pl-hero-actions { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .pl-hero-actions { flex-direction: row; } }

.pl-cta-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: var(--orange); color: white;
  font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; letter-spacing: 0.05em;
  border-radius: 0.25rem; text-decoration: none;
  transition: all 0.2s;
}
.pl-cta-primary:hover {
  background-color: var(--orange-dark);
  box-shadow: 0 20px 40px rgba(255,106,0,0.25);
  transform: translateY(-2px);
}

.pl-hero-wedge {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background-color: var(--navy);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ── STATS ──────────────────────────────────────────────────── */
.pl-stats-section { background-color: var(--navy); padding: 4rem 0; }
.pl-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 768px) { .pl-stats-grid { grid-template-columns: repeat(4, 1fr); } }

.pl-stat { text-align: center; }
.pl-stat-num { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: var(--orange); line-height: 1.1; }
.pl-stat-label { font-size: 13px; color: var(--steel); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; margin-top: 0.25rem; }

/* ── SECTORS ────────────────────────────────────────────────── */
.pl-sectors-section { background-color: var(--navy-light); padding: 5rem 0; }
.pl-section-header { text-align: center; margin-bottom: 3.5rem; }
.pl-overline { display: block; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--orange); }
.pl-h2 { font-family: var(--font-display); font-size: clamp(2.25rem, 6vw, 3.25rem); font-weight: 700; color: white; margin-top: 0.75rem; }
.pl-h2 span { color: var(--orange); }
.pl-section-desc { color: var(--steel); margin-top: 1rem; max-width: 42rem; margin-left: auto; margin-right: auto; }

.pl-sector-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .pl-sector-grid { grid-template-columns: repeat(2, 1fr); } }

.pl-sector-card {
  background-color: rgba(26,58,92,0.6);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: border-color 0.3s;
}
.pl-sector-card:hover { border-color: rgba(255,106,0,0.2); }

.pl-sector-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.pl-sector-icon-wrap {
  width: 3.5rem; height: 3.5rem;
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pl-sector-icon-wrap.blue   { background-color: rgba(96,165,250,0.1); }
.pl-sector-icon-wrap.amber  { background-color: rgba(251,191,36,0.1); }
.pl-sector-icon-wrap.purple { background-color: rgba(192,132,252,0.1); }
.pl-sector-icon-wrap.green  { background-color: rgba(74,222,128,0.1); }

.pl-sector-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: white; }
.pl-sector-desc { color: var(--steel); line-height: 1.7; }

/* ── SAMPLE LEADS ───────────────────────────────────────────── */
.pl-leads-section { background-color: var(--navy); padding: 5rem 0; }
.pl-leads-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .pl-leads-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pl-leads-grid { grid-template-columns: repeat(3, 1fr); } }

.pl-lead-card {
  background-color: var(--navy-light);
  border-left-width: 4px;
  border-left-style: solid;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-right: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1.5rem;
  transition: background-color 0.2s;
}
.pl-lead-card:hover { background-color: rgba(33,71,110,0.8); }
.pl-lead-card.blue   { border-left-color: var(--blue-400); }
.pl-lead-card.green  { border-left-color: var(--green-400); }
.pl-lead-card.purple { border-left-color: var(--purple-400); }
.pl-lead-card.amber  { border-left-color: var(--amber-400); }

.pl-lead-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.pl-lead-type { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--steel); }
.pl-lead-value { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--orange); }
.pl-lead-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.pl-lead-location { display: flex; align-items: center; gap: 0.375rem; font-size: 14px; color: var(--steel); margin-bottom: 0.375rem; }
.pl-lead-meta { display: flex; align-items: center; gap: 1rem; font-size: 12px; color: var(--steel); }

/* ── WHAT YOU GET ───────────────────────────────────────────── */
.pl-what-section { background-color: var(--navy-light); padding: 5rem 0; }
.pl-what-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .pl-what-grid { grid-template-columns: repeat(2, 1fr); } }

.pl-checklist { display: flex; flex-direction: column; gap: 1rem; }
.pl-check-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.pl-check-item span { color: #d1d5db; }

.pl-schedule-card {
  background-color: rgba(26,58,92,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 2rem;
}
.pl-schedule-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.pl-schedule-title { font-size: 1rem; font-weight: 600; color: white; }
.pl-schedule-weeks { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.pl-schedule-week {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pl-schedule-week:last-child { border-bottom: none; }
.pl-week-num {
  width: 2rem; height: 2rem;
  background-color: rgba(255,106,0,0.1);
  border-radius: 0.25rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--orange);
  flex-shrink: 0;
}
.pl-week-text { font-size: 14px; color: var(--steel); }

.pl-schedule-cta {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; padding: 1rem;
  background-color: var(--orange); color: white;
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.05em;
  border-radius: 0.25rem; text-decoration: none;
  transition: all 0.2s;
}
.pl-schedule-cta:hover { background-color: var(--orange-dark); box-shadow: 0 20px 40px rgba(255,106,0,0.25); }

/* ── COMPARISON ─────────────────────────────────────────────── */
.pl-compare-section { background-color: var(--navy); padding: 5rem 0; }
.pl-compare-wrap { max-width: 48rem; margin: 0 auto; }
.pl-compare-table { display: grid; grid-template-columns: 1fr 1fr 1fr; }

.pl-compare-cell { padding: 1rem; }
.pl-compare-cell.header-empty { border-bottom: 1px solid rgba(255,255,255,0.1); }
.pl-compare-cell.header-hubpro {
  border-bottom: 1px solid rgba(255,106,0,0.3);
  background-color: rgba(255,106,0,0.05);
  text-align: center;
}
.pl-compare-cell.header-others { border-bottom: 1px solid rgba(255,255,255,0.1); text-align: center; }
.pl-compare-col-hubpro { background-color: rgba(255,106,0,0.05); border-bottom: 1px solid rgba(255,106,0,0.1); text-align: center; display: flex; align-items: center; justify-content: center; }
.pl-compare-col-others { border-bottom: 1px solid rgba(255,255,255,0.05); text-align: center; display: flex; align-items: center; justify-content: center; }
.pl-compare-feature { font-size: 14px; color: #d1d5db; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; }

.pl-hubpro-label { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--orange); }
.pl-others-label { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--steel); }
.pl-x-mark { color: #f87171; font-size: 1.25rem; line-height: 1; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.pl-testimonials-section { background-color: var(--navy-light); padding: 5rem 0; }
.pl-testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .pl-testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

.pl-testimonial-card {
  background-color: rgba(26,58,92,0.6);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 0.5rem;
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s;
}
.pl-testimonial-card:hover { border-color: rgba(255,106,0,0.2); }

.pl-quote-icon { position: absolute; top: 1.5rem; right: 1.5rem; color: rgba(255,106,0,0.15); }
.pl-stat-badge { display: inline-block; background-color: rgba(255,106,0,0.1); border-radius: 0.5rem; padding: 0.5rem 1rem; text-align: center; margin-bottom: 1.25rem; }
.pl-stat-badge-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--orange); display: block; line-height: 1; }
.pl-stat-badge-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--steel); }
.pl-testimonial-text { font-size: 14px; color: #d1d5db; line-height: 1.7; margin-bottom: 1.5rem; }
.pl-testimonial-divider { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; }
.pl-testimonial-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: white; }
.pl-testimonial-title { font-size: 14px; font-weight: 600; color: var(--orange); }
.pl-testimonial-meta { font-size: 12px; color: var(--steel); margin-top: 0.25rem; }

/* ── FINAL CTA ──────────────────────────────────────────────── */
.pl-cta-section { background-color: var(--navy); padding: 5rem 0; text-align: center; }
.pl-cta-h2 { font-family: var(--font-display); font-size: clamp(2.25rem, 8vw, 4rem); font-weight: 700; color: white; margin-bottom: 1rem; }
.pl-cta-h2 span { color: var(--orange); }
.pl-cta-desc { color: var(--steel); font-size: 1.125rem; max-width: 36rem; margin: 0 auto 2rem; line-height: 1.7; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.pl-footer { background-color: var(--navy-dark); border-top: 1px solid rgba(255,255,255,0.05); }
.pl-footer-inner { padding: 3rem 0 2rem; }
.pl-footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px)  { .pl-footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .pl-footer-grid { grid-template-columns: repeat(4,1fr); } }
.pl-footer-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; margin-bottom: 0.75rem; }
.pl-footer-logo-icon { width: 32px; height: 32px; background-color: var(--orange); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: white; font-size: 14px; flex-shrink: 0; }
.pl-footer-logo-text { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: white; letter-spacing: 0.05em; }
.pl-footer-desc { font-size: 14px; color: var(--steel); line-height: 1.7; }
.pl-footer-heading { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.pl-footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.pl-footer-links a { font-size: 14px; color: var(--steel); text-decoration: none; transition: color 0.2s; }
.pl-footer-links a:hover { color: var(--orange); }
.pl-footer-links li { font-size: 14px; color: var(--steel); }
.pl-footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; gap: 0.5rem; align-items: center; text-align: center; }
@media (min-width: 768px) { .pl-footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.pl-footer-copy { font-size: 12px; color: var(--steel); }
