@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@400;600;700&display=swap");

/* Pricing — public seat/franchise quote */
.pricing-page {
  background: #f3f0e8;
  color: #171614;
}

.pricing-main {
  width: min(100% - 40px, 1080px);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) 0 clamp(72px, 10vw, 120px);
}

.pricing-hero {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.pricing-kicker {
  margin: 0 0 14px;
  color: #0051ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.pricing-hero h1 {
  margin: 0;
  font-family: "Noto Serif KR", "Cormorant Garamond", serif !important;
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.3;
  word-break: keep-all;
}

.pricing-hero p {
  width: min(100%, 560px);
  margin: 16px auto 0;
  color: #5c5850;
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.7;
  word-break: keep-all;
}

.pricing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 22px;
  align-items: start;
}

.pricing-card,
.pricing-result {
  border: 1px solid rgba(23, 22, 20, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(23, 22, 20, 0.06);
}

.pricing-card {
  padding: clamp(22px, 3vw, 32px);
}

.pricing-result {
  padding: clamp(24px, 3.2vw, 34px);
  background: linear-gradient(180deg, #12151c 0%, #1a2030 100%);
  color: #f6f3ec;
  border-color: transparent;
}

.pricing-label {
  display: block;
  margin: 0 0 12px;
  color: #8a857b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.pricing-result .pricing-label {
  color: rgba(246, 243, 236, 0.55);
}

.pricing-brands {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 22px;
}

.pricing-brand {
  appearance: none;
  border: 1px solid rgba(23, 22, 20, 0.12);
  border-radius: 14px;
  background: #fff;
  color: #3f3c37;
  padding: 14px 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.pricing-brand:hover {
  border-color: rgba(0, 81, 255, 0.35);
}

.pricing-brand.on {
  background: #0051ff;
  border-color: #0051ff;
  color: #fff;
  transform: translateY(-1px);
}

.pricing-cycles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
}

.pricing-cycle {
  appearance: none;
  text-align: left;
  border: 1px solid rgba(23, 22, 20, 0.12);
  border-radius: 16px;
  background: #fff;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pricing-cycle b {
  display: block;
  color: #171614;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pricing-cycle small {
  display: block;
  margin-top: 4px;
  color: #8a857b;
  font-size: 12px;
  font-weight: 600;
}

.pricing-cycle.on {
  border-color: #0051ff;
  box-shadow: 0 0 0 3px rgba(0, 81, 255, 0.12);
}

.pricing-cycle .badge {
  display: inline-flex;
  margin-top: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #ffe8d6;
  color: #c2410c;
  font-size: 11px;
  font-weight: 800;
}

.pricing-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(23, 22, 20, 0.1);
}

.pricing-counter-meta {
  min-width: 0;
}

.pricing-counter-meta strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pricing-counter-meta span {
  display: block;
  margin-top: 4px;
  color: #8a857b;
  font-size: 12px;
  font-weight: 600;
}

.pricing-stepper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pricing-stepper button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #eef1f8;
  color: #171614;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.pricing-stepper button:hover {
  background: #dde4f5;
}

.pricing-stepper input {
  width: 64px;
  height: 36px;
  border: 1px solid rgba(23, 22, 20, 0.12);
  border-radius: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  color: #171614;
  background: #fff;
}

.pricing-hint {
  margin: 14px 0 0;
  color: #8a857b;
  font-size: 13px;
  line-height: 1.6;
  word-break: keep-all;
}

.pricing-result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.pricing-unit-cost {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(0, 81, 255, 0.18);
  border: 1px solid rgba(126, 176, 255, 0.35);
}

.pricing-unit-cost span {
  color: rgba(246, 243, 236, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.pricing-unit-cost strong {
  color: #9ec5ff;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.pricing-unit-cost strong em {
  margin-left: 6px;
  color: rgba(158, 197, 255, 0.7);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.pricing-result-head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pricing-save-pill {
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 140, 66, 0.18);
  color: #ffb38a;
  font-size: 12px;
  font-weight: 800;
}

.pricing-amount {
  margin: 0 0 8px;
  font-size: clamp(34px, 5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.pricing-amount em {
  margin-left: 4px;
  font-style: normal;
  font-size: 0.42em;
  font-weight: 700;
  color: rgba(246, 243, 236, 0.7);
}

.pricing-compare {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin-bottom: 22px;
}

.pricing-compare del {
  color: rgba(246, 243, 236, 0.45);
  font-size: 16px;
  font-weight: 600;
}

.pricing-compare .off {
  color: #ffb38a;
  font-size: 14px;
  font-weight: 800;
}

.pricing-breakdown {
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid rgba(246, 243, 236, 0.12);
  border-bottom: 1px solid rgba(246, 243, 236, 0.12);
}

.pricing-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 10px;
  font-size: 14px;
}

.pricing-breakdown div:last-child {
  margin-bottom: 0;
}

.pricing-breakdown dt {
  margin: 0;
  color: rgba(246, 243, 236, 0.62);
  font-weight: 600;
}

.pricing-breakdown dd {
  margin: 0;
  font-weight: 700;
}

.pricing-breakdown .total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(246, 243, 236, 0.16);
}

.pricing-breakdown .total dt,
.pricing-breakdown .total dd {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.pricing-benefits {
  margin-top: 22px;
}

.pricing-benefits h3 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pricing-benefits ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.pricing-benefits li {
  position: relative;
  padding-left: 18px;
  color: rgba(246, 243, 236, 0.78);
  font-size: 13px;
  line-height: 1.5;
  word-break: keep-all;
}

.pricing-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #49bdfe;
}

.pricing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pricing-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.pricing-cta .primary {
  background: #fff;
  color: #003dc6;
}

.pricing-cta .ghost {
  border: 1px solid rgba(246, 243, 236, 0.28);
  color: #f6f3ec;
}

.pricing-note {
  margin: 18px 0 0;
  color: rgba(246, 243, 236, 0.5);
  font-size: 12px;
  line-height: 1.6;
  word-break: keep-all;
}

.pricing-status {
  margin: 0;
  color: rgba(246, 243, 236, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.pricing-status.err {
  color: #ffb4b4;
}

@media (max-width: 900px) {
  .pricing-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .pricing-brands {
    grid-template-columns: 1fr;
  }

  .pricing-cycles {
    grid-template-columns: 1fr;
  }

  .pricing-counter {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-stepper {
    justify-content: space-between;
  }

  .pricing-stepper input {
    flex: 1;
  }
}
