/* ===== SHARED STYLES: vacuum-systems, plasma-systems, glossary ===== */
/* Mirrors the design language of facilities.css and contact.css       */

.services-page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1rem 3rem 1rem;
}

/* ── Hero banner ── */
.services-hero {
  text-align: center;
  margin-bottom: 2rem;
}

.services-intro {
  max-width: 880px;
  margin: 0 auto;
  color: #44524a;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ── Section titles ── */
.services-section-title {
  color: #22302a;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ── White panel cards ── */
.services-panel {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(31, 77, 58, 0.06);
  padding: 1.75rem;
  margin-bottom: 1.75rem;
}

/* ── 3-column offer grid ── */
.services-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.services-offer-card {
  background: #f7fbf7;
  border: 1px solid #d7e3da;
  border-radius: 12px;
  padding: 1.25rem;
}

.services-offer-card h4 {
  color: #1f4d3a;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.services-offer-card p {
  color: #44524a;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ── 2-column keyword/application table ── */
.services-keyword-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  margin-top: 0.75rem;
}

.services-keyword-grid span {
  display: block;
  background: #eef6f0;
  border: 1px solid #c9dfcf;
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  color: #1f4d3a;
  font-size: 0.97rem;
  font-weight: 500;
}

/* ── Capability list (replaces facility-capability-card style) ── */
.services-capability-item {
  padding: 1rem 0;
  border-bottom: 1px solid #e3ece5;
}

.services-capability-item:last-child {
  border-bottom: none;
}

.services-capability-item h4 {
  color: #1f4d3a;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.services-capability-item p {
  color: #44524a;
  line-height: 1.8;
  margin-bottom: 0;
}

.services-methods {
  color: #66756d;
  font-size: 0.97rem;
  margin-top: 0.4rem;
}

/* ── CTA row ── */
.services-cta-panel {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(31, 77, 58, 0.06);
  padding: 1.75rem;
  margin-bottom: 1.75rem;
}

.services-cta-panel p {
  color: #44524a;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.services-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.services-cta-btn {
  display: inline-block;
  background: #1f4d3a;
  color: #ffffff !important;
  text-decoration: none;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid #1f4d3a;
  transition: all 0.2s ease;
}

.services-cta-btn:hover {
  background: #2f6b52;
  border-color: #2f6b52;
  color: #ffffff !important;
  text-decoration: none;
}

.services-cta-secondary {
  background: #ffffff;
  color: #1f4d3a !important;
  border: 1px solid #2f6b52;
}

.services-cta-secondary:hover {
  background: #eef6f0;
  color: #1f4d3a !important;
}

/* ── Glossary-specific ── */
.glossary-term-list {
  margin-top: 0.5rem;
}

.glossary-term {
  padding: 0.9rem 0;
  border-bottom: 1px solid #e3ece5;
}

.glossary-term:last-child {
  border-bottom: none;
}

.glossary-term dt {
  color: #1f4d3a;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.glossary-term dd {
  color: #44524a;
  line-height: 1.8;
  margin-left: 0;
}

.glossary-section-label {
  display: inline-block;
  background: #1f4d3a;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  margin-top: 1rem;
}

/* ── Responsive ── */
@media only screen and (max-width: 900px) {
  .services-offer-grid {
    grid-template-columns: 1fr;
  }
  .services-keyword-grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 700px) {
  .services-page-wrap {
    padding: 0.5rem 0.75rem 2rem 0.75rem;
  }
  .services-cta-row {
    flex-direction: column;
  }
  .services-cta-btn {
    text-align: center;
  }
}
