.mango_services {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.mango_services--centered {
  width: min(100%, var(--site-max-width, 1400px));
  max-width: var(--site-max-width, 1400px);
  margin-inline: auto;
}

.mango_services--full {
  width: 100%;
  max-width: 100%;
}

.mango_services__stack {
  position: relative;
  display: flex;
  flex-direction: column;
}

.mango_services__media--background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.mango_services__media--background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--primary-color) 20%, transparent), color-mix(in srgb, var(--background-color) 72%, transparent)),
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--secondary-color) 16%, transparent), transparent 52%);
}

.mango_services--parallax .mango_services__media--background {
  background-attachment: fixed;
}

.mango_services__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.1rem, 3vw, 2rem);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.mango_services__layout--minimal {
  grid-template-columns: minmax(0, 1fr);
}

.mango_services__intro {
  width: min(100%, 52rem);
  margin-inline: 0;
  display: grid;
  gap: 0.8rem;
  justify-items: start;
  text-align: left;
}

.mango_services__subtitle {
  margin: 0;
  color: var(--button-color);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.mango_services__title {
  margin: 0;
  color: var(--dark-background-color);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.mango_services__separator {
  width: 6rem;
  height: 3px;
  margin: 0.15rem 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--button-color), transparent);
}

.mango_services__content {
  width: min(100%, 50rem);
  margin: 0;
  color: var(--muted-text-color);
  line-height: 1.8;
}

.mango_services__bulletGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem 1.15rem;
}

.mango_services__bulletItem {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  align-self: start;
  min-height: 100%;
  padding: 1.15rem 1.1rem;
  border-radius: var(--radius-lg);
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--line-color) 80%, transparent);
  box-shadow: none;
}

.mango_services__bulletItem--minimal {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
}

.mango_services__bulletMark {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--button-color) 15%, transparent);
  color: var(--button-color);
}

.mango_services__bulletMark--fallback {
  background: color-mix(in srgb, var(--secondary-color) 15%, transparent);
}

.mango_services__icon,
.mango_services__fallbackLetter {
  line-height: 1;
}

.mango_services__fallbackLetter {
  font-size: 1rem;
  font-weight: 700;
}

.mango_services__bulletBody {
  min-width: 0;
  display: grid;
  gap: 0.85rem;
}

.mango_services__bulletTitle {
  color: var(--text-color);
  font-size: clamp(1.08rem, 0.8vw + 0.9rem, 1.2rem);
  font-weight: 700;
  line-height: 1.2;
}

.mango_services__bulletDesc {
  margin: 0;
  color: var(--muted-text-color);
  line-height: 1.5;
}

.mango_services__right {
  min-width: 0;
}

.mango_services__featureGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
  min-width: 0;
}

.mango_services__featureCard {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--line-color) 82%, transparent);
  box-shadow: 0 12px 30px rgba(31, 22, 15, 0.08);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.mango_services__featureCard:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--button-color) 28%, var(--line-color));
  box-shadow: 0 18px 36px rgba(31, 22, 15, 0.12);
}

.mango_services__featureVisual {
  background: color-mix(in srgb, var(--primary-color) 14%, transparent);
}

.mango_services__featureMedia,
.mango_services__featureIcon {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 22%, transparent), color-mix(in srgb, var(--button-color) 14%, transparent)),
    color-mix(in srgb, var(--primary-color) 8%, #ffffff);
}

.mango_services__featureMedia img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mango_services__featureIcon {
  display: grid;
  place-items: center;
  color: var(--button-color);
  font-size: clamp(2rem, 2.5vw, 3rem);
}

.mango_services__featureBody {
  display: grid;
  flex: 1 1 auto;
  gap: 0.55rem;
  padding: 1.15rem 1.15rem 1.35rem;
}

.mango_services__featureTitle {
  margin: 0;
  color: var(--text-color);
  font-size: clamp(1.15rem, 0.9vw + 0.95rem, 1.35rem);
  line-height: 1.18;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mango_services__featureSubtitle {
  margin: 0;
  color: var(--button-color);
  font-size: clamp(0.84rem, 0.45vw + 0.72rem, 0.96rem);
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mango_services__featureRule {
  width: 3.25rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--button-color), color-mix(in srgb, var(--button-color) 45%, transparent));
}

.mango_services__featureDesc {
  margin: 0;
  color: var(--muted-text-color);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1050px) {
  .mango_services__bulletGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.2rem 1rem;
  }

  .mango_services__featureGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

@media (max-width: 700px) {
  .mango_services__bulletGrid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .mango_services__featureGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mango_services {
    border-radius: var(--radius-lg);
  }

  .mango_services__layout {
    padding: 1rem;
  }
}

.peach_services {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.peach_services--centered {
  width: min(100%, var(--site-max-width, 1400px));
  max-width: var(--site-max-width, 1400px);
  margin-inline: auto;
}

.peach_services--full {
  width: 100%;
  max-width: 100%;
}

.peach_services__stack {
  position: relative;
  display: flex;
  flex-direction: column;
}

.peach_services__media--background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.peach_services__media--background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--primary-color) 26%, transparent), color-mix(in srgb, var(--primary-color) 54%, transparent)),
    linear-gradient(90deg, color-mix(in srgb, white 12%, transparent), transparent);
}

.peach_services--parallax .peach_services__media--background {
  background-attachment: fixed;
}

.peach_services__hero {
  order: 1;
  min-height: clamp(12rem, 28vw, 20rem);
  margin: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-color);
}

.peach_services--reverse .peach_services__hero {
  order: 2;
  margin-top: 0;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.peach_services__heroImage {
  width: 100%;
  min-height: inherit;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.peach_services__layout {
  position: relative;
  z-index: 1;
  order: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.55fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.peach_services--background-media .peach_services__layout {
  min-height: clamp(22rem, 44vw, 38rem);
  align-items: center;
}

.peach_services--reverse .peach_services__left {
  order: 2;
}

.peach_services--reverse .peach_services__right {
  order: 1;
}

.peach_services__content,
.peach_services__itemDesc {
  color: var(--muted-text-color);
  line-height: 1.75;
}

.peach_services--background-media .peach_services__left,
.peach_services--minimal .peach_services__left {
  width: min(100%, 34rem);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--primary-color) 88%, transparent);
  backdrop-filter: blur(10px);
}

.peach_services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.peach_services__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--primary-color) 26%, transparent);
  border: 1px solid var(--line-color);
}

.peach_services__iconWrap {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--button-color) 18%, transparent);
  color: var(--button-color);
}

.peach_services__itemTitle {
  color: var(--text-color);
  font-weight: 700;
}

.peach_services__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

  .peach_services--reverse .peach_services__left,
  .peach_services--reverse .peach_services__right {
    order: initial;
  }
}

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

@media (max-width: 640px) {
  .peach_services {
    border-radius: var(--radius-lg);
  }

  .peach_services__layout {
    padding: 1rem;
  }

  .peach_services__hero {
    margin: 1rem;
    margin-bottom: 0;
  }
}
