.apple .services-apple {
  width: 100%;
  border-radius: var(--apple-radius, 28px);
  overflow: hidden;
}

.apple .services-apple--centered {
  max-width: 1100px;
  margin: 0 auto;
}

.apple .services-apple--full {
  max-width: none;
}

.apple .services-apple--shadow {
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
}

/* Row 1 */
.apple .services-apple__hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}

.apple .services-apple__heroLeft {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 260px;
  background: rgba(255, 255, 255, 0.06);
    max-height: 400px;
}

.apple .services-apple__heroLeft--placeholder {
  background: rgba(255, 255, 255, 0.04);
}

.apple .services-apple__heroImage {
  width: 100%;
  height: 100%;
  min-height: 260px;
  height: 400px;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.apple .services-apple__heroRight {
  display: flex;
  align-items: center;
}

.apple .services-apple__title {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 18ch;
}

/* Divider */
.apple .services-apple__divider {
  margin-top: 30px;
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
}

/* Row 2 */
.apple .services-apple__info {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.apple .services-apple__subtitle {
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 650;
  max-width: 22ch;
}

.apple .services-apple__content {
  margin: 0;
  line-height: 1.6;
  opacity: 0.92;
  max-width: 72ch;
}

/* innerHTML spacing safety */
.apple .services-apple__content :where(p) {
  margin: 0 0 14px;
}
.apple .services-apple__content :where(p:last-child) {
  margin-bottom: 0;
}

.apple .services-apple__cta {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.apple .services-apple__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  backdrop-filter: blur(10px);
}

.apple .services-apple__learnmore {
  text-decoration: none;
  font-weight: 650;
  opacity: 0.92;
}

/* Row 3: 3-per-row grid */
.apple .services-apple__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 34px;
}

.apple .services-apple__card {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 10px;
}

.apple .services-apple__circle {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.apple .services-apple__icon {
  font-size: 20px;
  line-height: 1;
}

.apple .services-apple__cardTitle {
  margin-top: 4px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.apple .services-apple__cardDesc {
  line-height: 1.6;
  opacity: 0.86;
}

/* Responsive */
@media (max-width: 980px) {
  .apple .services-apple__hero {
    grid-template-columns: 1fr;
  }

  .apple .services-apple__title {
    max-width: 26ch;
  }

  .apple .services-apple__info {
    grid-template-columns: 1fr;
  }

  .apple .services-apple__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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