:root {
  --bg: #F9F8F6;
  --surface: #FFFFFF;
  --navy: #0E1E35;
  --navy2: #162b4a;
  --navy3: #1e3a60;
  --gold: #d3a032;
  --gold2: #fec446;
  --gold-bg: #FBF5E6;
  --ink: #111111;
  --ink2: #3A3A3A;
  --ink3: #777777;
  --ink4: #AAAAAA;
  --line: rgba(0, 0, 0, 0.07);
  --line2: rgba(0, 0, 0, 0.13);
  --green: #165C3A;
  --green-bg: #EBF5EE;
  --red: #A02020;
  --red-bg: #FBF0F0;
  --amber: #8A5A00;
  --amber-bg: #FEF5E0;
  --gray-bg: #F0F0F0;
  --r: 8px;
  --r-lg: 14px;
  --r-xl: 20px;
}

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

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

body {
  font-family: 'Pretendard', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: clip;
  max-width: 100%;
}

/* ── 스크롤 페이드인 ── */
.fade-in {
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in--up {
  transform: translateY(24px);
}

.fade-in--delay {
  transition-delay: 0.15s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 히어로: 스크롤 없이 페이지 로드 시 자동 실행 */
.fade-in-hero {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.7s ease forwards;
  animation-delay: 0.1s;
}

.fade-in-hero--delay {
  animation-delay: 0.3s;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in--d1 {
  transition-delay: 0.15s;
}

.fade-in--d2 {
  transition-delay: 0.3s;
}

.fade-in--d3 {
  transition-delay: 0.5s;
}

@media (max-width: 768px) {

  .fade-in--d1,
  .fade-in--d2,
  .fade-in--d3 {
    transition-delay: 0s;
  }
}

a {
  text-decoration: none;
  color: inherit;
  text-align: center;
  vertical-align: middle;
}

button {
  font-family: inherit;
  cursor: pointer
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 300;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
  background: rgba(14, 30, 53, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px)
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center
}

.nav-logo-mark i {
  font-size: 18px;
  color: var(--navy)
}

.nav-logo-text {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-align: left;
  line-height: 18px;
}

.nav-logo-text span {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, .4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-top: -2px
}

.nav-links {
  display: flex;
  gap: 32px
}

.nav-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  font-weight: 400;
  transition: color .2s;
  cursor: pointer
}

.nav-links a:hover,
.nav-links a.on {
  color: #fff
}

.nav-cta {
  height: 36px;
  padding: 0 18px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 700;
  transition: background .2s;
  text-align: center;
  align-content: center;
}

.nav-cta:hover {
  background: var(--gold2)
}

/* HERO */
.hero {
  background: var(--navy);
  padding: 80px clamp(20px, 5vw, 60px) 72px;
  position: relative;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(184, 145, 58, .12) 0%, transparent 70%);
  pointer-events: none
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 14px;
  background: rgba(184, 145, 58, .15);
  border: 1px solid rgba(184, 145, 58, .3);
  border-radius: 20px
}

.hero-kicker i {
  font-size: 13px;
  color: var(--gold)
}

.hero-kicker span {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase
}

.hero-h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 16px
}

.hero-h1 em {
  font-style: normal;
  color: var(--gold)
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 400
}

.hero-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.btn-gold {
  height: 50px;
  padding: 0 28px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 700;
  transition: background .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-gold:hover {
  background: var(--gold2)
}

.btn-ghost {
  height: 50px;
  padding: 0 28px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .8);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 500;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px
}

/* HERO IMAGE GRID */
.hero-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 120px;
  gap: 8px;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative
}

.hero-img-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(14, 30, 53, .55) 0%, transparent 60%); */
  pointer-events: none;
  border-radius: var(--r-xl)
}

.h-img {
  background: #1A2E48;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.h-img i {
  font-size: 36px;
  /* color: rgba(255, 255, 255, .12) */
}

.h-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.h-img-main {
  grid-row: 1/3;
  border-radius: var(--r-lg) 0 0 var(--r-lg)
}

.h-img-tr {
  border-radius: 0 var(--r-lg) 0 0
}

.h-img-br {
  border-radius: 0 0 var(--r-lg) 0
}

.h-img-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(14, 30, 53, .85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  gap: 5px
}

.h-img-badge i {
  font-size: 12px;
  color: var(--gold)
}

/* HERO STATS CARD */
.hero-stats-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-xl);
  padding: 28px;
  backdrop-filter: blur(10px)
}

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

.h-stat {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.h-stat:nth-child(3),
.h-stat:nth-child(4) {
  padding-bottom: 0;
  border-bottom: none
}

.h-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.8px;
  line-height: 1
}

.h-stat-num em {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  font-style: normal;
  margin-left: 3px
}

.h-stat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  margin-top: 4px;
  letter-spacing: 0.3px
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(184, 145, 58, .1);
  border-radius: var(--r);
  border: 1px solid rgba(184, 145, 58, .2)
}

.hero-trust i {
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0
}

.hero-trust span {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5
}

.hero-trust strong {
  color: var(--gold)
}

/* TRUST STRIP */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 0 clamp(20px, 5vw, 60px)
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 64px;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 0
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px
}

.trust-item i {
  font-size: 16px;
  color: var(--gold)
}

.trust-item span {
  font-size: 12px;
  color: var(--ink3);
  font-weight: 500
}

.trust-sep {
  width: 1px;
  height: 20px;
  background: var(--line2);
  flex-shrink: 0
}

.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px)
}

/* APPEAL */
.appeal {
  background: var(--navy);
  padding: 64px clamp(20px, 5vw, 60px)
}

.appeal-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px
}

.appeal-ani {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.appeal-ani.visible {
  opacity: 1;
  transform: translateY(0);
}

.appeal-item {
  padding: 36px 32px;
  background: rgba(255, 255, 255, .04);
  position: relative;
  overflow: hidden;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), background .2s;
}

.appeal-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity .2s
}

.appeal-item:hover {
  background: rgba(255, 255, 255, .07)
}

.appeal-item:hover::before {
  opacity: 1
}

.appeal-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(184, 145, 58, .12);
  border: 1px solid rgba(184, 145, 58, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px
}

.appeal-icon i {
  font-size: 22px;
  color: var(--gold)
}

.appeal-num {
  font-size: 10px;
  font-weight: 700;
  color: rgba(184, 145, 58, .5);
  letter-spacing: 2px;
  margin-bottom: 10px
}

.appeal-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
  line-height: 1.3
}

.appeal-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7
}

/* FILTER */
.filter-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 64px;
  z-index: 200
}

.filter-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  gap: 8px;
  height: 54px;
  overflow-x: auto
}

.filter-inner::-webkit-scrollbar {
  display: none
}

.chip {
  height: 32px;
  padding: 0 14px;
  border-radius: 20px;
  border: 1px solid var(--line2);
  background: transparent;
  color: var(--ink3);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: all .15s;
  flex-shrink: 0
}

.chip:hover {
  border-color: var(--navy);
  color: var(--navy)
}

.chip.on {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  font-weight: 600
}

/* LIST */
.list-section {
  padding: 48px 0 60px
}

.list-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px
}

.list-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.5px
}

.list-count {
  font-size: 13px;
  color: var(--ink3)
}

.apt-row {
  display: grid;
  grid-template-columns: 300px 1fr auto;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--surface);
  overflow: hidden;
  margin-bottom: 16px;
  transition: box-shadow .2s, transform .2s;
  cursor: pointer
}

.apt-row:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, .1);
  transform: translateY(-2px)
}

.apt-thumb {
  width: 300px;
  height: auto;
  min-height: 200px;
  align-self: stretch;
  position: relative;
}

.apt-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center
}

.apt-thumb img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.apt-thumb-inner i {
  font-size: 40px;
  color: rgba(0, 0, 0, .2)
}

.thumb-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px
}

.badge-open {
  background: var(--green-bg);
  color: var(--green)
}

.badge-soon {
  background: var(--amber-bg);
  color: var(--amber)
}

.badge-done {
  background: var(--gray-bg);
  color: var(--ink3)
}

.apt-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0
}

.apt-body-inner {
  padding: 20px 20px 0px;
}

.apt-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.6px;
  margin-bottom: 4px
}

.apt-loc {
  font-size: 12px;
  color: var(--ink3);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 4px
}

.apt-loc i {
  font-size: 13px
}

.apt-specs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px
}

.spec-lbl {
  font-size: 10px;
  color: var(--ink4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px
}

.spec-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink2)
}

.tag-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap
}

.tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--bg);
  color: var(--ink3);
  border: 1px solid var(--line)
}

.invest-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 7px;
  margin-bottom: 12px;
}

.invest-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--gold-bg);
  color: var(--gold);
  border: 1px solid rgba(184, 145, 58, .25);
  font-weight: 600
}

.apt-right {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  min-width: 180px;
  border-left: 1px solid var(--line)
}

.price-lbl {
  font-size: 10px;
  color: var(--ink4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
  text-align: right
}

.price-main {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.8px;
  text-align: right
}

.price-range {
  font-size: 12px;
  color: var(--ink4);
  text-align: right;
  margin-top: 2px
}

.right-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px
}

.dday {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px
}

.dday-red {
  background: var(--red-bg);
  color: var(--red)
}

.dday-amber {
  background: var(--amber-bg);
  color: var(--amber)
}

.dday-gray {
  background: var(--gray-bg);
  color: var(--ink3)
}

.detail-link {
  height: 40px;
  padding: 0 18px;
  border: 1.5px solid var(--navy);
  border-radius: var(--r);
  background: transparent;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
  white-space: nowrap
}

.detail-link:hover {
  background: var(--navy);
  color: #fff
}

/* SOCIAL PROOF SLIDER */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 60px clamp(20px, 5vw, 60px)
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto
}

.proof-head {
  text-align: center;
  margin-bottom: 40px
}

.proof-kicker {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px
}

.proof-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.8px
}

.proof-slider-wrap {
  position: relative
}

.proof-track-outer {
  overflow: hidden;
  border-radius: var(--r-lg)
}

.proof-track {
  display: flex;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  will-change: transform
}

.proof-card {
  flex: 0 0 calc(33.333% - 11px);
  margin-right: 16px;
  padding: 28px;
  background: var(--bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--line)
}

.proof-card:last-child {
  margin-right: 0
}

.proof-quote {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
  font-family: Georgia, serif
}

.proof-text {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 16px
}

.proof-author {
  font-size: 12px;
  color: var(--ink3);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px
}

.proof-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0
}

.proof-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px
}

.proof-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--line2);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .15s;
  flex-shrink: 0
}

.proof-arrow:hover {
  border-color: var(--navy);
  background: var(--navy)
}

.proof-arrow:hover i {
  color: #fff
}

.proof-arrow i {
  font-size: 16px;
  color: var(--ink3);
  transition: color .15s
}

.proof-dots {
  display: flex;
  gap: 6px;
  align-items: center
}

.proof-dot-btn {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line2);
  border: none;
  cursor: pointer;
  transition: all .2s;
  padding: 0
}

.proof-dot-btn.on {
  width: 20px;
  border-radius: 3px;
  background: var(--navy)
}

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  padding: 64px clamp(20px, 5vw, 60px)
}

.cta-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center
}

.cta-band-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 8px
}

.cta-band-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, .55)
}

.cta-band-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center
}

/* VISIT CTA */
.visit-cta {
  background: var(--navy);
  padding: 56px clamp(20px, 5vw, 60px)
}

.visit-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.visit-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background .2s
}

.visit-card:hover {
  background: rgba(255, 255, 255, .09)
}

.visit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(184, 145, 58, .15);
  border: 1px solid rgba(184, 145, 58, .25);
  display: flex;
  align-items: center;
  justify-content: center
}

.visit-icon i {
  font-size: 22px;
  color: var(--gold)
}

.visit-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 5px;
}

.visit-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.6
}

.visit-btn {
  height: 44px;
  padding: 0 22px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  align-self: flex-start;
  transition: all .2s;
  border: none
}

.visit-btn-primary {
  background: var(--gold);
  color: var(--navy)
}

.visit-btn-primary:hover {
  background: var(--gold2)
}

/* PAGINATION */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 0 8px
}

.page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: var(--r);
  border: 1px solid var(--line2);
  background: transparent;
  color: var(--ink3);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  display: flex;
  align-items: center;
  justify-content: center
}

.page-btn:hover:not(:disabled) {
  border-color: var(--navy);
  color: var(--navy)
}

.page-btn.on {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  font-weight: 700
}

.page-btn:disabled {
  opacity: .3;
  cursor: not-allowed
}

.page-empty {
  display: none;
  padding: 48px 0;
  text-align: center;
  color: var(--ink3);
  font-size: 14px
}

/* FOOTER */
footer {
  background: #08111E;
  padding: 52px clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px
}

.f-logo {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, .7)
}

.f-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, .25);
  text-align: center
}

.f-tel {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  text-align: right
}

/* FLOATING BAR */
.floating-bar {
  position: fixed;
  bottom: 20px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(8, 16, 30, 0.93);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .06);
  padding: 5px;
  white-space: nowrap;
  width: calc(100vw - 48px);
  max-width: 320px;
  min-width: 0;
  pointer-events: none;
  z-index: 999;
}

.fl-btn {
  flex: 1;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: 'Pretendard', sans-serif;
  color: rgba(255, 255, 255, .75);
  border-radius: 100px;
  transition: background .15s, color .15s;
  text-decoration: none;
  padding: 0 8px;
  min-width: 0;
  overflow: hidden;
  pointer-events: auto;
}

.fl-btn:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff
}

.fl-btn i {
  font-size: 17px
}

.fl-kakao {
  background: #FEE500;
  color: #2C1A00;
  flex: 1.2
}

.fl-kakao:hover {
  background: #FFD600 !important;
  color: #2C1A00 !important
}

.fl-kakao i {
  color: #2C1A00
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .hero-img-grid {
    grid-template-rows: 140px 100px
  }

  .hero-stats-card {
    padding: 20px
  }

  .appeal-inner {
    grid-template-columns: 1fr 1fr
  }

  .appeal-item:last-child {
    grid-column: 1/-1
  }

  .proof-card {
    flex: 0 0 calc(50% - 8px)
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .hero {
    padding: 48px clamp(20px, 5vw, 60px) 52px
  }

  .hero-h1 {
    font-size: 28px
  }

  .trust-strip {
    display: none
  }

  .appeal-inner {
    grid-template-columns: 1fr
  }

  .apt-row {
    grid-template-columns: 1fr;
    border-radius: var(--r-lg)
  }

  .apt-row:hover {
    transform: none
  }

  .apt-thumb {
    width: 100%;
    height: 220px;
  }

  .apt-body-inner {
    padding: 5px 5px 5px;
  }

  .apt-body {
    padding: 15px 15px 5px
  }

  .apt-right {
    border-left: none;
    border-top: 1px solid var(--line);
    padding: 16px 20px 20px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-width: unset
  }

  .price-main {
    font-size: 22px
  }

  .proof-card {
    flex: 0 0 calc(100% - 0px);
    margin-right: 0
  }

  .cta-band-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    align-items: center
  }

  .cta-band-btns {
    justify-content: center;
    width: 100%
  }

  .visit-inner {
    grid-template-columns: 1fr
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 6px
  }

  .f-tel {
    text-align: center
  }

  .floating-bar {
    left: 16px;
    right: 16px;
    transform: none;
    bottom: 14px;
    min-width: unset;
    width: calc(100% - 32px)
  }

  .fl-btn {
    font-size: 12px;
    height: 42px
  }
}

@media(max-width:480px) {
  .hero-btns {
    flex-direction: column
  }

  .btn-gold,
  .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .apt-specs {
    gap: 12px
  }

  .list-header {
    flex-direction: column;
    gap: 4px
  }
}