/* ═══════════════════════════════════════════════════════════════
   커넥트 세무회계법인 — Style Sheet v5.0 FINAL
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg:    #070810;
  --bg2:   #0b0c16;
  --bg3:   #0f1020;
  --card:  #12141e;
  --gold:  #c8a84b;
  --gold2: #e0c870;
  --ga:    rgba(200,168,75,.13);
  --gb:    rgba(200,168,75,.28);
  --w:     #ffffff;
  --g1:    #d8d4cc;
  --g2:    #98958d;
  --g3:    #585866;
  --line:  rgba(255,255,255,.07);
  --line2: rgba(255,255,255,.11);

  --f-body: 'Pretendard','Apple SD Gothic Neo','맑은 고딕',sans-serif;
  --f-head: 'Noto Serif KR',Georgia,serif;
  --f-en:   'Instrument Serif',Georgia,serif;

  --topH: 40px;
  --navH: 76px;
  --maxW: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--g1);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

.inner { max-width: var(--maxW); margin: 0 auto; padding: 0 52px; }
.sec   { padding: 128px 0; }

/* ─── Reveal 애니메이션 ─── */
.rv    { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.rv.on { opacity: 1; transform: none; }
.rv-l    { opacity: 0; transform: translateX(-30px); transition: opacity .7s ease, transform .7s ease; }
.rv-l.on { opacity: 1; transform: none; }
.rv-r    { opacity: 0; transform: translateX(30px); transition: opacity .7s ease, transform .7s ease; }
.rv-r.on { opacity: 1; transform: none; }
/* 딜레이 */
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

/* ─── 공통 타이포 ─── */
.lbl {
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.lbl::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.ttl {
  font-family: var(--f-head);
  font-size: clamp(1.9rem, 2.8vw, 2.75rem);
  font-weight: 500;
  color: var(--w);
  line-height: 1.26;
  letter-spacing: -.022em;
}
.ttl em { font-style: normal; color: var(--gold2); }
.dsc {
  font-size: .92rem;
  color: var(--g2);
  line-height: 1.9;
  font-weight: 300;
  margin-top: 18px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px;
  font-size: .81rem; font-weight: 600; letter-spacing: .04em;
  border-radius: 3px; transition: all .22s ease;
  cursor: pointer; line-height: 1; white-space: nowrap;
}
.btn-g {
  background: var(--gold); color: #05050a;
  border: 1px solid var(--gold);
}
.btn-g:hover {
  background: var(--gold2); border-color: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200,168,75,.28);
}
.btn-o {
  background: transparent; color: var(--g1);
  border: 1px solid rgba(255,255,255,.22);
}
.btn-o:hover {
  border-color: rgba(255,255,255,.5); color: var(--w);
  transform: translateY(-2px);
}
.btn-kakao { background: #FAE100; color: #3B1F1F; font-weight: 700; border: none; }
.btn-kakao:hover { background: #ffe000; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════ */
.topbar {
  height: var(--topH);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center;
  font-size: .69rem; color: var(--g3); letter-spacing: .05em;
  position: relative; z-index: 100;
}
.topbar .inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.tb-l, .tb-r { display: flex; align-items: center; gap: 22px; }
.tb-r a { transition: color .2s; }
.tb-r a:hover { color: var(--gold); }
.tb-l i, .tb-r i { color: var(--gold); margin-right: 6px; font-size: .58rem; }

/* ═══════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════ */
.site-hd {
  position: fixed; top: var(--topH); left: 0; right: 0;
  height: var(--navH); z-index: 200; transition: all .3s ease;
}
.site-hd.stuck {
  top: 0;
  background: rgba(7,8,16,.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 40px rgba(0,0,0,.4);
}
.hd-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }

/* Logo */
.logo { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.logo-mark {
  width: 38px; height: 38px; background: var(--gold);
  border-radius: 5px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-mark span { font-family: var(--f-en); font-size: 1.3rem; font-style: italic; color: #04040a; line-height: 1; }
.logo-kr { font-family: var(--f-head); font-size: .92rem; font-weight: 500; color: var(--w); display: block; line-height: 1.3; }
.logo-en { font-size: .46rem; color: var(--g3); letter-spacing: .17em; text-transform: uppercase; display: block; }

/* Nav */
.gnb { display: flex; align-items: center; gap: 36px; }
.gnb a {
  font-size: .72rem; font-weight: 500; letter-spacing: .06em;
  color: var(--g2); position: relative; padding-bottom: 3px; transition: color .22s;
}
.gnb a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .22s;
}
.gnb a:hover, .gnb a.on { color: var(--w); }
.gnb a:hover::after, .gnb a.on::after { width: 100%; }
.gnb .nav-cta {
  padding: 9px 22px; border: 1px solid var(--gb);
  border-radius: 3px; color: var(--gold)!important; background: var(--ga);
}
.gnb .nav-cta:hover { background: rgba(200,168,75,.22)!important; border-color: var(--gold)!important; }
.gnb .nav-cta::after { display: none!important; }

/* Hamburger */
.hbg { display: none; flex-direction: column; gap: 5px; padding: 6px; z-index: 300; }
.hbg span { display: block; width: 22px; height: 1.5px; background: var(--gold); border-radius: 2px; transition: .24s; }
.hbg.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hbg.open span:nth-child(2) { opacity: 0; }
.hbg.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   HERO  ★ 배경 밝기 전면 조정
═══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }

/* ▼ brightness .42 — 이미지가 보이면서 텍스트 가독성 확보 */
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 28%;
  filter: brightness(.42) saturate(.55);
}

/* 좌측 진한 그라데이션만, 전면 암전 제거 */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg,
      rgba(7,8,16,.92) 0%,
      rgba(7,8,16,.72) 38%,
      rgba(7,8,16,.18) 72%,
      rgba(7,8,16,.06) 100%),
    linear-gradient(to top,
      rgba(7,8,16,.85) 0%,
      transparent 32%);
}

/* 좌측 골드 수직 라인 */
.hero::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom,
    transparent 6%, var(--gold) 22%, var(--gold) 78%, transparent 94%);
  z-index: 2;
}

.hero-body {
  position: relative; z-index: 3; width: 100%;
  padding-top: calc(var(--topH) + var(--navH) + 80px);
  padding-bottom: 120px;
}
.hero-content { max-width: 680px; }

/* Eyebrow */
.hero-eye {
  display: flex; align-items: center; gap: 14px; margin-bottom: 38px;
}
.hero-eye .bar { width: 36px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero-eye span {
  font-size: .62rem; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold);
}

/* 메인 헤드라인 */
.hero-h1 {
  font-family: var(--f-head);
  font-size: clamp(2.8rem, 5.6vw, 5.2rem);
  font-weight: 500; line-height: 1.12;
  color: var(--w); letter-spacing: -.025em;
}
.hero-h1 .accent {
  display: block; font-family: var(--f-en);
  font-style: italic; font-size: .55em; font-weight: 400;
  color: var(--gold2); letter-spacing: .03em;
  line-height: 1.55; margin-top: 12px;
}

/* Sub */
.hero-sub {
  font-size: clamp(.93rem, 1.5vw, 1.1rem);
  font-weight: 300; color: rgba(216,212,204,.65);
  line-height: 1.82; margin-top: 30px; margin-bottom: 46px;
}

/* CTA 버튼 묶음 */
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 60px; }

/* 임팩트 수치 */
.hero-stats {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 32px;
}
.hstat {
  padding-right: 38px; border-right: 1px solid rgba(255,255,255,.09); margin-right: 38px;
}
.hstat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hstat-num {
  font-family: var(--f-en); font-style: italic;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  color: var(--gold); line-height: 1; letter-spacing: -.02em;
}
.hstat-num sup { font-size: .42em; vertical-align: super; }
.hstat-label { font-size: .66rem; color: var(--g3); letter-spacing: .07em; margin-top: 7px; font-weight: 400; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,.22);
  animation: sh 2.8s ease-in-out infinite;
}
.scroll-hint span { font-size: .54rem; letter-spacing: .22em; text-transform: uppercase; }
@keyframes sh {
  0%,100% { opacity: .2;  transform: translateX(-50%) translateY(0);    }
  50%      { opacity: .55; transform: translateX(-50%) translateY(10px);  }
}

/* ═══════════════════════════════════════════
   STRIP — 4가지 신뢰 포인트
═══════════════════════════════════════════ */
.strip {
  background: var(--bg2);
  border-top: 1px solid var(--gb);
  border-bottom: 1px solid var(--line);
}
.strip-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.strip-item {
  padding: 42px 32px; border-right: 1px solid var(--line);
  transition: background .24s;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: rgba(200,168,75,.04); }
.strip-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: var(--ga); border: 1px solid var(--gb);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .9rem; margin-bottom: 18px;
}
.strip-item h4 {
  font-family: var(--f-head); font-size: .9rem; font-weight: 500;
  color: var(--w); line-height: 1.45; margin-bottom: 8px; letter-spacing: -.01em;
}
.strip-item p { font-size: .79rem; color: var(--g3); line-height: 1.72; font-weight: 300; }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about-sec { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; height: 540px; object-fit: cover;
  border-radius: 4px; filter: brightness(.8) saturate(.72);
}
.about-badge {
  position: absolute; bottom: 24px; right: -24px;
  background: var(--card); border: 1px solid var(--gb);
  border-radius: 4px; padding: 18px 22px;
  display: flex; align-items: center; gap: 13px; max-width: 280px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.about-badge i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.about-badge span { font-size: .74rem; color: var(--g1); line-height: 1.55; font-weight: 300; }

.about-txt .ttl { margin-bottom: 20px; }
.about-list { margin-top: 32px; display: flex; flex-direction: column; gap: 22px; }
.abt-item { display: flex; gap: 16px; align-items: flex-start; }
.abt-ic {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ga); border: 1px solid var(--gb);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .58rem; flex-shrink: 0; margin-top: 2px;
}
.abt-item strong { display: block; font-size: .87rem; font-weight: 600; color: var(--w); margin-bottom: 3px; }
.abt-item span { font-size: .8rem; color: var(--g2); line-height: 1.72; font-weight: 300; }
.about-txt .btn { margin-top: 36px; }

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services-sec { background: var(--bg2); }
.sec-hd { margin-bottom: 60px; }
.sec-hd.center { text-align: center; }
.sec-hd.center .lbl { justify-content: center; }
.sec-hd.center .lbl::before { display: none; }
.sec-hd.center .dsc { max-width: 540px; margin: 0 auto; }

.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--line); border-radius: 5px; overflow: hidden;
}
.svc {
  padding: 40px 36px; border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative; transition: background .26s;
}
.svc:nth-child(3n) { border-right: none; }
.svc:nth-child(4),.svc:nth-child(5),.svc:nth-child(6) { border-bottom: none; }
.svc:hover { background: rgba(200,168,75,.04); }
.svc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: transparent; transition: background .26s;
}
.svc:hover::before { background: var(--gold); }
.svc-num {
  font-family: var(--f-en); font-size: .68rem; font-style: italic;
  color: rgba(200,168,75,.5); letter-spacing: .14em; margin-bottom: 16px; display: block;
}
.svc-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--ga); border: 1px solid var(--gb);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .98rem; margin-bottom: 20px;
}
.svc h3 {
  font-family: var(--f-head); font-size: 1.04rem; font-weight: 500;
  color: var(--w); margin-bottom: 12px; letter-spacing: -.016em;
}
.svc p { font-size: .81rem; color: var(--g2); line-height: 1.84; font-weight: 300; margin-bottom: 20px; }
.svc-bullets { display: flex; flex-direction: column; gap: 7px; }
.svc-bullets li {
  font-size: .73rem; color: var(--g3);
  display: flex; align-items: center; gap: 9px; font-weight: 400;
}
.svc-bullets li::before {
  content: ''; display: block; width: 14px; height: 1px;
  background: var(--gb); flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   TEAM
═══════════════════════════════════════════ */
.team-sec { background: var(--bg); }

/* CEO 블록 */
.ceo-block {
  display: grid; grid-template-columns: 268px 1fr;
  gap: 60px; align-items: start;
  padding: 54px 58px;
  background: var(--card);
  border: 1px solid var(--line2); border-radius: 6px;
  margin-bottom: 56px;
  position: relative; overflow: hidden;
}
.ceo-block::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
}
.ceo-img img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 4px; filter: grayscale(12%) brightness(.9);
}

.ceo-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--ga); border: 1px solid var(--gb); border-radius: 20px;
  padding: 5px 13px; font-size: .62rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.ceo-name {
  font-family: var(--f-head); font-size: 2rem; font-weight: 500;
  color: var(--w); letter-spacing: -.022em; margin-bottom: 5px;
}
.ceo-pos {
  font-size: .72rem; color: var(--g2); font-weight: 300;
  letter-spacing: .06em; margin-bottom: 24px; display: block;
}
.ceo-bio {
  font-size: .88rem; color: var(--g2); line-height: 1.92; font-weight: 300;
  margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--line);
}
.ceo-career { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.ceo-career li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: .82rem; color: var(--g1); font-weight: 300; line-height: 1.55;
}
.ceo-career li .yr {
  font-family: var(--f-en); font-size: .72rem; font-style: italic;
  color: var(--gold); flex-shrink: 0; min-width: 68px; margin-top: 1px;
}
.ceo-career li i { color: var(--gold); font-size: .5rem; flex-shrink: 0; margin-top: 5px; }
.ceo-contacts { display: flex; gap: 10px; flex-wrap: wrap; }

/* 팀원 카드 — 4열 */
.staff-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.staff-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 5px; overflow: hidden;
  transition: border-color .24s, transform .26s;
}
.staff-card:hover { border-color: var(--gb); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.staff-card img { width: 100%; height: 210px; object-fit: cover; filter: grayscale(18%) brightness(.86); transition: filter .3s; }
.staff-card:hover img { filter: grayscale(5%) brightness(.95); }

.staff-info { padding: 22px 22px 28px; }
.staff-badge {
  display: inline-block; font-size: .58rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--gold);
  background: var(--ga); border: 1px solid var(--gb);
  border-radius: 20px; padding: 3px 10px; margin-bottom: 10px;
}
.staff-badge.cpa {
  color: #8ab4f8;
  background: rgba(120,160,255,.1);
  border-color: rgba(120,160,255,.28);
}
.staff-info h4 {
  font-family: var(--f-head); font-size: 1.02rem; font-weight: 500;
  color: var(--w); letter-spacing: -.012em; margin-bottom: 3px;
}
.staff-info .role {
  font-size: .7rem; color: var(--g2); font-weight: 300;
  display: block; margin-bottom: 14px; letter-spacing: .02em; line-height: 1.45;
}
.staff-career {
  display: flex; flex-direction: column; gap: 7px;
  border-top: 1px solid var(--line); padding-top: 14px;
}
.staff-career li {
  font-size: .75rem; color: var(--g3);
  display: flex; gap: 8px; align-items: flex-start;
  line-height: 1.5; font-weight: 300;
}
.staff-career li i { color: var(--gold); font-size: .48rem; flex-shrink: 0; margin-top: 5px; }

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process-sec { background: var(--bg2); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); position: relative; gap: 0 8px; }
/* 연결선 */
.process-steps::before {
  content: ''; position: absolute;
  top: 37px; left: calc(100%/8); right: calc(100%/8);
  height: 1px; background: var(--gb); z-index: 0;
}
.step { padding: 0 20px; position: relative; z-index: 1; }
.step-circle {
  width: 74px; height: 74px; border-radius: 50%;
  border: 1px solid var(--gb); background: var(--bg2);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  margin-bottom: 28px;
  transition: border-color .3s, background .3s;
}
.step:hover .step-circle { border-color: var(--gold); background: var(--ga); }
.step-circle span {
  font-family: var(--f-en); font-size: .57rem; font-style: italic;
  color: var(--gold); letter-spacing: .1em; line-height: 1;
}
.step-circle i { font-size: 1rem; color: var(--gold); margin-top: 4px; }
.step h4 {
  font-family: var(--f-head); font-size: .94rem; font-weight: 500;
  color: var(--w); margin-bottom: 12px; letter-spacing: -.01em;
}
.step p { font-size: .79rem; color: var(--g3); line-height: 1.78; font-weight: 300; }

/* ═══════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════ */
.cta-banner { position: relative; padding: 96px 0; overflow: hidden; }
.cta-banner-bg { position: absolute; inset: 0; }
.cta-banner-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.22) saturate(.3);
}
.cta-banner-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(7,8,16,.97) 0%, rgba(7,8,16,.68) 52%, rgba(7,8,16,.44) 100%);
}
.cta-banner .inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.cta-banner-txt h2 {
  font-family: var(--f-head); font-size: clamp(1.75rem, 2.8vw, 2.6rem);
  font-weight: 500; color: var(--w); line-height: 1.3; letter-spacing: -.022em; margin-bottom: 12px;
}
.cta-banner-txt h2 em { color: var(--gold2); font-style: normal; }
.cta-banner-txt p { font-size: .88rem; color: var(--g2); line-height: 1.72; font-weight: 300; }
.cta-banner-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-sec { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 400px; gap: 72px; }

.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .69rem; font-weight: 600; letter-spacing: .08em; color: var(--g2); margin-bottom: 7px; text-transform: uppercase; }
.form-ctrl {
  width: 100%; background: var(--bg3); border: 1px solid var(--line2);
  border-radius: 3px; padding: 12px 16px; color: var(--w);
  font-size: .87rem; font-weight: 300; transition: border-color .2s;
}
.form-ctrl:focus { outline: none; border-color: var(--gb); background: rgba(15,16,32,.9); }
.form-ctrl::placeholder { color: var(--g3); }
textarea.form-ctrl { resize: vertical; min-height: 130px; }
select.form-ctrl { appearance: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 22px; }
.consent-row input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--gold); }
.consent-row label { font-size: .76rem; color: var(--g3); line-height: 1.6; font-weight: 300; }

.contact-info h3 { font-family: var(--f-head); font-size: 1.2rem; font-weight: 500; color: var(--w); margin-bottom: 26px; }
.ci-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-item i { color: var(--gold); font-size: .82rem; margin-top: 3px; flex-shrink: 0; width: 16px; }
.ci-item span { font-size: .83rem; color: var(--g2); line-height: 1.68; font-weight: 300; }
.ci-item strong { display: block; font-size: .67rem; font-weight: 700; letter-spacing: .1em; color: var(--g3); text-transform: uppercase; margin-bottom: 3px; }

.form-done { display: none; text-align: center; padding: 64px 20px; }
.form-done i { font-size: 2.5rem; color: var(--gold); margin-bottom: 18px; display: block; }
.form-done h4 { font-family: var(--f-head); font-size: 1.35rem; font-weight: 500; color: var(--w); margin-bottom: 12px; }
.form-done p { font-size: .87rem; color: var(--g2); font-weight: 300; line-height: 1.78; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding: 68px 0 36px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid var(--line); margin-bottom: 30px;
}
.ft-brand p { font-size: .77rem; color: var(--g3); line-height: 1.8; font-weight: 300; max-width: 240px; margin-top: 18px; }
.ft-col h5 { font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--g3); margin-bottom: 16px; }
.ft-col ul { display: flex; flex-direction: column; gap: 10px; }
.ft-col ul li a { font-size: .79rem; color: var(--g3); font-weight: 300; transition: color .2s; }
.ft-col ul li a:hover { color: var(--gold); }
.ft-copy { display: flex; justify-content: space-between; align-items: center; font-size: .69rem; color: var(--g3); font-weight: 300; letter-spacing: .02em; }

/* ═══════════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════════ */
.fab-wrap { position: fixed; bottom: 34px; right: 26px; z-index: 500; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.fab {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; box-shadow: 0 4px 20px rgba(0,0,0,.45);
  cursor: pointer; transition: transform .22s, box-shadow .22s; position: relative;
}
.fab:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.5); }
.fab-phone { background: var(--gold); color: #04040a; }
.fab-kakao { background: #FAE100; color: #3B1F1F; }
.fab-top   { background: var(--card); color: var(--g2); border: 1px solid var(--line); display: none; }
.fab-top.show { display: flex; }
.fab-label {
  position: absolute; right: 58px;
  background: rgba(7,8,16,.94); border: 1px solid var(--line);
  border-radius: 4px; padding: 5px 11px;
  font-size: .68rem; font-weight: 500; color: var(--w);
  white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity .2s;
}
.fab:hover .fab-label { opacity: 1; }

/* Kakao Modal */
.kakao-modal {
  display: none; position: fixed; inset: 0; z-index: 1000;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,.65); backdrop-filter: blur(8px);
}
.kakao-modal.open { display: flex; }
.kakao-box {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 8px; padding: 42px; max-width: 340px; width: 90%;
  position: relative; text-align: center;
}
.kakao-box h4 { font-family: var(--f-head); font-size: 1.1rem; font-weight: 500; color: var(--w); margin-bottom: 8px; }
.kakao-box p  { font-size: .81rem; color: var(--g2); margin-bottom: 22px; font-weight: 300; }
.kakao-ch { background: var(--bg2); border: 1px solid var(--line); border-radius: 4px; padding: 10px 15px; font-size: .82rem; color: var(--gold); font-weight: 500; margin-bottom: 14px; letter-spacing: .03em; }
.kakao-close { position: absolute; top: 14px; right: 14px; color: var(--g3); font-size: .95rem; padding: 4px; cursor: pointer; transition: color .2s; }
.kakao-close:hover { color: var(--w); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .inner { padding: 0 36px; }
  .about-grid { gap: 52px; }
  .ceo-block { grid-template-columns: 220px 1fr; gap: 44px; padding: 40px 44px; }
  .staff-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 960px) {
  .sec { padding: 88px 0; }
  .gnb { display: none; }
  .hbg { display: flex; }
  .gnb.open {
    display: flex; flex-direction: column; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7,8,16,.97); backdrop-filter: blur(12px);
    align-items: center; justify-content: center; gap: 30px; z-index: 250;
  }
  .gnb.open a { font-size: 1.1rem; }
  .strip-grid { grid-template-columns: repeat(2,1fr); }
  .strip-item:nth-child(2) { border-right: none; }
  .strip-item:nth-child(3) { border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
  .strip-item:last-child { border-top: 1px solid var(--line); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap img { height: 380px; }
  .about-badge { right: 0; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .svc:nth-child(3n) { border-right: 1px solid var(--line); }
  .svc:nth-child(2n) { border-right: none; }
  .svc:nth-child(5) { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
  .svc:nth-child(6) { border-right: none; border-bottom: none; }
  .ceo-block { grid-template-columns: 1fr; }
  .ceo-img img { height: 280px; max-width: 200px; }
  .staff-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-banner .inner { flex-direction: column; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px 0; }
  .hstat { padding-right: 28px; margin-right: 28px; }
}

@media (max-width: 640px) {
  .inner { padding: 0 20px; }
  .sec { padding: 68px 0; }
  .hero-h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; border-top: 1px solid var(--line); padding-top: 28px; }
  .hstat { border-right: none!important; padding-right: 0!important; margin-right: 0!important; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-item { border-right: none!important; border-top: 1px solid var(--line); }
  .strip-item:first-child { border-top: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc { border-right: none!important; }
  .svc:nth-child(n) { border-bottom: 1px solid var(--line)!important; }
  .svc:last-child { border-bottom: none!important; }
  .staff-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .ft-col:nth-child(3) { display: none; }
  .ft-copy { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .tb-l span:nth-child(2) { display: none; }
  .tb-r a:last-child { display: none; }
  .about-badge { position: static; margin-top: 16px; max-width: 100%; right: auto; }
  .ceo-block { padding: 28px 22px; }
}
