/* Service detail pages (e.g. service-idc-hosting.html) */

.oh-f-svc-detail-page {
  padding-top: 102px;
  min-height: 100vh;
  background: linear-gradient(165deg, #e8f1ff 0%, #f5f8ff 40%, #fafcff 100%);
  position: relative;
  overflow-x: clip;
}

.oh-f-svc-detail-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 45% at 50% 100%, rgba(0, 81, 215, 0.06), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.oh-f-svc-detail-inner {
  position: relative;
  z-index: 1;
  width: var(--inner);
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(4rem, 8vw, 5.5rem);
}

/* Main white sheet */
.oh-f-svc-detail-sheet {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(0, 81, 215, 0.08);
  box-shadow: 0 12px 48px rgba(0, 42, 194, 0.1);
  overflow: hidden;
}

/* Yellow / orange gradient hero band */
.oh-f-svc-detail-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(95deg, #f08200 0%, #f5a623 38%, #ffc14a 72%, #ffd978 100%);
  color: #fff;
}

.oh-f-svc-detail-hero__icon-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.oh-f-svc-detail-hero__icon-wrap svg {
  color: #fff;
}

.oh-f-svc-detail-hero__text {
  flex: 1;
  min-width: min(100%, 280px);
}

.oh-f-svc-detail-hero h1 {
  margin: 0 0 0.65rem;
  font-family: var(--font-site);
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.oh-f-svc-detail-hero__lead {
  margin: 0;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  max-width: 52rem;
}

.oh-f-svc-detail-body {
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.5rem, 4vw, 2.5rem) clamp(2rem, 5vw, 2.75rem);
}

.oh-f-svc-detail-intro {
  margin: 0 0 clamp(2rem, 4vw, 2.5rem);
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(0, 81, 215, 0.12);
  border-radius: 16px;
  background: linear-gradient(157deg, #f8fbff 0%, #eef4ff 100%);
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-body);
}

.oh-f-svc-detail-h2 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.15rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
  color: var(--c-text);
}

.oh-f-svc-detail-h2__bar {
  width: 4px;
  height: 1.35em;
  border-radius: 2px;
  background: var(--c-purple);
  flex-shrink: 0;
}

.oh-f-svc-detail-section {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.oh-f-svc-detail-section:last-child {
  margin-bottom: 0;
}

.oh-f-svc-detail-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem 2rem;
  grid-template-columns: 1fr;
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-blue);
  font-weight: 600;
}

@media (min-width: 640px) {
  .oh-f-svc-detail-bullets {
    grid-template-columns: repeat(2, 1fr);
  }
}

.oh-f-svc-detail-bullets li {
  position: relative;
  padding-left: 1rem;
}

.oh-f-svc-detail-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  font-weight: 800;
}

.oh-f-svc-detail-feat-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .oh-f-svc-detail-feat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}

.oh-f-svc-detail-feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  min-width: 0;
  padding: 1.25rem 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 81, 215, 0.1);
  background: linear-gradient(157deg, #fafcff 0%, #f0f5ff 100%);
  box-shadow: 0 4px 20px rgba(0, 42, 194, 0.05);
}

.oh-f-svc-detail-feat > div {
  min-width: 0;
}

.oh-f-svc-detail-feat__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: var(--c-svc-feat-num-bg);
  color: var(--c-blue);
  font-size: 17px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oh-f-svc-detail-feat h3 {
  margin: 0 0 0.4rem;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--c-text);
}

.oh-f-svc-detail-feat p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-muted);
}
