@charset "utf-8";

/* =========================================================
   JCL PARTNERS 랜딩
   히어로 배경: Unsplash 무료 이미지(assets/img/hero-bg.jpg) — 교체용 슬롯
   ========================================================= */

:root {
  --navy-950: #060b18;
  --navy-900: #0a1122;
  --navy-800: #101a33;
  --navy-700: #17244a;
  --line: rgba(255, 255, 255, 0.12);
  --txt: #f3f6fc;
  --txt-dim: #9fabc3;
  --ink: #0c1424;
  --ink-dim: #5a6579;
  --light: #f4f6fa;
  --brand: #2f6bff;
  --brand-dk: #1a4ddb;
  --brand-lt: #7ba5ff;
  --red: #e0392f;
  --gold: #c9a86a;
  --marquee-h: 34px;
  --header-h: 58px;
  --fab-h: 92px;
  --radius: 14px;
  --font: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Malgun Gothic', system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--marquee-h) + var(--header-h) + 10px);
}

body {
  font-family: var(--font);
  background: var(--navy-950);
  color: var(--txt);
  line-height: 1.6;
  letter-spacing: -0.02em;
  word-break: keep-all;
  overflow-x: hidden;
  padding-bottom: var(--fab-h);
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

.wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- 마퀴 ---------- */
.marquee {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: var(--marquee-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  /* 가운데가 밝아지는 그라데이션 바 */
  background: linear-gradient(90deg, var(--navy-950) 0%, #0d1730 24%, #16234a 50%, #0d1730 76%, var(--navy-950) 100%);
  border-bottom: 1px solid rgba(122, 164, 255, 0.2);
}

/* 중앙 브랜드 글로우 */
.marquee::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: min(70%, 620px);
  height: 100%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(47, 107, 255, 0.3) 0%, transparent 72%);
  pointer-events: none;
}

/* 하단 브랜드 라인 */
.marquee::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 164, 255, 0.55), transparent);
  pointer-events: none;
}

/* 글자만 양끝에서 사라지도록 (바 배경은 유지) */
.marquee__viewport {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  flex: none;
  white-space: nowrap;
}

.marquee__group b {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
}

/* JCL PARTNERS / LAWFIRM 이 번갈아 나오므로 짝수번째를 눌러 리듬을 준다 */
.marquee__group b:nth-of-type(even) {
  font-weight: 500;
  color: rgba(214, 226, 250, 0.5);
}

/* 구분자 · → 브랜드 컬러 다이아몬드 */
.marquee__group i {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 16px;
  transform: rotate(45deg);
  background: var(--brand-lt);
  box-shadow: 0 0 8px rgba(122, 164, 255, 0.9);
  font-size: 0;
  line-height: 0;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- 헤더 ---------- */
.header {
  position: fixed;
  top: var(--marquee-h);
  left: 0;
  right: 0;
  z-index: 55;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 20px;
  background: rgba(6, 11, 24, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.header.is-solid {
  background: rgba(6, 11, 24, 0.94);
  border-bottom-color: var(--line);
}

.header__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.header__logo-img {
  width: auto;
  height: 19px;
}

.header__logo-tag {
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: var(--txt-dim);
}

.header__toggle {
  width: 34px;
  height: 34px;
  display: grid;
  align-content: center;
  gap: 5px;
  justify-items: end;
}

.header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition:
    transform 0.28s,
    opacity 0.2s,
    width 0.28s;
}

.header__toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.header__toggle[aria-expanded='true'] span:nth-child(3) {
  width: 22px;
  transform: translateY(-7px) rotate(-45deg);
}

.header__nav {
  /* .header 의 backdrop-filter 가 fixed 자식의 컨테이닝 블록이 되므로
     fixed + 뷰포트 기준 top 은 마퀴 높이만큼 밀린다. 헤더 기준 absolute 로 고정.
     (100% 는 헤더 패딩 박스 기준이라 border-bottom 1px 만큼 어긋나므로 높이 변수 사용) */
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  display: grid;
  gap: 2px;
  padding: 0 20px;
  background: rgba(6, 11, 24, 0.97);
  border-bottom: 1px solid var(--line);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    padding 0.35s ease;
}

.header__nav.is-open {
  max-height: 320px;
  opacity: 1;
  padding: 10px 20px 20px;
}

.header__nav a {
  display: block;
  padding: 13px 2px;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header__nav a:last-child {
  border-bottom: 0;
}

/* ---------- 버튼 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dk) 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(26, 77, 219, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(26, 77, 219, 0.45);
}

.btn--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--txt);
}

.btn--block {
  display: flex;
  width: 100%;
}

/* ---------- 히어로 ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--marquee-h) + var(--header-h) + 40px) 20px 90px;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 5% 40%;
  animation: heroZoom 5s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 11, 24, 0.86) 0%, rgba(6, 11, 24, 0.62) 42%, rgba(6, 11, 24, 0.95) 100%);
}

.hero__inner {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero__sub {
  font-size: 16px;
  font-weight: 500;
  color: #d5dcea;
  opacity: 0;
  animation: fadeUp 0.9s 0.15s ease forwards;
}

.hero__title {
  margin-top: 14px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: -0.045em;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s ease forwards;
}

.hero__title strong {
  display: block;
  color: var(--brand-lt);
  font-weight: 800;
}

.hero__note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--txt-dim);
  opacity: 0;
  animation: fadeUp 0.9s 0.7s ease forwards;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.55);
  animation: bob 2.2s ease-in-out infinite;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 26px;
  margin: 8px auto 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
}

@keyframes bob {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 6px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- 섹션 공통 ---------- */
.section {
  padding: 74px 0;
}

.section--dark {
  background: var(--navy-900);
}

.section--light {
  background: var(--light);
  color: var(--ink);
}

.section--cta {
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-700) 100%);
}

.head {
  text-align: center;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--brand-lt);
  margin-bottom: 14px;
}

.head__title {
  font-size: 25px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.head__title span,
.head__title .dim {
  display: block;
}

.head__title .dim {
  color: var(--txt-dim);
  font-weight: 600;
}

.head__title .accent {
  display: inline;
  color: var(--brand-lt);
}

.head__title--sm {
  font-size: 22px;
}

.head__title--ink {
  color: var(--ink);
}

.head__title--ink span {
  color: var(--ink);
}

.head__desc {
  margin-top: 14px;
  font-size: 15px;
  color: var(--txt-dim);
}

.head__desc--ink {
  color: var(--ink-dim);
}

/* ---------- 회수 사례 ---------- */
/* 대표 사례 카드 */
.feature {
  position: relative;
  margin-top: 32px;
  padding: 30px 22px 26px;
  border-radius: 18px;
  border: 1px solid rgba(122, 164, 255, 0.24);
  background: linear-gradient(158deg, rgba(47, 107, 255, 0.16) 0%, rgba(16, 26, 51, 0.92) 44%, rgba(10, 17, 34, 0.96) 100%);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

/* 우상단 브랜드 글로우 */
.feature::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 107, 255, 0.34) 0%, transparent 70%);
  pointer-events: none;
}

.feature > * {
  position: relative;
  z-index: 1;
}

.feature__badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(122, 164, 255, 0.38);
  background: rgba(47, 107, 255, 0.16);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand-lt);
}

.feature__quote {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.045em;
  color: #fff;
}

.feature__quote::before {
  content: '“';
  display: block;
  margin-bottom: 6px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 44px;
  line-height: 0.5;
  color: var(--brand-lt);
}

.feature__body {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.78;
  color: #c3cddf;
}

.feature__body b {
  font-weight: 800;
  color: #fff;
}

.feature__result {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 26px;
  padding: 18px 16px;
  border-radius: 14px;
  border: 1px dashed rgba(122, 164, 255, 0.34);
  background: rgba(6, 11, 24, 0.5);
  text-align: center;
}

.feature__from {
  font-size: 16px;
  font-weight: 600;
  color: var(--txt-dim);
}

.feature__arrow {
  font-size: 19px;
  color: var(--brand-lt);
}

.feature__to {
  font-size: 27px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.05em;
  color: var(--brand-lt);
  text-shadow: 0 0 26px rgba(47, 107, 255, 0.45);
}

.cases-slider {
  position: relative;
  margin-top: 30px;
}

.cases {
  display: flex;
  gap: 14px;
  padding: 4px 20px 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cases::-webkit-scrollbar {
  display: none;
}

.case {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 246px;
  scroll-snap-align: start;
  padding: 26px 22px 22px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.case__quote {
  flex: 1 0 auto;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.045em;
  min-height: 76px;
}

.case__quote::before {
  content: '“';
  display: block;
  margin-bottom: 2px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 30px;
  line-height: 0.7;
  color: var(--brand);
}

.case__amount {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px dashed #d7deeb;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-dim);
}

.case__amount b {
  display: block;
  margin-top: 5px;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.05em;
  /* 흰 카드 위 가독성을 위해 진한 브랜드 컬러 */
  color: var(--brand-dk);
}

.case__result {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
}

.case__result::before {
  content: '→';
  font-size: 14px;
  line-height: 1;
}

/* 슬라이더 컨트롤 */
.cases__nav {
  position: absolute;
  /* 도트 영역만큼 위로 보정해 카드 세로 중앙에 맞춤 */
  top: 50%;
  margin-top: -15px;
  transform: translateY(-50%);
  z-index: 2;
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* 흰 카드 위에 겹쳐도 보이도록 불투명 배경 */
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  transition:
    background 0.2s,
    opacity 0.2s;
}

.cases__nav::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.cases__nav--prev {
  left: 8px;
}

.cases__nav--prev::before {
  transform: translateX(2px) rotate(-135deg);
}

.cases__nav--next {
  right: 8px;
}

.cases__nav--next::before {
  transform: translateX(-2px) rotate(45deg);
}

.cases__nav:hover {
  background: var(--navy-700);
}

.cases__nav:disabled {
  opacity: 0;
  pointer-events: none;
}

.cases__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}

.cases__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
  transition:
    width 0.25s,
    background 0.25s;
}

.cases__dot.is-on {
  width: 22px;
  border-radius: 4px;
  background: var(--brand);
}

.cases__note {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--txt-dim);
}

/* ---------- 변호인단 ---------- */
.section--team {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafd 0%, #eef2f9 58%, #e7edf7 100%);
}

/* 유리 커튼월 느낌의 옅은 사선 결 (실사 배경으로 교체 가능) */
.section--team::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 46%), repeating-linear-gradient(72deg, rgba(148, 168, 204, 0.07) 0 1px, transparent 1px 76px);
  pointer-events: none;
}

.section--team::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(47, 107, 255, 0.12), rgba(47, 107, 255, 0.5), rgba(47, 107, 255, 0.12));
}

.section--team > * {
  position: relative;
  z-index: 1;
}

.team__head-sub {
  /* 다른 섹션 .head__title 과 같은 크기 (자간은 커진 만큼 줄임)
     min() 은 360px 미만 초협소 화면에서만 작동하는 안전장치 */
  font-size: min(25px, 7vw);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #6d7a90;
}

.team__head-main {
  margin-top: 10px;
  font-size: min(33px, 9.2vw);
  font-weight: 800;
  color: var(--ink);
}

.team__dot {
  font-style: normal;
  color: var(--brand);
}

.team__rule {
  position: relative;
  display: block;
  width: min(100%, 500px);
  height: 1px;
  margin: 20px auto 0;
  background: rgba(12, 20, 36, 0.13);
}

.team__rule::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  width: 44px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 2px;
  background: var(--brand);
}

/* 단체 사진 슬롯 : 컷아웃 PNG 가 바닥에 붙도록
   (.slot 이 아래에 정의돼 있어 같은 특정도면 밀리므로 .slot.team__photo 로 올림) */
.slot.team__photo {
  aspect-ratio: 3 / 2;
  width: min(100%, 860px);
  margin: 26px auto 0;
  border-radius: 0;
  background: none;
}

.slot.team__photo img {
  object-fit: contain;
  object-position: center bottom;
}

.slot.team__photo figcaption {
  align-content: end;
  padding-bottom: 18px;
}

/* 이름 띠 */
.team__roster {
  border-top: 3px solid var(--brand);
  background: rgba(255, 255, 255, 0.6);
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
}

.team__names {
  display: flex;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 18px 12px;
}

.team__names li {
  position: relative;
  flex: 1;
  text-align: center;
  font-size: 13px;
  color: var(--ink-dim);
  letter-spacing: -0.02em;
}

.team__names li + li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  transform: translateY(-50%);
  background: rgba(12, 20, 36, 0.14);
}

.team__names b {
  margin-right: 4px;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
}

.slot {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(160deg, #dfe5f0 0%, #c7d0e0 100%);
}

.slot img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slot figcaption {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-content: center;
  font-size: 11px;
  color: #7c879b;
  letter-spacing: 0;
}

.section--team .badges {
  margin-top: 30px;
}

.badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.badges li {
  flex: 1;
  padding: 16px 6px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e3e8f1;
  text-align: center;
  font-size: 12px;
  color: var(--ink-dim);
}

.badges b {
  display: block;
  margin-bottom: 4px;
  font-size: 19px;
  font-weight: 800;
  color: var(--brand);
}

/* ---------- 진행 절차 ---------- */
.process {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.process li {
  position: relative;
  padding: 20px 20px 20px 62px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
}

.process__no {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 15px;
  font-weight: 800;
  color: var(--brand-lt);
}

.process h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.process p {
  margin-top: 6px;
  font-size: 14px;
  color: var(--txt-dim);
}

/* ---------- 상담 유도 ---------- */
.cta-lead {
  margin-top: 18px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.04em;
}

.cta-lead b {
  display: block;
  color: var(--brand-lt);
  font-weight: 800;
}

/* consult 인라인 상담 폼 */
.consult-form {
  max-width: 420px;
  margin: 26px auto 0;
  padding: 24px 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(6, 11, 24, 0.42);
}

.consult-form .form {
  margin-top: 0;
}

.consult-form .form__label:first-of-type {
  margin-top: 0;
}

.consult-form .btn {
  margin-top: 2px;
}

.cta-note {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--txt-dim);
}

/* ---------- 실시간 현황 ---------- */
.status {
  max-width: 600px;
  margin: 26px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.status__viewport {
  height: 290px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}

.status__list {
  animation: statusRoll 26s linear infinite;
}

.status:hover .status__list {
  animation-play-state: paused;
}

@keyframes statusRoll {
  to {
    transform: translateY(-50%);
  }
}

.status__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 15px;
}

.status__type {
  flex: none;
  min-width: 88px;
  padding: 6px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.status__date {
  flex: none;
  color: var(--txt-dim);
  font-variant-numeric: tabular-nums;
}

.status__name {
  flex: 1;
  color: var(--txt-dim);
}

.status__state {
  flex: none;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.status__state--done {
  background: rgba(47, 107, 255, 0.18);
  color: var(--brand-lt);
}

.status__state--talk {
  background: rgba(46, 178, 122, 0.18);
  color: #58d69c;
}

.status__state--visit {
  background: rgba(201, 168, 106, 0.18);
  color: var(--gold);
}

/* ---------- 푸터 ---------- */
.footer {
  padding: 44px 0 40px;
  background: var(--navy-950);
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer__logo img {
  width: auto;
  height: 26px;
  margin: 0 auto;
}

.footer__info {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.9;
  color: var(--txt-dim);
}

.footer__info .bar {
  display: inline-block;
  width: 1px;
  height: 9px;
  margin: 0 8px;
  background: rgba(255, 255, 255, 0.22);
  vertical-align: middle;
}

.footer__links {
  margin-top: 14px;
}

.footer__links button {
  font-size: 12px;
  font-weight: 600;
  color: #cdd6e6;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__copy {
  margin-top: 16px;
  font-size: 11px;
  color: #5d6a83;
  line-height: 1.7;
}

/* ---------- 하단 고정 CTA ---------- */
.fab {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 45;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), 420px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.fab__btn {
  width: 100%;
  min-height: 58px;
  font-size: 18px;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.45),
    0 10px 26px rgba(26, 77, 219, 0.4);
}

.fab__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(122, 164, 255, 0.55);
  animation: pulse 2.4s ease-out infinite;
}

.fab__btn {
  position: relative;
  overflow: visible;
}

@keyframes pulse {
  0% {
    opacity: 0.75;
    transform: scale(1);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

.fab.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 20px);
}

/* ---------- 상담 폼 바텀시트 ---------- */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: flex-end;
  justify-content: center;
}

.sheet.is-open {
  display: flex;
}

.sheet__dim {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 17, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: fadeIn 0.25s ease;
}

.sheet__panel {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: calc(100dvh - 28px);
  overflow-y: auto;
  padding: 20px 20px calc(24px + env(safe-area-inset-bottom, 0px));
  border-radius: 20px 20px 0 0;
  background: linear-gradient(170deg, #121c36 0%, #0a1122 100%);
  border: 1px solid var(--line);
  border-bottom: 0;
  box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.6);
  animation: sheetUp 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes sheetUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: none;
  }
}

.sheet__grip {
  display: block;
  width: 40px;
  height: 4px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.sheet__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  font-size: 26px;
  line-height: 1;
  color: var(--txt-dim);
}

.sheet__title {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.sheet__desc {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--txt-dim);
}

.sheet__body .form {
  margin-top: 18px;
}

/* ---------- 모달 ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
}

.modal--sm {
  z-index: 110;
}

.modal__dim {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 17, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: fadeIn 0.25s ease;
}

.modal__panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  padding: 30px 22px 24px;
  border-radius: 18px;
  background: linear-gradient(170deg, #121c36 0%, #0a1122 100%);
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  animation: modalUp 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modalUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  font-size: 26px;
  line-height: 1;
  color: var(--txt-dim);
}

.modal__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.modal__title {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.modal__desc {
  margin-top: 8px;
  font-size: 13px;
  color: var(--txt-dim);
}

/* ---------- 폼 ---------- */
.form {
  margin-top: 20px;
}

.form__label {
  display: block;
  margin: 14px 0 7px;
  font-size: 13px;
  font-weight: 600;
  color: #c8d2e4;
}

.form__input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.form__input::placeholder {
  color: #6f7c93;
}

.form__input:focus {
  outline: none;
  border-color: var(--brand);
  background: rgba(47, 107, 255, 0.08);
}

.form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #8b98b0 50%), linear-gradient(135deg, #8b98b0 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 22px,
    calc(100% - 14px) 22px;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.form__select option {
  color: #0c1424;
  background: #fff;
}

.form__textarea {
  height: auto;
  padding: 13px 14px;
  line-height: 1.55;
  resize: vertical;
}

.form__unit {
  position: relative;
}

.form__unit .form__input {
  padding-right: 58px;
}

.unit-suffix {
  position: absolute;
  top: 0;
  right: 14px;
  display: grid;
  align-items: center;
  height: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #c8d2e4;
  pointer-events: none;
}

.form__phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-prefix {
  flex: none;
  display: grid;
  place-items: center;
  width: 62px;
  height: 50px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 15px;
  font-weight: 600;
  color: #c8d2e4;
}

.form__agree {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 18px 0 16px;
}

.form__check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #c8d2e4;
  cursor: pointer;
}

.form__check input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

.form__view {
  font-size: 12px;
  color: var(--brand-lt);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy {
  margin-top: 18px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.75;
  color: #c8d2e4;
}

.policy p + p {
  margin-top: 12px;
}

.policy__note {
  color: var(--txt-dim);
  font-size: 12px;
}

.modal--sm .btn {
  margin-top: 18px;
}

/* ---------- 스크롤 등장 ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- 데스크탑 ---------- */
@media (min-width: 768px) {
  :root {
    --marquee-h: 40px;
    --header-h: 68px;
  }

  .marquee__group b {
    font-size: 13px;
  }

  .header__logo-img {
    height: 23px;
  }

  .header__logo-tag {
    font-size: 11px;
  }

  .footer__logo img {
    height: 30px;
  }

  .hero__sub {
    font-size: 20px;
  }

  .hero__title {
    font-size: 46px;
  }

  .section {
    padding: 110px 0;
  }

  .head__title {
    font-size: 36px;
  }

  .head__title--sm {
    font-size: 30px;
  }

  .head__desc {
    font-size: 17px;
  }

  .feature {
    max-width: 760px;
    margin: 40px auto 0;
    padding: 38px 40px 32px;
  }

  .feature__quote {
    font-size: 28px;
  }

  .feature__body {
    font-size: 16px;
  }

  .feature__result {
    gap: 8px 18px;
    padding: 20px 18px;
  }

  .feature__from {
    font-size: 23px;
  }

  .feature__to {
    font-size: 40px;
  }

  .cases-slider {
    max-width: 1120px;
    margin: 40px auto 0;
  }

  .cases {
    padding: 4px 24px 22px;
    scroll-padding-left: 24px;
  }

  .case {
    flex: 0 0 282px;
    padding: 30px 26px 24px;
  }

  .case__quote {
    font-size: 19px;
    min-height: 86px;
  }

  .case__amount b {
    font-size: 29px;
  }

  .cases__nav {
    display: grid;
  }

  .consult-form {
    padding: 30px 28px 26px;
  }

  .wrap {
    max-width: 900px;
  }

  .team__head-sub {
    font-size: 36px;
  }

  .team__head-main {
    font-size: 48px;
  }

  .slot.team__photo {
    aspect-ratio: 16 / 9;
    margin-top: 32px;
  }

  .team__names {
    padding: 22px 12px;
  }

  .team__names li {
    font-size: 15px;
  }

  .team__names b {
    font-size: 21px;
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cta-lead {
    font-size: 27px;
  }

  .section--cta .btn,
  .modal--sm .btn {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .header__toggle {
    display: none;
  }

  .header__nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 26px;
    max-height: none;
    padding: 0;
    opacity: 1;
    background: none;
    border: 0;
    overflow: visible;
  }

  .header__nav a {
    padding: 0;
    border: 0;
    font-size: 14px;
    color: #d3dbea;
    transition: color 0.2s;
  }

  .header__nav a:hover {
    color: #fff;
  }

  .status__viewport {
    height: 330px;
  }

  .status__row {
    gap: 14px;
    padding: 17px 20px;
    font-size: 16px;
  }

  .status__type {
    min-width: 96px;
    font-size: 14px;
  }

  .status__state {
    font-size: 13px;
  }

  .fab {
    bottom: 26px;
  }
}

/* ---------- 모션 최소화 ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee__track,
  .status__list,
  .hero__scroll,
  .hero__bg img,
  .fab__btn::after {
    animation: none !important;
  }

  .hero__sub,
  .hero__title,
  .hero__note {
    opacity: 1;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
