/*
 * 요금제 페이지 전용 스타일 (#188).
 *
 * 카드(.plan)와 비교표(.cmp)는 랜딩과 공유하므로 landing.css 에 그대로 두고,
 * 이 페이지에만 있는 것(히어로·과금 전환·고지 배너·FAQ)만 여기 둔다.
 * 색은 landing.css 의 :root 토큰을 그대로 쓴다 — 시안의 원색을 옮겨 적으면
 * 사이트에 두 번째 팔레트가 생긴다.
 */

/* 시안 컨테이너 폭(1180px). base.html 의 Bootstrap .container 가 1140px 로
   조이므로 그 상한부터 풀어야 카드가 시안 폭(271px)이 된다 — 이 페이지를
   품은 컨테이너만 골라 넓힌다. */
.container:has(.pricing-page) { max-width: 1180px; }
.pricing-page { max-width: 1180px; padding-bottom: 64px; }

/* ── 히어로 ── */
.pricing-hero { text-align: center; padding: 48px 0 28px; }
.pricing-hero h1 {
  font-size: 38px; font-weight: 800; letter-spacing: -0.04em;
  color: var(--ink); line-height: 1.24; margin-bottom: 12px;
}
.pricing-hero p { font-size: 16px; color: var(--ink-soft); }
.pricing-hero p b { color: var(--ink); font-weight: 700; }

/* ── 갱신 고지 ── */
.renewal-note {
  text-align: center; font-size: 13px; color: var(--ink-soft);
  margin: -34px 0 34px;
}
.renewal-note b { color: var(--ink); font-weight: 700; }

/* ── 고지 배너 ── */
.notice-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 22px; display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 56px;
}
.notice-ic {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  background: var(--teal-tint); display: flex;
  align-items: center; justify-content: center; font-size: 16px;
}
.notice-card h4 {
  font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 5px;
}
.notice-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.65; margin: 0; }
.notice-card p span { color: var(--w-gray); }

/* ── FAQ ── */
.pricing-faq { padding-top: 56px; }
.pricing-faq .faq-list { max-width: 760px; margin: 0 auto; }
.pricing-faq details {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 12px; margin-bottom: 10px; overflow: hidden;
}
.pricing-faq summary {
  padding: 16px 20px; font-size: 15px; font-weight: 700; color: var(--ink);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.pricing-faq summary::-webkit-details-marker { display: none; }
.pricing-faq summary::after { content: "+"; font-size: 18px; color: var(--w-gray); flex: none; }
.pricing-faq details[open] summary::after { content: "−"; }
.pricing-faq summary:focus-visible { outline: 2px solid var(--pick); outline-offset: -2px; }
.pricing-faq details p {
  padding: 0 20px 18px; font-size: 14px; line-height: 1.75;
  color: var(--ink-soft); margin: 0;
}

/* ── 푸터 ── */
.pricing-foot {
  border-top: 1px solid var(--line); margin-top: 40px; padding-top: 24px;
  text-align: center;
}
.pricing-foot p { font-size: 12.5px; color: var(--w-gray); line-height: 1.7; margin: 0; }


@media (max-width: 620px) {
  .pricing-hero { padding: 32px 0 20px; }
  .pricing-hero h1 { font-size: 28px; }
  .renewal-note { margin: -20px 0 28px; }
}
