/* ============================================
   CONTRACTOR LANDING PAGE — SPECIFIC STYLES
   Extends shared styles from styles.css
   ============================================ */

/* Contractor Hero — Construction grid motif */
.hero-bg-grid {
  background-image: 
    linear-gradient(var(--hero-grid, rgba(63, 110, 140, 0.04)) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-grid, rgba(63, 110, 140, 0.04)) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Leads metaphor — Crossed-out leads visual */
.leads-metaphor {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  width: 100%;
  max-width: 220px;
}

.lead-crossed {
  position: relative;
  padding: var(--space-sm) var(--space-md);
  background: var(--lead-bg, color-mix(in srgb, var(--accent) 8%, transparent));
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text);
  opacity: 0.7;
}

.lead-crossed::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
  transform: rotate(-5deg);
}

/* Contractor process — Longer step content */
.steps-contractor .step p {
  font-size: 0.8125rem;
  line-height: 1.5;
}

/* ============================================
   STANDARDS & EXPECTATIONS
   ============================================ */
.standards {
  padding: var(--space-2xl) 0;
  background: var(--card-bg);
}

.standards-list {
  list-style: none;
  max-width: 560px;
  margin: var(--space-xl) auto 0;
}

.standards-list li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
  font-size: 1rem;
  color: var(--text);
}

.standards-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
}

/* ============================================
   FOUNDING CONTRACTOR CTA
   Burnt Orange accent border
   ============================================ */
.founder-cta {
  padding: var(--space-3xl) 0;
  background: var(--founder-cta-bg, linear-gradient(135deg, rgba(63, 110, 140, 0.08) 0%, rgba(47, 143, 131, 0.06) 100%));
}

.founder-content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: var(--space-2xl);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  box-shadow: var(--shadow-sm);
}

.founder-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.founder-content p {
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.founder-note {
  font-size: 0.875rem;
  color: var(--text);
  opacity: 0.7;
  margin-top: var(--space-sm) !important;
}

