/* ============================================================
   지산세무회계 | 세무사 박준영  ·  GREEN PREMIUM THEME
   v2.0 – 최종 정비 (2026-04)
   Breakpoints: 1280(max-w) / 1100(lg) / 768(md) / 480(sm)
============================================================ */

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

:root {
  /* 그린 팔레트 */
  --g900: #051F14;
  --g800: #0D3B2E;
  --g750: #0E4232;
  --g700: #0F4D3A;
  --g600: #1A6B4A;
  --g500: #22A06B;
  --g400: #2ECC8A;
  --g300: #5EE0A4;
  --g200: #A8F0C6;
  --g100: #D6F9E8;
  --g050: #F0FBF5;

  /* 카카오 */
  --kakao-y: #FEE500;
  --kakao-b: #3A1D1D;

  /* 뉴트럴 */
  --white:    #FFFFFF;
  --gray-50:  #F4F7F5;
  --gray-100: #E8EFE9;
  --gray-200: #D1DFDA;
  --gray-300: #B8C9BE;
  --gray-500: #7A9183;
  --text-dark: #0A1F15;
  --text-body: #2D4237;
  --text-muted: #637D70;

  /* 폰트 */
  --fs: 'Noto Serif KR', Georgia, serif;
  --fn: 'Noto Sans KR', -apple-system, sans-serif;
  --fd: 'Playfair Display', Georgia, serif;

  /* 그림자 */
  --sh-xs: 0 1px 4px rgba(13,59,46,.08);
  --sh-sm: 0 2px 10px rgba(13,59,46,.10);
  --sh-md: 0 8px 32px rgba(13,59,46,.14);
  --sh-lg: 0 20px 60px rgba(13,59,46,.20);

  /* 반경 */
  --r-sm: 8px;  --r-md: 16px;  --r-lg: 24px;  --r-xl: 40px;
  --ease: .35s cubic-bezier(.4,0,.2,1);
}

/* ── 베이스 ─────────────────────────────────────────────── */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--fn); color: var(--text-dark);
  background: var(--white); overflow-x: hidden; line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; }
address { font-style: normal; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--g800); }
::-webkit-scrollbar-thumb { background: var(--g400); border-radius: 3px; }

/* ── 포커스 스타일 ───────────────────────────────────────── */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--g400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   인트로 오버레이
============================================================ */
.intro-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--g900);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .9s ease, visibility .9s ease;
}
.intro-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.intro-bg-anim { position: absolute; inset: 0; overflow: hidden; }
.intro-bg-anim::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,204,138,.12) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: introPulse 3s ease-in-out infinite;
}
@keyframes introPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity:.5; }
  50%      { transform: translate(-50%,-50%) scale(1.3); opacity:1; }
}

.intro-content { position: relative; z-index: 1; text-align: center; padding: 0 1.5rem; }

.intro-emblem {
  position: relative; width: 90px; height: 90px;
  margin: 0 auto 1.8rem; display: flex; align-items: center; justify-content: center;
}
.intro-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(46,204,138,.4);
  animation: ringPulse 2.5s ease-out infinite;
}
.intro-ring-1 { width: 100%; height: 100%; animation-delay: 0s; }
.intro-ring-2 { width: 78%; height: 78%; animation-delay: .3s; border-color: rgba(46,204,138,.6); }
.intro-ring-3 { width: 56%; height: 56%; animation-delay: .6s; border-color: rgba(46,204,138,.9); }
@keyframes ringPulse {
  0%   { transform: scale(.8); opacity:0; }
  50%  { opacity:1; }
  100% { transform: scale(1.15); opacity:0; }
}
.intro-center-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--g400), var(--g500));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--white);
  box-shadow: 0 0 28px rgba(46,204,138,.5);
  animation: fadeUp .8s ease both;
}

.intro-logo { display: flex; flex-direction: column; align-items: center; gap: .3rem; animation: fadeUp .8s .2s ease both; }
.intro-logo-kr { font-family: var(--fs); font-size: clamp(1.6rem,5vw,2.8rem); font-weight: 700; color: var(--white); letter-spacing: .12em; }
.intro-logo-en { font-family: var(--fd); font-size: clamp(.6rem,1.5vw,.82rem); color: var(--g300); letter-spacing: .4em; }
.intro-divider { width: 70px; height: 2px; background: linear-gradient(90deg,transparent,var(--g400),transparent); margin: 1.1rem auto; animation: fadeUp .8s .35s ease both; }
.intro-sub { font-family: var(--fs); font-size: .95rem; color: var(--g200); letter-spacing: .08em; display: flex; align-items: center; gap: .4rem; justify-content: center; animation: fadeUp .8s .5s ease both; }
.intro-loading { display: flex; gap: .4rem; justify-content: center; margin-top: 2rem; animation: fadeUp .8s .65s ease both; }
.intro-loading span { width: 7px; height: 7px; border-radius: 50%; background: var(--g400); animation: dotBounce 1.3s infinite ease-in-out; }
.intro-loading span:nth-child(2) { animation-delay:.15s; }
.intro-loading span:nth-child(3) { animation-delay:.3s; }
.intro-loading span:nth-child(4) { animation-delay:.45s; }
.intro-loading span:nth-child(5) { animation-delay:.6s; }

@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
@keyframes dotBounce { 0%,80%,100% { transform:scale(.55); opacity:.3; } 40% { transform:scale(1.1); opacity:1; } }

/* ============================================================
   헤더 / 네비
============================================================ */
.main-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: background var(--ease), box-shadow var(--ease), padding var(--ease);
}
.main-header.scrolled {
  background: rgba(5,31,20,.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
  padding: .6rem 0;
}

.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}

.nav-logo { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.logo-icon-wrap {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--g400), var(--g500));
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: var(--white);
  box-shadow: 0 3px 10px rgba(46,204,138,.35);
}
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-main { font-family: var(--fs); font-size: 1.15rem; font-weight: 700; color: var(--white); letter-spacing: .06em; line-height: 1.2; }
.logo-sub  { font-family: var(--fd); font-size: .48rem; color: var(--g300); letter-spacing: .28em; }

.nav-menu { display: flex; align-items: center; gap: .1rem; margin-left: auto; }
.nav-link {
  font-size: .83rem; font-weight: 500; color: rgba(255,255,255,.75);
  padding: .42rem .8rem; border-radius: var(--r-sm);
  transition: color var(--ease), background var(--ease); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(46,204,138,.12); }

.nav-kakao-btn {
  display: flex; align-items: center; gap: 5px;
  background: var(--kakao-y); color: var(--kakao-b);
  font-size: .8rem; font-weight: 800;
  padding: .48rem 1rem; border-radius: var(--r-xl);
  transition: transform var(--ease), box-shadow var(--ease);
  white-space: nowrap; margin-left: .4rem; flex-shrink: 0;
}
.nav-kakao-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 18px rgba(254,229,0,.4); }

/* 햄버거 */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; padding: .4rem .5rem; margin-left: auto;
  border-radius: var(--r-sm);
  transition: background var(--ease);
}
.nav-toggle:hover { background: rgba(46,204,138,.1); }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--ease); transform-origin: center; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 모바일 메뉴 오버레이 */
.nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 998; opacity: 0; transition: opacity var(--ease);
}
.nav-overlay.open { display: block; opacity: 1; }

/* ============================================================
   히어로
============================================================ */
.hero-section {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 3rem;
  background: linear-gradient(140deg, var(--g900) 0%, #0A2D20 35%, #0F3D2B 65%, #081A10 100%);
  overflow: hidden; padding: 9rem 4rem 5rem;
}

.hero-bg-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 60%, rgba(46,204,138,.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(34,160,107,.06) 0%, transparent 40%),
    linear-gradient(rgba(46,204,138,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,204,138,.035) 1px, transparent 1px);
  background-size: auto, auto, 65px 65px, 65px 65px;
}
.hero-bg-text {
  position: absolute; right: -2%; top: 50%; transform: translateY(-50%);
  font-family: var(--fd); font-size: clamp(8rem,18vw,20rem);
  font-weight: 900; color: rgba(46,204,138,.025);
  user-select: none; pointer-events: none; line-height: 1; letter-spacing: -.03em;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%; background: var(--g400);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform:translateY(100vh) scale(0); opacity:0; }
  10%  { opacity:.22; }
  90%  { opacity:.1; }
  100% { transform:translateY(-10vh) scale(1); opacity:0; }
}

/* 히어로 콘텐츠 */
.hero-inner { position: relative; z-index: 2; flex: 1; min-width: 0; max-width: 660px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(46,204,138,.12); border: 1px solid rgba(46,204,138,.32);
  color: var(--g300); font-size: .78rem; font-weight: 600;
  padding: .4rem .95rem; border-radius: var(--r-xl);
  margin-bottom: 1.5rem; letter-spacing: .07em; backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--g400);
  box-shadow: 0 0 8px var(--g400); flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.75)} }

.hero-title {
  font-family: var(--fs);
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 900; line-height: 1.15; margin-bottom: 1rem; color: var(--white);
}
.title-line1 { display: block; color: rgba(255,255,255,.88); }
.title-line2 {
  display: block;
  background: linear-gradient(90deg, var(--g300) 0%, var(--g400) 55%, var(--g200) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-name-block {
  display: flex; align-items: center; gap: .85rem; flex-wrap: wrap; margin-bottom: 1.3rem;
}
.hero-firm { font-family: var(--fs); font-size: clamp(.88rem,1.8vw,1.1rem); color: var(--g300); font-weight: 600; letter-spacing: .07em; }
.hero-divider-v { width: 1px; height: 16px; background: rgba(46,204,138,.4); flex-shrink: 0; }
.hero-name { font-family: var(--fs); font-size: clamp(.88rem,1.8vw,1.1rem); color: rgba(255,255,255,.85); }
.hero-name strong { color: var(--white); font-weight: 700; }

.hero-desc {
  font-size: clamp(.86rem,1.6vw,.98rem);
  color: rgba(255,255,255,.65); margin-bottom: 2rem; line-height: 2;
}
.hero-desc strong { color: var(--g300); font-weight: 600; }
.hero-desc-accent {
  display: block; margin-top: .6rem;
  font-family: var(--fs); font-size: 1.02em;
  color: var(--g200); font-weight: 600; letter-spacing: .025em;
}

.hero-cta-group { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.btn-kakao-main {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--kakao-y); color: var(--kakao-b);
  font-weight: 800; font-size: .95rem; padding: .9rem 1.8rem;
  border-radius: var(--r-xl); white-space: nowrap;
  box-shadow: 0 4px 18px rgba(254,229,0,.28);
  transition: transform var(--ease), box-shadow var(--ease);
}
.btn-kakao-main:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 36px rgba(254,229,0,.48); }

.btn-call-main {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(46,204,138,.1); color: var(--g200);
  font-weight: 600; font-size: .95rem; padding: .9rem 1.8rem;
  border-radius: var(--r-xl); border: 1.5px solid rgba(46,204,138,.38);
  white-space: nowrap; transition: all var(--ease);
}
.btn-call-main:hover { background: rgba(46,204,138,.2); border-color: var(--g400); color: var(--white); transform: translateY(-2px); }

.hero-stats { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: .15rem; }
.stat-num  { font-family: var(--fd); font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 700; color: var(--g400); line-height: 1; }
.stat-plus { font-family: var(--fd); font-size: 1.1rem; color: var(--g300); line-height: 1.2; }
.stat-label{ font-size: .72rem; color: rgba(255,255,255,.48); letter-spacing: .06em; white-space: nowrap; }
.stat-divider { width: 1px; height: 44px; background: rgba(46,204,138,.2); }

/* 히어로 오른쪽 글래스 카드 */
.hero-right-deco {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 1.1rem;
  flex-shrink: 0; width: 250px;
}
.hero-glass-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(46,204,138,.2);
  border-radius: var(--r-lg); padding: 1.5rem 1.6rem;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.07);
  transition: border-color var(--ease), transform var(--ease);
}
.hero-glass-card:hover { border-color: rgba(46,204,138,.45); transform: translateY(-3px); }

.glass-card-header {
  display: flex; align-items: center; gap: .55rem;
  color: var(--g300); font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.glass-card-header i { color: var(--g400); }
.gs-num { display: block; font-family: var(--fd); font-size: 2.6rem; font-weight: 900; color: var(--g400); line-height: 1; }
.gs-label{ font-size: .75rem; color: rgba(255,255,255,.5); margin-top: .15rem; display: block; }
.glass-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin: .9rem 0 1.1rem; }
.gtag {
  font-size: .68rem; font-weight: 600; padding: .18rem .55rem; border-radius: var(--r-xl);
  background: rgba(46,204,138,.1); border: 1px solid rgba(46,204,138,.22); color: var(--g300);
}
.glass-card-footer {
  display: flex; align-items: center; gap: .5rem; font-size: .76rem; color: rgba(255,255,255,.48);
  padding-top: .85rem; border-top: 1px solid rgba(255,255,255,.06);
}
.glass-card-footer i { color: var(--g400); }

.deco-float-badge {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(46,204,138,.16);
  border-radius: var(--r-md); padding: .7rem 1rem;
  backdrop-filter: blur(10px); transition: all var(--ease);
}
.deco-float-badge:hover { transform: translateX(-5px); background: rgba(46,204,138,.08); }
.deco-float-badge i { font-size: 1.25rem; color: var(--g400); flex-shrink: 0; }
.deco-float-badge div { display: flex; flex-direction: column; gap: .08rem; }
.deco-float-badge strong { font-size: .88rem; color: var(--white); }
.deco-float-badge span  { font-size: .7rem; color: rgba(255,255,255,.48); }

/* 스크롤 힌트 */
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .45rem;
  color: rgba(255,255,255,.32); font-size: .62rem; letter-spacing: .25em;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, transparent 0%, rgba(46,204,138,.55) 100%);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0%   { transform:scaleY(0); transform-origin:top; opacity:0; }
  50%  { transform:scaleY(1); opacity:1; }
  100% { transform:scaleY(0); transform-origin:bottom; opacity:0; }
}

/* ============================================================
   브랜드 스트립
============================================================ */
.brand-strip {
  background: linear-gradient(90deg, var(--g600) 0%, var(--g500) 50%, var(--g600) 100%);
  overflow: hidden; padding: .85rem 0;
}
.strip-track { overflow: hidden; }
.strip-inner {
  display: flex; gap: 2rem; align-items: center; white-space: nowrap;
  width: max-content; animation: stripScroll 22s linear infinite;
}
.strip-inner span {
  font-family: var(--fs); font-size: .8rem; font-weight: 700;
  color: rgba(255,255,255,.92); letter-spacing: .06em;
  display: flex; align-items: center; gap: .38rem; flex-shrink: 0;
}
.strip-sep { color: rgba(255,255,255,.38) !important; font-size: .5rem !important; }
@keyframes stripScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============================================================
   공통 섹션
============================================================ */
.section-container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-tag {
  display: inline-block; font-family: var(--fd); font-size: .67rem; font-weight: 700;
  letter-spacing: .35em; color: var(--g500);
  background: rgba(46,204,138,.08); border: 1px solid rgba(46,204,138,.2);
  padding: .28rem .82rem; border-radius: var(--r-xl); margin-bottom: .85rem;
}
.section-tag.light { color: var(--g300); background: rgba(46,204,138,.1); border-color: rgba(46,204,138,.28); }

.section-title {
  font-family: var(--fs); font-size: clamp(1.75rem,3.8vw,2.6rem);
  font-weight: 700; color: var(--g800); line-height: 1.28; margin-bottom: .75rem;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--g600), var(--g400));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-title.light { color: var(--white); }
.section-desc { font-size: .95rem; color: var(--gray-500); max-width: 500px; margin: 0 auto; line-height: 1.75; }
.section-desc.light { color: rgba(255,255,255,.58); }

/* ============================================================
   소개 섹션
============================================================ */
.about-section { padding: 6rem 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 340px 1fr; gap: 4.5rem; align-items: start; }

.profile-card {
  background: var(--g800); border-radius: var(--r-lg); padding: 2.2rem 1.8rem;
  text-align: center; position: relative; box-shadow: var(--sh-lg); overflow: hidden;
}
.profile-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--g400), var(--g300), var(--g400));
}

/* 프로필 카드 상단 – 아바타 + 배지 세로 정렬 */
.profile-card-top {
  display: flex; flex-direction: column; align-items: center;
  gap: .6rem; margin-bottom: 1.4rem;
  position: relative;
}
.avatar-wrap {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 108px; height: 108px;
}
.avatar-circle {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, var(--g500), var(--g400));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; color: var(--white);
  box-shadow: 0 0 0 4px rgba(46,204,138,.18), 0 0 0 8px rgba(46,204,138,.07);
  position: relative; z-index: 1; flex-shrink: 0;
}
.avatar-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,204,138,.18) 0%, transparent 70%);
  animation: glowPulse 2.5s ease-in-out infinite; pointer-events: none;
}
@keyframes glowPulse { 0%,100%{opacity:.5;transform:translate(-50%,-50%) scale(1)} 50%{opacity:1;transform:translate(-50%,-50%) scale(1.1)} }
/* 배지 – 아바타 아래 독립 배치 (겹침 없음) */
.profile-badge-gj {
  background: var(--g400); color: var(--g900);
  font-size: .63rem; font-weight: 800; padding: .22rem .72rem; border-radius: var(--r-xl);
  display: inline-flex; align-items: center; gap: .28rem; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(46,204,138,.3);
}

.profile-name  { font-family: var(--fs); font-size: 1.7rem; font-weight: 800; color: var(--white); margin-bottom: .2rem; }
.profile-title { font-size: .8rem; color: var(--g300); margin-bottom: 1rem; letter-spacing: .04em; }
.profile-tags  { display: flex; flex-wrap: wrap; gap: .3rem; justify-content: center; margin-bottom: 1.2rem; }
.ptag {
  font-size: .68rem; font-weight: 600; padding: .2rem .6rem; border-radius: var(--r-xl);
  background: rgba(46,204,138,.1); border: 1px solid rgba(46,204,138,.22); color: var(--g300);
}
.profile-contact-mini {
  display: flex; flex-direction: column; gap: .42rem;
  padding: .9rem 0; border-top: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 1.1rem;
}
.profile-contact-mini a {
  display: flex; align-items: center; gap: .5rem; font-size: .78rem;
  color: rgba(255,255,255,.6); justify-content: center; transition: color var(--ease);
}
.profile-contact-mini a:hover { color: var(--g300); }
.profile-contact-mini i { color: var(--g400); width: 14px; flex-shrink: 0; }

.profile-kakao-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--kakao-y); color: var(--kakao-b);
  font-weight: 700; font-size: .84rem; padding: .68rem 1rem; border-radius: var(--r-md);
  transition: transform var(--ease), box-shadow var(--ease);
}
.profile-kakao-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(254,229,0,.32); }

.about-text .section-tag { display: block; width: fit-content; }
.about-text .section-title { text-align: left; margin-bottom: 1.2rem; }
.about-lead {
  font-family: var(--fs); font-size: 1.08rem; color: var(--g800);
  line-height: 1.9; margin-bottom: 1rem; font-weight: 500;
}
.about-lead strong { color: var(--g600); }
.about-body { font-size: .94rem; color: var(--text-body); line-height: 1.9; margin-bottom: 1.7rem; }
.about-body strong { color: var(--g700); }
.about-highlights { display: flex; flex-direction: column; gap: .6rem; }
.about-highlights li {
  display: flex; align-items: flex-start; gap: .72rem;
  font-size: .92rem; color: var(--text-body); line-height: 1.65;
}
.about-highlights li i { color: var(--g500); font-size: .92rem; margin-top: .18rem; flex-shrink: 0; }

/* ============================================================
   서비스 섹션
============================================================ */
.services-section { padding: 6rem 0; background: var(--g050); position: relative; overflow: hidden; }
.services-bg-deco {
  position: absolute; top: -60px; right: -60px; width: 380px; height: 380px;
  border-radius: 50%; background: radial-gradient(circle, rgba(46,204,138,.06) 0%, transparent 70%);
  pointer-events: none;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.service-card {
  background: var(--white); border-radius: var(--r-md); padding: 1.9rem 1.6rem;
  box-shadow: var(--sh-xs); border: 1px solid var(--gray-100);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--g400), var(--g500));
  transform: scaleX(0); transform-origin: left; transition: transform var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: rgba(46,204,138,.18); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 50px; height: 50px; border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--g800), var(--g600));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem; font-size: 1.25rem; color: var(--g300);
  box-shadow: 0 4px 12px rgba(13,59,46,.2);
}
.service-card h3 { font-family: var(--fs); font-size: 1.08rem; font-weight: 700; color: var(--g800); margin-bottom: .6rem; }
.service-card p  { font-size: .84rem; color: var(--text-muted); line-height: 1.8; margin-bottom: .95rem; }
.service-card ul { display: flex; flex-direction: column; gap: .32rem; border-top: 1px solid var(--gray-100); padding-top: .85rem; }
.service-card ul li { font-size: .79rem; color: var(--g700); padding-left: 1rem; position: relative; font-weight: 500; line-height: 1.6; }
.service-card ul li::before { content: '▸'; position: absolute; left: 0; color: var(--g400); font-size: .63rem; top: .06em; }

/* ============================================================
   선택 이유 섹션
============================================================ */
.why-section {
  padding: 6rem 0;
  background: linear-gradient(145deg, var(--g800) 0%, var(--g900) 60%, #041510 100%);
  position: relative; overflow: hidden;
}
.why-bg-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 25% 50%, rgba(46,204,138,.07) 0%, transparent 50%),
    linear-gradient(rgba(46,204,138,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,204,138,.03) 1px, transparent 1px);
  background-size: auto, 55px 55px, 55px 55px;
}
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.why-item {
  background: rgba(255,255,255,.04); border: 1px solid rgba(46,204,138,.12);
  border-radius: var(--r-md); padding: 1.9rem 1.4rem; text-align: center;
  position: relative; transition: all var(--ease);
}
.why-item:hover { background: rgba(46,204,138,.07); border-color: rgba(46,204,138,.32); transform: translateY(-4px); }
.why-num {
  font-family: var(--fd); font-size: 3.2rem; font-weight: 900;
  color: rgba(46,204,138,.1); position: absolute; top: .8rem; right: 1rem; line-height: 1;
  user-select: none;
}
.why-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(46,204,138,.1); border: 1px solid rgba(46,204,138,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--g400); margin: 0 auto 1rem;
}
.why-item h3 { font-family: var(--fs); font-size: .98rem; font-weight: 700; color: var(--white); margin-bottom: .65rem; }
.why-item p  { font-size: .82rem; color: rgba(255,255,255,.52); line-height: 1.85; }

/* ============================================================
   광주 자부심 섹션
============================================================ */
.gwangju-pride-section { padding: 6.5rem 0; background: var(--white); overflow: hidden; }
.gp-header { text-align: center; margin-bottom: 3.5rem; }

.gp-grid { display: grid; grid-template-columns: 1fr 1fr 300px; gap: 2.2rem; align-items: start; }

/* 통계 카드 */
.gp-area-card {
  background: linear-gradient(145deg, var(--g800), var(--g900));
  border-radius: var(--r-lg); padding: 2rem; overflow: hidden;
  position: relative; box-shadow: var(--sh-lg);
}
.gp-area-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--g400), var(--g300), var(--g400));
}
.gp-area-title {
  font-family: var(--fs); font-size: .9rem; font-weight: 700; color: var(--g300);
  margin-bottom: 1.3rem; display: flex; align-items: center; gap: .55rem; letter-spacing: .04em;
}
.gp-area-title i { color: var(--g400); }

.gp-area-stats { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; margin-bottom: 1.6rem; }
.gp-astat {
  background: rgba(255,255,255,.04); border: 1px solid rgba(46,204,138,.1);
  border-radius: var(--r-sm); padding: .85rem .9rem;
}
.gp-astat-top { display: flex; align-items: baseline; gap: .18rem; margin-bottom: .18rem; }
.gp-astat-num  { font-family: var(--fd); font-size: 1.8rem; font-weight: 700; color: var(--g400); line-height: 1; }
.gp-astat-unit { font-size: .82rem; color: var(--g300); font-weight: 600; }
.gp-astat-label{ font-size: .7rem; color: rgba(255,255,255,.52); }

.gj-district-map {
  background: rgba(0,0,0,.2); border-radius: var(--r-sm); padding: .9rem 1rem;
  border: 1px solid rgba(46,204,138,.1);
}
.gj-map-title {
  font-size: .73rem; color: var(--g300); font-weight: 600; margin-bottom: .8rem;
  display: flex; align-items: center; gap: .38rem; letter-spacing: .06em;
}
.gj-districts { display: flex; flex-direction: column; gap: .48rem; }
.gj-dist {
  display: flex; align-items: center; gap: .65rem;
  padding: .42rem .55rem; border-radius: 6px; transition: background var(--ease); cursor: default;
}
.gj-dist.active  { background: rgba(46,204,138,.12); }
.dist-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: rgba(46,204,138,.3); border: 1.5px solid rgba(46,204,138,.48);
}
.gj-dist.active .dist-dot {
  background: var(--g400); border-color: var(--g300);
  box-shadow: 0 0 8px rgba(46,204,138,.6);
  animation: distPulse 2s ease infinite;
}
@keyframes distPulse { 0%,100%{box-shadow:0 0 6px rgba(46,204,138,.55)} 50%{box-shadow:0 0 14px rgba(46,204,138,.88)} }
.dist-name { font-size: .8rem; color: var(--white); font-weight: 500; flex: 1; }
.dist-tag  {
  font-size: .62rem; background: var(--g400); color: var(--g900);
  padding: .1rem .42rem; border-radius: 4px; font-weight: 700;
}

/* 강점 리스트 */
.gp-strength-list { display: flex; flex-direction: column; gap: 1.2rem; }
.gp-strength-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem; border-radius: var(--r-sm);
  border: 1px solid var(--gray-100); background: var(--g050);
  transition: all var(--ease);
}
.gp-strength-item:hover {
  border-color: rgba(46,204,138,.28); background: var(--white);
  box-shadow: var(--sh-sm); transform: translateX(4px);
}
.gp-strength-icon {
  width: 42px; height: 42px; border-radius: var(--r-sm); flex-shrink: 0;
  background: linear-gradient(135deg, var(--g600), var(--g500));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: var(--white);
}
.gp-strength-text h3 { font-family: var(--fs); font-size: .94rem; font-weight: 700; color: var(--g800); margin-bottom: .3rem; }
.gp-strength-text p  { font-size: .8rem; color: var(--text-muted); line-height: 1.75; }

/* 엠블럼 */
.gp-emblem-wrap { display: flex; flex-direction: column; align-items: center; gap: 1.8rem; }
.gp-emblem { position: relative; width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; }
.gp-emblem-ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(46,204,138,.2); }
.r1 { width: 100%; height: 100%; animation: ringRot 20s linear infinite; }
.r2 { width: 80%; height: 80%; animation: ringRot 14s linear infinite reverse; border-color: rgba(46,204,138,.3); }
.r3 { width: 60%; height: 60%; animation: ringRot 9s linear infinite; border-color: rgba(46,204,138,.5); }
@keyframes ringRot { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.gp-emblem-core {
  width: 136px; height: 136px; border-radius: 50%;
  background: linear-gradient(145deg, var(--g700), var(--g800));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .06rem;
  box-shadow: 0 0 0 8px rgba(46,204,138,.07), var(--sh-lg);
  position: relative; z-index: 1;
}
.gp-emblem-icon { font-size: 1.2rem; color: var(--g400); margin-bottom: .1rem; }
.gp-emblem-city    { font-family: var(--fs); font-size: 1.45rem; font-weight: 800; color: var(--white); line-height: 1; }
.gp-emblem-city-en { font-family: var(--fd); font-size: .44rem; color: var(--g300); letter-spacing: .22em; }
.gp-emblem-rank    { font-family: var(--fd); font-size: 1.8rem; font-weight: 900; color: var(--g400); line-height: 1; }
.gp-emblem-desc    { font-size: .58rem; color: rgba(255,255,255,.52); letter-spacing: .1em; }

.gp-emblem-quote {
  font-family: var(--fs); font-size: .88rem; line-height: 1.85;
  color: var(--g700); text-align: center;
  background: var(--g050); border-left: 3px solid var(--g400);
  padding: .9rem 1.1rem; border-radius: 0 var(--r-sm) var(--r-sm) 0; width: 100%;
}
.gp-emblem-quote cite { display: block; margin-top: .45rem; font-size: .76rem; font-style: normal; color: var(--g500); font-weight: 600; }

/* ============================================================
   고객 후기 섹션
============================================================ */
.reviews-section { padding: 6.5rem 0; background: var(--g050); position: relative; overflow: hidden; }
.reviews-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 18%, rgba(46,204,138,.05) 0%, transparent 38%),
    radial-gradient(circle at 92% 82%, rgba(46,204,138,.04) 0%, transparent 38%);
}

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-bottom: 2.8rem; }

.review-card {
  background: var(--white); border-radius: var(--r-md); padding: 1.7rem;
  border: 1px solid var(--gray-100); box-shadow: var(--sh-xs);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  display: flex; flex-direction: column; gap: 1rem;
  position: relative; overflow: hidden;
}
.review-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--g400), var(--g300));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: rgba(46,204,138,.18); }
.review-card:hover::after { transform: scaleX(1); }

.review-card-top { display: flex; align-items: center; justify-content: space-between; }
.review-quote-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--g600), var(--g500));
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--white);
}
.review-stars { display: flex; gap: .18rem; color: #F59E0B; font-size: .82rem; }
.review-text  { font-size: .86rem; color: var(--text-body); line-height: 1.9; flex: 1; }

.review-author {
  display: flex; align-items: center; gap: .75rem;
  padding-top: .9rem; border-top: 1px solid var(--gray-100);
}
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--g600), var(--g500));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fs); font-size: 1rem; font-weight: 700; color: var(--white);
}
.review-info { flex: 1; min-width: 0; }
.review-info strong { display: block; font-size: .86rem; font-weight: 700; color: var(--g800); margin-bottom: .08rem; }
.review-info span   { font-size: .73rem; color: var(--gray-500); display: flex; align-items: center; gap: .28rem; }
.review-info span i { color: var(--g400); font-size: .68rem; }
.review-badge {
  font-size: .66rem; font-weight: 700; padding: .22rem .6rem; border-radius: var(--r-xl);
  background: rgba(46,204,138,.1); border: 1px solid rgba(46,204,138,.22);
  color: var(--g600); white-space: nowrap; flex-shrink: 0;
}

/* 후기 요약 바 */
.reviews-summary {
  display: flex; align-items: center; justify-content: center; gap: 2.5rem;
  background: linear-gradient(135deg, var(--g800), var(--g700));
  border-radius: var(--r-lg); padding: 1.8rem 2.5rem; flex-wrap: wrap;
  box-shadow: var(--sh-md);
}
.rsummary-item { display: flex; flex-direction: column; align-items: center; gap: .28rem; text-align: center; }
.rsummary-stars{ display: flex; gap: .18rem; color: #F59E0B; font-size: .88rem; }
.rsummary-score{ font-family: var(--fd); font-size: 1.9rem; font-weight: 700; color: var(--g300); line-height: 1; }
.rsummary-big  { font-family: var(--fd); font-size: 1.65rem; font-weight: 700; color: var(--g400); line-height: 1; }
.rsummary-label{ font-size: .73rem; color: rgba(255,255,255,.55); letter-spacing: .06em; }
.rsummary-divider { width: 1px; height: 44px; background: rgba(46,204,138,.2); flex-shrink: 0; }

/* ============================================================
   카카오톡 CTA 섹션
============================================================ */
.kakao-cta-section {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #172B1F 0%, #0E2016 100%);
  position: relative; overflow: hidden;
}
.kakao-cta-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, rgba(254,229,0,.05) 0%, transparent 55%);
}
.kakao-cta-inner {
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; justify-content: center;
}
.kakao-cta-left { flex-shrink: 0; }
.kakao-cta-icon {
  width: 82px; height: 82px; border-radius: 50%; background: var(--kakao-y);
  display: flex; align-items: center; justify-content: center; color: var(--kakao-b);
  box-shadow: 0 0 0 8px rgba(254,229,0,.1), 0 0 36px rgba(254,229,0,.18);
  animation: kakaoPulse 2.5s ease-in-out infinite;
}
@keyframes kakaoPulse {
  0%,100%{box-shadow:0 0 0 8px rgba(254,229,0,.1),0 0 36px rgba(254,229,0,.16)}
  50%    {box-shadow:0 0 0 16px rgba(254,229,0,.05),0 0 55px rgba(254,229,0,.28)}
}
.kakao-cta-text { flex: 1; min-width: 240px; }
.kakao-cta-eyebrow {
  font-size: .74rem; color: var(--g300); letter-spacing: .12em;
  display: flex; align-items: center; gap: .38rem; margin-bottom: .45rem; font-weight: 600;
}
.kakao-cta-text h2 {
  font-family: var(--fs); font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800; color: var(--white); margin-bottom: .48rem;
}
.kakao-cta-text p { font-size: .9rem; color: rgba(255,255,255,.62); line-height: 1.8; }
.kakao-cta-btn-wrap { text-align: center; }
.kakao-cta-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--kakao-y); color: var(--kakao-b);
  font-weight: 800; font-size: .98rem; padding: 1rem 1.9rem; border-radius: var(--r-xl);
  box-shadow: 0 6px 26px rgba(254,229,0,.28);
  transition: transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}
.kakao-cta-btn:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 14px 42px rgba(254,229,0,.48); }
.kakao-hint { font-size: .71rem; color: rgba(255,255,255,.42); margin-top: .65rem; letter-spacing: .03em; }

/* ============================================================
   연락처 섹션
============================================================ */
.contact-section { padding: 6rem 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }

.contact-firm-name {
  font-family: var(--fs); font-size: 1.35rem; font-weight: 800;
  color: var(--g800); margin-bottom: 1.5rem;
  padding-bottom: .9rem; border-bottom: 2px solid;
  border-image: linear-gradient(90deg, var(--g400), transparent) 1;
  display: flex; align-items: center; gap: .55rem;
}
.contact-firm-name i { color: var(--g500); font-size: 1.15rem; }

.contact-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.7rem; }
.contact-item  { display: flex; align-items: flex-start; gap: .85rem; }
.contact-icon  {
  width: 34px; height: 34px; border-radius: var(--r-sm); flex-shrink: 0;
  background: linear-gradient(135deg, var(--g700), var(--g600));
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; color: var(--g300);
}
.contact-detail { display: flex; flex-direction: column; gap: .1rem; }
.contact-label  { font-size: .68rem; font-weight: 700; color: var(--g500); letter-spacing: .08em; text-transform: uppercase; }
.contact-value  { font-size: .93rem; color: var(--text-dark); font-weight: 500; }
.contact-value.link { transition: color var(--ease); }
.contact-value.link:hover { color: var(--g600); text-decoration: underline; }

.kakao-mini-btn {
  display: inline-flex; align-items: center; gap: .52rem;
  background: var(--kakao-y); color: var(--kakao-b);
  font-weight: 700; font-size: .86rem; padding: .72rem 1.45rem; border-radius: var(--r-xl);
  transition: transform var(--ease), box-shadow var(--ease);
}
.kakao-mini-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(254,229,0,.32); }

/* 지도 플레이스홀더 */
.map-placeholder {
  background: linear-gradient(145deg, var(--g800), var(--g900));
  border-radius: var(--r-lg); min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; box-shadow: var(--sh-md);
}
.map-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(46,204,138,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,204,138,.045) 1px, transparent 1px);
  background-size: 26px 26px;
}
.map-overlay-content { position: relative; z-index: 1; text-align: center; padding: 2rem 1.5rem; }
.map-pin-anim { font-size: 2.6rem; color: var(--g400); margin-bottom: .75rem; animation: pinBounce 2s ease-in-out infinite; }
@keyframes pinBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.map-overlay-content p { color: rgba(255,255,255,.82); font-size: .9rem; margin-bottom: .28rem; line-height: 1.65; }
.map-overlay-content p strong { color: var(--white); font-size: .98rem; }
.map-phone { display: flex; align-items: center; justify-content: center; gap: .4rem; margin-top: .4rem !important; color: var(--g300) !important; font-weight: 500; }
.map-link-btn {
  display: inline-flex; align-items: center; gap: .48rem; margin-top: 1.1rem;
  background: var(--kakao-y); color: var(--kakao-b);
  font-weight: 700; font-size: .82rem; padding: .58rem 1.25rem; border-radius: var(--r-xl);
  transition: transform var(--ease), box-shadow var(--ease);
}
.map-link-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(254,229,0,.3); }

/* 푸터 연락처 링크 */
.footer-contact-mini a { transition: color var(--ease); }
.footer-contact-mini a:hover { color: var(--g300); }

/* ============================================================
   푸터
============================================================ */
.main-footer { background: var(--g900); padding: 3.5rem 0 1.5rem; }
.footer-container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.footer-top {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 1.6rem;
}
.footer-logo-wrap { display: flex; align-items: center; gap: .7rem; margin-bottom: .55rem; }
.footer-logo-icon {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--g500), var(--g400));
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--white);
}
.footer-logo    { font-family: var(--fs); font-size: 1.15rem; font-weight: 700; color: var(--white); letter-spacing: .08em; }
.footer-logo-en { font-family: var(--fd); font-size: .5rem; color: var(--g400); letter-spacing: .32em; }
.footer-slogan  { font-size: .78rem; color: rgba(255,255,255,.42); line-height: 1.7; margin-bottom: .75rem; }
.footer-gj-badge {
  display: inline-flex; align-items: center; gap: .38rem;
  font-size: .7rem; font-weight: 700; color: var(--g400);
  background: rgba(46,204,138,.09); border: 1px solid rgba(46,204,138,.18);
  padding: .22rem .6rem; border-radius: var(--r-xl);
}
.footer-col-title { font-size: .68rem; font-weight: 700; color: var(--g400); letter-spacing: .15em; text-transform: uppercase; margin-bottom: .75rem; }
.footer-links { display: flex; flex-direction: column; gap: .45rem; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.45); transition: color var(--ease); }
.footer-links a:hover { color: var(--g300); }
.footer-contact-mini p {
  font-size: .79rem; color: rgba(255,255,255,.45); margin-bottom: .38rem;
  display: flex; align-items: center; gap: .48rem;
}
.footer-contact-mini i { color: var(--g400); width: 13px; flex-shrink: 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer-bottom p { font-size: .72rem; color: rgba(255,255,255,.25); }

/* ============================================================
   플로팅 카카오
============================================================ */
.floating-kakao {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 990;
  display: flex; flex-direction: column; align-items: center; gap: .38rem;
  background: var(--kakao-y); color: var(--kakao-b);
  border-radius: var(--r-md); padding: .8rem 1rem;
  box-shadow: 0 8px 28px rgba(254,229,0,.38), 0 4px 10px rgba(0,0,0,.18);
  transition: transform var(--ease), box-shadow var(--ease);
  text-align: center;
}
.floating-kakao:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 14px 44px rgba(254,229,0,.55), 0 6px 18px rgba(0,0,0,.22); }
.floating-label { font-size: .65rem; font-weight: 700; line-height: 1.35; white-space: nowrap; }

/* ============================================================
   스크롤 애니메이션
============================================================ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity .7s ease, transform .7s ease;
}
.reveal-up    { transform: translateY(32px); }
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0,0);
}

.delay-1 { transition-delay: .08s !important; }
.delay-2 { transition-delay: .16s !important; }
.delay-3 { transition-delay: .24s !important; }
.delay-4 { transition-delay: .32s !important; }
.delay-5 { transition-delay: .40s !important; }
.delay-6 { transition-delay: .48s !important; }

/* ============================================================
   반응형 – 대형 태블릿 (≤ 1100px)
============================================================ */
@media (max-width: 1100px) {
  /* 히어로 */
  .hero-section { padding: 8.5rem 2.5rem 4.5rem; gap: 2rem; }
  .hero-right-deco { width: 220px; }
  .hero-glass-card { padding: 1.3rem 1.4rem; }
  .gs-num { font-size: 2.2rem; }

  /* 소개 */
  .about-grid { grid-template-columns: 300px 1fr; gap: 3rem; }

  /* 서비스 */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }

  /* Why */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }

  /* 광주 자부심 */
  .gp-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
  .gp-emblem-wrap { display: none; }

  /* 후기 */
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }

  /* 푸터 */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ============================================================
   반응형 – 태블릿 (≤ 900px)
============================================================ */
@media (max-width: 900px) {
  /* 히어로 stats 조정 */
  .hero-stats { gap: 1.2rem; }

  /* Why – 레이아웃 유지 */
  .why-item { padding: 1.6rem 1.2rem; }
}

/* ============================================================
   반응형 – 모바일 (≤ 768px)
============================================================ */
@media (max-width: 768px) {

  /* ── 네비게이션 ── */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: min(80%, 300px);
    height: 100dvh; background: var(--g900);
    flex-direction: column; align-items: flex-start;
    padding: 5rem 1.8rem 2rem; gap: .25rem;
    transition: right var(--ease);
    box-shadow: -4px 0 30px rgba(0,0,0,.55);
    z-index: 999; overflow-y: auto;
  }
  .nav-menu.open { right: 0; }
  .nav-link {
    font-size: .97rem; padding: .75rem 1rem;
    width: 100%; border-radius: var(--r-sm);
    border-bottom: 1px solid rgba(255,255,255,.04);
  }
  .nav-kakao-btn {
    width: 100%; justify-content: center;
    padding: .78rem 1rem; margin: .5rem 0 0;
    border-radius: var(--r-md);
  }

  /* ── 히어로 ── */
  .hero-section { padding: 7rem 1.5rem 3.5rem; flex-direction: column; }
  .hero-right-deco { display: none; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-cta-group { flex-direction: column; gap: .75rem; width: 100%; }
  .btn-kakao-main, .btn-call-main {
    width: 100%; justify-content: center;
    font-size: .95rem; padding: .88rem 1.5rem;
  }
  .hero-stats { gap: 1.2rem; justify-content: center; }
  .stat-divider { height: 36px; }
  .hero-scroll-hint { display: none; }
  .hero-bg-text { display: none; }

  /* ── 섹션 패딩 ── */
  .about-section,
  .services-section,
  .gwangju-pride-section,
  .reviews-section,
  .contact-section { padding: 4.5rem 0; }
  .why-section { padding: 4.5rem 0; }

  /* ── 소개 ── */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-profile { max-width: 420px; margin: 0 auto; width: 100%; }

  /* ── 서비스 ── */
  .services-grid { grid-template-columns: 1fr; gap: 1.1rem; }

  /* ── Why ── */
  .why-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .why-item { text-align: left; display: flex; flex-direction: column; align-items: flex-start; }
  .why-icon { margin: 0 0 .8rem; }

  /* ── 광주 자부심 ── */
  .gp-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  /* ── 후기 ── */
  .reviews-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .reviews-summary {
    gap: 1.4rem; padding: 1.6rem 1.2rem; border-radius: var(--r-md);
    flex-direction: row; flex-wrap: wrap; justify-content: space-around;
  }
  .rsummary-divider { display: none; }
  .rsummary-item { min-width: 100px; }

  /* ── Kakao CTA ── */
  .kakao-cta-section { padding: 3.5rem 0; }
  .kakao-cta-inner { flex-direction: column; text-align: center; gap: 1.6rem; }
  .kakao-cta-left { display: none; }
  .kakao-cta-text { text-align: center; min-width: 0; }
  .kakao-cta-eyebrow { justify-content: center; }
  .kakao-cta-btn { font-size: .94rem; padding: .92rem 1.6rem; }

  /* ── 연락처 ── */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .map-placeholder { min-height: 260px; }

  /* ── 푸터 ── */
  .main-footer { padding: 3rem 0 1.2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .35rem; }

  /* ── 플로팅 ── */
  .floating-kakao { bottom: 1.2rem; right: 1.2rem; padding: .7rem .9rem; }
  .floating-label { font-size: .62rem; }

  .section-container { padding: 0 1.2rem; }
  .section-header { margin-bottom: 2.5rem; }
}

/* ============================================================
   반응형 – 소형 모바일 (≤ 480px)
============================================================ */
@media (max-width: 480px) {
  .hero-badge { font-size: .72rem; padding: .35rem .8rem; }
  .hero-title  { font-size: clamp(2rem, 9vw, 2.5rem); }
  .hero-desc   { font-size: .88rem; }

  /* 스탯 세로 배열 */
  .hero-stats  { flex-direction: column; align-items: flex-start; gap: .65rem; }
  .stat-item   { flex-direction: row; align-items: center; gap: .35rem; }
  .stat-divider{ display: none; }
  .stat-num    { font-size: 1.8rem; }
  .stat-label  { font-size: .72rem; color: rgba(255,255,255,.55); }

  /* 광주 자부심 통계 */
  .gp-area-stats { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .gp-astat-num  { font-size: 1.5rem; }

  /* 후기 카드 */
  .reviews-grid { gap: .9rem; }
  .review-card  { padding: 1.35rem; }
  .review-text  { font-size: .84rem; }

  /* 후기 요약 */
  .reviews-summary { gap: 1rem; padding: 1.3rem 1rem; }
  .rsummary-item   { flex-direction: column; gap: .2rem; min-width: 80px; }
  .rsummary-score, .rsummary-big { font-size: 1.25rem; }
  .rsummary-label  { font-size: .68rem; }

  /* 섹션 패딩 */
  .about-section,
  .services-section,
  .gwangju-pride-section,
  .reviews-section,
  .contact-section,
  .why-section { padding: 3.8rem 0; }

  .section-container { padding: 0 1rem; }
  .section-title { font-size: clamp(1.55rem,6vw,1.9rem); }
}

/* ============================================================
   반응형 – 초소형 (≤ 360px)
============================================================ */
@media (max-width: 360px) {
  .hero-title { font-size: 1.85rem; }
  .btn-kakao-main, .btn-call-main { font-size: .88rem; padding: .82rem 1.2rem; }
  .profile-card { padding: 1.8rem 1.4rem; }
  .profile-name { font-size: 1.5rem; }
  .review-card { padding: 1.2rem; }
}
