/* SERVICES GRID */

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.services-grid .card {
  display: flex;
  flex-direction: column;
}

.services-grid .card [class*="btn-"] {
  margin-top: auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}

.service-card-hook {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #00D4FF;
  margin-bottom: 12px;
}

.service-card-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.6;
}

.service-card-cta {
  margin-top: auto;
  padding-top: 24px;
}

/* PRICING */

.pricing-block {
  margin-top: 48px;
}

.pricing-block-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 20px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-tier {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
}

.pricing-amount {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #86DFAD;
}

/* OUTCOMES */

.outcome-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.outcome-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.outcome-icon {
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.outcome-text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* UPCOMING BANNER */

.upcoming-banner {
  border: 1px solid rgba(134, 223, 173, 0.25);
  background: rgba(134, 223, 173, 0.04);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 64px;
  text-align: center;
}

.upcoming-banner p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--green);
  line-height: 1.6;
}

/* ROI BLOCK */

.roi-block {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px;
  margin: 48px 0;
}

.roi-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* MOBILE */

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

/* ---- Services page typing target ---- */
.type-target {
  min-height: 1.5em;
}
