/* ── Service Features Section ──────────────────────────── */
.ao-features-section {
  padding-bottom: 75px;
  background: #fff;
}

/* ── Slider track ─────────────────────────────────────── */
.ao-features-slider {
  max-width: 1300px;
  margin: 0 auto;
}

/* ── Desktop: static grid (Splide not initialized) ──── */
@media (min-width: 992px) {
  #ao-features-slider:not(.is-initialized) .splide__list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    overflow: visible;
  }
}

/* ── Card ──────────────────────────────────────────────── */
.ao-features-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 16px;
}

.ao-features-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  margin-bottom: 20px;
  color: #111;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.ao-features-title {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.ao-features-desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin: 0;
  line-height: 1.6;
  max-width: 280px;
}

/* ── Pagination (hidden on desktop) ──────────────────── */
.ao-features-section .splide__pagination {
  display: none !important;
}

/* ── Tablet & Mobile ──────────────────────────────────── */
@media (max-width: 991px) {
  .ao-features-section {
    padding: 48px 24px;
  }

  .ao-features-section .splide__pagination {
    display: flex !important;
    justify-content: center;
    gap: 10px;
    position: relative;
    margin-top: 28px;
    padding: 0;
  }

  .ao-features-section .splide__pagination__page {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc !important;
    border: none;
    opacity: 1 !important;
    transition: all 0.25s ease;
  }

  .ao-features-section .splide__pagination__page.is-active {
    background: #111 !important;
  }

  .ao-features-card {
    padding: 32px 20px;
  }
}

@media (max-width: 600px) {
  .ao-features-section {
    padding: 36px 16px;
  }
}
