/* ================================================================
   IT Lead Network — Main Stylesheet
   Loaded globally via functions.php on every page
   ================================================================ */

/* ─── TOKENS ─────────────────────────────────────────────────────── */
:root {
  --navy:       #0B1F3A;
  --navy-mid:   #112847;
  --teal:       #00B4C6;
  --teal-dim:   #007f8e;
  --orange:     #F97316;
  --orange-h:   #ea6a0e;
  --slate:      #F4F6F9;
  --charcoal:   #1C2B3A;
  --muted:      #5a6a7a;
  --white:      #FFFFFF;
  --border:     #e2e8f0;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
  --max-w: 1200px;
  --radius: 10px;
}

/* ─── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── UTILITY ────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--orange-h); transform: translateY(-1px); color: var(--white); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.7;
  margin-top: 14px;
}
.section-sub.light { color: rgba(255,255,255,0.72); }

/* ─── NAVBAR ─────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 0 24px;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}
.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.3s;
  flex-shrink: 0;
}
.nav-logo span { color: var(--teal); }
.navbar.scrolled .nav-logo { color: var(--navy); }
.navbar.scrolled .nav-logo span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.navbar.scrolled .nav-links a { color: var(--charcoal); }
.navbar.scrolled .nav-links a:hover { color: var(--navy); background: var(--slate); }

.nav-cta { margin-left: 8px; }
.nav-cta .btn-primary { padding: 10px 20px; font-size: 14px; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: background 0.3s;
}
.navbar.scrolled .hamburger span { background: var(--navy); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--white);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu ul li a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu ul li a:hover { color: var(--teal); }
.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-cta {
  display: inline-flex !important;
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* ─── HERO ───────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,180,198,0.10) 0%, transparent 70%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  padding: 80px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,198,0.12);
  border: 1px solid rgba(0,180,198,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}
.hero-trust-item svg { color: var(--teal); flex-shrink: 0; }

/* Phone Pulse */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 380px;
}
.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  animation: pulseRing 2.4s ease-out infinite;
  opacity: 0;
}
.pulse-ring:nth-child(1) { width: 120px; height: 120px; animation-delay: 0s; }
.pulse-ring:nth-child(2) { width: 190px; height: 190px; animation-delay: 0.6s; }
.pulse-ring:nth-child(3) { width: 270px; height: 270px; animation-delay: 1.2s; }
.pulse-ring:nth-child(4) { width: 350px; height: 350px; animation-delay: 1.8s; }
@keyframes pulseRing {
  0%   { transform: scale(0.7); opacity: 0.6; }
  100% { transform: scale(1);   opacity: 0; }
}
.phone-core {
  width: 80px; height: 80px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 12px rgba(0,180,198,0.15), 0 0 40px rgba(0,180,198,0.3);
}
.phone-core svg { width: 34px; height: 34px; color: var(--white); }
.stat-float {
  position: absolute;
  background: var(--white);
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
}
.stat-float .icon-box {
  width: 36px; height: 36px;
  background: var(--slate);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-float .icon-box svg { width: 18px; height: 18px; color: var(--teal); }
.stat-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-float span { font-size: 11px; color: var(--muted); font-weight: 500; }
.stat-float.top-left  { top: 40px;  left: -20px; }
.stat-float.bot-right { bottom: 40px; right: -20px; }

/* ─── VERTICALS ──────────────────────────────────────────────────── */
.verticals { padding: 96px 0; background: var(--slate); }
.verticals-header { text-align: center; margin-bottom: 56px; }
.verticals-header .section-sub { margin: 14px auto 0; }
.verticals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vertical-card {
  background: var(--white);
  border-radius: 14px;
  padding: 40px;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.vertical-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.vertical-card:hover { box-shadow: 0 16px 48px rgba(11,31,58,0.1); transform: translateY(-3px); }
.vertical-card:hover::after { transform: scaleX(1); }
.vertical-icon {
  width: 54px; height: 54px;
  background: rgba(0,180,198,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.vertical-icon svg { width: 26px; height: 26px; color: var(--teal); }
.vertical-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.vertical-card p { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--teal-dim);
  background: rgba(0,180,198,0.08);
  border: 1px solid rgba(0,180,198,0.2);
  padding: 5px 12px;
  border-radius: 100px;
}
.card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}
.card-link:hover { color: var(--teal); gap: 10px; }

/* ─── HOW IT WORKS ───────────────────────────────────────────────── */
.how-it-works { padding: 96px 0; background: var(--white); }
.hiw-header { text-align: center; margin-bottom: 64px; }
.hiw-header .section-sub { margin: 14px auto 0; }
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.hiw-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.hiw-step { text-align: center; padding: 0 20px; position: relative; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy);
}
.hiw-step.active .step-num { background: var(--teal); box-shadow: 0 0 0 2px var(--teal); }
.step-icon {
  width: 48px; height: 48px;
  background: var(--slate);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-icon svg { width: 22px; height: 22px; color: var(--navy); }
.hiw-step h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.hiw-step p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── STATS BAR ──────────────────────────────────────────────────── */
.stats-bar { background: var(--navy); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--teal); }
.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ─── WHY US ─────────────────────────────────────────────────────── */
.why-us { padding: 96px 0; background: var(--slate); }
.why-header { text-align: center; margin-bottom: 56px; }
.why-header .section-sub { margin: 14px auto 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
}
.feature-icon {
  width: 46px; height: 46px;
  background: rgba(0,180,198,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--teal); }
.feature-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── COMPLIANCE ─────────────────────────────────────────────────── */
.compliance { padding: 80px 0; background: var(--white); }
.compliance-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.compliance-text .section-sub { max-width: 100%; }
.compliance-points { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.compliance-point { display: flex; gap: 14px; align-items: flex-start; }
.check-icon {
  width: 22px; height: 22px;
  background: rgba(0,180,198,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon svg { width: 12px; height: 12px; color: var(--teal); }
.compliance-point strong { font-size: 15px; font-weight: 600; color: var(--navy); display: block; margin-bottom: 3px; }
.compliance-point span { font-size: 14px; color: var(--muted); }
.compliance-visual {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px;
  display: flex; flex-direction: column; gap: 16px;
}
.comp-badge {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px 20px;
}
.comp-badge-icon {
  width: 38px; height: 38px;
  background: rgba(0,180,198,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.comp-badge-icon svg { width: 18px; height: 18px; color: var(--teal); }
.comp-badge strong { font-size: 14px; font-weight: 600; color: var(--white); display: block; }
.comp-badge span { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ─── CTA BANNER ─────────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  background-image: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,180,198,0.12) 0%, transparent 70%);
  padding: 96px 0;
  text-align: center;
}
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 40px; }
.contact-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: background 0.2s, color 0.2s;
}
.contact-pill:hover { background: rgba(255,255,255,0.14); color: var(--white); }
.contact-pill svg { width: 15px; height: 15px; color: var(--teal); }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
footer {
  background: #070f1e;
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-logo { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--white); display: inline-block; }
.footer-logo span { color: var(--teal); }
.footer-address { margin-top: 20px; font-size: 13px; line-height: 1.8; }
.footer-contact-links { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.footer-contact-links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact-links a:hover { color: var(--teal); }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 64px 24px; }
  .hero-visual { height: 280px; }
  .stat-float.top-left { top: 0; left: 0; }
  .stat-float.bot-right { bottom: 0; right: 0; }
  .hiw-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .hiw-steps::before { display: none; }
  .compliance-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .verticals-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 32px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child,
  .stat-item:nth-last-child(2) { border-bottom: none; }
  .hiw-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  .pulse-ring { animation: none; opacity: 0.3; }
}


/* ================================================================
   INNER PAGES — Shared & Page-Specific Styles
   ================================================================ */

/* ─── PAGE HERO (shared across all inner pages) ──────────────────── */
.page-hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(0,180,198,0.08) 0%, transparent 70%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.page-hero-inner {
  max-width: 720px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 580px;
}

/* ─── CONTACT PAGE ───────────────────────────────────────────────── */
.contact-section {
  padding: 80px 0 96px;
  background: var(--slate);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: flex-start;
}

/* Contact Info — Left */
.contact-info-block h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.contact-info-block p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(0,180,198,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}
.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-detail-text strong {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-detail-text a,
.contact-detail-text span {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
  transition: color 0.2s;
}
.contact-detail-text a:hover { color: var(--teal); }

/* What Happens Next */
.contact-next {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.contact-next h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.contact-next-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-next-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.next-step-num {
  width: 24px;
  height: 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Contact Form — Right */
.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(11,31,58,0.06);
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form-card > p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
}
.wpforms-placeholder {
  background: var(--slate);
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.form-disclaimer {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 16px;
}
.form-disclaimer a {
  color: var(--teal);
  text-decoration: underline;
}

/* ─── WPFORMS — Clean Styles (no default CSS loaded) ─────────────── */

/* Field wrapper */
.wpforms-field {
  margin-bottom: 20px;
  padding: 0;
}

/* Labels */
.wpforms-field label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
  display: block;
  text-align: left;
}

/* Required asterisk */
.wpforms-required-label { color: var(--orange); margin-left: 2px; }

/* All inputs, selects, textarea */
.wpforms-field input[type="text"],
.wpforms-field input[type="email"],
.wpforms-field input[type="tel"],
.wpforms-field input[type="number"],
.wpforms-field select,
.wpforms-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--slate);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
}

/* Remove number input spinners from phone field */
.wpforms-field input[type="number"]::-webkit-outer-spin-button,
.wpforms-field input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.wpforms-field input[type="number"] {
  -moz-appearance: textfield;
}

/* Focus */
.wpforms-field input:focus,
.wpforms-field select:focus,
.wpforms-field textarea:focus {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,180,198,0.12);
}

/* Placeholder */
.wpforms-field input::placeholder,
.wpforms-field textarea::placeholder { color: #a0aec0; }

/* Textarea */
.wpforms-field textarea {
  resize: vertical;
  min-height: 120px;
}

/* Name field — force full width single column */
.wpforms-field-name .wpforms-field-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wpforms-field-name .wpforms-field-row-block {
  width: 100%;
  float: none;
}
/* Hide First/Last sub-labels */
.wpforms-field-name .wpforms-field-row-block label {
  display: none;
}

/* Select arrow */
.wpforms-field select {
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235a6a7a' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  cursor: pointer;
}

/* Submit button */
.wpforms-submit-container { padding: 0; margin-top: 8px; }
.wpforms-submit {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 15px 28px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.wpforms-submit:hover {
  background: var(--orange-h);
  transform: translateY(-1px);
}

/* Validation error */
.wpforms-field .wpforms-error {
  font-size: 12px;
  color: #e53e3e;
  margin-top: 4px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.wpforms-field input.wpforms-error,
.wpforms-field select.wpforms-error,
.wpforms-field textarea.wpforms-error {
  border-color: #e53e3e;
}

/* Responsive */
@media (max-width: 600px) {
  .wpforms-field-name .wpforms-field-row { flex-direction: column; }
}

/* ─── CONTACT PAGE RESPONSIVE ────────────────────────────────────── */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-card { padding: 28px 20px; }
  .page-hero { padding: 120px 0 60px; }
}

/* ================================================================
   HOW IT WORKS PAGE — Add to bottom of itlead-main.css
   ================================================================ */

/* ─── INTRO SECTION ──────────────────────────────────────────────── */
.hiw-intro {
  padding: 80px 0;
  background: var(--white);
}
.hiw-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hiw-intro-text .section-sub { max-width: 100%; }
.hiw-intro-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hiw-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  transition: box-shadow 0.2s;
}
.hiw-stat-card:hover {
  box-shadow: 0 4px 16px rgba(11,31,58,0.08);
}
.hiw-stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,180,198,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hiw-stat-icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}
.hiw-stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.hiw-stat-card span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── DETAILED STEPS ─────────────────────────────────────────────── */
.hiw-steps-detailed {
  padding: 80px 0;
  background: var(--slate);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hiw-step-detailed {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 48px;
  align-items: flex-start;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}
.hiw-step-detailed:last-child { border-bottom: none; }

.hiw-step-alt {
  background: var(--white);
}

/* Step number */
.hiw-step-number {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}
.hiw-step-number span {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.08;
  line-height: 1;
  letter-spacing: -0.04em;
}

/* Step content */
.hiw-step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,180,198,0.1);
  border: 1px solid rgba(0,180,198,0.2);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.hiw-step-content h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.hiw-step-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 600px;
}
.hiw-step-content p:last-of-type { margin-bottom: 24px; }

/* Step bullet points */
.hiw-step-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hiw-step-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}
.hiw-step-point svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
}

/* ─── CRITERIA SECTION ───────────────────────────────────────────── */
.hiw-criteria {
  padding: 96px 0;
  background: var(--white);
}
.hiw-criteria-text {
  text-align: center;
  margin-bottom: 56px;
}
.hiw-criteria-text .section-sub {
  margin: 14px auto 0;
}
.hiw-criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.criteria-card {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.criteria-card:hover {
  box-shadow: 0 8px 24px rgba(11,31,58,0.08);
  transform: translateY(-2px);
}
.criteria-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,180,198,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.criteria-icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}
.criteria-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.criteria-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hiw-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .hiw-criteria-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hiw-step-detailed {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hiw-step-number { justify-content: flex-start; }
  .hiw-step-number span { font-size: 48px; }
  .hiw-criteria-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   ABOUT PAGE — Add to bottom of itlead-main.css
   ================================================================ */

/* ─── MISSION SECTION ────────────────────────────────────────────── */
.about-mission {
  padding: 80px 0;
  background: var(--white);
}
.about-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-mission-text .section-sub { max-width: 100%; }

/* Stats stack */
.about-stat-stack {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-stat {
  text-align: center;
  padding: 24px 0;
}
.about-stat-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-num span { color: var(--teal); }
.about-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ─── STORY SECTION ──────────────────────────────────────────────── */
.about-story {
  padding: 80px 0;
  background: var(--slate);
}
.about-story-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: flex-start;
}
.about-story-label {
  padding-top: 8px;
}
.about-story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}
.about-story-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 680px;
}
.about-story-content p:last-child { margin-bottom: 0; }

/* ─── VERTICALS SECTION ──────────────────────────────────────────── */
.about-verticals {
  padding: 96px 0;
  background: var(--white);
}
.about-verticals-header {
  text-align: center;
  margin-bottom: 56px;
}
.about-verticals-header .section-sub {
  margin: 14px auto 0;
}
.about-verticals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.about-vertical-card {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-vertical-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-vertical-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,180,198,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-vertical-icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}
.about-vertical-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}
.about-vertical-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.about-vertical-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ─── VALUES SECTION ─────────────────────────────────────────────── */
.about-values {
  padding: 96px 0;
  background: var(--navy);
}
.about-values-header {
  text-align: center;
  margin-bottom: 56px;
}
.about-values-header .section-title { color: var(--white); }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
}
.about-value-card {
  background: rgba(255,255,255,0.03);
  padding: 36px;
  transition: background 0.2s;
}
.about-value-card:hover {
  background: rgba(255,255,255,0.07);
}
.about-value-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.about-value-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.about-value-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.about-value-card .card-text {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ─── CONTACT STRIP ──────────────────────────────────────────────── */
.about-contact-strip {
  padding: 48px 0;
  background: var(--slate);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.about-location {
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-location-icon {
  width: 40px;
  height: 40px;
  background: rgba(0,180,198,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-location-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}
.about-location strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.about-location span,
.about-location a {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.5;
  transition: color 0.2s;
}
.about-location a:hover { color: var(--teal); }

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-mission-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-story-inner { grid-template-columns: 1fr; gap: 24px; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-verticals-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .about-values-grid { grid-template-columns: 1fr; }
  .about-contact-strip-inner { flex-direction: column; gap: 28px; align-items: flex-start; }
}

/* ================================================================
   VERTICAL PAGES (Insurance + Home Services)
   Add to bottom of itlead-main.css
   ================================================================ */

/* ─── PAGE HERO ACTIONS (both vertical pages have two buttons) ────── */
.page-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ─── VERTICAL INTRO SECTION ─────────────────────────────────────── */
.vertical-intro {
  padding: 80px 0;
  background: var(--white);
}
.vertical-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
.vertical-intro-text .section-sub { max-width: 100%; }
.vertical-intro-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}
.vertical-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.vertical-point-icon {
  width: 42px;
  height: 42px;
  background: rgba(0,180,198,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vertical-point-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}
.vertical-point strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.vertical-point span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── SUB-VERTICALS SECTION ──────────────────────────────────────── */
.sub-verticals {
  padding: 96px 0;
  background: var(--slate);
}
.sub-verticals-header {
  text-align: center;
  margin-bottom: 56px;
}
.sub-verticals-header .section-sub { margin: 14px auto 0; }

/* 4-column grid for Insurance */
.sub-verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* 5-column adjusted for Home Services — wraps to 3+2 */
.sub-verticals-grid-5 {
  grid-template-columns: repeat(3, 1fr);
}
.sub-verticals-grid-5 .sub-vertical-card:nth-child(4),
.sub-verticals-grid-5 .sub-vertical-card:nth-child(5) {
  grid-column: span 1;
}

/* Center the last two cards in the 5-card grid */
.sub-verticals-grid-5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.sub-vertical-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.sub-vertical-card:hover {
  box-shadow: 0 8px 24px rgba(11,31,58,0.08);
  transform: translateY(-2px);
}
.sub-vertical-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sub-vertical-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,180,198,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sub-vertical-icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}
.sub-vertical-top h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.sub-vertical-card > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.sub-vertical-targets ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  margin: 0;
}
.sub-vertical-targets ul li {
  font-size: 13px;
  color: var(--charcoal);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.sub-vertical-targets ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 11px;
}

/* ─── QUALIFY SECTION ────────────────────────────────────────────── */
.vertical-qualify {
  padding: 80px 0;
  background: var(--navy);
}
.vertical-qualify-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.vertical-qualify-text .section-title { color: var(--white); }
.vertical-qualify-text .section-sub {
  color: rgba(255,255,255,0.65);
  max-width: 100%;
}
.vertical-qualify-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.qualify-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
}
.qualify-step-num {
  width: 32px;
  height: 32px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.qualify-step strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.qualify-step span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.sub-vertical-card .card-text {
  display: block;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .vertical-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .sub-verticals-grid { grid-template-columns: repeat(2, 1fr); }
  .sub-verticals-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .vertical-qualify-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .sub-verticals-grid { grid-template-columns: 1fr; }
  .sub-verticals-grid-5 { grid-template-columns: 1fr; }
}

/* ================================================================
   LEGAL PAGES (Privacy Policy + Terms of Service)
   Add to bottom of itlead-main.css
   ================================================================ */

.legal-section {
  padding: 64px 0 96px;
  background: var(--slate);
}
.legal-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: flex-start;
}

/* ─── CONTENT ────────────────────────────────────────────────────── */
.legal-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.legal-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.legal-block h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.legal-text {
  display: block;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}
.legal-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
  padding: 20px;
  background: var(--slate);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.legal-contact strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.legal-contact span {
  font-size: 14px;
  color: var(--muted);
}
.legal-contact a {
  font-size: 14px;
  color: var(--teal);
  transition: color 0.2s;
}
.legal-contact a:hover { color: var(--teal-dim); }

/* ─── SIDEBAR ────────────────────────────────────────────────────── */
.legal-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.legal-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.legal-sidebar-card h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.legal-sidebar-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-sidebar-card ul li a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
  line-height: 1.4;
}
.legal-sidebar-card ul li a:hover { color: var(--teal); }
.legal-sidebar-contact .card-text {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .legal-inner {
    grid-template-columns: 1fr;
  }
  .legal-sidebar {
    position: static;
    order: -1;
  }
  .legal-sidebar-card ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .legal-sidebar-card ul {
    grid-template-columns: 1fr;
  }
  .legal-block { padding: 24px 20px; }
}

/* ─── LOGO SWITCHING ─────────────────────────────────────────────── */

/* Default state — over hero (dark bg) — show light, hide dark */
.nav-logo .logo-light {
  display: block;
  height: 40px;
  width: auto;
}
.nav-logo .logo-dark {
  display: none;
  height: 40px;
  width: auto;
}

/* Scrolled state — white bg — show dark, hide light */
.navbar.scrolled .nav-logo .logo-light {
  display: none;
}
.navbar.scrolled .nav-logo .logo-dark {
  display: block;
}

/* ─── LOGO SWITCHING ─────────────────────────────────────────────── */

/* Default state — over hero (dark bg) — show light, hide dark */
.nav-logo .logo-light {
  display: block;
  height: 40px;
  width: auto;
}
.nav-logo .logo-dark {
  display: none;
  height: 40px;
  width: auto;
}

/* Scrolled state — white bg — show dark, hide light */
.navbar.scrolled .nav-logo .logo-light {
  display: none;
}
.navbar.scrolled .nav-logo .logo-dark {
  display: block;
}

/* ─── LOGO SWITCHING ─────────────────────────────────────────────── */

/* Default state — over hero (dark bg) — show light, hide dark */
.nav-logo .logo-light {
  display: block;
  height: 180px;
  width: auto;
}
.nav-logo .logo-dark {
  display: none;
  height: 180px;
  width: auto;
}

/* Scrolled state — white bg — show dark, hide light */
.navbar.scrolled .nav-logo .logo-light {
  display: none;
}
.navbar.scrolled .nav-logo .logo-dark {
  display: block;
}

/* Footer logo */
.footer-logo .logo-img {
  height: 150px;
  width: auto;
  display: block;
}

/* ================================================================
   PARTNERS PAGE — Add to bottom of itlead-main.css
   ================================================================ */

.partners-section {
  padding: 64px 0 96px;
  background: var(--slate);
  display: flex;
  flex-direction: column;
}
.partners-group {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
}
.partners-group:last-child { margin-bottom: 0; }

/* Group header */
.partners-group-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.partners-group-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,180,198,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.partners-group-icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}
.partners-group-header h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

/* Partners grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.partner-item {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color 0.2s, background 0.2s;
}
.partner-item:hover {
  border-color: var(--teal);
  background: rgba(0,180,198,0.04);
}
.partner-item span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.4;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-group { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .partners-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   HOW IT WORKS — Visual Flow Section
   Add to bottom of itlead-main.css
   ================================================================ */

.hiw-visual-flow {
  padding: 80px 0;
  background: var(--navy);
  background-image: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,180,198,0.08) 0%, transparent 70%);
}
.hiw-flow-header {
  text-align: center;
  margin-bottom: 56px;
}
.hiw-flow-header .section-title { color: var(--white); }

/* ─── DESKTOP FLOW ───────────────────────────────────────────────── */
.hiw-flow-diagram {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.hiw-flow-mobile { display: none; }

/* Flow step */
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
  max-width: 140px;
}

/* Bubble */
.flow-step-bubble {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  flex-shrink: 0;
}
.flow-step-bubble:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.12);
}
.flow-step-bubble--teal {
  background: rgba(0,180,198,0.2);
  border-color: rgba(0,180,198,0.4);
}
.flow-step-bubble--teal:hover {
  background: rgba(0,180,198,0.3);
}
.flow-step-bubble--orange {
  background: rgba(249,115,22,0.2);
  border-color: rgba(249,115,22,0.4);
}
.flow-step-bubble--orange:hover {
  background: rgba(249,115,22,0.3);
}
.flow-step-icon svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}
.flow-step-bubble--teal .flow-step-icon svg { color: var(--teal); }
.flow-step-bubble--orange .flow-step-icon svg { color: var(--orange); }

/* Step label */
.flow-step-label {
  text-align: center;
}
.flow-step-label strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.flow-step-label span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* Arrow */
.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  margin-top: 20px;
  flex-shrink: 0;
}
.flow-arrow svg {
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.2);
}

/* ─── MOBILE VERTICAL FLOW ───────────────────────────────────────── */
.flow-mobile-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.flow-mobile-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.flow-mobile-bubble {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.flow-mobile-bubble svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}
.flow-mobile-bubble--teal {
  background: rgba(0,180,198,0.2);
  border-color: rgba(0,180,198,0.4);
}
.flow-mobile-bubble--teal svg { color: var(--teal); }
.flow-mobile-bubble--orange {
  background: rgba(249,115,22,0.2);
  border-color: rgba(249,115,22,0.4);
}
.flow-mobile-bubble--orange svg { color: var(--orange); }
.flow-mobile-line {
  width: 1.5px;
  flex: 1;
  min-height: 32px;
  background: rgba(255,255,255,0.1);
  margin: 8px 0;
}
.flow-mobile-content {
  padding-top: 10px;
  padding-bottom: 24px;
}
.flow-mobile-content strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.flow-mobile-content .card-text {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hiw-flow-diagram { display: none; }
  .hiw-flow-mobile {
    display: flex;
    flex-direction: column;
    max-width: 480px;
    margin: 0 auto;
  }
}