/* /supplies — social media management for building supply companies.
   The hero, steps, plans, faq and form are the same components as /social, so
   this file only defines the two sections that page doesn't have. */

/* ---------------- the problem ---------------- */
.sup-problem {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding-bottom: var(--space-40);
}
.sup-problem-card {
  background: var(--white);
  border-left: 4px solid var(--yellow);
  border-radius: var(--border-radius-md);
  padding: 24px 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}
.sup-problem-card h3 { font-size: 19px; font-weight: 800; line-height: 1.3; color: var(--blue); }
.sup-problem-card p { margin-top: 10px; font-size: 15px; line-height: 1.6; color: #555; }

/* ---------------- content pillars ---------------- */
.sup-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding-bottom: var(--space-40);
}
.sup-pillar {
  background: var(--white);
  border-radius: var(--border-radius-md);
  padding: 24px 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}
.sup-pillar h3 { font-size: 18px; font-weight: 800; line-height: 1.35; color: var(--blue); }
.sup-pillar p { margin-top: 10px; font-size: 15px; line-height: 1.6; color: #555; }

@media (min-width: 768px) {
  .sup-problem { grid-template-columns: repeat(3, 1fr); }
  .sup-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .sup-pillars { grid-template-columns: repeat(3, 1fr); }
}

/* ---------------- sample DM thread ---------------- */
.sup-thread {
  max-width: 620px;
  margin: 0 auto;
  padding-bottom: var(--space-40);
}
.sup-thread-label {
  margin-bottom: 14px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #8a8d99;
}
.sup-msg {
  max-width: 84%;
  margin-bottom: 10px;
  padding: 14px 16px;
  border-radius: var(--border-radius-md);
  font-size: 15px;
  line-height: 1.55;
}
.sup-msg-out {
  margin-right: auto;
  background: var(--blue);
  color: var(--white);
  border-bottom-left-radius: 2px;
}
.sup-msg-in {
  margin-left: auto;
  background: var(--yellow);
  color: var(--white);
  font-weight: 600;
  border-bottom-right-radius: 2px;
}
.sup-thread-hand {
  margin-top: 14px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
}

/* ---------------- the feed that backs it up ---------------- */
.sup-support {
  max-width: 62ch;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.7;
  color: #555;
}
.sup-support-fine {
  margin-top: 18px;
  padding-bottom: var(--space-40);
  font-size: 14.5px;
  color: #666;
}
.sup-support-fine a { color: var(--blue); font-weight: 700; text-decoration: underline; }

.sm-plan .price-note a { color: var(--blue); font-weight: 700; text-decoration: underline; white-space: nowrap; }

/* 3 steps here, not the 4 the shared /social grid is sized for */
@media (min-width: 768px) {
  .sm-steps { grid-template-columns: repeat(3, 1fr); }
}

.sup-proof .sm-stat-grid { grid-template-columns: repeat(2, 1fr); max-width: 520px; margin: 0 auto; }
.sup-proof .sm-stat-grid strong { font-size: 44px; }
.sup-proof-label { margin: 14px 0 0; text-align: center; font-size: 15px; font-weight: 600; color: #444; }
