/* Services Page Styles */

.svc-hero {
  padding: 6rem 0;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.svc-hero-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.svc-hero .eyebrow { color: var(--white); }
.svc-hero-title {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}
@media (min-width: 768px) {
  .svc-hero-title { font-size: 3.5rem; }
}
.svc-hero-lead {
  font-size: 1.25rem;
  color: #B3C1D6;
  margin-bottom: 2.5rem;
}
.svc-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 480px) {
  .svc-hero-actions { flex-direction: row; }
}

.svc-catalog {
  padding: 6rem 0;
  background: var(--paper);
}
.sc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
@media (min-width: 768px) {
  .sc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .sc-grid { grid-template-columns: repeat(3, 1fr); }
}
.sc-card-link {
  display: block;
}
.sc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.sc-card:hover {
  background: #fdfdfa; /* Slight warmth on hover */
}
.sc-card-icon {
  color: var(--brass);
  margin-bottom: 1.5rem;
}
.sc-card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.sc-card-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex: 1;
}
.sc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sc-card-link:hover .sc-card-cta {
  color: var(--brass);
}

.hardware-support {
  padding: 6rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hw-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .hw-inner { grid-template-columns: 1fr 1fr; align-items: center; }
}
.hw-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hw-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--paper);
  font-weight: 500;
}
.hw-item svg { color: var(--brass); }

.svc-cta {
  padding: 8rem 0;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.svc-cta-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.svc-cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.svc-cta-lead {
  font-size: 1.25rem;
  color: #B3C1D6;
  margin-bottom: 2.5rem;
}
.svc-cta-actions {
  display: flex;
  justify-content: center;
}