/* CERAMIC PRO - Company site styles (no framework required, but works with Bootstrap too) */
:root {
	--ink: #0f172a;
	--muted: #64748b;
	--line: #e5e7eb;
	--bg: #ffffff;
	--brand: #0b1f3b; /* deep navy */
	--accent: #2b6cb0; /* button blue */
	--accent2: #1e4f86;
	--radius: 14px;
	--shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
	--max: 1200px;
}

* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family:
		ui-sans-serif,
		system-ui,
		-apple-system,
		Segoe UI,
		Roboto,
		Helvetica,
		Arial,
		'Apple SD Gothic Neo',
		'Noto Sans KR',
		'Malgun Gothic',
		sans-serif;
	color: var(--ink);
	background: var(--bg);
}

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

.container-wide {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 24px;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(180%) blur(10px);
	border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}
.header-inner {
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: var(--brand);
	font-size: 22px;
}
.nav-center {
	display: flex;
	align-items: center;
	gap: 34px;
	font-size: 15px;
	color: #1f2937;
}
.nav-center a {
	position: relative;
	padding: 6px 2px;
	opacity: 0.9;
}
.nav-center a:hover {
	opacity: 1;
}
.nav-center a.active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -10px;
	height: 2px;
	background: var(--brand);
	border-radius: 2px;
	opacity: 0.9;
}
.header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}
.icon-btn {
	width: 38px;
	height: 38px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	border: 1px solid transparent;
	background: transparent;
	cursor: pointer;
}
.icon-btn:hover {
	background: #f8fafc;
	border-color: #eef2f7;
}
.badge-dot {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #ef4444;
	border: 2px solid #fff;
}

/* Mobile header */
.hamburger {
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	border: 1px solid transparent;
	background: transparent;
	cursor: pointer;
}
.hamburger:hover {
	background: #f8fafc;
	border-color: #eef2f7;
}

/* Hero slider */
.hero {
	position: relative;
	margin: 0;
}
.hero-slider {
	position: relative;
	overflow: hidden;
	border-radius: 0;
}
.slide {
	min-height: 520px;
	display: none;
	position: relative;
}
.slide.active {
	display: block;
}
.slide .bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	filter: saturate(1.05);
}
.slide .veil {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.72);
}
.slide .content {
	position: relative;
	padding: 78px 0 86px;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 40px;
	align-items: center;
}
.hero-title {
	font-size: 54px;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--brand);
	margin: 0 0 12px;
}
.hero-sub {
	color: rgba(15, 23, 42, 0.65);
	font-size: 18px;
	margin: 0 0 26px;
}
.btn-row {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.btn-primary2 {
	background: var(--accent);
	border: 1px solid var(--accent);
	color: white;
	padding: 14px 22px;
	border-radius: 12px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
}
.btn-primary2:hover {
	background: var(--accent2);
	border-color: var(--accent2);
}
.btn-outline2 {
	background: white;
	border: 1px solid #cbd5e1;
	color: #1f2937;
	padding: 14px 22px;
	border-radius: 12px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
}
.btn-outline2:hover {
	border-color: #94a3b8;
	background: #fbfdff;
}

.hero-visual {
	position: relative;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: var(--shadow);
	background: #fff;
	min-height: 320px;
}
.hero-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.slider-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 18px;
	display: flex;
	justify-content: center;
	gap: 10px;
	z-index: 2;
}
.dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: 1px solid rgba(15, 23, 42, 0.3);
	background: rgba(255, 255, 255, 0.65);
	cursor: pointer;
}
.dot.active {
	background: rgba(15, 23, 42, 0.55);
	border-color: rgba(15, 23, 42, 0.55);
}

/* Sections */
.section {
	padding: 86px 0;
}
.section-title {
	text-align: center;
	font-size: 44px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--brand);
	margin: 0 0 14px;
}
.section-sub {
	text-align: center;
	color: var(--muted);
	max-width: 760px;
	margin: 0 auto 44px;
	line-height: 1.85;
}

.two-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 34px;
	align-items: start;
}
.card-soft {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 22px;
	align-items: center;
}
.card-soft img {
	width: 300px;
	height: 220px;
	border-radius: 14px;
	object-fit: cover;
	box-shadow: var(--shadow);
}
.card-soft h3 {
	font-size: 22px;
	font-weight: 800;
	margin: 0 0 10px;
	color: var(--brand);
}
.card-soft p {
	margin: 0;
	color: var(--muted);
	line-height: 1.8;
}

.why {
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	gap: 44px;
	align-items: center;
}
.why h2 {
	font-size: 44px;
	font-weight: 900;
	letter-spacing: -0.02em;
	color: var(--brand);
	margin: 0 0 18px;
}
.bullets {
	margin: 0;
	padding-left: 18px;
	color: var(--muted);
	line-height: 2.05;
	font-size: 16px;
}
.why-visual {
	border-radius: 22px;
	overflow: hidden;
	box-shadow: var(--shadow);
	background: #fff;
}
.why-visual img {
	width: 100%;
	height: 360px;
	object-fit: cover;
	display: block;
}

.faq {
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.faq-item {
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 24px 26px;
	background: #fff;
}
.faq-q {
	color: var(--accent);
	font-weight: 800;
	margin: 0 0 10px;
}
.faq-a {
	color: var(--muted);
	margin: 0;
	line-height: 1.9;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 44px;
	align-items: start;
}
.contact-title {
	font-size: 36px;
	font-weight: 900;
	color: var(--brand);
	margin: 0 0 18px;
}
.kv {
	display: grid;
	grid-template-columns: 86px 1fr;
	gap: 10px 18px;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.9;
}
.kv a {
	color: var(--accent);
}
.hours {
	border-radius: 16px;
	background: #f3f4f6;
	padding: 26px 28px;
	color: #334155;
}
.hours h4 {
	margin: 0 0 12px;
	font-size: 16px;
	font-weight: 900;
	color: #0f172a;
}
.hours .row2 {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}
.hours .row2:last-child {
	border-bottom: none;
}
.hours .label {
	font-weight: 800;
}
.hours .val {
	color: #475569;
}

.footer {
	border-top: 1px solid rgba(229, 231, 235, 0.8);
	padding: 22px 0;
	color: #94a3b8;
	font-size: 13px;
}
.footer-inner {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

/* Drawer */
.drawer-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.45);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.18s ease;
	z-index: 60;
}
.drawer {
	position: fixed;
	top: 0;
	left: 0;
	width: 320px;
	max-width: 86vw;
	height: 100vh;
	background: #fff;
	transform: translateX(-102%);
	transition: transform 0.22s ease;
	z-index: 70;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
	display: flex;
	flex-direction: column;
}
.drawer.open {
	transform: translateX(0);
}
.drawer-backdrop.open {
	opacity: 1;
	pointer-events: auto;
}
.drawer-top {
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 14px;
	border-bottom: 1px solid #eef2f7;
}
.drawer-top .msg {
	color: #f1f5f9;
	background: #1f2937;
	padding: 10px 14px;
	width: 100%;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 700;
	font-size: 13px;
}
.drawer-top .msg a {
	color: #fff;
	text-decoration: underline;
	font-weight: 900;
}
.drawer-list {
	padding: 10px 0;
}
.drawer-item {
	display: block;
	padding: 14px 18px;
	border-bottom: 1px solid #f1f5f9;
	color: #111827;
}
.drawer-item:hover {
	background: #f8fafc;
}
.drawer-close {
	border: none;
	background: transparent;
	font-size: 22px;
	cursor: pointer;
	color: #94a3b8;
}

/* Modal (login) */
.modal-backdrop2 {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.5);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.18s ease;
	z-index: 80;
}
.modal2 {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0.98);
	width: min(520px, 92vw);
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 0.18s ease,
		transform 0.18s ease;
	z-index: 90;
}
.modal-backdrop2.open {
	opacity: 1;
	pointer-events: auto;
}
.modal2.open {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
}
.modal2 .hd {
	padding: 18px 22px;
	border-bottom: 1px solid #eef2f7;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.modal2 .hd .title {
	font-weight: 900;
	color: #0f172a;
}
.modal2 .bd {
	padding: 18px 22px 22px;
}
.modal2 .x {
	border: none;
	background: transparent;
	font-size: 20px;
	color: #94a3b8;
	cursor: pointer;
}
.form2 input {
	width: 100%;
	padding: 14px 14px;
	border-radius: 10px;
	border: 1px solid #e5e7eb;
	outline: none;
}
.form2 input:focus {
	border-color: #94a3b8;
}
.form2 .stack {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.form2 .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 10px;
	color: #64748b;
	font-size: 14px;
}
.form2 .row a {
	color: #0b1f3b;
	font-weight: 800;
}
.form2 .actions {
	margin-top: 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.form2 .btn-login {
	width: 100%;
	padding: 13px 14px;
	border-radius: 12px;
	border: 1px solid #111827;
	background: #111827;
	color: #fff;
	font-weight: 900;
}
.form2 .btn-secondary {
	width: 100%;
	padding: 13px 14px;
	border-radius: 12px;
	border: 1px solid #cbd5e1;
	background: #94a3b8;
	color: #fff;
	font-weight: 900;
}
.keep {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	color: #111827;
	font-size: 14px;
}

/* Responsive */
@media (max-width: 980px) {
	.nav-center {
		display: none;
	}
	.hamburger {
		display: inline-grid;
		place-items: center;
	}
	.header-inner {
		height: 64px;
	}
	.hero-title {
		font-size: 42px;
	}
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.hero-visual {
		min-height: 240px;
	}
	.two-cards {
		grid-template-columns: 1fr;
	}
	.card-soft {
		grid-template-columns: 1fr;
	}
	.card-soft img {
		width: 100%;
		height: 280px;
	}
	.why {
		grid-template-columns: 1fr;
	}
	.why h2 {
		font-size: 38px;
	}
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.section {
		padding: 70px 0;
	}
}
