/* Detailed, crawlable process cards shared across PBW service pages. */
.specialty-section {
  background: linear-gradient(180deg, #090909, #111);
  border-top: 1px solid #262626;
  border-bottom: 1px solid #262626;
}

.specialty-section .specialty-kicker {
  margin: 0 0 8px;
  color: var(--orange, #ff8c1a);
  font: 800 15px/1.2 "Rajdhani", Arial, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.specialty-section .specialty-intro {
  max-width: 900px;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.specialty-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
  background: linear-gradient(145deg, #181818, #0c0c0c);
  border: 1px solid #343434;
  border-top: 3px solid var(--orange, #ff8c1a);
  border-radius: 5px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.specialty-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(23px, 2.2vw, 29px);
  line-height: 1.08;
}

.specialty-card h3 a {
  color: inherit;
  text-decoration: none;
}

.specialty-card h3 a:hover {
  color: var(--orange, #ff8c1a);
}

.specialty-card p {
  margin: 0 0 18px;
  color: #c2c2c2;
  font-size: 16px;
  line-height: 1.68;
}

.specialty-card .specialty-link {
  margin-top: auto;
  color: var(--orange, #ff8c1a);
  font: 800 15px/1.2 "Rajdhani", Arial, sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.specialty-card .specialty-link:hover {
  color: #fff;
}

/* Keep the homepage service choices as clean square buttons. */
.services {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services .card {
  display: flex !important;
  aspect-ratio: 1 / 1;
  min-width: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px 22px;
  text-align: center;
}

.services .card h4 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 29px);
  line-height: 1.12;
}

.services .card h4 i {
  display: block;
  margin-bottom: 17px;
  font-size: 34px;
}

.service-button-action {
  display: inline-block;
  margin-top: 20px;
  color: var(--orange, #ff8c1a);
  font: 800 14px/1.2 "Rajdhani", Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .specialty-grid {
    grid-template-columns: 1fr;
  }

  .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .services {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .specialty-card,
  .specialty-card a {
    transition: none !important;
  }
}
