/* ─────────────────────────────────────────────
   Service sub-page styles
───────────────────────────────────────────── */

.partner-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
}

/* Capability cards */
.capability-card {
  background-color: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 1rem;
  padding: 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.capability-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.bg-cream .capability-card {
  background-color: #ffffff;
}

.bg-white .capability-card {
  background-color: #F1EBDE;
}

.capability-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(195,149,35,0.1);
  color: #A87E1E;
  margin-bottom: 1.25rem;
}

.capability-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #182F16;
  margin-bottom: 0.5rem;
}

.capability-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Check icon in lists */
.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(195,149,35,0.12);
  color: #8A6A19;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 2px;
}

/* Stats */
.stat-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.stat-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #182F16;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  min-width: 3.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

/* Service cards on homepage */
.service-card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 1.5rem;
  padding: 2.75rem 2.25rem 2rem;
  transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #C39523 0%, rgba(195,149,35,0.3) 100%);
  border-radius: 3px 0 0 3px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-card:hover {
  box-shadow: 0 20px 60px rgba(24,47,22,0.12), 0 4px 16px rgba(24,47,22,0.06);
  transform: translateY(-6px);
  border-color: rgba(195,149,35,0.2);
}

.service-card .service-number {
  margin-bottom: 1.5rem;
}

.service-card-heading {
  font-size: 1.375rem;
  font-weight: 700;
  color: #182F16;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
}

.service-card-body {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.7;
  flex-grow: 1;
}

.service-card-partner {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C39523;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(195,149,35,0.15);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6b7280;
  margin-top: 1rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.service-card:hover .service-card-link {
  gap: 0.65rem;
  color: #C39523;
}
