:root {
  --orange: #f57327;
  --orange-dark: #e0631a;
  --text-dark: #333333;
  --header-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: "Pretendard", -apple-system, "Malgun Gothic", sans-serif;
  color: var(--text-dark);
  background: #0a0a0a;
  overflow-x: clip;
}

a { text-decoration: none; color: inherit; }
button { font: inherit; border: none; background: none; cursor: pointer; }

/* ================= 헤더 ================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: #fff;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.header-inner {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 40px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  justify-self: start;
  flex: none;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 44px;
  height: 100%;
}

.main-nav > a,
.nav-item > a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 4px 2px;
  transition: color 0.2s ease;
}

.main-nav > a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav > a:hover,
.nav-item > a:hover,
.nav-item:hover > a { color: var(--orange); }
.main-nav > a:hover::after,
.nav-item > a:hover::after,
.nav-item:hover > a::after { transform: scaleX(1); transform-origin: left; }
.main-nav a.active { color: var(--orange); }
.main-nav a.active::after { transform: scaleX(1); }

/* ---- 드롭다운 하위 메뉴 : 전체 너비 메가 메뉴 ---- */
.nav-item {
  /* position:relative를 주지 않아, 아래 .nav-dropdown의 절대 위치 기준이
     .site-header(position:fixed)로 올라가서 화면 전체 너비로 펼쳐진다 */
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 32px;
}

.nav-dropdown a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 9px 14px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown a:hover {
  background: #f7f7f7;
  color: var(--orange);
}

.header-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
}

.icon-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #f5f5f5;
  color: var(--text-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.icon-btn:hover { background: #ececec; transform: translateY(-1px); }

.cta-pill {
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-pill .cta-short { display: none; }
.cta-pill:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(245,115,39,0.35);
}

/* ================= 모바일 전체 메뉴 (햄버거 + 슬라이드 드로어) =================
   데스크톱(901px 이상)에서는 .menu-toggle이 숨겨지고 기존 .main-nav(호버 드롭다운)가 그대로 노출된다.
   900px 이하에서만 .main-nav 자체가 우측 슬라이드 드로어로 전환된다(콘텐츠는 완전히 동일, DOM 재사용). */
.menu-toggle {
  display: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #f5f5f5;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: none;
}

.menu-toggle-bar {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav-close { display: none; }

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.mobile-nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

body.mobile-nav-locked { overflow: hidden; }

/* ================= [슬라이더] 비디오 히어로 ================= */
.video-hero {
  position: relative;
  width: 100%;
  /* 헤더가 position:fixed라 문서 흐름상 공간을 차지하지 않으므로,
     margin-top으로 헤더 높이만큼 직접 밀어내려야 헤더 바로 아래에서 시작한다 */
  margin-top: var(--header-h);
  height: calc(100svh - var(--header-h));
  min-height: 680px;
  max-height: 980px;
  overflow: hidden;
  background: #050505;
  isolation: isolate;
}

.hero-video-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s ease;
}

.hero-video-layer.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-video-layer video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 왼쪽 텍스트 / 하단 브랜드 타이포 / 우측 인물 / 하단 전체가 잘 읽히도록 하는 다방향 그라데이션 */
.video-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.34) 48%, rgba(0,0,0,0.12) 75%),
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.12) 42%, rgba(0,0,0,0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ---- 왼쪽 하단 텍스트 ---- */
.hero-copy {
  position: absolute;
  left: 48px;
  bottom: 205px;
  width: min(700px, 48vw);
  color: #fff;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.7s ease forwards;
  animation-delay: 0.1s;
}

.hero-eyebrow-mark { color: var(--orange); font-size: 10px; }

.hero-title {
  margin: 0;
  max-width: 720px;
  color: #fff;
  font-size: clamp(32px, 4vw, 62px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.04em;
  word-break: keep-all;
  overflow-wrap: normal;
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.7s ease forwards;
  animation-delay: 0.22s;
}

.hero-description {
  max-width: 560px;
  margin-top: 16px;
  color: rgba(255,255,255,0.74);
  font-size: 17px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.7s ease forwards;
  animation-delay: 0.34s;
}

/* 영상이 바뀔 때 문구만 짧게 페이드 전환 */
.hero-copy.is-swapping .hero-eyebrow,
.hero-copy.is-swapping .hero-title,
.hero-copy.is-swapping .hero-description {
  transition: opacity 0.22s ease;
  opacity: 0;
  animation: none;
  transform: none;
}

/* ---- 하단 브랜드 시그니처 타이포그래피 ---- */
.hero-brand-signature {
  position: absolute;
  left: 48px;
  bottom: 36px;
  z-index: 6;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.7s ease forwards;
  animation-delay: 0.46s;
}

.signature-line {
  display: block;
  width: 72px;
  height: 72px;
  border-left: 5px solid var(--orange);
  border-top: 5px solid var(--orange);
}

.signature-text {
  font-size: clamp(35px, 4.8vw, 76px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.signature-logo {
  color: var(--orange);
  font-size: clamp(30px, 4vw, 66px);
  line-height: 0.95;
  font-style: italic;
  font-weight: 900;
}

/* ---- 우측 하단 전문가 누끼 이미지 ---- */
.hero-experts {
  position: absolute;
  right: 40px;
  bottom: 0;
  z-index: 6;
  width: min(520px, 40vw);
  /* 실제 인물 이미지(pro.png)가 가로형이라 세로로 긴 상자 대신
     이미지 실제 비율(1570:1001)에 맞춰 빈 여백 없이 꽉 차게 표시 */
  aspect-ratio: 1570 / 1001;
  pointer-events: none;
  opacity: 0;
  transform: translate(40px, 25px);
  animation: expertReveal 0.8s ease forwards;
  animation-delay: 0.58s;
}

.expert-panel {
  position: absolute;
  bottom: 0;
  width: 24%;
  background: linear-gradient(180deg, rgba(245,115,39,0.52), rgba(245,115,39,0.05));
  backdrop-filter: blur(2px);
}
.expert-panel:nth-child(1) { right: 52%; height: 65%; }
.expert-panel:nth-child(2) { right: 27%; height: 78%; }
.expert-panel:nth-child(3) { right: 2%;  height: 58%; }

.hero-experts-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,0.32));
}

/* 파일이 아직 없을 때: 자리표시자 사각형만 표시 (외부 인물 사진 임의 사용 금지) */
.hero-experts-image.is-fallback {
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 16px;
  object-fit: none;
  filter: none;
}

/* ---- 영상 전환 인디케이터 ---- */
.hero-indicators {
  position: absolute;
  left: 48px;
  bottom: 150px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-indicator {
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease;
}

.hero-indicator::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-indicator.is-active::after {
  transform: scaleX(1);
  transition: transform 4s linear;
}

.hero-indicator:hover { background: rgba(255,255,255,0.55); }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes expertReveal {
  from { opacity: 0; transform: translate(40px, 25px); }
  to   { opacity: 1; transform: translate(0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero-title, .hero-description, .hero-brand-signature, .hero-experts {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-video-layer { transition: none; }
  .hero-indicator.is-active::after { transition: none; }
  .hero-copy.is-swapping .hero-eyebrow,
  .hero-copy.is-swapping .hero-title,
  .hero-copy.is-swapping .hero-description {
    transition: none;
    opacity: 1;
  }
}

/* ================= 신뢰 지표 + 로고 티커 ================= */
.trust-section {
  background: #fff;
  padding: 90px 32px 100px;
}

.trust-heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.trust-sentence {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #8c8c8c;
}

.trust-sentence .highlight {
  font-weight: 700;
  color: #121212;
}

.trust-caption {
  margin-top: 14px;
  font-size: 14px;
  color: #b3b3b3;
}

.ticker-row {
  margin-top: 44px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-ltr 32s linear infinite;
}

.ticker-row.reverse .ticker-track {
  animation-name: marquee-rtl;
  animation-duration: 36s;
}

.ticker-row:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  flex: none;
  width: 168px;
  height: 82px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #b0b0b0;
}

.ticker-item img {
  max-width: 75%;
  max-height: 55%;
  object-fit: contain;
}

@keyframes marquee-ltr {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marquee-rtl {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ================= 왜 우리를 선택해야 하는가 ================= */
.why-section {
  background: #fafafa;
  padding: 110px 32px 120px;
}

.why-heading {
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}

.why-eyebrow {
  font-size: 16px;
  font-weight: 600;
  color: #666;
}

.why-title {
  margin-top: 6px;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.8px;
  color: #121212;
}

.why-desc {
  margin-top: 26px;
  font-size: 16px;
  font-weight: 500;
  color: #474747;
  line-height: 1.6;
}

.why-grid {
  max-width: 1080px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}

.why-card-text { padding: 26px 24px 22px; }

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.why-card p {
  margin-top: 10px;
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

.why-card-image {
  width: 100%;
  height: 200px;
  margin-top: auto;
  overflow: hidden;
}

.why-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.why-card:hover .why-card-image img { transform: scale(1.04); }

/* ---- 6번 카드: 배경 이미지 강조형 ---- */
.why-card-featured {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  background-image: url("assets/why-choose/why-choose-06-dark.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-size 0.6s ease;
}

.why-card-featured:hover { background-size: 108% auto; }

.why-card-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.76) 100%);
}

.why-card-featured .why-card-content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 32px;
  color: #fff;
}

.why-card-featured .why-card-content h3 {
  color: #fff;
}

.why-card-featured .why-card-content p {
  margin-top: 10px;
  color: rgba(255,255,255,0.78);
}

.why-card-button {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s ease;
}

.why-card-button:hover { background: var(--orange-dark); }
.why-card-button svg { flex: none; transition: transform 0.2s ease; }
.why-card-button:hover svg { transform: translate(2px, -2px); }

/* ================= 업무분야 : Sticky Stacking Cards ================= */
.services-section {
  position: relative;
  overflow: visible;
  background: #fff;
  padding: 110px 0 60px;
}

.services-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
  text-align: left;
  gap: 24px;
}

.services-heading-copy {
  width: auto;
  max-width: 640px;
  margin: 0;
  text-align: left;
}

.services-eyebrow {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  margin-left: 0;
  text-align: left;
}

.services-heading-copy h2 {
  margin-top: 6px;
  margin-left: 0;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.8px;
  color: #121212;
  text-align: left;
}

.services-heading-copy p {
  margin-top: 26px;
  margin-left: 0;
  font-size: 16px;
  font-weight: 500;
  color: #474747;
  line-height: 1.6;
  text-align: left;
}

.services-view-more {
  flex: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  padding-bottom: 24px;
  transition: color 0.2s ease;
}

.services-view-more:hover { color: var(--orange); }

.services-stack {
  position: relative;
  width: 100%;
  overflow: visible;
  max-width: 1080px;
  margin: 64px auto 0;
  padding: 0 32px 10vh;
  box-sizing: border-box;
}

/* 카드마다 별도 wrapper 없이, 카드 자신의 height(+margin-bottom)가 곧 스크롤 예약 공간이 된다.
   .service-card는 .services-stack의 직계 형제로만 존재한다. */
.service-card {
  /* ↓↓↓ Sticky Stacking 관련 속성 — 절대 변경하지 않음 ↓↓↓ */
  position: sticky;
  top: calc(var(--header-h) + 16px);
  width: 100%;
  height: calc(100vh - var(--header-h) - 32px);
  min-height: 600px;
  max-height: 760px;
  margin-bottom: 80px;
  will-change: transform;
  transition: transform 0.1s linear;
  /* ↑↑↑ Sticky Stacking 관련 속성 — 절대 변경하지 않음 ↑↑↑ */
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  background: #08090a;
  display: flex;
  align-items: center;
  padding: 56px;
  box-sizing: border-box;
  box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.12);
}

.service-card:last-child { margin-bottom: 0; }

.service-card-background {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 48%, rgba(0,0,0,0.46) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.52) 100%);
}

.service-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.service-card-text { max-width: 560px; color: #fff; }

.service-card-text h3 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
}

.service-card-key {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}

.service-card-desc {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

.service-card-tags {
  flex: none;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 210px;
}

.service-card-tags li {
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.service-card-tags li:hover {
  background: var(--orange-dark);
  transform: translateX(-4px);
}

/* ================= 원패스 솔루션 ================= */
.solution-section {
  background: #fff;
  padding: 110px 32px 130px;
}

.solution-header {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.solution-heading-copy {
  width: auto;
  margin: 0;
}

.solution-viewmore {
  flex: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  padding-bottom: 24px;
  transition: color 0.2s ease;
}

.solution-viewmore:hover { color: var(--orange); }

.solution-body {
  max-width: 1080px;
  margin: 56px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 56px;
}

.accordion {
  flex: 1 1 55%;
  border-top: 1px solid #e5e5e5;
}

.solution-media {
  flex: 1 1 45%;
  position: sticky;
  top: 110px;
  aspect-ratio: 490 / 654;
  border-radius: 16px;
  overflow: hidden;
  background: #eee;
}

.solution-media-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.solution-media-item.is-active {
  opacity: 1;
}

.solution-media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.accordion-mobile-image { display: none; }

.accordion-item { border-bottom: 1px solid #e5e5e5; }

.accordion-head {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 26px 4px;
  text-align: left;
  cursor: pointer;
}

.accordion-num {
  font-size: 15px;
  color: #666;
  flex: none;
  width: 28px;
  padding-top: 4px;
  transition: color 0.2s ease;
}

.accordion-title {
  flex: 1;
  min-width: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #121212;
  word-break: keep-all;
  overflow-wrap: break-word;
  transition: color 0.2s ease;
}

.accordion-head:hover .accordion-title { color: var(--orange); }

/* 활성(열린) 항목은 hover가 빠져도 번호/제목/아이콘이 계속 포인트 컬러로 표시됨 */
.accordion-item.is-open .accordion-num,
.accordion-item.is-open .accordion-title,
.accordion-item.is-open .accordion-icon {
  color: var(--orange);
}

.accordion-icon {
  flex: none;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: #999;
  transition: transform 0.3s ease, color 0.2s ease;
}

.accordion-item.is-open .accordion-icon { transform: rotate(45deg); }

.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.accordion-body-inner { overflow: hidden; }

.accordion-item.is-open .accordion-body { grid-template-rows: 1fr; }

.accordion-body-inner p {
  padding: 0 4px 26px 52px;
  font-size: 15px;
  line-height: 1.7;
  color: #777;
}

/* ================= 고객공감 후기 ================= */
.review-section {
  background: #fff;
  padding: 0 32px 130px;
  margin-top: -50px;
}

.review-header {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.review-heading-copy {
  width: auto;
  max-width: 640px;
  margin: 0;
  text-align: left;
}

.review-eyebrow {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  text-align: left;
}

.review-title-main {
  margin-top: 6px;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.8px;
  color: #121212;
  text-align: left;
}

.review-grid {
  max-width: 1080px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: #f7f7f7;
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}

.review-tag {
  align-self: flex-start;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}

.review-title {
  margin-top: 20px;
  font-size: 19px;
  font-weight: 700;
  color: #121212;
  line-height: 1.4;
}

.review-desc {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #666;
  line-height: 1.7;
}

.review-client {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* ================= OOB CONTENT ARCHIVE ================= */
.blog-section {
  background: #fff;
  padding: 100px 32px 130px;
}

.blog-header {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.blog-heading-copy {
  width: auto;
  max-width: 640px;
  margin: 0;
  text-align: left;
}

.blog-eyebrow {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  text-align: left;
}

.blog-title-main {
  margin-top: 6px;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.8px;
  color: #121212;
  text-align: left;
}

.blog-desc {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #777;
  line-height: 1.7;
}

.blog-grid {
  max-width: 1080px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-thumb {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: #f2f2f2;
}

.blog-thumb:focus-visible,
.blog-card-title a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.04);
}

.blog-card.is-disabled .blog-thumb,
.blog-card.is-disabled .blog-card-title a {
  cursor: default;
}
.blog-card.is-disabled:hover .blog-thumb img { transform: none; }

.blog-category {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}

.blog-card-title {
  margin-top: 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: #121212;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--orange);
}

.blog-date {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #999;
}

/* ================= 문의 CTA 배너 ================= */
.footer-cta {
  position: relative;
  width: 100%;
  padding: 140px 32px;
  background: #1a1a1a url('assets/footer/footer-contact-bg.jpg') center / cover no-repeat;
}

.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.footer-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.footer-cta-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

.footer-cta-desc {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.footer-cta-btn {
  display: inline-block;
  margin-top: 36px;
  padding: 16px 40px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.footer-cta-btn:hover { background: var(--orange-dark); }

/* ================= 푸터 ================= */
.site-footer {
  background: #fff;
  padding: 80px 32px 0;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-logo img { height: 32px; width: auto; }

.footer-cs-label {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--orange);
}

.footer-phone {
  font-size: 24px;
  font-weight: 700;
  color: #121212;
  transition: color 0.2s ease;
}

.footer-phone:hover { color: var(--orange); }

.footer-inquiry-btn {
  display: inline-block;
  padding: 10px 22px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.footer-inquiry-btn:hover { background: var(--orange-dark); }

.footer-info {
  margin-top: 6px;
  padding-left: 0;
  list-style: none;
  font-size: 13px;
  line-height: 1.9;
  color: #777;
}

.footer-info a { color: #777; transition: color 0.2s ease; }
.footer-info a:hover { color: var(--orange); }

.footer-right {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}

.footer-experts-wrap {
  width: 420px;
  max-width: 100%;
  height: 280px;
}

.footer-experts {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

.footer-experts.is-fallback {
  background: #f2f2f2;
  border: 1px dashed #ccc;
  border-radius: 16px;
  object-fit: none;
}

.footer-bottom {
  margin-top: 48px;
  background: #1c1f26;
  padding: 20px 32px;
}

.footer-bottom-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal { display: flex; gap: 16px; }

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer-legal a:hover { color: #fff; }
.footer-legal a.active { color: #fff; text-decoration: underline; }

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ================= 서비스 상세페이지 공통 ================= */
.service-hero {
  position: relative;
  margin-top: var(--header-h);
  height: 56vh;
  min-height: 420px;
  max-height: 620px;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 48px;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.service-breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.service-breadcrumb a { color: rgba(255, 255, 255, 0.7); transition: color 0.2s ease; }
.service-breadcrumb a:hover { color: #fff; }
.service-breadcrumb .is-current { color: #fff; font-weight: 700; }
.service-breadcrumb-sep { color: rgba(255, 255, 255, 0.4); }

.service-intro {
  padding: 140px 32px;
  text-align: center;
}

.service-intro-inner { max-width: 760px; margin: 0 auto; }

.service-intro-eyebrow {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
}

.service-intro-label {
  margin-top: 10px;
  font-size: 40px;
  font-weight: 700;
  color: #121212;
}

.service-intro-heading {
  margin-top: 40px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #121212;
}

.service-intro-desc {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #777;
  white-space: pre-line;
}

.service-fields {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-field-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background: #f2f2f2;
}

.service-field-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-field-card:hover img { transform: scale(1.06); }

.service-field-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0) 55%);
  pointer-events: none;
}

.service-field-title {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
}

.service-feature {
  position: relative;
  background-color: #14151a;
  background-size: cover;
  background-position: center;
  padding: 130px 32px;
}

.service-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.service-feature-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.service-feature-eyebrow {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
}

.service-feature-title {
  margin-top: 10px;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
}

.service-feature-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
  text-align: left;
}

.service-feature-item { display: flex; gap: 18px; }

.service-feature-no {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
}

.service-feature-item-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.service-feature-item-desc {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.service-expert {
  max-width: 1080px;
  margin: 0 auto;
  padding: 140px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.service-expert-copy { flex: 1; max-width: 420px; }

.service-expert-eyebrow {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
}

.service-expert-title {
  margin-top: 10px;
  font-size: 34px;
  font-weight: 700;
  color: #121212;
}

.service-expert-experience {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--orange);
}

.service-expert-desc {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #666;
  white-space: pre-line;
}

.service-expert-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 26px;
}

.service-expert-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #888;
  padding: 0 16px;
  border-left: 1px solid #ddd;
}

.service-expert-tag:first-child {
  padding-left: 0;
  border-left: none;
}

.service-expert-visual {
  flex-shrink: 0;
  width: 420px;
  height: 460px;
}

.service-expert-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

.service-expert-image.is-fallback {
  background: #f2f2f2;
  border: 1px dashed #ccc;
  border-radius: 16px;
  object-fit: none;
}

/* ================= 서비스 하위 페이지 공통 세로 여백 =================
   .service-intro / .service-fields / .service-feature / .service-expert는
   service-template.js에서만 쓰이는 클래스라 4개 서비스 페이지(디자인/영상편집/
   촬영/AI) 전체에 그대로 적용됨(메인페이지 등 다른 곳에 영향 없음).
   .trust-section / .blog-section은 메인페이지(index.html)와도 공유하는 클래스라
   body.service-detail-page로 범위를 한정해서 서비스 페이지에서만 적용함. */
.service-intro { padding-top: 88px; padding-bottom: 56px; }
.service-fields { padding-bottom: 0; }
.service-feature { padding-top: 80px; padding-bottom: 80px; }
.service-expert { padding-top: 76px; padding-bottom: 76px; }

body.service-detail-page .trust-section { padding-top: 88px; padding-bottom: 88px; }
body.service-detail-page .blog-section { padding-top: 0; }

/* 디자인 페이지 전용: 모바일에서 캐릭터보다 텍스트를 먼저 보여주는 순서만 유지
   (다른 서비스 페이지는 기존대로 캐릭터 이미지가 먼저 나옴) */

/* ================= 포트폴리오 갤러리 ================= */
.portfolio-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 32px 130px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: inherit;
  animation: pfFadeIn 0.35s ease both;
}

@keyframes pfFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.portfolio-card-thumb {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: #eee;
}

.portfolio-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-card-thumb img { transform: scale(1.04); }

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  transition: background 0.25s ease;
}

.portfolio-card:hover .portfolio-card-overlay { background: rgba(0, 0, 0, 0.35); }

.portfolio-card-view {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.portfolio-card:hover .portfolio-card-view { opacity: 1; transform: none; }

.portfolio-card-body {
  padding-top: 14px;
  min-height: 54px;
}

.portfolio-card-cat {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
}

.portfolio-card-title {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #121212;
  line-height: 1.4;
}

/* ================= 포트폴리오 상세 모달 ================= */
.pf-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.pf-modal-overlay.is-open { opacity: 1; pointer-events: auto; }

.pf-modal {
  width: min(920px, 100%);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(12px);
  transition: transform 0.25s ease;
}

.pf-modal-overlay.is-open .pf-modal { transform: none; }

.pf-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 20px;
  border-bottom: 1px solid #eee;
}

.pf-modal-cat {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
}

.pf-modal-title {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 700;
  color: #121212;
}

.pf-modal-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #f5f5f5;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  color: #333;
  cursor: pointer;
  transition: background 0.2s ease;
}

.pf-modal-close:hover { background: #ececec; }

.pf-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
}

.pf-modal-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f2f2f2;
}

.pf-modal-image {
  display: block;
  width: 100%;
  height: auto;
}

.pf-modal-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  background: #f2f2f2;
  color: #999;
  font-size: 14px;
}

.pf-modal-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.pf-modal-video-wrap video,
.pf-modal-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.pf-modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.pf-modal-arrow:hover { background: rgba(0, 0, 0, 0.65); }
.pf-modal-arrow-prev { left: 12px; }
.pf-modal-arrow-next { right: 12px; }

.pf-modal-thumbs {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pf-modal-thumb {
  width: 64px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: #eee;
}

.pf-modal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pf-modal-thumb.active { border-color: var(--orange); }

.pf-modal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-top: 1px solid #eee;
}

.pf-modal-nav-btn {
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.2s ease;
}

.pf-modal-nav-btn:hover { color: var(--orange); }
.pf-modal-nav-btn:disabled { opacity: 0.35; cursor: default; }

/* ================= 고객 사례 ================= */
.client-hero {
  justify-content: flex-end;
  padding-right: 40px;
}

.client-hero-label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.client-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 32px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.client-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: left;
  border: none;
  background: #f7f7f7;
  border-radius: 18px;
  padding: 28px 26px;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.client-card-tag {
  align-self: flex-start;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}

.client-card-title {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 700;
  color: #121212;
  line-height: 1.4;
}

.client-card-summary {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.client-card-meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #e5e5e5;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.client-card-meta span { color: #999; font-weight: 500; }

.client-pagination {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px 100px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.client-page-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: #f5f5f5;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.client-page-btn:hover { background: #ececec; }

.client-page-btn.active { background: var(--orange); color: #fff; }

.client-modal-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #999;
  margin-bottom: 24px;
}

.client-modal-section + .client-modal-section { margin-top: 24px; }

.client-modal-section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
}

.client-modal-section-body {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: #444;
}

/* ================= 고객지원 하위페이지 공통 ================= */
.support-hero {
  justify-content: flex-end;
  padding-right: 40px;
}

/* ================= 문의 페이지(견적상담/제휴) 상단 히어로 + 겹침 카드 =================
   1920x800px 권장 배경 이미지 위에 오버레이 + 흰 문구, 그 아래 흰 카드가 살짝 겹쳐 올라온다.
   이미지가 없어도 background-color(#1a1a1a)로 자연스럽게 대체되어 깨진 이미지가 보이지 않는다. */
.inquiry-hero {
  position: relative;
  margin-top: var(--header-h);
  height: 38vw;
  min-height: 300px;
  max-height: 420px;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.inquiry-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.inquiry-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.inquiry-hero-title {
  max-width: 640px;
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.5;
}

.inquiry-card {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: -72px auto 0;
  background: #fff;
  border-radius: 24px;
  border-top: 4px solid var(--orange);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
  padding: 48px 56px;
}

.inquiry-card-eyebrow {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
}

.inquiry-card-title {
  margin-top: 10px;
  font-size: 34px;
  font-weight: 700;
  color: #121212;
}

.inquiry-card-desc {
  margin-top: 16px;
  max-width: 640px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #666;
}

.support-breadcrumb {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
}

.support-breadcrumb .sep { margin: 0 8px; color: rgba(255, 255, 255, 0.4); }
.support-breadcrumb .current { color: #fff; font-weight: 700; }

.support-title-section {
  background: #fff;
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.support-title-left { flex-shrink: 0; }

.support-title-eyebrow {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
}

.support-title-main {
  margin-top: 10px;
  font-size: 40px;
  font-weight: 700;
  color: #121212;
}

.support-title-desc {
  max-width: 480px;
  padding-top: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #666;
}

/* ================= 문의 폼 공통 ================= */
.partnership-steps {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 32px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.partnership-step {
  background: #f7f7f7;
  border-radius: 14px;
  padding: 24px 20px;
}

.partnership-step-no {
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
}

.partnership-step-title {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #121212;
}

.partnership-step-desc {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: #777;
}

.inquiry-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 32px 120px;
}

.inquiry-form-head {
  text-align: center;
  margin-bottom: 44px;
}

.inquiry-form-title {
  font-size: 26px;
  font-weight: 700;
  color: #121212;
}

.inquiry-form-desc {
  margin-top: 10px;
  font-size: 15px;
  color: #777;
}

.form-hidden-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-fieldset { margin-bottom: 48px; }

.form-fieldset-title {
  font-size: 18px;
  font-weight: 700;
  color: #121212;
  padding-bottom: 14px;
  border-bottom: 2px solid #121212;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row.single { grid-template-columns: 1fr; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-row .form-group { margin-bottom: 0; }

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.form-label .required,
.form-consent-left .required { color: var(--orange); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  color: #121212;
  background: #fff;
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { outline: none; border-color: var(--orange); }

.form-textarea { min-height: 140px; resize: vertical; }

.form-input.is-invalid,
.form-select.is-invalid,
.form-textarea.is-invalid { border-color: #e0342c; }

.form-error {
  min-height: 16px;
  font-size: 12px;
  color: #e0342c;
}

.form-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.checkbox-pill,
.radio-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #444;
  cursor: pointer;
}

.checkbox-pill input,
.radio-pill input { accent-color: var(--orange); width: 16px; height: 16px; }

.form-file {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.form-file input[type="file"] {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-file-btn {
  padding: 10px 20px;
  border-radius: 8px;
  background: #f5f5f5;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: background 0.2s ease;
}

.form-file-btn:hover { background: #ececec; }

.form-file-name { font-size: 13px; color: #888; }

.form-consent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 20px;
  background: #f7f7f7;
  border-radius: 10px;
}

.form-consent-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
}

.form-consent-left input { accent-color: var(--orange); width: 18px; height: 18px; }

.consent-toggle {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
}

.consent-terms {
  margin-top: 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.7;
  color: #666;
}

.inquiry-submit-error {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fdecec;
  color: #c0392b;
  font-size: 14px;
  line-height: 1.5;
}

.form-submit-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 16px;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.form-submit-btn:hover { background: var(--orange-dark); }
.form-submit-btn:disabled { opacity: 0.6; cursor: default; }

.inquiry-success {
  text-align: center;
  padding: 80px 20px;
}

.inquiry-success-title {
  font-size: 22px;
  font-weight: 700;
  color: #121212;
}

.inquiry-success-desc {
  margin-top: 12px;
  font-size: 15px;
  color: #777;
}

/* ================= 약관/정책 페이지 공통 ================= */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px 120px;
}

.legal-updated {
  font-size: 14px;
  color: #999;
  margin-bottom: 48px;
}

.legal-section { margin-bottom: 40px; }

.legal-section-title {
  font-size: 19px;
  font-weight: 700;
  color: #121212;
  margin-bottom: 14px;
}

.legal-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
}

.legal-section ul {
  padding-left: 20px;
  margin-top: 8px;
}

.legal-section li {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 6px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  border: 1px solid #e5e5e5;
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: #f7f7f7;
  font-weight: 700;
  color: #333;
}

.legal-table td { color: #555; }

.legal-contact-box {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 24px;
  margin-top: 12px;
}

.legal-contact-box p {
  margin-bottom: 6px;
  font-size: 15px;
  color: #444;
}

.legal-contact-box p:last-child { margin-bottom: 0; }

.legal-notice {
  font-size: 14px;
  color: #999;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

/* ================= 우측 플로팅 버튼 ================= */
.fab-toolbar {
  position: fixed;
  right: 30px;
  bottom: 40px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.fab-btn {
  width: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px;
  border-radius: 12px;
  color: var(--text-dark);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.fab-btn span { font-size: 11px; font-weight: 600; }

.fab-btn:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.fab-top { border-top: 1px solid #eee; padding-top: 12px; }

/* ================= 서브페이지 공통 ================= */
.sub-page { background: #fff; }

.page-hero {
  padding: calc(var(--header-h) + 64px) 32px 40px;
  max-width: 1080px;
  margin: 0 auto;
}

.page-hero-eyebrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-hero-title {
  margin-top: 8px;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.6px;
}

.page-hero-desc {
  margin-top: 10px;
  font-size: 16px;
  color: #777;
}

/* ================= 아카이브 필터 ================= */
.archive-filter {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 9px 18px;
  border-radius: 999px;
  background: #f5f5f5;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.filter-tab:hover { background: #ececec; }

.filter-tab.active {
  background: var(--orange);
  color: #fff;
}

/* ================= 아카이브 그리드 ================= */
.archive-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 32px 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.archive-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #999;
  padding: 60px 0;
}

.archive-card {
  display: block;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.archive-card.is-disabled { cursor: default; }
.archive-card.is-disabled:hover { transform: none; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.archive-card.is-disabled:hover .archive-card-thumb img { transform: none; }

.archive-card-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}

.archive-card-external {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

.archive-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.archive-card:hover .archive-card-thumb img { transform: scale(1.06); }

.archive-card-body { padding: 18px 18px 22px; }

.archive-card-cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
}

.archive-card-title {
  margin-top: 6px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.4;
}

.archive-card-summary {
  margin-top: 8px;
  font-size: 14px;
  color: #888;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.archive-card-date {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: #b3b3b3;
}

/* ================= 아카이브 상세 ================= */
.detail-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 56px) 32px 120px;
}

.detail-back {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  margin-bottom: 20px;
  transition: color 0.2s ease;
}
.detail-back:hover { color: var(--orange); }

.detail-cat {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
}

.detail-title {
  margin-top: 10px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.4;
}

.detail-date {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #aaa;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}

.detail-gallery {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-gallery img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.detail-body {
  margin-top: 36px;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

.detail-body p { margin-bottom: 20px; }

.detail-notfound {
  padding: calc(var(--header-h) + 120px) 32px 160px;
  text-align: center;
  color: #999;
}

/* ================= 반응형 ================= */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(320px, 85vw);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 90px 24px 32px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 210;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
  }
  .main-nav.is-open { transform: translateX(0); }

  .mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    font-size: 22px;
    line-height: 1;
    color: var(--text-dark);
    border-radius: 50%;
    background: #f5f5f5;
  }

  .nav-item { height: auto; display: block; width: 100%; }

  .main-nav > a {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-item > a::after {
    content: '';
    width: 8px; height: 8px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    background: none;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-left: 8px;
  }

  .nav-item.is-expanded > a::after { transform: rotate(-135deg); }

  .nav-dropdown {
    position: static;
    width: 100%;
    background: none;
    border-top: none;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .nav-item.is-expanded .nav-dropdown { max-height: 600px; }

  .nav-dropdown-inner {
    max-width: none;
    margin: 0;
    padding: 4px 0 12px 12px;
    justify-content: flex-start;
    gap: 4px 20px;
  }

  .header-inner { padding: 0 20px; }
  .cta-pill { padding: 10px 16px; }
  .cta-pill .cta-full { display: none; }
  .cta-pill .cta-short { display: inline; }
  .fab-toolbar { right: 16px; bottom: 20px; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-sentence { font-size: 22px; }
  .trust-section { padding: 64px 24px 70px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-title { font-size: 30px; }
  .why-section { padding: 70px 24px 80px; }
  .services-section { padding: 70px 0 0; }
  .services-heading { flex-direction: column; align-items: flex-start; gap: 16px; padding: 0 24px; }
  .services-view-more { padding-bottom: 0; }
  .services-stack { padding: 0 24px 10vh; }
  .service-card {
    max-height: none;
    padding: 32px 24px;
  }
  .service-card-content { flex-direction: column; align-items: flex-start; gap: 24px; }
  .service-card-text h3 { font-size: 30px; }
  .service-card-tags { flex-direction: row; flex-wrap: wrap; width: 100%; }
  .service-card-tags li { flex: 1 1 calc(50% - 8px); }
  .solution-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .solution-viewmore { padding-bottom: 0; }
  .solution-section { padding: 70px 24px 90px; }
  .accordion-title { font-size: 18px; }
  .solution-body { flex-direction: column; gap: 0; }
  .solution-media { display: none; }
  .accordion-mobile-image {
    display: block;
    margin-top: 20px;
    aspect-ratio: 490 / 654;
    border-radius: 16px;
    overflow: hidden;
    background: #eee;
  }
  .accordion-mobile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .review-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .review-section { padding: 0 24px 90px; margin-top: -34px; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .blog-section { padding: 70px 24px 90px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cta { padding: 90px 24px; }
  .footer-cta-title { font-size: 26px; }
  .footer-cta-desc { font-size: 15px; }
  .site-footer { padding: 64px 24px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .footer-right { width: 100%; justify-content: center; }
  .footer-experts-wrap { width: 100%; max-width: 360px; height: 220px; margin: 0 auto; }
  .footer-bottom { margin-top: 40px; padding: 18px 24px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .service-hero { height: 42vh; min-height: 320px; padding-bottom: 32px; }
  .service-intro { padding: 64px 24px 48px; }
  .service-intro-label { font-size: 30px; }
  .service-intro-heading { font-size: 24px; }
  .service-fields { grid-template-columns: 1fr; padding: 0 24px 0; gap: 20px; }
  .service-feature { padding: 64px 24px; }
  .service-feature-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-expert { flex-direction: column; padding: 64px 24px; gap: 32px; }
  .service-expert-copy { max-width: 100%; }
  .service-expert-visual { order: -1; width: 100%; max-width: 360px; height: 320px; margin: 0 auto; }
  .service-expert-tags { justify-content: flex-start; }
  body.service-detail-page .trust-section { padding-top: 64px; padding-bottom: 64px; }
  body.service-detail-page .blog-section { padding-top: 0; }

  /* 디자인 서비스 페이지 전용: 모바일 캐릭터-텍스트 순서만 (다른 서비스 페이지는 기존대로 캐릭터가 먼저 나옴) */
  body.page-service-design .service-expert-visual { order: 0; }

  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-modal-overlay { padding: 12px; }
  .pf-modal { max-height: 92vh; border-radius: 16px; }
  .pf-modal-head { padding: 20px 20px 16px; }
  .pf-modal-body { padding: 18px 20px; }
  .pf-modal-nav { padding: 14px 20px; }
  .client-hero { padding-right: 24px; }
  .client-grid { grid-template-columns: repeat(2, 1fr); padding: 24px 24px 50px; }
  .support-hero { padding-right: 24px; }
  .support-title-section { flex-direction: column; padding: 40px 24px; gap: 20px; }
  .support-title-desc { max-width: 100%; }
  .partnership-steps { grid-template-columns: 1fr; padding: 32px 24px 0; }
  .inquiry-form-wrap { padding: 44px 24px 90px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .inquiry-hero { height: 46vw; min-height: 260px; }
  .inquiry-hero-inner { padding: 0 24px; }
  .inquiry-card { margin: -48px 24px 0; padding: 32px 28px; border-radius: 18px; }
  .inquiry-card-title { font-size: 26px; }
}

/* 767px 이하에서도 Sticky Stacking을 그대로 유지하되, 모바일 헤더 높이에 맞춰 top만 재조정한다. */
@media (max-width: 767px) {
  .service-card {
    top: calc(var(--header-h) + 24px);
  }

  /* ---- 비디오 히어로 모바일 재배치 ---- */
  .video-hero {
    height: calc(100svh - var(--header-h));
    min-height: 650px;
  }
  .hero-content { padding: 0 20px; }
  .hero-copy {
    left: 20px;
    right: 20px;
    bottom: 180px;
    width: auto;
    /* 인물 이미지와 위치가 겹치는 구간에서도 텍스트가 항상 위에 보이도록 */
    z-index: 7;
  }
  .hero-experts {
    right: -20px;
    width: 62vw;
  }
  .hero-experts-image { opacity: 0.55; }
  .hero-brand-signature {
    left: 20px;
    bottom: 32px;
    max-width: calc(100% - 40px);
  }
  .signature-line { width: 36px; height: 44px; }
  .signature-text { font-size: 28px; }
  .signature-logo { font-size: 26px; }
  .hero-indicators { left: 20px; bottom: 150px; }
}

@media (prefers-reduced-motion: reduce) {
  .service-card { transition: none; }
  .main-nav, .mobile-nav-backdrop, .nav-dropdown, .menu-toggle-bar { transition: none; }
}

@media (max-width: 560px) {
  .archive-grid { grid-template-columns: 1fr; }
  .detail-title { font-size: 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: 1fr; }

  /* 서비스 하위 페이지 공통 (디자인/영상편집/촬영/AI 전체 적용) */
  .service-intro { padding-top: 48px; padding-bottom: 36px; }
  .service-intro-desc { margin-top: 16px; }
  .service-feature { padding-top: 48px; padding-bottom: 48px; }
  .service-expert { padding-top: 48px; padding-bottom: 48px; }
  body.service-detail-page .trust-section { padding-top: 48px; padding-bottom: 48px; }

  .inquiry-hero { min-height: 220px; }
  .inquiry-card { margin: -32px 16px 0; padding: 28px 20px; }
  .inquiry-card-title { font-size: 22px; }
}
