/* Price Cards */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.price-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card-img { height: 200px; overflow: hidden; }
.price-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.price-card:hover .price-card-img img { transform: scale(1.03); }
.price-card-body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }
.price-card-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: var(--red); background: var(--red-pale);
  padding: 4px 14px; border-radius: 3px; margin-bottom: 14px;
  letter-spacing: .04em; align-self: flex-start;
}
.price-card-price {
  font-size: 32px; font-weight: 900; color: var(--red);
  letter-spacing: .02em; margin-bottom: 4px;
}
.price-card-price small { font-size: 14px; font-weight: 500; color: var(--text-sub); }
.price-card-features { list-style: none; margin: 16px 0 24px; flex: 1; }
.price-card-features li {
  font-size: 14px; color: var(--text-sub); padding: 6px 0;
  padding-left: 22px; position: relative; line-height: 1.8;
}
.price-card-features li::before {
  content: "\2713"; position: absolute; left: 0; color: var(--red); font-weight: 700;
}
.price-card .btn-primary { width: 100%; justify-content: center; padding: 14px; font-size: 14px; }

/* Included */
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.included-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 32px; border: 1px solid var(--border);
}
.included-box h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 20px;
  padding-bottom: 14px; border-bottom: 2px solid var(--red);
  color: var(--text); display: flex; align-items: center; gap: 10px;
}
.included-box h3 .icon-circle {
  width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.included-box--yes h3 .icon-circle { background: var(--red-pale); color: var(--red); }
.included-box--no h3 { border-bottom-color: var(--border); }
.included-box--no h3 .icon-circle { background: var(--bg-light); color: var(--text-sub); }
.included-list { list-style: none; }
.included-list li {
  font-size: 14px; padding: 10px 0; border-bottom: 1px solid var(--bg-light);
  display: flex; align-items: center; gap: 10px; line-height: 1.7;
}
.included-list li:last-child { border-bottom: none; }
.included-list li .mark {
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.included-box--yes .mark { background: var(--red-pale); color: var(--red); }
.included-box--no .mark { background: var(--bg-light); color: var(--text-sub); }

/* Option Table */
.option-table-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.option-table { width: 100%; border-collapse: collapse; }
.option-table thead th {
  background: var(--navy); color: var(--white);
  padding: 16px 24px; font-size: 14px; font-weight: 700;
  text-align: left; letter-spacing: .04em;
}
.option-table tbody td {
  padding: 18px 24px; font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.option-table tbody tr:last-child td { border-bottom: none; }
.option-table tbody tr:hover { background: var(--bg-light); }
.option-table .td-name { font-weight: 600; color: var(--text); }
.option-table .td-price { color: var(--red); font-weight: 700; font-size: 16px; }
.option-table .td-note { font-size: 13px; color: var(--text-sub); }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.steps-grid::before {
  content: ""; position: absolute; top: 44px;
  left: calc(16.67%); right: calc(16.67%);
  height: 2px; background: var(--border);
}
.step-item { text-align: center; position: relative; padding: 0 20px; }
.step-num {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--red);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 900; color: var(--red);
  margin-bottom: 20px; position: relative; z-index: 2;
}
.step-item h3 {
  font-size: 17px; font-weight: 700; color: var(--text);
  margin-bottom: 10px; letter-spacing: .03em;
}
.step-item p { font-size: 14px; color: var(--text-sub); line-height: 1.9; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-q { display: flex; align-items: center; gap: 12px; padding: 20px 24px; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--navy); transition: background .2s; }
.faq-q:hover { background: rgba(4,52,90,.02); }
.faq-a { display: none; padding: 0 24px 20px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { padding: 0 24px 20px 68px; font-size: 15px; line-height: 1.8; color: var(--text-sub); }

/* Responsive */
@media (max-width: 900px) {
  .price-cards { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .option-table thead th { padding: 12px 16px; font-size: 13px; }
  .option-table tbody td { padding: 14px 16px; font-size: 13px; }
  .option-table .td-price { font-size: 14px; }
}
@media (max-width: 600px) {
  .price-card-price { font-size: 26px; }
  .step-num { width: 68px; height: 68px; font-size: 26px; }
}
