:root {
  --navy-950: #071a33;
  --navy-900: #0b2447;
  --navy-800: #103968;
  --blue-700: #125fc4;
  --blue-600: #2378df;
  --blue-100: #e8f2ff;
  --blue-50: #f3f8ff;
  --green-700: #087a5b;
  --green-100: #dff7ed;
  --yellow: #fee500;
  --ink: #142033;
  --muted: #617086;
  --line: #dce5f0;
  --line-strong: #c7d3e2;
  --paper: #ffffff;
  --canvas: #f5f8fc;
  --danger: #b4232d;
  --danger-soft: #fff1f2;
  --warning: #9a4b12;
  --warning-soft: #fff7ed;
  --shadow-sm: 0 8px 28px rgba(20, 48, 82, .08);
  --shadow-lg: 0 26px 70px rgba(7, 26, 51, .16);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --content: min(1180px, 92vw);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: Pretendard, "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
body::selection { color: #fff; background: var(--blue-700); }
a { color: var(--blue-700); text-underline-offset: 3px; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(35, 120, 223, .32); outline-offset: 3px; }
[hidden] { display: none !important; }

.utility-bar {
  background: var(--navy-950);
  color: #c8d7e9;
  font-size: .82rem;
}
.utility-inner {
  width: var(--content);
  min-height: 34px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.utility-inner strong { color: #fff; }
.utility-points { display: flex; flex-wrap: wrap; gap: 18px; }
.utility-points span::before { content: "✓"; margin-right: 6px; color: #6fe0bb; font-weight: 900; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(220, 229, 240, .9);
  backdrop-filter: blur(12px);
}
.nav {
  width: var(--content);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-900);
  font-size: 1.18rem;
  font-weight: 950;
  letter-spacing: -.02em;
  text-decoration: none;
  white-space: nowrap;
}
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-copy small {
  display: block;
  margin-top: -3px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.nav-menu { display: flex; align-items: center; gap: 26px; }
.nav-links { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.nav-links a {
  color: #35455d;
  font-size: .94rem;
  font-weight: 750;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--blue-700); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border-radius: 10px;
  background: var(--blue-700);
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(18, 95, 196, .2);
}

.container, .hero-inner, .page-hero-inner { width: var(--content); margin: 0 auto; }
.section { padding: 76px 0; }
.section.compact { padding: 56px 0; }
.section.white { background: var(--paper); }
.section.tint { background: var(--blue-50); }
.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-head.center { margin-right: auto; margin-left: auto; text-align: center; }
.section-kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--blue-700);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-kicker::before, .eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.section h2, .section-head h2 {
  margin: 0 0 12px;
  color: var(--navy-900);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.25;
  letter-spacing: -.035em;
}
.lead { margin: 0; color: var(--muted); font-size: 1.04rem; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 14px; }
.section-heading h2 { margin-bottom: 0; }
.text-link { color: var(--blue-700); font-weight: 850; text-decoration: none; white-space: nowrap; }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(78, 157, 255, .34), transparent 29%),
    radial-gradient(circle at 70% 120%, rgba(54, 199, 158, .22), transparent 35%),
    linear-gradient(130deg, var(--navy-950), #0d4385 58%, #176fcf);
  padding: 84px 0 76px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, #000 60%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
  align-items: center;
  gap: 68px;
}
.hero .eyebrow { color: #88c3ff; }
.hero h1 {
  max-width: 820px;
  margin: 0 0 22px;
  font-size: clamp(2.45rem, 4.5vw, 4.15rem);
  line-height: 1.12;
  letter-spacing: -.055em;
}
.hero-copy > p {
  max-width: 720px;
  margin: 0 0 30px;
  color: #dceaff;
  font-size: 1.08rem;
}
.hero-actions, .actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 28px;
  color: #dbe9f8;
  font-size: .9rem;
}
.hero-proof span::before { content: "✓"; margin-right: 7px; color: #72e2bd; font-weight: 900; }
.hero-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .1);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}
.hero-panel-label { margin: 0 0 16px; color: #a9d4ff; font-size: .82rem; font-weight: 900; letter-spacing: .08em; }
.hero-panel h2 { margin: 0 0 20px; color: #fff; font-size: 1.55rem; line-height: 1.35; }
.promise-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.promise-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 15px;
  border-radius: 12px;
  background: rgba(6, 25, 51, .38);
}
.promise-list strong { font-size: .92rem; }
.promise-list span { color: #bcd4ed; font-size: .82rem; }
.promise-list li > span { font-weight: 950; }
.promise-list small { display: block; margin-top: 2px; color: #bfd2e8; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--blue-700);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(18, 95, 196, .22); }
.button.secondary { background: #fff; color: var(--navy-900); }
.button.outline { border-color: var(--line-strong); background: transparent; color: var(--blue-700); }
.hero .button.outline { border-color: rgba(255,255,255,.55); color: #fff; }
.button.kakao { background: var(--yellow); color: #191919; }
.button.bank-button { background: var(--navy-800); color: #fff; }
.button:disabled { opacity: .48; transform: none; box-shadow: none; cursor: not-allowed; }
.button.block { width: 100%; }

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -26px;
}
.trust-strip-inner {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.trust-item { padding: 21px 24px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--navy-900); font-size: .98rem; }
.trust-item span { color: var(--muted); font-size: .82rem; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card, .service-card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.card h3, .service-card h3 { margin: 0 0 9px; color: var(--navy-900); font-size: 1.16rem; }
.card p, .service-card p { margin: 0; color: var(--muted); }
.service-card { display: flex; min-height: 220px; flex-direction: column; }
.service-card .service-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 12px;
  color: var(--blue-700);
  background: var(--blue-100);
  font-weight: 950;
}
.service-card .price { margin-top: auto; padding-top: 18px; }
.price { color: var(--green-700) !important; font-size: 1.12rem; font-weight: 950; }
.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--blue-700);
  background: var(--blue-100);
  font-size: .72rem;
  font-weight: 900;
}
.meta { color: var(--muted); font-size: .9rem; }
.notice, .warning, .success-notice {
  padding: 16px 18px;
  border: 1px solid #bcd7f8;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  color: #1c4d82;
}
.warning { border-color: #f0c8a9; color: #7e3d12; background: var(--warning-soft); }
.success-notice { border-color: #a9dec9; color: #086145; background: #effbf7; }

.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; counter-reset: step; }
.flow > div {
  position: relative;
  min-height: 154px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.flow > div::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 16px;
  color: var(--blue-700);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
}
.flow strong { display: block; margin-bottom: 6px; color: var(--navy-900); }
.flow span { color: var(--muted); font-size: .88rem; }

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 38px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(120deg, var(--navy-900), #155fb8);
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { margin: 0 0 5px; color: #fff; font-size: 1.65rem; }
.cta-band p { margin: 0; color: #cfe2f8; }

.page-hero {
  padding: 58px 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 5%, rgba(71,150,245,.36), transparent 28%),
    linear-gradient(125deg, var(--navy-950), #104f99);
}
.breadcrumb { margin-bottom: 18px; color: #a9c7e8; font-size: .84rem; }
.breadcrumb a { color: #d8e9fb; text-decoration: none; }
.page-hero h1 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.2; letter-spacing: -.045em; }
.page-hero p { max-width: 760px; margin: 0; color: #d8e7f7; font-size: 1.02rem; }

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 38px;
}
.category-nav a {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #41526a;
  background: #fff;
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
}
.category-nav a:hover { border-color: #9abce7; color: var(--blue-700); background: var(--blue-50); }
.pricing-section { scroll-margin-top: 110px; }
.pricing-section + .pricing-section { margin-top: 58px; }
.pricing-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.pricing-heading h2 { margin: 0; color: var(--navy-900); font-size: 1.65rem; }
.pricing-heading p { margin: 0; color: var(--muted); font-size: .88rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pricing-card {
  display: flex;
  min-height: 204px;
  flex-direction: column;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.pricing-card h3 { margin: 0 0 8px; color: var(--navy-900); font-size: 1.02rem; }
.pricing-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.pricing-card .price { margin-top: auto; padding-top: 18px; }

.checkout-page { padding: 42px 0 72px; }
.checkout-header { width: min(980px, 92vw); margin: 0 auto 24px; }
.checkout-header h1 { margin: 0 0 7px; color: var(--navy-900); font-size: 2rem; letter-spacing: -.035em; }
.checkout-header p { margin: 0; color: var(--muted); }
.stepper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(980px, 92vw);
  margin: 0 auto 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.step { padding: 14px 18px; border-right: 1px solid var(--line); color: var(--muted); font-size: .82rem; font-weight: 800; text-align: center; }
.step:last-child { border-right: 0; }
.step.active { color: var(--blue-700); background: var(--blue-50); }
.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, .7fr);
  align-items: start;
  gap: 24px;
  width: min(980px, 92vw);
  margin: 0 auto;
}
.checkout-main, .checkout-aside {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.checkout-main { padding: 30px; }
.checkout-main h2, .checkout-aside h2 { margin: 0 0 20px; color: var(--navy-900); font-size: 1.25rem; }
.checkout-aside { position: sticky; top: 104px; padding: 25px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.field { margin-bottom: 17px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; color: #28384e; font-size: .88rem; font-weight: 850; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid #bcc9da;
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
}
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-600); outline: 3px solid rgba(35,120,223,.12); }
.summary { margin: 0; padding: 0; }
.summary-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.summary-row strong { max-width: 58%; text-align: right; }
.summary-row.total { margin-top: 7px; padding-top: 18px; border-top: 2px solid var(--navy-900); border-bottom: 0; color: var(--navy-900); font-size: 1.18rem; font-weight: 950; }
.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 22px 0 16px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fafc;
  font-size: .88rem;
}
.consent input { width: 18px; height: 18px; margin-top: 3px; flex: 0 0 auto; }
.review-note { margin-top: 16px; color: var(--muted); font-size: .8rem; text-align: center; }

.legal-wrap { padding: 42px 0 74px; }
.legal-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
  width: min(1080px, 92vw);
  margin: 0 auto;
}
.legal-aside {
  position: sticky;
  top: 106px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.legal-aside strong { display: block; margin-bottom: 13px; color: var(--navy-900); }
.legal-aside a { display: block; padding: 7px 0; color: var(--muted); font-size: .86rem; text-decoration: none; }
.legal-aside a:hover { color: var(--blue-700); }
.legal-content, .legal {
  margin: 0;
  padding: 38px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.legal { width: min(920px, 92vw); margin: 40px auto; }
.legal-content h1, .legal h1 { margin: 0 0 8px; color: var(--navy-900); font-size: 2rem; line-height: 1.25; letter-spacing: -.035em; }
.legal-content h2, .legal h2 { margin: 34px 0 9px; padding-top: 4px; color: var(--navy-900); font-size: 1.18rem; scroll-margin-top: 110px; }
.legal-content p, .legal p { margin: 0; color: #44536a; }
.legal-content p + p { margin-top: 10px; }
.policy-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 26px 0 10px;
}
.policy-summary div { padding: 16px; border-radius: 12px; background: var(--blue-50); }
.policy-summary strong { display: block; margin-bottom: 4px; color: var(--navy-900); font-size: .86rem; }
.policy-summary span { color: var(--muted); font-size: .8rem; }
.legal table { width: 100%; border-collapse: collapse; }
.legal th, .legal td { padding: 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal th { width: 25%; background: #f4f7fb; }

.quote-page { min-height: 100vh; padding: 34px 0 70px; background: linear-gradient(180deg, #eaf3ff 0, var(--canvas) 360px); }
.quote-shell { width: min(860px, 94vw); margin: 0 auto; }
.quote-topline { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.quote-topline .brand img { width: 38px; height: 38px; }
.quote-help { color: var(--muted); font-size: .84rem; }
.quote-sheet {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.quote-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 34px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(80,158,255,.38), transparent 30%),
    linear-gradient(125deg, var(--navy-950), #12569f);
}
.quote-header .eyebrow { margin-bottom: 6px; color: #8dc4ff; }
.quote-header h1 { margin: 0; font-size: 1.85rem; letter-spacing: -.035em; }
.quote-header p { margin: 7px 0 0; color: #cfe0f3; }
.secure-chip { padding: 8px 12px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: #dbeaff; background: rgba(255,255,255,.09); font-size: .75rem; white-space: nowrap; }
.quote-body { padding: 30px 34px 36px; }
.quote-notice { display: none; margin-bottom: 18px; font-weight: 800; }
.quote-notice.error { border-color: #f0b8bd; color: var(--danger); background: var(--danger-soft); }
.quote-customer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f7f9fc;
}
.quote-customer span { color: var(--muted); font-size: .86rem; }
.quote-customer strong { color: var(--navy-900); }
.amount-list { border-top: 1px solid var(--line); }
.amount-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 2px;
  border-bottom: 1px solid var(--line);
}
.amount-row span { color: var(--muted); }
.amount-row.total { margin-top: 6px; padding: 18px 2px 10px; border-bottom: 0; color: var(--navy-900); font-size: 1.3rem; font-weight: 950; }
.amount-row.total span { color: var(--navy-900); }
.quote-memo { margin: 20px 0; padding: 17px 18px; border-left: 3px solid var(--blue-600); border-radius: 0 12px 12px 0; white-space: pre-wrap; color: #42536a; background: var(--blue-50); }
.quote-status { display: flex; justify-content: space-between; gap: 16px; padding: 13px 16px; border-radius: 12px; color: #36516f; background: #edf4fd; }
.payment-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 24px 0;
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: #fbfcfe;
  font-size: .88rem;
}
.payment-consent input { width: 18px; height: 18px; margin-top: 3px; flex: 0 0 auto; }
.payment-title { margin: 0 0 14px; color: var(--navy-900); font-size: 1.2rem; }
.payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.payment-option { padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.payment-option h3 { margin: 0 0 7px; color: var(--navy-900); font-size: 1.02rem; }
.payment-option > p { margin: 0 0 16px; color: var(--muted); font-size: .85rem; }
.bank-details { margin: 0 0 14px; padding: 14px; border-radius: 12px; background: #f7f9fc; }
.bank-details p { display: flex; justify-content: space-between; gap: 15px; margin: 6px 0; font-size: .84rem; }
.bank-details b { color: var(--navy-900); }
.bank-warning { color: var(--danger) !important; font-weight: 800; }
.copy-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 9px; }
.copy-button { min-height: 40px; border: 0; border-radius: 9px; color: #33465e; background: #eaf0f7; font-weight: 800; cursor: pointer; }
.legal-links { margin: 24px 0 0; color: var(--muted); font-size: .84rem; text-align: center; }

dialog { max-width: 500px; border: 0; border-radius: 20px; padding: 0; box-shadow: 0 28px 90px rgba(0,0,0,.34); }
dialog::backdrop { background: rgba(5, 17, 34, .68); backdrop-filter: blur(3px); }
.dialog-body { padding: 30px; }
.dialog-body h2 { margin: 0 0 10px; color: var(--navy-900); }

/* Commercial page components */
.button.ghost { border-color: rgba(255,255,255,.5); color: #fff; background: transparent; }
.button.ghost:hover { background: rgba(255,255,255,.1); }
.service-grid, .assurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-no {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 12px;
  color: var(--blue-700);
  background: var(--blue-100);
  font-size: .8rem;
  font-weight: 950;
}
.flow > div > span { display: none; }
.flow small { display: block; color: var(--muted); line-height: 1.55; }
.cta-band > div > span { display: block; margin-bottom: 7px; color: #a9cff7; font-size: .8rem; font-weight: 900; letter-spacing: .04em; }
.page-hero.compact { padding: 46px 0; }
.pricing-card > strong { margin-top: auto; padding-top: 18px; color: var(--green-700); font-size: 1.04rem; }

.checkout-head { max-width: 980px; margin: 0 auto 24px; }
.checkout-head h1 { margin: 0 0 8px; color: var(--navy-900); font-size: 2rem; letter-spacing: -.035em; }
.checkout-head > p:last-child { margin: 0; color: var(--muted); }
.checkout-head .breadcrumb { color: var(--muted); }
.checkout-head .breadcrumb a { color: var(--blue-700); }
.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  margin: 0 auto 24px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  list-style: none;
}
.step span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  margin-right: 6px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #a8b5c5;
  font-size: .7rem;
}
.step.active span { background: var(--blue-700); }
.form-section-title { display: flex; gap: 12px; align-items: flex-start; margin: 4px 0 18px; }
.form-section-title:not(:first-child) { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.form-section-title > span { display: grid; width: 32px; height: 32px; flex: 0 0 auto; place-items: center; border-radius: 9px; color: var(--blue-700); background: var(--blue-100); font-size: .75rem; font-weight: 950; }
.form-section-title h2 { margin: 0 0 3px; }
.form-section-title p { margin: 0; color: var(--muted); font-size: .84rem; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkout-submit { width: 100%; }
.summary-label { color: var(--blue-700); font-size: .7rem; font-weight: 950; letter-spacing: .09em; }
.checkout-aside .summary h2 { margin-top: 6px; }
.checkout-note { margin-top: 22px; padding: 16px; border-radius: 12px; color: #44536a; background: var(--blue-50); font-size: .84rem; }
.checkout-note strong { color: var(--navy-900); }
.checkout-note p { margin: 6px 0 0; }
.secure-note { display: flex; gap: 10px; margin-top: 16px; color: var(--muted); font-size: .8rem; }
.secure-note span { display: grid; width: 24px; height: 24px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--green-700); background: var(--green-100); font-weight: 950; }
.secure-note p { margin: 0; }
.dialog-icon { display: grid; width: 48px; height: 48px; margin-bottom: 18px; place-items: center; border-radius: 50%; color: var(--green-700); background: var(--green-100); font-size: 1.3rem; font-weight: 950; }

.policy-summary div span { display: block; margin-bottom: 5px; }
.policy-summary div strong { margin-bottom: 0; }
.business-block { margin-top: 34px; padding: 20px; border-radius: 14px; background: #f7f9fc; }
.business-block h2 { margin-top: 0; }

.quote-seal { display: grid; width: 72px; height: 72px; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(255,255,255,.08); text-align: center; }
.quote-seal span { display: block; margin-bottom: -24px; font-size: .74rem; }
.quote-seal strong { font-size: .82rem; }
.quote-body > .notice { display: none; margin-bottom: 18px; font-weight: 800; }
.quote-body > .notice.error { border-color: #f0b8bd; color: var(--danger); background: var(--danger-soft); }
.quote-amounts { border-top: 1px solid var(--line); }
.quote-amounts .row { display: flex; justify-content: space-between; gap: 20px; padding: 12px 2px; border-bottom: 1px solid var(--line); }
.quote-amounts .row span { color: var(--muted); }
.quote-amounts .row.discount b { color: var(--blue-700); }
.quote-amounts .row.total { margin-top: 6px; padding: 18px 2px 10px; border-bottom: 0; color: var(--navy-900); font-size: 1.3rem; font-weight: 950; }
.quote-amounts .row.total span { color: var(--navy-900); }
.quote-meta-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 12px; margin: 20px 0; }
.quote-meta-grid > div { padding: 16px 18px; border-radius: 13px; background: var(--blue-50); }
.quote-meta-grid span { display: block; margin-bottom: 6px; color: var(--muted); font-size: .8rem; }
.quote-meta-grid strong { color: var(--navy-900); }
.quote-meta-grid .memo { margin: 0; white-space: pre-wrap; color: #42536a; font-size: .86rem; }
.payment-heading { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 14px; }
.payment-heading h2 { margin: 3px 0 0; color: var(--navy-900); font-size: 1.25rem; }
.payment-heading > p { margin: 0; color: var(--muted); font-size: .8rem; }
.payment-complete {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin: 22px 0;
  padding: 24px;
  border: 1px solid #a9dec9;
  border-radius: 16px;
  background: #effbf7;
}
.payment-complete[hidden], .payment-grid[hidden], .payment-heading[hidden], .payment-consent[hidden] { display: none !important; }
.payment-complete-icon { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; color: #fff; background: var(--green-700); font-size: 1.65rem; font-weight: 950; }
.payment-complete h2 { margin: 5px 0 8px; color: var(--navy-900); font-size: 1.28rem; }
.payment-complete p { margin: 0; color: #40536b; line-height: 1.7; }
.payment-complete-summary { display: flex; justify-content: space-between; gap: 18px; margin-top: 16px; padding-top: 14px; border-top: 1px solid #c7e8da; }
.payment-complete-summary span { color: var(--muted); }
.payment-complete-summary strong { color: var(--green-700); font-size: 1.08rem; }
.payment-card { display: flex; min-width: 0; flex-direction: column; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.payment-card-head { display: flex; gap: 12px; align-items: center; }
.payment-card-head h3 { margin: 0 0 3px; color: var(--navy-900); font-size: 1.02rem; }
.payment-card-head p { margin: 0; color: var(--muted); font-size: .8rem; }
.payment-icon { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border-radius: 12px; color: #191919; background: var(--yellow); font-weight: 950; }
.payment-icon.bank-icon { color: #fff; background: var(--navy-800); }
.payment-card ul { margin: 18px 0; padding-left: 20px; color: var(--muted); font-size: .82rem; }
.payment-card button { width: 100%; min-height: 47px; margin-top: auto; border: 0; border-radius: 10px; font-weight: 900; cursor: pointer; }
.payment-card button:disabled { opacity: .48; cursor: not-allowed; }
.kakao-card .kakao { color: #191919; background: var(--yellow); }
.bank-card .bank-button { margin-top: 10px; color: #fff; background: var(--navy-800); }
.bank { margin: 18px 0 12px; padding: 14px; border-radius: 12px; background: #f7f9fc; }
.bank > div { display: flex; justify-content: space-between; gap: 12px; margin: 7px 0; font-size: .8rem; }
.bank span { color: var(--muted); }
.bank strong { color: var(--navy-900); text-align: right; }
.bank .bank-total { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line); }
.bank .bank-total strong { color: var(--blue-700); }
.bank-warning { margin: 11px 0 0; color: var(--danger); font-size: .75rem; font-weight: 800; text-align: center; }
.legal-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 16px; }
.quote-footer { color: var(--muted); font-size: .75rem; text-align: center; }

.table-scroll { overflow-x: auto; margin-top: 12px; border-radius: 12px; }
.contact-card { display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 18px; border-radius: 13px; background: var(--blue-50); }
.contact-card strong { width: 100%; color: var(--navy-900); }
.contact-card span { color: var(--muted); }

.lookup-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 16%, rgba(50,131,226,.12), transparent 28%),
    linear-gradient(145deg, #f7faff, #edf4fc);
}
.lookup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1040px, 92vw);
  margin: 0 auto;
  padding: 24px 0;
}
.lookup-header > a:last-child { color: var(--blue-700); font-size: .86rem; font-weight: 850; text-decoration: none; }
.lookup-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: center;
  gap: 72px;
  width: min(1040px, 92vw);
  min-height: calc(100vh - 170px);
  margin: 0 auto;
  padding: 34px 0 70px;
}
.lookup-intro h1 { margin: 14px 0; color: var(--navy-900); font-size: clamp(2.25rem, 5vw, 3.7rem); line-height: 1.12; letter-spacing: -.05em; }
.lookup-intro > p { max-width: 580px; margin: 0; color: var(--muted); font-size: 1.04rem; }
.lookup-intro ul { display: grid; gap: 8px; margin: 28px 0 22px; padding: 0; color: #40536b; list-style: none; }
.lookup-intro li::before { content: "✓"; margin-right: 9px; color: var(--green-700); font-weight: 950; }
.lookup-intro > a { color: var(--blue-700); font-weight: 850; text-decoration: none; }
.lookup-badge { display: inline-flex; padding: 7px 11px; border-radius: 999px; color: var(--blue-700); background: var(--blue-100); font-size: .72rem; font-weight: 950; letter-spacing: .08em; }
.lookup-badge.danger { color: var(--danger); background: var(--danger-soft); }
.lookup-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.lookup-card h2 { margin: 18px 0 6px; color: var(--navy-900); font-size: 1.65rem; letter-spacing: -.035em; }
.lookup-card > p { margin: 0 0 24px; color: var(--muted); font-size: .88rem; }
.form-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 14px; color: var(--green-700); background: var(--green-100); font-size: 1.25rem; font-weight: 950; }
.form-icon.danger { color: var(--danger); background: var(--danger-soft); }
.danger-button { background: var(--danger); }
.lookup-result { display: none; margin-top: 16px; padding: 13px 14px; border-radius: 10px; white-space: pre-wrap; font-size: .9rem; }
.lookup-result.loading, .lookup-result.success, .lookup-result.error { display: block; }
.lookup-result.loading { color: #1c4d82; background: var(--blue-50); }
.lookup-result.success { color: var(--green-700); background: var(--green-100); }
.lookup-result.error { color: var(--danger); background: var(--danger-soft); }
.lookup-help { margin: 18px 0 0 !important; padding-top: 17px; border-top: 1px solid var(--line); text-align: center; }
.lookup-help a { color: var(--blue-700); }
.lookup-footer { padding: 0 4vw 26px; color: var(--muted); font-size: .76rem; text-align: center; }

.site-footer { margin-top: 0; padding: 48px 0 34px; color: #cad8e8; background: var(--navy-950); font-size: .87rem; }
.footer-inner { width: var(--content); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.05fr .55fr 1.2fr; gap: 44px; }
.footer-brand { margin-bottom: 16px; color: #fff; font-size: 1.15rem; font-weight: 950; }
.footer-brand span { color: #63a9f5; }
.footer-links { display: flex; flex-wrap: wrap; gap: 13px 18px; margin-bottom: 18px; }
.footer-links a { color: #fff; font-weight: 750; text-decoration: none; }
.business-info { color: #b7c8da; line-height: 1.9; }
.footer-contact { padding: 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.05); }
.footer-contact strong { display: block; margin-bottom: 8px; color: #fff; }
.footer-contact a { color: #9ecbff; }
.copyright { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #7f96af; }

@media (min-width: 900px) {
  .hero h1.single-line { max-width: none; white-space: nowrap; font-size: clamp(2.25rem, 3.25vw, 3.35rem); }
}

@media (max-width: 980px) {
  .utility-inner { justify-content: center; }
  .utility-inner > span { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-panel { max-width: 640px; }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid, .service-grid, .assurance-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .flow { grid-template-columns: repeat(3, 1fr); }
  .checkout-shell { grid-template-columns: 1fr; }
  .checkout-aside { position: static; }
  .legal-shell { grid-template-columns: 1fr; }
  .legal-aside { position: static; display: none; }
  .lookup-shell { grid-template-columns: 1fr; gap: 38px; max-width: 680px; }
  .lookup-intro { text-align: center; }
  .lookup-intro > p { margin-right: auto; margin-left: auto; }
  .lookup-intro ul { justify-content: center; }
}

@media (max-width: 760px) {
  body { word-break: normal; }
  .utility-points { justify-content: center; gap: 5px 15px; padding: 6px 0; }
  .nav { min-height: auto; align-items: flex-start; flex-direction: column; padding: 12px 0; gap: 10px; }
  .site-header { position: static; }
  .nav-menu { width: 100%; justify-content: space-between; overflow-x: auto; }
  .nav-links { flex-wrap: nowrap; gap: 16px; white-space: nowrap; }
  .nav-cta { min-height: 38px; }
  .hero { padding: 58px 0 52px; }
  .hero h1 { font-size: clamp(2.1rem, 11vw, 3rem); }
  .hero-panel { padding: 22px; }
  .section { padding: 58px 0; }
  .grid, .service-grid, .assurance-grid, .pricing-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr 1fr; }
  .cta-band { align-items: flex-start; flex-direction: column; padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .policy-summary { grid-template-columns: 1fr; }
  .legal-content, .legal { padding: 27px 24px; }
  .payment-grid { grid-template-columns: 1fr; }
  .quote-header { align-items: flex-start; flex-direction: column; padding: 26px 22px; }
  .quote-body { padding: 24px 22px 28px; }
  .quote-meta-grid { grid-template-columns: 1fr; }
  .payment-heading { align-items: flex-start; flex-direction: column; }
  .payment-complete { grid-template-columns: 1fr; padding: 20px; }
}

@media (max-width: 520px) {
  .utility-bar { display: none; }
  .brand-copy small { display: none; }
  .nav-menu { gap: 12px; }
  .nav-links { gap: 13px; font-size: .84rem; }
  .nav-links .mobile-hide { display: none; }
  .nav-cta { padding: 0 13px; font-size: .84rem; }
  .hero-proof { display: grid; gap: 8px; }
  .trust-strip { margin-top: -15px; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .flow { grid-template-columns: 1fr; }
  .page-hero { padding: 44px 0; }
  .pricing-heading { align-items: flex-start; flex-direction: column; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .checkout-page { padding-top: 26px; }
  .checkout-main { padding: 22px 18px; }
  .step { padding: 12px 7px; font-size: .74rem; }
  .summary-row { font-size: .9rem; }
  .quote-topline { align-items: flex-start; flex-direction: column; }
  .quote-help { display: none; }
  .quote-customer { align-items: flex-start; flex-direction: column; gap: 5px; }
  .lookup-header { padding: 16px 0; }
  .lookup-shell { width: min(100% - 28px, 520px); padding-top: 20px; }
  .lookup-intro h1 { font-size: 2.25rem; }
  .lookup-card { padding: 26px 20px; border-radius: 20px; }
}
