.oh-f-services-page {
  padding-top: 102px;
  min-height: 100vh;
  background: linear-gradient(165deg, #ccabff42 0%, #b2ccff99 40%, #eef3fc 72%, #6137d617 100%);
  position: relative;
  overflow-x: clip;
}

.oh-f-services-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 90% 15%, rgba(0, 81, 215, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 10% 58%, rgba(182, 61, 255, 0.05), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.oh-f-services-hero {
  position: relative;
  z-index: 1;
  width: var(--inner);
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(1.6rem, 4vw, 2.7rem);
  text-align: center;
}

.oh-f-services-hero__kicker {
  margin: 0 0 1rem;
  color: var(--c-orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.oh-f-services-hero h1 {
  margin: 0 0 1.2rem;
  font-size: clamp(2rem, 4.7vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--c-text);
}

.oh-f-services-hero__accent {
  color: var(--c-blue);
}

.oh-f-services-hero__lead {
  margin: 0 auto;
  max-width: 44rem;
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-body);
}

.oh-f-services-grid-wrap {
  position: relative;
  z-index: 1;
  width: var(--inner);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(3.5rem, 6vw, 5rem);
}

.oh-f-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 900px) {
  .oh-f-services-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
  }

  .oh-f-svc-card--idc {
    grid-column: 1 / span 8;
  }

  .oh-f-svc-card--wifi {
    grid-column: 9 / span 4;
  }

  .oh-f-svc-card--intercloud {
    grid-column: 1 / span 5;
  }

  .oh-f-svc-card--infra {
    grid-column: 6 / span 7;
  }
}

.oh-f-svc-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.55rem;
  min-height: 226px;
  padding: 1.9rem 2rem;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(213, 226, 250, 0.96);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 251, 255, 0.96) 100%);
  box-shadow:
    0 8px 24px rgba(32, 70, 160, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.oh-f-svc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.16);
  box-shadow:
    0 16px 34px rgba(36, 73, 164, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.oh-f-svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.oh-f-svc-card--idc {
  min-height: 248px;
  padding-right: 8.5rem;
}

.oh-f-svc-card--idc::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 46%, rgba(242, 247, 255, 0.92) 100%);
}

.oh-f-svc-card--wifi {
  min-height: 248px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(252, 248, 255, 0.96) 100%);
}

.oh-f-svc-card--wifi::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 28%, rgba(250, 243, 255, 0.9) 100%);
}

.oh-f-svc-card--intercloud {
  min-height: 220px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(252, 248, 255, 0.96) 100%);
}

.oh-f-svc-card--intercloud::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 28%, rgba(249, 244, 255, 0.88) 100%);
}

.oh-f-svc-card--infra {
  min-height: 220px;
  padding-right: 8.2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 251, 255, 0.96) 100%);
}

.oh-f-svc-card--infra::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 34%, rgba(243, 248, 255, 0.94) 100%);
}

.oh-f-svc-card--stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-right: 2rem;
}

.oh-f-svc-card__head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.oh-f-svc-card__icon,
.oh-f-svc-card__body,
.oh-f-svc-card__cta {
  position: relative;
  z-index: 2;
}

.oh-f-svc-card__icon {
  flex-shrink: 0;
  width: 78px;
  height: 78px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 24px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.oh-f-svc-card__body {
  display: flex;
  flex: 1;
  min-width: 0;
  max-width: 34rem;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
}

.oh-f-svc-card--idc .oh-f-svc-card__body {
  max-width: 30rem;
}

.oh-f-svc-card--infra .oh-f-svc-card__body {
  max-width: 28rem;
}

.oh-f-svc-card--stacked .oh-f-svc-card__body {
  max-width: 17rem;
}

.oh-f-svc-card__title {
  margin: 0;
  color: #173d7a;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.oh-f-svc-card--wifi .oh-f-svc-card__title,
.oh-f-svc-card--intercloud .oh-f-svc-card__title,
.oh-f-svc-card--infra .oh-f-svc-card__title {
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
}

.oh-f-svc-card__desc {
  margin: 0;
  max-width: 34rem;
  color: #4f638a;
  font-size: 15px;
  line-height: 1.8;
}

.oh-f-svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.55rem;
  color: #2563eb;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.oh-f-svc-card__link::after {
  content: '';
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}


.oh-f-svc-card__cta svg {
  width: 22px;
  height: 22px;
  display: block;
}

.oh-f-svc-card__cta path {
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.oh-f-svc-card__art {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.98;
}

.oh-f-svc-card__art svg {
  display: block;
  width: 100%;
  height: auto;
}

.oh-f-svc-card__art--idc {
  right: -0.4rem;
  bottom: -0.2rem;
  width: min(41%, 360px);
}

.oh-f-svc-card__art--wifi {
  right: -0.45rem;
  top: -0.45rem;
  width: 59%;
  opacity: 0.96;
}

.oh-f-svc-card__art--intercloud {
  right: -0.35rem;
  bottom: -0.25rem;
  width: 58%;
}

.oh-f-svc-card__art--infra {
  right: -0.5rem;
  top: 0.05rem;
  width: min(46%, 340px);
}

/* bottom highlights */
.oh-f-services-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(213, 226, 250, 0.96);
  border-radius: 22px;
  box-shadow:
    0 8px 24px rgba(32, 70, 160, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: hidden;
}

.oh-f-services-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.55rem 1.65rem;
  position: relative;
}

.oh-f-services-highlight + .oh-f-services-highlight {
  border-top: 1px solid rgba(216, 228, 251, 0.75);
}

.oh-f-services-highlight__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  background: #eef4ff;
}

.oh-f-services-highlight__body {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
}

.oh-f-services-highlight__title {
  color: #1f3e7e;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
}

.oh-f-services-highlight__desc {
  color: #5d6f93;
  font-size: 14px;
  line-height: 1.65;
}

@media (min-width: 900px) {
  .oh-f-services-highlights {
    grid-template-columns: repeat(4, 1fr);
  }

  .oh-f-services-highlight {
    min-height: 138px;
  }

  .oh-f-services-highlight + .oh-f-services-highlight {
    border-top: 0;
  }

  .oh-f-services-highlight:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: 0;
    width: 1px;
    height: calc(100% - 56px);
    background: rgba(216, 228, 251, 0.95);
  }
}

@media (max-width: 899px) {
  .oh-f-services-grid {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .oh-f-svc-card,
  .oh-f-svc-card--idc,
  .oh-f-svc-card--wifi,
  .oh-f-svc-card--intercloud,
  .oh-f-svc-card--infra {
    min-height: auto;
    padding: 1.4rem 1.35rem 5.4rem;
  }

  .oh-f-svc-card,
  .oh-f-svc-card--idc,
  .oh-f-svc-card--infra,
  .oh-f-svc-card--stacked {
    padding-right: 1.35rem;
  }

  .oh-f-svc-card__icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
  }

  .oh-f-svc-card__body,
  .oh-f-svc-card--idc .oh-f-svc-card__body,
  .oh-f-svc-card--infra .oh-f-svc-card__body,
  .oh-f-svc-card--stacked .oh-f-svc-card__body {
    max-width: 100%;
  }

  .oh-f-svc-card__title,
  .oh-f-svc-card--wifi .oh-f-svc-card__title,
  .oh-f-svc-card--intercloud .oh-f-svc-card__title,
  .oh-f-svc-card--infra .oh-f-svc-card__title {
    font-size: 1.28rem;
  }

  .oh-f-svc-card__desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .oh-f-svc-card__cta {
    width: 58px;
    height: 58px;
    right: 1rem;
    bottom: 1rem;
  }

  .oh-f-svc-card__art--idc,
  .oh-f-svc-card__art--wifi,
  .oh-f-svc-card__art--intercloud,
  .oh-f-svc-card__art--infra {
    width: 50%;
    opacity: 0.72;
  }

  .oh-f-svc-card__art--idc {
    right: -0.1rem;
    bottom: 0.45rem;
  }

  .oh-f-svc-card__art--wifi {
    right: -0.15rem;
    top: auto;
    bottom: 1.4rem;
  }

  .oh-f-svc-card__art--intercloud {
    right: -0.1rem;
    bottom: 0.7rem;
  }

  .oh-f-svc-card__art--infra {
    right: -0.15rem;
    top: auto;
    bottom: 0.8rem;
  }

  .oh-f-services-highlight {
    padding: 1.2rem 1.1rem;
  }

  .oh-f-services-highlight__icon {
    width: 50px;
    height: 50px;
  }
}
