/* ============================================================
   SPACE 중고차 수출 복합단지 — 스타일시트
   Mobile-First 전면 최적화
   ============================================================ */

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

:root {
  --gold:        #c9a84c;
  --gold-light:  #e6c86e;
  --gold-dim:    rgba(201,168,76,0.15);
  --gold-border: rgba(201,168,76,0.35);
  --navy-dark:   #0d1628;
  --navy:        #1a2744;
  --navy-mid:    #243357;
  --white:       #ffffff;
  --w60:         rgba(255,255,255,0.60);
  --w40:         rgba(255,255,255,0.40);
  --w10:         rgba(255,255,255,0.10);
  --w06:         rgba(255,255,255,0.06);
  --font:        'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  --r-sm: 8px; --r-md: 16px; --r-lg: 24px;
  --gold-shadow: 0 4px 24px rgba(201,168,76,0.30);
  --ease: 0.25s ease;
  /* 모바일 섹션 여백 */
  --sp-mobile: 48px 0 44px;
  --sp-tablet: 68px 0 60px;
  --sp-desk:   84px 0 76px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--navy-dark);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* iOS 가로스크롤 방지 */
  max-width: 100vw;
  /* iOS 텍스트 크기 자동 조정 방지 */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── 애니메이션 ── */
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(.65); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes scrollBounce {
  0%,100% { transform:translateY(0); }
  50%     { transform:translateY(6px); }
}
@keyframes heroIn {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}

/* 스크롤 진입 애니메이션 */
[data-anim] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-anim].in-view { opacity:1; transform:translateY(0); }


/* ══════════════════════════════════
   공통 레이아웃
══════════════════════════════════ */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 600px) { .section-inner { padding: 0 24px; } }

.section-header {
  text-align: center;
  margin-bottom: 36px;
}
@media (min-width: 768px) { .section-header { margin-bottom: 52px; } }

.section-title {
  font-size: clamp(22px, 5.5vw, 40px);
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.25;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
  word-break: keep-all;
}
.section-title em { color: var(--gold); font-style: normal; }
.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 14px;
  color: #556080;
  line-height: 1.7;
  word-break: keep-all;
}
@media (min-width: 768px) { .section-subtitle { font-size: 15px; } }

/* eyebrow 뱃지 */
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(26,39,68,.08);
  border: 1px solid rgba(26,39,68,.18);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
@media (min-width: 600px) { .eyebrow-badge { font-size: 11px; padding: 5px 14px; } }
.eyebrow-badge.gold  { background: var(--gold-dim); border-color: var(--gold-border); color: var(--gold); }
.eyebrow-badge.light { background: var(--w10); border-color: var(--w40); color: var(--white); }
.eyebrow-dot {
  width:5px; height:5px; border-radius:50%;
  background: currentColor;
  animation: pulse-dot 1.5s ease infinite;
}


/* ══════════════════════════════════
   고정 헤더
══════════════════════════════════ */
.site-header {
  position: fixed;
  top:0; left:0; right:0;
  z-index: 1000;
  background: transparent;
  transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  background: rgba(13,22,40,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  will-change: backdrop-filter;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 480px) { .header-inner { padding: 12px 18px; gap: 14px; } }
@media (min-width: 600px) { .header-inner { padding: 14px 24px; gap: 20px; } }

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.logo-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  display: none;
  white-space: nowrap;
}
@media (min-width: 480px) { .logo-text { display: block; } }

/* 모바일 헤더: nav 숨기고 전화번호 우측 */
.header-nav {
  display: none;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
@media (min-width: 900px) { .header-nav { display: flex; } }

.header-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--w60);
  transition: color var(--ease);
  white-space: nowrap;
}
.header-nav a:hover { color: var(--white); }
.header-nav .nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 7px;
  font-size: 13px;
}

/* 헤더 전화번호 — 모바일 아이콘만, 태블릿+ 번호 표시 */
.header-phone {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 6px 9px;
  border-radius: 8px;
  transition: background var(--ease);
  flex-shrink: 0;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 900px) { .header-phone { margin-left: 0; } }
.header-phone:active { background: var(--gold-dim); }
@media (min-width: 768px) { .header-phone:hover { background: var(--gold-dim); } }
.header-phone i { font-size: 13px; }
/* 모바일에서 번호 텍스트 숨김 */
.header-phone span { display: none; }
@media (min-width: 420px) {
  .header-phone span { display: inline; font-size: 11px; font-weight: 700; }
}
@media (min-width: 520px) {
  .header-phone span { font-size: 12px; }
}
@media (min-width: 600px) {
  .header-phone span { font-size: 13px; }
}


/* ══════════════════════════════════
   히어로 섹션
══════════════════════════════════ */
.hero-section {
  position: relative;
  /* 모바일: 100vh 폴백 + svh */
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* 비디오 래퍼 */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--navy-dark);
}

/* fallback 이미지 */
.hero-video-fallback {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/gallery/gallery-03.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 1;
  transition: opacity .6s ease;
}
.hero-video-fallback.hidden { opacity: 0; pointer-events: none; }

/* 비디오 */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  /* iOS GPU 가속 */
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    160deg,
    rgba(13,22,40,.85) 0%,
    rgba(13,22,40,.68) 50%,
    rgba(13,22,40,.78) 100%
  );
}

/* 히어로 콘텐츠 */
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 720px;
  /* 모바일: 상단 헤더 높이 + 여유, 하단 CTA바(52px) + safe-area + 여유 */
  padding: 78px 18px calc(72px + env(safe-area-inset-bottom));
  margin: 0 auto;
}
@media (min-width: 480px)  { .hero-inner { padding: 84px 22px 88px; } }
@media (min-width: 600px)  { .hero-inner { padding: 96px 28px 90px; } }
@media (min-width: 900px)  { .hero-inner { padding: 120px 32px 100px; } }

/* 신뢰 배지 바 */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
  animation: heroIn .8s ease both;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
  word-break: keep-all;
}
.trust-item i { font-size: 10px; }
@media (min-width: 480px) { .trust-item { font-size: 11px; padding: 4px 10px; } }
.trust-divider { display: none; }

/* 히어로 타이틀 */
.hero-title {
  margin-bottom: 12px;
  animation: heroIn .8s .12s ease both;
}
.hero-title-sub {
  display: block;
  font-size: clamp(10px, 2.6vw, 13px);
  font-weight: 500;
  color: var(--w60);
  letter-spacing: .8px;
  margin-bottom: 5px;
  text-transform: uppercase;
  word-break: keep-all;
}
.hero-title strong {
  display: block;
  font-size: clamp(23px, 6.8vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.22;
  letter-spacing: -1px;
  word-break: keep-all;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.hero-desc {
  font-size: clamp(12px, 2.8vw, 15px);
  color: var(--w60);
  line-height: 1.7;
  margin-bottom: 18px;
  word-break: keep-all;
  animation: heroIn .8s .25s ease both;
}

/* 히어로 통계 — 모바일 3열 균등 */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 12px 8px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: heroIn .8s .38s ease both;
}
@media (min-width: 380px) { .hero-stats { padding: 14px 10px; } }
@media (min-width: 480px) { .hero-stats { padding: 16px 16px; margin-bottom: 22px; } }
@media (min-width: 600px) { .hero-stats { padding: 18px 20px; margin-bottom: 26px; } }

.hero-stat { text-align: center; padding: 0 2px; }

.hero-stat-divider {
  width: 1px;
  height: 26px;
  background: rgba(255,255,255,.18);
  margin: 0 2px;
  flex-shrink: 0;
}
@media (min-width: 380px) { .hero-stat-divider { margin: 0 4px; } }
@media (min-width: 480px) { .hero-stat-divider { height: 30px; margin: 0 8px; } }

.stat-num {
  display: block;
  font-size: clamp(14px, 4.2vw, 26px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  letter-spacing: -.3px;
  white-space: nowrap;
}
.stat-unit {
  font-size: clamp(9px, 2.2vw, 13px);
  font-weight: 500;
  color: rgba(201,168,76,.7);
  margin-left: 1px;
}
.stat-label {
  display: block;
  font-size: clamp(8px, 1.9vw, 11px);
  color: var(--w60);
  margin-top: 3px;
  word-break: keep-all;
  line-height: 1.3;
}

/* 히어로 CTA 버튼 */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  animation: heroIn .8s .5s ease both;
}
@media (min-width: 440px) { .hero-cta-group { flex-direction: row; flex-wrap: nowrap; } }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-size: clamp(13px, 3.5vw, 15px);
  font-weight: 800;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  letter-spacing: -.3px;
  box-shadow: var(--gold-shadow);
  transition: transform var(--ease), box-shadow var(--ease);
  -webkit-tap-highlight-color: transparent;
  word-break: keep-all;
  white-space: nowrap;
  flex: 1;
}
.btn-primary:active { transform: scale(.97); }
@media (min-width: 768px) {
  .btn-primary { font-size: 16px; padding: 17px 28px; }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,.45); }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: transparent;
  color: var(--white);
  font-size: clamp(12px, 3.2vw, 14px);
  font-weight: 600;
  padding: 14px 14px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.3);
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
  flex: 1;
}
.btn-secondary:active { background: var(--w10); }
@media (min-width: 768px) {
  .btn-secondary:hover { border-color: rgba(255,255,255,.6); background: var(--w10); }
}

/* 긴급 배너 */
.hero-urgency {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  color: var(--w60);
  line-height: 1.55;
  animation: heroIn .8s .62s ease both;
  word-break: keep-all;
}
@media (min-width: 480px) { .hero-urgency { font-size: 12px; } }
@media (min-width: 600px) { .hero-urgency { font-size: 13px; align-items: center; } }
.hero-urgency i { color: #ff6b35; flex-shrink: 0; margin-top: 2px; font-size: 13px; }
@media (min-width: 600px) { .hero-urgency i { margin-top: 0; } }
.hero-urgency strong { color: var(--gold); }

/* 스크롤 힌트 */
.hero-scroll-hint {
  position: absolute;
  /* 하단 CTA바 위에 위치하도록 여백 확보 */
  bottom: calc(60px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--w40);
  letter-spacing: 1px;
  z-index: 3;
  white-space: nowrap;
  pointer-events: none;
}
@media (min-width: 900px) {
  .hero-scroll-hint { bottom: 28px; }
}
.hero-scroll-hint i { animation: scrollBounce 1.6s ease infinite; }


/* ══════════════════════════════════
   단지 소개 섹션
══════════════════════════════════ */
.about-section {
  background: #f5f6fa;
  padding: var(--sp-mobile);
}
@media (min-width: 768px) { .about-section { padding: var(--sp-tablet); } }
@media (min-width: 1024px) { .about-section { padding: var(--sp-desk); } }

/* 단지소개 섹션 제목 — 모바일에서 줄바꿈 자연스럽게 */
.about-section .section-title { font-size: clamp(20px, 5.5vw, 40px); }

.advantage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 22px;
}
@media (min-width: 480px) { .advantage-grid { grid-template-columns: 1fr 1fr; gap: 14px; } }
@media (min-width: 900px) { .advantage-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 36px; } }

.advantage-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 18px 16px;
  border: 1px solid #e8eaf0;
  contain: layout style;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
@media (min-width: 480px) { .advantage-card { padding: 20px 18px; } }
@media (min-width: 768px) {
  .advantage-card { padding: 28px 24px; }
  .advantage-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(26,39,68,.1); border-color: #c0c8de; }
}

.adv-icon-wrap {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 14px;
}
@media (min-width: 768px) { .adv-icon-wrap { width: 52px; height: 52px; font-size: 22px; } }

.advantage-card h3 { font-size: 15px; font-weight: 800; color: var(--navy-dark); margin-bottom: 7px; letter-spacing: -.3px; }
.advantage-card p  { font-size: 13px; color: #556080; line-height: 1.65; word-break: keep-all; }
@media (min-width: 768px) { .advantage-card h3 { font-size: 16px; } }

/* 위치 배너 */
.location-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--r-md);
  padding: 16px;
  color: var(--white);
  flex-wrap: wrap;
  row-gap: 10px;
}
@media (min-width: 480px) { .location-banner { padding: 18px 20px; } }
@media (min-width: 600px) { .location-banner { align-items: center; flex-wrap: nowrap; } }

.location-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.location-body { flex: 1; min-width: 140px; }
.location-body strong { display: block; font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 3px; }
.location-body p { font-size: 13px; color: var(--w60); line-height: 1.5; word-break: keep-all; }
@media (min-width: 600px) { .location-body p { font-size: 14px; } }

.location-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: background var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.location-link:active { background: var(--gold-dim); }
@media (min-width: 768px) { .location-link:hover { background: var(--gold-dim); } }


/* ══════════════════════════════════
   혜택 섹션
══════════════════════════════════ */
.benefits-section {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 44px 16px 52px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 480px)  { .benefits-section { padding: 50px 20px 58px; } }
@media (min-width: 600px)  { .benefits-section { padding: 58px 24px 66px; } }
@media (min-width: 1024px) { .benefits-section { padding: 76px 40px 82px; } }

.benefits-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}
.benefits-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}

.benefits-inner {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
/* 태블릿 이상에서 최대폭 제한 */
@media (min-width: 768px) { .benefits-inner { max-width: 800px; } }
@media (min-width: 900px) { .benefits-inner { max-width: 960px; } }

.benefits-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,.12);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
@media (min-width: 600px) { .benefits-eyebrow { font-size: 11px; padding: 5px 13px; } }
.benefits-eyebrow-dot { width:5px; height:5px; background:var(--gold); border-radius:50%; animation: pulse-dot 1.5s ease infinite; }

.benefits-title {
  font-size: clamp(19px, 5.5vw, 32px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -.6px;
  margin: 0 0 8px;
  word-break: keep-all;
}
.benefits-title em { color: var(--gold); font-style: normal; }

.benefits-subtitle {
  font-size: 13px;
  color: var(--w60);
  line-height: 1.65;
  margin: 0 0 28px;
  word-break: keep-all;
}
@media (min-width: 600px) { .benefits-subtitle { font-size: 14px; margin-bottom: 36px; } }

.benefits-title-line { width:32px; height:2px; background:var(--gold); border-radius:2px; margin: 12px 0 18px; }

/* 혜택 카드 */
.benefits-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 600px) { .benefits-cards { gap: 14px; margin-bottom: 28px; } }
@media (min-width: 768px) {
  .benefits-cards { flex-direction: row; align-items: stretch; gap: 16px; margin-bottom: 32px; }
}

.benefit-card {
  background: var(--w06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-md);
  contain: layout style;
  /* left 패딩 18px — 왼쪽 gold 줄(3px) + 공간 확보 */
  padding: 16px 14px 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(20px);
  transition: border-color .3s ease, transform .2s ease;
}
@media (min-width: 480px) { .benefit-card { padding: 18px 16px 18px 20px; gap: 14px; } }
@media (min-width: 600px) { .benefit-card { padding: 20px 18px 20px 22px; } }

.benefit-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease, border-color .3s ease;
}
.benefit-card:nth-child(1) { transition-delay: .05s; }
.benefit-card:nth-child(2) { transition-delay: .15s; }
.benefit-card:nth-child(3) { transition-delay: .25s; }

.benefit-card:active { border-color: rgba(201,168,76,.45); }
@media (min-width: 768px) {
  .benefit-card { flex: 1; flex-direction: column; gap: 10px; }
  .benefit-card:hover { border-color: rgba(201,168,76,.45); transform: translateY(-2px); }
}

/* 모바일: 왼쪽 세로선 */
.benefit-card::before {
  content: '';
  position: absolute;
  left: 0; top: 14px; bottom: 14px;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  border-radius: 0 2px 2px 0;
}
/* 데스크탑: 상단 가로선 */
@media (min-width: 768px) {
  .benefit-card::before {
    left: 14px; right: 14px;
    top: 0; bottom: auto;
    width: auto; height: 3px;
    border-radius: 0 0 2px 2px;
  }
}
.benefit-card::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 90px; height: 90px;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}

.benefit-icon-wrap {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201,168,76,.18), rgba(201,168,76,.08));
  border: 1px solid rgba(201,168,76,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
@media (min-width: 600px) { .benefit-icon-wrap { width: 46px; height: 46px; font-size: 22px; } }

.benefit-body { flex: 1; min-width: 0; }

.benefit-number {
  font-size: 10px; font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.benefit-card-title {
  font-size: clamp(14px, 4vw, 17px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin: 0 0 6px;
  letter-spacing: -.3px;
  word-break: keep-all;
}

.benefit-amount {
  display: inline-block;
  font-size: clamp(17px, 5vw, 24px);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -.5px;
  line-height: 1.1;
  margin: 2px 0 7px;
}
.benefit-amount span {
  font-size: 12px; font-weight: 500;
  color: rgba(201,168,76,.75);
  margin-left: 2px;
}

.benefit-card-desc {
  font-size: 12px;
  color: rgba(255,255,255,.56);
  line-height: 1.65;
  word-break: keep-all;
  margin: 0;
}
@media (min-width: 600px) { .benefit-card-desc { font-size: 13px; } }

.benefit-tags { display: flex; flex-wrap: wrap; gap: 5px; margin: 7px 0 6px; }
.benefit-tag-item {
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,.8);
  background: var(--w10);
  border: 1px solid rgba(255,255,255,.14);
  padding: 3px 8px;
  border-radius: 20px;
}
@media (min-width: 600px) { .benefit-tag-item { font-size: 11px; padding: 3px 9px; } }

/* 긴급 배너 */
.benefits-urgency {
  background: linear-gradient(135deg, rgba(201,168,76,.12), rgba(201,168,76,.06));
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
@media (min-width: 600px) { .benefits-urgency { padding: 16px 18px; margin-bottom: 20px; } }
.benefits-urgency-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.benefits-urgency-text { flex: 1; }
.benefits-urgency-text strong { display: block; font-size: 12px; font-weight: 700; color: var(--gold); margin-bottom: 3px; word-break: keep-all; }
@media (min-width: 600px) { .benefits-urgency-text strong { font-size: 13px; } }
.benefits-urgency-text p { font-size: 12px; color: rgba(255,255,255,.55); margin: 0; line-height: 1.55; word-break: keep-all; }

/* CTA */
.benefits-cta { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 768px) {
  .benefits-cta { flex-direction: row; max-width: 520px; }
  .benefits-cta-primary { flex: 2; }
  .benefits-cta-secondary { flex: 1; }
}

.benefits-cta-primary {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-size: 15px; font-weight: 800;
  padding: 15px 20px;
  border-radius: 12px; border: none;
  cursor: pointer; text-decoration: none;
  letter-spacing: -.3px;
  box-shadow: var(--gold-shadow);
  transition: transform var(--ease), box-shadow var(--ease);
  -webkit-tap-highlight-color: transparent;
  word-break: keep-all;
}
.benefits-cta-primary:active { transform: scale(.97); }
@media (min-width: 768px) {
  .benefits-cta-primary { font-size: 16px; padding: 16px 20px; }
  .benefits-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,.45); }
}

.benefits-cta-secondary {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.7);
  font-size: 14px; font-weight: 500;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  cursor: pointer; text-decoration: none;
  transition: border-color var(--ease), color var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.benefits-cta-secondary:active { border-color: rgba(255,255,255,.4); color: var(--white); }


/* ══════════════════════════════════
   입주 조건 섹션
══════════════════════════════════ */
.conditions-section {
  background: #f5f6fa;
  padding: var(--sp-mobile);
}
@media (min-width: 768px) { .conditions-section { padding: var(--sp-tablet); } }
@media (min-width: 1024px) { .conditions-section { padding: var(--sp-desk); } }

.conditions-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
@media (min-width: 768px) { .conditions-layout { grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; margin-bottom: 52px; } }

/* 비용 카드 — 작은 폰(~379px) 1열, 380px~ 2열 */
.cost-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 380px) { .cost-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 600px) { .cost-cards { gap: 14px; } }

.cost-card {
  background: var(--white);
  border: 1px solid #e4e8f0;
  border-radius: var(--r-md);
  padding: 14px 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: transform var(--ease), box-shadow var(--ease);
}
@media (min-width: 380px) { .cost-card { padding: 16px 12px; } }
@media (min-width: 600px) { .cost-card { padding: 20px 16px; gap: 12px; } }
@media (min-width: 768px) {
  .cost-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26,39,68,.09); }
}

.cost-card.highlight {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-color: transparent;
  color: var(--white);
}
.cost-card.highlight .cost-label { color: var(--gold); }
.cost-card.highlight .cost-note  { color: var(--w60); }

.cost-card-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(26,39,68,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--navy);
  flex-shrink: 0;
}
@media (min-width: 600px) { .cost-card-icon { width: 38px; height: 38px; font-size: 16px; } }
.cost-card.highlight .cost-card-icon { background: var(--gold-dim); color: var(--gold); }

.cost-card-body { flex: 1; min-width: 0; }
.cost-label {
  display: block;
  font-size: 10px; font-weight: 700;
  color: #7a88a8;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 3px;
}
.cost-value {
  display: block;
  font-size: clamp(14px, 3.8vw, 22px);
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.1;
  letter-spacing: -.4px;
  word-break: keep-all;
}
.cost-card.highlight .cost-value { color: var(--gold); }
.cost-value small { font-size: 11px; font-weight: 500; opacity: .6; }
.cost-note {
  display: block;
  font-size: 10px;
  color: #7a88a8;
  margin-top: 3px;
  word-break: keep-all;
  line-height: 1.4;
}
@media (min-width: 600px) { .cost-note { font-size: 11px; } }

/* 체크리스트 */
.conditions-checklist {
  background: var(--white);
  border: 1px solid #e4e8f0;
  border-radius: var(--r-md);
  padding: 22px 18px;
}
@media (min-width: 600px) { .conditions-checklist { padding: 28px 24px; } }

.checklist-title {
  font-size: 16px; font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e8eaf0;
  letter-spacing: -.3px;
}
.checklist { display: flex; flex-direction: column; gap: 11px; margin-bottom: 18px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; color: #3a4560;
  line-height: 1.55; word-break: keep-all;
}
@media (min-width: 600px) { .checklist li { font-size: 14px; gap: 10px; } }
.checklist li i { color: var(--gold); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.checklist li strong { color: var(--navy-dark); font-weight: 700; }

.checklist-note {
  display: flex; align-items: flex-start; gap: 7px;
  font-size: 11px; color: #7a88a8;
  background: #f5f6fa; border-radius: 8px;
  padding: 10px 12px; line-height: 1.55; word-break: keep-all;
}
@media (min-width: 600px) { .checklist-note { font-size: 12px; padding: 12px 14px; } }
.checklist-note i { color: var(--navy); flex-shrink: 0; margin-top: 1px; }

/* 배치도면 */
.floorplan-wrap {
  background: var(--white);
  border: 1px solid #e4e8f0;
  border-radius: var(--r-md);
  overflow: hidden;
}
.floorplan-header { padding: 18px 20px 14px; border-bottom: 1px solid #e8eaf0; }
@media (min-width: 600px) { .floorplan-header { padding: 22px 24px 16px; } }
.floorplan-header h3 { font-size: 15px; font-weight: 800; color: var(--navy-dark); margin-bottom: 3px; }
@media (min-width: 600px) { .floorplan-header h3 { font-size: 17px; } }
.floorplan-header p { font-size: 12px; color: #7a88a8; }

.floorplan-img-wrap { overflow: hidden; background: #f0f2f7; }
.floorplan-img {
  width: 100%; height: auto;
  object-fit: contain; display: block;
  transition: transform .4s ease;
}
@media (min-width: 768px) { .floorplan-img:hover { transform: scale(1.02); } }

.floorplan-legend {
  display: flex; flex-wrap: wrap; gap: 10px 16px;
  padding: 12px 20px;
  border-top: 1px solid #e8eaf0;
}
@media (min-width: 600px) { .floorplan-legend { padding: 14px 24px; } }
.legend-item { display: flex; align-items: center; gap: 5px; font-size: 11px; color: #7a88a8; font-weight: 500; }
.legend-dot { width:10px; height:10px; border-radius:2px; border:1px solid rgba(0,0,0,.1); }
.legend-dot.yellow { background: #f5c800; }
.legend-dot.orange { background: #e8960a; }
.legend-dot.gray   { background: #a0a8b8; }
.legend-dot.white  { background: #f0f0f0; border-color: #ccc; }


/* ══════════════════════════════════
   시설 현황 섹션
══════════════════════════════════ */
.facility-section {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: var(--sp-mobile);
  position: relative; overflow: hidden;
}
@media (min-width: 768px)  { .facility-section { padding: var(--sp-tablet); } }
@media (min-width: 1024px) { .facility-section { padding: var(--sp-desk); } }

.facility-section::before {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.05) 0%, transparent 60%);
  pointer-events: none;
}

.facility-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 400px) { .facility-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 600px) { .facility-grid { gap: 16px; } }
@media (min-width: 900px) { .facility-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.facility-card {
  background: var(--w06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-md);
  padding: 16px 14px;
  contain: layout style;
  position: relative; overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
}
@media (min-width: 400px) { .facility-card { padding: 18px 16px; } }
@media (min-width: 600px) { .facility-card { padding: 24px 20px; } }
@media (min-width: 768px) {
  .facility-card { padding: 28px 22px; }
  .facility-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
}
.facility-card::before {
  content: ''; position: absolute;
  top: -36px; right: -36px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
}
.fac-number { font-size: 10px; font-weight: 900; color: var(--gold); letter-spacing: 1px; margin-bottom: 10px; opacity: .6; }
.fac-icon   { font-size: 24px; color: var(--gold); margin-bottom: 10px; }
@media (min-width: 600px) { .fac-icon { font-size: 28px; margin-bottom: 14px; } }
.facility-card h3 { font-size: 14px; font-weight: 800; color: var(--white); margin-bottom: 8px; letter-spacing: -.3px; word-break: keep-all; }
.facility-card p  { font-size: 12px; color: var(--w60); line-height: 1.6; word-break: keep-all; }
@media (min-width: 600px) { .facility-card h3 { font-size: 15px; } .facility-card p { font-size: 13px; } }
@media (min-width: 900px)  { .facility-card h3 { font-size: 16px; } .facility-card p { font-size: 13.5px; } }


/* ══════════════════════════════════
   갤러리 섹션
══════════════════════════════════ */
.gallery-section {
  background: #f5f6fa;
  padding: var(--sp-mobile);
}
@media (min-width: 768px)  { .gallery-section { padding: var(--sp-tablet); } }
@media (min-width: 1024px) { .gallery-section { padding: var(--sp-desk); } }

.gallery-filter {
  display: flex; flex-wrap: wrap; gap: 7px;
  justify-content: center;
  margin-bottom: 24px;
}
@media (min-width: 600px) { .gallery-filter { gap: 8px; margin-bottom: 32px; } }

.filter-btn {
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid #d0d4e0;
  background: var(--white);
  color: #556080;
  font-size: 12px; font-weight: 600;
  cursor: pointer;
  transition: all var(--ease);
  font-family: var(--font);
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 600px) { .filter-btn { font-size: 13px; padding: 8px 18px; } }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
@media (min-width: 480px) { .gallery-grid { gap: 10px; } }
@media (min-width: 600px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid .gallery-item.featured { grid-column: span 2; grid-row: span 2; }
}

.gallery-item {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #d0d4e0;
}
.gallery-item img { width:100%; height:100%; object-fit: cover; transition: transform .4s ease; }
@media (min-width: 768px) { .gallery-item:hover img { transform: scale(1.06); } }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,22,40,.75) 0%, transparent 50%);
  display: flex; align-items: flex-end;
  padding: 10px;
  opacity: 0;
  transition: opacity var(--ease);
}
@media (min-width: 768px) { .gallery-item:hover .gallery-overlay { opacity: 1; } }
.gallery-overlay span { font-size: 11px; font-weight: 600; color: var(--white); }
@media (min-width: 600px) { .gallery-overlay span { font-size: 12px; } }

.gallery-more { text-align: center; }
.gallery-extra.hidden { display: none; }
.gallery-extra { margin-top: 8px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent;
  color: var(--navy);
  font-size: 13px; font-weight: 600;
  padding: 11px 24px;
  border-radius: var(--r-sm);
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all var(--ease);
  font-family: var(--font);
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 768px) { .btn-outline:hover { background: var(--navy); color: var(--white); } }
.btn-outline:active { background: var(--navy); color: var(--white); }


/* ══════════════════════════════════
   문의 폼 섹션
══════════════════════════════════ */
.contact-section {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: var(--sp-mobile);
}
@media (min-width: 768px)  { .contact-section { padding: var(--sp-tablet); } }
@media (min-width: 1024px) { .contact-section { padding: var(--sp-desk); } }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) { .contact-layout { gap: 32px; } }
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
}

.contact-title {
  font-size: clamp(24px, 5.5vw, 38px);
  font-weight: 900; color: var(--white);
  line-height: 1.25; letter-spacing: -1px;
  margin-bottom: 12px; word-break: keep-all;
}
.contact-title em { color: var(--gold); font-style: normal; }

.contact-desc {
  font-size: 14px; color: var(--w60);
  line-height: 1.7; margin-bottom: 24px; word-break: keep-all;
}
@media (min-width: 600px) { .contact-desc { font-size: 15px; margin-bottom: 32px; } }

.contact-channels { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
@media (min-width: 600px) { .contact-channels { gap: 12px; margin-bottom: 24px; } }

.channel-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--w06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-sm);
  padding: 13px 14px;
  transition: border-color var(--ease);
  cursor: default;
}
@media (min-width: 600px) { .channel-item { padding: 14px 16px; gap: 14px; } }
a.channel-item { cursor: pointer; }
a.channel-item:active { border-color: var(--gold-border); }
@media (min-width: 768px) { a.channel-item:hover { border-color: var(--gold-border); } }

.channel-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--gold);
  flex-shrink: 0;
  transition: background var(--ease);
}
@media (min-width: 600px) { .channel-icon { width: 40px; height: 40px; font-size: 16px; } }
.channel-body { flex: 1; min-width: 0; }
.channel-label { display: block; font-size: 10px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 2px; }
.channel-value { display: block; font-size: 14px; font-weight: 700; color: var(--white); word-break: break-all; }
@media (min-width: 600px) { .channel-value { font-size: 15px; } }
.channel-note { display: block; font-size: 11px; color: var(--w40); }

.doc-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,.1), rgba(201,168,76,.05));
  border: 1px solid var(--gold-border);
  border-radius: var(--r-sm);
  padding: 14px;
}
@media (min-width: 600px) { .doc-card { padding: 16px; } }
.doc-icon { font-size: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.doc-body strong { display: block; font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 5px; word-break: keep-all; }
.doc-body p { font-size: 12px; color: var(--w60); line-height: 1.6; word-break: keep-all; }

/* 문의 폼 */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 20px 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
@media (min-width: 480px) { .contact-form-wrap { padding: 24px 20px; } }
@media (min-width: 600px) { .contact-form-wrap { padding: 32px 28px; } }

.form-title {
  font-size: 18px; font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e8eaf0;
  letter-spacing: -.5px;
}
@media (min-width: 600px) { .form-title { font-size: 20px; margin-bottom: 24px; } }

.form-group { margin-bottom: 16px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; gap: 14px; } }

.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
@media (min-width: 600px) { .form-group label { font-size: 13px; } }
.required { color: #e84444; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid #d4d8e8;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-family: var(--font);
  color: var(--navy-dark);
  background: #fafbfd;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 90px; }
@media (min-width: 600px) { .form-group textarea { min-height: 100px; } }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23556080' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px;
}

/* 라디오 버튼 그룹 */
.form-radio-group {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px;
}
.radio-label {
  display: flex; align-items: center; gap: 7px;
  cursor: pointer; font-size: 13px; color: var(--navy-dark);
  padding: 8px 14px;
  border: 1.5px solid #d4d8e8;
  border-radius: var(--r-sm);
  background: #fafbfd;
  transition: all var(--ease);
  user-select: none;
}
.radio-label:hover { border-color: var(--gold); background: #fffdf5; }
.radio-label input { display: none; }
.radio-custom {
  width: 16px; height: 16px;
  border: 2px solid #c0c8de;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--ease);
}
.radio-label input:checked ~ span { font-weight: 700; }
.radio-label input:checked + .radio-custom {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: inset 0 0 0 3px #fff;
}
.radio-label:has(input:checked) {
  border-color: var(--gold);
  background: #fffdf5;
}

/* 단위 붙은 입력 필드 */
.input-with-unit {
  display: flex; align-items: stretch;
}
.input-with-unit input {
  flex: 1; border-top-right-radius: 0 !important; border-bottom-right-radius: 0 !important;
  border-right: none !important;
}
.input-with-unit .input-unit {
  display: flex; align-items: center; justify-content: center;
  padding: 0 14px;
  background: #eef0f6;
  border: 1.5px solid #d4d8e8;
  border-left: none;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 13px; font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.input-with-unit input:focus + .input-unit {
  border-color: var(--gold);
}

/* number 스피너 숨기기 */
.form-group input[type="number"]::-webkit-inner-spin-button,
.form-group input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none; margin: 0;
}
.form-group input[type="number"] { -moz-appearance: textfield; }

.form-agree { margin-bottom: 18px; }
.agree-label {
  display: flex; align-items: center; gap: 9px;
  cursor: pointer; font-size: 12px; color: #556080;
}
@media (min-width: 600px) { .agree-label { font-size: 13px; } }
.agree-label input { display: none; }
.agree-custom {
  width: 18px; height: 18px;
  border: 2px solid #c0c8de;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--ease); position: relative;
}
.agree-label input:checked + .agree-custom { background: var(--gold); border-color: var(--gold); }
.agree-label input:checked + .agree-custom::after { content: '✓'; font-size: 11px; font-weight: 900; color: var(--navy-dark); }

.form-submit {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-size: 15px; font-weight: 800;
  padding: 15px 20px;
  border-radius: var(--r-sm); border: none;
  cursor: pointer; letter-spacing: -.3px;
  box-shadow: var(--gold-shadow);
  transition: transform var(--ease), box-shadow var(--ease);
  font-family: var(--font);
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 600px) { .form-submit { font-size: 16px; padding: 17px 24px; } }
.form-submit:active { transform: scale(.97); }
@media (min-width: 768px) { .form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,.45); } }

.form-success {
  text-align: center;
  padding: 24px 16px;
  background: #f0faf4;
  border: 1px solid #a0ddb8;
  border-radius: var(--r-sm);
  margin-top: 14px;
}
.form-success i { font-size: 30px; color: #2ecc71; display: block; margin-bottom: 10px; }
.form-success strong { font-size: 15px; font-weight: 800; color: #1a7a3e; display: block; margin-bottom: 5px; }
.form-success p { font-size: 13px; color: #3a9960; }
.form-success.hidden { display: none; }


/* ══════════════════════════════════
   하단 고정 CTA 바 (모바일)
══════════════════════════════════ */
.bottom-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  transform: translateY(100%);
  transition: transform .3s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
  /* iOS 홈바(safe-area) 대응 — constant 먼저, env 나중 */
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}
.bottom-cta-bar.visible { transform: translateY(0); }

.bottom-cta-phone {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px; font-weight: 700;
  /* 최소 터치 영역 44px 확보 */
  min-height: 52px;
  padding: 14px 8px;
  border: none; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}
.bottom-cta-apply {
  flex: 2;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-size: 14px; font-weight: 800;
  min-height: 52px;
  padding: 14px 8px;
  border: none; cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 900px) { .bottom-cta-bar { display: none; } }


/* ══════════════════════════════════
   라이트박스
══════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 2000;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-img-wrap {
  position: relative;
  max-width: 92vw; max-height: 88vh;
  text-align: center;
}
.lightbox-img-wrap img {
  max-width: 92vw; max-height: 80vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: var(--r-sm);
}
.lightbox-caption { display: block; color: var(--w60); font-size: 12px; margin-top: 10px; }

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--white);
  border-radius: 50%;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 15px;
  transition: background var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.26); }
.lightbox-close { top: 16px; right: 16px; }
.lightbox-prev  { left: 12px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 12px; top: 50%; transform: translateY(-50%); }


/* ══════════════════════════════════
   푸터
══════════════════════════════════ */
.site-footer {
  background: #070e1c;
  padding: 36px 0 24px;
  /* 모바일: 하단 CTA바(52px) + safe-area 높이만큼 여백 — constant 먼저 */
  padding-bottom: calc(24px + 52px + constant(safe-area-inset-bottom));
  padding-bottom: calc(24px + 52px + env(safe-area-inset-bottom));
}
@media (min-width: 900px) {
  .site-footer { padding: 48px 0 32px; }
}

.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 16px;
}
@media (min-width: 600px) { .footer-inner { padding: 0 24px; } }

.footer-brand {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
  font-size: 13px; font-weight: 700; color: var(--w60);
}
.footer-info {
  margin-bottom: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
}
.footer-info p { font-size: 12px; color: var(--w40); line-height: 1.85; word-break: keep-all; }
.footer-info a { color: var(--gold); }

.footer-copy {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 14px;
}
.footer-copy p { font-size: 11px; color: rgba(255,255,255,.22); line-height: 1.7; }

/* ── 언어 토글 ── */
.lang-toggle {
  display: flex;
  gap: 2px;
  margin-left: 12px;
  background: var(--w06);
  border-radius: 6px;
  padding: 2px;
  border: 1px solid var(--w10);
}
.lang-btn {
  background: none;
  border: none;
  color: var(--w40);
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font);
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--ease);
  letter-spacing: 0.5px;
}
.lang-btn:hover { color: var(--white); }
.lang-btn.active {
  background: var(--gold);
  color: var(--navy-dark);
}
@media (max-width: 768px) {
  .lang-toggle {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 1001;
    margin: 0;
    background: rgba(13,22,40,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}

/* ── 유틸리티 ── */
.hidden { display: none !important; }


/* ===================================================
   신규 추가 스타일 — 2026-04-16
      FAQ 섹션 / SNS 링크 / 카카오 플로팅 버튼 / 모바일 비디오 폴백
      =================================================== */

      /* --- FAQ 섹션 --- */
      .faq-section {
        padding: var(--sp-desktop);
          background: var(--navy-dark);
          }

          .faq-list {
            max-width: 780px;
              margin: 0 auto 40px;
              }

              .faq-item {
                border-bottom: 1px solid var(--gold-border);
                  overflow: hidden;
                  }

                  .faq-item:first-child {
                    border-top: 1px solid var(--gold-border);
                    }

                    .faq-question {
                      width: 100%;
                        background: transparent;
                          border: none;
                            cursor: pointer;
                              padding: 20px 0;
                                display: flex;
                                  justify-content: space-between;
                                    align-items: center;
                                      gap: 16px;
                                        text-align: left;
                                          color: var(--white);
                                            font-size: 1rem;
                                              font-weight: 600;
                                                line-height: 1.5;
                                                  transition: color 0.25s ease;
                                                  }

                                                  .faq-question:hover {
                                                    color: var(--gold);
                                                    }

                                                    .faq-question[aria-expanded="true"] {
                                                      color: var(--gold);
                                                      }

                                                      .faq-icon {
                                                        flex-shrink: 0;
                                                          font-size: 0.85rem;
                                                            color: var(--gold);
                                                              transition: transform 0.3s ease;
                                                              }

                                                              .faq-question[aria-expanded="true"] .faq-icon {
                                                                transform: rotate(180deg);
                                                                }

                                                                .faq-answer {
                                                                  padding-bottom: 20px;
                                                                    color: rgba(255,255,255,0.75);
                                                                      font-size: 0.95rem;
                                                                        line-height: 1.75;
                                                                        }

                                                                        .faq-answer[hidden] {
                                                                          display: none;
                                                                          }

                                                                          .faq-cta {
                                                                            text-align: center;
                                                                              margin-top: 48px;
                                                                              }

                                                                              .faq-cta p {
                                                                                color: var(--w60);
                                                                                  margin-bottom: 20px;
                                                                                    font-size: 0.95rem;
                                                                                    }

                                                                                    /* --- Footer SNS 링크 --- */
                                                                                    .footer-sns {
                                                                                      display: flex;
                                                                                        gap: 12px;
                                                                                          align-items: center;
                                                                                            margin-top: 12px;
                                                                                              flex-wrap: wrap;
                                                                                              }

                                                                                              .sns-link {
                                                                                                display: inline-flex;
                                                                                                  align-items: center;
                                                                                                    justify-content: center;
                                                                                                      width: 38px;
                                                                                                        height: 38px;
                                                                                                          border-radius: 50%;
                                                                                                            background: rgba(255,255,255,0.08);
                                                                                                              border: 1px solid rgba(255,255,255,0.15);
                                                                                                                color: var(--w60);
                                                                                                                  font-size: 1rem;
                                                                                                                    text-decoration: none;
                                                                                                                      transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
                                                                                                                      }

                                                                                                                      .sns-link:hover {
                                                                                                                        background: var(--gold);
                                                                                                                          color: var(--navy-dark);
                                                                                                                            border-color: var(--gold);
                                                                                                                            }

                                                                                                                            /* --- 카카오 채널 플로팅 버튼 --- */




                                                                                                                                                                              /* --- 모바일 비디오 폴백 --- */
                                                                                                                                                                              @media (max-width: 768px) {
                                                                                                                                                                                .hero-video-fallback {
                                                                                                                                                                                    background: url('../assets/images/gallery/gallery-03.jpg') center center / cover no-repeat;
                                                                                                                                                                                      }

                                                                                                                                                                                        /* 저사양 기기에서는 비디오 숨기고 폴백 표시 */
                                                                                                                                                                                          @media (prefers-reduced-motion: reduce) {
                                                                                                                                                                                              .hero-video {
                                                                                                                                                                                                    display: none;
                                                                                                                                                                                                        }
                                                                                                                                                                                                            .hero-video-fallback {
                                                                                                                                                                                                                  display: block !important;
                                                                                                                                                                                                                      }
                                                                                                                                                                                                                        }
                                                                                                                                                                                                                        }

                                                                                                                                                                                                                        /* --- FAQ 섹션 모바일 반응형 --- */
                                                                                                                                                                                                                        @media (max-width: 768px) {
                                                                                                                                                                                                                          .faq-section {
                                                                                                                                                                                                                              padding: var(--sp-mobile);
                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                  .faq-question {
                                                                                                                                                                                                                                      font-size: 0.9rem;
                                                                                                                                                                                                                                          padding: 16px 0;
                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                            }

/* ================================================================
