/* features02：对照 property-management-software/feature-highlights.htm
   左文案清单 + 右建筑拼贴（图表卡、20% 贴纸、利润卡）。 */

.features02 {
  overflow: hidden;
  padding: var(--section-y) var(--page-pad);
  background: var(--color-bg);
}

.features02__inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: var(--space-6);
  max-width: var(--content-max);
  margin-inline: auto;
}

.features02__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.features02__badge {
  display: inline-block;
  margin: 0 0 var(--space-5);
  padding: 0.375rem 1.25rem;
  color: var(--color-text);
  background: #e8fbc6;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  text-transform: lowercase;
}

.features02__badge::first-letter {
  text-transform: uppercase;
}

.features02__title {
  max-width: 33.4375rem;
  margin: 0 0 var(--space-3);
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
}

.features02__lead {
  max-width: 31.75rem;
  margin: 0 0 var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.features02__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  width: 100%;
}

.features02__list li {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-2) var(--space-3);
  color: var(--color-text);
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: var(--lh-body);
  text-align: left;
}

.features02__icon {
  flex: none;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--color-text);
}

.features02__media {
  position: relative;
  width: 100%;
  margin: 0;
}

.features02__photo {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) * 2);
}

.features02__chart {
  position: absolute;
  top: 8%;
  right: -0.5rem;
  z-index: 2;
  width: 12.5rem;
  height: auto;
  overflow: hidden;
  border-radius: calc(var(--radius) * 2);
}

.features02__stat {
  position: absolute;
  top: 13%;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.75rem;
  margin: 0;
  padding: var(--space-1) var(--space-2);
  color: var(--color-text);
  background: #f9eb57;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.4;
  transform: rotate(-14deg);
}

.features02__panel {
  position: absolute;
  bottom: 8%;
  left: 0;
  z-index: 2;
  width: 12.5rem;
  height: auto;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 1.5625rem 5rem -0.75rem color-mix(in srgb, var(--color-text) 10%, transparent);
}

@media (min-width: 640px) {
  .features02__copy {
    align-items: flex-start;
    text-align: left;
  }

  .features02__chart {
    right: -1rem;
  }

  .features02__panel {
    left: 23%;
    width: 21.25rem;
  }
}

@media (min-width: 768px) {
  .features02__title {
    font-size: calc(var(--fs-h1) * 1.25);
  }

  .features02__list li {
    padding-block: var(--space-2);
  }

  .features02__chart {
    width: 15.8125rem;
  }

  .features02__stat {
    font-size: calc(var(--fs-h2) * 1.15);
  }

  .features02__panel {
    width: 24.6875rem;
    border-radius: calc(var(--radius) * 2);
  }
}

@media (min-width: 1024px) {
  .features02 {
    padding-block: calc(var(--section-y) * 2);
  }

  .features02__inner {
    flex-direction: row;
    gap: 6rem;
  }

  .features02__copy,
  .features02__media {
    flex: 1 1 0;
  }

  .features02__media {
    max-width: 31.25rem;
  }

  .features02__chart {
    right: auto;
    left: 50%;
  }

  .features02__title {
    font-size: calc(var(--fs-h1) * 1.5);
  }
}
