/* ================================================================
   온누리세무회계 — 완성 스타일시트
   ================================================================ */

/* ── 디자인 토큰 ──────────────────────────────────────────────── */
:root {
  --navy:        #0e2040;
  --navy-mid:    #163464;
  --navy-light:  #1e4080;
  --gold:        #c8992a;
  --gold-light:  #e8bb60;
  --gold-pale:   #fdf3dc;
  --kakao-bg:    #FEE500;
  --kakao-fg:    #3C1E1E;
  --white:       #ffffff;
  --off-white:   #f8f7f4;
  --gray-50:     #fafafa;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-400:    #9ca3af;
  --gray-600:    #6b7280;
  --gray-800:    #1f2937;
  --text:        #1a1a2e;
  --text-soft:   #5a6473;
  --sh-sm:       0 2px 10px rgba(14,32,64,.08);
  --sh-md:       0 8px 32px rgba(14,32,64,.13);
  --sh-lg:       0 20px 64px rgba(14,32,64,.2);
  --r:           12px;
  --r-lg:        20px;
  --ease:        all .3s cubic-bezier(.4,0,.2,1);
}

/* ── 리셋 & 기본 ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

a { color: inherit; text-decoration: none; transition: var(--ease); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* 공통 섹션 헤더 */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 16px;
}
.section-desc {
  font-size: .97rem;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Eyebrow 레이블 */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow i { font-size: .5rem; }

/* ================================================================
   LOADING SCREEN
   ================================================================ */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .65s ease, visibility .65s ease;
}
#loading-screen.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  animation: ldFadeIn .75s ease forwards;
}
@keyframes ldFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.loader-emblem {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: .8;
}

.loader-logo { margin-bottom: 28px; }

.loader-main {
  display: block;
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: .05em;
}
.loader-sub {
  display: block;
  font-size: clamp(.7rem, 2vw, .9rem);
  color: var(--gold-light);
  letter-spacing: .2em;
  margin-top: 6px;
}

.loader-bar-wrap {
  width: 220px;
  height: 3px;
  background: rgba(255,255,255,.12);
  border-radius: 2px;
  margin: 0 auto 22px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: ldBar 1.8s ease forwards .25s;
}
@keyframes ldBar { to { width: 100%; } }

.loader-tagline {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .12em;
}

/* ================================================================
   HEADER
   ================================================================ */
#site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  transition: background .3s ease, box-shadow .3s ease;
}
#site-header.scrolled {
  background: rgba(14,32,64,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.22);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.logo-main {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.logo-sub {
  font-size: .62rem;
  color: var(--gold-light);
  letter-spacing: .06em;
}

.nav-list {
  display: flex;
  gap: 2px;
  margin-left: auto;
}
.nav-list a {
  display: block;
  padding: 8px 13px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  border-radius: 7px;
}
.nav-list a:hover,
.nav-list a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-kakao-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--kakao-bg);
  color: var(--kakao-fg);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
}
.header-kakao-btn:hover { background: #f5dd00; transform: translateY(-1px); }

.header-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
}
.header-call-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}

/* ================================================================
   HERO
   ================================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(140deg, #091830 0%, var(--navy) 35%, #143070 100%);
  overflow: hidden;
}

/* 배경 패턴 */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm33.414-6l5.95-5.95L45.95.636 40 6.586 34.05.636 32.636 2.05 38.586 8l-5.95 5.95 1.414 1.414L40 9.414l5.95 5.95 1.414-1.414L41.414 8zM40 48c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zM9.414 40l5.95-5.95-1.414-1.414L8 38.586l-5.95-5.95L.636 34.05 6.586 40l-5.95 5.95 1.414 1.414L8 41.414l5.95 5.95 1.414-1.414L9.414 40z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* 빛번짐 효과 */
.hero-glow {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200,153,42,.14) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 148px 28px 108px;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border: 1px solid rgba(200,153,42,.45);
  border-radius: 50px;
  background: rgba(200,153,42,.07);
  font-size: .76rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .08em;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold-light);
  display: block;
}

.hero-desc {
  font-size: clamp(.95rem, 1.8vw, 1.08rem);
  color: rgba(255,255,255,.78);
  line-height: 1.85;
  margin-bottom: 44px;
}
.hero-desc strong { color: var(--white); }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* 공용 버튼 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: .98rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
}
.btn-kakao {
  background: var(--kakao-bg);
  color: var(--kakao-fg);
}
.btn-kakao:hover { background: #f5dd00; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(254,229,0,.4); }

.btn-call {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
}
.btn-call:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 11px 22px;
  font-size: .9rem;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* 신뢰 배너 */
.hero-trust-bar {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 18px 26px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--r);
  backdrop-filter: blur(8px);
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 18px;
  font-size: .84rem;
  color: rgba(255,255,255,.82);
}
.trust-item i { color: var(--gold-light); font-size: .85rem; }
.trust-sep {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.18);
}

/* 스크롤 힌트 */
.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: rgba(255,255,255,.45);
  animation: scrollBounce 2s infinite;
  z-index: 1;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ================================================================
   INTRO
   ================================================================ */
.intro-section {
  padding: 108px 0;
  background: var(--white);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: center;
}

.intro-text .eyebrow { margin-bottom: 12px; }
.intro-text h2 {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 22px;
}
.intro-lead {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 16px;
  font-weight: 500;
}
.intro-lead strong { color: var(--navy); }
.intro-body {
  font-size: .95rem;
  color: var(--text-soft);
  line-height: 1.9;
  margin-bottom: 14px;
}
.intro-body strong { color: var(--navy); }

.cred-list {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--gray-100);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r) var(--r) 0;
}
.cred-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: .9rem;
  flex-shrink: 0;
}
.cred-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cred-item strong {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
}
.cred-item span {
  font-size: .8rem;
  color: var(--text-soft);
}

/* 프로필 카드 */
.profile-card {
  position: relative;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--r-lg);
  padding: 52px 36px 44px;
  box-shadow: var(--sh-lg);
  overflow: hidden;
  text-align: center;
}
.profile-deco-ring {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(200,153,42,.15);
  pointer-events: none;
}
.profile-deco-ring::after {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid rgba(200,153,42,.08);
}

.profile-avatar-wrap { margin-bottom: 20px; }
.profile-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(200,153,42,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--gold-light);
  margin: 0 auto;
}

.profile-name {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .12em;
  margin-bottom: 6px;
}
.profile-title {
  font-size: .76rem;
  color: var(--gold-light);
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.profile-badge-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 28px;
}
.pbadge {
  padding: 4px 12px;
  border: 1px solid rgba(200,153,42,.4);
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(200,153,42,.08);
  letter-spacing: .05em;
}

.profile-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pcontact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 9px;
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  text-align: left;
  transition: var(--ease);
}
.pcontact:not(.no-link):hover {
  background: rgba(200,153,42,.14);
  border-color: rgba(200,153,42,.3);
  color: var(--white);
}
.pcontact.no-link { cursor: default; }
.pcontact i { color: var(--gold-light); font-size: .8rem; flex-shrink: 0; }
.pcontact span { font-size: .8rem; line-height: 1.45; }

/* ================================================================
   SERVICES
   ================================================================ */
.services-section {
  padding: 108px 0;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 30px 22px;
  box-shadow: var(--sh-sm);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: rgba(200,153,42,.3);
}
.svc-icon {
  width: 50px;
  height: 50px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.15rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.svc-card h3 {
  font-family: 'Noto Serif KR', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.svc-card p {
  font-size: .85rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 16px;
  flex: 1;
}
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: auto;
  border-top: 1px solid var(--gray-100);
  padding-top: 14px;
}
.svc-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .81rem;
  color: var(--gray-600);
}
.svc-list li i { color: var(--gold); font-size: .65rem; flex-shrink: 0; }

/* ================================================================
   KAKAO CTA
   ================================================================ */
.kakao-section {
  padding: 84px 0;
  background: linear-gradient(110deg, #f9e730 0%, var(--kakao-bg) 55%, #f9e730 100%);
}
.kakao-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.kakao-eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(60,30,30,.65);
  margin-bottom: 10px;
}
.kakao-text h2 {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--kakao-fg);
  line-height: 1.3;
  margin-bottom: 12px;
}
.kakao-text p {
  font-size: .95rem;
  color: rgba(60,30,30,.72);
  line-height: 1.75;
}
.kakao-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.kakao-btn-main {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 20px 38px;
  background: var(--kakao-fg);
  color: var(--kakao-bg);
  border-radius: var(--r);
  font-size: .95rem;
  font-weight: 700;
  transition: var(--ease);
  text-align: center;
  line-height: 1.3;
  cursor: pointer;
}
.kakao-btn-main i { font-size: 1.3rem; }
.kbtn-title { font-size: .9rem; font-weight: 700; }
.kbtn-sub   { font-size: .74rem; font-weight: 400; opacity: .75; }
.kakao-btn-main:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(60,30,30,.22); }

.kakao-btn-call {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 20px 38px;
  background: var(--white);
  color: var(--navy);
  border-radius: var(--r);
  font-size: .95rem;
  font-weight: 700;
  transition: var(--ease);
  text-align: center;
  line-height: 1.3;
  cursor: pointer;
}
.kakao-btn-call i { font-size: 1.2rem; }
.kakao-btn-call:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(14,32,64,.18); }

/* ================================================================
   TAX CONTENT
   ================================================================ */
.tax-section {
  padding: 108px 0;
  background: var(--white);
}
.tax-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.tax-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--ease);
}
.tax-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
  border-color: rgba(200,153,42,.28);
}
.tax-icon {
  padding: 26px 26px 0;
  font-size: 1.55rem;
  color: var(--gold);
}
.tax-body { padding: 16px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.tax-body h3 {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 9px;
  line-height: 1.4;
}
.tax-body p {
  font-size: .85rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 15px;
}

/* 캘린더 타임라인 */
.tax-timeline {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: auto;
}
.tax-timeline li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .83rem;
  color: var(--gray-800);
}
.mth {
  flex-shrink: 0;
  display: inline-block;
  min-width: 34px;
  text-align: center;
  font-weight: 700;
  font-size: .72rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 5px;
  padding: 3px 5px;
}

/* 체크 리스트 */
.tax-checklist {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: auto;
}
.tax-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .83rem;
  color: var(--gray-800);
  line-height: 1.55;
}
.tax-checklist li i { color: var(--gold); font-size: .8rem; flex-shrink: 0; margin-top: 3px; }

/* ================================================================
   REVIEWS
   ================================================================ */
.reviews-section {
  padding: 108px 0;
  background: var(--navy);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r);
  padding: 28px;
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(200,153,42,.28);
  transform: translateY(-4px);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}
.rv-avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif KR', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.rv-meta { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.rv-meta strong { font-size: .88rem; font-weight: 700; color: var(--white); }
.rv-meta span   { font-size: .73rem; color: rgba(255,255,255,.45); }
.rv-stars { font-size: .85rem; color: var(--gold); letter-spacing: .05em; flex-shrink: 0; }

.rv-text {
  font-size: .86rem;
  color: rgba(255,255,255,.76);
  line-height: 1.82;
  margin-bottom: 16px;
  flex: 1;
}
.rv-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  background: rgba(200,153,42,.12);
  border: 1px solid rgba(200,153,42,.28);
  border-radius: 20px;
  font-size: .73rem;
  font-weight: 600;
  color: var(--gold-light);
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-section {
  padding: 108px 0;
  background: var(--off-white);
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item.open {
  border-color: rgba(200,153,42,.38);
  box-shadow: var(--sh-sm);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: .96rem;
  font-weight: 600;
  color: var(--navy);
  transition: color .2s ease;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  font-size: .78rem;
  color: var(--gold);
  transition: transform .28s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p {
  padding: 16px 24px 22px;
  border-top: 1px solid var(--gray-200);
  font-size: .9rem;
  color: var(--text-soft);
  line-height: 1.82;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-section {
  padding: 108px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .eyebrow { margin-bottom: 12px; }
.contact-info h2 {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 38px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 34px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ci-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .88rem;
}
.contact-list div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-list strong {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: .09em;
  text-transform: uppercase;
}
.contact-list span,
.contact-list a {
  font-size: .93rem;
  color: var(--text);
  line-height: 1.65;
}
.contact-list a:hover { color: var(--gold); }

.contact-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 440px;
  box-shadow: var(--sh-md);
}
.contact-map iframe { border: none; }

/* ================================================================
   FINAL CTA
   ================================================================ */
.final-cta {
  padding: 108px 0;
  background: linear-gradient(140deg, #091830 0%, var(--navy) 50%, #143070 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(200,153,42,.09) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta-inner h2 {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
}
.final-cta-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,.58);
  line-height: 1.75;
  margin-bottom: 44px;
}

.final-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.final-kakao-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 36px;
  background: var(--kakao-bg);
  color: var(--kakao-fg);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--ease);
}
.final-kakao-btn:hover { background: #f5dd00; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(254,229,0,.4); }

.final-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 36px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--ease);
}
.final-call-btn:hover { background: rgba(255,255,255,.1); border-color: var(--white); transform: translateY(-2px); }

/* ================================================================
   FOOTER
   ================================================================ */
#site-footer {
  background: var(--gray-800);
  color: rgba(255,255,255,.65);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-logo {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.foot-creds {
  font-size: .78rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.foot-creds strong { color: var(--gold-light); }
.foot-addr, .foot-contact, .foot-email {
  font-size: .8rem;
  line-height: 1.9;
  color: rgba(255,255,255,.55);
}
.foot-contact a, .foot-email a {
  color: rgba(255,255,255,.6);
  transition: var(--ease);
}
.foot-contact a:hover, .foot-email a:hover { color: var(--gold-light); }

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.footer-nav a {
  font-size: .84rem;
  color: rgba(255,255,255,.48);
  transition: var(--ease);
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  font-size: .76rem;
  color: rgba(255,255,255,.28);
}

/* ================================================================
   FLOATING BUTTONS
   ================================================================ */
.floating-wrap {
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 9px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.floating-wrap.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.float-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 13px;
  border-radius: 13px;
  font-size: .68rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
}
.float-kakao {
  background: var(--kakao-bg);
  color: var(--kakao-fg);
  font-size: 1.2rem;
}
.float-kakao:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(254,229,0,.45); }
.float-call {
  background: var(--navy);
  color: var(--white);
  font-size: 1.1rem;
}
.float-call:hover { transform: translateY(-3px); background: var(--navy-mid); }
.float-top {
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-size: .85rem;
  padding: 10px 13px;
  border-radius: 10px;
}
.float-top:hover { transform: translateY(-3px); background: var(--white); }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: .1s; }
.rv-d2 { transition-delay: .2s; }
.rv-d3 { transition-delay: .3s; }
.rv-d4 { transition-delay: .4s; }

/* ================================================================
   RESPONSIVE — 태블릿 (≤1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .tax-grid      { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
  .intro-grid    { grid-template-columns: 1fr; gap: 52px; }
  .profile-card  { max-width: 440px; margin: 0 auto; }
  .contact-grid  { grid-template-columns: 1fr; gap: 44px; }
  .contact-map   { height: 320px; }
  .hero-content  { padding: 120px 28px 90px; }
  .footer-inner  { grid-template-columns: 1fr; }
  .footer-nav ul { align-items: flex-start; }
}

/* ================================================================
   RESPONSIVE — 모바일 (≤768px)
   ================================================================ */
@media (max-width: 768px) {
  #main-nav { display: none; }
  #main-nav.open {
    display: block;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(14,32,64,.98);
    backdrop-filter: blur(14px);
    padding: 16px 0 24px;
    box-shadow: var(--sh-lg);
    z-index: 899;
  }
  #main-nav.open .nav-list { flex-direction: column; padding: 0 24px; gap: 4px; }
  #main-nav.open .nav-list a { padding: 13px 16px; font-size: 1rem; }

  .nav-toggle { display: flex; }
  .header-actions { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .tax-grid      { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }

  .hero-trust-bar { justify-content: center; }
  .trust-item { padding: 4px 10px; font-size: .78rem; }
  .trust-sep { display: none; }

  .kakao-inner { flex-direction: column; text-align: center; }
  .kakao-btns  { justify-content: center; width: 100%; }
  .kakao-btn-main, .kakao-btn-call { flex: 1; min-width: 160px; }

  .final-btns { flex-direction: column; align-items: center; }
  .final-kakao-btn, .final-call-btn { width: 100%; max-width: 340px; justify-content: center; }

  .contact-btns { flex-direction: column; }
  .contact-btns .btn { width: 100%; justify-content: center; }
}

/* ================================================================
   RESPONSIVE — 소형 모바일 (≤480px)
   ================================================================ */
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .floating-wrap { bottom: 18px; right: 14px; }
  .container { padding: 0 18px; }
  .intro-section, .services-section, .tax-section,
  .reviews-section, .faq-section, .contact-section,
  .final-cta { padding: 72px 0; }
}
