/* ============================================================
   HOMEFORCE · pm.css
   Property Management program page
   Accent: --ember · Hero: dark ink · Tone: authoritative, data-forward
   ============================================================ */

/* ── Hero ───────────────────────────────────────────────────── */
#pm-hero {
  min-height: 100vh;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.pm-hero-texture {
  position: absolute;
  inset: 0;
  background: url('../assets/textures/texture_dark.jpg') center/600px;
  opacity: .055;
}
.pm-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
.pm-hero-heading { color: #fff; margin-bottom: 24px; }
.pm-hero-heading em { font-style: italic; color: var(--ember); }
.pm-hero-sub { color: rgba(255,255,255,.45); max-width: 480px; margin-bottom: 36px; font-weight: 300; }
.pm-hero-stats {
  display: flex;
  gap: 28px;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 40px;
}

/* Services checklist card in hero */
.pm-services-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 3px solid var(--ember);
}
.pm-services-card-label {
  font-family: var(--fl);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ember);
  padding: 16px 22px 0;
  margin-bottom: 4px;
}
.pm-service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 22px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  transition: background var(--transition);
}
.pm-service-item:last-child { border-bottom: none; }
.pm-service-item:hover { background: rgba(255,255,255,.03); }
.pm-check {
  width: 20px; height: 20px;
  background: rgba(237,150,72,.12);
  border: 1px solid rgba(237,150,72,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Services — concrete ──────────────────────────────────────── */
.pm-services-section { background: var(--concrete); }
.pm-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.pm-service-card {
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.07);
  padding: 30px 26px;
  position: relative;
  transition: transform var(--transition);
}
.pm-service-card:hover { transform: translateY(-4px); }
.pm-service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(237,150,72,.35);
}
.pm-service-icon {
  width: 38px; height: 38px;
  background: rgba(237,150,72,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ember);
  margin-bottom: 16px;
}
.pm-service-title { font-family: var(--fd); font-size: 20px; color: #fff; margin-bottom: 10px; }
.pm-service-body { font-size: 13px; line-height: 1.72; color: rgba(255,255,255,.44); }

/* ── Who it's for — steel ─────────────────────────────────────── */
.pm-who-section { background: var(--steel); position: relative; overflow: hidden; }
.pm-who-texture {
  position: absolute;
  inset: 0;
  background: url('../assets/textures/texture_dark.jpg') center/500px;
  opacity: .07;
}
.pm-who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.pm-client-types { display: flex; flex-direction: column; gap: 0; }
.pm-client-type {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pm-client-type:last-child { border-bottom: none; }
.pm-client-num {
  font-family: var(--fd);
  font-size: 13px;
  color: var(--ember);
  background: rgba(237,150,72,.1);
  border: 1px solid rgba(237,150,72,.2);
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pm-client-title { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.pm-client-body { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.65; }
.pm-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.pm-portfolio-cell {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  padding: 28px 22px;
  text-align: center;
  transition: background var(--transition);
}
.pm-portfolio-cell:hover { background: rgba(255,255,255,.06); }
.pm-portfolio-num { font-family: var(--fd); font-size: 32px; color: var(--ember); line-height: 1; margin-bottom: 6px; }
.pm-portfolio-label { font-size: 12px; color: rgba(255,255,255,.3); }

/* ── Onboarding process — concrete ────────────────────────────── */
.pm-process-section { background: var(--concrete); }
.pm-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
  max-width: 860px;
}
.pm-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.pm-step-num {
  font-family: var(--fl);
  font-size: 12px;
  font-weight: 700;
  color: var(--ember);
  background: rgba(237,150,72,.1);
  border: 1px solid rgba(237,150,72,.2);
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pm-step-title { font-family: var(--fl); font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.pm-step-body { font-size: 13px; color: var(--smoke); line-height: 1.65; }

/* ── Owner portal — dark ──────────────────────────────────────── */
.pm-portal-section { background: var(--ink); position: relative; overflow: hidden; }
.pm-portal-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/textures/texture_dark.jpg') center/500px;
  opacity: .05;
}
.pm-portal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pm-portal-left h2 { color: #fff; margin-bottom: 14px; }
.pm-portal-left h2 em { font-style: italic; color: var(--ember); }
.pm-portal-left .body-lg { color: rgba(255,255,255,.44); margin-bottom: 28px; }
.pm-portal-features { display: flex; flex-direction: column; gap: 0; }
.pm-portal-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pm-portal-feature:last-child { border-bottom: none; }
.pm-feat-icon {
  width: 32px; height: 32px;
  background: rgba(237,150,72,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ember);
  flex-shrink: 0;
  margin-top: 2px;
}
.pm-feat-title { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.pm-feat-body { font-size: 12px; color: rgba(255,255,255,.38); line-height: 1.6; }
.pm-portal-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.pm-portal-preview {
  background: #fff;
  border: 1px solid var(--mist);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
  overflow: hidden;
}
.pm-portal-bar {
  background: var(--mist);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pm-portal-dots { display: flex; gap: 5px; }
.pm-portal-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,.15); }
.pm-portal-url { font-family: var(--fl); font-size: 10px; color: var(--smoke); letter-spacing: .04em; }
.pm-portal-nav { background: var(--ink); padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; }
.pm-portal-content { padding: 16px; }
.pm-portal-welcome {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--mist);
}
.pm-portal-avatar {
  width: 32px; height: 32px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fl);
  font-size: 10px;
  font-weight: 700;
  color: var(--ember);
  flex-shrink: 0;
}
.pm-portal-metrics {
  display: flex;
  gap: 0;
  border: 1px solid var(--mist);
  margin-bottom: 14px;
}
.pm-portal-metric {
  flex: 1;
  padding: 10px;
  text-align: center;
  border-right: 1px solid var(--mist);
}
.pm-portal-metric:last-child { border-right: none; }
.pm-portal-metric-num { font-family: var(--fd); font-size: 20px; color: var(--ember); line-height: 1; }
.pm-portal-metric-lbl { font-family: var(--fl); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; color: var(--smoke); margin-top: 3px; }

/* ── Quote form — dark ────────────────────────────────────────── */
.pm-quote-section { background: var(--ink); position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,.05); }
.pm-quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/textures/texture_dark.jpg') center/500px;
  opacity: .04;
}
.pm-quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.pm-quote-left h2 { color: #fff; margin-bottom: 16px; }
.pm-quote-left h2 em { font-style: italic; color: var(--ember); }
.pm-quote-sub { color: rgba(255,255,255,.4); font-weight: 300; margin-bottom: 32px; }
.pm-existing-client {
  background: rgba(237,150,72,.06);
  border: 1px solid rgba(237,150,72,.15);
  border-left: 3px solid var(--ember);
  padding: 18px 20px;
  margin-top: 28px;
}
.pm-existing-client p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 8px; }
.pm-existing-client a { color: var(--ember); font-weight: 500; }
.pm-form-section-label {
  font-family: var(--fl);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ember);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(237,150,72,.2);
  margin-top: 8px;
  margin-bottom: 4px;
}
.pm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .pm-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .pm-hero-inner,
  .pm-who-inner,
  .pm-portal-inner,
  .pm-quote-inner { grid-template-columns: 1fr; gap: 48px; }
  .pm-portal-preview { display: none; }
  .pm-steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pm-services-grid { grid-template-columns: 1fr; }
  .pm-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .pm-form-row { grid-template-columns: 1fr; }
}
