/* v2 preview — 기존 1~10 sections CSS와 분리 */
:root {
  --v2-bg: var(--bg-color, #0b1120);
  --v2-text: var(--text-color, #f8fafc);
  --v2-point: var(--point-color, #38bdf8);
  --v2-card: var(--card-bg, #1e293b);
  --v2-point-a16: rgba(56, 189, 248, 0.16);
  --v2-point-a22: rgba(56, 189, 248, 0.22);
  --v2-point-a28: rgba(56, 189, 248, 0.28);
  --v2-point-a35: rgba(56, 189, 248, 0.35);
  --v2-point-a40: rgba(56, 189, 248, 0.4);
  --v2-point-a50: rgba(56, 189, 248, 0.5);
  --v2-point-grad-end: #6366f1;
}

.v2-main { padding-bottom: 120px; padding-top: 0; min-width: 0; }
.v2-mod { min-width: 0; }
.v2-main .v2-mod + .v2-mod { margin-top: 2rem; }
.v2-main > .v2-mod-brand:first-child {
  margin-top: 1.75rem;
  padding-top: 0.5rem;
}
.v2-hero-identity + .v2-main {
  padding-top: 0;
}

/* 풀스크린 헤더: 첫 화면에서는 하단 네비 숨김 → 스크롤 시 등장 */
.v2-nav-scroll-reveal .glass-nav-fixed {
  transform: translateX(-50%) translateY(calc(100% + 24px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.28s ease,
    visibility 0.38s;
}
.v2-nav-scroll-reveal.v2-nav-visible .glass-nav-fixed {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.v2-nav-scroll-reveal:not(.v2-nav-visible) .glass-nav-fixed .nav-center-btn {
  pointer-events: none;
}

.v2-main h3.v2-mod-label {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  opacity: 0.95;
  line-height: 1.35;
  margin: 0 0 14px;
  color: var(--v2-text);
  position: relative;
  padding-left: 14px;
}
.v2-main h3.v2-mod-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 16px;
  margin-top: -8px;
  border-radius: 999px;
  background: var(--v2-point);
  box-shadow: 0 0 12px var(--v2-point-a50);
}
.v2-mod-label {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  opacity: 0.95;
  margin: 0 0 14px;
  color: var(--v2-text);
  line-height: 1.35;
  position: relative;
  padding-left: 14px;
}
.v2-mod-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 16px;
  margin-top: -8px;
  border-radius: 999px;
  background: var(--v2-point);
  box-shadow: 0 0 12px var(--v2-point-a50);
}
.v2-mod-head-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.v2-mod-head-row .v2-mod-label {
  margin: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
}
.v2-mod-more {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--v2-point);
  text-decoration: none;
  background: var(--v2-card);
  border: 1px solid var(--v2-point-a35);
  white-space: nowrap;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.v2-mod-title { font-size: 1.15rem; font-weight: 800; margin: 0 0 8px; color: var(--v2-text); }
.v2-mod-desc { font-size: 0.9rem; line-height: 1.65; opacity: 0.82; margin: 0; color: var(--v2-text); }

/* ── 소개 (그라데이션 패널) ── */
.v2-brand-panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 22px 20px;
  border: 1px solid rgba(148,163,184,.18);
  background: var(--v2-card);
  background: -webkit-linear-gradient(145deg, var(--v2-card) 0%, rgba(255,255,255,.03) 100%);
  background: linear-gradient(145deg, var(--v2-card) 0%, rgba(255,255,255,.03) 100%);
  box-shadow: 0 18px 42px rgba(15,23,42,.28);
}
.v2-brand-panel-deco {
  position: absolute;
  right: -18px;
  top: -18px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--v2-point-a28) 0%, transparent 70%);
  pointer-events: none;
}
.v2-brand-panel .v2-mod-title {
  position: relative;
  z-index: 1;
  font-size: 1.35rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
}
.v2-brand-panel .v2-mod-desc {
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.v2-hero-youtube { position: relative; overflow: hidden; }
.v2-hero-youtube-media { position: relative; width: 100%; }
.v2-hero-youtube-media--cinema { min-height: 300px; }
.v2-hero-youtube-scrim {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, transparent 28%, var(--v2-bg) 100%);
  z-index: 3;
}
.v2-hero-youtube-copy {
  position: relative;
  margin-top: -56px;
  padding: 0 20px 16px;
  z-index: 4;
}
.v2-hero-copy-animate > * {
  opacity: 0;
  transform: translateY(18px);
  animation: v2HeroCopyIn 0.7s ease forwards;
}
.v2-hero-copy-animate > *:nth-child(1) { animation-delay: 0.15s; }
.v2-hero-copy-animate > *:nth-child(2) { animation-delay: 0.28s; }
.v2-hero-copy-animate > *:nth-child(3) { animation-delay: 0.4s; }
.v2-hero-is-live .v2-hero-copy-animate > * { animation-duration: 0.55s; }
@keyframes v2HeroCopyIn {
  to { opacity: 1; transform: translateY(0); }
}
.v2-hero-youtube--clean .v2-hero-youtube-copy--top { padding: 20px 20px 12px; margin-top: 0; }
.v2-hero-youtube--clean .v2-hero-youtube-media--rounded { padding: 0 16px; }
.v2-hero-youtube--bold .v2-hero-youtube-accent {
  height: 6px;
  background: var(--v2-point);
}
.v2-hero-company { font-size: 12px; font-weight: 800; opacity: 0.75; margin: 0 0 6px; color: var(--v2-text); }
.v2-hero-name { font-size: 1.75rem; font-weight: 900; margin: 0; letter-spacing: -0.03em; color: var(--v2-text); }
.v2-hero-title { font-size: 13px; font-weight: 700; opacity: 0.8; color: var(--v2-text); }
.v2-hero-name-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.v2-hero-desc { font-size: 14px; line-height: 1.6; opacity: 0.85; margin: 10px 0 0; color: var(--v2-text); }
.v2-hero-desc--below { padding: 12px 20px 0; }

/* ── 풀스크린 세로 영상 헤더 (template 11) ── */
.v2-hero-fullscreen {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--v2-bg, #000);
  overflow: hidden;
  height: calc(var(--v2-vh, 1vh) * 100);
  min-height: calc(var(--v2-vh, 1vh) * 100);
}
.preview-v2 .v2-hero-fullscreen {
  height: calc(var(--v2-vh, 1vh) * 100 - var(--v2-banner-h, 32px));
  min-height: calc(var(--v2-vh, 1vh) * 100 - var(--v2-banner-h, 32px));
  max-height: calc(var(--v2-vh, 1vh) * 100 - var(--v2-banner-h, 32px));
}
.v2-hero-fullscreen-video {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  background: var(--v2-bg, #000);
  overflow: hidden;
}
.v2-hero-fullscreen-video .bcard-yt-hero-cinema--vertical-full {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.v2-hero-scroll-strip {
  position: relative;
  flex: 0 0 auto;
  z-index: 6;
  pointer-events: none;
}
.v2-hero-scroll-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 72px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.45) 100%);
}
.v2-hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 0 10px;
  background: var(--v2-bg);
  color: var(--v2-text);
  opacity: 0.72;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.v2-hero-scroll-icon {
  font-size: 13px;
  animation: v2ScrollBounce 1.6s ease-in-out infinite;
}
@keyframes v2ScrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(4px); opacity: 1; }
}
.v2-hero-identity {
  position: relative;
  z-index: 2;
  padding: 16px 20px 8px;
  background: var(--v2-bg);
}
.v2-hero-identity .v2-hero-name {
  font-size: 1.5rem;
}
.v2-hero-identity .v2-hero-desc {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
}

/* legacy deck — 다른 hero 변형용 */
.v2-hero-fullscreen-deck { display: none; }
.v2-hero-peek { display: none; }
.v2-hero-deck-gradient { display: none; }

.v2-hero-image { position: relative; min-height: 280px; overflow: hidden; }
.v2-hero-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.v2-hero-image-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, var(--v2-bg) 92%);
}
.v2-hero-image-copy {
  position: relative;
  z-index: 2;
  padding: 120px 20px 24px;
}

.bcard-yt-facade {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
}
.bcard-yt-facade-btn {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  position: relative;
  cursor: pointer;
  background: #000;
}
.bcard-yt-facade-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: inherit;
}
.bcard-yt-facade-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.28);
}
.bcard-yt-facade-play i {
  font-size: 48px;
  color: #fff;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.45));
}
.bcard-yt-facade-title {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.bcard-yt-facade.is-playing iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── 헤더 시네마 (자동재생·루프) ── */
.bcard-yt-hero-cinema {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.bcard-yt-hero-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.bcard-yt-hero-poster {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  transform: scale(1.08);
  animation: v2KenBurns 14s ease-in-out infinite alternate;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.bcard-yt-hero-cinema.is-playing .bcard-yt-hero-poster {
  opacity: 0;
  transform: scale(1);
  animation: none;
}
.bcard-yt-hero-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}
.bcard-yt-hero-cinema.is-unmuted .bcard-yt-hero-iframe {
  pointer-events: auto;
}
.bcard-yt-hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.45) 100%);
  pointer-events: none;
  z-index: 2;
}
.bcard-yt-hero-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255,255,255,.12) 50%, transparent 58%);
  background-size: 220% 100%;
  animation: v2HeroShimmer 3.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
  opacity: 0.55;
}
.bcard-yt-hero-cinema.is-playing .bcard-yt-hero-shimmer { opacity: 0; animation: none; }
.bcard-yt-hero-sound-btn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  appearance: none;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(15,23,42,.72);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bcard-yt-hero-cinema.is-unmuted .bcard-yt-hero-sound-btn { display: none; }
.bcard-yt-hero-cinema--clean {
  border-radius: 18px;
  margin: 0 16px;
  width: calc(100% - 32px);
}
.bcard-yt-hero-cinema--clean .bcard-yt-hero-stage { border-radius: 18px; }

/* 세로(Shorts) 영상 — contain으로 전체 노출, 크롭·검은 마스크 없음 */
.bcard-yt-hero-cinema--vertical-full .bcard-yt-hero-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--v2-bg, #000);
}
.bcard-yt-hero-cinema--vertical-full .bcard-yt-hero-poster {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  animation: none;
}
.bcard-yt-hero-cinema--vertical-full.is-playing .bcard-yt-hero-poster {
  opacity: 0;
}
.bcard-yt-hero-cinema--vertical-full .bcard-yt-hero-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  max-height: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  pointer-events: none;
}
.bcard-yt-hero-cinema--vertical-full.is-unmuted .bcard-yt-hero-iframe {
  pointer-events: auto;
}
.bcard-yt-hero-cinema--vertical-full {
  background: var(--v2-bg, #000);
}
.bcard-yt-hero-cinema--vertical-full .bcard-yt-hero-sound-btn {
  top: calc(8px + env(safe-area-inset-top, 0px));
  bottom: auto;
  right: 10px;
  z-index: 8;
  pointer-events: auto;
}
.bcard-yt-hero-cinema--vertical-full .bcard-yt-hero-vignette {
  display: none;
}
.bcard-yt-hero-cinema--vertical-full .bcard-yt-hero-shimmer {
  display: none;
}

@keyframes v2KenBurns {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}
@keyframes v2HeroShimmer {
  0%, 100% { background-position: 120% 0; }
  50% { background-position: -20% 0; }
}

/* ── 본문 영상 (탭 재생 카드) ── */
.bcard-yt-facade--content {
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,.22);
  box-shadow: 0 16px 40px rgba(15,23,42,.18);
}
.bcard-yt-facade--content .bcard-yt-facade-play {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bcard-yt-facade--content .bcard-yt-facade-play i {
  font-size: 26px;
  color: #dc2626;
  filter: none;
}

/* 본문 영상 — WebView 풀스크린(가로 회전) 호환: transform 조상 제거 */
.v2-mod-video,
.v2-mod-video.is-revealed,
.v2-mod-video.v2-mod-video--playing {
  transform: none !important;
  filter: none !important;
  will-change: auto !important;
}
.v2-mod-video .v2-reveal-child,
.v2-mod-video .v2-video-wrap,
.v2-mod-video .bcard-yt-facade,
.v2-mod-video .bcard-yt-facade.is-playing,
.v2-mod-video .bcard-yt-facade.is-playing iframe {
  transform: none !important;
  filter: none !important;
}
.v2-tpl-12 .v2-mod-video[data-v2-reveal] {
  opacity: 1;
  transform: none !important;
  filter: none !important;
  will-change: auto !important;
}

.v2-services-scroll {
  width: 100%;
  overflow: hidden;
  margin: 0 -4px;
}
.v2-services-track {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  padding: 4px 4px 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.v2-services-track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.v2-service-card {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
  width: 220px;
  margin-right: 12px;
  background: var(--v2-card);
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 20px;
  padding: 18px 16px;
  color: var(--v2-text);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15,23,42,.2);
}
.v2-service-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: -webkit-linear-gradient(90deg, var(--v2-point), var(--v2-point-grad-end));
  background: linear-gradient(90deg, var(--v2-point), var(--v2-point-grad-end));
}
.v2-service-card:last-child { margin-right: 0; }
.v2-service-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--v2-point-a22);
  color: var(--v2-point);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 18px;
  box-shadow: inset 0 0 0 1px var(--v2-point-a28);
}
.v2-service-card h4 { margin: 0 0 6px; font-size: 15px; font-weight: 900; }
.v2-service-card p { margin: 0; font-size: 12px; opacity: .75; line-height: 1.55; }

/* ── 갤러리 (2열 masonry · 높이 변주) ── */
.v2-gallery-masonry {
  column-count: 2;
  -webkit-column-count: 2;
  column-gap: 12px;
  -webkit-column-gap: 12px;
}
.v2-gallery-item {
  display: block;
  width: 100%;
  margin: 0 0 12px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  text-decoration: none;
  color: inherit;
}
.v2-gallery-item-frame {
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,.16);
  background: var(--v2-card);
  box-shadow: 0 10px 28px rgba(15,23,42,.22);
}
.v2-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.v2-gallery-item--tall .v2-gallery-item-frame { height: 248px; }
.v2-gallery-item--medium .v2-gallery-item-frame { height: 176px; }
.v2-gallery-item--short .v2-gallery-item-frame { height: 118px; }
.v2-gallery-item--auto .v2-gallery-item-frame { height: auto; }
.v2-gallery-item--auto img {
  height: auto;
  object-fit: cover;
}
.v2-mod-gallery.is-revealed .v2-gallery-item:nth-child(3n+1) .v2-gallery-item-frame {
  border-radius: 22px 18px 18px 18px;
}
.v2-mod-gallery.is-revealed .v2-gallery-item:nth-child(3n+2) .v2-gallery-item-frame {
  border-radius: 18px 22px 18px 18px;
}

/* ── 핵심 강점 (액센트 리스트) ── */
.v2-mod-strengths {
  padding: 16px 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(148,163,184,.1);
}
.v2-strengths-list { list-style: none; margin: 0; padding: 0; }
.v2-strength-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(148,163,184,.12);
  color: var(--v2-text);
}
.v2-strength-item:last-child { border-bottom: 0; padding-bottom: 0; }
.v2-strength-item:first-child { padding-top: 0; }
.v2-strength-accent {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 4px;
  border-radius: 999px;
  background: -webkit-linear-gradient(180deg, var(--v2-point), var(--v2-point-grad-end));
  background: linear-gradient(180deg, var(--v2-point), var(--v2-point-grad-end));
  box-shadow: 0 0 10px var(--v2-point-a40);
}
.v2-strength-body strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 4px;
}
.v2-strength-body span {
  display: block;
  font-size: 12px;
  opacity: .78;
  line-height: 1.55;
}

.v2-stats-grid {
  overflow: hidden;
  margin: 0 -5px;
}
.v2-stat-card {
  float: left;
  width: 50%;
  box-sizing: border-box;
  padding: 5px;
  text-align: center;
  background: transparent;
  border-radius: 0;
}
.v2-stat-card-inner {
  position: relative;
  overflow: hidden;
  background: var(--v2-card);
  border-radius: 18px;
  padding: 16px 10px;
  color: var(--v2-text);
  border: 1px solid rgba(148,163,184,.14);
  box-shadow: 0 10px 24px rgba(15,23,42,.18);
}
.v2-stat-card-inner::after {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--v2-point-a16);
  pointer-events: none;
}
.v2-stat-card:nth-child(1) .v2-stat-card-inner,
.v2-stat-card:nth-child(4) .v2-stat-card-inner {
  background: -webkit-linear-gradient(145deg, var(--v2-card) 0%, rgba(255,255,255,.04) 100%);
  background: linear-gradient(145deg, var(--v2-card) 0%, rgba(255,255,255,.04) 100%);
}
.v2-stat-value {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 900;
  color: var(--v2-point);
  letter-spacing: -0.02em;
}
.v2-stat-label {
  position: relative;
  z-index: 1;
  font-size: 11px;
  opacity: .7;
  margin-top: 4px;
  font-weight: 700;
}
.v2-clearfix { clear: both; height: 0; overflow: hidden; }

.v2-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.v2-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--v2-point);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
}
.v2-cta-btn--ghost {
  background: transparent;
  color: var(--v2-point);
  border: 1px solid var(--v2-point-a50);
}

.v2-faq-item {
  border: 1px solid rgba(148,163,184,.16);
  border-radius: 16px;
  padding: 0;
  margin-bottom: 8px;
  background: var(--v2-card);
  color: var(--v2-text);
  overflow: hidden;
}
.v2-faq-item[open] {
  border-color: var(--v2-point-a40);
  box-shadow: 0 8px 22px rgba(15,23,42,.16);
}
.v2-faq-item summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
  list-style: none;
  padding: 14px 40px 14px 16px;
  position: relative;
}
.v2-faq-item summary::-webkit-details-marker { display: none; }
.v2-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 14px;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: var(--v2-point);
  background: var(--v2-point-a16);
}
.v2-faq-item[open] summary::after { content: '−'; }
.v2-faq-item p {
  margin: 0;
  padding: 0 16px 14px;
  font-size: 12px;
  line-height: 1.55;
  opacity: .85;
  border-top: 1px solid rgba(148,163,184,.1);
  padding-top: 12px;
}

.v2-video-wrap { border-radius: 16px; overflow: hidden; margin-top: 10px; }

/* ── 스크롤 등장 애니메이션 ── */
@media (prefers-reduced-motion: no-preference) {
  .v2-mod[data-v2-reveal] {
    opacity: 0;
    transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.65s ease;
    will-change: opacity, transform, filter;
  }
  .v2-mod[data-v2-reveal="up"] { transform: translateY(32px); }
  .v2-mod[data-v2-reveal="left"] { transform: translateX(-28px); }
  .v2-mod[data-v2-reveal="right"] { transform: translateX(28px); }
  .v2-mod[data-v2-reveal="scale"] { transform: scale(0.94); }
  .v2-mod[data-v2-reveal="blur"] {
    transform: translateY(16px);
    filter: blur(8px);
  }
  .v2-mod.is-revealed {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .v2-mod .v2-reveal-child {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .v2-mod.is-revealed .v2-reveal-child {
    opacity: 1;
    transform: none;
  }
  .v2-mod.is-revealed .v2-reveal-child:nth-child(1) { transition-delay: 0.04s; }
  .v2-mod.is-revealed .v2-reveal-child:nth-child(2) { transition-delay: 0.1s; }
  .v2-mod.is-revealed .v2-reveal-child:nth-child(3) { transition-delay: 0.16s; }
  .v2-mod.is-revealed .v2-reveal-child:nth-child(4) { transition-delay: 0.22s; }
  .v2-mod.is-revealed .v2-reveal-child:nth-child(5) { transition-delay: 0.28s; }
  .v2-mod.is-revealed .v2-reveal-child:nth-child(6) { transition-delay: 0.34s; }
  .v2-mod.is-revealed .v2-reveal-child:nth-child(7) { transition-delay: 0.4s; }
  .v2-mod.is-revealed .v2-reveal-child:nth-child(8) { transition-delay: 0.46s; }
}
@media (prefers-reduced-motion: reduce) {
  .v2-mod[data-v2-reveal],
  .v2-mod .v2-reveal-child {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ── 한눈에 보기 (칩) ── */
.v2-highlights-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}
.v2-highlight-chip {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--v2-text);
  background: var(--v2-card);
  border: 1px solid var(--v2-point-a28);
  box-shadow: inset 0 0 0 1px var(--v2-point-a16);
}
.v2-highlight-chip:nth-child(3n+1) {
  color: #fff;
  background: -webkit-linear-gradient(135deg, var(--v2-point), var(--v2-point-grad-end));
  background: linear-gradient(135deg, var(--v2-point), var(--v2-point-grad-end));
  border-color: transparent;
  box-shadow: 0 8px 20px var(--v2-point-a35);
}
.v2-highlight-chip:nth-child(3n+1) i { color: #fff; }
.v2-highlight-chip:nth-child(3n+2) {
  border-radius: 14px;
  background: transparent;
  border-style: dashed;
}
.v2-highlight-chip i {
  color: var(--v2-point);
  font-size: 11px;
}

/* ── 진행 절차 (타임라인) ── */
.v2-process-timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 8px;
  position: relative;
}
.v2-process-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  border-radius: 999px;
  background: -webkit-linear-gradient(180deg, var(--v2-point), var(--v2-point-grad-end));
  background: linear-gradient(180deg, var(--v2-point), var(--v2-point-grad-end));
  opacity: 0.55;
}
.v2-process-step {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 0 0 22px 18px;
  color: var(--v2-text);
}
.v2-process-step:last-child { padding-bottom: 0; }
.v2-process-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--v2-card);
  border: 1px solid rgba(148,163,184,.14);
  box-shadow: 0 8px 20px rgba(15,23,42,.14);
}
.v2-process-num {
  position: absolute;
  left: -27px;
  top: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  background: var(--v2-point);
  box-shadow: 0 4px 12px var(--v2-point-a40);
}
.v2-process-body strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.v2-process-body p {
  margin: 0;
  font-size: 12px;
  opacity: 0.78;
  line-height: 1.55;
}

/* ── 고객 후기 (스타일2 service-slider 패턴) ── */
.v2-testimonials-area {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.v2-testimonials-track {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  padding: 4px 0 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.v2-testimonials-track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.v2-testimonial-card {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
  width: 280px;
  margin-right: 12px;
  padding: 18px 16px 16px;
  border-radius: 20px;
  background: var(--v2-card);
  border: 1px solid rgba(148,163,184,.18);
  color: var(--v2-text);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.v2-testimonial-card::before {
  content: '\201C';
  position: absolute;
  right: 12px;
  top: 4px;
  font-size: 52px;
  line-height: 1;
  font-weight: 900;
  color: var(--v2-point);
  opacity: .12;
  pointer-events: none;
}
.v2-testimonial-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: -webkit-linear-gradient(180deg, var(--v2-point), var(--v2-point-grad-end));
  background: linear-gradient(180deg, var(--v2-point), var(--v2-point-grad-end));
}
.v2-testimonial-card:last-child {
  margin-right: 0;
}
.v2-testimonial-meta {
  margin-top: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 2px;
}
.v2-testimonial-quote {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 600;
  opacity: 0.92;
}
.v2-testimonial-meta cite {
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  color: var(--v2-point);
}
.v2-testimonial-meta span {
  font-size: 11px;
  opacity: 0.65;
}

/* ── 파트너 ── */
.v2-partners-marquee { overflow: hidden; }
.v2-partners-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 14px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.v2-partner-pill {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 8px;
  width: 30%;
  min-width: 88px;
  -webkit-flex: 0 0 30%;
  flex: 0 0 30%;
  padding: 14px 8px;
  border-radius: 18px;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  line-height: 1.35;
  color: var(--v2-text);
  background: var(--v2-card);
  border: 1px solid rgba(148,163,184,.14);
  box-shadow: 0 8px 18px rgba(15,23,42,.12);
  box-sizing: border-box;
}
.v2-partner-pill i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: var(--v2-point);
  font-size: 15px;
  background: var(--v2-point-a16);
  border: 1px solid var(--v2-point-a28);
}

/* ── 팀 소개 ── */
.v2-team-grid {
  display: grid;
  gap: 12px;
}
.v2-team-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 14px 16px;
  border-radius: 20px;
  background: var(--v2-card);
  border: 1px solid rgba(148,163,184,.14);
  color: var(--v2-text);
  box-shadow: 0 10px 22px rgba(15,23,42,.14);
}
.v2-team-avatar {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  background: var(--v2-point);
  background: -webkit-linear-gradient(315deg, var(--v2-point), var(--v2-point-grad-end));
  background: linear-gradient(135deg, var(--v2-point), var(--v2-point-grad-end));
  box-shadow: 0 6px 16px var(--v2-point-a35);
  border: 2px solid rgba(255,255,255,.12);
}
.v2-team-info h4 {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 900;
}
.v2-team-role {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--v2-point);
  opacity: 0.9;
}
.v2-team-bio {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.78;
}

@media (min-width: 640px) {
  .v2-service-card { width: 240px; }
}

/* ══════════════════════════════════════════════════════════
   Template 12 — 럭셔리 그랜드 (푸르지오 모바일형 에디토리얼)
   ══════════════════════════════════════════════════════════ */

/* ── 히어로 스테이지 (11번 세로영상 풀스크린과 구분) ── */
.v2-hero-prugio-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: calc(var(--v2-vh, 1vh) * 92);
  max-height: calc(var(--v2-vh, 1vh) * 100);
  overflow: hidden;
  background: #111;
  color: #faf9f7;
}
.preview-v2 .v2-hero-prugio-stage {
  min-height: calc(var(--v2-vh, 1vh) * 92 - var(--v2-banner-h, 32px));
}
.v2-hero-prugio-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.v2-hero-prugio-video {
  position: absolute;
  inset: 0;
}
.v2-hero-prugio-video .bcard-yt-hero-cinema {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  border-radius: 0;
}
.v2-hero-prugio-video .bcard-yt-hero-stage,
.v2-hero-prugio-video .bcard-yt-hero-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v2-hero-prugio-video .bcard-yt-hero-sound-btn {
  top: calc(8px + env(safe-area-inset-top, 0px));
  bottom: auto;
  right: 10px;
  z-index: 6;
  pointer-events: auto;
}
.v2-hero-prugio-sound-mount {
  position: absolute;
  top: calc(8px + env(safe-area-inset-top, 0px));
  right: 10px;
  bottom: auto;
  z-index: 10;
  pointer-events: none;
}
.v2-hero-prugio-sound-mount .bcard-yt-hero-sound-btn {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  pointer-events: auto;
  z-index: 8;
}
.v2-hero-prugio-stage--video .v2-hero-prugio-bottom {
  pointer-events: none;
}
.v2-hero-prugio-stage--video .v2-hero-prugio-top,
.v2-hero-prugio-stage--video .v2-hero-prugio-mid {
  pointer-events: none;
}
.v2-hero-prugio-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: v2PrugioKenBurns 20s ease-in-out infinite alternate;
}
@keyframes v2PrugioKenBurns {
  from { transform: scale(1.06); }
  to { transform: scale(1.12); }
}
.v2-hero-prugio-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.28) 38%, rgba(0,0,0,.72) 100%);
  pointer-events: none;
}
.v2-hero-prugio-top {
  position: relative;
  z-index: 3;
  padding: 28px 22px 0;
  text-align: center;
}
.v2-hero-prugio-project {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.88;
}
.v2-hero-prugio-badge {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,.42);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.v2-hero-prugio-mid {
  position: relative;
  z-index: 3;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 22px;
  text-align: center;
}
.v2-hero-prugio-split {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.v2-hero-prugio-line {
  display: block;
  font-size: clamp(1.65rem, 7vw, 2.1rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #fff;
}
.v2-hero-prugio-line--indent {
  padding-left: 18%;
  align-self: flex-start;
  width: 100%;
  text-align: left;
}
.v2-hero-prugio-sub {
  margin: 18px 0 0;
  max-width: 26ch;
  font-size: 12px;
  line-height: 1.7;
  opacity: 0.78;
  text-align: center;
}
.v2-hero-prugio-bottom {
  position: relative;
  z-index: 3;
  padding: 0 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.v2-hero-prugio-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
  color: #fff;
}
.v2-hero-prugio-scroll i {
  font-size: 11px;
  animation: v2PrugioBounce 1.8s ease-in-out infinite;
}
@keyframes v2PrugioBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ── 본문 공통 ── */
.v2-tpl-12 {
  background: var(--v2-bg, #faf9f7);
}
.v2-tpl-12 .v2-main {
  padding: 32px 0 40px;
  gap: 0;
}
.v2-tpl-12 .v2-mod {
  padding: 36px 22px;
  margin: 0;
}
.v2-tpl-12 .v2-mod:nth-child(even) {
  background: #fff;
}
.v2-tpl-12 .v2-mod-label {
  font-size: clamp(1.35rem, 5.5vw, 1.65rem) !important;
  font-weight: 300 !important;
  letter-spacing: -0.03em !important;
  text-transform: uppercase !important;
  opacity: 1 !important;
  margin: 0 0 8px !important;
  line-height: 1.15 !important;
  color: var(--v2-text) !important;
}
.v2-tpl-12 .v2-mod-label::before {
  display: none;
}
.v2-mod-calendar-lead,
.v2-mod-services-lead {
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.62;
}

/* brand editorial */
.v2-brand-editorial-title {
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.v2-brand-editorial-title span {
  display: block;
  font-size: clamp(1.5rem, 6vw, 1.85rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.v2-brand-editorial-desc {
  font-size: 14px;
  line-height: 1.85;
  opacity: 0.78;
  margin: 0;
}

/* calendar stats */
.v2-calendar-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.v2-calendar-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(17,17,17,.1);
}
.v2-calendar-row:last-child {
  border-bottom: 0;
}
.v2-calendar-date {
  font-size: clamp(1.6rem, 6vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--v2-text);
}
.v2-calendar-event {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

/* premium highlights — zigzag 50/50 */
.v2-mod-highlights--zigzag {
  padding-bottom: 28px !important;
}
.v2-premium-zigzag-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 18px -22px 0;
  width: calc(100% + 44px);
}
.v2-premium-zigzag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(200px, 42vw, 280px);
  border-top: 1px solid rgba(17,17,17,.08);
}
.v2-premium-zigzag:last-child {
  border-bottom: 1px solid rgba(17,17,17,.08);
}
.v2-premium-zigzag-media {
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #eceae6;
  overflow: hidden;
}
.v2-premium-zigzag-media-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(17,17,17,.04), rgba(17,17,17,.1));
  font-size: clamp(36px, 10vw, 52px);
  color: var(--v2-point);
  pointer-events: none;
}
.v2-premium-zigzag--icon .v2-premium-zigzag-media-fallback {
  opacity: 1;
}
.v2-premium-zigzag--photo .v2-premium-zigzag-media-fallback {
  opacity: 0;
}
.v2-premium-zigzag-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 16px;
  background: inherit;
}
.v2-premium-zigzag--flip .v2-premium-zigzag-media {
  order: 2;
}
.v2-premium-zigzag--flip .v2-premium-zigzag-body {
  order: 1;
}
.v2-premium-zigzag-cat {
  display: block;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.42;
  margin-bottom: 6px;
}
.v2-premium-zigzag-title {
  margin: 0 0 8px;
  font-size: clamp(14px, 3.8vw, 16px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
}
.v2-premium-zigzag-desc {
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
  opacity: 0.72;
}

/* legacy premium list (unused tpl12) */
.v2-premium-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.v2-premium-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(17,17,17,.08);
}
.v2-premium-card:last-child {
  border-bottom: 0;
}
.v2-premium-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17,17,17,.12);
  font-size: 16px;
  color: var(--v2-point);
}
.v2-premium-card-cat {
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 4px;
}
.v2-premium-card-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
}
.v2-premium-card-desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.72;
}

/* services — image stack (tpl12) */
.v2-services-image-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 -22px;
  width: calc(100% + 44px);
}
.v2-service-image-card {
  overflow: hidden;
  background: #fff;
}
.v2-service-image-card-photo {
  width: 100%;
  aspect-ratio: 4/3;
  min-height: clamp(180px, 48vw, 260px);
  background-size: cover;
  background-position: center;
  background-color: #eceae6;
}
.v2-service-image-card-copy {
  padding: 18px 22px 22px;
}
.v2-service-image-card-copy h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.35;
}
.v2-service-image-card-copy p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  opacity: 0.72;
}

/* services stack (legacy) */
.v2-services-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.v2-service-panel {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17,17,17,.08);
}
.v2-service-panel-img {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
.v2-service-panel-img--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f2;
  font-size: 28px;
  color: var(--v2-point);
  opacity: 0.7;
}
.v2-service-panel-copy {
  padding: 16px 18px 18px;
}
.v2-service-panel-copy h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.v2-service-panel-copy p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.72;
}

/* brand story blocks */
.v2-story-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.v2-story-block {
  padding: 24px 0;
  border-bottom: 1px solid rgba(17,17,17,.08);
}
.v2-story-block--alt {
  padding-left: 12%;
}
.v2-story-title {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.v2-story-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  opacity: 0.75;
}

/* gallery */
.v2-tpl-12 .v2-gallery-masonry {
  gap: 6px;
}
.v2-tpl-12 .v2-gallery-item {
  border-radius: 0;
}

/* voices (testimonials) */
.v2-mod-voices-lead {
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.62;
}
.v2-voices-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.v2-voice-card {
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid rgba(17,17,17,.08);
}
.v2-voice-card:last-child {
  border-bottom: 0;
}
.v2-voice-quote {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.v2-voice-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 11px;
  opacity: 0.65;
}
.v2-voice-meta cite {
  font-style: normal;
  font-weight: 900;
}
.v2-voice-meta span::before {
  content: '·';
  margin-right: 10px;
  opacity: 0.5;
}

/* process editorial */
.v2-process-editorial {
  list-style: none;
  margin: 0;
  padding: 0;
}
.v2-process-editorial-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(17,17,17,.08);
}
.v2-process-editorial-step:last-child {
  border-bottom: 0;
}
.v2-process-editorial-num {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  opacity: 0.45;
}
.v2-process-editorial-body strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
}
.v2-process-editorial-body p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.72;
}

/* partners — 컬러 카드 그리드 */
.v2-tpl-12 .v2-mod-partners--color {
  background: linear-gradient(180deg, #faf9f7 0%, #eef2ff 55%, #f0fdfa 100%) !important;
}
.v2-mod-partners-lead {
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.62;
}
.v2-partners-color-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.v2-partner-color-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 108px;
  padding: 16px 8px 14px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 10px 28px rgba(15,23,42,.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.v2-partner-color-card:active {
  transform: scale(0.98);
}
.v2-partner-color-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #fff;
  box-shadow: 0 6px 16px rgba(15,23,42,.14);
}
.v2-partner-color-name {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: #1a1a1a;
}
.v2-partner-color-card[data-partner-tone="1"] {
  background: linear-gradient(160deg, #eff6ff 0%, #dbeafe 100%);
}
.v2-partner-color-card[data-partner-tone="1"] .v2-partner-color-icon {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}
.v2-partner-color-card[data-partner-tone="2"] {
  background: linear-gradient(160deg, #f0fdfa 0%, #ccfbf1 100%);
}
.v2-partner-color-card[data-partner-tone="2"] .v2-partner-color-icon {
  background: linear-gradient(135deg, #0d9488, #2dd4bf);
}
.v2-partner-color-card[data-partner-tone="3"] {
  background: linear-gradient(160deg, #fffbeb 0%, #fde68a 100%);
}
.v2-partner-color-card[data-partner-tone="3"] .v2-partner-color-icon {
  background: linear-gradient(135deg, #d97706, #fbbf24);
}
.v2-partner-color-card[data-partner-tone="4"] {
  background: linear-gradient(160deg, #fdf2f8 0%, #fbcfe8 100%);
}
.v2-partner-color-card[data-partner-tone="4"] .v2-partner-color-icon {
  background: linear-gradient(135deg, #db2777, #f472b6);
}
.v2-partner-color-card[data-partner-tone="5"] {
  background: linear-gradient(160deg, #f5f3ff 0%, #ddd6fe 100%);
}
.v2-partner-color-card[data-partner-tone="5"] .v2-partner-color-icon {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}
.v2-partner-color-card[data-partner-tone="6"] {
  background: linear-gradient(160deg, #fff7ed 0%, #fed7aa 100%);
}
.v2-partner-color-card[data-partner-tone="6"] .v2-partner-color-icon {
  background: linear-gradient(135deg, #ea580c, #fb923c);
}

.v2-tpl-12 .v2-faq-item {
  border-radius: 0;
  border-left: 2px solid transparent;
}
.v2-tpl-12 .v2-faq-item[open] {
  border-left-color: var(--v2-point);
}
.v2-tpl-12 .v2-mod-video .v2-mod-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* nav: prugio hero scroll reveal */
body.v2-nav-scroll-reveal.v2-tpl-12-nav .glass-nav-fixed {
  transition: opacity .35s ease, transform .35s ease;
}

/* tpl-12 스크롤 등장 (섹션·자식 순차) */
@media (prefers-reduced-motion: no-preference) {
  .v2-tpl-12 .v2-mod[data-v2-reveal] {
    opacity: 0;
    transform: translateY(52px);
    transition:
      opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.75s ease;
  }
  .v2-tpl-12 .v2-mod[data-v2-reveal="left"] { transform: translateX(-40px); }
  .v2-tpl-12 .v2-mod[data-v2-reveal="scale"] { transform: scale(0.95) translateY(28px); }
  .v2-tpl-12 .v2-mod[data-v2-reveal="blur"] {
    transform: translateY(36px);
    filter: blur(10px);
  }
  .v2-tpl-12 .v2-mod.is-revealed {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .v2-tpl-12 .v2-mod .v2-reveal-child {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .v2-tpl-12 .v2-mod.is-revealed .v2-reveal-child {
    opacity: 1;
    transform: none;
  }
  .v2-tpl-12 .v2-mod.is-revealed .v2-reveal-child:nth-child(1) { transition-delay: 0.06s; }
  .v2-tpl-12 .v2-mod.is-revealed .v2-reveal-child:nth-child(2) { transition-delay: 0.12s; }
  .v2-tpl-12 .v2-mod.is-revealed .v2-reveal-child:nth-child(3) { transition-delay: 0.18s; }
  .v2-tpl-12 .v2-mod.is-revealed .v2-reveal-child:nth-child(4) { transition-delay: 0.24s; }
  .v2-tpl-12 .v2-mod.is-revealed .v2-reveal-child:nth-child(5) { transition-delay: 0.3s; }
  .v2-tpl-12 .v2-mod.is-revealed .v2-reveal-child:nth-child(6) { transition-delay: 0.36s; }
  .v2-tpl-12 .v2-mod.is-revealed .v2-reveal-child:nth-child(7) { transition-delay: 0.42s; }
  .v2-tpl-12 .v2-mod.is-revealed .v2-reveal-child:nth-child(8) { transition-delay: 0.48s; }
  .v2-tpl-12 .v2-mod.is-revealed .v2-reveal-child:nth-child(9) { transition-delay: 0.54s; }
  .v2-tpl-12 .v2-mod.is-revealed .v2-reveal-child:nth-child(10) { transition-delay: 0.6s; }
}

@media (prefers-reduced-motion: reduce) {
  .v2-hero-prugio-bg { animation: none; transform: scale(1.06); }
  .v2-hero-prugio-scroll i { animation: none; }
}
