@font-face { font-family: 'Wanted Sans'; src: url('/assets/fonts/WantedSansStd-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Wanted Sans'; src: url('/assets/fonts/WantedSansStd-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Wanted Sans'; src: url('/assets/fonts/WantedSansStd-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Wanted Sans'; src: url('/assets/fonts/WantedSansStd-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

html { scroll-behavior: smooth; }
body, p, li, h1, h2, h3 {
  word-break: keep-all;
  overflow-wrap: break-word;
}
summary::-webkit-details-marker { display: none; }
summary { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; height: auto; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* 스크롤 트리거 — 뷰포트 진입 시 1회 페이드+슬라이드업 (main.js IntersectionObserver와 짝) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ── 옥외누수공사 "현장 실측" 디자인 시스템 ─────────────────────────── */
:root {
  /* 신규 토큰 */
  --ink: #12222E;
  --ink-2: #0A141C;
  --signal: #2E93A6;
  --paper: #F4F8F9;
  --line: #C9D3D8;
  --mark: #8A4A24;
  --text: #1A1A1A;
  --text-sub: #4B5563;
  --text-muted: #6B7280;

  /* 레거시 alias — 기존 .dp-*, .contact-*, .ops-* 등이 이 변수들을 그대로 참조 */
  --bp: var(--ink);
  --bp-dark: var(--ink-2);
  --ba: var(--signal);
  --bg-soft: var(--paper);
  --tx: var(--text);
  --tx-sub: var(--text-sub);
  --tx-muted: var(--text-muted);
  --bd: var(--line);

  --dp-max-w-text: 680px;
  --dp-space-2: .5rem; --dp-space-3: .75rem; --dp-space-4: 1rem;
  --dp-space-5: 1.5rem; --dp-space-6: 2rem; --dp-space-7: 3rem;
  --dp-accent-soft: var(--signal);
  --dp-text-muted: var(--text-muted);
  --dp-sec-pad: 3.25rem;
  --dp-gutter: 1rem;
  --dp-fs-h2: clamp(1.4rem, 3vw, 1.9rem);

  --font-head: 'Wanted Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Wanted Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

body { font-family: var(--font-body); }
h1, h2, h3, h4 { font-family: var(--font-head); }

.container { max-width: 72rem; margin-inline: auto; padding-inline: 1rem; }
@media (min-width: 768px) { .container { padding-inline: 1.5rem; } }

/* tabular 수치 (실측값처럼 정렬) */
.fs-num { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum' 1; }

/* eyebrow 라벨은 이 사이트에서 쓰지 않는다 — 남아있는 마크업은 시각적으로 제거 */
.dp-eyebrow { display: none; }

/* ── 버튼 ─────────────────────────────────────────────────────────── */
.dp-cta, .fs-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.7rem; border-radius: 0; font-weight: 600; font-size: .9rem;
  text-decoration: none; border: 1px solid transparent;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.dp-cta--gold, .fs-btn--solid { background: var(--ink); color: #fff; }
.dp-cta--gold:hover, .fs-btn--solid:hover { background: var(--ink-2); }
.dp-cta--outline, .fs-btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.dp-cta--outline:hover, .fs-btn--outline:hover { border-color: #fff; }
.dp-cta--dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.dp-cta--dark:hover { background: var(--ink); color: #fff; }
:where(.dp-cta, .fs-btn):focus-visible { outline: 2px solid var(--signal); outline-offset: 2px; }

/* ── 서브페이지 히어로: 프레임+코너 틱(측량 표시) ───────────────────── */
.dp-hero {
  position: relative; min-height: 52vh; display: flex; align-items: flex-end;
  overflow: hidden; padding: 2.5rem 0;
}
.dp-hero::before {
  content: ''; position: absolute; inset: 10px; border: 1px solid rgba(255,255,255,.35);
  pointer-events: none; z-index: 1;
}
.dp-hero__bg, .dp-hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dp-hero__bg-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,20,28,.72) 0%, rgba(10,20,28,.25) 55%, rgba(10,20,28,.05) 100%); }
.dp-hero__inner { position: relative; z-index: 2; max-width: 72rem; margin-inline: auto; padding: 0 1rem; width: 100%; }
@media (min-width: 768px) { .dp-hero__inner { padding: 0 1.5rem; } }
.dp-hero__title {
  color: #fff; font-family: var(--font-head); font-size: clamp(1.9rem, 4.5vw, 2.75rem);
  font-weight: 700; line-height: 1.2; margin: 0 0 .75rem; border-left: 3px solid var(--signal); padding-left: .85rem;
}
.dp-hero__sub { color: rgba(255,255,255,.92); font-size: .95rem; max-width: 42rem; line-height: 1.7; margin-bottom: 1.4rem; padding-left: calc(.85rem + 3px); }
.dp-hero__actions { display: flex; gap: .75rem; flex-wrap: wrap; padding-left: calc(.85rem + 3px); }

/* ── 섹션 공통 ────────────────────────────────────────────────────── */
.dp-section { padding: 3.25rem 0; }
.dp-section--soft { background: var(--paper); }
.dp-section--warm { background: #EFF5F6; }
.dp-section--dark { background: var(--ink); color: #fff; }
.dp-section--dark .dp-cta--gold { background: #fff; color: var(--ink); }
.dp-section-head { margin-bottom: 1.75rem; }
.dp-section-head h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 700; }
.dp-section-head p { color: var(--text-muted); margin-top: .5rem; }
.dp-section p { color: var(--text-sub); line-height: 1.85; margin-bottom: 1rem; }
.dp-section h1 { font-family: var(--font-head); font-size: clamp(1.7rem, 4vw, 2.3rem); font-weight: 700; }

/* ── 진단 체크리스트: 세로 점검표(빈 체크박스 + 구분선) ──────────────── */
.checklist { list-style: none; padding: 0; }
.checklist li {
  position: relative; padding: .9rem 0 .9rem 2rem; color: var(--text-sub); line-height: 1.7;
  border-bottom: 1px solid var(--line);
}
.checklist li:first-child { border-top: 1px solid var(--line); }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 1.05rem; width: 14px; height: 14px;
  border: 1.5px solid var(--signal);
}

/* ── 진행 과정: 눈금 타임라인 ─────────────────────────────────────── */
.proc-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; position: relative; }
@media (min-width: 768px) { .proc-list { grid-template-columns: repeat(4, 1fr); } }
.proc-item { border-top: none; padding-top: 1.1rem; position: relative; }
.proc-item::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--line);
}
.proc-item::after {
  content: ''; position: absolute; top: -3px; left: 0; width: 2px; height: 8px; background: var(--signal);
}
.proc-item__num, .proc-item > p:first-of-type { display: block; font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--ink); margin-bottom: .4rem; }
.proc-item h3 { font-size: .95rem; font-weight: 700; margin-bottom: .25rem; }
.proc-item p { color: var(--text-muted); font-size: .85rem; line-height: 1.6; margin: 0; }

/* ── 탐지 방식 카드 → 라인 구분 로우 리스트 ───────────────────────── */
.symptom-grid { display: block; border-top: 1px solid var(--line); }
.symptom-card { border: none; border-bottom: 1px solid var(--line); border-radius: 0; padding: 1.4rem 0; background: transparent; position: relative; padding-left: 1rem; }
.symptom-card::before { content: ''; position: absolute; left: 0; top: 1.5rem; width: 6px; height: 6px; background: var(--signal); }
.symptom-card h3 { font-family: var(--font-head); font-weight: 700; margin-bottom: .5rem; }
.symptom-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin: 0; }

/* ── 비교표: 얇은 룰선, tabular 정렬 ──────────────────────────────── */
.dp-compare { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: .9rem; border: none; border-top: 1px solid var(--ink); }
.dp-compare th, .dp-compare td { padding: .8rem 1rem; text-align: left; border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums; }
.dp-compare thead { background: transparent; }
.dp-compare th { font-family: var(--font-head); font-weight: 700; border-bottom: 1px solid var(--ink); }
.dp-compare tbody tr:last-child td { border-bottom: 1px solid var(--ink); }

/* ── FAQ: 2열 그리드(넓은 컨테이너를 채우는 배치), 틱 마커, 회전 아이콘 없음 ── */
.faq-list { border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .faq-list { grid-template-columns: repeat(2, 1fr); column-gap: 3rem; } }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.25rem 0 1.25rem 1.1rem; position: relative; }
@media (min-width: 768px) { .faq-item:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 1.5rem; } }
.faq-item summary { font-family: var(--font-head); font-weight: 700; cursor: pointer; list-style: none; font-size: 1rem; position: relative; }
.faq-item summary::before { content: ''; position: absolute; left: -1.1rem; top: .3rem; width: 3px; height: 1rem; background: var(--line); transition: background-color .15s ease; }
.faq-item[open] summary::before { background: var(--signal); }
.faq-item p { margin-top: .7rem; color: var(--text-sub); font-size: .92rem; line-height: 1.75; }

/* ── 관련 서비스: 가로형 인덱스 카드 (형제사이트 세로 썸네일 카드와 구조가 다름) ── */
.related-grid { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line); }
.related-grid li { min-width: 0; border-bottom: 1px solid var(--line); }
.related-card {
  display: flex; align-items: stretch; gap: 1rem; text-decoration: none; color: var(--text);
  border-left: 3px solid var(--line); transition: border-color .15s ease; padding: .1rem 0 .1rem .9rem;
}
.related-card:hover { border-left-color: var(--signal); }
.related-card .card__img-wrap { flex: 0 0 72px; aspect-ratio: 1; overflow: hidden; background: #eee; align-self: center; }
.related-card .card__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.related-card span { display: flex; align-items: center; padding: .9rem 0; font-weight: 600; font-size: .92rem; }

.img-wrap { border-radius: 0; overflow: hidden; border: 1px solid var(--line); }
.img-wrap img { width: 100%; display: block; }

.dp-back-main { text-align: center; padding: 1.5rem 0; }
.dp-back-main a { color: var(--text-muted); font-size: .85rem; text-decoration: underline; text-underline-offset: 3px; }

/* ── 인증/운영정보/뱃지: 라인 로우 (박스 카드 아님) ───────────────────── */
.badge-row { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
@media (min-width: 768px) { .badge-row { grid-template-columns: repeat(3, 1fr); } }
.badge-card { border: none; border-bottom: 1px solid var(--line); border-radius: 0; padding: 1.1rem 1.3rem; background: transparent; font-size: .9rem; color: var(--text-sub); }
@media (min-width: 768px) { .badge-card { border-right: 1px solid var(--line); } .badge-card:last-child { border-right: none; } }

.ops-grid { display: grid; grid-template-columns: 1fr; gap: 0; margin: 1.5rem 0; border: 1px solid var(--line); border-bottom: none; }
@media (min-width: 768px) { .ops-grid { grid-template-columns: repeat(3, 1fr); } }
.ops-item { border: none; border-bottom: 1px solid var(--line); border-radius: 0; padding: 1rem 1.2rem; font-size: .9rem; color: var(--text-sub); }
@media (min-width: 768px) { .ops-item { border-right: 1px solid var(--line); } .ops-item:last-child { border-right: none; } }
.ops-item strong { display: block; font-family: var(--font-head); color: var(--text); font-size: .8rem; margin-bottom: .3rem; }

.contact-cards { display: grid; grid-template-columns: 1fr; gap: 0; margin: 1.75rem 0; border: 1px solid var(--line); }
@media (min-width: 768px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
.contact-card { border: none; border-radius: 0; padding: 1.9rem; background: transparent; display: flex; flex-direction: column; gap: .75rem; align-items: flex-start; }
@media (min-width: 768px) { .contact-card:first-child { border-right: 1px solid var(--line); } }
.contact-card:not(:first-child) { border-top: 1px solid var(--line); }
@media (min-width: 768px) { .contact-card:not(:first-child) { border-top: none; } }
.contact-phone__num { font-family: var(--font-head); font-size: clamp(2rem, 6vw, 2.6rem); font-weight: 700; color: var(--ink); text-decoration: none; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }

/* ══════════════════════════════════════════════════════════════════
   메인/공용 컴포넌트 — inc/components.php 가 출력하는 마크업 전용 클래스
   ══════════════════════════════════════════════════════════════════ */

/* 코너 틱 마커 — 갤러리 타일 등에서 공용으로 쓰는 "실측 표시" 장식 */
.fs-corner { position: absolute; width: 16px; height: 16px; z-index: 2; }
.fs-corner::before, .fs-corner::after { content: ''; position: absolute; background: var(--signal); }
.fs-corner::before { width: 100%; height: 2px; }
.fs-corner::after { width: 2px; height: 100%; }
.fs-corner--tl { top: -1px; left: -1px; }
.fs-corner--tr { top: -1px; right: -1px; }
.fs-corner--tr::before { right: 0; }
.fs-corner--tr::after { right: 0; }
.fs-corner--bl { bottom: -1px; left: -1px; }
.fs-corner--bl::before { bottom: 0; }
.fs-corner--bl::after { bottom: 0; }
.fs-corner--br { bottom: -1px; right: -1px; }
.fs-corner--br::before { bottom: 0; right: 0; }
.fs-corner--br::after { bottom: 0; right: 0; }

/* 히어로 v2 — 상단 포토 밴드 + 겹쳐진 카피 패널 + 하단 실측 정보 스트립 */
.fs-hero-v2 { background: var(--ink); }
.fs-hero-v2__photo { position: relative; aspect-ratio: 21/9; min-height: 260px; overflow: hidden; border-bottom: 1px solid var(--line); }
@media (max-width: 640px) { .fs-hero-v2__photo { aspect-ratio: 4/3; } }
.fs-hero-v2__photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.97); }
.fs-hero-v2__panel { position: relative; max-width: 72rem; margin: -3rem auto 0; padding: 0 1.25rem; z-index: 2; }
@media (min-width: 768px) { .fs-hero-v2__panel { padding: 0 1.5rem; } }
.fs-hero-v2__panel-inner { max-width: 40rem; margin: 0; background: var(--ink); border: 1px solid var(--line); padding: 2rem 1.5rem 0; }
@media (max-width: 900px) { .fs-hero-v2__panel-inner { max-width: none; } }
@media (min-width: 768px) { .fs-hero-v2__panel-inner { padding: 2.5rem 2.5rem 0; } }
.fs-hero-v2__panel-inner h1 { font-family: var(--font-head); color: #fff; font-size: clamp(1.9rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.25; margin-bottom: 1rem; }
.fs-hero-v2__panel-inner p { color: rgba(255,255,255,.8); font-size: .98rem; line-height: 1.75; max-width: 42rem; margin-bottom: 1.6rem; }
.fs-hero-v2__panel-inner .dp-hero__actions { margin-bottom: 1.75rem; }
/* 텍스트 카드 하단에 붙는 3블록 실측 정보 — 카드와 같은 폭, 좌우 여백 상쇄해 카드 끝까지 채운다 */
.fs-hero-v2__facts { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); margin: 0 -1.5rem; }
@media (min-width: 768px) { .fs-hero-v2__facts { margin: 0 -2.5rem; } }
@media (max-width: 480px) { .fs-hero-v2__facts { grid-template-columns: 1fr; } }
.fs-hero-v2__fact { padding: 1rem 1.25rem; border-right: 1px solid var(--line); }
@media (max-width: 480px) { .fs-hero-v2__fact { border-right: none; border-bottom: 1px solid var(--line); } }
.fs-hero-v2__fact:last-child { border-right: none; border-bottom: none; }
.fs-hero-v2__fact strong { display: block; font-family: var(--font-head); color: #fff; font-weight: 700; font-size: .92rem; margin-bottom: .2rem; font-variant-numeric: tabular-nums; }
.fs-hero-v2__fact span { color: rgba(255,255,255,.6); font-size: .78rem; }

/* 왜 만정누수인가 — 로우 리스트 (숫자 마커 없음) */
.fs-value-list { border-top: 1px solid var(--line); }
.fs-value-row { display: grid; grid-template-columns: 3px 1fr; gap: 1.1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.fs-value-row__tick { background: var(--signal); }
.fs-value-row h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; }
.fs-value-row p { color: var(--text-muted); font-size: .92rem; line-height: 1.7; margin: 0; max-width: 42rem; }

/* 실제 사례 하이라이트 — 줄글 일화를 카드 하나로(좌측 signal 바 + 얇은 프레임) */
.fs-case-highlight { border: 1px solid var(--line); border-left: 3px solid var(--signal); padding: 1.5rem 1.75rem; max-width: 48rem; }
.fs-case-highlight__label { font-size: .75rem; font-weight: 700; letter-spacing: .02em; color: var(--signal); margin: 0 0 .5rem; }
.fs-case-highlight h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin: 0 0 .5rem; }
.fs-case-highlight p:not(.fs-case-highlight__label) { color: var(--text-muted); font-size: .92rem; line-height: 1.7; margin: 0; }

/* 현장 사진 — 실측 시트 그리드 (가로형 이미지 고정, 헤어라인 구분 — 벤토/필름스트립 아님) */
.fs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 640px) { .fs-grid { grid-template-columns: repeat(3, 1fr); } }
/* 세부 페이지(이미지 정확히 2장) — 3열 그리드에서 빈 칸이 생기지 않도록 2열 고정 */
.fs-grid--pair { grid-template-columns: repeat(2, 1fr) !important; }
.fs-grid--pair .fs-tile__photo { aspect-ratio: 4/3; }
.fs-tile { background: #fff; padding: 0; cursor: zoom-in; border: none; text-align: left; display: block; }
.fs-tile__photo { position: relative; aspect-ratio: 3/2; overflow: hidden; background: #eee; }
.fs-tile__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.fs-tile:hover .fs-tile__photo img { transform: scale(1.04); }
.fs-tile__meta { display: flex; gap: .6rem; padding: .65rem .8rem .8rem; align-items: baseline; }
.fs-tile__index { font-family: var(--font-head); font-size: .76rem; font-weight: 700; color: var(--signal); flex: none; font-variant-numeric: tabular-nums; }
.fs-tile__cap { font-size: .78rem; color: var(--text-muted); line-height: 1.5; }

/* 현장 사례 카드 (학교/시장/공원 등) — 라인 기반 */
.fs-case-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
@media (min-width: 768px) { .fs-case-grid { grid-template-columns: repeat(4, 1fr); } }
.fs-case { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fs-case__photo { aspect-ratio: 4/3; overflow: hidden; background: #eee; }
.fs-case__photo img { width: 100%; height: 100%; object-fit: cover; }
.fs-case__body { padding: .9rem 1rem 1.2rem; }
.fs-case__body h3 { font-family: var(--font-head); font-size: .98rem; font-weight: 700; margin-bottom: .35rem; }
.fs-case__body p { font-size: .8rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* 서비스 안내 — 가로형 인덱스 카드 (메인 페이지) */
/* 서비스 안내 — 2열 그리드 고정. 항목 수는 항상 짝수(실제 서비스 5개 + 상담문의 카드 1개 = 6개)로
   맞춰 호출하므로 마지막 줄에 혼자 남는 고아 카드가 생기지 않는다(comp_service_cards 참조). */
.fs-index-list { border-top: 1px solid var(--ink); display: grid; grid-template-columns: 1fr; }
@media (min-width: 700px) { .fs-index-list { grid-template-columns: repeat(2, 1fr); column-gap: 2rem; } }
.fs-index-card {
  display: grid; grid-template-columns: 88px 1fr auto; align-items: center; gap: 1.1rem;
  padding: 1.1rem .25rem; border-bottom: 1px solid var(--line); border-left: 3px solid transparent;
  text-decoration: none; color: var(--text); transition: border-color .15s ease, padding-left .15s ease, background-color .15s ease;
}
@media (min-width: 700px) { .fs-index-card:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 1.25rem; } }
.fs-index-card:hover { border-left-color: var(--signal); padding-left: .6rem; background: var(--paper); }
.fs-index-card--filler { pointer-events: none; border-color: transparent; }
.fs-index-card--filler:hover { border-left-color: transparent; padding-left: .25rem; background: none; }
.fs-index-card__thumb { width: 88px; aspect-ratio: 4/3; overflow: hidden; background: #eee; flex: none; }
.fs-index-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.fs-index-card__body h3 { font-family: var(--font-head); font-size: 1.02rem; font-weight: 700; margin-bottom: .3rem; }
.fs-index-card__body p { font-size: .85rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
.fs-index-card__go { font-size: .8rem; color: var(--signal); font-weight: 700; white-space: nowrap; }
@media (max-width: 560px) { .fs-index-card { grid-template-columns: 64px 1fr; } .fs-index-card__go { display: none; } .fs-index-card__thumb { width: 64px; } }

/* 영상: 2단 구성 (영상 + 현장 기록 로그) */
.fs-video-split { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
@media (min-width: 860px) { .fs-video-split { grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: center; } }
.fs-video-split__frame { aspect-ratio: 16/9; overflow: hidden; background: #000; position: relative; }
.fs-video-split__frame::before { content: ''; position: absolute; inset: 0; border: 1px solid var(--line); z-index: 1; pointer-events: none; }
.fs-video-split__log { border-top: 2px solid var(--ink); padding-top: 1rem; }
.fs-video-split__log dt { font-size: .78rem; color: var(--signal); font-weight: 700; margin-top: 1rem; }
.fs-video-split__log dt:first-child { margin-top: 0; }
.fs-video-split__log dd { margin: .25rem 0 0; color: var(--text-sub); font-size: .9rem; line-height: 1.65; }

/* 하단 CTA — 좌우 분할 */
.fs-cta-split { display: grid; grid-template-columns: 1fr; background: var(--ink); color: #fff; }
@media (min-width: 800px) { .fs-cta-split { grid-template-columns: 1.2fr 1fr; } }
.fs-cta-split__text { padding: 2.75rem 1.5rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .fs-cta-split__text { padding: 3.25rem; } }
.fs-cta-split__text h2 { font-family: var(--font-head); font-size: clamp(1.35rem, 2.6vw, 1.85rem); font-weight: 700; line-height: 1.4; margin-bottom: .5rem; }
.fs-cta-split__text p { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; }
.fs-cta-split__channels { padding: 2.25rem 1.5rem 2.75rem; border-top: 1px solid rgba(255,255,255,.15); display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 800px) { .fs-cta-split__channels { border-top: none; border-left: 1px solid rgba(255,255,255,.15); padding: 3.25rem; } }
.fs-channel { display: flex; align-items: center; gap: .85rem; text-decoration: none; color: #fff; border: 1px solid rgba(255,255,255,.25); padding: .9rem 1.1rem; transition: border-color .15s ease, background-color .15s ease; }
.fs-channel:hover { border-color: var(--signal); background: rgba(255,255,255,.04); }
.fs-channel__icon { width: 20px; height: 20px; flex: none; }
.fs-channel__label { font-size: .95rem; font-weight: 700; }
.fs-channel__sub { display: block; font-size: .76rem; color: rgba(255,255,255,.6); font-weight: 400; margin-top: 2px; }

/* 헤더 nav CTA — 사각, 얇은 언더틱 호버 */
.fs-nav-cta { display: inline-flex; align-items: center; padding: .55rem 1.15rem; font-size: .88rem; font-weight: 600; color: #fff; background: var(--ink); border-radius: 0; text-decoration: none; }
.fs-nav-cta:hover { background: var(--ink-2); }

/* 스크롤 상단 버튼 / 플로팅 상담 버튼 — 각진 */
#scroll-top-btn { border-radius: 0 !important; }
#floating-buttons a { border-radius: 0 !important; }
