/* =========================================================================
   분양마루 — 부정클릭방지 (단독 페이지) 통합 스타일시트
   이 파일 하나 + 부정클릭방지.html 두 개만으로 동작합니다.
   [1] 디자인 토큰 & 공통 컴포넌트  [2] 서브페이지 & 부정클릭방지 전용
   상단 :root 의 4색만 바꾸면 전체 색이 바뀝니다.
   ========================================================================= */

/* =========================================================================
   분양마루 — Landing page styles
   Premium, trustworthy B2B. Deep navy + gold. Pretendard.
   ========================================================================= */

:root {
  /* ╔══════════════════════════════════════════════════════════════════╗
     ║  🎨 브랜드 색상 — 여기 4가지만 바꾸면 사이트 전체 색이 바뀝니다       ║
     ╚══════════════════════════════════════════════════════════════════╝ */
  --c-primary: #1c2d4a;   /* ① 메인 (네이비) — 헤더 글자, 버튼, 강조 텍스트 */
  --c-accent:  #b9967b;   /* ② 포인트 (골드) — CTA, 강조, 링크 밑줄, 아이콘 */
  --c-surface: #f6f2ec;   /* ③ 배경 (베이지) — 섹션 교차 배경 */
  --c-text:    #1f2a3d;   /* ④ 본문 글자색 */
  /* ──────────────────────────────────────────────────────────────────
     아래 값들은 위 4색에서 자동으로 파생됩니다. (보통 건드릴 필요 없음)
     ────────────────────────────────────────────────────────────────── */

  /* primary 계열 */
  --navy:      var(--c-primary);
  --navy-700:  color-mix(in srgb, var(--c-primary) 88%, #000);
  --navy-900:  color-mix(in srgb, var(--c-primary) 70%, #000);

  /* accent 계열 */
  --gold:      var(--c-accent);
  --gold-600:  color-mix(in srgb, var(--c-accent) 88%, #000);
  --gold-100:  color-mix(in srgb, var(--c-accent) 28%, #fff);

  /* text 계열 */
  --ink:       var(--c-text);
  --ink-soft:  color-mix(in srgb, var(--c-text) 70%, #fff);
  --ink-faint: color-mix(in srgb, var(--c-text) 48%, #fff);

  /* surface 계열 */
  --paper: #ffffff;
  --beige:      var(--c-surface);
  --beige-deep: color-mix(in srgb, var(--c-surface) 95%, #000);
  --line:       color-mix(in srgb, var(--c-surface) 93%, #000);
  --line-soft:  color-mix(in srgb, var(--c-surface) 97%, #000);

  /* accent glow (네이비 위 골드 빛 번짐) — accent에서 파생 */
  --glow: color-mix(in srgb, var(--c-accent) 20%, transparent);

  /* tunables (driven by Tweaks) */
  --accent: var(--c-accent);
  --accent-600: var(--gold-600);
  --radius: 16px;
  --radius-sm: 10px;

  --maxw: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    system-ui, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

/* corners=sharp tweak */
[data-corners="sharp"] {
  --radius: 3px;
  --radius-sm: 2px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

h1, h2, h3, h4, p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- shared bits ------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: none;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold); }

.section-head { max-width: 640px; }
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.22;
  margin-top: 18px;
  color: var(--navy);
}
.section-head p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 26px;
  border-radius: var(--radius-sm);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease),
    box-shadow .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn .arr { transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px -12px color-mix(in srgb, var(--accent) 80%, #000);
}
.btn-primary:hover { background: var(--accent-600); transform: translateY(-1px); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-1px); }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); }

.btn-outline {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--navy); transform: translateY(-1px); }

.btn-sm { height: 44px; padding: 0 18px; font-size: 14.5px; }

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 76px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0);
  transition: background .3s var(--ease), box-shadow .3s var(--ease),
    border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.nav.scrolled {
  background: rgba(255,255,255,.86);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 8px 30px -22px rgba(28,45,74,.5);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand .mark {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  position: relative;
}
.brand .mark i {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--accent);
  transform: rotate(45deg);
}
.brand .mark i:nth-child(2) {
  width: 14px; height: 14px;
  background: transparent;
  border: 1.5px solid var(--navy);
  transform: rotate(45deg) translate(4px, 4px);
  opacity: .85;
}
.brand b {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}
/* nav turns light text when over hero (top, not scrolled) */
.nav:not(.scrolled) .brand b { color: #fff; }
.nav:not(.scrolled) .brand .mark i:nth-child(2) { border-color: rgba(255,255,255,.7); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s;
}
.nav-links a:hover { color: var(--navy); }
.nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,.78); }
.nav:not(.scrolled) .nav-links a:hover { color: #fff; }

.nav-right { display: flex; align-items: center; gap: 18px; }

/* nav phone */
.nav-tel {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 800; letter-spacing: -0.01em;
  color: var(--gold-600);
  font-variant-numeric: tabular-nums;
}
.nav-tel .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.nav:not(.scrolled) .nav-tel { color: var(--gold); }
@media (max-width: 560px) { .nav-tel { display: none; } }

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

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 150px 0 120px;
}
.hero::before {
  /* soft radial glow */
  content: "";
  position: absolute;
  width: 720px; height: 720px;
  right: -180px; top: -200px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 20%, transparent), transparent 62%);
  pointer-events: none;
}
.hero::after {
  /* faint grid texture */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-copy { max-width: 600px; }
.hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.035em;
  margin-top: 24px;
}
.hero h1 .hl {
  color: var(--gold);
  position: relative;
}
.hero-sub {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  max-width: 460px;
}
.hero-cta { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
}
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* centered hero variant */
[data-hero="centered"] .hero .wrap {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 56px;
}
[data-hero="centered"] .hero-copy { max-width: 760px; }
[data-hero="centered"] .hero-sub { max-width: 560px; margin-left: auto; margin-right: auto; }
[data-hero="centered"] .hero-cta,
[data-hero="centered"] .hero-trust { justify-content: center; }
[data-hero="centered"] .hero-visual { width: 100%; max-width: 760px; }

/* hero visual — stacked browser cards = many sites, one platform */
.hero-visual { position: relative; height: 420px; }
.site-card {
  position: absolute;
  width: 300px;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 30px 70px -28px rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.1);
}
.site-card .bar {
  height: 26px;
  background: #f1eee9;
  display: flex; align-items: center; gap: 5px;
  padding: 0 10px;
  border-bottom: 1px solid #e7e3dc;
}
.site-card .bar i { width: 7px; height: 7px; border-radius: 50%; background: #cfcabf; }
.site-card .shot { height: 150px; position: relative; }

.site-card.c1 { right: 36px; top: 6px; z-index: 3; transform: rotate(0deg); }
.site-card.c2 { right: 110px; top: 96px; z-index: 2; width: 280px; opacity: .96; }
.site-card.c3 { right: 6px; top: 196px; z-index: 1; width: 270px; opacity: .9; }

/* mini mock content inside cards */
.mini { padding: 14px; }
.mini .kline { height: 8px; border-radius: 3px; background: #e9e5de; }
.mini .kline.w1 { width: 50%; }
.mini .kline.w2 { width: 78%; margin-top: 7px; }
.mini .kpill {
  display: inline-block; margin-top: 12px;
  height: 18px; width: 78px; border-radius: 4px;
  background: var(--accent);
}
.shot.s-navy { background: linear-gradient(160deg, #21314f, #16223a); }
.shot.s-white { background: linear-gradient(160deg, #ffffff, #f3efe9); }
.shot.s-beige { background: linear-gradient(160deg, #efe6d6, #e3d4bd); }
.shot .glyph {
  position: absolute; left: 14px; bottom: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  color: rgba(255,255,255,.85);
}
.shot.s-white .glyph { color: var(--navy); }
.shot.s-beige .glyph { color: #6b5535; }

.float-tag {
  position: absolute;
  left: -8px; top: 150px;
  z-index: 4;
  background: #fff;
  color: var(--navy);
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,.45);
  display: flex; align-items: center; gap: 11px;
}
.float-tag .ico {
  min-width: 38px; height: 38px; border-radius: 8px;
  padding: 0 8px;
  background: var(--gold-100); color: var(--gold-600);
  display: grid; place-items: center; font-weight: 800; font-size: 16px;
}
.float-tag .ico small { font-size: .6em; font-weight: 700; vertical-align: top; }
.float-tag .ft-k { font-size: 12px; color: var(--ink-faint); }
.float-tag .ft-v { font-size: 15px; font-weight: 700; }

@media (max-width: 940px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 380px; margin: 0 auto; max-width: 420px; }
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  color: rgba(255,255,255,.5);
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
  transition: color .2s;
}
.scroll-cue:hover { color: rgba(255,255,255,.85); }
.sc-mouse {
  width: 22px; height: 34px; border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,.45);
  display: flex; justify-content: center; padding-top: 6px;
}
.sc-mouse i { width: 3px; height: 7px; border-radius: 2px; background: var(--gold); animation: scwheel 1.6s var(--ease) infinite; }
@keyframes scwheel { 0% { opacity: 0; transform: translateY(-3px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(7px); } }
@media (prefers-reduced-motion: reduce) { .sc-mouse i { animation: none; } }
@media (max-width: 940px) { .scroll-cue { display: none; } }

/* floating quick contact */
.quick-contact {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  display: flex; flex-direction: column; gap: 10px;
}
.qc {
  display: inline-flex; align-items: center; gap: 9px;
  height: 52px; padding: 0 20px 0 16px;
  border-radius: 999px;
  font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em;
  box-shadow: 0 14px 30px -12px rgba(28,45,74,.55);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.qc:hover { transform: translateY(-2px); box-shadow: 0 20px 36px -14px rgba(28,45,74,.65); }
.qc-ic {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; font-size: 13px;
}
.qc-primary { background: var(--accent); color: #fff; }
.qc-primary .qc-ic { background: rgba(255,255,255,.22); }
.qc-secondary { background: var(--navy); color: #fff; }
.qc-secondary .qc-ic { background: rgba(255,255,255,.14); color: var(--gold); }
@media (max-width: 560px) {
  .quick-contact { right: 14px; bottom: 14px; }
  .qc { height: 48px; font-size: 0; padding: 0; width: 48px; justify-content: center; }
  .qc .qc-ic { margin: 0; }
}

/* =========================================================================
   STATS BAR
   ========================================================================= */
.stats {
  background: var(--navy-900);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.07);
}
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat {
  padding: 46px 24px;
  text-align: center;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute; left: 0; top: 28px; bottom: 28px;
  width: 1px; background: rgba(255,255,255,.1);
}
.stat .num {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat .num .u { font-size: .52em; font-weight: 700; margin-left: 3px; color: rgba(255,255,255,.85); }
.stat .lbl { margin-top: 12px; font-size: 15px; color: rgba(255,255,255,.62); font-weight: 500; }
@media (max-width: 720px) {
  .stats .wrap { grid-template-columns: 1fr; }
  .stat + .stat::before { left: 28px; right: 28px; top: 0; bottom: auto; width: auto; height: 1px; }
}

/* =========================================================================
   HOW IT WORKS
   ========================================================================= */
.how { padding: 120px 0; background: var(--paper); }
.how-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.step { position: relative; padding: 0 26px; }
.step:first-child { padding-left: 0; }
.step .idx {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  font-size: 18px; font-weight: 800;
  color: var(--navy);
  background: #fff;
  position: relative;
  z-index: 2;
}
.step .idx .dot {
  position: absolute; right: -3px; top: -3px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
}
.step h3 { margin-top: 22px; font-size: 19px; font-weight: 700; color: var(--navy); }
.step p { margin-top: 9px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }
/* connector line */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 27px;
  left: calc(54px + 14px);
  right: 14px;
  height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--line) 0 7px, transparent 7px 13px);
  z-index: 1;
}
.step:first-child:not(:last-child)::after { left: 68px; }
.how-end {
  margin-top: 56px;
  display: flex; justify-content: center;
}
.how-end .badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--navy);
  color: #fff;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 16px; font-weight: 700;
}
.how-end .badge .check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: grid; place-items: center; font-size: 13px; font-weight: 900;
}
@media (max-width: 820px) {
  .how-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .step { padding: 0; }
  .step::after { display: none; }
}
@media (max-width: 460px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   SKINS
   ========================================================================= */
.skins { padding: 120px 0; background: var(--beige); }
.skins-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.skin {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.skin:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(28,45,74,.4); }
.skin-prev { height: 230px; position: relative; overflow: hidden; }

/* skin 01 — white / GSAP minimal */
.prev-01 { background: #fff; padding: 22px; }
.prev-01 .nav-line { display: flex; justify-content: space-between; align-items: center; }
.prev-01 .nav-line b { font-size: 12px; font-weight: 800; color: #1a1a1a; letter-spacing: .02em; }
.prev-01 .nav-line .lk { display: flex; gap: 9px; }
.prev-01 .nav-line .lk i { width: 22px; height: 4px; border-radius: 2px; background: #e3e0da; }
.prev-01 .big { margin-top: 30px; font-size: 26px; font-weight: 800; color: #15171c; letter-spacing: -.03em; line-height: 1.15; }
.prev-01 .big em { font-style: normal; color: #b07b46; }
.prev-01 .ln { margin-top: 16px; height: 5px; width: 60%; background: #ececec; border-radius: 3px; }
.prev-01 .ln.s { width: 42%; margin-top: 8px; }
.prev-01 .cta { margin-top: 18px; height: 26px; width: 92px; border-radius: 4px; background: #15171c; }

/* skin 02 — deep navy / fullpage */
.prev-02 { background: linear-gradient(165deg, #1a2740, #0e1626); padding: 22px; color: #fff; }
.prev-02 .dotnav { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 8px; }
.prev-02 .dotnav i { width: 7px; height: 7px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); }
.prev-02 .dotnav i.on { background: var(--gold); border-color: var(--gold); }
.prev-02 .tag { font-size: 10px; letter-spacing: .14em; color: var(--gold); font-weight: 700; }
.prev-02 .big { margin-top: 16px; font-size: 27px; font-weight: 800; letter-spacing: -.03em; line-height: 1.16; }
.prev-02 .ln { margin-top: 16px; height: 5px; width: 64%; background: rgba(255,255,255,.16); border-radius: 3px; }
.prev-02 .ln.s { width: 46%; margin-top: 8px; }
.prev-02 .pill { margin-top: 18px; display: inline-block; height: 26px; width: 96px; border-radius: 999px; border: 1px solid var(--gold); }

/* skin 03 — beige / teal */
.prev-03 { background: #f1e7d6; padding: 22px; color: #3a3326; }
.prev-03 .nav-line { display: flex; justify-content: space-between; align-items: center; }
.prev-03 .nav-line b { font-size: 12px; font-weight: 800; color: #2c6b62; letter-spacing: .02em; }
.prev-03 .nav-line .lk { display: flex; gap: 9px; }
.prev-03 .nav-line .lk i { width: 20px; height: 4px; border-radius: 2px; background: #d6c6a8; }
.prev-03 .big { margin-top: 28px; font-size: 25px; font-weight: 800; letter-spacing: -.03em; line-height: 1.16; color: #34302a; }
.prev-03 .big em { font-style: normal; color: #2c6b62; }
.prev-03 .ln { margin-top: 16px; height: 5px; width: 58%; background: #ddceb2; border-radius: 3px; }
.prev-03 .ln.s { width: 40%; margin-top: 8px; }
.prev-03 .cta { margin-top: 18px; height: 26px; width: 92px; border-radius: 6px; background: #2c6b62; }

.skin-meta { padding: 22px 22px 24px; }
.skin-meta .row { display: flex; align-items: center; justify-content: space-between; }
.skin-meta .code { font-size: 12px; font-weight: 700; letter-spacing: .08em; color: var(--accent); }
.skin-meta .swatches { display: flex; gap: 5px; }
.skin-meta .swatches i { width: 13px; height: 13px; border-radius: 50%; border: 1px solid rgba(0,0,0,.08); }
.skin-meta h3 { margin-top: 12px; font-size: 20px; font-weight: 700; color: var(--navy); }
.skin-meta .desc { margin-top: 7px; font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.skin-meta .demo {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; color: var(--navy);
  border-bottom: 1.5px solid var(--accent); padding-bottom: 2px;
  transition: gap .2s var(--ease);
}
.skin-meta .demo:hover { gap: 11px; }
@media (max-width: 880px) { .skins-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }

/* =========================================================================
   ADMIN PREVIEW
   ========================================================================= */
.admin { padding: 120px 0; background: var(--paper); }
.admin .wrap {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
}
.admin-copy h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.24;
  margin-top: 18px;
  color: var(--navy);
}
.admin-copy p.lead { margin-top: 18px; font-size: 17px; color: var(--ink-soft); line-height: 1.7; }
.admin-feats { margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
.admin-feats .f { display: flex; gap: 14px; align-items: flex-start; }
.admin-feats .f .ic {
  flex: none; width: 30px; height: 30px; border-radius: 8px;
  background: var(--gold-100); color: var(--gold-600);
  display: grid; place-items: center; font-weight: 900; font-size: 14px;
}
.admin-feats .f b { font-size: 15.5px; color: var(--navy); font-weight: 700; }
.admin-feats .f span { font-size: 14.5px; color: var(--ink-soft); }

/* admin window mock */
.admin-shot {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -40px rgba(28,45,74,.45);
}
.aw-bar { height: 38px; background: #f3f0ea; display: flex; align-items: center; gap: 7px; padding: 0 14px; border-bottom: 1px solid #e7e3dc; }
.aw-bar i { width: 11px; height: 11px; border-radius: 50%; }
.aw-bar i:nth-child(1) { background: #e6a29a; }
.aw-bar i:nth-child(2) { background: #ecd09a; }
.aw-bar i:nth-child(3) { background: #a9d3a6; }
.aw-bar .addr { margin-left: 12px; height: 20px; flex: 1; max-width: 260px; background: #fff; border-radius: 6px; border: 1px solid #e7e3dc; display: flex; align-items: center; padding: 0 10px; font-size: 10px; color: #9aa1ad; }
.aw-body { display: grid; grid-template-columns: 184px 1fr; min-height: 380px; }
.aw-side { background: var(--navy); padding: 18px 14px; color: #fff; }
.aw-side .logo { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; padding: 0 6px 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
.aw-side .logo .m { width: 14px; height: 14px; background: var(--gold); transform: rotate(45deg); }
.aw-nav { margin-top: 14px; display: flex; flex-direction: column; gap: 3px; }
.aw-nav .it { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 7px; font-size: 12.5px; color: rgba(255,255,255,.62); }
.aw-nav .it .b { width: 14px; height: 14px; border-radius: 4px; background: rgba(255,255,255,.16); }
.aw-nav .it.on { background: rgba(255,255,255,.1); color: #fff; }
.aw-nav .it.on .b { background: var(--gold); }
.aw-main { padding: 22px; }
.aw-main .h { display: flex; align-items: center; justify-content: space-between; }
.aw-main .h .t { font-size: 15px; font-weight: 800; color: var(--navy); }
.aw-main .h .t small { display: block; font-size: 11px; font-weight: 500; color: var(--ink-faint); margin-top: 2px; }
.aw-main .h .save { height: 30px; padding: 0 14px; border-radius: 7px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; }
.aw-card { margin-top: 16px; border: 1px solid var(--line); border-radius: 10px; padding: 16px; }
.aw-card .lab { font-size: 11px; font-weight: 700; color: var(--ink-faint); letter-spacing: .04em; }
.aw-skins { margin-top: 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.aw-skins .sk { height: 56px; border-radius: 8px; border: 2px solid transparent; position: relative; overflow: hidden; }
.aw-skins .sk.on { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent); }
.aw-skins .sk.k1 { background: linear-gradient(150deg,#fff,#efeae2); }
.aw-skins .sk.k2 { background: linear-gradient(150deg,#22324f,#101a2c); }
.aw-skins .sk.k3 { background: linear-gradient(150deg,#efe4d0,#ddc9a6); }
.aw-skins .sk .tick { position: absolute; right: 5px; top: 4px; width: 15px; height: 15px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 9px; display: grid; place-items: center; font-weight: 900; }
.aw-pal { margin-top: 16px; display: flex; gap: 7px; flex-wrap: wrap; }
.aw-pal i { width: 26px; height: 26px; border-radius: 7px; cursor: pointer; border: 1px solid rgba(0,0,0,.06); }
.aw-pal i.sel { box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--accent); }
.aw-toggle-row { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; }
.aw-toggle-row span { font-size: 12.5px; color: var(--ink); font-weight: 600; }
.aw-toggle { width: 38px; height: 22px; border-radius: 999px; background: var(--accent); position: relative; }
.aw-toggle i { position: absolute; top: 2px; right: 2px; width: 18px; height: 18px; border-radius: 50%; background: #fff; }
@media (max-width: 920px) {
  .admin .wrap { grid-template-columns: 1fr; gap: 44px; }
}

/* =========================================================================
   PRICING
   ========================================================================= */
.pricing { padding: 120px 0; background: var(--beige); }
.pricing .section-head { margin: 0 auto; text-align: center; }
.price-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 880px;
  margin-left: auto; margin-right: auto;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  display: flex; flex-direction: column;
}
.plan.feat {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  position: relative;
  box-shadow: 0 40px 80px -44px rgba(28,45,74,.6);
}
.plan .tier { font-size: 14px; font-weight: 700; letter-spacing: .04em; color: var(--accent); }
.plan.feat .tier { color: var(--gold); }
.plan .ribbon {
  position: absolute; top: 26px; right: 30px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  background: var(--gold); color: var(--navy);
  padding: 5px 11px; border-radius: 999px;
}
.plan .pname { margin-top: 6px; font-size: 26px; font-weight: 800; letter-spacing: -.02em; color: var(--navy); }
.plan.feat .pname { color: #fff; }
.plan .pnum { margin-top: 22px; display: flex; align-items: baseline; gap: 8px; }
.plan .pnum b { font-size: 46px; font-weight: 800; letter-spacing: -.03em; color: var(--navy); line-height: 1; }
.plan.feat .pnum b { color: #fff; }
.plan .pnum .unit { font-size: 16px; font-weight: 600; color: var(--ink-soft); }
.plan.feat .pnum .unit { color: rgba(255,255,255,.6); }
.plan .pdesc { margin-top: 12px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
.plan.feat .pdesc { color: rgba(255,255,255,.66); }
.plan .pdiv { height: 1px; background: var(--line); margin: 26px 0; }
.plan.feat .pdiv { background: rgba(255,255,255,.14); }
.plan ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.plan li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink); line-height: 1.5; }
.plan.feat li { color: rgba(255,255,255,.82); }
.plan li .ck {
  flex: none; width: 19px; height: 19px; border-radius: 50%;
  background: var(--gold-100); color: var(--gold-600);
  display: grid; place-items: center; font-size: 10px; font-weight: 900;
  margin-top: 1px;
}
.plan.feat li .ck { background: color-mix(in srgb, var(--accent) 22%, transparent); color: var(--gold); }
.plan .pbtn { margin-top: 30px; }
.plan .pbtn .btn { width: 100%; }
@media (max-width: 720px) { .price-grid { grid-template-columns: 1fr; max-width: 440px; } }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact { background: var(--navy); color: #fff; padding: 110px 0; position: relative; overflow: hidden; }
.contact::before {
  content: ""; position: absolute;
  width: 560px; height: 560px; left: -160px; bottom: -240px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 16%, transparent), transparent 60%);
}
.contact .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.contact-copy h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; letter-spacing: -.03em; line-height: 1.24; margin-top: 18px; }
.contact-copy p { margin-top: 18px; font-size: 17px; color: rgba(255,255,255,.7); line-height: 1.7; max-width: 380px; }
.contact-copy .ph { margin-top: 28px; font-size: 15px; color: rgba(255,255,255,.6); }
.contact-copy .ph b { color: var(--gold); font-weight: 700; font-size: 20px; display: block; margin-top: 4px; letter-spacing: .01em; }

.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px;
  color: var(--ink);
  box-shadow: 0 50px 90px -50px rgba(0,0,0,.7);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.field label .req { color: var(--accent); margin-left: 3px; }
.field input, .field select {
  height: 50px; border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fbfaf8;
  padding: 0 15px;
  font-family: inherit; font-size: 15px; color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%238390a6' d='M0 0h12L6 8z'/></svg>");
  background-repeat: no-repeat; background-position: right 15px center;
  padding-right: 38px;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.field input::placeholder { color: var(--ink-faint); }
.field.err input, .field.err select { border-color: #d27a6e; background: #fdf4f2; }
.field .msg { font-size: 12px; color: #c4544a; min-height: 0; display: none; }
.field.err .msg { display: block; }
.form-submit { margin-top: 22px; }
.form-submit .btn { width: 100%; height: 54px; }
.form-note { margin-top: 14px; font-size: 12.5px; color: var(--ink-faint); text-align: center; }

.form-success { text-align: center; padding: 30px 10px; display: none; }
.form-card.done .form-grid, .form-card.done .form-submit, .form-card.done .form-note { display: none; }
.form-card.done .form-success { display: block; }
.form-success .big-ck {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--gold-100); color: var(--gold-600);
  display: grid; place-items: center; font-size: 28px; font-weight: 900;
  animation: pop .5s var(--ease);
}
@keyframes pop { 0% { transform: scale(.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.form-success h3 { font-size: 22px; font-weight: 800; color: var(--navy); }
.form-success p { margin-top: 10px; font-size: 15px; color: var(--ink-soft); }
@media (max-width: 880px) {
  .contact .wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--navy-900); color: rgba(255,255,255,.6); padding: 48px 0; }
.footer .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.footer .brand b { color: #fff; }
.footer .brand .mark i:nth-child(2) { border-color: rgba(255,255,255,.6); }
.footer .fnav { display: flex; gap: 26px; font-size: 14px; }
.footer .fnav a:hover { color: #fff; }
.footer .cright { font-size: 13px; color: rgba(255,255,255,.4); width: 100%; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); margin-top: 8px; }

/* =========================================================================
   차별점 (WHY)
   ========================================================================= */
.diff { padding: 120px 0; background: var(--beige); }
.diff-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px 34px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.dcard:hover { transform: translateY(-5px); box-shadow: 0 28px 56px -36px rgba(28,45,74,.38); }
.dcard .dnum {
  font-size: 38px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  position: relative;
  padding-bottom: 18px;
}
.dcard .dnum::after {
  content: ""; position: absolute; left: 2px; bottom: 0;
  width: 26px; height: 2px; background: var(--accent);
}
.dcard h3 { margin-top: 20px; font-size: 21px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.dcard p { margin-top: 12px; font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
@media (max-width: 860px) {
  .diff-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
}

/* =========================================================================
   제작 사례 (portfolio grid)
   ========================================================================= */
.cases { padding: 120px 0; background: var(--paper); }
.case-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.case {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.case:hover { transform: translateY(-5px); box-shadow: 0 28px 56px -36px rgba(28,45,74,.4); }
.case-shot {
  display: block;
  width: 100%;
  height: 220px;
  background: var(--beige-deep);
}
.case-meta { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 5px; }
.case-meta b { font-size: 16px; font-weight: 700; color: var(--navy); }
.case-meta span { font-size: 13px; color: var(--ink-faint); font-weight: 500; }
@media (max-width: 860px) {
  .case-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .case-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* =========================================================================
   요금 — single plan
   ========================================================================= */
.pricing .section-head { margin: 0 auto; text-align: center; }
.price-solo {
  margin-top: 52px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.price-solo .plan { padding: 42px 40px; }
.pnum .from { font-size: 22px; font-weight: 700; color: var(--gold); align-self: flex-start; margin-top: 6px; }
.price-feats li { font-size: 15px; }
@media (max-width: 560px) { .price-solo .plan { padding: 34px 26px; } }


/* =========================================================================
   ── 이하: 서브페이지 & 부정클릭방지 전용 스타일 ──
   ========================================================================= */
/* =========================================================================
   분양마루 — Sub-page styles (스킨 소개 · 스킨 상세 · 제작 프로세스 · 요금 안내)
   Loaded AFTER styles.css. Reuses the same tokens & components.
   ========================================================================= */

/* ---- sub-page hero banner ---- */
.subhero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 138px 0 0;
}
.subhero::before {
  content: "";
  position: absolute;
  width: 640px; height: 640px;
  right: -160px; top: -220px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 18%, transparent), transparent 62%);
  pointer-events: none;
}
.subhero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
  pointer-events: none;
}
.subhero-inner { position: relative; z-index: 2; padding-bottom: 46px; }
.subhero .crumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.5); font-weight: 500;
  margin-bottom: 18px;
}
.subhero .crumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.subhero .crumb a:hover { color: var(--gold); }
.subhero .crumb .sep { opacity: .5; }
.subhero h1 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.18;
}
.subhero h1 .hl { color: var(--gold); }
.subhero .sub-desc {
  margin-top: 16px;
  font-size: 17px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  max-width: 560px;
}

/* tab strip */
.subtabs {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.subtabs .wrap { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.subtabs .wrap::-webkit-scrollbar { display: none; }
.subtabs a {
  position: relative;
  padding: 20px 26px;
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
  transition: color .2s;
}
.subtabs a:hover { color: #fff; }
.subtabs a.on { color: #fff; }
.subtabs a.on::after {
  content: ""; position: absolute; left: 26px; right: 26px; bottom: -1px;
  height: 2.5px; background: var(--gold);
}
@media (max-width: 560px) { .subtabs a { padding: 16px 16px; font-size: 14px; } }

/* center section heads used on sub-pages */
.sub-section { padding: 104px 0; }
.sub-section.beige { background: var(--beige); }
.center-head { max-width: 720px; margin: 0 auto; text-align: center; }
.center-head .eyebrow { justify-content: center; }
.center-head .eyebrow::before { display: none; }
.center-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800; letter-spacing: -0.028em; line-height: 1.22;
  margin-top: 14px; color: var(--navy);
}
.center-head h2 .hl { color: var(--accent); }
.center-head p { margin-top: 16px; font-size: 17px; color: var(--ink-soft); line-height: 1.7; }

/* ---- CTA band (bottom of sub-pages) ---- */
.cta-band {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute;
  width: 520px; height: 520px; left: -150px; bottom: -240px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 16%, transparent), transparent 60%);
}
.cta-band .wrap {
  position: relative; z-index: 2;
  padding: 88px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 36px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.24; }
.cta-band p { margin-top: 12px; font-size: 16px; color: rgba(255,255,255,.7); }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================================================
   스킨 소개 — overview cards with actions
   ========================================================================= */
.skin-actions { display: flex; gap: 10px; margin-top: 20px; }
.skin-actions .btn { flex: 1; }
.skin-feats { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 7px; }
.skin-feats span {
  font-size: 12.5px; font-weight: 600; color: var(--ink-soft);
  background: var(--beige); border: 1px solid var(--line-soft);
  padding: 5px 11px; border-radius: 999px;
}
.skins-grid.tall .skin-prev { height: 270px; }

/* =========================================================================
   스킨 상세 — big preview + feature cards + highlights
   ========================================================================= */
.detail-top { padding: 100px 0 90px; background: var(--paper); }
.detail-top .wrap { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center; }
.detail-spec .code-lg { font-size: 13px; font-weight: 700; letter-spacing: .1em; color: var(--accent); }
.detail-spec h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.2; margin-top: 14px; color: var(--navy); }
.detail-spec .lead { margin-top: 18px; font-size: 17px; color: var(--ink-soft); line-height: 1.75; }
.detail-spec .spec-list { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.detail-spec .spec-list .r { display: flex; gap: 13px; align-items: flex-start; }
.detail-spec .spec-list .r .ck { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--gold-100); color: var(--gold-600); display: grid; place-items: center; font-size: 11px; font-weight: 900; margin-top: 1px; }
.detail-spec .spec-list .r b { font-size: 15.5px; color: var(--navy); font-weight: 700; }
.detail-spec .spec-list .r span { font-size: 14.5px; color: var(--ink-soft); }
.detail-spec .palette-row { margin-top: 26px; display: flex; align-items: center; gap: 12px; }
.detail-spec .palette-row .lab { font-size: 13px; color: var(--ink-faint); font-weight: 600; }
.detail-spec .palette-row i { width: 26px; height: 26px; border-radius: 7px; border: 1px solid rgba(0,0,0,.08); }
.detail-actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

.detail-frame {
  border-radius: 14px; overflow: hidden; background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 44px 90px -44px rgba(28,45,74,.5);
}
.detail-frame .aw-bar { height: 38px; }
.detail-shot { display: block; width: 100%; height: 440px; background: var(--beige-deep); }
@media (max-width: 940px) { .detail-top .wrap { grid-template-columns: 1fr; gap: 40px; } .detail-shot { height: 300px; } }

/* feature cards (반응형/관리자/SEO/옵션) */
.feat-cards { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.fcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.fcard:hover { transform: translateY(-5px); box-shadow: 0 26px 52px -36px rgba(28,45,74,.36); }
.fcard .fic { width: 46px; height: 46px; border-radius: 12px; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-size: 19px; font-weight: 800; }
.fcard h3 { margin-top: 20px; font-size: 18px; font-weight: 700; color: var(--navy); }
.fcard p { margin-top: 9px; font-size: 14px; color: var(--ink-soft); line-height: 1.65; }
@media (max-width: 900px) { .feat-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .feat-cards { grid-template-columns: 1fr; } }

/* highlight rows */
.highlights { margin-top: 30px; display: flex; flex-direction: column; gap: 22px; }
.hl-row { display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 38px; }
.hl-row .hl-k { font-size: 12px; font-weight: 800; letter-spacing: .14em; color: var(--accent); }
.hl-row .hl-t { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; color: var(--navy); margin-top: 8px; }
.hl-row p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.7; }
@media (max-width: 760px) { .hl-row { grid-template-columns: 1fr; gap: 12px; padding: 28px 26px; } }

/* =========================================================================
   제작 프로세스 — detailed vertical timeline
   ========================================================================= */
.proc-list { max-width: 880px; margin: 60px auto 0; display: flex; flex-direction: column; }
.proc-item { position: relative; display: grid; grid-template-columns: 92px 1fr; gap: 30px; padding: 0 0 46px 0; }
.proc-item:last-child { padding-bottom: 0; }
.proc-item .pn {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--navy); color: #fff;
  display: grid; place-items: center; font-size: 22px; font-weight: 800;
  position: relative; z-index: 2;
}
.proc-item.accent .pn { background: var(--accent); }
.proc-item::before {
  content: ""; position: absolute; left: 31px; top: 64px; bottom: 0;
  width: 2px; background: var(--line);
}
.proc-item:last-child::before { display: none; }
.proc-body { padding-top: 4px; }
.proc-body h3 { font-size: 21px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.proc-body .lead { margin-top: 8px; font-size: 15.5px; color: var(--ink-soft); line-height: 1.7; }
.proc-body .tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.proc-body .tags span { font-size: 13px; font-weight: 600; color: var(--navy); background: var(--beige); border: 1px solid var(--line-soft); padding: 6px 13px; border-radius: 8px; }
@media (max-width: 560px) {
  .proc-item { grid-template-columns: 54px 1fr; gap: 20px; }
  .proc-item .pn { width: 54px; height: 54px; font-size: 19px; }
  .proc-item::before { left: 26px; top: 54px; }
}

/* prep / note strip */
.note-strip { margin-top: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.note-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 32px; }
.note-card .nk { font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--accent); }
.note-card h3 { margin-top: 10px; font-size: 19px; font-weight: 800; color: var(--navy); }
.note-card p { margin-top: 10px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }
@media (max-width: 680px) { .note-strip { grid-template-columns: 1fr; } }

/* =========================================================================
   요금 안내 — comparison table
   ========================================================================= */
.compare { margin-top: 56px; max-width: 980px; margin-left: auto; margin-right: auto; }
.compare-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.compare-grid .ch { padding: 30px 28px; border-bottom: 1px solid var(--line); }
.compare-grid .ch.plan-col { border-left: 1px solid var(--line-soft); }
.compare-grid .ch.feat-on { background: var(--navy); color: #fff; }
.ch .tier { font-size: 12.5px; font-weight: 700; letter-spacing: .06em; color: var(--accent); }
.ch .pn { margin-top: 8px; font-size: 21px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.ch.feat-on .pn { color: #fff; }
.ch .pp { margin-top: 14px; display: flex; align-items: baseline; gap: 6px; }
.ch .pp b { font-size: 30px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.ch.feat-on .pp b { color: #fff; }
.ch .pp .u { font-size: 14px; color: var(--ink-soft); font-weight: 600; }
.ch.feat-on .pp .u { color: rgba(255,255,255,.65); }
.ch .pp .from { font-size: 15px; color: var(--gold); font-weight: 700; }
.compare-grid .rowlab,
.compare-grid .cell {
  padding: 18px 28px; border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px; display: flex; align-items: center;
}
.compare-grid .rowlab { font-weight: 700; color: var(--navy); background: var(--beige); }
.compare-grid .cell { color: var(--ink-soft); border-left: 1px solid var(--line-soft); justify-content: center; text-align: center; }
.compare-grid .cell.yes { color: var(--gold-600); font-weight: 800; }
.compare-grid .cell.no { color: var(--ink-faint); }
.compare-grid .frow:last-child .rowlab,
.compare-grid .frow:last-child .cell { border-bottom: 0; }
.compare-grid .ch.last { border-bottom: 1px solid var(--line); }
.compare-foot { display: grid; grid-template-columns: 1.2fr 1fr 1fr; }
.compare-foot .fc { padding: 24px 28px; border-left: 1px solid var(--line-soft); }
.compare-foot .fc:first-child { border-left: 0; }
.compare-foot .fc .btn { width: 100%; }
.compare-grid .foot { border-bottom: 0 !important; }

/* =========================================================================
   부정클릭방지 (anti-fraud-click service)
   ========================================================================= */
/* free badge in subhero */
.subhero .free-pill {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--gold); color: var(--navy);
  font-size: 13.5px; font-weight: 800; letter-spacing: -0.01em;
}
.subhero .free-pill .z { font-size: 11px; }
.subhero .sol-name { margin-top: 14px; font-size: 17px; font-weight: 600; color: rgba(255,255,255,.78); }
.subhero .sol-name b { color: var(--gold); font-weight: 800; letter-spacing: -0.01em; }

/* definition callout */
.fraud-define {
  max-width: 880px; margin: 46px auto 0;
  background: #fff; border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 32px 36px;
}
.fraud-define .q { font-size: 13px; font-weight: 800; letter-spacing: .04em; color: var(--accent); }
.fraud-define p { margin-top: 12px; font-size: 16px; color: var(--ink-soft); line-height: 1.85; }
.fraud-define b { color: var(--navy); font-weight: 700; }

/* waste visual */
.waste-wrap { max-width: 760px; margin: 0 auto; text-align: center; }
.waste-big { font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.34; color: var(--navy); }
.waste-big .bad { color: var(--accent); }
.waste-sub { margin-top: 18px; font-size: 16px; color: var(--ink-soft); line-height: 1.8; }
.waste-bar { margin: 42px auto 0; max-width: 540px; }
.waste-bar .track {
  height: 52px; border-radius: 12px; overflow: hidden;
  display: flex; box-shadow: 0 16px 34px -22px rgba(28,45,74,.5);
}
.waste-bar .seg { display: grid; place-items: center; font-size: 13px; font-weight: 700; color: #fff; padding: 0 8px; white-space: nowrap; }
.waste-bar .seg.good { flex: 85; background: var(--navy); }
.waste-bar .seg.lost { flex: 15; background: var(--accent); font-weight: 800; }
.waste-bar .legend { margin-top: 14px; display: flex; justify-content: center; gap: 22px; font-size: 13px; color: var(--ink-soft); }
.waste-bar .legend i { display: inline-block; width: 11px; height: 11px; border-radius: 3px; margin-right: 6px; vertical-align: -1px; }
.waste-bar .legend .g i { background: var(--navy); }
.waste-bar .legend .l i { background: var(--accent); }

/* before / after search mock */
.ba-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr 64px 1fr; gap: 16px; align-items: center; }
.ba-arrow { display: grid; place-items: center; }
.ba-arrow span { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-size: 20px; font-weight: 800; box-shadow: 0 12px 26px -14px rgba(28,45,74,.6); }
.search-mock { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: 0 26px 54px -34px rgba(28,45,74,.42); }
.search-mock .sm-bar { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid var(--line-soft); }
.search-mock .sm-logo { font-size: 15px; font-weight: 900; color: var(--navy); letter-spacing: -0.02em; }
.search-mock .sm-logo em { font-style: normal; color: var(--accent); }
.search-mock .sm-input { flex: 1; height: 30px; border-radius: 7px; border: 1.5px solid var(--line); display: flex; align-items: center; padding: 0 10px; font-size: 12px; color: var(--ink-faint); }
.search-mock .sm-go { width: 30px; height: 30px; border-radius: 7px; background: var(--navy); color: #fff; display: grid; place-items: center; font-size: 13px; }
.search-mock .sm-body { padding: 16px 18px 20px; min-height: 150px; }
.sm-ad { border: 1.5px solid var(--accent); border-radius: 8px; padding: 12px 14px; position: relative; }
.sm-ad .tag { position: absolute; top: -9px; left: 12px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 5px; }
.sm-ad .t { font-size: 14px; font-weight: 700; color: var(--navy); }
.sm-ad .u { font-size: 11px; color: #2c8a5a; margin-top: 4px; }
.sm-ad .d { margin-top: 7px; height: 6px; width: 90%; background: var(--line); border-radius: 3px; }
.sm-ad .d.s { width: 64%; margin-top: 5px; }
.sm-blocked { border: 1.5px dashed var(--line); border-radius: 8px; padding: 22px 14px; text-align: center; background: var(--beige); }
.sm-blocked .x { width: 34px; height: 34px; margin: 0 auto 10px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-size: 16px; font-weight: 900; }
.sm-blocked .bk { font-size: 14px; font-weight: 800; color: var(--navy); }
.sm-blocked .bs { font-size: 12px; color: var(--ink-soft); margin-top: 4px; }
.sm-results { margin-top: 14px; display: flex; flex-direction: column; gap: 11px; }
.sm-results .r .rt { height: 8px; width: 70%; background: var(--line); border-radius: 3px; }
.sm-results .r .rl { height: 5px; width: 90%; background: var(--line-soft); border-radius: 3px; margin-top: 6px; }
.ba-cap { margin-top: 16px; text-align: center; font-size: 14px; font-weight: 700; }
.ba-cap.before { color: var(--ink-faint); }
.ba-cap.after { color: var(--accent); }
@media (max-width: 720px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); margin: 4px auto; }
}

/* stats dashboard mock */
.board {
  margin: 52px auto 0; max-width: 940px;
  border-radius: 14px; overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 40px 84px -44px rgba(28,45,74,.45);
}
.board .bd-top { background: var(--navy); color: #fff; padding: 16px 22px; display: flex; align-items: center; justify-content: space-between; }
.board .bd-top .bd-logo { font-size: 15px; font-weight: 900; letter-spacing: .02em; }
.board .bd-top .bd-logo em { font-style: normal; color: var(--gold); }
.board .bd-top .bd-meta { font-size: 12px; color: rgba(255,255,255,.6); }
.board .bd-kpis { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.board .kpi { padding: 20px 22px; border-left: 1px solid var(--line-soft); }
.board .kpi:first-child { border-left: 0; }
.board .kpi .k { font-size: 12px; color: var(--ink-faint); font-weight: 600; }
.board .kpi .v { margin-top: 7px; font-size: 24px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.board .kpi .v.hot { color: var(--accent); }
.board .bd-table { padding: 8px 0 14px; }
.board .tr { display: grid; grid-template-columns: 56px 1.4fr 1fr 1fr 90px; gap: 12px; align-items: center; padding: 12px 22px; font-size: 13px; }
.board .tr.head { color: var(--ink-faint); font-weight: 700; font-size: 11.5px; letter-spacing: .03em; border-bottom: 1px solid var(--line-soft); }
.board .tr:not(.head) { border-bottom: 1px solid var(--line-soft); color: var(--ink-soft); }
.board .tr .ip { font-weight: 700; color: var(--navy); font-variant-numeric: tabular-nums; }
.board .tr .cnt { font-weight: 700; color: var(--navy); }
.board .badge-block { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 800; color: var(--accent); }
.board .badge-block i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.board .badge-ok { font-size: 11.5px; font-weight: 700; color: #2c8a5a; }
@media (max-width: 640px) {
  .board .bd-kpis { grid-template-columns: 1fr 1fr; }
  .board .kpi:nth-child(3) { border-left: 0; }
  .board .tr { grid-template-columns: 44px 1.4fr 70px; }
  .board .tr .col-hide { display: none; }
}

/* install steps */
.install-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.inst { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 30px; text-align: center; position: relative; }
.inst .ring { width: 64px; height: 64px; margin: 0 auto; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; font-size: 22px; font-weight: 800; color: var(--gold); background: var(--navy); }
.inst .st { margin-top: 18px; font-size: 12px; font-weight: 800; letter-spacing: .1em; color: var(--accent); }
.inst h3 { margin-top: 7px; font-size: 18px; font-weight: 700; color: var(--navy); }
.inst p { margin-top: 9px; font-size: 14px; color: var(--ink-soft); line-height: 1.65; }
.install-note { margin-top: 28px; text-align: center; font-size: 15px; color: var(--ink-soft); }
.install-note b { color: var(--navy); font-weight: 700; }
@media (max-width: 760px) { .install-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }

/* testimonials */
.testi-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; display: flex; flex-direction: column; }
.testi .stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.testi h3 { margin-top: 16px; font-size: 18px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.testi p { margin-top: 12px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.75; flex: 1; }
.testi .who { margin-top: 22px; display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.testi .who .avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex: none; background: var(--beige-deep); }
.testi .who .nm { font-size: 14px; font-weight: 700; color: var(--navy); }
.testi .who .rl { font-size: 12.5px; color: var(--ink-faint); }
@media (max-width: 860px) { .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }
.free-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 auto 0; padding: 9px 16px; border-radius: 999px;
  background: var(--gold-100); color: var(--gold-600);
  font-size: 13.5px; font-weight: 700;
}
.price-note { margin-top: 24px; text-align: center; font-size: 13.5px; color: var(--ink-faint); }
@media (max-width: 760px) {
  .compare-grid, .compare-foot { grid-template-columns: 1fr; }
  .compare-grid .cell { justify-content: space-between; }
  .compare-grid .ch.plan-col, .compare-foot .fc { border-left: 0; }
}


/* =========================================================================
   ── 단독 버전 추가: 사진 플레이스홀더 (외부 스크립트 없이 동작) ──
   ========================================================================= */
.ph-avatar {
  background:
    radial-gradient(circle at 50% 38%, color-mix(in srgb, var(--navy) 22%, #fff) 0 30%, transparent 31%),
    var(--beige-deep);
  position: relative;
}
.ph-avatar::after {
  content: "";
  position: absolute; left: 50%; bottom: 5px; transform: translateX(-50%);
  width: 60%; height: 42%; border-radius: 50% 50% 0 0;
  background: color-mix(in srgb, var(--navy) 22%, #fff);
}
