/* ========= 基本設定 ========= */
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #fafafa;
  color: #1c1e21;
  line-height: 1.6;
}

/* 主容器 */
.apps {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ========= Hero 區 ========= */
.dl-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 60px 0;
}

.dl-hero__text {
  flex: 1;
  min-width: 300px;
}

.dl-hero__text .eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #24d366;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.dl-hero__text .title {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin: 0 0 20px;
  line-height: 1.3;
}

.dl-hero__text .title .mark {
  color: #24d366;
}

.dl-hero__text .lead {
  font-size: 18px;
  color: #444;
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  gap: 16px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all .25s ease;
}

.btn-primary {
  background: #24d366;
  color: #fff;
}
.btn-primary:hover {
  background: #1fb056;
}

.btn-ghost {
  border: 2px solid #24d366;
  color: #24d366;
}
.btn-ghost:hover {
  background: #e9fdf3;
}

.dl-hero__art {
  flex: 1;
  text-align: center;
}
.dl-hero__art img {
  max-width: 300px;
  transform: rotate(-8deg);
  border-radius: 16px;
}

/* ========= Cards 區 ========= */
.apps-grid,
.apps-more {
  margin-top: 80px;
}

.apps-grid__head,
.apps-more__head {
  margin-bottom: 30px;
  text-align: center;
}
.apps-grid__head h2,
.apps-more__head h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px;
}
.apps-grid__head .sub,
.apps-more__head .sub {
  font-size: 16px;
  color: #666;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.app-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #eaeaea;
  transition: box-shadow .25s ease;
}
.app-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.app-meta {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #24d366;
  margin-bottom: 6px;
}
.app-name {
  font-size: 20px;
  margin: 0 0 10px;
}
.app-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 14px;
}
.app-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.req {
  font-size: 13px;
  color: #777;
}
.badge {
  display: inline-block;
  background: #24d366;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

/* ========= SEO 區 ========= */
.apps-seo {
  margin: 80px auto;
  padding: 20px 30px;
  background: #f9fdfb;
  border-left: 4px solid #24d366;
  border-radius: 6px;
  color: #333;
  font-size: 15px;
  line-height: 1.7;
}
.apps-seo strong {
  color: #111;
}
.apps-seo em {
  color: #24d366;
  font-style: normal;
}
