/*
Theme Name: SuccessPlan (플러스원자문그룹)
Theme URI: https://successplan.co.kr
Author: 플러스원자문그룹
Description: 재무·세무·법무·노무·AX 종합 컨설팅 successplan.co.kr 커스텀 테마. 기존 정적 사이트 디자인을 워드프레스로 이전한 테마입니다.
Version: 1.0.0
Text Domain: successplan
*/

/* ─── Variables ─── */
:root {
  --navy-dark:    #0D1B3E;
  --navy-primary: #1B3A6B;
  --navy-medium:  #2E5090;
  --navy-light:   #4A7CC7;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --white:        #FFFFFF;
  --gray-bg:      #F4F6FA;
  --gray-light:   #E8ECF4;
  --gray-text:    #6B7280;
  --text-dark:    #1A1A2E;
  --radius:       12px;
  --shadow:       0 4px 24px rgba(13,27,62,0.10);
  --shadow-hover: 0 8px 40px rgba(13,27,62,0.18);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── Utilities ─── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-light);
  background: rgba(74,124,199,0.10);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--navy-dark);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-text);
  max-width: 560px;
}
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.gold { color: var(--gold); }
.navy { color: var(--navy-primary); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-navy { background: var(--navy-primary); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); }

/* ─── Navigation ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.3s;
}
#navbar.scrolled {
  background: rgba(13,27,62,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
#navbar.solid { background: rgba(13,27,62,0.97); backdrop-filter: blur(12px); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo .brand { font-size: 18px; font-weight: 800; color: var(--white); }
.nav-logo .sub { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700 !important;
}
.nav-cta:hover, .nav-cta.active { background: var(--gold-light) !important; color: var(--navy-dark) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ─── Page Hero (서브페이지 공통) ─── */
.page-hero {
  padding: 160px 0 64px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 60%, var(--navy-medium) 100%);
}
.page-breadcrumb { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.page-breadcrumb a { color: rgba(255,255,255,0.7); }
.page-breadcrumb a:hover { color: var(--gold); }
.page-hero-content h1 { font-size: clamp(28px,4.5vw,46px); font-weight: 800; color: var(--white); line-height: 1.35; margin-bottom: 16px; }
.page-hero-content p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.8; max-width: 640px; }

/* ─── Hero (홈) ─── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 60%, var(--navy-medium) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-decor {
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,124,199,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light); font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 28px;
}
.hero-badge::before { content: '★'; font-size: 12px; }
.hero-title { font-size: clamp(32px, 5.5vw, 60px); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 24px; }
.hero-title em { font-style: normal; color: var(--gold); }
.hero-desc { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 40px; line-height: 1.8; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 64px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap; }
.hero-stat .num { font-size: 36px; font-weight: 800; color: var(--gold); line-height: 1; }
.hero-stat .label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ─── Strength ─── */
#strength { background: var(--gray-bg); }
.strength-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 56px; }
.strength-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; box-shadow: var(--shadow); transition: all 0.3s; border-top: 4px solid transparent; }
.strength-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-top-color: var(--navy-light); }
.strength-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--navy-primary), var(--navy-light)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.strength-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--navy-dark); }
.strength-card p { font-size: 14px; color: var(--gray-text); line-height: 1.7; }

/* ─── Profile (홈 요약) ─── */
#profile { background: var(--white); }
.profile-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 56px; }
.profile-card { background: var(--gray-bg); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: box-shadow 0.3s; }
.profile-card:hover { box-shadow: var(--shadow-hover); }
.profile-card-header { background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary)); padding: 36px 32px; display: flex; align-items: center; gap: 20px; }
.profile-avatar { width: 80px; height: 80px; border-radius: 50%; border: 3px solid var(--gold); flex-shrink: 0; overflow: hidden; }
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.profile-name { color: var(--white); }
.profile-name h3 { font-size: 22px; font-weight: 800; }
.profile-name .title { font-size: 13px; color: var(--gold-light); margin-top: 4px; font-weight: 500; }
.profile-body { padding: 28px 32px; }
.profile-list { list-style: none; }
.profile-list li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gray-light); font-size: 14px; color: var(--text-dark); }
.profile-list li:last-child { border-bottom: none; }
.profile-list li::before { content: '✓'; color: var(--navy-light); font-weight: 700; flex-shrink: 0; }

/* ─── Services (홈 요약) ─── */
#services { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%); }
#services .section-title { color: var(--white); }
#services .section-sub { color: rgba(255,255,255,0.65); }
#services .section-label { color: var(--gold); background: rgba(201,168,76,0.15); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 56px; }
.service-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 40px 32px; transition: all 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); opacity: 0; transition: opacity 0.3s; }
.service-card:hover { background: rgba(255,255,255,0.10); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-num { font-size: 48px; font-weight: 800; color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 12px; }
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag { font-size: 12px; color: var(--gold-light); background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.25); padding: 4px 12px; border-radius: 50px; }

/* ─── SNS / Insight (홈) ─── */
#sns { background: var(--gray-bg); }
.sns-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.sns-channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.sns-card { border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all 0.3s; cursor: pointer; position: relative; overflow: hidden; }
.sns-card::after { content: '→'; position: absolute; right: 16px; top: 16px; font-size: 14px; opacity: 0; transition: 0.3s; }
.sns-card:hover::after { opacity: 1; }
.sns-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.sns-insta { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: white; }
.sns-youtube { background: #FF0000; color: white; }
.sns-threads { background: var(--navy-dark); color: white; border: 1px solid rgba(255,255,255,0.1); }
.sns-card .sns-icon { display: flex; margin-bottom: 12px; justify-content:center; }
.sns-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.sns-card p { font-size: 13px; opacity: 0.8; }
.sns-card .handle { font-size: 13px; opacity: 0.7; margin-top: 8px; font-family: monospace; }
.sns-notice { background: var(--white); border-radius: var(--radius); padding: 28px 32px; display: flex; align-items: center; gap: 20px; box-shadow: var(--shadow); }
.sns-notice-icon { font-size: 32px; flex-shrink: 0; }
.sns-notice p { font-size: 14px; color: var(--gray-text); line-height: 1.7; }
.sns-notice strong { color: var(--navy-primary); }

/* ─── Contact ─── */
#contact { background: var(--white); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; margin-top: 56px; align-items: start; }
.contact-info h3 { font-size: 22px; font-weight: 700; color: var(--navy-dark); margin-bottom: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--gray-light); }
.contact-item:last-child { border-bottom: none; }
.contact-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--navy-primary), var(--navy-light)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-item h4 { font-size: 13px; font-weight: 600; color: var(--gray-text); margin-bottom: 4px; }
.contact-item a, .contact-item p { font-size: 15px; font-weight: 500; color: var(--navy-dark); }
.contact-item a:hover { color: var(--navy-light); }
.contact-form { background: var(--gray-bg); border-radius: var(--radius); padding: 36px; }
.contact-form h3 { font-size: 20px; font-weight: 700; color: var(--navy-dark); margin-bottom: 24px; }

/* ─── Form 공통 ─── */
.form-check-group { display: flex; flex-direction: column; gap: 10px; }
.form-check { display: flex; flex-direction: row; align-items: center; gap: 14px; padding: 14px 18px; border-radius: 8px; background: var(--white); border: 1.5px solid var(--gray-light); cursor: pointer; transition: all 0.2s; }
.form-check:hover { border-color: var(--navy-light); }
.form-check input[type="checkbox"] { width: 18px; height: 18px; min-width: 18px; accent-color: var(--navy-primary); margin: 0; cursor: pointer; }
.form-check span { font-size: 14px; color: var(--text-dark); line-height: 1.5; }
.form-privacy { font-size: 12px; color: var(--gray-text); text-align: center; margin-top: 12px; line-height: 1.6; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy-primary); margin-bottom: 6px; }
.form-group label .req { color: #e53e3e; margin-left: 2px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--gray-light); border-radius: 8px;
  font-size: 14px; font-family: inherit; color: var(--text-dark); background: var(--white);
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy-light); box-shadow: 0 0 0 3px rgba(74,124,199,0.12); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%; padding: 14px; background: linear-gradient(135deg, var(--navy-primary), var(--navy-medium));
  color: white; border: none; border-radius: 50px; font-size: 15px; font-weight: 700;
  font-family: inherit; cursor: pointer; transition: all 0.25s; margin-top: 8px;
}
.form-submit:hover { background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary)); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,58,107,0.35); }

/* ─── CTA 배너 ─── */
.cta-banner { background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary)); padding: 80px 0; text-align: center; }
.cta-banner h2 { font-size: clamp(24px,3.5vw,34px); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─── */
footer { background: var(--navy-dark); color: rgba(255,255,255,0.6); padding: 48px 0 32px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-brand .brand { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-links h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.2s; }
.footer-social a:hover { background: var(--gold); }

/* ─── 카카오 플로팅 버튼 ─── */
.kakao-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 998;
  display: flex; align-items: center; gap: 8px;
  background: #FEE500; color: #3A1D1D;
  padding: 14px 22px; border-radius: 50px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18); transition: all 0.25s;
  font-family: 'Noto Sans KR', sans-serif; line-height: 1;
}
.kakao-float:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.22); background: #FFD600; color: #3A1D1D; }
.kakao-float svg { flex-shrink: 0; }
@media (max-width: 600px) {
  .kakao-float .kakao-label { display: none; }
  .kakao-float { padding: 14px; border-radius: 50%; }
}

/* ─── Toast / Scroll to top ─── */
.toast { position: fixed; bottom: 100px; right: 32px; background: var(--navy-dark); color: white; padding: 16px 24px; border-radius: var(--radius); font-size: 14px; font-weight: 600; box-shadow: 0 8px 32px rgba(0,0,0,0.25); transform: translateY(100px); opacity: 0; transition: all 0.4s; z-index: 9999; }
.toast.show { transform: translateY(0); opacity: 1; }
#scrollTop { position: fixed; bottom: 32px; left: 32px; width: 44px; height: 44px; background: var(--navy-primary); color: white; border: none; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.3s; z-index: 500; box-shadow: var(--shadow); }
#scrollTop.show { opacity: 1; }
#scrollTop:hover { background: var(--navy-dark); transform: translateY(-2px); }

/* ─── 종합 완성형 컨설팅 (quad diagram) ─── */
.quad-wrap { display: grid; grid-template-columns: 1fr auto 1fr; grid-template-rows: auto auto auto; gap: 20px; align-items: center; margin-top: 56px; max-width: 960px; margin-left: auto; margin-right: auto; }
.quad-node { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 24px; transition: all 0.3s; }
.quad-node:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.quad-finance  { border-top: 4px solid var(--navy-primary); grid-column:1; grid-row:1; }
.quad-tax      { border-top: 4px solid #28a745;             grid-column:3; grid-row:1; }
.quad-legal    { border-top: 4px solid #7b1fa2;             grid-column:1; grid-row:3; }
.quad-labor    { border-top: 4px solid #e65100;             grid-column:3; grid-row:3; }
.quad-center   { grid-column:2; grid-row:2; display:flex; flex-direction:column; align-items:center; justify-content:center; }
.quad-center-circle { width: 130px; height: 130px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary)); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 32px rgba(13,27,62,0.25); color: white; text-align: center; padding: 16px; }
.quad-connector { grid-column:2; display:flex; justify-content:center; align-items:center; }
.quad-line { width: 2px; height: 40px; background: var(--gray-light); }
.quad-icon { font-size: 32px; margin-bottom: 8px; }
.quad-field-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 5px; }
.quad-finance .quad-field-label  { color: var(--navy-primary); }
.quad-tax .quad-field-label      { color: #28a745; }
.quad-legal .quad-field-label    { color: #7b1fa2; }
.quad-labor .quad-field-label    { color: #e65100; }
.quad-name { font-size: 17px; font-weight: 800; color: var(--navy-dark); margin-bottom: 2px; }
.quad-org  { font-size: 12px; color: var(--gray-text); margin-bottom: 14px; }
.quad-items { list-style: none; padding: 0; border-top: 1px solid var(--gray-light); padding-top: 12px; }
.quad-items li { font-size: 12px; color: var(--gray-text); padding: 3px 0 3px 14px; position: relative; }
.quad-items li::before { content: '·'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.quad-badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 50px; margin-bottom: 6px; }
.badge-new { background: rgba(230,81,0,0.12); color: #e65100; }
.quad-ax-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }

/* ─── 소개 페이지 : 회사 소개 카드 ─── */
.company-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.company-text h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; color: var(--navy-dark); margin-bottom: 20px; line-height: 1.4; }
.company-text p { font-size: 15px; color: var(--gray-text); line-height: 1.9; margin-bottom: 16px; }
.company-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.value-item { background: var(--gray-bg); border-radius: 10px; padding: 20px; border-left: 4px solid var(--navy-light); }
.value-item h4 { font-size: 14px; font-weight: 700; color: var(--navy-primary); margin-bottom: 6px; }
.value-item p { font-size: 13px; color: var(--gray-text); margin: 0; }
.company-visual { background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary)); border-radius: var(--radius); padding: 48px 40px; color: var(--white); }
.company-visual h3 { font-size: 22px; font-weight: 800; margin-bottom: 28px; color: var(--gold); }
.stat-row { display: flex; flex-direction: column; gap: 20px; }
.stat-item { display: flex; align-items: center; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-bottom: none; padding-bottom: 0; }
.stat-num { font-size: 36px; font-weight: 800; color: var(--gold); min-width: 80px; }
.stat-desc { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; }

/* ─── 소개 페이지 : 프로필 상세 ─── */
.profile-detail-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 56px; }
.profile-detail-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.profile-detail-header { background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary)); padding: 40px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.profile-detail-avatar { width: 110px; height: 110px; border-radius: 50%; border: 4px solid var(--gold); margin-bottom: 16px; overflow: hidden; flex-shrink: 0; }
.profile-detail-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.profile-detail-header h3 { font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.profile-detail-header .role { font-size: 14px; color: var(--gold-light); margin-bottom: 4px; }
.profile-detail-header .company { font-size: 13px; color: rgba(255,255,255,0.6); }
.profile-detail-body { padding: 32px; }
.profile-section-title { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy-light); margin-bottom: 12px; margin-top: 24px; }
.profile-section-title:first-child { margin-top: 0; }
.career-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.career-item { display: flex; gap: 12px; align-items: flex-start; padding: 10px 14px; border-radius: 8px; background: var(--gray-bg); font-size: 14px; color: var(--text-dark); }
.career-badge { font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 50px; white-space: nowrap; flex-shrink: 0; margin-top: 1px; }
.badge-current { background: rgba(74,124,199,0.15); color: var(--navy-primary); }
.badge-past { background: rgba(107,114,128,0.12); color: var(--gray-text); }
.profile-detail-header.legal-header { background: linear-gradient(135deg, #3d1f7a, #5c35a0); }
.profile-detail-header.labor-header { background: linear-gradient(135deg, #bf360c, #e65100); }

/* ─── 소개 페이지 : 파트너십 ─── */
.partnership { background: var(--gray-bg); }
.partner-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.partner-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); transition: all 0.3s; }
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.partner-card .icon { font-size: 40px; margin-bottom: 16px; }
.partner-card h3 { font-size: 17px; font-weight: 700; color: var(--navy-dark); margin-bottom: 10px; }
.partner-card p { font-size: 14px; color: var(--gray-text); line-height: 1.7; }

/* ─── 서비스 페이지 : 서비스 상세 ─── */
.service-detail { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; padding: 80px 0; border-bottom: 1px solid var(--gray-light); }
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-num-big { font-size: 80px; font-weight: 800; color: var(--gray-light); line-height: 1; margin-bottom: -16px; }
.service-icon-big { font-size: 56px; margin-bottom: 16px; }
.service-detail h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--navy-dark); margin-bottom: 12px; line-height: 1.3; }
.service-detail .lead { font-size: 16px; color: var(--navy-medium); font-weight: 600; margin-bottom: 16px; line-height: 1.7; }
.service-detail .desc { font-size: 15px; color: var(--gray-text); line-height: 1.9; margin-bottom: 24px; }
.service-items { display: flex; flex-direction: column; gap: 12px; }
.service-item { background: var(--gray-bg); border-radius: 10px; padding: 16px 20px; display: flex; gap: 14px; align-items: flex-start; }
.service-item .si-icon { width: 36px; height: 36px; border-radius: 8px; background: linear-gradient(135deg, var(--navy-primary), var(--navy-light)); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.service-item h4 { font-size: 14px; font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.service-item p { font-size: 13px; color: var(--gray-text); line-height: 1.6; }
.target-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; background: rgba(201,168,76,0.12); color: var(--navy-primary); border: 1px solid rgba(201,168,76,0.3); padding: 6px 14px; border-radius: 50px; margin: 4px; }
.process-section { background: var(--gray-bg); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 36px; left: calc(12.5% + 20px); right: calc(12.5% + 20px); height: 2px; background: linear-gradient(90deg, var(--navy-light), var(--gold)); }
.process-step { text-align: center; position: relative; }
.step-circle { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-primary), var(--navy-light)); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 24px; box-shadow: 0 4px 16px rgba(27,58,107,0.25); position: relative; z-index: 1; }
.process-step h3 { font-size: 15px; font-weight: 700; color: var(--navy-dark); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--gray-text); line-height: 1.6; }
.refund-highlight { background: linear-gradient(135deg, rgba(34,139,34,0.07), rgba(46,160,67,0.05)); border: 1px solid rgba(34,139,34,0.25); border-radius: 12px; padding: 20px 24px; margin: 20px 0; }
.refund-highlight h4 { font-size: 13px; font-weight: 800; color: #1a6b1a; margin-bottom: 12px; letter-spacing: 0.05em; }
.refund-point { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; margin-bottom: 8px; color: var(--text-dark); }
.refund-point:last-child { margin-bottom: 0; }
.refund-point strong { color: #1a6b1a; }
.service-sub-divider { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-primary); background: rgba(74,124,199,0.08); padding: 6px 14px; border-radius: 50px; margin: 20px 0 12px; display: inline-block; }
.refund-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 16px; }
.refund-step { background: var(--white); border: 1px solid var(--gray-light); border-radius: 10px; padding: 12px 10px; text-align: center; }
.refund-step .rs-num { font-size: 20px; font-weight: 800; color: var(--gold); line-height: 1; }
.refund-step .rs-title { font-size: 12px; font-weight: 700; color: var(--navy-dark); margin: 4px 0; }
.refund-step .rs-desc { font-size: 11px; color: var(--gray-text); line-height: 1.4; }
.service-detail.legal  .service-num-big { color: rgba(92,53,160,0.12); }
.service-detail.legal  h2 span.accent { color: #5c35a0; }
.service-detail.labor  .service-num-big { color: rgba(230,81,0,0.12); }
.service-detail.labor  h2 span.accent { color: #e65100; }
.si-icon-legal  { background: linear-gradient(135deg, #5c35a0, #7b52c8) !important; }
.si-icon-labor  { background: linear-gradient(135deg, #e65100, #ff8f00) !important; }
.target-tag-legal { background: rgba(92,53,160,0.10); color: #5c35a0; border-color: rgba(92,53,160,0.25); }
.target-tag-labor { background: rgba(230,81,0,0.10); color: #e65100; border-color: rgba(230,81,0,0.25); }

/* ─── 상담 신청 페이지 ─── */
.method-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 40px 0; }
.method-card { border: 2px solid var(--gray-light); border-radius: var(--radius); padding: 28px 20px; text-align: center; cursor: pointer; transition: all 0.25s; background: var(--white); }
.method-card:hover, .method-card.selected { border-color: var(--navy-light); background: rgba(74,124,199,0.05); transform: translateY(-2px); box-shadow: var(--shadow); }
.method-card .m-icon { font-size: 36px; margin-bottom: 12px; }
.method-card h3 { font-size: 16px; font-weight: 700; color: var(--navy-dark); margin-bottom: 6px; }
.method-card p { font-size: 13px; color: var(--gray-text); }
.consult-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; margin-top: 56px; align-items: start; }
.notice-box { margin-top: 32px; padding: 20px 24px; background: rgba(201,168,76,0.08); border-radius: 10px; border-left: 4px solid var(--gold); }
.notice-box h4 { font-size: 14px; font-weight: 700; color: var(--navy-primary); margin-bottom: 8px; }
.notice-box ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.notice-box li { font-size: 13px; color: var(--gray-text); padding-left: 16px; position: relative; }
.notice-box li::before { content: '·'; position: absolute; left: 4px; color: var(--gold); font-weight: 700; }
.faq-section { background: var(--gray-bg); }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(13,27,62,0.06); }
.faq-q { padding: 20px 24px; font-size: 15px; font-weight: 700; color: var(--navy-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; gap: 16px; }
.faq-q:hover { background: var(--gray-bg); }
.faq-q .arrow { font-size: 12px; color: var(--navy-light); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; font-size: 14px; color: var(--gray-text); line-height: 1.8; }
.faq-a-inner { padding: 0 24px 20px; border-top: 1px solid var(--gray-light); padding-top: 16px; }
.faq-item.open .faq-a { max-height: 400px; }
.success-overlay { display: none; position: fixed; inset: 0; background: rgba(13,27,62,0.7); backdrop-filter: blur(4px); z-index: 9000; align-items: center; justify-content: center; }
.success-overlay.show { display: flex; }
.success-box { background: var(--white); border-radius: var(--radius); padding: 56px 48px; text-align: center; max-width: 440px; margin: 24px; animation: popIn 0.4s ease; }
@keyframes popIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-box .s-icon { font-size: 64px; margin-bottom: 16px; }
.success-box h3 { font-size: 24px; font-weight: 800; color: var(--navy-dark); margin-bottom: 12px; }
.success-box p { font-size: 15px; color: var(--gray-text); line-height: 1.7; margin-bottom: 28px; }

/* ─── 인사이트(블로그) 목록/상세 ─── */
.sns-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.sns-channel-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s; display: block; }
.sns-channel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.sns-ch-header { padding: 32px 28px; color: white; }
.sns-ch-header .ch-icon { display: flex; margin-bottom: 12px; }
.sns-ch-header h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.sns-ch-header .handle { font-size: 13px; opacity: 0.75; font-family: monospace; margin-bottom: 12px; }
.sns-ch-header p { font-size: 14px; opacity: 0.85; line-height: 1.6; }
.sns-insta .sns-ch-header { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.sns-youtube .sns-ch-header { background: linear-gradient(135deg, #c4302b, #ff0000); }
.sns-threads .sns-ch-header { background: linear-gradient(135deg, var(--navy-dark), #2a2a3e); }
.sns-ch-body { padding: 20px 28px; background: var(--white); }
.sns-ch-topics { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.topic-tag { font-size: 12px; padding: 4px 12px; border-radius: 50px; background: var(--gray-bg); color: var(--navy-primary); font-weight: 600; }
.sns-ch-link { display: flex; align-items: center; justify-content: space-between; font-size: 14px; font-weight: 700; color: var(--navy-primary); padding: 10px 0; border-top: 1px solid var(--gray-light); }

.insight-filter { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn { padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; border: 2px solid var(--gray-light); background: var(--white); color: var(--gray-text); cursor: pointer; transition: all 0.2s; font-family: inherit; text-decoration:none; display:inline-block; }
.filter-btn.active, .filter-btn:hover { border-color: var(--navy-primary); background: var(--navy-primary); color: white; }
.content-section { background: var(--gray-bg); }
.content-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.content-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s; }
.content-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.content-thumb { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 48px; background: linear-gradient(135deg, #e8f4fd, #d0e8f7); }
.content-body { padding: 20px; }
.content-meta { display: flex; gap: 8px; align-items: center; margin-bottom: 10px; }
.content-cat { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 50px; background: rgba(74,124,199,0.12); color: var(--navy-primary); }
.content-date { font-size: 12px; color: var(--gray-text); }
.content-card h3 { font-size: 15px; font-weight: 700; color: var(--navy-dark); line-height: 1.5; margin-bottom: 8px; }
.content-card h3 a { color: inherit; }
.content-card p { font-size: 13px; color: var(--gray-text); line-height: 1.6; margin-bottom: 12px; }
.content-platform { font-size: 12px; color: var(--gray-text); display: flex; align-items: center; gap: 4px; }

.single-post-wrap { max-width: 760px; margin: 0 auto; }
.single-post-meta { display:flex; gap:10px; align-items:center; margin-bottom:16px; }
.single-post-title { font-size: clamp(24px,4vw,36px); font-weight:800; color:var(--navy-dark); line-height:1.4; margin-bottom:24px; }
.single-post-content { font-size: 16px; line-height: 1.9; color: var(--text-dark); }
.single-post-content h3 { font-size:20px; font-weight:800; color:var(--navy-dark); margin:32px 0 12px; }
.single-post-content p { margin-bottom: 16px; }
.single-post-content blockquote { background: var(--gray-bg); border-left: 4px solid var(--navy-light); padding: 20px 24px; border-radius: 8px; margin: 24px 0; }
.single-post-disclaimer { font-size: 13px; color: var(--gray-text); font-style: italic; margin-top: 32px; padding-top:20px; border-top:1px solid var(--gray-light); }
.single-post-cta { text-align:center; margin: 32px 0; }

.newsletter-section { background: var(--white); }
.newsletter-box { background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary)); border-radius: var(--radius); padding: 56px; text-align: center; max-width: 640px; margin: 0 auto; }
.newsletter-box h2 { font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.newsletter-box p { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 32px; line-height: 1.7; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input { flex: 1; padding: 14px 18px; border-radius: 50px; border: 2px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); color: white; font-size: 14px; font-family: inherit; outline: none; transition: border-color 0.2s; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button { padding: 14px 28px; border-radius: 50px; border: none; background: var(--gold); color: var(--navy-dark); font-size: 14px; font-weight: 700; font-family: inherit; cursor: pointer; white-space: nowrap; transition: all 0.25s; }
.newsletter-form button:hover { background: var(--gold-light); }
.newsletter-note { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 12px; }

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

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .partner-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .quad-wrap { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 16px; }
  .quad-finance  { grid-column:1; grid-row:1; }
  .quad-tax      { grid-column:2; grid-row:1; }
  .quad-legal    { grid-column:1; grid-row:2; }
  .quad-labor    { grid-column:2; grid-row:2; }
  .quad-center, .quad-connector { display: none; }
  .profile-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .sns-channels { grid-template-columns: 1fr; }
  .company-intro { grid-template-columns: 1fr; }
  .profile-detail-wrap { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .consult-wrap { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .sns-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: rgba(13,27,62,0.98); backdrop-filter: blur(12px); padding: 24px; gap: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
  .hero-stats { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}
@media (max-width: 640px) { .refund-process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
  .quad-wrap { grid-template-columns: 1fr; }
  .quad-finance, .quad-tax, .quad-legal, .quad-labor { grid-column:1; }
  .quad-ax-grid { grid-template-columns: 1fr; }
  .company-values { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .consult-form, .contact-form { padding: 28px 20px; }
  .content-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-box { padding: 36px 24px; }
}
