/* ============================================================
   (주)퀸테스 메인 페이지 — 디자이너 1차 시안 정적 변환본
   피그마 Dev Mode 코드(절대좌표) → flex/grid 재구성
   콘텐츠폭 1420px / 데스크탑(1920) 기준 검수용
   ============================================================ */

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css");
@import url("https://fonts.googleapis.com/css2?family=Herr+Von+Muellerhoff&display=swap");

:root {
	--navy: #333C77;
	--navy-15: rgba(51, 60, 119, 0.15);
	--dark: #1E2330;
	--ink: #111111;
	--body: #454545;
	--muted: #555555;
	--faint: #999999;
	--faint2: #AAAAAA;
	--line: #E3E3E3;
	--placeholder: #D9D9D9;
	--maxw: 1420px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: "Pretendard", -apple-system, BlinkMacSystemFont, sans-serif;
	letter-spacing: -0.03em;
	color: var(--ink);
	background: #fff;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: min(var(--maxw), calc(100% - 80px));
	margin-inline: auto;
}

/* ---- 공통: 섹션 타이틀 ---- */
.sec-title {
	display: flex;
	align-items: flex-end;
	gap: 10px;
	font-size: 56px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.sec-title--sm {
	font-size: 40px;
}

.dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-bottom: 6px;
	flex: none;
}

.dot--navy { background: var(--navy); }
.dot--white { background: #fff; }

/* ---- 공통: 화살표 아이콘(SVG mask → currentColor) ---- */
.ico-arrow-r {
	display: inline-block;
	width: 56px;
	height: 8px;
	background: currentColor;
	-webkit-mask: url("assets/arrow-right.svg") no-repeat center / contain;
	mask: url("assets/arrow-right.svg") no-repeat center / contain;
	flex: none;
}

.ico-arrow-ne {
	display: inline-block;
	width: 14px;
	height: 16px;
	background: currentColor;
	-webkit-mask: url("assets/arrow.svg") no-repeat center / contain;
	mask: url("assets/arrow.svg") no-repeat center / contain;
	transform: rotate(45deg);
	flex: none;
}

/* ---- 공통: 원형 화살표 버튼 ---- */
.circle-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid #ddd;
	color: #fff;
	z-index: 2;
}

.circle-btn--navy {
	background: var(--navy);
	border-color: var(--navy);
}

/* ---- 공통: 고스트 버튼 ---- */
.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 24px;
	padding: 14px 24px;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid #fff;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	white-space: nowrap;
}

/* ============================================================
   헤더
   ============================================================ */
.site-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	z-index: 20;
}

.site-header::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.3);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.logo img {
	height: 36px;
	width: auto;
}

.gnb {
	display: flex;
	align-items: center;
	gap: 80px;
}

.gnb > a:not(.btn-contact) {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	white-space: nowrap;
}

.btn-contact {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 40px;
	background: var(--navy-15);
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: #fff;
	font-size: 18px;
	font-weight: 400;
}

/* ============================================================
   히어로
   ============================================================ */
.hero {
	position: relative;
	height: 1080px;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero .container {
	position: relative;
	height: 100%;
}

.hero-copy {
	position: absolute;
	top: 436px;
	left: 0;
	color: #fff;
}

.hero-copy h1 {
	font-size: 60px;
	font-weight: 800;
	line-height: 64px;
	text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}

.hero-sub {
	margin-top: 18px;
	font-size: 20px;
	font-weight: 500;
	line-height: 28px;
	text-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.hero-copy .btn-ghost {
	margin-top: 30px;
}

/* ============================================================
   sec1 — Integrated Technology Ecosystem
   ============================================================ */
.ecosystem {
	background: #fff;
	padding: 200px 0;
}

.ecosystem .sec-title {
	color: var(--ink);
}

.eco-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-top: 84px;
}

.eco-card {
	position: relative;
	height: 540px;
	overflow: hidden;
}

.eco-card--first { border-bottom-left-radius: 150px; }
.eco-card--last { border-top-right-radius: 150px; }

.eco-card .media,
.eco-card .media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eco-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
}

.eco-card--first .eco-overlay {
	background:
		linear-gradient(180deg, rgba(51, 60, 119, 0) 0%, rgba(51, 60, 119, 0.6) 100%),
		rgba(0, 0, 0, 0.2);
}

.eco-bar {
	position: absolute;
	top: 40px;
	left: 40px;
	width: 32px;
	height: 4px;
	background: #fff;
	z-index: 2;
}

.eco-card h3 {
	position: absolute;
	top: 116px;
	left: 40px;
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	line-height: 40px;
	z-index: 2;
}

.eco-sub {
	position: absolute;
	top: 167px;
	left: 40px;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	z-index: 2;
}

.eco-card .circle-btn {
	position: absolute;
	bottom: 40px;
	right: 40px;
}

/* ============================================================
   sec2 — Business
   ============================================================ */
.business {
	position: relative;
	height: 1040px;
	overflow: hidden;
}

.business-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.business-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

.business .container {
	position: relative;
	height: 100%;
}

.business .sec-title {
	position: absolute;
	top: 200px;
	left: 0;
	color: #fff;
}

.biz-list {
	position: absolute;
	top: 498px;
	left: 0;
	width: 600px;
}

.biz-item {
	position: relative;
	display: flex;
	gap: 40px;
	align-items: flex-start;
	height: 114px;
	padding: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	text-transform: uppercase;
}

.biz-list .biz-item:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.biz-item--active {
	background: var(--navy-15);
}

.biz-num {
	width: 33px;
	font-size: 32px;
	font-weight: 400;
	line-height: 1;
	flex: none;
}

.biz-body h3 {
	font-size: 32px;
	font-weight: 500;
	line-height: 1;
}

.biz-body p {
	margin-top: 16px;
	font-size: 16px;
	font-weight: 200;
	line-height: 1;
}

.biz-item .circle-btn {
	position: absolute;
	top: 33px;
	right: 30px;
}

.biz-image {
	position: absolute;
	top: 340px;
	left: 720px;
	width: 700px;
	height: 500px;
	object-fit: cover;
}

/* ============================================================
   sec3 — Product
   ============================================================ */
.product {
	background: #fff;
	padding: 200px 0;
}

.product .sec-title {
	color: var(--ink);
}

.prod-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 9px;
	margin-top: 84px;
}

.prod-card {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.prod-card .media,
.prod-card .media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.prod-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%),
		rgba(0, 0, 0, 0.2);
}

.prod-card--first .prod-overlay {
	background:
		linear-gradient(180deg, rgba(51, 60, 119, 0) 0%, rgba(51, 60, 119, 0.6) 100%),
		rgba(0, 0, 0, 0.2);
}

.prod-card h3 {
	position: absolute;
	left: 40px;
	bottom: 30px;
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	line-height: 40px;
	z-index: 2;
}

.prod-card .circle-btn {
	position: absolute;
	top: 40px;
	right: 40px;
}

/* ============================================================
   sec4 — Target Customers + Partners
   ============================================================ */
.tp {
	display: flex;
}

.tp-left,
.tp-right {
	position: relative;
	flex: 1 1 50%;
	height: 619px;
	overflow: hidden;
}

.tp-left-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tp-left-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.tp-right {
	background: var(--dark);
}

.tc-title {
	position: absolute;
	top: 200px;
	left: clamp(40px, 18.2vw, 349px);
	color: #fff;
}

.tc-bars {
	position: absolute;
	top: 288px;
	left: clamp(40px, 13vw, 250px);
	right: 40px;
	max-width: 610px;
	display: flex;
	flex-direction: column;
	gap: 3px;
	z-index: 2;
}

.tc-bar {
	background: var(--dark);
	padding: 8px 20px;
	text-align: center;
	color: #fff;
	font-size: 24px;
	font-weight: 300;
	line-height: 40px;
}

.partners-title {
	position: absolute;
	top: 200px;
	left: clamp(40px, 15.5vw, 298px);
	color: #fff;
}

.partners-logos {
	position: absolute;
	top: 288px;
	left: clamp(40px, 5.2vw, 100px);
	right: 40px;
	display: flex;
	gap: 10px;
}

.logo-box {
	flex: 1 1 0;
	max-width: 197px;
	height: 132px;
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.logo-box img {
	max-width: 160px;
	max-height: 48px;
	object-fit: contain;
}

.logo-box .name {
	font-size: 18px;
	font-weight: 500;
	color: #333;
}

.logo-box--ph img {
	width: 44px;
	height: 44px;
	opacity: 0.4;
}

/* ============================================================
   sec5 — News & Notice
   ============================================================ */
.news {
	background: #fff;
	padding: 200px 0;
}

.news .sec-title {
	color: var(--ink);
}

.news-list {
	margin-top: 84px;
	border-bottom: 1px solid var(--line);
}

.news-row {
	display: grid;
	grid-template-columns: 207px 1fr 260px;
	gap: 60px;
	align-items: center;
	min-height: 240px;
	border-top: 1px solid var(--line);
}

.news-date {
	padding-left: 60px;
}

.news-date .day {
	font-size: 80px;
	font-weight: 700;
	line-height: 68px;
	color: var(--faint);
}

.news-row--first .news-date .day,
.news-row--first .news-date .ym {
	color: var(--navy);
}

.news-date .ym {
	margin-top: 9px;
	padding-left: 14px;
	font-size: 16px;
	font-weight: 500;
	color: var(--faint);
}

.news-body {
	padding-right: 40px;
}

.news-body h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
	color: var(--body);
}

.news-body p {
	margin-top: 5px;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	color: var(--body);
}

.news-thumb {
	justify-self: end;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 260px;
	height: 160px;
	background: var(--placeholder);
}

.news-thumb .ph-icon {
	width: 32px;
	height: 32px;
	fill: #b3b3b3;
}

.view-all {
	display: flex;
	justify-content: center;
	margin-top: 100px;
}

.btn-viewall {
	display: inline-flex;
	align-items: center;
	gap: 30px;
	padding: 13px 20px;
	border: 1px solid var(--faint2);
	color: var(--faint2);
	font-size: 16px;
}

.btn-viewall .ico-arrow-r {
	width: 48px;
}

/* ============================================================
   sec6 — CTA
   ============================================================ */
.cta {
	position: relative;
	height: 555px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.cta-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cta-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
}

.cta-inner {
	position: relative;
	color: #fff;
}

.cta-inner h2 {
	font-size: 60px;
	font-weight: 800;
	line-height: 64px;
	text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}

.cta-inner .btn-ghost {
	margin-top: 40px;
}

/* ============================================================
   푸터
   ============================================================ */
.footer {
	position: relative;
	height: 274px;
	background: var(--dark);
}

.footer .container {
	position: relative;
	height: 100%;
}

.footer-logo {
	position: absolute;
	left: 0;
	top: 66px;
}

.footer-logo img {
	height: 40px;
	width: auto;
}

.footer-col {
	position: absolute;
	top: 66px;
}

.footer-col h4 {
	font-size: 15px;
	font-weight: 500;
	color: var(--faint);
}

.footer-company { left: 206px; }
.footer-menu { left: 801px; }
.footer-policy { right: 0; text-align: right; }

.footer-company .addr {
	margin-top: 41px;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	color: var(--muted);
}

.footer-company .copy {
	margin-top: 51px;
	font-size: 14px;
	font-weight: 500;
	color: #333;
}

.footer-menu nav,
.footer-policy .links {
	margin-top: 41px;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	color: var(--muted);
}

.footer-menu nav span {
	font-weight: 100;
	color: var(--muted);
	margin: 0 8px;
}

/* ============================================================
   서브페이지 공통
   ============================================================ */
.site-header--light {
	position: relative;
	background: #fff;
}

.site-header--light::after {
	background: var(--line);
}

.site-header--light .gnb > a:not(.btn-contact) {
	color: #333;
}

.site-header--light .btn-contact {
	background: var(--dark);
	border-color: var(--dark);
	color: #fff;
}

.breadcrumb {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	padding-top: 80px;
	font-size: 18px;
	font-weight: 600;
	color: var(--faint2);
}

.breadcrumb .sep {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--faint2);
}

.breadcrumb .here {
	color: var(--navy);
}

.page-title {
	display: flex;
	align-items: flex-end;
	gap: 10px;
	margin-top: 50px;
	font-size: 56px;
	font-weight: 700;
	color: #333;
	text-transform: uppercase;
}

.sub-h {
	font-size: 48px;
	font-weight: 700;
	color: #333;
	text-transform: uppercase;
}

/* ===== About : 인사말 ===== */
.about-greeting {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	margin-top: 100px;
}

.greeting-img {
	height: 800px;
	background: var(--placeholder);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 48px;
	font-weight: 700;
}

.greeting-text {
	padding: 100px clamp(40px, 13vw, 250px) 0 clamp(40px, 5.2vw, 100px);
}

.greeting-text .eyebrow {
	font-size: 24px;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: 0.3em;
}

.greeting-text h2 {
	margin-top: 16px;
	font-size: 48px;
	font-weight: 700;
	color: #333;
}

.greeting-text .slogan {
	margin-top: 36px;
	font-size: 28px;
	font-weight: 600;
	color: #333;
}

.greeting-text .gbody {
	margin-top: 24px;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.4;
	color: #333;
}

.greeting-text .gbody p + p {
	margin-top: 1.4em;
}

.greeting-text .sign {
	margin-top: 40px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.greeting-text .sign .role {
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.greeting-text .sign .name {
	font-family: "Herr Von Muellerhoff", cursive;
	font-size: 48px;
	color: #333;
}

/* ===== About : 회사소개 + Vision/Mission ===== */
.about-intro {
	margin-top: 150px;
}

.intro-body {
	margin-top: 30px;
	max-width: 1150px;
	font-size: 22px;
	line-height: 28px;
	color: #333;
}

.vm {
	display: flex;
	justify-content: center;
	margin-top: 60px;
}

.vm-cap {
	width: 48%;
	max-width: 680px;
	min-width: 0;
	height: 240px;
	border-radius: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	text-align: center;
	color: #fff;
}

.vm-cap h3 {
	font-size: 32px;
	font-weight: 700;
}

.vm-cap p {
	font-size: 24px;
	font-weight: 400;
	line-height: 28px;
}

.vm-vision {
	position: relative;
	z-index: 1;
	background: rgba(51, 60, 119, 0.5);
}

.vm-mission {
	background: #5577a8;
	margin-left: -40px;
}

/* ===== About : From Materials to Devices ===== */
.about-m2d {
	margin-top: 270px;
	padding: 165px 0;
	background: #f8f8f8;
}

.about-m2d .lead {
	margin-top: 30px;
	font-size: 28px;
	font-weight: 600;
	color: #333;
}

.about-m2d .m2d-body {
	margin-top: 24px;
	font-size: 22px;
	line-height: 28px;
	color: #333;
}

.about-m2d .btn-viewall {
	margin-top: 40px;
}

/* ===== About : History ===== */
.about-history {
	margin-top: 159px;
}

.history-img {
	margin-top: 50px;
	height: 300px;
	overflow: hidden;
}

.history-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.history-wrap {
	display: grid;
	grid-template-columns: 460px 1fr;
	margin-top: 60px;
}

.history-head {
	font-size: 56px;
	font-weight: 700;
	color: #242424;
}

.hist-item {
	padding-bottom: 40px;
	margin-bottom: 50px;
	border-bottom: 1px solid var(--line);
}

.hist-item:last-child {
	margin-bottom: 0;
	border-bottom: 0;
}

.hist-year {
	margin-bottom: 16px;
	font-size: 32px;
	font-weight: 700;
	color: var(--navy);
}

.hist-desc {
	font-size: 18px;
	line-height: 30px;
	color: var(--body);
	list-style: none;
}

.hist-desc li {
	position: relative;
	padding-left: 16px;
}

.hist-desc li::before {
	content: "·";
	position: absolute;
	left: 0;
	color: var(--navy);
	font-weight: 900;
}

/* ===== About : 회사정보 ===== */
.about-company {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 80px;
}

.company-info {
	background: var(--dark);
	color: #fff;
	padding: 120px clamp(30px, 5vw, 100px) 300px clamp(40px, 13vw, 250px);
}

.company-info .ci-name {
	font-size: 20px;
	font-weight: 700;
	color: #e7f6fe;
}

.company-info .ci-addr {
	margin-top: 22px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
}

.company-info .ci-jibun {
	margin-top: 16px;
	font-size: 16px;
	line-height: 24px;
}

.ci-table {
	margin-top: 50px;
	width: 100%;
	max-width: 610px;
	border-collapse: collapse;
}

.ci-table th,
.ci-table td {
	padding: 18px 0;
	font-size: 18px;
	text-align: left;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	vertical-align: middle;
}

.ci-table th {
	width: 160px;
	font-weight: 600;
}

.ci-table td {
	font-weight: 400;
}

.company-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ============================================================
   Business 상세
   ============================================================ */
.page-sub {
	margin-top: 20px;
	font-size: 22px;
	color: var(--muted);
	text-transform: uppercase;
}

.biz-hero {
	margin-top: 120px;
	height: 600px;
	overflow: hidden;
}

.biz-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.biz-products {
	margin-top: 150px;
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.biz-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	align-items: center;
}

.biz-row--reverse {
	grid-template-columns: 1fr 1fr;
}

.biz-row--reverse .biz-text {
	order: -1;
}

.biz-img {
	height: 500px;
	border-top-right-radius: 150px;
	overflow: hidden;
	background: var(--placeholder);
}

.biz-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.biz-text .dot {
	display: block;
	margin-bottom: 6px;
}

.biz-text h3 {
	font-size: 40px;
	font-weight: 700;
	color: #333;
}

.biz-text p {
	margin-top: 20px;
	max-width: 610px;
	font-size: 20px;
	line-height: 1.4;
	color: #333;
}

.biz-text .btn-viewall {
	margin-top: 90px;
}

.cta--mid {
	margin-top: 150px;
}

.cta--mid .cta-overlay {
	background: rgba(0, 0, 0, 0.5);
}

/* ============================================================
   Product 상세
   ============================================================ */
.pd-top {
	margin-top: 100px;
	display: grid;
	grid-template-columns: 710px 1fr;
	gap: 60px;
	align-items: start;
}

.pd-main-img {
	height: 500px;
	border: 1px solid var(--line);
	overflow: hidden;
}

.pd-main-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pd-thumbs {
	margin-top: 10px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.pd-thumb {
	height: 120px;
	border: 1px solid var(--line);
	overflow: hidden;
}

.pd-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pd-info {
	padding-top: 40px;
}

.pd-info .dot {
	display: block;
	margin-bottom: 14px;
}

.pd-info h1 {
	font-size: 40px;
	font-weight: 700;
	color: #333;
}

.pd-info .pd-sub {
	margin-top: 14px;
	font-size: 20px;
	color: var(--navy);
}

.pd-info .pd-desc {
	margin-top: 30px;
	max-width: 650px;
	font-size: 22px;
	line-height: 1.4;
	color: #333;
}

.pd-info .btn-viewall {
	margin-top: 30px;
}

.specs {
	margin-top: 100px;
	margin-bottom: 130px;
}

.specs-head {
	padding-top: 80px;
	border-top: 1px solid var(--line);
	font-size: 32px;
	font-weight: 700;
	color: #333;
}

.spec-table {
	margin-top: 72px;
}

.spec-row {
	display: grid;
	grid-template-columns: 400px 1fr;
}

.spec-label {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 40px;
	background: var(--navy);
	border: 1px solid #252c59;
	color: #fff;
}

.spec-num {
	flex: none;
	width: 30px;
	height: 30px;
	border: 1px solid #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 500;
}

.spec-name {
	font-size: 24px;
	font-weight: 500;
}

.spec-name small {
	font-size: 16px;
}

.spec-desc {
	display: flex;
	align-items: center;
	padding: 40px;
	background: #f8f8f8;
	border: 1px solid var(--line);
	font-size: 20px;
	line-height: 1.4;
	color: #333;
}

/* ============================================================
   검수용 인터랙션 안내 (정적 시안 미반영 호버 동작 표기)
   ============================================================ */
.review-note {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 9999;
	max-width: 380px;
	padding: 16px 20px;
	background: rgba(30, 35, 48, 0.95);
	border: 1px dashed var(--sky);
	border-radius: 10px;
	color: #fff;
	font-family: "Pretendard", sans-serif;
	font-size: 13px;
	line-height: 1.55;
	letter-spacing: -0.02em;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.review-note b {
	display: block;
	margin-bottom: 8px;
	color: var(--sky);
	font-size: 13px;
}

.review-note ul {
	margin: 0;
	padding-left: 16px;
}

.review-note li {
	margin-bottom: 6px;
}

.review-note li:last-child {
	margin-bottom: 0;
}

