body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans KR", sans-serif;
  background: #fff;
  color: #111;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  border-bottom: 1px solid #ddd;
}

.section {
  max-width: 720px;
  margin: auto;
  padding: 40px 20px;
}

.slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.slot {
  border: 1px solid #000;
  background: #fff;
  padding: 12px;

  /* 👇 이게 핵심 */
  color: #000;
  font-size: 14px;
  font-weight: 500;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.slot.selected {
  background: #000;
  color: #fff;
}

form {
  display: grid;
  gap: 15px;
}

input {
  width: 100%;
  padding: 10px;
  border: 1px solid #000;
}

.slot, button {
  min-height: 44px;         /* 모바일 터치 최소 */
  touch-action: manipulation;
}


button {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 1rem;
}

.review {
  border-left: 3px solid #000;
  padding-left: 12px;
  margin-bottom: 15px;
}

.footer {
  text-align: center;
  padding: 30px;
  border-top: 1px solid #ddd;
}


/* ===== 왼쪽 / 오른쪽 설명 섹션 ===== */
.split-section {
  background: #fff;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.split-left,
.split-right {
  font-size: 0.95rem;
  line-height: 1.7;
}

.lead {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.check-list,
.dot-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.check-list li,
.dot-list li {
  margin-bottom: 8px;
}

/* 모바일에서는 한 줄 */
@media (max-width: 768px) {
  .split-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== 料金プラン ===== */
.pricing {
  text-align: center;
}

.price-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.price-card {
  border: 1px solid #000;
  padding: 25px 20px;
  width: 260px;
  background: #fff;
  position: relative;
}

.price-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.price {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 10px 0 0;
}

.price-sub {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 15px;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
}

.price-list li {
  margin-bottom: 8px;
}

.price-note {
  font-size: 0.85rem;
  margin-top: 10px;
}

/* 추천 카드 강조 */
.price-card.featured {
  background: #000;
  color: #fff;
}

.price-card.featured .price-sub,
.price-card.featured .price-note {
  color: #ddd;
}

.price-card.featured .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  padding: 4px 8px;
  font-size: 0.75rem;
}

/* 모바일 */
@media (max-width: 768px) {
  .price-cards {
    flex-direction: column;
    align-items: center;
  }
}
