/* ============================================================
   화청노무사사무소 | FRESH MODERN REDESIGN
   컨셉: Teal + Charcoal / 젊고 신뢰감 있는 현대적 감각
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --teal:       #0d9488;
  --teal-light: #14b8a6;
  --teal-dark:  #0a7568;
  --teal-pale:  #f0fdfb;
  --charcoal:   #111827;
  --ink:        #1f2937;
  --slate:      #374151;
  --muted:      #6b7280;
  --border:     #e5e7eb;
  --white:      #ffffff;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --kakao:      #FAE100;
  --kakao-dk:   #3C1E1E;
  --naver:      #03C75A;
  --gradient:   linear-gradient(135deg, var(--teal) 0%, #6366f1 100%);
  --shadow-xs:  0 1px 4px rgba(0,0,0,.06);
  --shadow-sm:  0 2px 12px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
  --r:          12px;
  --r-sm:       8px;
  --ease:       cubic-bezier(.4,0,.2,1);
  --t:          .3s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans KR', 'Pretendard', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Helpers ---------- */
.sec-inner { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sec-eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(13,148,136,.08);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.sec-eyebrow.light { color: var(--teal-light); background: rgba(20,184,166,.18); }
.sec-h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.25;
  letter-spacing: -.02em;
}
.sec-h2.light { color: var(--white); }

/* Fade-up AOS-like */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos][data-aos-delay="100"] { transition-delay: .1s; }
[data-aos][data-aos-delay="200"] { transition-delay: .2s; }
[data-aos][data-aos-delay="300"] { transition-delay: .3s; }
[data-aos][data-aos-delay="400"] { transition-delay: .4s; }
[data-aos][data-aos-delay="500"] { transition-delay: .5s; }

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 28px;
  transition: background var(--t), box-shadow var(--t);
}
#header.scrolled {
  background: rgba(17,24,39,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.hd-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  height: 70px;
}
.hd-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.hd-logo-mark {
  width: 38px; height: 38px;
  background: var(--gradient);
  color: var(--white);
  font-size: 1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
}
.hd-logo-text {
  font-size: .9rem; font-weight: 700;
  color: var(--white);
}
#gnb {
  display: flex; gap: 28px; margin-left: auto;
}
#gnb a {
  font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color var(--t);
  position: relative; padding-bottom: 3px;
}
#gnb a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--teal-light);
  transition: width var(--t);
  border-radius: 2px;
}
#gnb a:hover { color: #fff; }
#gnb a:hover::after { width: 100%; }

.hd-actions { display: flex; align-items: center; gap: 10px; }
.hd-kakao {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--kakao); color: var(--kakao-dk);
  font-size: .8rem; font-weight: 700;
  padding: 8px 16px; border-radius: 6px;
  transition: filter var(--t);
  white-space: nowrap;
}
.hd-kakao:hover { filter: brightness(1.08); }
.hd-call {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: .85rem;
  transition: background var(--t);
}
.hd-call:hover { background: var(--teal); }

.burger {
  display: none;
  flex-direction: column; gap: 5px; padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--charcoal);
  display: flex; align-items: center;
  overflow: hidden;
}

/* BG */
.hero-bg-split {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .12;
  transform: scale(1.04);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(9,14,30,.92) 0%,
    rgba(13,148,136,.18) 50%,
    rgba(9,14,30,.85) 100%);
}

/* Animated grid lines */
.hero-grid-anim {
  position: absolute; inset: 0; z-index: 1;
  overflow: hidden; pointer-events: none;
}
.grid-line {
  position: absolute; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(20,184,166,.25), transparent);
  animation: gridSlide 4s var(--ease) infinite;
  animation-delay: var(--d);
}
.grid-line:nth-child(1) { left: 15%; }
.grid-line:nth-child(2) { left: 35%; }
.grid-line:nth-child(3) { left: 65%; }
.grid-line:nth-child(4) { left: 85%; }
@keyframes gridSlide {
  0%   { opacity: 0; transform: scaleY(0) translateY(-50%); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1) translateY(50%); }
}

/* Content */
.hero-wrap {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  padding-top: 70px;
  min-height: 100vh;
}
.hero-wrap.hero-center {
  text-align: center;
  flex-direction: column;
}
.hero-copy { display: flex; flex-direction: column; gap: 0; align-items: center; max-width: 820px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600;
  color: var(--teal-light);
  letter-spacing: .06em;
  margin-bottom: 20px;
}
.tag-dot {
  width: 8px; height: 8px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(20,184,166,.6); }
  50%      { box-shadow: 0 0 0 8px rgba(20,184,166,0); }
}
.hero-h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.05em;
  margin-bottom: 24px;
}
.hero-h1 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-sub strong { color: var(--teal-light); font-weight: 700; }
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.hero-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  animation: chipsFade 1s ease .8s both;
}
@keyframes chipsFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-chips span {
  font-size: .78rem; font-weight: 600;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.6);
  padding: 6px 14px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(4px);
  letter-spacing: .02em;
  transition: all var(--t);
}
.hero-chips span:hover {
  background: rgba(13,148,136,.25);
  color: var(--teal-light);
  border-color: rgba(13,148,136,.4);
}
.cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: var(--white);
  font-size: .95rem; font-weight: 700;
  padding: 14px 28px; border-radius: 8px;
  transition: background var(--t), transform var(--t);
}
.cta-primary:hover { background: var(--teal-light); transform: translateY(-2px); }
.cta-kakao {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--kakao); color: var(--kakao-dk);
  font-size: .95rem; font-weight: 700;
  padding: 14px 24px; border-radius: 8px;
  transition: filter var(--t), transform var(--t);
}
.cta-kakao:hover { filter: brightness(1.08); transform: translateY(-2px); }
.cta-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .88rem; font-weight: 600;
  color: rgba(255,255,255,.6);
  padding: 8px 4px;
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: color var(--t);
}
.cta-ghost:hover { color: var(--teal-light); }

/* hero-card removed — no portrait image */

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%); z-index: 2;
}
.hero-scroll span {
  display: block; width: 2px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--teal-light));
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   NUMBERS BAR
   ============================================================ */
.numbers-bar {
  background: var(--teal-dark);
  padding: 32px 28px;
}
.nb-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.nb-item {
  flex: 1; min-width: 160px;
  text-align: center; padding: 10px 20px;
}
.nb-num {
  font-size: 2.4rem; font-weight: 900;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.nb-unit {
  font-size: 1.2rem; font-weight: 700; color: rgba(255,255,255,.7);
}
.nb-item p { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: 6px; }
.nb-sep { width: 1px; height: 48px; background: rgba(255,255,255,.2); }

/* ============================================================
   INTRO
   ============================================================ */
.sec-intro { padding: 100px 0; background: var(--white); }
.sec-intro .sec-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px; align-items: start;
}
.sec-desc {
  font-size: 1rem; color: var(--muted); line-height: 1.85;
  margin: 20px 0 32px;
}
.intro-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; margin-bottom: 32px;
}
.ic-card {
  background: var(--gray-50);
  border-radius: var(--r);
  padding: 20px 18px;
  border: 1px solid var(--border);
  transition: all var(--t);
}
.ic-card:hover {
  border-color: var(--teal);
  background: var(--teal-pale);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.ic-card i {
  font-size: 1.3rem; color: var(--teal);
  margin-bottom: 10px; display: block;
}
.ic-card h4 { font-size: .9rem; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.ic-card p { font-size: .8rem; color: var(--muted); line-height: 1.6; }
.intro-links {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.link-blog {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--naver); color: var(--white);
  font-size: .87rem; font-weight: 700;
  padding: 11px 20px; border-radius: 8px;
  transition: filter var(--t);
}
.link-blog:hover { filter: brightness(1.1); }
.link-kakao {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--kakao); color: var(--kakao-dk);
  font-size: .87rem; font-weight: 700;
  padding: 11px 20px; border-radius: 8px;
  transition: filter var(--t);
}
.link-kakao:hover { filter: brightness(1.08); }

/* Intro Visual */
.intro-visual { position: relative; }
.iv-blob {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(13,148,136,.15), transparent 70%);
  border-radius: 50%;
  top: -40px; left: -40px; z-index: 0;
  animation: blobPulse 6s ease-in-out infinite;
}
@keyframes blobPulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.15); }
}
.iv-box {
  position: relative; z-index: 1;
  background: var(--charcoal);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.iv-quote {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.iv-quote .fa-quote-left { color: var(--teal); font-size: 1.5rem; margin-bottom: 12px; display: block; }
.iv-quote p {
  font-size: 1rem; color: rgba(255,255,255,.85);
  line-height: 1.75; font-weight: 500;
}
.iv-info { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.iv-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .85rem; color: rgba(255,255,255,.65);
}
.iv-row i { color: var(--teal-light); width: 16px; flex-shrink: 0; margin-top: 2px; }
.iv-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gradient);
  color: var(--white);
  font-size: .95rem; font-weight: 700;
  padding: 14px; border-radius: 10px;
  transition: opacity var(--t);
}
.iv-cta:hover { opacity: .9; }

/* ============================================================
   SERVICES
   ============================================================ */
.sec-services { padding: 100px 0; background: var(--charcoal); }
.sec-services .sec-inner { display: flex; flex-direction: column; gap: 56px; }
.sec-head { display: flex; flex-direction: column; gap: 0; }
.sec-subdesc { font-size: .95rem; color: rgba(255,255,255,.55); margin-top: 12px; }

.sv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sv-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.sv-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform var(--t);
  transform-origin: left;
}
.sv-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(13,148,136,.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.sv-card:hover::before { transform: scaleX(1); }
.sv-card.featured {
  background: linear-gradient(135deg, rgba(13,148,136,.2), rgba(99,102,241,.1));
  border-color: rgba(13,148,136,.5);
}
.sv-card.featured::before { transform: scaleX(1); }

.sv-num {
  font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  color: var(--teal-light); opacity: .5; margin-bottom: 12px;
}
.sv-icon {
  width: 44px; height: 44px;
  background: rgba(13,148,136,.15);
  color: var(--teal-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 14px;
  transition: background var(--t);
}
.sv-card:hover .sv-icon { background: var(--teal); }
.sv-card h3 {
  font-size: 1rem; font-weight: 700; color: var(--white);
  margin-bottom: 10px;
}
.sv-card p {
  font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.7;
  margin-bottom: 14px;
}
.sv-card ul { border-top: 1px solid rgba(255,255,255,.08); padding-top: 12px; margin-bottom: 16px; }
.sv-card ul li {
  font-size: .78rem; color: rgba(255,255,255,.55);
  padding: 4px 0; padding-left: 14px; position: relative;
}
.sv-card ul li::before { content: '›'; position: absolute; left: 0; color: var(--teal-light); font-weight: 700; }
.sv-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 700; color: var(--teal-light);
  transition: gap var(--t);
}
.sv-more:hover { gap: 10px; }

/* ============================================================
   ONE-PASS BANNER
   ============================================================ */
.sec-onepass {
  padding: 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

/* 배경 그라디언트 무드 */
.sec-onepass::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(13,148,136,.22) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 100% 50%, rgba(99,102,241,.15) 0%, transparent 70%);
  pointer-events: none;
}

/* 우측 대형 워터마크 */
.sec-onepass::after {
  content: '1:1';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  font-size: 22rem;
  font-weight: 900;
  color: rgba(255,255,255,.025);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -.06em;
}

.op-inner {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto;
  padding: 96px 28px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}

/* 왼쪽 텍스트 */
.op-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 18px;
}
.op-dot {
  width: 7px; height: 7px;
  background: var(--teal-light); border-radius: 50%;
  animation: pulse 2s infinite;
}
.op-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.op-title em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.op-desc {
  font-size: .97rem;
  color: rgba(255,255,255,.62);
  line-height: 1.85;
  margin-bottom: 30px;
}
.op-desc strong { color: var(--teal-light); font-weight: 700; }

.op-list {
  display: flex; flex-direction: column; gap: 13px;
  margin-bottom: 36px;
}
.op-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .9rem; color: rgba(255,255,255,.78);
  line-height: 1.6;
}
.op-list li i {
  color: var(--teal-light); font-size: .9rem;
  flex-shrink: 0; margin-top: 3px;
}
.op-list li b { color: var(--white); font-weight: 700; }

.op-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.op-btn-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: var(--white);
  font-size: .92rem; font-weight: 700;
  padding: 13px 26px; border-radius: 8px;
  transition: background var(--t), transform var(--t);
}
.op-btn-call:hover { background: var(--teal-light); transform: translateY(-2px); }
.op-btn-kakao {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--kakao); color: var(--kakao-dk);
  font-size: .92rem; font-weight: 700;
  padding: 13px 22px; border-radius: 8px;
  transition: filter var(--t), transform var(--t);
}
.op-btn-kakao:hover { filter: brightness(1.08); transform: translateY(-2px); }

/* 오른쪽 플로우 카드 */
.op-flow {
  display: flex; flex-direction: column; gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
}
.op-flow-card {
  display: flex; gap: 0;
}
.ofc-step {
  display: flex; flex-direction: column; align-items: center;
  flex-shrink: 0; width: 44px;
}
.ofc-num {
  width: 36px; height: 36px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800;
  flex-shrink: 0;
  letter-spacing: .04em;
}
.ofc-line {
  width: 2px; flex: 1;
  min-height: 28px;
  background: linear-gradient(to bottom, rgba(13,148,136,.6), rgba(13,148,136,.1));
  margin: 4px 0;
}
.op-flow-card.last .ofc-line { display: none; }

.ofc-body {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 0 0 28px 16px;
}
.op-flow-card.last .ofc-body { padding-bottom: 0; }
.ofc-body > i {
  color: var(--teal-light); font-size: 1.1rem;
  flex-shrink: 0; margin-top: 2px;
  width: 20px; text-align: center;
}
.ofc-body h4 {
  font-size: .9rem; font-weight: 700;
  color: var(--white); margin-bottom: 5px;
}
.ofc-body p {
  font-size: .8rem; color: rgba(255,255,255,.55);
  line-height: 1.65;
}

/* 반응형 */
@media (max-width: 1024px) {
  .op-inner { grid-template-columns: 1fr; gap: 48px; }
  .op-flow { max-width: 540px; }
}
@media (max-width: 768px) {
  .sec-onepass::after { display: none; }
  .op-inner { padding: 72px 20px; }
  .op-ctas { flex-direction: column; }
  .op-btn-call, .op-btn-kakao { justify-content: center; }
}

/* ============================================================
   PROCESS
   ============================================================ */
.sec-process { padding: 100px 0; background: var(--gray-50); }
.sec-process .sec-head { margin-bottom: 40px; }
.sec-process .sec-subdesc { color: var(--muted); }

.proc-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.pt {
  padding: 10px 24px; border-radius: 30px;
  font-size: .88rem; font-weight: 600;
  color: var(--muted); border: 1.5px solid var(--border);
  background: var(--white);
  transition: all var(--t);
}
.pt:hover { border-color: var(--teal); color: var(--teal); }
.pt.active {
  background: var(--teal); color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 12px rgba(13,148,136,.35);
}

.proc-panels { position: relative; }
.proc-panel { display: none; }
.proc-panel.active { display: grid; grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr; align-items: center; gap: 0; }

.pp-step {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 22px;
  border: 1.5px solid var(--border);
  text-align: center;
  transition: all var(--t);
  position: relative;
}
.pp-step:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.pp-num {
  font-size: .65rem; font-weight: 800; letter-spacing: .1em;
  color: var(--teal); margin-bottom: 10px;
}
.pp-icon {
  width: 48px; height: 48px;
  background: var(--teal-pale);
  color: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 12px;
  transition: all var(--t);
}
.pp-step:hover .pp-icon { background: var(--teal); color: var(--white); }
.pp-step h4 { font-size: .95rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.pp-step p { font-size: .8rem; color: var(--muted); line-height: 1.6; }

.pp-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light); font-size: .9rem; opacity: .6;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.sec-reviews { padding: 100px 0; background: var(--white); }
.sec-reviews .sec-head { margin-bottom: 52px; }
.sec-reviews .sec-subdesc { color: var(--muted); }

.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.rv-card {
  background: var(--gray-50);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.rv-card::after {
  content: '\201C';
  position: absolute;
  top: -10px; right: 20px;
  font-size: 8rem; font-weight: 900;
  color: var(--teal);
  opacity: .06;
  line-height: 1;
  font-family: serif;
  pointer-events: none;
}
.rv-card:hover {
  border-color: var(--teal);
  background: var(--teal-pale);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.rv-stars { display: flex; gap: 3px; }
.rv-stars i { color: #f59e0b; font-size: .85rem; }
.rv-tag {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .05em;
  background: rgba(13,148,136,.1);
  color: var(--teal-dark);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(13,148,136,.2);
  width: fit-content;
}
.rv-text {
  font-size: .88rem;
  color: var(--slate);
  line-height: 1.8;
  flex: 1;
}
.rv-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.rv-avatar {
  width: 38px; height: 38px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; font-weight: 800;
  flex-shrink: 0;
}
.rv-name { font-size: .88rem; font-weight: 700; color: var(--ink); }
.rv-meta { font-size: .75rem; color: var(--muted); margin-top: 1px; }

/* ============================================================
   MAP 정비 (네이버 지도 버튼 포함)
   ============================================================ */
.map-wrapper {
  position: relative;
  width: 100%; height: 100%;
  min-height: 440px;
  border-radius: var(--r);
  overflow: hidden;
}
.map-wrapper iframe {
  width: 100%; height: 100%;
  min-height: 440px;
  display: block;
}
.map-naver-btn {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--naver);
  color: var(--white);
  font-size: .85rem; font-weight: 700;
  padding: 11px 22px;
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  white-space: nowrap;
  transition: filter var(--t), transform var(--t);
  z-index: 10;
}
.map-naver-btn:hover {
  filter: brightness(1.1);
  transform: translateX(-50%) translateY(-2px);
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.sec-cta-strip {
  background: var(--gradient);
  padding: 56px 28px;
}
.cta-strip-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cs-label {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: 8px;
}
.cs-left h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; color: var(--white); line-height: 1.3;
}
.cs-right {
  display: flex; flex-wrap: wrap; gap: 12px; flex-shrink: 0;
}
.cs-btn-call, .cs-btn-kakao {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px; border-radius: 10px;
  transition: transform var(--t), filter var(--t);
}
.cs-btn-call:hover, .cs-btn-kakao:hover { transform: translateY(-2px); filter: brightness(1.1); }
.cs-btn-call {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
}
.cs-btn-call i { font-size: 1.2rem; }
.cs-btn-call span { display: flex; flex-direction: column; }
.cs-btn-call span small { font-size: .72rem; opacity: .7; font-weight: 400; }
.cs-btn-call span b, .cs-btn-call span { font-size: .95rem; font-weight: 700; }
.cs-btn-kakao {
  background: var(--kakao); color: var(--kakao-dk);
}
.cs-btn-kakao i { font-size: 1.2rem; }
.cs-btn-kakao span { display: flex; flex-direction: column; }
.cs-btn-kakao span small { font-size: .72rem; opacity: .6; font-weight: 400; }
.cs-btn-kakao span { font-size: .95rem; font-weight: 700; }

/* ============================================================
   CONTACT
   ============================================================ */
.sec-contact { padding: 100px 0; background: var(--white); }
.sec-contact .sec-h2 { color: var(--charcoal); }
.sec-contact .sec-head { margin-bottom: 48px; }
.ct-grid {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 32px; align-items: stretch;
}
.ct-card {
  background: var(--gray-50);
  border-radius: 20px; padding: 36px 32px;
  border: 1.5px solid var(--border);
}
.ct-card h3 {
  font-size: 1.1rem; font-weight: 800; color: var(--charcoal);
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 2px solid var(--teal);
}
.ct-rows { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.ct-row {
  display: flex; align-items: flex-start; gap: 14px;
}
.ct-icon {
  width: 36px; height: 36px;
  background: var(--teal-pale);
  color: var(--teal);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
}
.ct-row > div { display: flex; flex-direction: column; gap: 2px; }
.ct-row b { font-size: .72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.ct-row p { font-size: .88rem; color: var(--ink); line-height: 1.5; }
.ct-tel {
  font-size: 1.1rem; font-weight: 800; color: var(--teal);
  transition: color var(--t);
}
.ct-tel:hover { color: var(--teal-dark); }
.ct-mail { font-size: .88rem; color: var(--teal); }
.ct-mail:hover { text-decoration: underline; }
.ct-hint { font-size: .75rem; color: var(--teal); margin-top: 2px; }
.ct-channels {
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--border); padding-top: 20px;
}
.ct-naver, .ct-kakao {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px; border-radius: 8px;
  font-size: .88rem; font-weight: 700;
  transition: filter var(--t);
}
.ct-naver:hover, .ct-kakao:hover { filter: brightness(1.1); }
.ct-naver { background: var(--naver); color: var(--white); }
.ct-kakao { background: var(--kakao); color: var(--kakao-dk); }

.ct-map {
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 440px;
  /* map-wrapper takes full control */
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--charcoal); padding: 48px 28px 24px;
}
.ft-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 32px;
  align-items: flex-start; justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ft-logo {
  display: flex; align-items: center; gap: 12px;
}
.ft-mark {
  width: 44px; height: 44px;
  background: var(--gradient);
  color: var(--white); font-size: 1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
}
.ft-name { font-size: .95rem; font-weight: 700; color: var(--white); }
.ft-eng { font-size: .6rem; color: rgba(255,255,255,.35); letter-spacing: .06em; margin-top: 2px; }
.ft-info p { font-size: .8rem; color: rgba(255,255,255,.45); line-height: 2; }
.ft-links { display: flex; flex-direction: column; gap: 8px; }
.ft-links a { font-size: .8rem; color: rgba(255,255,255,.45); transition: color var(--t); }
.ft-links a:hover { color: var(--teal-light); }
.ft-bottom {
  max-width: 1160px; margin: 0 auto;
  padding-top: 20px; text-align: center;
}
.ft-bottom p { font-size: .75rem; color: rgba(255,255,255,.25); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-wrap {
  position: fixed; bottom: 28px; right: 24px;
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 8px;
}
.fl-kakao, .fl-call {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 30px;
  font-size: .82rem; font-weight: 700;
  box-shadow: var(--shadow-md);
  transition: all var(--t); white-space: nowrap;
  cursor: pointer;
}
.fl-kakao:hover, .fl-call:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.fl-kakao { background: var(--kakao); color: var(--kakao-dk); }
.fl-call  { background: var(--teal); color: var(--white); }
.fl-kakao span, .fl-call span { font-size: .72rem; line-height: 1.3; }
.fl-top {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--charcoal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  font-size: .9rem;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t), transform var(--t);
}
.fl-top.show { opacity: 1; pointer-events: auto; }
.fl-top:hover { transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .rv-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-wrap { padding-top: 130px; padding-bottom: 80px; min-height: unset; }
  .sec-intro .sec-inner { grid-template-columns: 1fr; }
  .iv-blob { display: none; }
  .sv-grid { grid-template-columns: repeat(2,1fr); }
  .proc-panel.active { grid-template-columns: 1fr; gap: 12px; }
  .pp-arrow { transform: rotate(90deg); }
  .ct-grid { grid-template-columns: 1fr; }
  .ct-map { min-height: 320px; }
  .map-wrapper { min-height: 320px; }
  .map-wrapper iframe { min-height: 320px; }
}

@media (max-width: 768px) {
  #gnb {
    display: none;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(17,24,39,.97);
    backdrop-filter: blur(16px);
    flex-direction: column; padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  #gnb.open { display: flex; }
  #gnb a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .95rem; }
  #gnb a::after { display: none; }
  .burger { display: flex; }
  .hd-actions .hd-kakao { display: none; }

  .hero-h1 { font-size: 2.8rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .cta-primary, .cta-kakao { width: 100%; max-width: 320px; justify-content: center; }

  .numbers-bar .nb-inner { gap: 8px; }
  .nb-sep { display: none; }
  .nb-item { min-width: 140px; }

  .intro-cards { grid-template-columns: 1fr; }

  .sv-grid { grid-template-columns: 1fr; }
  .rv-grid { grid-template-columns: 1fr; }

  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cs-right { justify-content: center; }

  .fl-kakao span, .fl-call span { display: none; }
  .fl-kakao, .fl-call { width: 48px; height: 48px; border-radius: 50%; padding: 0; justify-content: center; }
}

@media (max-width: 480px) {
  .sec-inner { padding: 0 20px; }
  .sec-intro, .sec-services, .sec-process, .sec-contact { padding: 72px 0; }
  .hero-h1 { font-size: 2rem; }
}
