/* ==========================================================
   앤트클린 (Ant Clean) — shared stylesheet
   Mobile-first · no framework · works from file://
   ========================================================== */
:root {
  --navy: #06265A;
  --navy-700: #0B3470;
  --teal: #007BE8;
  --teal-600: #0066C4;
  --teal-50: #E8F2FD;
  --bg: #F4F7FC;
  --text: #1B1F24;
  --muted: #5C6670;
  --line: #DFE6F0;
  --white: #FFFFFF;
  --radius: 12px;
  --shadow: 0 2px 10px rgba(6, 38, 90, .06), 0 8px 24px rgba(6, 38, 90, .06);
  --shadow-lg: 0 12px 40px rgba(6, 38, 90, .14);
  --container: 1100px;
  --gutter: 16px;
  --font: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
img, svg { max-width: 100%; height: auto; display: block; }
[id] { scroll-margin-top: 80px; }
a { color: var(--teal-600); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.3; margin: 0 0 .5em; color: var(--navy); letter-spacing: -.01em; }
h1 { font-size: clamp(1.7rem, 5.5vw, 2.6rem); font-weight: 800; }
h2 { font-size: clamp(1.35rem, 4vw, 1.9rem); font-weight: 800; }
h3 { font-size: 1.1rem; font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; margin: 0 0 1em; }
li { margin-bottom: .35em; }
table { width: 100%; border-collapse: collapse; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: 56px 0; }
.section--alt { background: var(--bg); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section-head { max-width: 680px; margin-bottom: 28px; }
.section-head .eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; color: var(--teal-600); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.section-head p { color: var(--muted); margin: 0; }
.section--navy .section-head p { color: rgba(255,255,255,.75); }
.section--navy .section-head .eyebrow { color: #7CC0FF; }
.lead { font-size: 1.05rem; color: var(--muted); }
.muted { color: var(--muted); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 10px; font-weight: 700; font-size: 1rem;
  border: 1.5px solid transparent; cursor: pointer; transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  line-height: 1.2; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--teal); color: #fff; box-shadow: 0 6px 16px rgba(0,123,232,.28); }
.btn--primary:hover { background: var(--teal-600); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-700); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--bg); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost-light:hover { background: rgba(255,255,255,.1); }
.btn--kakao { background: #FEE500; color: #191919; }
.btn--kakao:hover { background: #F5DC00; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50;
  background: rgba(255,255,255,.94); backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 62px; gap: 12px; }
.logo { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.2rem; color: var(--navy); letter-spacing: -.02em; }
.logo:hover { text-decoration: none; }
.logo__mark { width: 40px; height: 40px; flex: none; }
.logo__word b { font-weight: 800; color: var(--teal); }
.footer .logo__mark { background: #fff; border-radius: 10px; padding: 3px; }
.footer .logo__word b { color: #7CC0FF; }
.logo small { display: none; font-weight: 500; font-size: .75rem; color: var(--muted); margin-left: 2px; }
.nav { display: none; }
.nav ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.nav a { display: block; padding: 8px 12px; border-radius: 8px; color: var(--text); font-weight: 600; font-size: .95rem; }
.nav a:hover, .nav a[aria-current="page"] { background: var(--bg); color: var(--navy); text-decoration: none; }
.header__cta { display: none; }
.header__phone { display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; border-radius: 10px; background: var(--navy); color: #fff; font-weight: 700; font-size: .95rem; }
.header__phone:hover { background: var(--navy-700); text-decoration: none; }
.header__phone svg { width: 16px; height: 16px; }
.hamburger { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; background: none; border: 0; cursor: pointer; border-radius: 8px; }
.hamburger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; border-top: 1px solid var(--line); background: #fff; }
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 8px 0; }
.mobile-nav a { display: block; padding: 13px var(--gutter); font-weight: 600; color: var(--text); border-bottom: 1px solid var(--bg); }
.mobile-nav a:hover { background: var(--bg); text-decoration: none; }
.mobile-nav .mobile-nav__cta { padding: 12px var(--gutter) 16px; display: grid; gap: 8px; }

/* ---------- Hero ---------- */
.hero { position: relative; background: linear-gradient(160deg, #06265A 0%, #0B3470 55%, #0A4B96 100%); color: #fff; overflow: hidden; }
.hero::after { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(0,123,232,.35), transparent 65%); pointer-events: none; }
.hero__inner { position: relative; padding-top: 56px; padding-bottom: 48px; display: grid; gap: 28px; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 700; color: #7CC0FF; margin-bottom: 14px; }
.hero__eyebrow::before { content: ""; width: 22px; height: 2px; background: #7CC0FF; }
.hero h1 { color: #fff; margin-bottom: 14px; }
.hero h1 em { font-style: normal; color: #7CC0FF; }
.hero__sub { font-size: 1.05rem; color: rgba(255,255,255,.82); max-width: 560px; margin-bottom: 24px; }
.hero__note { font-size: .85rem; color: rgba(255,255,255,.6); margin-top: 14px; margin-bottom: 0; }
.hero__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero--sub .hero__inner { padding-top: 44px; padding-bottom: 40px; }
.hero--sub .hero__sub { margin-bottom: 18px; }
.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb span { margin: 0 6px; }

/* ---------- Trust bar ---------- */
.trust { background: #fff; border-bottom: 1px solid var(--line); }
.trust__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.trust__item { display: flex; align-items: center; gap: 10px; padding: 16px 8px; font-weight: 700; font-size: .92rem; color: var(--navy); }
.trust__item svg { width: 22px; height: 22px; flex: none; color: var(--teal); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 16px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.card h3 { margin-top: 12px; }
.card p { color: var(--muted); font-size: .95rem; margin-bottom: 0; }
.card ul { color: var(--muted); font-size: .92rem; margin: 10px 0 0; }
.card--link { display: block; color: inherit; }
.card--link:hover { text-decoration: none; }
.card__more { display: inline-block; margin-top: 14px; font-weight: 700; color: var(--teal-600); font-size: .92rem; }
.icon-badge { width: 48px; height: 48px; border-radius: 12px; background: var(--teal-50); color: var(--teal-600); display: inline-flex; align-items: center; justify-content: center; }
.icon-badge svg { width: 26px; height: 26px; }
.num-badge { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; }

/* ---------- Why (points) ---------- */
.point { display: flex; gap: 16px; align-items: flex-start; }
.point .icon-badge { flex: none; }
.point h3 { margin-top: 4px; }
.point p { color: var(--muted); margin-bottom: 0; font-size: .95rem; }

/* ---------- Process ---------- */
.steps { display: grid; gap: 14px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; position: relative; }
.step__no { font-size: .8rem; font-weight: 800; color: var(--teal-600); letter-spacing: .1em; margin-bottom: 6px; }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .93rem; margin-bottom: 0; }


/* ---------- Process (animated timeline) ---------- */
.process { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; position: relative; }
.pstep { margin: 0; position: relative; }
.pstep__node { display: none; }
.pstep__card {
  height: 100%; background: #fff; border: 1.5px solid var(--line); border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow); transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.pstep__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy); }
.pstep__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.pstep__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,38,90,0) 45%, rgba(6,38,90,.55) 100%); pointer-events: none; }
.pstep__badge {
  position: absolute; left: 12px; top: 12px; z-index: 2; padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,.95); color: var(--navy); font-size: .74rem; font-weight: 800; letter-spacing: .08em;
}
.pstep__icon {
  position: absolute; right: 12px; bottom: 12px; z-index: 3; width: 46px; height: 46px; border-radius: 14px;
  background: var(--teal); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px rgba(0,123,232,.35);
  transition: transform .35s ease;
}
.pstep__icon svg { width: 24px; height: 24px; }
.pstep[data-step="1"] .pstep__icon { display: none; }
.pstep__body { padding: 18px 20px 20px; }
.pstep__body h3 { margin: 0 0 6px; font-size: 1.15rem; }
.pstep__body p { color: var(--muted); font-size: .93rem; margin: 0 0 12px; }
.pstep__tag { display: inline-block; padding: 4px 10px; border-radius: 6px; background: var(--teal-50); color: var(--teal-600); font-size: .78rem; font-weight: 700; }

/* step 1 call panel */
.pstep__call {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  background: radial-gradient(circle at 50% 38%, #0A4B96 0%, var(--navy) 70%); color: #fff; text-align: center;
}
.pstep__call-ico { position: relative; z-index: 1; width: 58px; height: 58px; border-radius: 50%; background: var(--teal); display: grid; place-items: center; margin-bottom: 8px; }
.pstep__call-ico svg { width: 26px; height: 26px; }
.pstep__call strong { position: relative; z-index: 1; font-size: 1.15rem; letter-spacing: .03em; }
.pstep__call em { position: relative; z-index: 1; font-style: normal; font-size: .78rem; color: rgba(255,255,255,.72); }
.pstep__call .ring { position: absolute; left: 50%; top: 50%; width: 58px; height: 58px; margin: -62px 0 0 -29px; border-radius: 50%; border: 2px solid rgba(124,192,255,.7); animation: ring 2.4s ease-out infinite; }
.pstep__call .ring--2 { animation-delay: 1.2s; }
@keyframes ring { from { transform: scale(1); opacity: .9; } to { transform: scale(2.4); opacity: 0; } }

/* active + hover */
.pstep.is-active .pstep__card, .pstep__card:hover { border-color: var(--teal); transform: translateY(-6px); box-shadow: 0 18px 40px rgba(6,38,90,.16); }
.pstep.is-active .pstep__media img, .pstep__card:hover .pstep__media img { transform: scale(1.07); }
.pstep.is-active .pstep__icon { transform: rotate(-8deg) scale(1.08); }

@media (min-width: 640px) {
  .process { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .process { grid-template-columns: repeat(4, 1fr); gap: 20px; padding-top: 64px; }
  .process::before, .process::after { content: ""; position: absolute; top: 20px; left: 12.5%; height: 4px; border-radius: 4px; }
  .process::before { right: 12.5%; background: var(--line); }
  .process::after { width: calc(75% * var(--progress, 0)); background: linear-gradient(90deg, var(--teal), #7CC0FF); transition: width .7s cubic-bezier(.6,.1,.3,1); }
  .pstep__node {
    display: grid; place-items: center; position: absolute; top: -64px; left: 50%; width: 44px; height: 44px; margin-left: -22px; z-index: 1;
    border-radius: 50%; background: #fff; border: 3px solid var(--line); color: var(--muted); font-weight: 800; font-size: 1rem;
    transition: background .35s ease, border-color .35s ease, color .35s ease, transform .35s ease, box-shadow .35s ease;
  }
  .pstep.is-done .pstep__node { border-color: var(--teal); color: var(--teal-600); }
  .pstep.is-active .pstep__node { background: var(--teal); border-color: var(--teal); color: #fff; transform: scale(1.12); box-shadow: 0 0 0 8px rgba(0,123,232,.15); }
}

/* ---------- Area map ---------- */
.area-map { display: grid; gap: 24px; align-items: center; }
.area-map__figure { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 14px; box-shadow: var(--shadow); min-width: 0; }
.area-map__svg { width: 100%; max-width: 100%; height: auto; display: block; border-radius: 12px; background: #EAF1FA; }
.m-base path { stroke: #fff; stroke-width: .8; stroke-linejoin: round; }
.m-seoul { fill: #CFDDF0; }
.m-gg { fill: #E1E9F4; }
.m-area { fill: var(--teal); stroke: #fff; stroke-width: 1.4; stroke-linejoin: round; cursor: pointer; transition: fill .25s ease, opacity .25s ease; }
.m-area--hq { fill: var(--navy); }
.area-map__svg.has-focus .m-area { opacity: .4; }
.area-map__svg.has-focus .m-area.is-on { opacity: 1; }
.m-labels { pointer-events: none; }
.m-label { font: 800 15px var(--font); fill: #fff; text-anchor: middle; paint-order: stroke; stroke: rgba(6,38,90,.6); stroke-width: 3px; }
.m-tag rect { fill: #fff; stroke: var(--teal); stroke-width: 2; }
.m-tag text { font: 800 15px var(--font); fill: var(--navy); text-anchor: middle; }
.m-tag--hq rect { fill: var(--navy); stroke: var(--navy); }
.m-tag--hq text { fill: #fff; }
.m-lead { stroke: var(--navy); stroke-width: 1.5; stroke-dasharray: 3 3; fill: none; }
.m-lead-dot { fill: var(--navy); }
.m-city { font: 800 26px var(--font); fill: rgba(6,38,90,.2); text-anchor: middle; letter-spacing: .3em; }
.m-pin__dot { fill: #fff; stroke: var(--teal); stroke-width: 4; }
.m-pin__pulse { fill: rgba(124,192,255,.55); transform-box: fill-box; transform-origin: center; animation: pin 2s ease-out infinite; }
@keyframes pin { from { transform: scale(.6); opacity: 1; } to { transform: scale(2.2); opacity: 0; } }
.area-map__legend { display: flex; flex-wrap: wrap; gap: 6px 16px; padding: 12px 4px 2px; font-size: .8rem; color: var(--muted); }
.area-map__legend span { display: inline-flex; align-items: center; gap: 6px; }
.lg { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.lg--hq { background: var(--navy); }
.lg--area { background: var(--teal); }
.lg--seoul { background: #CFDDF0; }
.lg--gg { background: #E1E9F4; }
.area-list { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 8px; }
.area-list li { margin: 0; }
.area-item {
  width: 100%; display: grid; grid-template-columns: auto 1fr; gap: 2px 12px; align-items: center; text-align: left;
  padding: 12px 16px; background: #fff; border: 1.5px solid var(--line); border-radius: 12px; font: inherit; color: var(--text); cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.area-item:hover, .area-item.is-on, .area-item:focus-visible { border-color: var(--teal); transform: translateX(4px); box-shadow: var(--shadow); outline: none; }
.area-item__dot { grid-row: span 2; width: 12px; height: 12px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px var(--teal-50); }
.area-item--hq .area-item__dot { background: var(--navy); box-shadow: 0 0 0 4px #DCE5F2; }
.area-item__name { font-weight: 800; color: var(--navy); }
.area-item__name small { margin-left: 4px; padding: 1px 7px; border-radius: 999px; background: var(--navy); color: #fff; font-size: .7rem; font-weight: 700; vertical-align: 2px; }
.area-item__dongs { font-size: .85rem; color: var(--muted); }
.area-map__note { font-size: .88rem; color: var(--muted); }
@media (min-width: 960px) {
  .area-map { max-width: 860px; }
}

@media (prefers-reduced-motion: reduce) {
  .pstep__call .ring, .m-pin__pulse { animation: none; opacity: 0; }
  .pstep__card, .pstep__media img, .pstep__icon, .pstep__node, .process::after, .area-item { transition: none; }
}

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--navy); font-weight: 700; font-size: .95rem; box-shadow: var(--shadow); }
.chip:hover { border-color: var(--teal); color: var(--teal-600); text-decoration: none; }
.chip svg { width: 16px; height: 16px; }
.chip small { font-weight: 500; color: var(--muted); font-size: .8rem; }

/* ---------- Placeholder image ---------- */
.ph {
  position: relative; width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, #DDE7F4 0%, #C6D7EC 50%, #B0C7E3 100%);
  display: flex; align-items: center; justify-content: center;
}
.ph::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, rgba(255,255,255,.18) 0 10px, transparent 10px 20px); }
.ph::after {
  content: attr(data-label); position: relative; z-index: 1; padding: 8px 12px; border-radius: 8px;
  background: rgba(6,38,90,.72); color: #fff; font-size: .78rem; font-weight: 600; text-align: center; max-width: 86%; line-height: 1.4;
}
.ph--wide { aspect-ratio: 16 / 9; }
.ph--hero { aspect-ratio: 5 / 4; background: linear-gradient(135deg, #0A4B96 0%, #0B3470 45%, #007BE8 130%); }
.ph--hero::after { background: rgba(0,0,0,.35); }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.ph img[src=""], .ph img:not([src]) { display: none; }
.ph--split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.ph--split::after { grid-column: 1 / -1; justify-self: center; align-self: center; }

/* ---------- Case cards ---------- */
.case { padding: 0; overflow: hidden; }
.case .ph { border-radius: 0; }
.case__body { padding: 18px 20px 20px; }
.case__meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.tag { display: inline-block; padding: 3px 9px; border-radius: 6px; background: var(--bg); color: var(--navy); font-size: .76rem; font-weight: 700; }
.tag--teal { background: var(--teal-50); color: var(--teal-600); }
.case h3 { font-size: 1.02rem; margin: 0 0 6px; }
.case p { font-size: .9rem; }
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ba .ph { aspect-ratio: 1 / 1; }
.ba .ph:first-child::after { background: rgba(120,40,40,.75); }
.ba .ph:last-child::after { background: rgba(0,102,196,.8); }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.table { min-width: 560px; }
.table th, .table td { padding: 13px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: .93rem; }
.table th { background: var(--bg); color: var(--navy); font-weight: 700; white-space: nowrap; }
.table tr:last-child td { border-bottom: 0; }
.table td:first-child { font-weight: 700; color: var(--navy); white-space: nowrap; }
.table .ok { color: var(--teal-600); font-weight: 700; }

/* ---------- Checklist / info ---------- */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; padding: 12px 14px; background: #fff; border: 1px solid var(--line); border-radius: 10px; font-size: .95rem; }
.checklist li::before { content: "✓"; flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--teal-50); color: var(--teal-600); font-weight: 800; font-size: .8rem; display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; }
.pain { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.pain li { padding: 14px 16px 14px 44px; position: relative; background: #fff; border-left: 4px solid var(--navy); border-radius: 8px; box-shadow: var(--shadow); font-size: .97rem; }
.pain li::before { content: "?"; position: absolute; left: 14px; top: 13px; width: 22px; height: 22px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800; font-size: .8rem; display: inline-flex; align-items: center; justify-content: center; }
.info-box { background: var(--teal-50); border: 1px solid #BFDCFA; border-radius: var(--radius); padding: 18px 20px; font-size: .95rem; }
.info-box strong { color: var(--teal-600); }
.info-box p:last-child { margin-bottom: 0; }
.freq { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); }
.freq div { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 14px; }
.freq strong { display: block; color: var(--navy); margin-bottom: 4px; }
.freq span { font-size: .88rem; color: var(--muted); }

/* ---------- FAQ (details) ---------- */
.faq { display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 0 18px; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; list-style: none; padding: 16px 30px 16px 0; font-weight: 700; color: var(--navy); position: relative; font-size: .98rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; border-radius: 50%; background: var(--bg); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; }
.faq details[open] summary::after { content: "–"; background: var(--teal-50); color: var(--teal-600); }
.faq details > div { padding: 0 0 18px; color: var(--muted); font-size: .95rem; }
.faq details > div p:last-child { margin-bottom: 0; }
.faq-group { margin-bottom: 36px; }
.faq-group h2 { font-size: 1.25rem; padding-bottom: 10px; border-bottom: 2px solid var(--navy); margin-bottom: 16px; }

/* ---------- CTA ---------- */
.cta { background: linear-gradient(135deg, var(--navy) 0%, #0A4B96 100%); color: #fff; border-radius: 16px; padding: 36px 24px; text-align: center; box-shadow: var(--shadow-lg); }
.cta h2 { color: #fff; margin-bottom: 8px; }
.cta p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 22px; }
.cta .btn-row { justify-content: center; }
.cta__phone { display: block; font-size: clamp(1.6rem, 6vw, 2.2rem); font-weight: 800; color: #fff; letter-spacing: .02em; margin: 6px 0 14px; }
.cta__phone:hover { text-decoration: none; color: #7CC0FF; }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; gap: 24px; }
.phone-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.phone-card .big { display: block; font-size: clamp(1.7rem, 7vw, 2.4rem); font-weight: 800; color: var(--navy); letter-spacing: .02em; margin: 6px 0 4px; }
.phone-card .big:hover { color: var(--teal-600); text-decoration: none; }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.form__row { display: grid; gap: 14px; margin-bottom: 14px; }
.form__row--2 { grid-template-columns: 1fr; }
.field label { display: block; font-weight: 700; font-size: .9rem; color: var(--navy); margin-bottom: 6px; }
.field label span { color: #D14343; margin-left: 2px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font: inherit; color: var(--text); background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,123,232,.18); }
.field textarea { min-height: 110px; resize: vertical; }
.form__note { font-size: .85rem; color: var(--muted); margin: 6px 0 16px; }
.form__result { display: none; margin-top: 20px; border-top: 1px dashed var(--line); padding-top: 20px; }
.form__result.is-visible { display: block; }
.form__result pre { white-space: pre-wrap; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 16px; font: inherit; font-size: .92rem; margin: 0 0 14px; }
.form__result .btn-row .btn { flex: 1 1 160px; }
.copied { font-size: .88rem; color: var(--teal-600); font-weight: 700; margin-top: 10px; display: none; }
.copied.is-visible { display: block; }

.agree { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--muted); margin: 4px 0 16px; cursor: pointer; }
.agree input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--teal); }
.field.is-invalid input, .field.is-invalid select, .agree.is-invalid { border-color: #D14343; }
.agree.is-invalid { color: #D14343; }
.form__status { margin: 12px 0 0; font-size: .93rem; font-weight: 700; min-height: 1.4em; }
.form__status.is-ok { color: var(--teal-600); }
.form__status.is-error { color: #D14343; }
.form__done { text-align: center; padding: 24px 8px; }
.form__done h2 { margin-bottom: 8px; }
.form__done p { color: var(--muted); }
.btn[disabled] { opacity: .6; cursor: wait; transform: none; }

/* ---------- Area page ---------- */
.dong-list { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin: 0 0 8px; }
.dong-list li { padding: 5px 11px; background: rgba(255,255,255,.12); border-radius: 6px; font-size: .85rem; color: #fff; }
.service-links { display: grid; gap: 12px; }
.service-link { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); color: var(--navy); font-weight: 700; box-shadow: var(--shadow); }
.service-link:hover { border-color: var(--teal); text-decoration: none; }
.service-link .icon-badge { width: 40px; height: 40px; flex: none; }
.service-link .icon-badge svg { width: 22px; height: 22px; }
.service-link small { display: block; font-weight: 500; color: var(--muted); font-size: .85rem; }
.service-link .arrow { margin-left: auto; color: var(--teal); }

/* ---------- Prose ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 36px; }
.prose h3 { margin-top: 24px; }
.prose p, .prose li { color: #333A42; }

/* ---------- Footer ---------- */
.footer { background: #041A3E; color: rgba(255,255,255,.75); padding: 48px 0 110px; font-size: .92rem; }
.footer__grid { display: grid; gap: 28px; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,.85); }
.footer a:hover { color: #7CC0FF; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 6px; }
.footer .logo { color: #fff; margin-bottom: 10px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 28px; padding-top: 20px; font-size: .82rem; color: rgba(255,255,255,.5); display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; }
.footer__phone { font-size: 1.25rem; font-weight: 800; color: #fff !important; }

/* ---------- Mobile bottom bar ---------- */
.bottom-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px var(--gutter);
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--line);
}
.bottom-bar .btn { padding: 13px 10px; font-size: .98rem; }

/* ---------- 404 ---------- */
.error-page { min-height: 60vh; display: flex; align-items: center; text-align: center; }
.error-page .code { font-size: 5rem; font-weight: 900; color: var(--teal); line-height: 1; margin-bottom: 8px; }

/* ==========================================================
   Breakpoints
   ========================================================== */
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .form__row--2 { grid-template-columns: 1fr 1fr; }
  .freq { grid-template-columns: repeat(3, 1fr); }
  .service-links { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
  .logo small { display: inline; }
}
@media (min-width: 960px) {
  .section { padding: 80px 0; }
  .nav { display: block; }
  .header__cta { display: inline-flex; }
  .hamburger, .mobile-nav { display: none !important; }
  .header__inner { height: 72px; }
  .hero__inner { grid-template-columns: 1.15fr 1fr; align-items: center; padding-top: 88px; padding-bottom: 80px; }
  .hero--sub .hero__inner { grid-template-columns: 1fr; padding-top: 64px; padding-bottom: 56px; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1.5fr; align-items: start; }
  .cta { padding: 56px 40px; }
  .bottom-bar { display: none; }
  .footer { padding-bottom: 48px; }
  .trust__item { padding: 20px 12px; justify-content: center; }
}
@media print {
  .header, .bottom-bar, .mobile-nav, .cta, .footer { display: none !important; }
}
