/* GC landing page — page-specific to /for-general-contractors.
   Shared nav, hero, features, CTA, and footer styles come from theme.css. */

.nav-links a.nav-active {
  color: #fff;
  font-weight: 600;
}

/* === HOW IT WORKS — three-step strip === */
.gc-hiw {
  background: #f8fafc;
  padding: 80px 24px;
  border-top: 1px solid var(--border, #e5e7eb);
  border-bottom: 1px solid var(--border, #e5e7eb);
}

.gc-hiw-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.gc-hiw-badge {
  display: inline-block;
  background: rgba(29,78,216,0.08);
  color: var(--accent, #1d4ed8);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.gc-hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  text-align: left;
}

.gc-hiw-step {
  background: #fff;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
}

.gc-hiw-num {
  display: inline-block;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent, #1d4ed8);
  letter-spacing: -1px;
  margin-bottom: 8px;
  line-height: 1;
}

.gc-hiw-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text, #0f172a);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.gc-hiw-step p {
  font-size: 15px;
  color: var(--text2, #475569);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 700px) {
  .gc-hiw-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
