/* =====Hero區===== */

/* mobile圖片 */
.hero-1 {
  background: url("../images/plan/plan_bg@1x.jpg") center/cover no-repeat;
}

/* tablet圖片 */
@media (min-width: 768px) {
  .hero-1 {
    background: url("../images/plan/plan_bg@tablet.jpg") center center / cover
      no-repeat;
  }
}

/* desktop圖片 */
@media (min-width: 1024px) {
  .hero-1 {
    background: url("../images/plan/plan_bg@desktop.jpg") center center / cover
      no-repeat;
  }
}

/* ===== Section ===== */
/* ===== Module Scope ===== */
.erp-pos {
  --pos-primary: #27366f;
}

/* ===== Section ===== */
.erp-pos .pos-section {
  padding: 88px 20px 104px;
  background: #ffffff;
}

.erp-pos .pos-section__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  text-align: center;
}

/* ===== Title ===== */
.erp-pos .pos-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: black;
}

.erp-pos .pos-subtitle {
  max-width: 700px;
  margin: 18px auto 0;
  color: #5f6f79;
  line-height: 1.9;
}

/* ===== Grid ===== */
.erp-pos .pos-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 56px;
  align-items: stretch;
}

/* ===== Card ===== */
.erp-pos .pos-card {
  width: 100%;
  max-width: 310px;
  background: #ffffff;
  border-radius: 26px;
  border: 1px solid #e6eef2;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.erp-pos .pos-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

/* ===== Header ===== */
.erp-pos .pos-card__head {
  position: relative;
  padding: 30px 20px 24px;
  background: linear-gradient(135deg, #34478f 0%, var(--pos-primary) 100%);
}

.erp-pos .pos-card__head::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  border-radius: 999px;
  background: #4c5fd7;
}

.erp-pos .pos-card__head h2 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}

/* ===== Body ===== */
.erp-pos .pos-card__body {
  padding: 26px 28px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ===== List ===== */
.erp-pos .pos-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.erp-pos .pos-list--main li {
  font-size: 17px;
  font-weight: 500;
}

.erp-pos .pos-list--module li {
  font-size: 16px;
  color: #4a5a63;
}

.erp-pos .pos-list li {
  padding: 12px 0;
  font-family: "Noto Sans TC", sans-serif;
  line-height: 1.8;
  color: #1f2d35;
  border-bottom: 1px solid #edf3f6;
}

/* ===== Module ===== */
.erp-pos .pos-module-title {
  margin: 26px auto 18px;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--pos-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

/* ===== Featured ===== */
.erp-pos .pos-card--featured {
  transform: translateY(-12px);
  border: 2px solid #46869f;
  box-shadow: 0 30px 60px rgba(70, 134, 159, 0.2);
}

/* ===== Tablet ===== */
@media (min-width: 768px) {
  .erp-pos .pos-grid {
    flex-direction: row;
    justify-content: center;
  }

  .erp-pos .pos-card {
    width: min(31%, 310px);
  }

  .erp-pos .pos-list--main {
    min-height: 350px;
  }
}
