* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, "Noto Sans TC", sans-serif;
  background: linear-gradient(180deg, #fffaf7, #ffffff);
  color: #1f2937;
  line-height: 1.7;
}

a {
  text-decoration: none;
}

.page {
  width: min(100%, 1000px);
  margin: 0 auto;
  padding: 24px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 40px 0 30px;
}

.badge {
  display: inline-block;
  background: #fff0f3;
  color: #d94b66;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 16px;
}

.sub {
  color: #6b7280;
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 36rem;
}

.buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-line {
  background: #06c755;
  color: white;
}

.btn-line:hover {
  background: #05b348;
}

.btn-light {
  background: white;
  border-color: #e5e7eb;
  color: #1f2937;
}

.hero-photo {
  border-radius: 24px;
  overflow: hidden;
  background: #f3f4f6;
  aspect-ratio: 4 / 5;
  border: 1px solid #f0e3de;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  padding: 28px 0;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.section p {
  color: #6b7280;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.card {
  background: white;
  border: 1px solid #f0e3de;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(31, 41, 55, 0.06);
}

.card h3 {
  margin-top: 0;
}

.cta {
  text-align: center;
  background: linear-gradient(135deg, #fff0f3, #fffaf7);
  border: 1px solid #f2d7df;
  border-radius: 24px;
  margin-top: 16px;
  padding: 32px 20px;
}

footer {
  text-align: center;
  padding: 30px 0 10px;
  color: #9ca3af;
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .hero,
  .cards {
    grid-template-columns: 1fr;
  }
}

.btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 20px 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .btn-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .btn {
    width: fit-content;
    max-width: 90%;
  }
}
