/* =============================================
   SERVICES PAGE
   ============================================= */

.teal-text { color: var(--teal); font-style: normal; }

.page-hero__sub {
  max-width: 580px;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-top: 20px;
  color: var(--white-60);
}

/* SERVICE DETAIL SECTION */
.svc-detail { padding: 100px 0; }

.svc-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.svc-detail--reverse .svc-detail__grid {
  direction: rtl;
}
.svc-detail--reverse .svc-detail__grid > * {
  direction: ltr;
}

.svc-detail__num {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--teal);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: -16px;
}

.svc-detail__text h2 { margin-top: 8px; margin-bottom: 24px; }
.svc-detail__text p { font-size: 1rem; line-height: 1.75; }

/* FEATURES LIST */
.svc-detail__features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feat-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.feat-item:first-child { border-top: 1px solid var(--border); }

.feat-item__icon {
  width: 44px;
  height: 44px;
  background: var(--teal-dim);
  border: 1px solid rgba(0,170,177,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feat-item h4 { margin-bottom: 6px; font-size: 1rem; }
.feat-item p { font-size: 0.9rem; line-height: 1.65; }

/* DELIVERABLES */
.deliverables { padding: 100px 0; }

.deliv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.deliv__col {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.deliv__col--highlight {
  border-color: rgba(0,170,177,0.4);
  box-shadow: 0 0 40px rgba(0,170,177,0.08);
}

.deliv__head {
  padding: 20px 32px;
  background: var(--white-10);
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}

.deliv__col--highlight .deliv__head {
  background: rgba(0,170,177,0.12);
  border-bottom-color: rgba(0,170,177,0.25);
}

.deliv__head span { color: var(--teal); }

.deliv__list {
  list-style: none;
  padding: 8px 0;
}

.deliv__list li {
  padding: 12px 32px;
  font-size: 0.9rem;
  color: var(--white-60);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}
.deliv__list li:last-child { border-bottom: none; }

.deliv__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.7;
}

/* CTA BANNER (from home.css — shared) */
.cta-banner {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--dark-blue-2);
}
.cta-banner__glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,170,177,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-banner h2 { font-size: clamp(2rem, 4vw, 3rem); }
.cta-banner__sub { max-width: 440px; font-size: 0.95rem; line-height: 1.7; }

@media (max-width: 900px) {
  .svc-detail__grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-detail--reverse .svc-detail__grid { direction: ltr; }
  .deliv__grid { grid-template-columns: 1fr; }
}
