/* ============================================================
   조성현노동법률컨설팅 – 메인 스타일시트 (v2 리디자인)
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Colors */
  --teal:         #0d7a6f;
  --teal-dark:    #085f56;
  --teal-light:   #11a396;
  --teal-glow:    #4dd6cd;
  --teal-pale:    #e8f7f6;
  --navy:         #0a1929;
  --navy-mid:     #102236;
  --navy-light:   #16324f;
  --gold:         #c9923a;
  --gold-light:   #e0aa56;

  /* Neutral */
  --white:        #ffffff;
  --gray-50:      #f8fafc;
  --gray-100:     #f1f5f9;
  --gray-150:     #edf1f7;
  --gray-200:     #e2e8f0;
  --gray-300:     #cbd5e1;
  --gray-400:     #94a3b8;
  --gray-600:     #475569;
  --gray-700:     #334155;
  --gray-800:     #1e293b;

  /* Text */
  --text:         #1a2332;
  --text-muted:   #64748b;
  --text-light:   #94a3b8;

  /* Radius */
  --r-sm:    8px;
  --r-md:    14px;
  --r-lg:    20px;
  --r-xl:    28px;
  --r-full:  9999px;

  /* Shadow */
  --sh-xs:   0 1px 4px rgba(0,0,0,0.06);
  --sh-sm:   0 4px 16px rgba(0,0,0,0.07);
  --sh-md:   0 8px 32px rgba(0,0,0,0.10);
  --sh-lg:   0 20px 60px rgba(0,0,0,0.13);
  --sh-teal: 0 8px 28px rgba(13,122,111,0.30);

  /* Transition */
  --t:       all 0.28s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
#header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(10,25,41,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(77,214,205,0.12);
  transition: var(--t);
}
#header.scrolled {
  background: rgba(10,25,41,1);
  box-shadow: 0 4px 28px rgba(0,0,0,0.35);
}
.header-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; height: 68px;
}
.logo { display: flex; flex-direction: column; gap: 1px; line-height: 1.2; }
.logo-ko {
  font-size: 16px; font-weight: 800; color: var(--white); white-space: nowrap;
  letter-spacing: -0.01em;
}
.logo-ko .accent { color: var(--teal-glow); }
.logo-en { font-size: 9.5px; color: rgba(255,255,255,0.38); letter-spacing: 0.07em; font-weight: 400; }

nav { display: flex; align-items: center; gap: 24px; }
nav a {
  font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.65);
  transition: color 0.2s; white-space: nowrap; position: relative;
}
nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1px;
  background: var(--teal-glow); transform: scaleX(0);
  transform-origin: left; transition: transform 0.25s ease;
}
nav a:hover { color: #fff; }
nav a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--teal) !important;
  color: #fff !important; font-weight: 700 !important;
  padding: 8px 18px; border-radius: var(--r-full); font-size: 13px;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal-light) !important; transform: translateY(-1px); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 26px; padding: 4px 0;
}
.menu-toggle span {
  display: block; height: 2px; background: #fff; border-radius: 2px;
  transition: var(--t);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 68px;
  background: var(--navy);
}

/* 배경 미묘한 텍스처 */
#hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 65% at 20% 55%, rgba(13,122,111,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 5% 80%, rgba(13,122,111,0.04) 0%, transparent 60%);
}

/* 오른쪽 인물 사진 */
.hero-bg-photo {
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  height: 100%;
  z-index: 1;
}
.hero-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  display: block;
}

/* 사진 위 이름 태그 */
.photo-name-tag {
  position: absolute;
  bottom: 140px; right: 32px;
  z-index: 3;
  display: flex; flex-direction: column; align-items: flex-end; gap: 3px;
  background: rgba(10,25,41,0.45);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(77,214,205,0.2);
  border-radius: 10px;
  padding: 8px 14px;
}
.photo-name-title {
  font-size: 10px; font-weight: 600;
  color: var(--teal-glow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.photo-name-main {
  font-size: 16px; font-weight: 800;
  color: #fff;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* 사진 좌측 → 네이비 배경으로 페이드 */
.hero-bg-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    var(--navy)             0%,
    rgba(10,25,41,0.94)     7%,
    rgba(10,25,41,0.68)     18%,
    rgba(10,25,41,0.28)     36%,
    rgba(10,25,41,0.07)     52%,
    transparent             68%
  );
  pointer-events: none;
}
/* 사진 상단·하단 페이드 */
.hero-bg-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,25,41,0.72) 0%,
    rgba(10,25,41,0.18) 10%,
    transparent 24%,
    transparent 72%,
    rgba(10,25,41,0.45) 90%,
    rgba(10,25,41,0.78) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* 하단 섹션 전환 */
.hero-gradient-left {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--white));
}

/* 텍스트 컨테이너 */
.hero-inner {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 100px 28px 160px 64px;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
}
.hero-text { max-width: 510px; }

/* 비활성 */
.hero-bg-overlay, .hero-image, .profile-card, .profile-info-badge { display: none; }

/* 배지 묶음 */
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 28px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(77,214,205,0.35);
  background: rgba(13,122,111,0.13);
  border-radius: var(--r-full); padding: 7px 16px;
  font-size: 12.5px; color: var(--teal-glow); font-weight: 500;
  backdrop-filter: blur(4px);
  letter-spacing: 0.01em;
}
.hero-badge-region {
  background: rgba(201,146,58,0.13);
  border-color: rgba(201,146,58,0.42);
  color: var(--gold-light);
}
.hero-badge i { font-size: 11px; }

/* 히어로 타이틀 */
.hero-title {
  font-size: clamp(36px, 5.2vw, 62px);
  font-weight: 900; line-height: 1.08;
  color: var(--white); margin-bottom: 24px;
  word-break: keep-all; letter-spacing: -0.025em;
}
.hero-title em { font-style: normal; color: var(--teal-glow); }

/* 히어로 서브 */
.hero-sub {
  font-size: 15.5px; color: rgba(255,255,255,0.62); line-height: 1.95;
  margin-bottom: 36px; font-weight: 300;
}
.hero-sub strong { color: rgba(255,255,255,0.92); font-weight: 600; }

/* 통계 블록 */
.hero-stats {
  display: flex; align-items: center;
  margin-bottom: 40px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 18px 24px; width: fit-content;
  gap: 0;
}
.stat { text-align: center; padding: 0 22px; }
.stat-num {
  display: block; font-size: 34px; font-weight: 900; color: var(--white);
  line-height: 1; font-family: 'Montserrat', sans-serif;
}
.stat-unit { font-size: 17px; color: var(--teal-glow); }
.stat-label { display: block; font-size: 11px; color: rgba(255,255,255,0.42); margin-top: 5px; letter-spacing: 0.03em; }
.stat-divider {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.10);
}

/* CTA 버튼 그룹 */
.hero-cta-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--teal); color: #fff;
  font-size: 15.5px; font-weight: 700;
  padding: 15px 30px; border-radius: var(--r-full);
  transition: var(--t);
  box-shadow: var(--sh-teal);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--teal-light); transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(13,122,111,0.45);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.07); color: #fff;
  font-size: 15.5px; font-weight: 600;
  padding: 15px 26px; border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.18);
  transition: var(--t);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.32);
  transform: translateY(-2px);
}

/* 스크롤 안내 */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.35); font-size: 11px; letter-spacing: 0.1em;
  animation: bounce 2s infinite; z-index: 3;
}
.hero-scroll i { font-size: 13px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ═══════════════════════════════════════
   TICKER BANNER
═══════════════════════════════════════ */
.ticker-wrap {
  background: linear-gradient(90deg, #7c2d12, #b45309);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  position: relative;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, #7c2d12, transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left, #b45309, transparent); }
.ticker-track {
  display: inline-flex; gap: 0;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: #fed7aa;
  padding: 0 40px;
}
.ticker-item i { color: #fb923c; font-size: 8px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   SECTION BASE
═══════════════════════════════════════ */
.section { padding: 96px 0; }

.section-why { background: var(--gray-50); }

.section-teal {
  background: linear-gradient(140deg, var(--teal-dark) 0%, #0d8a7e 50%, var(--teal-light) 100%);
}
.section-contact {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.24em;
  color: var(--teal); border: 1.5px solid rgba(13,122,111,0.28);
  background: rgba(13,122,111,0.06);
  padding: 5px 14px; border-radius: var(--r-full);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-teal .section-tag,
.section-contact .section-tag {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.10);
}

.section-title {
  font-size: clamp(26px, 3.6vw, 40px); font-weight: 900;
  color: var(--gray-800); line-height: 1.18;
  margin-bottom: 16px; text-align: center;
  letter-spacing: -0.02em; word-break: keep-all;
}
.section-title em { font-style: normal; color: var(--teal); }
.section-teal .section-title,
.section-contact .section-title { color: #fff; }

.section-sub {
  font-size: 15.5px; color: var(--text-muted); line-height: 1.75;
}
.section-sub strong { color: var(--teal); font-weight: 700; }
.section-teal .section-sub { color: rgba(255,255,255,0.75); }

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-150);
  border-radius: var(--r-lg);
  padding: 28px 26px 30px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
/* 호버 하단 라인 */
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2.5px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.32s ease;
}
.service-card:hover::after,
.service-card.featured::after { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(13,122,111,0.09);
  border-color: rgba(13,122,111,0.16);
}
.service-card.featured {
  background: linear-gradient(155deg, #edfaf9 0%, #f9fffe 55%, #fff 100%);
  border-color: rgba(13,122,111,0.22);
  box-shadow: 0 6px 24px rgba(13,122,111,0.07);
}

.service-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.service-icon i { font-size: 19px; color: #fff; }

.service-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  background: var(--teal); color: #fff;
  padding: 3px 10px; border-radius: var(--r-full);
  margin-bottom: 10px; letter-spacing: 0.05em;
}
.service-card h3 {
  font-size: 16.5px; font-weight: 800; color: var(--gray-800); margin-bottom: 9px;
  letter-spacing: -0.01em; line-height: 1.35;
}
.service-card p {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.82; margin-bottom: 14px;
}
.service-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.service-list li {
  font-size: 13px; color: var(--gray-600);
  display: flex; align-items: center; gap: 8px;
}
.service-list li i { color: var(--teal); font-size: 10px; flex-shrink: 0; }

/* ═══════════════════════════════════════
   WHY US
═══════════════════════════════════════ */
.why-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
.why-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 28px 20px 26px;
  border: 1px solid var(--gray-200);
  transition: var(--t);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.32s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: rgba(13,122,111,0.18);
}
.why-card-busan {
  background: linear-gradient(150deg, #edfaf9 0%, #f2fbfa 100%);
  border-color: rgba(13,122,111,0.22) !important;
  box-shadow: var(--sh-sm);
}
.why-busan-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 700;
  color: var(--teal); background: rgba(13,122,111,0.10);
  padding: 3px 10px; border-radius: var(--r-full);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.why-num {
  font-size: 34px; font-weight: 900;
  color: rgba(13,122,111,0.08); line-height: 1;
  margin-bottom: 12px; font-family: 'Montserrat', sans-serif;
}
.why-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(13,122,111,0.1), rgba(17,163,150,0.15));
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.why-icon i { font-size: 17px; color: var(--teal); }
.why-icon-busan { background: linear-gradient(135deg, rgba(13,122,111,0.15), rgba(77,214,205,0.2)); }
.why-card h3 { font-size: 15px; font-weight: 800; color: var(--gray-800); margin-bottom: 10px; line-height: 1.4; }
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.82; }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about-inner {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: start;
}

/* 왼쪽 */
.about-left {}
.about-title {
  font-size: clamp(26px, 3vw, 36px); font-weight: 900;
  color: var(--gray-800); line-height: 1.2;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.about-title em { font-style: normal; color: var(--teal); }

.about-quote {
  font-size: 15px; color: var(--teal-dark); font-weight: 500;
  line-height: 1.85; font-style: italic;
  border-left: 3px solid var(--teal); padding-left: 18px;
  margin-bottom: 32px;
  background: rgba(13,122,111,0.03);
  padding: 16px 18px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.about-contact-box {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  padding: 22px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--sh-sm);
}
.contact-item {
  display: flex; align-items: flex-start; gap: 12px;
}
.contact-item i {
  width: 34px; height: 34px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; margin-top: 2px;
}
.ci-label { display: block; font-size: 10.5px; color: var(--text-light); margin-bottom: 2px; letter-spacing: 0.03em; }
.ci-val { display: block; font-size: 14.5px; font-weight: 700; color: var(--gray-800); line-height: 1.5; }
.ci-val:is(a):hover { color: var(--teal); }
.ci-addr { font-size: 13px; font-weight: 500; line-height: 1.65; }

/* 오른쪽 – 경력 타임라인 */
.about-right {}
.career-heading {
  font-size: 12px; font-weight: 700;
  color: var(--text-light); letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 24px;
}
.career-list { display: flex; flex-direction: column; gap: 0; }
.career-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.2s;
}
.career-item:last-child { border-bottom: none; }
.career-item-current { background: rgba(13,122,111,0.03); border-radius: var(--r-sm); padding: 14px 12px; margin: 0 -12px; }
.career-year {
  font-size: 11px; font-weight: 700; color: var(--teal);
  background: rgba(13,122,111,0.09);
  padding: 3px 10px; border-radius: var(--r-full);
  white-space: nowrap; flex-shrink: 0; margin-top: 1px;
  min-width: 68px; text-align: center;
  letter-spacing: 0.02em;
}
.career-year-now {
  background: var(--teal); color: #fff;
}
.career-content { display: flex; flex-direction: column; gap: 2px; }
.career-title { font-size: 14px; font-weight: 700; color: var(--gray-700); line-height: 1.4; }
.career-sub { font-size: 12.5px; color: var(--text-muted); }

/* ═══════════════════════════════════════
   REVIEWS
═══════════════════════════════════════ */
.reviews-summary {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 56px;
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  padding: 26px 40px; width: fit-content;
  margin-left: auto; margin-right: auto;
  box-shadow: var(--sh-sm);
}
.rs-item { text-align: center; padding: 0 36px; }
.rs-num {
  display: block; font-size: 40px; font-weight: 900;
  color: var(--gray-800); line-height: 1;
  font-family: 'Montserrat', sans-serif;
}
.rs-unit { font-size: 22px; color: var(--teal); }
.rs-stars { color: #f59e0b; font-size: 14px; margin: 5px 0 4px; display: flex; gap: 3px; justify-content: center; }
.rs-label { font-size: 12px; color: var(--text-light); }
.rs-divider { width: 1px; height: 50px; background: var(--gray-200); }

.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.review-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 26px; border: 1px solid var(--gray-150);
  transition: var(--t);
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(13,122,111,0.08);
  border-color: rgba(13,122,111,0.18);
}
.review-header {
  display: flex; align-items: flex-start; justify-content: space-between;
}
.review-quote-icon {
  font-size: 48px; font-weight: 900; line-height: 0.8;
  color: rgba(13,122,111,0.10); font-family: Georgia, serif;
  margin-top: -4px;
}
.review-stars { color: #f59e0b; font-size: 13px; display: flex; gap: 3px; }
.review-text {
  font-size: 14px; color: var(--gray-600); line-height: 1.88;
  flex: 1;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff; font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-name { display: block; font-size: 13.5px; font-weight: 700; color: var(--gray-800); }
.review-type { display: block; font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
.process-steps {
  display: flex; align-items: stretch; gap: 0;
  justify-content: center; flex-wrap: nowrap;
}
.process-step {
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-lg);
  padding: 36px 22px; text-align: center;
  flex: 1; max-width: 230px;
  position: relative; transition: var(--t);
}
.process-step:hover {
  background: rgba(255,255,255,0.17);
  transform: translateY(-4px);
}
.step-num {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.22); color: #fff;
  border-radius: 50%; font-size: 11.5px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.28);
  font-family: 'Montserrat', sans-serif;
}
.step-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.14);
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-icon i { font-size: 21px; color: #fff; }
.process-step h3 { font-size: 15.5px; font-weight: 800; color: #fff; margin-bottom: 9px; }
.process-step p { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.75; }
.process-arrow {
  color: rgba(255,255,255,0.32); font-size: 18px;
  padding: 0 10px; flex-shrink: 0;
  display: flex; align-items: center;
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white); border-radius: var(--r-md);
  border: 1px solid var(--gray-200); overflow: hidden;
  transition: var(--t);
}
.faq-item.open {
  border-color: rgba(13,122,111,0.22);
  box-shadow: var(--sh-sm);
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 22px; text-align: left;
  font-size: 15px; font-weight: 700; color: var(--gray-800);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--teal); }
.faq-item.open .faq-q { color: var(--teal); }
.faq-q i { color: var(--gray-400); font-size: 13px; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q i { transform: rotate(45deg); color: var(--teal); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 20px; }
.faq-a p { font-size: 14px; color: var(--gray-600); line-height: 1.88; }
.faq-a strong { color: var(--teal); font-weight: 700; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 52px; align-items: start;
}
.contact-firm-name {
  font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.contact-en { font-size: 12.5px; color: rgba(255,255,255,0.4); margin-bottom: 30px; }
.cinfo-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.cinfo-item { display: flex; align-items: flex-start; gap: 14px; }
.cinfo-item i {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(13,122,111,0.25); color: var(--teal-glow);
  border: 1px solid rgba(77,214,205,0.18);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; margin-top: 2px;
}
.cinfo-label { display: block; font-size: 10.5px; color: rgba(255,255,255,0.4); margin-bottom: 2px; letter-spacing: 0.04em; }
.cinfo-val {
  display: block; font-size: 15.5px; font-weight: 700; color: #fff;
  line-height: 1.55;
}
.cinfo-val:is(a):hover { color: var(--teal-glow); }

.blog-link-area { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.blog-link {
  display: inline-flex; align-items: center; gap: 9px;
  background: #03c75a; color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 11px 18px; border-radius: var(--r-md);
  transition: var(--t);
}
.blog-link:hover { background: #02a94e; transform: translateY(-2px); }
.kakao-link {
  display: inline-flex; align-items: center; gap: 9px;
  background: #FEE500; color: #3C1E1E;
  font-size: 14px; font-weight: 700;
  padding: 11px 18px; border-radius: var(--r-md);
  transition: var(--t);
}
.kakao-link:hover { background: #f5dc00; transform: translateY(-2px); }

/* Contact Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  backdrop-filter: blur(10px);
}
.form-title {
  font-size: 19px; font-weight: 800; color: #fff; margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.form-sub {
  font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 22px;
}
.consult-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.75); }
.req { color: #f87171; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px; padding: 11px 14px;
  font-size: 14px; color: #fff;
  font-family: inherit;
  transition: var(--t);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(77,214,205,0.45);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(77,214,205,0.08);
}
.form-group select option { background: var(--navy-mid); color: #fff; }
.form-check {
  display: flex; align-items: center; gap: 10px;
}
.form-check input { width: 16px; height: 16px; accent-color: var(--teal-light); flex-shrink: 0; }
.form-check label { font-size: 12.5px; color: rgba(255,255,255,0.55); }
.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--teal); color: #fff;
  font-size: 15.5px; font-weight: 800;
  padding: 15px; border-radius: var(--r-md);
  transition: var(--t);
  box-shadow: var(--sh-teal);
  letter-spacing: 0.01em;
}
.btn-submit:hover {
  background: var(--teal-light); transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(13,122,111,0.45);
}
.form-success {
  text-align: center; padding: 48px 20px;
}
.form-success i { font-size: 48px; color: var(--teal-glow); margin-bottom: 16px; display: block; }
.form-success h4 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.form-success p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.85; }
.form-success a { color: var(--teal-glow); font-weight: 700; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 52px 0 22px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer-logo { font-size: 17px; font-weight: 900; color: #fff; display: block; margin-bottom: 4px; letter-spacing: -0.01em; }
.footer-en { font-size: 10.5px; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.footer-desc, .footer-addr, .footer-contact, .footer-email {
  font-size: 12.5px; color: rgba(255,255,255,0.4); line-height: 1.85;
}
.footer-links {
  display: flex; flex-direction: column; gap: 11px; align-items: flex-end;
}
.footer-links a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal-glow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 18px; text-align: center;
}
.footer-bottom p { font-size: 11.5px; color: rgba(255,255,255,0.28); line-height: 1.75; }

/* ═══════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════ */
.floating-btns {
  position: fixed; bottom: 28px; right: 22px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
  z-index: 900;
}
.float-btn {
  display: flex; align-items: center; gap: 10px;
  border-radius: var(--r-full); padding: 13px 17px;
  font-weight: 700; font-size: 14px; color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
  transition: var(--t);
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.28); }
.float-call {
  width: 50px; height: 50px; padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  justify-content: center;
}
.float-call i { font-size: 17px; }
.float-kakao {
  width: 50px; height: 50px; padding: 0;
  border-radius: 50%;
  background: #FEE500;
  color: #3C1E1E !important;
  justify-content: center;
}
.float-kakao i { font-size: 19px; }
.float-consult {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  padding: 13px 20px;
}
.float-consult i { font-size: 15px; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero-inner { padding: 80px 28px 140px 48px; }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { gap: 6px; }
  .process-step { padding: 28px 16px; }
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-bg-photo { width: 62%; }
  .hero-inner { padding: 60px 28px 120px 32px; }
  .hero-text { max-width: 100%; }
  .contact-inner { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  nav { display: none; }
  nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(10,25,41,0.98);
    backdrop-filter: blur(16px);
    padding: 14px 24px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    z-index: 999;
  }
  nav.open a {
    padding: 14px 0; width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 15.5px;
  }
  nav.open a::after { display: none; }
  nav.open .nav-cta { margin-top: 8px; text-align: center; justify-content: center; }
  .menu-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { padding: 18px 20px; }
  .rs-item { padding: 0 18px; }
  .process-steps { flex-direction: column; align-items: stretch; gap: 14px; }
  .process-arrow { display: none; }
  .process-step { max-width: 100%; }
  .hero-stats { padding: 14px 18px; }
  .stat { padding: 0 10px; }
  .stat-num { font-size: 26px; }
  .section { padding: 72px 0; }
  .contact-form-wrap { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .floating-btns { bottom: 18px; right: 14px; }
  .hero-bg-photo { width: 70%; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .hero-inner { padding: 40px 20px 110px; }
  .hero-bg-photo { width: 100%; }
  .hero-bg-photo::after {
    background: linear-gradient(
      to right,
      var(--navy) 0%,
      rgba(10,25,41,0.96) 18%,
      rgba(10,25,41,0.72) 40%,
      rgba(10,25,41,0.32) 65%,
      transparent 100%
    );
  }
  .hero-title { font-size: clamp(32px, 9vw, 44px); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .rs-item { padding: 0 12px; }
  .rs-num { font-size: 30px; }
  .container { padding: 0 18px; }
  .section-header { margin-bottom: 44px; }
}
