﻿@charset "utf-8";
/* ══════════════════════════════════════════════
   요금제 (Pricing.aspx)
   색상은 common.css 의 토큰을 그대로 쓴다(다크모드 자동 대응).
   ══════════════════════════════════════════════ */

.pr-wrap {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px
}

.pr-section {
	padding: 64px 0
}

.pr-head {
	text-align: center;
	margin-bottom: 36px
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	color: var(--red);
	background: var(--red-light);
	border: 1px solid var(--red-border);
	padding: 5px 12px;
	border-radius: 100px;
	margin-bottom: 16px
}

.pr-title {
	font-size: 40px;
	font-weight: 900;
	letter-spacing: -1px;
	line-height: 1.25;
	color: var(--text)
}

.pr-sub {
	font-size: 16px;
	color: var(--text-4);
	margin-top: 12px;
	line-height: 1.6
}

.pr-sec-title {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -.5px;
	margin-bottom: 8px;
	color: var(--text)
}

.pr-sec-sub {
	font-size: 14px;
	color: var(--text-5);
	margin-bottom: 24px;
	line-height: 1.6
}

/* ── 전환 안내 배너 ── */
.notice {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: var(--red-light);
	border: 1px solid var(--red-border);
	border-radius: 12px;
	padding: 16px 18px;
	margin-bottom: 36px
}

.notice-ic {
	flex: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--red);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px
}

.notice-t {
	font-size: 14px;
	font-weight: 700;
	color: var(--text)
}

.notice-d {
	font-size: 13px;
	color: var(--text-4);
	margin-top: 3px;
	line-height: 1.6
}

/* ── 플랜 카드 ── */
.plans {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	align-items: stretch
}

.plan {
	background: var(--surface);
	border: 1.5px solid var(--border-md);
	border-radius: 16px;
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: border-color .2s, box-shadow .2s
}

	.plan:hover {
		border-color: var(--text-6);
		box-shadow: 0 6px 24px var(--shadow-sm)
	}

	.plan.featured {
		border-color: var(--red);
		box-shadow: 0 8px 28px rgba(232,40,26,.12)
	}

.plan-badge {
	position: absolute;
	top: -11px;
	left: 24px;
	background: var(--red);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 100px
}

.plan-head {
	display: flex;
	align-items: center;
	gap: 7px
}

.plan-name {
	font-size: 17px;
	font-weight: 900;
	letter-spacing: -.3px;
	color: var(--text)
}

.tag {
	font-size: 10.5px;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 5px;
	letter-spacing: .2px
}

.tag-free {
	background: var(--surface-4);
	color: var(--text-5)
}

.tag-pro {
	background: var(--red-light);
	color: var(--red);
	border: 1px solid var(--red-border)
}

.plan-for {
	font-size: 12.5px;
	color: var(--text-5);
	margin-top: 5px;
	min-height: 38px;
	line-height: 1.5
}

.plan-price {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin: 18px 0 4px;
	flex-wrap: wrap
}

.plan-amount {
	font-size: 32px;
	font-weight: 900;
	letter-spacing: -1.2px;
	color: var(--text)
}

.plan-unit {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-5)
}

.plan-vat {
	font-size: 12px;
	color: var(--text-6);
	min-height: 20px
}

/* btn-ghost / btn-red-sm 위에 얹는다.
   border 를 여기서 건드리면 btn-ghost 의 테두리가 사라지므로 손대지 않는다. */
.plan-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 22px 0 20px;
	width: 100%;
	padding: 12px;
	font-size: 14px;
	border-radius: 10px
}

	/* 이미 이용 중이면 버튼이 아니라 상태 표시(span) — 버튼 클래스가 없으므로 직접 준다 */
	.plan-cta.using {
		background: var(--green-light);
		color: var(--green);
		border: 1.5px solid transparent;
		font-family: 'Noto Sans KR',sans-serif;
		font-weight: 700;
		cursor: default
	}

.plan-feats {
	display: flex;
	flex-direction: column;
	gap: 9px;
	padding-top: 20px;
	border-top: 1px solid var(--border);
	margin-top: auto
}

.feat {
	display: flex;
	gap: 9px;
	font-size: 13.5px;
	color: var(--text-3);
	line-height: 1.5
}

.feat-ic {
	flex: none;
	width: 16px;
	height: 16px;
	margin-top: 3px
}

.feat.off {
	color: var(--text-6)
}

.feat b {
	color: var(--text);
	font-weight: 700
}

/* ── 비교표 ── */
.tbl-scroll {
	overflow-x: auto;
	border: 1px solid var(--border-md);
	border-radius: 14px;
	background: var(--surface)
}

.pr-tbl {
	width: 100%;
	border-collapse: collapse;
	min-width: 640px
}

	.pr-tbl th, .pr-tbl td {
		padding: 13px 18px;
		text-align: left;
		font-size: 13.5px;
		border-bottom: 1px solid var(--border);
		color: var(--text-3)
	}

	.pr-tbl thead th {
		background: var(--surface-2);
		font-size: 13px;
		font-weight: 700;
		color: var(--text-2)
	}

		.pr-tbl thead th:not(:first-child),
		.pr-tbl tbody td:not(:first-child) {
			text-align: center;
			width: 20%
		}

	.pr-tbl tbody tr.group td {
		background: var(--surface-2);
		font-size: 11.5px;
		font-weight: 700;
		color: var(--text-5);
		letter-spacing: .3px;
		padding: 8px 18px
	}

	.pr-tbl tbody tr:last-child td {
		border-bottom: none
	}

	.pr-tbl tbody td:first-child {
		font-weight: 600;
		color: var(--text-2)
	}

.yes {
	color: var(--green);
	font-weight: 900
}

.no {
	color: var(--text-7);
	font-weight: 700
}

.tval {
	font-size: 12.5px;
	color: var(--text-4)
}

/* ── FAQ ── */
.faq {
	border: 1px solid var(--border-md);
	border-radius: 14px;
	background: var(--surface);
	overflow: hidden
}

.faq-item {
	border-bottom: 1px solid var(--border)
}

	.faq-item:last-child {
		border-bottom: none
	}

.faq-q {
	width: 100%;
	background: none;
	border: none;
	text-align: left;
	padding: 16px 20px;
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
	cursor: pointer;
	font-family: 'Noto Sans KR',sans-serif;
	display: flex;
	justify-content: space-between;
	gap: 12px;
	align-items: center
}

	.faq-q:hover {
		background: var(--surface-2)
	}

.faq-mark {
	font-size: 18px;
	font-weight: 400;
	color: var(--text-5);
	flex: none
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .25s ease;
	font-size: 13.5px;
	color: var(--text-4);
	line-height: 1.7
}

.faq-item.open .faq-a {
	max-height: 500px
}

.faq-a-in {
	padding: 0 20px 18px
}

	.faq-a-in b {
		color: var(--text-2)
	}

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

@media (max-width:680px) {
	.pr-title {
		font-size: 30px
	}

	.pr-section {
		padding: 44px 0
	}

	.pr-wrap {
		padding: 0 18px
	}
}
