@font-face {
  font-family: 'Pretendard Variable';
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
  src: url('fonts/PretendardVariable.woff2') format('woff2-variations');
}
/* Paperlogy — 헤딩 전용 디스플레이. 기하학적 각진 골격 = 산업/기술 톤.
   실제 700/800/900 각각 존재(가짜 굵기 폴백 없음) */
@font-face {
  font-family: 'Paperlogy';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('fonts/Paperlogy-7Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Paperlogy';
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url('fonts/Paperlogy-8ExtraBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Paperlogy';
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url('fonts/Paperlogy-9Black.woff2') format('woff2');
}

:root {
  /* 컬러 — 고객 지정 블루 */
  --blue-700: #0F3CC9;
  --blue-600: #1B4DE4;
  --blue-500: #3B6BF0;
  --blue-100: #DDE6FD;
  --blue-50:  #F0F5FF;
  --navy-900: #0B1F4D;
  --navy-800: #0F2A66;
  --navy-700: #17398A;

  --ink-900: #101828;
  --ink-700: #344054;
  --ink-500: #667085;
  --ink-300: #98A2B3;
  --line:    #E4E9F2;
  --gray-50: #F5F7FA;
  --white:   #FFFFFF;
  --accent:  #FF7A1A;   /* 하수구/막힘 계열 보조 (시안의 오렌지) */

  /* 곡률 — 4단계 + pill */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* 이징 */
  --ease-spring: cubic-bezier(.16, 1, .3, 1);
  --ease-out:    cubic-bezier(.22, .61, .36, 1);
  --ease-in:     cubic-bezier(.7, 0, .84, 0);

  /* 그림자 */
  --sh-sm:  0 1px 2px rgba(16,24,40,.06), 0 1px 3px rgba(16,24,40,.08);
  --sh-md:  0 4px 12px rgba(16,24,40,.08);
  --sh-lg:  0 12px 32px rgba(15,42,102,.12);
  --sh-cta: 0 8px 20px -4px rgba(27,77,228,.42), inset 0 1px 0 rgba(255,255,255,.18);

  --wrap: 1120px;
  --pad: 20px;
  --callbar-h: 0px;

  /* 타이포 — 헤딩=Paperlogy(각진 산업 톤) / 본문=Pretendard(가독) */
  --f-display: 'Paperlogy', 'Pretendard Variable', -apple-system, sans-serif;
  --f-body: 'Pretendard Variable', -apple-system, BlinkMacSystemFont, 'Malgun Gothic', sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.62;
  letter-spacing: -.017em;
  word-break: keep-all;
  overflow-wrap: break-word;
  padding-bottom: var(--callbar-h);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }

/* ── 섹션 골격 ─────────────────────────────── */
section { position: relative; }
.sec { padding: 84px 0; }
.sec--gray { background: var(--gray-50); }
.sec--navy { background: var(--navy-800); color: #fff; }
.sec--blue { background: var(--blue-600); color: #fff; }

.sec-head { text-align: center; margin-bottom: 40px; }
.sec-kicker {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  color: var(--blue-600); background: var(--blue-50);
  padding: 7px 16px; border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.sec--navy .sec-kicker, .sec--blue .sec-kicker {
  color: #BFD2FF; background: rgba(255,255,255,.10);
}
.sec-title {
  font-family: var(--f-display);
  margin: 0 0 12px;
  font-size: clamp(26px, 5.2vw, 40px);
  font-weight: 800; line-height: 1.28; letter-spacing: -.035em;
}
.sec-title b { color: var(--blue-600); font-weight: 800; }
.sec--navy .sec-title b, .sec--blue .sec-title b { color: #7FA6FF; }
.sec-sub { margin: 0; color: var(--ink-500); font-size: 16px; }
.sec--navy .sec-sub, .sec--blue .sec-sub { color: rgba(255,255,255,.72); }

/* ── 버튼 ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 56px; padding: 0 24px;
  border-radius: var(--r-md);
  font-size: 17px; font-weight: 800; letter-spacing: -.02em;
  transition: transform 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background 160ms linear;
  will-change: transform;
}
.btn svg { flex: none; }
.btn--call { background: var(--blue-600); color: #fff; box-shadow: var(--sh-cta); }
.btn--ghost {
  background: rgba(255,255,255,.10); color: #fff;
  border: 1px solid rgba(255,255,255,.26);
}
.btn--white { background: #fff; color: var(--blue-700); box-shadow: var(--sh-md); }
.btn--lg { min-height: 62px; font-size: 19px; padding: 0 30px; }
.btn--block { display: flex; width: 100%; }

@media (hover: hover) {
  .btn--call:hover { background: var(--blue-700); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(27,77,228,.34); }
  .btn--ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
  .btn--white:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
}
.btn:active { transform: translateY(1px) scale(.985); }

/* ── 헤더 ──────────────────────────────────── */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}
.hdr-in { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.hdr.is-stuck { background: rgba(255,255,255,.94); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 20px; color: #fff; letter-spacing: -.03em; transition: color 260ms; }
.logo-mark { width: 34px; height: 34px; flex: none; }
.hdr.is-stuck .logo { color: var(--navy-800); }
.hdr-tel {
  display: inline-flex; align-items: center; gap: 8px;
  height: 42px; padding: 0 18px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  color: #fff; font-weight: 800; font-size: 16px;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.hdr.is-stuck .hdr-tel { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }
@media (hover:hover){ .hdr-tel:hover { background: var(--blue-700); border-color: var(--blue-700); } }

/* ── 히어로 ────────────────────────────────── */
.hero { position: relative; background: var(--navy-800); overflow: hidden; padding-top: 66px; }
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 76% 62% at 50% 32%, #000 42%, transparent 100%);
  pointer-events: none;
}
.hero-top { text-align: center; padding: 44px 0 34px; position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: #A9C4FF;
  background: rgba(59,107,240,.18); border: 1px solid rgba(127,166,255,.28);
  padding: 8px 18px; border-radius: var(--r-pill); margin-bottom: 20px;
}
.hero-dot { width: 7px; height: 7px; border-radius: 50%; background: #5DE28E; flex: none; }
.hero-h1 {
  font-family: var(--f-display);
  margin: 0 0 14px; color: #fff;
  font-size: clamp(38px, 9vw, 74px); font-weight: 900;
  line-height: 1.06; letter-spacing: -.045em;
}
.hero-h1 b { color: var(--blue-500); font-weight: 900; }
.hero-lead { margin: 0; color: rgba(255,255,255,.8); font-size: clamp(15px, 3.6vw, 19px); font-weight: 500; }

.hero-stage { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: end; padding-bottom: 40px; }
.hero-copy { padding-bottom: 34px; }
.hero-brand {
  font-family: var(--f-display); font-size: clamp(40px, 8.4vw, 70px); font-weight: 900; line-height: 1.02; letter-spacing: -.05em; color: #fff; margin: 0 0 18px; }
.hero-brand span { color: var(--blue-500); }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.hero-tag {
  font-family: var(--f-display);
  font-size: 14px; font-weight: 700; color: #CBDBFF;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16);
  padding: 8px 15px; border-radius: var(--r-pill);
}
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-photo { position: relative; border-radius: var(--r-xl) var(--r-xl) 0 0; overflow: hidden; aspect-ratio: 4/5; background: var(--navy-700); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,77,.85) 0%, rgba(11,31,77,.12) 42%, transparent 70%);
}
.hero-photo-cap {
  position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 2;
  color: #fff; font-size: 14px; font-weight: 600; line-height: 1.45;
}
.hero-photo-cap b { display: block; font-size: 12px; font-weight: 800; color: #7FA6FF; letter-spacing: .05em; margin-bottom: 4px; }

/* 전화 바 + 3배지 */
.hero-callrow { position: relative; padding-bottom: 54px; }
.tel-block {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  border-radius: var(--r-lg); padding: 18px 24px; box-shadow: var(--sh-cta);
  color: #fff; margin-bottom: 16px;
}
.tel-block small { display: block; font-size: 13px; font-weight: 600; opacity: .82; letter-spacing: .02em; }
.tel-block strong {
  font-family: var(--f-display); font-size: clamp(26px, 6.6vw, 40px); font-weight: 900; letter-spacing: -.02em; line-height: 1.16; }
.badges { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; background: #fff; border-radius: var(--r-lg); padding: 20px 12px; box-shadow: var(--sh-lg); }
.badge { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; position: relative; }
.badge + .badge::before { content: ''; position: absolute; left: -6px; top: 12%; height: 76%; width: 1px; background: var(--line); }
.badge-ico { width: 44px; height: 44px; border-radius: 50%; background: var(--blue-50); display: grid; place-items: center; flex: none; }
.badge-txt { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.badge-t { font-size: 13px; color: var(--ink-500); font-weight: 600; line-height: 1.3; }
.badge-v {
  font-family: var(--f-display); font-size: 17px; font-weight: 800; color: var(--navy-800); letter-spacing: -.03em; }

/* ── 서비스 4아이콘 ────────────────────────── */
.svc4 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.svc4-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px; transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), border-color 200ms;
}
@media (hover:hover){ .svc4-item:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); border-color: var(--blue-100); } }
.svc4-ico { width: 58px; height: 58px; border-radius: var(--r-md); display: grid; place-items: center; flex: none; background: var(--blue-50); }
.svc4-ico--o { background: #FFF1E6; }
.svc4-h {
  font-family: var(--f-display); margin: 0 0 6px; font-size: 19px; font-weight: 800; letter-spacing: -.03em; }
.svc4-p { margin: 0; font-size: 15px; color: var(--ink-500); line-height: 1.55; }

/* ── 신뢰 지표 + 리뷰 ──────────────────────── */
.stat-bar {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  border-radius: var(--r-lg); padding: 30px 24px; color: #fff; margin-bottom: 40px;
  box-shadow: var(--sh-lg);
}
.stat { text-align: center; position: relative; }
.stat + .stat::before { content:''; position:absolute; left:-10px; top:14%; height:72%; width:1px; background: rgba(255,255,255,.24); }
.stat-l { font-size: 14px; font-weight: 600; opacity: .84; margin-bottom: 4px; }
.stat-v {
  font-family: var(--f-display); font-size: clamp(34px, 8vw, 52px); font-weight: 900; letter-spacing: -.04em; line-height: 1.06; }
.stat-n { font-size: 12px; opacity: .66; margin-top: 4px; }

.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.rv {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; text-align: left; display: flex; flex-direction: column;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
@media (hover:hover){ .rv:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); } }
.rv-photo { aspect-ratio: 16/10; background: var(--blue-50); overflow: hidden; }
.rv-photo img { width: 100%; height: 100%; object-fit: cover; }
.rv-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.rv-stars { display: flex; gap: 2px; margin-bottom: 9px; }
.rv-name { font-size: 14px; font-weight: 800; color: var(--navy-800); margin-bottom: 7px; }
.rv-txt {
  font-size: 15px; color: var(--ink-700); line-height: 1.6; margin: 0 0 14px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.rv-more { font-size: 14px; font-weight: 700; color: var(--blue-600); display: inline-flex; align-items: center; gap: 5px; }

/* ── 절차 6단계 (시안 재현: 픽토그램 카드 + 뱀형 연결선) ── */
.steps-wrap { position: relative; padding-top: 52px; }
.steps {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 74px 22px;
}
/* 연결 트랙 — 카드 위쪽을 지나가는 가로 레일 2줄 + 우측 U턴 */
.steps-rail { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.steps-rail i {
  position: absolute; display: block; background: var(--blue-600); border-radius: var(--r-pill);
}
.steps-rail .r-top    { left: 12%; right: 12%; top: 52px; height: 9px; }
.steps-rail .r-bottom { left: 12%; right: 12%; top: calc(50% + 57px); height: 9px; }
.steps-rail .r-turn {
  right: -14px; top: 52px; width: 58px; height: calc(50% + 5px);
  background: none; border: 9px solid var(--blue-600); border-left: 0;
  border-radius: 0 90px 90px 0;
}

.step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 46px 16px 26px; margin-top: 22px; text-align: center;
  box-shadow: 0 3px 10px rgba(15,42,102,.07);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), border-color 200ms;
}
@media (hover:hover){ .step:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--blue-100); } }

.step-no {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy-800); color: #fff;
  display: grid; place-items: center;
  font-family: var(--f-display); font-size: 15px; font-weight: 900;
  box-shadow: 0 0 0 5px var(--gray-50); z-index: 2;
}
.step-ico { width: 74px; height: 74px; color: var(--blue-600); }
.step-ico svg { width: 100%; height: 100%; }
.step-h { font-family: var(--f-display); font-size: 17px; font-weight: 800; color: var(--navy-800); letter-spacing: -.03em; line-height: 1.35; }

/* 시안 재현: 하단 행은 04가 우측 → 06이 좌측 (뱀 흐름) */
.step:nth-child(4) { grid-column: 3; grid-row: 2; }
.step:nth-child(5) { grid-column: 2; grid-row: 2; }
.step:nth-child(6) { grid-column: 1; grid-row: 2; }

/* 모달 내 아이콘 */
.mv-ico { width: 96px; height: 96px; color: var(--blue-600); margin: 0 auto 20px; }
.mv-ico svg { width: 100%; height: 100%; }

/* ── 다크 CTA (전국출동) ───────────────────── */
.dispatch { text-align: center; }
.dispatch-h {
  font-family: var(--f-display); margin: 0 0 16px; font-size: clamp(30px, 6.6vw, 52px); font-weight: 900; letter-spacing: -.045em; line-height: 1.14; }
.dispatch-h span { color: var(--blue-500); }
.dispatch-p { margin: 0 auto 32px; max-width: 520px; color: rgba(255,255,255,.76); font-size: 17px; }
.dispatch-tel {
  display: inline-flex; align-items: center; gap: 13px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  border-radius: var(--r-lg); padding: 16px 34px; box-shadow: var(--sh-cta); margin-bottom: 40px;
}
.dispatch-tel span {
  font-family: var(--f-display); font-size: clamp(25px, 6vw, 38px); font-weight: 900; letter-spacing: -.02em; }
.regions { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; max-width: 780px; margin: 0 auto; }
.region {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  padding: 8px 16px; border-radius: var(--r-pill);
}

/* ── 보험 처리 ─────────────────────────────── */
.ins { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.ins-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #FFF6E8; border: 1px solid #FFE0B2; color: #B45309;
  padding: 9px 18px; border-radius: var(--r-pill); font-size: 14px; font-weight: 800; margin-bottom: 18px;
}
.ins-h {
  font-family: var(--f-display); margin: 0 0 14px; font-size: clamp(26px, 5.4vw, 40px); font-weight: 800; letter-spacing: -.04em; line-height: 1.24; }
.ins-h b { color: var(--blue-600); }
.ins-p { margin: 0 0 26px; color: var(--ink-500); font-size: 16px; }
.ins-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.ins-li {
  display: flex; gap: 13px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px 18px;
}
.ins-li svg { flex: none; margin-top: 2px; }
.ins-li span { font-size: 15px; font-weight: 600; color: var(--ink-700); line-height: 1.5; }
.ins-visual { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--sh-lg); }
.ins-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ── 서비스 상세 4카드 ─────────────────────── */
.det { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.det-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; text-align: left; display: flex; flex-direction: column;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
@media (hover:hover){ .det-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); } }
.det-hd {
  font-family: var(--f-display); background: var(--navy-800); color: #fff; padding: 15px 20px; font-size: 19px; font-weight: 800; letter-spacing: -.03em; }
.det-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line); }
.det-photos figure { margin: 0; aspect-ratio: 4/3; overflow: hidden; background: var(--blue-50); }
.det-photos img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease-out); }
@media (hover:hover){ .det-card:hover .det-photos img { transform: scale(1.04); } }
.det-body { padding: 18px 20px 20px; }
.det-p { margin: 0 0 12px; font-size: 15px; color: var(--ink-500); line-height: 1.55; }
.det-more { font-size: 14px; font-weight: 700; color: var(--blue-600); display: inline-flex; align-items: center; gap: 5px; }

/* ── 강점 4 ────────────────────────────────── */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.why-visual { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--sh-lg); }
.why-visual img { width: 100%; height: 100%; object-fit: cover; }
.why-list { display: grid; gap: 14px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-md); padding: 20px; }
.why-ico { width: 46px; height: 46px; border-radius: 50%; background: rgba(59,107,240,.22); display: grid; place-items: center; flex: none; }
.why-h {
  font-family: var(--f-display); margin: 0 0 5px; font-size: 18px; font-weight: 800; letter-spacing: -.03em; color: #fff; }
.why-p { margin: 0; font-size: 15px; color: rgba(255,255,255,.68); line-height: 1.5; }

/* ── VS 비교표 ─────────────────────────────── */
.vs { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); background: #fff; max-width: 860px; margin: 0 auto; }
.vs-row { display: grid; grid-template-columns: 1fr 1fr; }
.vs-hd > div { padding: 18px 20px; font-size: 18px; font-weight: 800; text-align: center; letter-spacing: -.03em; }
.vs-hd .vs-us { background: var(--blue-600); color: #fff; }
.vs-hd .vs-them { background: #6B7280; color: #fff; }
.vs-body .vs-row { border-bottom: 1px solid var(--line); }
.vs-body .vs-row:last-child { border-bottom: 0; }
.vs-cell { display: flex; gap: 11px; align-items: flex-start; padding: 17px 20px; font-size: 15px; line-height: 1.45; }
.vs-cell svg { flex: none; margin-top: 1px; }
.vs-cell--us { font-weight: 700; color: var(--navy-800); border-right: 1px solid var(--line); }
.vs-cell--them { color: var(--ink-500); }
.vs-foot { background: var(--navy-800); color: #fff; text-align: center; padding: 17px 20px; font-size: clamp(15px,3.6vw,18px); font-weight: 700; letter-spacing: -.02em; }
.vs-foot b { color: #7FA6FF; }

/* ── FAQ 아코디언 ──────────────────────────── */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color 200ms, box-shadow 200ms; }
.faq-item.is-open { border-color: var(--blue-100); box-shadow: var(--sh-md); }
.faq-q {
  width: 100%; display: flex; align-items: center; gap: 14px; text-align: left;
  padding: 19px 20px; font-size: 16px; font-weight: 700; color: var(--navy-800); letter-spacing: -.025em;
}
.faq-q-mark { width: 26px; min-width: 26px; height: 26px; border-radius: var(--r-xs); background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; font-size: 14px; font-weight: 900; flex: 0 0 26px; }
.faq-q > span:not(.faq-q-mark) { flex: 1; min-width: 0; }
.faq-chev { flex: none; color: var(--ink-300); transition: transform 260ms var(--ease-spring), color 200ms; }
.faq-item.is-open .faq-chev { transform: rotate(180deg); color: var(--blue-600); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 340ms var(--ease-spring); }
.faq-a-in { padding: 0 20px 20px 60px; font-size: 15px; color: var(--ink-500); line-height: 1.65; }

/* ── 최종 CTA ──────────────────────────────── */
.final { position: relative; background: var(--blue-600); color: #fff; text-align: center; padding: 76px 0; overflow: hidden; }
/* 인물컷 = 데스크탑 우측 배경. 카피는 좌측 여백에 얹힘 */
.final { text-align: left; }
.final-bg {
  position: absolute; right: 0; top: 0; height: 100%; width: 56%; max-width: none;
  object-fit: cover; object-position: 62% center; opacity: .92;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 34%);
          mask-image: linear-gradient(to right, transparent 0%, #000 34%);
  pointer-events: none;
}
.final .wrap { position: relative; z-index: 1; }
.final-copy { max-width: 560px; }
@media (max-width: 900px) {
  .final-bg { display: none; }
  .final { text-align: center; }
  .final-copy { max-width: none; }
}
.final-h {
  font-family: var(--f-display); margin: 0 0 12px; font-size: clamp(30px, 6.6vw, 50px); font-weight: 900; letter-spacing: -.045em; line-height: 1.14; }
.final-h em { font-style: normal; color: #FFD84D; }
.final-p { margin: 0 auto 30px; max-width: 480px; font-size: 17px; color: rgba(255,255,255,.84); }
.final-tel {
  display: inline-flex; flex-direction: column; align-items: center; gap: 2px;
  background: #fff; color: var(--blue-700); border-radius: var(--r-lg);
  padding: 16px 40px; box-shadow: 0 14px 34px rgba(11,31,77,.28); margin-bottom: 14px;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}
@media (hover:hover){ .final-tel:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(11,31,77,.34); } }
.final-tel small { font-size: 13px; font-weight: 700; color: var(--ink-500); }
.final-tel strong {
  font-family: var(--f-display); font-size: clamp(28px, 7vw, 44px); font-weight: 900; letter-spacing: -.025em; line-height: 1.16; }
.final-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.final-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-lg); padding: 22px 14px; max-width: 560px; margin: 0; backdrop-filter: blur(6px); }
@media (max-width: 900px) { .final-3 { margin: 0 auto; max-width: 640px; } }
.final-3 .badge-ico { background: rgba(255,255,255,.16); }
.final-3 .badge-t { color: rgba(255,255,255,.74); }
.final-3 .badge-v { color: #fff; }
.final-3 .badge + .badge::before { background: rgba(255,255,255,.2); }

/* ── 푸터 ──────────────────────────────────── */
.ftr { background: var(--navy-900); color: rgba(255,255,255,.6); padding: 44px 0 40px; font-size: 14px; }
.ftr-top { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: flex-start; margin-bottom: 26px; }
.ftr .logo { color: #fff; }
.ftr-info { display: grid; gap: 5px; line-height: 1.6; }
.ftr-bot { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; }
.ftr-credit { color: rgba(255,255,255,.42); letter-spacing: .04em; font-weight: 600; transition: color 180ms var(--ease-out); }
@media (hover:hover){ .ftr-credit:hover { color: rgba(255,255,255,.9); } }

/* ── 모바일 하단 전화바 ────────────────────── */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 880;
  display: none; gap: 9px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transition: transform 300ms var(--ease-spring), opacity 220ms var(--ease-out);
}
.callbar.is-hidden { transform: translateY(120%); opacity: 0; pointer-events: none; }
.callbar .btn { min-height: 52px; font-size: 16px; border-radius: var(--r-md); }
.callbar-kakao { flex: 0 0 34%; background: #FEE500; color: #191600; box-shadow: var(--sh-sm); }
.callbar-call { flex: 1; }

/* ── 모달 ──────────────────────────────────── */
.modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.modal.is-mounted { display: block; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(11,31,77,.66); backdrop-filter: blur(10px);
  opacity: 0; transition: opacity 260ms var(--ease-out);
}
.modal.is-open .modal-backdrop { opacity: 1; }
.modal-scroll { position: absolute; inset: 0; overflow-y: auto; display: flex; align-items: center; justify-content: center; padding: 24px 16px; -webkit-overflow-scrolling: touch; }
.modal-panel {
  position: relative; width: 100%; max-width: 560px;
  background: #fff; border-radius: var(--r-xl);
  box-shadow: 0 32px 70px rgba(11,31,77,.4);
  opacity: 0; transform: translateY(28px) scale(.96); filter: blur(5px);
  transition: transform 440ms var(--ease-spring), opacity 260ms var(--ease-out), filter 260ms var(--ease-out);
  overflow: hidden;
  max-height: calc(100dvh - 48px);
  display: flex; flex-direction: column;
}
.modal.is-open .modal-panel { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
.modal.is-closing .modal-panel { transition-duration: 200ms; transition-timing-function: var(--ease-in); transform: translateY(18px) scale(.975); opacity: 0; }
.modal.is-closing .modal-backdrop { opacity: 0; }
.modal-panel--wide { max-width: 940px; }

.modal-topline { height: 3px; background: linear-gradient(90deg, var(--blue-600), #7FA6FF); flex: none; }
.modal-hd { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 22px 24px 14px; flex: none; }
.modal-t {
  font-family: var(--f-display); margin: 0; font-size: 21px; font-weight: 800; letter-spacing: -.035em; }
.modal-sub { margin: 5px 0 0; font-size: 14px; color: var(--ink-500); }
.modal-x { width: 38px; height: 38px; border-radius: var(--r-sm); display: grid; place-items: center; color: var(--ink-500); flex: none; transition: background 180ms, color 180ms; }
@media (hover:hover){ .modal-x:hover { background: var(--gray-50); color: var(--ink-900); } }
.modal-bd { padding: 0 24px 24px; overflow-y: auto; flex: 1; }
.modal-ft { padding: 16px 24px calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: var(--gray-50); flex: none; }

/* 모달 내부 순차 등장 */
.modal-stagger > * { opacity: 0; transform: translateY(12px); }
.modal.is-open .modal-stagger > * { animation: mIn 420ms var(--ease-spring) forwards; }
.modal.is-open .modal-stagger > *:nth-child(1) { animation-delay: 110ms; }
.modal.is-open .modal-stagger > *:nth-child(2) { animation-delay: 170ms; }
.modal.is-open .modal-stagger > *:nth-child(3) { animation-delay: 225ms; }
.modal.is-open .modal-stagger > *:nth-child(4) { animation-delay: 275ms; }
.modal.is-open .modal-stagger > *:nth-child(n+5) { animation-delay: 320ms; }
@keyframes mIn { to { opacity: 1; transform: translateY(0); } }

/* 폼 */
.fld { margin-bottom: 15px; }
.fld-l { display: block; font-size: 14px; font-weight: 700; color: var(--ink-700); margin-bottom: 7px; }
.fld-l i { color: #E5484D; font-style: normal; }
.inp {
  width: 100%; min-width: 0; min-height: 52px; padding: 13px 15px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  font-size: 16px; font-family: inherit; color: var(--ink-900); background: #fff;
  transition: border-color 180ms, box-shadow 180ms;
}
.inp:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(59,107,240,.16); }
textarea.inp { min-height: 96px; resize: vertical; line-height: 1.55; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: block; padding: 11px 17px; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: #fff;
  font-size: 15px; font-weight: 600; color: var(--ink-700);
  transition: all 180ms var(--ease-out);
}
.chip input:checked + span { background: var(--blue-600); border-color: var(--blue-600); color: #fff; font-weight: 700; }
.chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(59,107,240,.3); }
@media (hover:hover){ .chip:hover span { border-color: var(--blue-500); } }
.agree { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-500); line-height: 1.5; }
.agree input { width: 20px; height: 20px; margin: 1px 0 0; flex: none; accent-color: var(--blue-600); }
.form-note { margin: 12px 0 0; font-size: 13px; color: var(--ink-300); text-align: center; }
.form-msg { display: none; padding: 13px 16px; border-radius: var(--r-sm); font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.form-msg.is-err { display: block; background: #FEF0F0; color: #C23438; border: 1px solid #F8D7D8; }
.form-done { text-align: center; padding: 26px 4px 10px; }
.form-done-ico { width: 66px; height: 66px; border-radius: 50%; background: #E8F7EE; display: grid; place-items: center; margin: 0 auto 18px; }
.form-done h4 { margin: 0 0 8px; font-size: 21px; font-weight: 800; letter-spacing: -.03em; }
.form-done p { margin: 0 0 22px; color: var(--ink-500); font-size: 15px; }

/* 갤러리 모달 */
.gal-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.gal-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.gal-cell { aspect-ratio: 1/1; border-radius: var(--r-md); overflow: hidden; background: var(--blue-50); position: relative; }
.gal-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 380ms var(--ease-out); }
@media (hover:hover){ .gal-cell:hover img { transform: scale(1.06); } }
.gal-cell[hidden] { display: none; }

/* 라이트박스 */
.lb-stage { position: relative; background: var(--navy-900); border-radius: var(--r-lg); overflow: hidden; }
.lb-img { width: 100%; max-height: 62dvh; object-fit: contain; display: block; background: var(--navy-900); transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out); }
.lb-img.is-swap { opacity: 0; transform: scale(1.02); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--navy-800); display: grid; place-items: center; box-shadow: var(--sh-md); transition: background 180ms, transform 180ms; }
.lb-nav:disabled { opacity: .3; pointer-events: none; }
@media (hover:hover){ .lb-nav:hover { background: #fff; } }
.lb-prev { left: 12px; } .lb-next { right: 12px; }
.lb-cap { padding: 14px 2px 0; font-size: 15px; color: var(--ink-700); }
.lb-cap b { display: block; font-size: 13px; font-weight: 800; color: var(--blue-600); letter-spacing: .04em; margin-bottom: 3px; }
.lb-count { font-size: 13px; color: var(--ink-300); margin-top: 6px; }

/* 리뷰/절차 모달 본문 */
.mv-photo { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 18px; background: var(--blue-50); }
.mv-photo img { width: 100%; max-height: 340px; object-fit: cover; }
.mv-txt { font-size: 16px; line-height: 1.72; color: var(--ink-700); white-space: pre-line; margin: 0; }

/* ── reveal ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ── 반응형 ────────────────────────────────── */
@media (max-width: 900px) {
  .sec { padding: 48px 0; }
  .hero-stage { grid-template-columns: 1fr; gap: 0; padding-bottom: 30px; }
  .hero-copy { order: 2; padding: 26px 0 0; text-align: center; }
  .hero-photo { order: 1; aspect-ratio: 1/1; border-radius: var(--r-xl); }
  .hero-tags { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-top { padding: 34px 0 26px; }
  .reviews { grid-template-columns: 1fr; gap: 12px; }
  /* 모바일: 사진을 좌측 썸네일로 → 카드 높이 1/3 */
  .rv { flex-direction: row; align-items: stretch; }
  .rv-photo { flex: 0 0 116px; aspect-ratio: auto; }
  .rv-photo img { height: 100%; }
  .rv-body { padding: 14px 15px; }
  .rv-txt { -webkit-line-clamp: 3; font-size: 14px; margin-bottom: 8px; }
  .rv-name { font-size: 13px; margin-bottom: 5px; }
  .rv-stars svg { width: 13px; height: 13px; }
  .rv-more { font-size: 13px; }
  .steps { grid-template-columns: repeat(2,1fr); gap: 42px 14px; }
  .steps-wrap { padding-top: 8px; }
  .step:nth-child(4),.step:nth-child(5),.step:nth-child(6){ grid-column:auto; grid-row:auto; }
  .steps-rail { display: none; }
  .ins { grid-template-columns: 1fr; gap: 28px; }
  .ins-visual { aspect-ratio: 16/10; }
  .det { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; gap: 28px; }
  .why-visual { aspect-ratio: 16/10; }
  .gal-grid { grid-template-columns: repeat(3,1fr); }
  .callbar { display: flex; }
  :root { --callbar-h: 76px; }
  .hdr-tel { display: none; }
}

@media (max-width: 560px) {
  :root { --pad: 16px; }
  .sec { padding: 40px 0; }
  .svc4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2,1fr); gap: 40px 12px; }
  /* 마지막 카드가 우측 플로팅에 가리지 않도록 하단 여유 */
  .steps-wrap { padding-bottom: 46px; }
  .step { padding: 36px 10px 20px; }
  .step-ico { width: 60px; height: 60px; }
  .step-h { font-size: 14px; }
  .badges { grid-template-columns: 1fr; gap: 16px; padding: 18px 14px; }
  .badge { flex-direction: row; text-align: left; gap: 13px; align-items: center; }
  .badge + .badge::before { left: 0; right: 0; top: -8px; width: 100%; height: 1px; }
  .badge-txt { display: flex; align-items: baseline; gap: 8px; }
  .stat-bar { padding: 24px 16px; }
  .vs-cell { padding: 14px 13px; font-size: 14px; gap: 8px; }
  .vs-hd > div { font-size: 16px; padding: 15px 12px; }
  .gal-grid { grid-template-columns: repeat(2,1fr); }
  .modal-scroll { padding: 12px 10px; }
  .modal-panel { max-height: calc(100dvh - 24px); }
  .modal-hd, .modal-bd { padding-left: 18px; padding-right: 18px; }
  .modal-ft { padding-left: 18px; padding-right: 18px; }
  .faq-a-in { padding-left: 20px; }
  .final-3 { grid-template-columns: 1fr; gap: 14px; }
  .final-3 .badge { flex-direction: row; text-align: left; gap: 13px; }
  .tel-block { flex-direction: column; gap: 2px; text-align: center; padding: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .modal-stagger > * { opacity: 1; transform: none; }
}

/* ── 우측 플로팅 (카톡/블로그/탑) ────────────── */
.floatbar {
  position: fixed; right: 18px; bottom: 24px; z-index: 870;
  display: flex; flex-direction: column; gap: 10px;
  transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out);
}
.floatbar.is-hidden { opacity: 0; transform: translateX(16px); pointer-events: none; }

.fb-btn {
  width: 58px; height: 58px; border-radius: var(--r-pill);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  box-shadow: 0 6px 18px rgba(11,31,77,.22);
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms;
  text-align: center;
}
.fb-ico { display: grid; place-items: center; line-height: 0; }
.fb-label { font-size: 10px; font-weight: 800; letter-spacing: -.02em; }

.fb-kakao { background: #FEE500; color: #191600; }
.fb-blog  { background: #03C75A; color: #fff; }
.fb-blog .fb-ico svg rect { fill: #fff; }
.fb-blog .fb-ico svg path, .fb-blog .fb-ico svg circle { fill: #03C75A; }
.fb-top   { background: rgba(255,255,255,.96); color: var(--navy-800); border: 1px solid var(--line); height: 46px; }

@media (hover:hover) {
  .fb-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(11,31,77,.3); }
}
.fb-btn:active { transform: translateY(1px) scale(.97); }

/* 모바일: 하단 전화바와 겹치지 않게 위로 올림 + 크기 축소 */
@media (max-width: 900px) {
  .floatbar { right: 12px; bottom: calc(var(--callbar-h) + 14px); gap: 8px; }
  .fb-btn { width: 50px; height: 50px; }
  .fb-label { font-size: 9px; }
  .fb-top { height: 42px; }
}
@media (prefers-reduced-motion: reduce) { .floatbar { transition: none; } }

/* ── 후기 더보기 ─────────────────────────── */
.more-wrap { text-align: center; margin-top: 26px; }
.btn--more {
  background: #fff; color: var(--blue-600);
  border: 1.5px solid var(--blue-100); min-height: 52px; padding: 0 28px;
  border-radius: var(--r-pill); font-size: 16px; box-shadow: var(--sh-sm);
}
@media (hover:hover){ .btn--more:hover { background: var(--blue-50); border-color: var(--blue-500); transform: translateY(-2px); } }
