/* =========================================
   about/index.html 페이지 전용 스타일
   센터소개 페이지 디자인
   ========================================= */

/* === 메인 콘텐츠 === */
:root {
  --accent: #FF4D00;
  --accent-bg: #FFF0EB;
  --black: #111111;
  --white: #FFFFFF;
  --gray-400: #CCCCCC;
  --gray-500: #AAAAAA;
  --gray-600: #888888;
  --gray-700: #666666;
}
* { box-sizing: border-box; }
html, body {
  background: var(--black) !important;
  height: auto;
  min-height: 100%;
}
body {
  color: var(--white);
  font-family: 'Inter', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* Hero */
.center-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 80px 80px;
  text-align: center;
  position: relative;
}
.center-eyebrow {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 9999px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.center-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.center-title span {
  color: var(--accent);
}
.center-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
  word-break: keep-all;
}

/* Stats */
.center-stats {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.stat-num {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.05em;
}

/* Lawyer Profile */
.center-profile {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}
.profile-photo {
  border-radius: 16px;
  overflow: hidden;
  background: #222;
  aspect-ratio: 3 / 4;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.profile-accent {
  width: 60px;
  height: 3px;
  background: var(--accent);
}
.profile-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 2px;
}
.profile-name {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
}
.profile-name span {
  color: var(--accent);
}
.profile-bio {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.9;
  word-break: keep-all;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.profile-tag {
  padding: 8px 16px;
  border-radius: 9999px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

/* Values / 3 Pillars */
.center-values {
  background: #0a0a0a;
  padding: 100px 80px;
}
.center-values-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.values-header {
  text-align: center;
  margin-bottom: 56px;
}
.values-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.values-title {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 40px 32px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.value-num {
  font-family: 'Inter', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.value-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.4;
}
.value-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
  word-break: keep-all;
}

/* Info grid */
.center-info {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 80px;
}
.info-title-block {
  margin-bottom: 48px;
}
.info-title-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.info-title {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.info-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 32px;
}
.info-card-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.info-card-body {
  font-size: 15px;
  color: var(--white);
  line-height: 1.8;
  word-break: keep-all;
}
.info-card-body strong {
  color: var(--accent);
  font-weight: 700;
}
.info-card-body a {
  color: var(--accent);
  text-decoration: none;
}

/* Promise */
.center-promise {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 80px;
}
.promise-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid #2a2a2a;
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  padding: 56px 48px;
}
.promise-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.promise-quote {
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--white);
  line-height: 1.9;
  font-weight: 500;
  word-break: keep-all;
}
.promise-quote strong {
  color: var(--accent);
  font-weight: 800;
}
.promise-sign {
  margin-top: 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-500);
}

/* CTA */
.center-cta {
  background: var(--accent);
  padding: 80px;
  text-align: center;
}
.cta-urgency {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.cta-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
  word-break: keep-all;
}
.cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--white);
  color: var(--accent);
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.cta-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .center-hero,
  .center-stats,
  .center-profile,
  .center-values,
  .center-info,
  .center-promise,
  .center-cta {
    padding-left: 40px;
    padding-right: 40px;
  }
  .center-profile {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .profile-photo {
    max-width: 420px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .center-hero { padding: 80px 24px 60px; }
  .center-stats {
    padding: 0 24px 60px;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .center-profile,
  .center-values,
  .center-info,
  .center-promise,
  .center-cta {
    padding-left: 24px;
    padding-right: 24px;
  }
  .center-values { padding-top: 60px; padding-bottom: 60px; }
  .center-info { padding-top: 60px; padding-bottom: 60px; }
  .center-promise { padding-top: 60px; padding-bottom: 60px; }
  .center-cta { padding-top: 60px; padding-bottom: 60px; }
  .values-grid,
  .info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .promise-box { padding: 36px 28px; }
  .stat-card { padding: 24px 16px; }
  .value-card { padding: 32px 24px; }
}

/* === 추가 스타일 === */
  :root {
    --bar-h: 48px;
    --nav-h: 50px;
  }
  .top-fixed-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #0b1420;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Inter', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-wrap { top: var(--bar-h) !important; }
  .top-fixed-bar__text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.2px;
  }
  br.mo-only { display: none; }
  .top-fixed-bar__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FF4D00;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 9999px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .top-fixed-bar__btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
  }
  .top-fixed-bar:hover .top-fixed-bar__btn {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,77,0,0.4);
  }
  body { padding-top: calc(var(--bar-h) + var(--nav-h)); }
  main { padding-top: 0 !important; }
  
