/* =====================================================
   pricing.php — 결제(공개) 페이지 전용 스타일
   ===================================================== */

body {
	background: #f8fafc;
	font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* 가격 카드 내 숫자는 Inter + tabular nums (한글은 Pretendard fallback) */
.pr-rate-price strong,
.pr-rate-price span,
.pr-calc-row-amount,
.pr-calc-numwrap input,
.pr-calc-total-num {
	font-family: 'Inter', 'Pretendard Variable', Pretendard, -apple-system, system-ui, sans-serif;
	font-variant-numeric: tabular-nums;
}

/* nav 활성 메뉴 강조 */
.lp-nav-links a.is-current {
	color: #0f766e;
	font-weight: 800;
	position: relative;
}
.lp-nav-links a.is-current::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -6px;
	width: 22px;
	height: 3px;
	background: linear-gradient(90deg, #2dd4bf, #10b981);
	border-radius: 999px;
	transform: translateX(-50%);
}
.lp-mm-link.is-current {
	color: #10b981;
	font-weight: 800;
}

/* ── 헤로 ── */
.pr-hero {
	position: relative;
	padding: 96px 24px 56px;
	background:
		radial-gradient(800px 320px at 20% 20%, rgba(45,212,191,0.18), transparent 60%),
		radial-gradient(700px 280px at 80% 30%, rgba(99,102,241,0.14), transparent 60%),
		#0f172a;
	color: #fff;
	overflow: hidden;
}
.pr-hero-inner {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}
.pr-eyebrow {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(45,212,191,0.18);
	color: #5eead4;
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.pr-title {
	font-size: clamp(2.1rem, 4.5vw, 3.4rem);
	font-weight: 900;
	letter-spacing: -0.025em;
	line-height: 1.2;
	margin: 0 0 18px;
	word-break: keep-all;
	overflow-wrap: break-word;
}
.pr-title em {
	font-style: normal;
	background: linear-gradient(90deg, #2dd4bf 0%, #10b981 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.pr-sub {
	max-width: 640px;
	margin: 0 auto 26px;
	font-size: 1.02rem;
	line-height: 1.7;
	color: #cbd5e1;
}
.pr-trust {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 10px 18px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 999px;
	font-size: 0.86rem;
	color: #e2e8f0;
}
.pr-trust > span { display: inline-flex; align-items: center; gap: 6px; }
.pr-trust i { color: #5eead4; }
.pr-trust-sep {
	width: 1px;
	height: 14px;
	background: rgba(255,255,255,0.18);
}

/* ── 페이지 헤딩 (install.php 와 동일한 톤) ── */
.in-pagehead {
	background: #fff;
	padding: 88px 16px 28px;
	text-align: center;
}
.in-pagehead-inner {
	max-width: 880px;
	margin: 0 auto;
	word-break: keep-all;
}
.in-pagehead-title {
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	font-weight: 900;
	letter-spacing: -0.025em;
	color: #0f172a;
	margin: 0 0 10px;
	line-height: 1.2;
}
.in-pagehead-sub {
	font-size: 0.96rem;
	color: #64748b;
	margin: 0;
	font-weight: 500;
}
@media (max-width: 720px) {
	.in-pagehead { padding: 72px 16px 22px; }
}

/* ── 상품 영역 (payment up-* 카드 재사용 — 공개 페이지에 맞춰 톤 다운) ── */
.pr-products-wrap {
	background: #f8fafc;
	padding-top: 64px;  /* fixed nav 높이만큼 — 본문이 nav 아래에서 시작 */
}
.pr-products-wrap .up-wrap {
	min-height: 0;
	background: transparent;
	padding: 40px 16px 80px;
	max-width: 1280px;
	margin: 0 auto;
}

/* ── 제공 기능 카드 4×3 (pr-feat-*) — 배너 내부 ── */
.pr-feat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	width: 100%;
	margin: 18px 0 0;
	text-align: left;
}
@media (max-width: 960px) {
	.pr-feat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
	.pr-feat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.pr-feat-card {
	position: relative;
	background: #ffffff;
	border: 1px solid rgba(200, 151, 58, 0.20);
	border-radius: 16px;
	padding: 22px 20px 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	box-shadow:
		0 8px 20px rgba(0, 0, 0, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.6);
	transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.pr-feat-card:hover {
	border-color: #c8973a;
	transform: translateY(-3px);
	box-shadow:
		0 16px 36px rgba(0, 0, 0, 0.32),
		0 0 0 1px rgba(200, 151, 58, 0.30),
		inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.pr-feat-ico {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	color: #b45309;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-bottom: 4px;
}
.pr-feat-name {
	font-size: 1.05rem;
	font-weight: 700;
	color: #0f172a;
	letter-spacing: -0.01em;
}
.pr-feat-desc {
	font-size: 0.86rem;
	line-height: 1.55;
	color: #475569;
	word-break: keep-all;
}

/* ── 국내 최저가 배너 (pr-best-*) — 다크 프리미엄 ── */
.pr-best-banner {
	position: relative;
	max-width: 1080px;
	margin: 0 auto 56px;
	border-radius: 28px;
	overflow: hidden;
	isolation: isolate;
	background:
		linear-gradient(180deg, #0c1224 0%, #131a30 55%, #0c1224 100%);
	box-shadow:
		0 32px 80px rgba(8, 11, 25, 0.34),
		0 2px 6px rgba(8, 11, 25, 0.14),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
/* 상단 골드 헤어라인 */
.pr-best-banner::before {
	content: '';
	position: absolute;
	left: 8%; right: 8%;
	top: 0; height: 1px;
	background: linear-gradient(90deg,
		transparent 0%,
		rgba(232, 201, 122, 0.55) 30%,
		rgba(232, 201, 122, 0.85) 50%,
		rgba(232, 201, 122, 0.55) 70%,
		transparent 100%);
	pointer-events: none;
}
/* 도트 그리드 패턴 */
.pr-best-banner::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 22px 22px;
	background-position: 0 0;
	pointer-events: none;
	mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
	-webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
}

/* 골드 orb 글로우 */
.pr-best-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.pr-best-bg-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.55;
}
.pr-best-bg-orb--1 {
	width: 420px; height: 420px;
	top: -180px; left: -120px;
	background: radial-gradient(circle, #c8973a 0%, rgba(200, 151, 58, 0) 70%);
}
.pr-best-bg-orb--2 {
	width: 480px; height: 480px;
	bottom: -220px; right: -140px;
	background: radial-gradient(circle, #e8c97a 0%, rgba(232, 201, 122, 0) 70%);
	opacity: 0.4;
}
.pr-best-bg-orb--3 {
	width: 300px; height: 300px;
	top: 30%; left: 50%;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(254, 243, 199, 0.55) 0%, rgba(254, 243, 199, 0) 65%);
	opacity: 0.35;
}

.pr-best-inner {
	position: relative;
	z-index: 1;
	padding: 56px 40px 48px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}
@media (max-width: 720px) {
	.pr-best-inner { padding: 40px 22px 36px; }
}

.pr-best-title {
	margin: 0;
	font-size: 1.95rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.35;
	color: #f5f1e6;
	word-break: keep-all;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
.pr-best-title strong {
	background: linear-gradient(135deg, #fde68a 0%, #e8c97a 35%, #c8973a 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 800;
}
.pr-best-br { display: none; }

.pr-best-lead {
	margin: 4px 0 0;
	font-size: calc(1rem + 0.5px);
	font-weight: 600;
	line-height: 1.75;
	color: rgba(245, 241, 230, 0.82);
	max-width: 720px;
	word-break: keep-all;
}
.pr-best-lead strong { color: #f5f1e6; font-weight: 700; }

@media (max-width: 720px) {
	.pr-best-banner { border-radius: 18px; margin-bottom: 40px; }
	.pr-best-inner  { padding: 32px 22px 28px; gap: 12px; }
	.pr-best-title  { font-size: 1.4rem; }
	.pr-best-br     { display: inline; }
	.pr-best-lead   { font-size: 0.92rem; }
}

/* ── 요금 안내 (pr-rate-*) ── */
.pr-lead {
	text-align: center;
	max-width: 640px;
	margin: -16px auto 40px;
	font-size: 1.02rem;
	line-height: 1.7;
	color: #475569;
	word-break: keep-all;
}

.pr-rate-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 1080px;
	margin: 0 auto 48px;
}
@media (max-width: 900px) {
	.pr-rate-grid { grid-template-columns: 1fr; max-width: 520px; }
}

.pr-rate-card {
	position: relative;
	padding: 36px 28px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 22px;
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.04),
		0 20px 50px -28px rgba(45, 212, 191, 0.18);
	text-align: center;
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s;
}
.pr-rate-card:hover {
	transform: translateY(-3px);
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.04),
		0 24px 60px -24px rgba(45, 212, 191, 0.28);
}
.pr-rate-card::before {
	content: '';
	position: absolute;
	inset: -1px -1px auto -1px;
	height: 4px;
	background: linear-gradient(90deg, #2dd4bf 0%, #10b981 100%);
}
.pr-rate-card--staff::before {
	background: linear-gradient(90deg, #6366f1 0%, #4338ca 100%);
}
.pr-rate-card--base::before {
	background: linear-gradient(90deg, #475569 0%, #1e293b 100%);
}
.pr-rate-card--free::before {
	background: linear-gradient(90deg, #f59e0b 0%, #f97316 100%);
}

.pr-rate-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(45,212,191,0.16), rgba(16,185,129,0.08));
	color: #0d9488;
	font-size: 24px;
	margin-bottom: 18px;
}
.pr-rate-card--staff .pr-rate-ico {
	background: linear-gradient(135deg, rgba(99,102,241,0.16), rgba(79,70,229,0.08));
	color: #4f46e5;
}
.pr-rate-card--base .pr-rate-ico {
	background: linear-gradient(135deg, rgba(71,85,105,0.16), rgba(30,41,59,0.08));
	color: #334155;
}
.pr-rate-card--free .pr-rate-ico {
	background: linear-gradient(135deg, rgba(245,158,11,0.18), rgba(249,115,22,0.08));
	color: #d97706;
}

.pr-rate-label {
	font-size: calc(0.92rem + 1px);
	font-weight: 700;
	color: #1e293b;
	letter-spacing: -0.01em;
	margin-bottom: 8px;
}

.pr-rate-price {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	margin-bottom: 4px;
}
.pr-rate-price strong {
	font-size: clamp(2.6rem, 5vw, 3.2rem);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1;
	background: linear-gradient(135deg, #0f766e 0%, #10b981 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.pr-rate-card--staff .pr-rate-price strong {
	background: linear-gradient(135deg, #4338ca 0%, #6366f1 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.pr-rate-card--base .pr-rate-price strong {
	background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.pr-rate-card--free .pr-rate-price strong {
	background: linear-gradient(135deg, #b45309 0%, #f97316 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.pr-rate-price span {
	font-size: 1.05rem;
	font-weight: 700;
	color: #475569;
}

.pr-rate-unit {
	font-size: 0.88rem;
	color: #64748b;
	font-weight: 600;
	margin-bottom: 16px;
}

.pr-rate-desc {
	font-size: 0.92rem;
	line-height: 1.65;
	color: #475569;
	margin: 0;
	word-break: keep-all;
}

.pr-rate-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	padding: 4px 10px;
	background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	border-radius: 999px;
	box-shadow: 0 6px 14px rgba(249, 115, 22, 0.28);
}

/* ── 요금 계산기 (인터랙티브) ── */
.pr-calc {
	max-width: 1080px;
	margin: 0 auto 48px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	overflow: hidden;
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.04),
		0 24px 60px -28px rgba(45, 212, 191, 0.22);
	position: relative;
}
.pr-calc::before {
	content: '';
	position: absolute;
	inset: -1px -1px auto -1px;
	height: 4px;
	background: linear-gradient(90deg, #2dd4bf 0%, #10b981 100%);
}

.pr-calc-head {
	padding: 26px 32px 22px;
	background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
	border-bottom: 1px solid #e2e8f0;
}
.pr-calc-head-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.1rem;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.01em;
	margin-bottom: 6px;
}
.pr-calc-head-title i {
	color: #10b981;
	font-size: 1.05rem;
}
.pr-calc-head-sub {
	margin: 0;
	font-size: 0.92rem;
	color: #64748b;
	line-height: 1.5;
}

/* 입력 영역 */
.pr-calc-inputs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	padding: 26px 32px;
	background: #fafbfc;
	border-bottom: 1px solid #f1f5f9;
}
@media (max-width: 640px) {
	.pr-calc-inputs { grid-template-columns: 1fr; gap: 16px; padding: 22px 18px; }
}

.pr-calc-input {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.pr-calc-input-label {
	font-size: 0.92rem;
	font-weight: 700;
	color: #334155;
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
.pr-calc-input-label i { color: #10b981; font-size: 0.88rem; }

.pr-calc-stepper {
	display: flex;
	align-items: stretch;
	gap: 0;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
	transition: border-color 0.18s, box-shadow 0.18s;
}
.pr-calc-stepper:focus-within {
	border-color: #2dd4bf;
	box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.15);
}
.pr-calc-step {
	flex: 0 0 56px;
	border: 0;
	background: #f8fafc;
	color: #475569;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.pr-calc-step:hover { background: #ecfdf5; color: #0f766e; }
.pr-calc-step:active { background: #d1fae5; }
.pr-calc-step:first-child { border-right: 1px solid #e2e8f0; }
.pr-calc-step:last-child  { border-left:  1px solid #e2e8f0; }

.pr-calc-numwrap {
	flex: 1;
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 6px;
	padding: 14px 8px;
	min-width: 0;
}
.pr-calc-numwrap input {
	width: 100%;
	max-width: 110px;
	border: 0;
	background: transparent;
	font-size: 2rem;
	font-weight: 800;
	color: #0f172a;
	text-align: center;
	letter-spacing: -0.02em;
	outline: none;
	-moz-appearance: textfield;
}
.pr-calc-numwrap input::-webkit-outer-spin-button,
.pr-calc-numwrap input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.pr-calc-unit {
	font-size: 1rem;
	font-weight: 700;
	color: #64748b;
	flex-shrink: 0;
}

.pr-calc-input-hint {
	font-size: 0.78rem;
	color: #94a3b8;
	padding-left: 4px;
}

/* 결과 영역 */
.pr-calc-result {
	padding: 22px 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
@media (max-width: 640px) {
	.pr-calc-result { padding: 20px 18px 22px; }
}

.pr-calc-row {
	display: grid;
	grid-template-columns: 1fr auto auto;
	align-items: baseline;
	gap: 14px;
	padding: 14px 18px;
	background: #f8fafc;
	border-radius: 12px;
	transition: background 0.2s, opacity 0.2s;
}
.pr-calc-row--fixed {
	background: #f1f5f9;
	border-left: 3px solid #475569;
}
.pr-calc-row--vat {
	background: #fff;
	border: 1px dashed #cbd5e1;
}
.pr-calc-row--vat .pr-calc-row-label { color: #475569; font-weight: 600; }
.pr-calc-row--vat .pr-calc-row-amount { color: #334155; }
.pr-calc-row-label {
	font-size: 0.94rem;
	font-weight: 700;
	color: #0f172a;
}
.pr-calc-row-detail {
	font-size: 0.86rem;
	color: #64748b;
	text-align: right;
}
.pr-calc-row-amount {
	font-size: 1.05rem;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.01em;
	min-width: 90px;
	text-align: right;
}

@media (max-width: 540px) {
	.pr-calc-row {
		grid-template-columns: 1fr auto;
		gap: 6px;
	}
	.pr-calc-row-detail {
		grid-column: 1 / -1;
		text-align: left;
		order: 2;
	}
	.pr-calc-row-amount { order: 1; }
}

.pr-calc-total {
	margin-top: 8px;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 20px 24px;
	background: linear-gradient(90deg, #0f766e 0%, #10b981 100%);
	color: #fff;
	border-radius: 16px;
	box-shadow: 0 12px 28px -10px rgba(16, 185, 129, 0.45);
}
.pr-calc-total-label {
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	flex-wrap: wrap;
}
.pr-calc-total-tax {
	font-style: normal;
	font-size: 0.78rem;
	font-weight: 600;
	opacity: 0.78;
}
.pr-calc-total-amount {
	font-size: 2rem;
	font-weight: 900;
	letter-spacing: -0.02em;
	transition: transform 0.2s;
}
.pr-calc-total-amount em {
	font-style: normal;
	font-size: 1.05rem;
	font-weight: 700;
	margin-left: 4px;
	opacity: 0.9;
}
@media (max-width: 540px) {
	.pr-calc-total-amount { font-size: 1.65rem; }
}

/* 견적서 버튼 */
.pr-calc-quote-btn {
	margin-top: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 22px 32px;
	background: #fff;
	color: #0f766e;
	font-weight: 700;
	font-size: calc(1.18rem + 4px);
	letter-spacing: -0.01em;
	text-decoration: none;
	border: 1.5px solid #0f766e;
	border-radius: 14px;
	transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.pr-calc-quote-btn:hover {
	background: linear-gradient(135deg, #0f766e 0%, #10b981 100%);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 10px 22px -8px rgba(16, 185, 129, 0.45);
}
.pr-calc-quote-arrow {
	font-size: 0.82rem;
	transition: transform 0.2s;
}
.pr-calc-quote-btn:hover .pr-calc-quote-arrow {
	transform: translateX(3px);
}
button.pr-calc-quote-btn { cursor: pointer; }

/* ── 견적서 발행 모달 (prq-*) ── */
.prq-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.55);
	backdrop-filter: blur(4px);
	z-index: 1000;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 32px 16px;
	overflow-y: auto;
}
.prq-overlay[hidden] { display: none; }

.prq-modal {
	width: min(960px, 100%);
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 32px 80px -20px rgba(15, 23, 42, 0.45);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.prq-modal-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px;
	border-bottom: 1px solid #e2e8f0;
	background: linear-gradient(90deg, #f0fdfa 0%, #ffffff 100%);
}
.prq-modal-title {
	font-size: 1.05rem;
	font-weight: 800;
	color: #0f172a;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.prq-modal-title i { color: #10b981; }
.prq-modal-close {
	background: transparent;
	border: 0;
	font-size: 1.1rem;
	color: #64748b;
	cursor: pointer;
	padding: 6px 10px;
	border-radius: 8px;
	transition: background 0.15s, color 0.15s;
}
.prq-modal-close:hover { background: #f1f5f9; color: #0f172a; }

.prq-modal-body {
	padding: 22px 24px 24px;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

/* 폼 */
.prq-form {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 18px 20px;
}
.prq-form-section-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.92rem;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.01em;
	margin-bottom: 14px;
}
.prq-form-section-title i { color: #10b981; }
.prq-form-prefilled {
	margin-left: auto;
	font-size: 0.72rem;
	font-weight: 600;
	color: #0d9488;
	background: rgba(16, 185, 129, 0.1);
	padding: 3px 9px;
	border-radius: 999px;
	letter-spacing: 0;
}
.prq-form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}
@media (max-width: 640px) {
	.prq-form-grid { grid-template-columns: 1fr; }
}
.prq-field {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.prq-field--wide { grid-column: span 2; }
@media (max-width: 640px) {
	.prq-field--wide { grid-column: span 1; }
}
.prq-field span {
	font-size: 0.84rem;
	font-weight: 700;
	color: #475569;
	letter-spacing: -0.01em;
}
.prq-field input {
	padding: 10px 12px;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	font-size: 0.94rem;
	color: #0f172a;
	background: #fff;
	outline: none;
	transition: border-color 0.15s, box-shadow 0.15s;
}
.prq-field input:focus {
	border-color: #2dd4bf;
	box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.15);
}

/* 미리보기 라벨 */
.prq-preview-wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.prq-preview-label {
	font-size: 0.82rem;
	color: #64748b;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.prq-preview-label i { color: #94a3b8; }

/* 푸터 */
.prq-modal-foot {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	padding: 14px 24px;
	background: #f8fafc;
	border-top: 1px solid #e2e8f0;
}
.prq-foot-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: 10px;
	font-size: 0.94rem;
	font-weight: 700;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.15s;
}
.prq-foot-btn--ghost {
	background: #fff;
	color: #475569;
	border-color: #e2e8f0;
}
.prq-foot-btn--ghost:hover { background: #f1f5f9; }
.prq-foot-btn--primary {
	background: linear-gradient(135deg, #0f766e 0%, #10b981 100%);
	color: #fff;
	box-shadow: 0 8px 18px -6px rgba(16, 185, 129, 0.4);
}
.prq-foot-btn--primary:hover { transform: translateY(-1px); }

/* 인쇄 — 견적서만 표시 */
@media print {
	body * { visibility: hidden !important; }
	.prq-overlay, .prq-overlay * { visibility: visible !important; }
	.prq-overlay {
		position: static !important;
		background: #fff !important;
		padding: 0 !important;
		backdrop-filter: none !important;
		display: block !important;
		overflow: visible !important;
	}
	.prq-modal {
		box-shadow: none !important;
		border-radius: 0 !important;
		width: 100% !important;
		max-width: 100% !important;
	}
	.prq-modal-head,
	.prq-modal-foot,
	.prq-form,
	.prq-preview-label {
		display: none !important;
	}
	.prq-modal-body { padding: 0 !important; gap: 0 !important; }
	#prqDoc {
		box-shadow: none !important;
		padding: 24px 32px !important;
		max-width: 100% !important;
		margin: 0 !important;
	}
}

/* ── 보충 안내 ── */
.pr-notes {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 1080px;
	margin: 0 auto 40px;
}
@media (max-width: 900px) { .pr-notes { grid-template-columns: 1fr; max-width: 520px; } }

.pr-note {
	display: flex;
	gap: 14px;
	padding: 20px 22px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
}
.pr-note > i {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(45,212,191,0.14), rgba(16,185,129,0.08));
	color: #0d9488;
	font-size: 16px;
}
.pr-note strong {
	display: block;
	font-size: 0.98rem;
	color: #0f172a;
	margin-bottom: 4px;
}
.pr-note p {
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.55;
	color: #64748b;
}

.pr-rate-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 16px;
}

@media (max-width: 540px) {
	.pr-example-body { padding: 18px 18px; }
	.pr-example-list li { flex-direction: column; align-items: flex-start; gap: 4px; }
	.pr-example-total strong { font-size: 1.5rem; }
}

/* ── 안내 박스 (상품 조정 중) ── */
.pr-notice-card {
	max-width: 720px;
	margin: 0 auto;
	padding: 56px 40px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.04),
		0 24px 60px -24px rgba(45, 212, 191, 0.18);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.pr-notice-card::before {
	content: '';
	position: absolute;
	inset: -1px -1px auto -1px;
	height: 4px;
	background: linear-gradient(90deg, #2dd4bf 0%, #10b981 100%);
}
.pr-notice-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 22px;
	background: linear-gradient(135deg, rgba(45,212,191,0.16), rgba(16,185,129,0.10));
	color: #0d9488;
	font-size: 28px;
	margin-bottom: 22px;
}
.pr-notice-title {
	font-size: clamp(1.4rem, 2.4vw, 1.7rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.4;
	color: #0f172a;
	margin: 0 0 16px;
	word-break: keep-all;
}
.pr-notice-desc {
	font-size: 1rem;
	line-height: 1.75;
	color: #475569;
	margin: 0 0 26px;
	word-break: keep-all;
}
.pr-notice-points {
	list-style: none;
	padding: 22px 24px;
	margin: 0 auto 26px;
	max-width: 480px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	text-align: left;
	display: grid;
	gap: 10px;
}
.pr-notice-points li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.94rem;
	color: #334155;
	line-height: 1.55;
}
.pr-notice-points i {
	flex-shrink: 0;
	margin-top: 4px;
	color: #10b981;
	font-size: 0.82rem;
}
.pr-notice-foot {
	font-size: 0.92rem;
	color: #64748b;
	line-height: 1.7;
	margin: 0 0 24px;
	word-break: keep-all;
}
.pr-notice-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}
.pr-notice-cta {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 12px 22px;
	background: linear-gradient(135deg, #2dd4bf 0%, #10b981 100%);
	color: #042f2e;
	font-weight: 700;
	font-size: 0.96rem;
	letter-spacing: -0.01em;
	text-decoration: none;
	border-radius: 999px;
	box-shadow: 0 8px 18px rgba(16, 185, 129, 0.25);
	transition: transform 0.18s, box-shadow 0.18s;
}
.pr-notice-cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(16, 185, 129, 0.32);
}
.pr-notice-cta--ghost {
	background: #fff;
	color: #0f172a;
	border: 1px solid #e2e8f0;
	box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
.pr-notice-cta--ghost:hover {
	border-color: #cbd5e1;
	box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

@media (max-width: 540px) {
	.pr-notice-card { padding: 40px 24px; }
	.pr-notice-points { padding: 18px 18px; }
}

/* ── FAQ ── */
.pr-faq {
	padding: 80px 16px;
	background: #fff;
}
.pr-faq-inner {
	max-width: 880px;
	margin: 0 auto;
}
.pr-faq-title {
	text-align: center;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	margin: 0 0 40px;
	color: #0f172a;
}
.pr-faq-list {
	display: grid;
	gap: 12px;
}
.pr-faq-item {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	overflow: hidden;
	transition: border-color 0.18s;
}
.pr-faq-item[open] {
	border-color: #10b981;
}
.pr-faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 18px 22px;
	font-weight: 700;
	font-size: 0.98rem;
	color: #0f172a;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.pr-faq-item summary::-webkit-details-marker { display: none; }
.pr-faq-item summary::after {
	content: '+';
	font-size: 1.4rem;
	font-weight: 400;
	color: #64748b;
	transition: transform 0.2s;
}
.pr-faq-item[open] summary::after {
	content: '−';
	color: #10b981;
}
.pr-faq-item > div {
	padding: 0 22px 18px;
	color: #475569;
	font-size: 0.92rem;
	line-height: 1.7;
}

/* ── CTA ── */
.pr-cta {
	padding: 80px 16px 100px;
	background:
		radial-gradient(600px 240px at 50% 30%, rgba(16,185,129,0.18), transparent 60%),
		#0f172a;
	color: #fff;
	text-align: center;
}
.pr-cta-inner {
	max-width: 720px;
	margin: 0 auto;
}
.pr-cta-title {
	font-size: clamp(1.8rem, 3.4vw, 2.6rem);
	font-weight: 900;
	letter-spacing: -0.022em;
	margin: 0 0 14px;
}
.pr-cta-title em {
	font-style: normal;
	background: linear-gradient(90deg, #2dd4bf 0%, #10b981 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.pr-cta-sub {
	font-size: 1rem;
	color: #cbd5e1;
	margin: 0 0 28px;
}
.pr-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 30px;
	background: linear-gradient(135deg, #2dd4bf 0%, #10b981 100%);
	color: #042f2e;
	font-weight: 800;
	font-size: 1.02rem;
	letter-spacing: -0.01em;
	text-decoration: none;
	border-radius: 999px;
	box-shadow: 0 14px 32px rgba(45,212,191,0.36), 0 0 0 1px rgba(255,255,255,0.18) inset;
	transition: transform 0.2s, box-shadow 0.2s;
}
.pr-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(45,212,191,0.46), 0 0 0 1px rgba(255,255,255,0.22) inset;
}

/* ── 모바일 ── */
@media (max-width: 720px) {
	.pr-hero { padding: 80px 18px 44px; }
	.pr-products-wrap .up-wrap { padding: 40px 14px 64px; }
	.pr-faq { padding: 56px 14px; }
	.pr-cta { padding: 60px 16px 80px; }
}
