@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/woff2/PretendardVariable.woff2') format('woff2-variations');
  font-weight: 45 920;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --bg-alt: #f4f6fa;
  --bg-alt-2: #eef1f7;
  --text: #17202e;
  --text-muted: #566173;
  --text-faint: #8991a1;
  --card-bg: #ffffff;
  --border: #e3e7ef;
  --header-bg: rgba(255,255,255,0.88);
  --navy: #14357f;
  --navy-2: #2255b8;
  --gold: #2255b8;
  --gold-bright: #7ba8ff;
  --gold-soft: #eaf3ff;
  --gold-line: #cfe2fb;
  --highlight: #cfe2fb;
  --highlight-text: #3a2a05;
  --ok: #2f7d5d;
  --kakao: #fee500;
  --kakao-text: #391b1b;
  --call: #1f8a5b;
  --shadow-sm: 0 1px 3px rgba(20,25,40,0.06);
  --shadow-md: 0 10px 28px rgba(20,25,40,0.09);
  --shadow-lg: 0 20px 46px rgba(20,25,40,0.14);
  --radius: 18px;
  --radius-sm: 12px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f141c;
    --bg-alt: #151b25;
    --bg-alt-2: #1c232f;
    --text: #eef1f5;
    --text-muted: #aab3bf;
    --text-faint: #7e8794;
    --card-bg: #171e29;
    --border: #2b3442;
    --header-bg: rgba(15,20,28,0.88);
    --navy: #10285f;
    --navy-2: #2a5fc4;
    --gold: #74a4ff;
    --gold-bright: #a9c7ff;
    --gold-soft: #16233d;
    --gold-line: #2b4a7d;
    --highlight: #22406f;
    --highlight-text: #1f1704;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 10px 28px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 46px rgba(0,0,0,0.5);
    color-scheme: dark;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Malgun Gothic', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding: 60px 0; }
@media (max-width: 640px) { .section { padding: 56px 0; } }

.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 800; letter-spacing: 1.5px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 14px;
}
.section-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -0.6px; line-height: 1.3; }
.section-desc { margin-top: 16px; font-size: 16px; color: var(--text-muted); line-height: 1.8; max-width: 660px; }
.section-head { margin-bottom: 44px; }
.section-head.center { text-align: center; }
.section-head.center .section-desc { margin-left: auto; margin-right: auto; }

mark.hl { background: linear-gradient(transparent 58%, var(--highlight) 58%); color: inherit; padding: 0 2px; font-weight: 800; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 100px; font-weight: 700; white-space: nowrap; line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease, background .2s, filter .2s;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--navy); color: #fff; padding: 11px 20px; font-size: 14px; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-2); box-shadow: var(--shadow-md); }
.btn-gold { background: rgba(255,255,255,0.92); color: var(--navy); border: 1.5px solid var(--navy); }
.btn-gold:hover { background: var(--bg-alt); }
.btn-lg { padding: 15px 28px; font-size: 15.5px; }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); padding: 13.5px 26px; font-size: 15.5px; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-kakao { background: var(--kakao); color: var(--kakao-text); }
.btn-call { background: var(--call); color: #fff; }
.btn-ghost-light { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.25); padding: 13.5px 26px; font-size: 15.5px; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.2); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: var(--header-bg);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1120px; margin: 0 auto; padding: 10px 24px;
  display: flex; align-items: center; gap: 16px;
}
.logo { display: flex; align-items: center; min-width: 0; }
.logo-img { height: 56px; width: auto; flex-shrink: 0; display: block; }
.logo-img.on-dark { display: none; }
@media (max-width: 400px) { .logo-img { height: 44px; } }
@media (prefers-color-scheme: dark) {
  .logo-img.on-light { display: none; }
  .logo-img.on-dark { display: block; }
}
.nav-desktop { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav-desktop > a, .nav-has-sub > a {
  display: inline-block; font-size: 14.5px; font-weight: 600; color: var(--text-muted);
  padding: 8px 14px; border-radius: 8px; transition: color .2s, background .2s;
}
.nav-desktop > a:hover, .nav-has-sub:hover > a { color: var(--text); background: var(--bg-alt); }
.nav-desktop a[aria-current="page"] { color: var(--text); font-weight: 700; }
.nav-has-sub { position: relative; }
.nav-has-sub::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 10px; }
.nav-sub {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px;
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-has-sub:hover .nav-sub, .nav-has-sub:focus-within .nav-sub { opacity: 1; visibility: visible; transform: none; }
.nav-sub a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 13px; font-weight: 500; color: var(--text-muted); }
.nav-sub a:hover { background: var(--bg-alt); color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: 6px; font-weight: 800; font-size: 14px; white-space: nowrap; }
.menu-toggle { display: none; background: none; border: none; padding: 6px; color: var(--text); }
@media (max-width: 980px) {
  .nav-desktop, .header-phone { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-actions { margin-left: auto; }
}
.mobile-nav { display: none; border-top: 1px solid var(--border); background: var(--bg); padding: 8px 24px 18px; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 12px 4px; font-weight: 600; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.sub { padding-left: 18px; font-size: 14px; color: var(--text-faint); }
.mobile-nav a[aria-current="page"] { color: var(--text); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background:
    radial-gradient(700px 380px at 85% -20%, rgba(34,85,184,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-alt));
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { padding: 60px 0 54px; }
.breadcrumb { font-size: 13px; color: var(--text-faint); font-weight: 600; margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--gold); }
.page-hero h1 { font-size: clamp(28px, 4.4vw, 42px); font-weight: 800; letter-spacing: -1px; line-height: 1.25; }
.page-hero p { margin-top: 16px; font-size: 15px; color: var(--text-muted); line-height: 1.8; max-width: 680px; }

/* ---------- Home hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9,16,34,0.74), rgba(9,16,34,0.56)),
    url('img/hero.jpg') center/cover no-repeat,
    linear-gradient(120deg, #0f2350, #14357f 55%, #1f4fa4);
  background-color: #12305f;
}
.hero-inner { padding: 150px 0 142px; }
@media (max-width: 900px) { .hero-inner { padding: 120px 0 112px; } }
@media (max-width: 640px) { .hero-inner { padding: 84px 0 76px; } }
.hero h1 { font-size: clamp(30px, 5.2vw, 50px); font-weight: 800; letter-spacing: -1.4px; line-height: 1.24; color: #fff; margin: 0 0 32px -6px; }
@media (max-width: 640px) { .hero h1 { margin-left: 0; } }
.hero h1 .h1-topic { display: block; font-size: 1.06em; line-height: 1.12; margin-bottom: 18px; }
.hero h1 .accent { display: block; color: #7ea8ff; }
.hero p.lead { margin-top: 6px; font-size: clamp(15.5px, 1.9vw, 18.5px); color: rgba(255,255,255,0.86); line-height: 1.85; max-width: 620px; }
.hero p.lead + p.lead { margin-top: 0; }
.hero p.lead strong { color: #a9c7ff; font-weight: 700; }
.hero .eyebrow { color: #a9c7ff; }
.hero .hero-badges span { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.22); color: rgba(255,255,255,0.9); }
.hero .btn-outline { border-color: rgba(255,255,255,0.45); color: #fff; }
.hero .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.12); color: #fff; }
@media (max-width: 560px) { .hero h1 br, .hero p.lead br, #entry-strategy br { display: none; } }
.hero-cta { margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; }
.hero-textlink { color: #cddcff; font-weight: 700; font-size: 14px; text-decoration: underline; text-underline-offset: 3px; }
.hero-textlink:hover { color: #fff; }
.hero-badges { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-badges span { font-size: 13px; font-weight: 700; color: var(--text-muted); background: var(--card-bg); border: 1px solid var(--border); padding: 8px 14px; border-radius: 100px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
.stat { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px 18px; }
.stat b { display: block; font-size: 25px; font-weight: 800; letter-spacing: -0.5px; color: var(--navy-2); }
@media (prefers-color-scheme: dark) { .stat b { color: var(--gold-bright); } }
.stat span { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.hero .stats { margin-top: 52px; }

/* ---------- Generic card grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 760px) { .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 24px;
}
.card .ic { font-size: 22px; }
.card h3 { margin-top: 12px; font-size: 17px; font-weight: 800; letter-spacing: -0.3px; }
.card p { margin-top: 8px; font-size: 14.5px; color: var(--text-muted); line-height: 1.75; }
.card-link { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--gold); }
.card-link:hover { text-decoration: underline; }

/* link card (home service parts / services hub) */
.linkcard {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 26px; transition: border-color .16s ease, box-shadow .16s ease;
}
.linkcard:hover { border-color: var(--gold-line); box-shadow: var(--shadow-md); }
.lc-title { display: block; }
.lc-title::after { content: ""; position: absolute; inset: 0; z-index: 1; border-radius: var(--radius); }
.lc-top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.lc-icon { width: 24px; height: 24px; flex-shrink: 0; color: var(--gold); }
.lc-top .lc-for { font-size: 12px; font-weight: 700; letter-spacing: -0.2px; line-height: 1.35; color: var(--gold); }
.linkcard h3 { font-size: 20px; font-weight: 800; letter-spacing: -0.4px; position: relative; padding-bottom: 13px; transition: color .16s ease; }
.linkcard h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; border-radius: 2px; background: var(--gold); transition: width .16s ease; }
.linkcard:hover h3 { color: var(--gold); }
.linkcard:hover h3::after { width: 52px; }
.linkcard > p { position: relative; z-index: 2; margin-top: 10px; font-size: 14.5px; color: var(--text-muted); line-height: 1.75; }
.linkcard ul { position: relative; z-index: 2; margin-top: 16px; border-top: 1px solid var(--border); }
.linkcard ul li { border-bottom: 1px solid var(--border); }
.linkcard ul li a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 2px; font-size: 13.5px; font-weight: 600; color: var(--text-muted); transition: color .16s ease; }
.linkcard ul li a::after { content: "›"; color: var(--text-faint); font-weight: 800; transition: color .16s ease, transform .16s ease; }
.linkcard ul li a:hover { color: var(--gold); }
.linkcard ul li a:hover::after { color: var(--gold); transform: translateX(2px); }
.linkcard .more { position: relative; z-index: 2; margin-top: 20px; font-size: 14px; font-weight: 800; color: var(--gold); align-self: flex-start; }
.linkcard .more:hover { text-decoration: underline; }

/* ---------- Service detail (part pages) ---------- */
.svc-detail {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 28px; margin-bottom: 22px; scroll-margin-top: 90px;
}
.svc-detail-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.svc-detail-head .num { font-size: 12px; font-weight: 800; letter-spacing: 1px; color: var(--gold); }
.svc-detail-head h3 { font-size: clamp(19px, 2.6vw, 24px); font-weight: 800; letter-spacing: -0.5px; }
.svc-detail-desc {
  margin-top: 14px; font-size: 15px; color: var(--text); line-height: 1.8;
  padding: 16px 18px; background: var(--bg-alt); border-left: 3px solid var(--gold); border-radius: 0 10px 10px 0;
}
.svc-cols { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
@media (max-width: 720px) { .svc-cols { grid-template-columns: 1fr; } }
.svc-col { padding: 20px 22px; }
.svc-col + .svc-col { border-left: 1px solid var(--border); }
@media (max-width: 720px) { .svc-col + .svc-col { border-left: none; border-top: 1px solid var(--border); } }
.svc-col h4 { font-size: 14px; font-weight: 800; letter-spacing: -0.2px; padding-bottom: 10px; margin-bottom: 12px; border-bottom: 2px solid; }
.svc-col--why h4 { color: var(--text); border-color: var(--border); }
.svc-col--benefit h4 { color: var(--gold); border-color: var(--gold-line); }
.svc-col ul li { position: relative; padding-left: 18px; font-size: 13.5px; line-height: 1.7; margin-bottom: 8px; color: var(--text-muted); }
.svc-col ul li:last-child { margin-bottom: 0; }
.svc-col--why ul li::before { content: "•"; position: absolute; left: 2px; color: var(--text-faint); font-weight: 800; }
.svc-col--benefit ul li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.svc-facts { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 720px) { .svc-facts { grid-template-columns: 1fr; } }
.svc-fact { padding: 18px 20px; background: var(--bg-alt); border-radius: 12px; }
.svc-fact--wide { grid-column: 1 / -1; }
.svc-fact h4 { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 800; letter-spacing: -0.1px; color: var(--text); }
.svc-fact h4::before { content: ""; width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--gold); flex-shrink: 0; }
.svc-fact p, .svc-fact ul { margin-top: 10px; font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.svc-fact ul li { position: relative; padding-left: 12px; margin-bottom: 5px; }
.svc-fact ul li::before { content: "–"; position: absolute; left: 0; color: var(--text-faint); }
.svc-fact-tbd { color: var(--gold); font-weight: 700; }
.svc-steps { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px; }
.svc-step { flex: 1; min-width: 92px; text-align: center; padding: 16px 8px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; }
.svc-step-num { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; margin: 0 auto; border-radius: 50%; background: var(--gold); color: #fff; font-weight: 800; font-size: 14px; }
.svc-step-label { display: block; margin-top: 8px; font-size: 12.5px; font-weight: 700; color: var(--text); }
.svc-facts-note { margin-top: 14px; font-size: 12px; color: var(--text-faint); line-height: 1.6; }
.svc-index { display: flex; flex-direction: column; gap: 12px; }
.svc-index-item { display: flex; align-items: stretch; gap: 16px; padding: 20px 22px; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color .16s ease, box-shadow .16s ease; }
.svc-index-item:hover { border-color: var(--gold-line); box-shadow: var(--shadow-md); }
.svc-index-num { flex-shrink: 0; display: flex; align-items: center; padding-right: 16px; border-right: 1px solid var(--border); font-size: 13px; font-weight: 800; color: var(--gold); }
.svc-index-body { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.svc-index-title { font-size: 15.5px; font-weight: 800; color: var(--text); }
.svc-index-desc { font-size: 13px; color: var(--text-muted); }
.svc-index-arrow { flex-shrink: 0; display: flex; align-items: center; font-size: 16px; font-weight: 800; color: var(--text-faint); transition: color .16s ease, transform .16s ease; }
.svc-index-item:hover .svc-index-arrow { color: var(--gold); transform: translateX(3px); }
.navbox { display: block; position: relative; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px 28px; color: inherit; text-decoration: none; transition: border-color .16s ease, box-shadow .16s ease; }
.navbox:hover { border-color: var(--gold-line); box-shadow: var(--shadow-md); }
.navbox::after { content: "→"; position: absolute; top: 32px; right: 28px; font-size: 18px; font-weight: 800; color: var(--text-faint); transition: color .16s ease, transform .16s ease; }
.navbox:hover::after { color: var(--gold); transform: translateX(3px); }
.navbox > h3 { font-size: 19px; font-weight: 800; letter-spacing: -0.4px; padding-right: 28px; transition: color .16s ease; }
.navbox:hover > h3 { color: var(--gold); }
.navbox > p { margin-top: 10px; font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }
.navboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 760px) { .navboxes { grid-template-columns: 1fr; } }
.selfcheck { max-width: 680px; }
.selfcheck-note { font-size: 12.5px; color: var(--text-faint); background: var(--bg-alt); border-radius: 8px; padding: 10px 14px; margin-bottom: 22px; }
.sc-qs { display: flex; flex-direction: column; gap: 14px; counter-reset: scq; list-style: none; padding: 0; margin: 0; }
.sc-q { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; }
.sc-qtext { display: block; font-size: 15px; font-weight: 700; letter-spacing: -0.2px; line-height: 1.55; }
.sc-qtext::before { counter-increment: scq; content: "Q" counter(scq) ". "; color: var(--gold); font-weight: 800; }
.sc-opts { margin-top: 14px; display: flex; gap: 10px; }
.sc-opts button { flex: 1; padding: 10px 0; font-size: 14px; font-weight: 700; border: 1px solid var(--border); border-radius: 10px; background: var(--bg-alt); color: var(--text-muted); cursor: pointer; transition: background .14s ease, border-color .14s ease, color .14s ease; }
.sc-opts button:hover { border-color: var(--gold-line); }
.sc-opts button.on { background: var(--gold); border-color: var(--gold); color: #fff; }
.sc-submit { margin-top: 24px; display: flex; justify-content: center; width: 100%; font-size: 17px; padding: 16px 32px; }
.sc-submit:disabled { opacity: .45; cursor: not-allowed; }
.sc-result { margin-top: 28px; padding: 26px 24px; background: var(--card-bg); border: 1px solid var(--gold-line); border-left: 3px solid var(--gold); border-radius: var(--radius); }
.sc-result-type { display: block; font-size: 24px; font-weight: 800; letter-spacing: -0.4px; color: var(--text); text-decoration: none; }
.sc-result-type:hover { color: var(--navy); text-decoration: underline; }
.sc-result-guide-wrap { margin-top: 14px; font-size: 14.5px; color: var(--text); line-height: 1.75; }
.sc-result .hero-cta { margin-top: 18px; align-items: center; justify-content: flex-end; gap: 16px; }
.sc-reset { background: none; border: 0; font-size: 13px; font-weight: 700; color: var(--text-faint); cursor: pointer; text-decoration: underline; }
.sc-reset:hover { color: var(--text); }

/* in-page anchor nav for part pages */
.anchor-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.anchor-nav a {
  font-size: 13px; font-weight: 700; color: var(--text-muted);
  background: var(--card-bg); border: 1px solid var(--border); padding: 8px 14px; border-radius: 100px;
  transition: border-color .16s, color .16s;
}
.anchor-nav a:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Steps / Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px 24px; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-size: 13px; font-weight: 800; letter-spacing: 1px; color: #fff;
  background: var(--navy); width: 34px; height: 34px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
}
@media (prefers-color-scheme: dark) { .step::before { background: var(--navy-2); color: #fff; } }
.step h4 { margin-top: 16px; font-size: 16px; font-weight: 800; letter-spacing: -0.3px; }
.step p { margin-top: 8px; font-size: 13.5px; color: var(--text-muted); line-height: 1.72; }

/* ---------- Why ---------- */
.why { display: flex; gap: 16px; padding: 24px; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); }
.why .ic {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: var(--gold-soft); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; font-size: 19px; font-weight: 800;
}
.why h4 { font-size: 16px; font-weight: 800; letter-spacing: -0.3px; }
.why p { margin-top: 6px; font-size: 14px; color: var(--text-muted); line-height: 1.72; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: #fff; }
.cta-band .container { padding-top: 56px; padding-bottom: 56px; text-align: center; }
.cta-band h2 { font-size: clamp(22px, 3.4vw, 30px); font-weight: 800; letter-spacing: -0.6px; }
.cta-band p { margin-top: 12px; font-size: 15px; color: rgba(255,255,255,0.72); }
.cta-band .hero-cta { margin-top: 26px; justify-content: center; }
.cta-band--compact .container { padding-top: 36px; padding-bottom: 36px; }
.cta-band--compact .hero-cta { margin-top: 18px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--card-bg); margin-bottom: 12px; overflow: hidden; }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 22px;
  font-weight: 700; font-size: 15.5px; display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--gold); flex-shrink: 0; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 22px 20px; font-size: 14.5px; color: var(--text-muted); line-height: 1.8; }

/* ---------- Contact ---------- */
.contact-band { background: var(--bg-alt); }
.contact-band .contact-wrap { align-items: stretch; }
.contact-band .contact-card { background: var(--navy); display: flex; flex-direction: column; }
.contact-band .contact-card .contact-list { margin-top: 0; flex: 1; justify-content: center; }
.contact-band .contact-card, .contact-band .lead-form { box-shadow: 0 16px 36px rgba(20,53,127,0.14); }
.contact-band .contact-card .contact-actions { margin-top: auto; padding-top: 16px; }
.contact-band .contact-card .contact-actions .btn { width: 100%; }

.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.contact-wrap--stretch { align-items: stretch; }
.contact-wrap--stretch .contact-card { display: flex; flex-direction: column; background: var(--card-bg); color: var(--text); border: 1px solid var(--border); }
.contact-wrap--stretch .contact-card h3 { color: var(--text); }
.contact-wrap--stretch .contact-card p.sub { color: var(--text-muted); text-align: center; }
.contact-wrap--stretch .contact-item { background: var(--bg-alt); border: 1px solid var(--border); }
.contact-wrap--stretch .contact-item .label { color: var(--text-faint); }
.contact-wrap--stretch .contact-item .value { color: var(--text); }
@media (max-width: 860px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 34px 30px; }
.contact-card h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.5px; }
.contact-card p.sub { margin-top: 10px; font-size: 14.5px; color: rgba(255,255,255,0.72); line-height: 1.75; }
.contact-list { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: center; gap: 14px; padding: 17px 18px; background: rgba(255,255,255,0.11); border: none; border-radius: 12px; }
.contact-item .label { display: block; font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 600; }
.contact-item .value { font-size: 15px; font-weight: 800; letter-spacing: -0.2px; }
.copy-btn { display: inline-flex; align-items: center; justify-content: center; vertical-align: middle; margin-left: 7px; padding: 2px; background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; }
.copy-btn:hover { color: #fff; }
.copy-btn .i-check { display: none; color: #6fe3a3; }
.copy-btn.is-copied .i-copy { display: none; }
.copy-btn.is-copied .i-check { display: block; }
.contact-hours { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.65); text-align: center; }
.contact-actions { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Location ---------- */
.location-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); min-height: 320px; }
.location-map iframe { width: 100%; height: 100%; min-height: 320px; display: block; border: 0; }

.lead-form { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px; }
.lead-form h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.4px; }
.lead-form .field { margin-top: 16px; }
.lead-form .field-row { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form .field-row .field { margin-top: 0; }
@media (max-width: 480px) { .lead-form .field-row { grid-template-columns: 1fr; gap: 0; } .lead-form .field-row .field + .field { margin-top: 16px; } }
.lead-form label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.lead-form input:not([type="checkbox"]), .lead-form select, .lead-form textarea {
  width: 100%; padding: 12px 14px; font-size: 14.5px; font-family: inherit;
  background: var(--bg); color: var(--text); border: 1.5px solid var(--border); border-radius: 10px;
}
.lead-form textarea { min-height: 110px; resize: vertical; }
.lead-form input:not([type="checkbox"]):focus, .lead-form select:focus, .lead-form textarea:focus { outline: none; border-color: var(--gold); }
.consent-check { margin-top: 18px; display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--text-muted); cursor: pointer; background: var(--bg-alt); padding: 12px 14px; border-radius: 10px; }
.consent-check input { margin-top: 3px; flex-shrink: 0; }
.consent-check a { color: var(--navy); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.lead-form .form-submit { margin-top: 20px; width: 100%; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 14px; font-size: 13.5px; font-weight: 700; line-height: 1.6; }
.form-status.is-success { color: var(--call); }
.form-status.is-error { color: #d64545; }
.lead-form .note { margin-top: 12px; font-size: 12.5px; color: var(--text-faint); line-height: 1.6; }

/* ---------- Prose (about) ---------- */
.prose p { font-size: 15.5px; color: var(--text-muted); line-height: 1.9; text-align: justify; text-justify: inter-character; letter-spacing: -0.5px; word-break: keep-all; }
.prose p + p { margin-top: 16px; }
.legal-doc h3 { margin-top: 32px; font-size: 16.5px; font-weight: 800; letter-spacing: -0.3px; color: var(--text); }
.legal-doc h3:first-child { margin-top: 0; }
.legal-doc p { margin-top: 10px; }
.legal-doc ul { margin: 10px 0 0; padding-left: 20px; }
.legal-doc li { font-size: 15.5px; color: var(--text-muted); line-height: 1.9; }
.legal-doc li + li { margin-top: 4px; }
.legal-doc .updated { margin-top: 40px; font-size: 13px; color: var(--text-faint); }

/* ---------- Footer ---------- */
.site-footer { background: #0f2350; padding: 52px 0 40px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 24px 40px; }
@media (max-width: 640px) { .footer-top { flex-direction: column; gap: 18px; } }
.footer-logo { font-size: 16px; font-weight: 800; color: #fff; }
.footer-brand p { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 360px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 9px 22px; padding-top: 4px; }
.footer-links a { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.62); }
.footer-links a:hover { color: #a9c7ff; }
.footer-info { margin-top: 32px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.13); font-size: 12.5px; color: rgba(255,255,255,0.55); line-height: 1.9; }
.footer-disc { margin-top: 14px; max-width: 620px; font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.7; }
.footer-copy { margin-top: 16px; font-size: 12px; color: rgba(255,255,255,0.4); }

/* ---------- 대표 밴드 (홈) ---------- */
.ceo-band { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 34px; }
@media (max-width: 820px) { .ceo-band { grid-template-columns: 1fr; gap: 22px; padding: 26px 24px; } }
.ceo-band h3 { margin-top: 10px; font-size: clamp(18px, 2.5vw, 23px); font-weight: 800; letter-spacing: -0.5px; line-height: 1.4; }
.ceo-band p { margin-top: 10px; font-size: 14.5px; color: var(--text-muted); line-height: 1.75; }
.creds { display: flex; flex-wrap: wrap; gap: 8px; }
.creds li { font-size: 12.5px; font-weight: 700; color: var(--text); background: var(--gold-soft); border: 1px solid var(--gold-line); padding: 7px 12px; border-radius: 100px; }

/* ---------- 대표 프로필 (회사소개) ---------- */
.profile-wrap { display: grid; grid-template-columns: 1fr 300px; align-items: stretch; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 860px) { .profile-wrap { grid-template-columns: 1fr; } }
.profile-illustration { background: var(--bg-alt); min-height: 260px; }
.profile-illustration img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.profile { padding: 32px 30px; }
.profile-id { display: flex; align-items: center; gap: 18px; }
.profile-mono { width: 56px; height: 56px; flex-shrink: 0; border-radius: 14px; background: linear-gradient(140deg, var(--navy-2), var(--navy)); color: #fff; font-weight: 800; font-size: 24px; display: inline-flex; align-items: center; justify-content: center; }
.profile-id h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.profile-id h3 span { font-size: 14px; font-weight: 600; color: var(--text-faint); margin-left: 4px; }
.profile-role { margin-top: 2px; font-size: 14px; color: var(--text-muted); font-weight: 600; }
.profile-link { margin-top: 8px; display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.profile-link:hover { color: var(--navy-2); }
.profile-facts { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.profile-facts li { position: relative; padding-left: 16px; font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.profile-facts li::before { content: ""; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--navy); }
.profile-quote { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 15px; font-style: italic; color: var(--text); line-height: 1.7; }

/* ---------- 진행 사례 ---------- */
.case-card { position: relative; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 22px; }
.case-card .ex-tag { position: absolute; top: 16px; right: 16px; font-size: 11px; font-weight: 800; letter-spacing: 0.5px; color: var(--text-faint); background: var(--bg-alt); border: 1px solid var(--border); padding: 3px 8px; border-radius: 6px; }
.case-card h4 { font-size: 16.5px; font-weight: 800; letter-spacing: -0.3px; padding-right: 44px; }
.case-card .case-meta { margin-top: 6px; font-size: 12.5px; font-weight: 700; color: var(--gold); }
.case-card p { margin-top: 10px; font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }
.section-note { margin-top: 18px; font-size: 12.5px; color: var(--text-faint); }
.wework-note { margin-top: 24px; padding: 14px 18px; font-size: 13.5px; line-height: 1.72; color: var(--text-muted); background: var(--card-bg); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: var(--radius); }
.wework-note b { color: var(--text); font-weight: 800; }

/* ---------- 약속드립니다 ---------- */
.promises { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 760px) { .promises { grid-template-columns: 1fr; } }
.promises li { position: relative; padding: 22px 24px 22px 54px; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); }
.promises li::before { content: "✓"; position: absolute; left: 22px; top: 22px; width: 22px; height: 22px; border-radius: 50%; background: var(--gold-soft); color: var(--gold); font-weight: 800; font-size: 12px; display: inline-flex; align-items: center; justify-content: center; }
.promises h4 { font-size: 15.5px; font-weight: 800; letter-spacing: -0.3px; }
.promises p { margin-top: 6px; font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }
