/* ============================================================
   Noble Web — 유지보수 안내 페이지 스타일
   파일: style.css  |  충돌 방지를 위해 모두 .nw- 접두어 사용
   ============================================================ */

/* ── CSS 변수 ── */
:root {
  --nw-dark:      #1e1e1e;
  --nw-darker:    #161616;
  --nw-darkest:   #111111;
  --nw-gold:      #c9a96e;
  --nw-gold-lt:   #e8c99a;
  --nw-gold-dk:   #9b7a45;
  --nw-white:     #f5f2ee;
  --nw-gray:      #888888;
  --nw-lt-gray:   #c0bbb4;
  --nw-font-ko:   'Noto Sans KR', sans-serif;
  --nw-font-serif:'Noto Serif KR', serif;
  --nw-font-en:   'Playfair Display', serif;
}

/* ── 구글 폰트 ── */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@300;400;600;700&family=Noto+Sans+KR:wght@300;400;500;700&family=Playfair+Display:wght@400;700&display=swap');


/* ============================================================
   공통 유틸
   ============================================================ */
.nw-section-label {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--nw-gold);
  margin-bottom: 14px;
  font-family: var(--nw-font-ko);
}

.nw-section-title {
  font-family: var(--nw-font-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--nw-white);
  margin-bottom: 48px;
}

/* ── 버튼 공통 ── */
.nw-btn {
  display: inline-block;
  padding: 15px 38px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--nw-font-ko);
  letter-spacing: .05em;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s, border-color .25s;
  border: none;
}

.nw-btn--primary {
  background: linear-gradient(135deg, var(--nw-gold), var(--nw-gold-dk));
  color: var(--nw-darkest);
}
.nw-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,169,110,.35);
  color: var(--nw-darkest);
  text-decoration: none;
}

.nw-btn--outline {
  background: transparent;
  color: var(--nw-white);
  border: 1px solid rgba(255,255,255,.28);
}
.nw-btn--outline:hover {
  border-color: var(--nw-gold);
  color: var(--nw-gold);
  transform: translateY(-2px);
  text-decoration: none;
}

.nw-btn--kakao {
  background: #FEE500;
  color: #3A1D1D;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nw-btn--kakao:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(254,229,0,.32);
  color: #3A1D1D;
  text-decoration: none;
}

/* 가격 카드 전용 버튼 */
.nw-btn--card-outline {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--nw-font-ko);
  letter-spacing: .05em;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: background .25s, border-color .25s, transform .25s;
  background: transparent;
  border: 1px solid rgba(201,169,110,.4);
  color: var(--nw-gold);
}
.nw-btn--card-outline:hover {
  background: rgba(201,169,110,.1);
  border-color: var(--nw-gold);
  text-decoration: none;
  color: var(--nw-gold);
}

.nw-btn--card-fill {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--nw-font-ko);
  letter-spacing: .05em;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow .25s, transform .25s;
  background: linear-gradient(135deg, var(--nw-gold), var(--nw-gold-dk));
  border: none;
  color: var(--nw-darkest);
}
.nw-btn--card-fill:hover {
  box-shadow: 0 8px 28px rgba(201,169,110,.4);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--nw-darkest);
}

/* ── 스크롤 리빌 ── */
.nw-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.nw-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   HERO
   ============================================================ */
.nw-hero {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px 80px;
  overflow: hidden;
}

.nw-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(201,169,110,.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(201,169,110,.05) 0%, transparent 50%),
    linear-gradient(180deg, #111 0%, #161616 50%, #1a1a1a 100%);
}

.nw-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
          mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.nw-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}

.nw-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,169,110,.1);
  border: 1px solid rgba(201,169,110,.3);
  border-radius: 30px;
  padding: 7px 22px;
  margin-bottom: 36px;
  font-size: 12px;
  color: var(--nw-gold);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: var(--nw-font-ko);
  animation: nwFadeDown .8s ease both;
}
.nw-hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--nw-gold);
  border-radius: 50%;
  animation: nwPulse 2s infinite;
}

.nw-hero__title {
  font-family: var(--nw-font-serif);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--nw-white);
  margin-bottom: 24px;
  animation: nwFadeUp .9s ease .1s both;
}
.nw-hero__title em {
  font-style: normal;
  color: var(--nw-gold);
}

.nw-hero__sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--nw-lt-gray);
  line-height: 1.85;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 48px;
  font-family: var(--nw-font-ko);
  animation: nwFadeUp .9s ease .2s both;
}

.nw-hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: nwFadeUp .9s ease .3s both;
}


/* ============================================================
   WHY
   ============================================================ */
.nw-why {
  padding: 96px 60px;
  background: var(--nw-darkest);
}

.nw-why__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.nw-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(201,169,110,.08);
  border: 1px solid rgba(201,169,110,.1);
}

.nw-why__card {
  background: var(--nw-darker);
  padding: 46px 42px;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}
.nw-why__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--nw-gold);
  transition: height .4s;
}
.nw-why__card:hover { background: #1f1f1f; }
.nw-why__card:hover::before { height: 100%; }

.nw-why__icon {
  width: 48px; height: 48px;
  background: rgba(201,169,110,.1);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 22px;
}

.nw-why__title {
  font-family: var(--nw-font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--nw-white);
  margin-bottom: 12px;
}

.nw-why__desc {
  font-size: 14px;
  color: #d4cfc8;
  line-height: 1.9;
  font-weight: 400;
  font-family: var(--nw-font-ko);
}


/* ============================================================
   SCOPE OF WORK (신규)
   ============================================================ */
.nw-scope {
  padding: 96px 40px;
  background: var(--nw-darker);
  border-top: 1px solid rgba(201,169,110,.08);
}

.nw-scope__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.nw-scope__lead {
  text-align: center;
  font-size: 15px;
  color: var(--nw-lt-gray);
  line-height: 1.85;
  font-family: var(--nw-font-ko);
  font-weight: 300;
  max-width: 680px;
  margin: -20px auto 52px;
}
.nw-scope__lead strong {
  color: var(--nw-gold);
  font-weight: 700;
}

.nw-scope__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201,169,110,.06);
  border: 1px solid rgba(201,169,110,.1);
  margin-bottom: 32px;
}

.nw-scope__card {
  background: var(--nw-darkest);
  padding: 36px 32px;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}
.nw-scope__card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--nw-gold-dk), var(--nw-gold), transparent);
  opacity: 0;
  transition: opacity .35s;
}
.nw-scope__card:hover { background: #181818; }
.nw-scope__card:hover::after { opacity: 1; }

.nw-scope__icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

.nw-scope__card h3 {
  font-family: var(--nw-font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--nw-white);
  margin-bottom: 16px;
  letter-spacing: .01em;
}

.nw-scope__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nw-scope__card ul li {
  font-size: 13px;
  color: #b8b2ab;
  font-weight: 400;
  font-family: var(--nw-font-ko);
  line-height: 1.55;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.nw-scope__card ul li::before {
  content: '·';
  color: var(--nw-gold);
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.2;
}

/* 보장 수치 박스 */
.nw-scope__promise {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(201,169,110,.05);
  border: 1px solid rgba(201,169,110,.15);
  border-radius: 4px;
  padding: 32px 48px;
  flex-wrap: wrap;
}

.nw-scope__promise-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 48px;
  text-align: left;
}

.nw-scope__promise-num {
  font-family: var(--nw-font-en);
  font-size: 44px;
  color: var(--nw-gold);
  line-height: 1;
  flex-shrink: 0;
}

.nw-scope__promise-lbl {
  font-size: 13px;
  color: var(--nw-gray);
  font-family: var(--nw-font-ko);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .02em;
}

.nw-scope__promise-divider {
  width: 1px;
  height: 48px;
  background: rgba(201,169,110,.2);
  flex-shrink: 0;
}


/* ============================================================
   PRICING
   ============================================================ */
.nw-pricing {
  padding: 96px 40px;
  background: linear-gradient(180deg, var(--nw-darkest) 0%, #171512 100%);
  position: relative;
  overflow: hidden;
}
.nw-pricing::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,.06) 0%, transparent 70%);
  pointer-events: none;
}

.nw-pricing__inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* 2단 그리드로 변경 */
.nw-pricing__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(201,169,110,.15);
}

/* 가격표 하단 주석 */
.nw-pricing__note {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--nw-gray);
  font-family: var(--nw-font-ko);
  letter-spacing: .02em;
  line-height: 1.9;
}

/* 카드 공통 */
.nw-price-card {
  background: var(--nw-dark);
  padding: 50px 40px;
  position: relative;
  border-right: 1px solid rgba(201,169,110,.1);
  transition: background .3s;
}
.nw-price-card:last-child { border-right: none; }

/* 추천 카드 */
.nw-price-card--featured {
  background: linear-gradient(160deg, #232018 0%, #1c1a16 100%);
  z-index: 3;
  box-shadow: inset 0 0 0 1px rgba(201,169,110,.2);
}

.nw-price__featured-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--nw-gold-dk), var(--nw-gold));
  color: var(--nw-darkest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  padding: 5px 20px;
  text-transform: uppercase;
  font-family: var(--nw-font-ko);
  white-space: nowrap;
}

.nw-price__tier {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--nw-gold);
  margin-bottom: 10px;
  font-family: var(--nw-font-ko);
}

.nw-price__name {
  font-family: var(--nw-font-en);
  font-size: 26px;
  color: var(--nw-white);
  margin-bottom: 6px;
  font-weight: 700;
}

.nw-price__target {
  font-size: 13px;
  color: var(--nw-gray);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-family: var(--nw-font-ko);
  line-height: 1.6;
}

.nw-price__amount { margin-bottom: 32px; }

.nw-price__from {
  font-size: 12px;
  color: var(--nw-gray);
  display: block;
  margin-bottom: 6px;
  font-family: var(--nw-font-ko);
}

.nw-price__value {
  font-family: var(--nw-font-en);
  font-size: 36px;
  color: var(--nw-white);
  line-height: 1;
}
.nw-price__value span {
  font-size: 14px;
  color: var(--nw-gold-lt);
  font-family: var(--nw-font-ko);
  font-weight: 400;
}

/* ── 피처 리스트 ── */
.nw-price__features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.nw-price__features li {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-family: var(--nw-font-ko);
  align-items: flex-start;
}

.nw-price__features li::before {
  content: '—';
  color: var(--nw-gold);
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 3px;
}

.nw-price__features li strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #f0ece5;
  letter-spacing: .02em;
  margin-bottom: 3px;
  line-height: 1.3;
}

.nw-price__features li span {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  color: #b8b2ab;
  line-height: 1.55;
}

/* ── 비교표 ── */
.nw-compare-wrap {
  margin-top: 48px;
  border-radius: 4px;
  border: 1px solid rgba(201,169,110,.15);
  background: var(--nw-dark);
  overflow: hidden;
}

.nw-compare-ttl {
  padding: 20px 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--nw-white);
  border-bottom: 1px solid rgba(201,169,110,.1);
  font-family: var(--nw-font-ko);
  letter-spacing: .04em;
}

.nw-compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 480px;
  font-family: var(--nw-font-ko);
}

.nw-compare thead th {
  padding: 14px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--nw-gray);
  background: rgba(255,255,255,.02);
}
.nw-compare thead th.th-c {
  text-align: center;
  color: var(--nw-white);
  font-size: 12.5px;
  letter-spacing: 0;
}
.nw-compare thead th.th-c span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--nw-gray);
  margin-top: 2px;
}
.nw-compare thead th.th-hl { color: var(--nw-gold); }
.nw-compare thead th.th-hl span { color: var(--nw-gold-lt); }

.nw-compare tbody td {
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,.05);
  color: #b0b2a8;
  vertical-align: middle;
  font-size: 13px;
}
.nw-compare td.tc { text-align: center; }
.nw-compare td .cy { color: #5fc87a; font-size: 15px; }
.nw-compare td .cn { color: #383838; font-size: 15px; }
.nw-compare td .co { color: var(--nw-gold); font-weight: 600; }
.nw-compare tbody tr:hover td { background: rgba(255,255,255,.018); }


/* ============================================================
   CTA
   ============================================================ */
.nw-cta {
  padding: 96px 60px;
  text-align: center;
  background: var(--nw-dark);
  position: relative;
  overflow: hidden;
}
.nw-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 100%, rgba(201,169,110,.07) 0%, transparent 60%);
  pointer-events: none;
}

.nw-cta__line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--nw-gold), transparent);
  margin: 0 auto 32px;
}

.nw-cta__title {
  font-family: var(--nw-font-serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--nw-white);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.nw-cta__sub {
  font-size: 16px;
  color: #ccc8c0;
  margin-bottom: 48px;
  font-weight: 400;
  font-family: var(--nw-font-ko);
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.nw-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.foot { margin-top: 0 !important; }


/* ============================================================
   CONTACT FORM 섹션
   ============================================================ */
.nw-contact {
  padding: 96px 40px;
  background: linear-gradient(180deg, #0e0e0e 0%, #141210 100%);
  border-top: 1px solid rgba(201,169,110,.1);
}

.nw-contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

/* ── 왼쪽 소개 영역 ── */
.nw-contact__info-sticky {
  position: sticky;
  top: 40px;
}

.nw-contact__title {
  font-family: var(--nw-font-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--nw-white);
  line-height: 1.35;
  margin-bottom: 18px;
  letter-spacing: -.01em;
}

.nw-contact__desc {
  font-size: 15px;
  color: var(--nw-lt-gray);
  font-weight: 300;
  line-height: 1.85;
  font-family: var(--nw-font-ko);
  margin-bottom: 32px;
}

.nw-contact__checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nw-contact__checklist li {
  font-size: 14px;
  color: #b8b2ab;
  font-family: var(--nw-font-ko);
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.nw-contact__checklist li::before {
  content: '';
  width: 18px; height: 18px;
  background: rgba(201,169,110,.12);
  border: 1px solid rgba(201,169,110,.3);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23c9a96e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.nw-contact__checklist li strong { color: var(--nw-gold-lt); font-weight: 700; }

.nw-contact__kakao {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-bottom: 10px;
}
.nw-contact__kakao-sub {
  font-size: 12px;
  color: var(--nw-gray);
  font-family: var(--nw-font-ko);
  text-align: center;
  letter-spacing: .02em;
}

/* ── 오른쪽 폼 카드 ── */
.nw-contact__form-card {
  background: var(--nw-dark);
  border: 1px solid rgba(201,169,110,.12);
  border-radius: 6px;
  padding: 44px 40px;
}

.nw-contact__form-title {
  font-family: var(--nw-font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--nw-white);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.nw-contact__form-sub {
  font-size: 13px;
  color: var(--nw-gray);
  font-family: var(--nw-font-ko);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  line-height: 1.6;
}

/* ── 폼 공통 ── */
.ct-form { display: flex; flex-direction: column; gap: 0; }

.ct-fieldset {
  margin-bottom: 28px;
}
.ct-fieldset__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--nw-gold);
  margin-bottom: 16px;
  font-family: var(--nw-font-ko);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ct-fieldset__label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201,169,110,.15);
}

.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ct-col { display: flex; flex-direction: column; }

.ct-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--nw-lt-gray);
  font-family: var(--nw-font-ko);
  margin-bottom: 7px;
  letter-spacing: .02em;
}

.ct-req {
  color: var(--nw-gold);
  font-size: 13px;
}

.ct-input {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--nw-font-ko);
  color: var(--nw-white);
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.ct-input::placeholder { color: #555050; font-weight: 300; }
.ct-input:focus {
  border-color: rgba(201,169,110,.5);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 3px rgba(201,169,110,.08);
}

.ct-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
  color: var(--nw-white);
}
.ct-select option { background: #1e1e1e; color: var(--nw-white); }
.ct-select option[value=""] { color: #666; }

.ct-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.7;
}

/* ── 동의 ── */
.ct-agree {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.ct-agree input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: var(--nw-gold);
  cursor: pointer;
  flex-shrink: 0;
}
.ct-agree label {
  font-size: 13px;
  color: var(--nw-gray);
  font-family: var(--nw-font-ko);
  cursor: pointer;
  line-height: 1.5;
}

/* ── 제출 버튼 ── */
.ct-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--nw-gold), var(--nw-gold-dk));
  color: var(--nw-darkest);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--nw-font-ko);
  letter-spacing: .04em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: box-shadow .25s, transform .2s;
}
.ct-submit:hover {
  box-shadow: 0 8px 32px rgba(201,169,110,.35);
  transform: translateY(-1px);
}
.ct-submit:active { transform: translateY(0); }
.ct-submit svg { flex-shrink: 0; }


/* ============================================================
   키프레임
   ============================================================ */
@keyframes nwFadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes nwFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes nwPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.65); }
}


/* ============================================================
   반응형
   ============================================================ */
@media (max-width: 960px) {
  .nw-why { padding: 70px 24px; }
  .nw-why__grid { grid-template-columns: 1fr; }
  .nw-why__card { padding: 36px 28px; }

  .nw-scope { padding: 70px 24px; }
  .nw-scope__grid { grid-template-columns: 1fr 1fr; }
  .nw-scope__card { padding: 30px 24px; }
  .nw-scope__promise { padding: 24px 20px; gap: 8px; }
  .nw-scope__promise-item { padding: 12px 24px; }

  .nw-pricing { padding: 70px 24px; }
  .nw-pricing__cards {
    grid-template-columns: 1fr;
    border: none;
    gap: 16px;
  }
  .nw-price-card {
    border-right: none !important;
    border: 1px solid rgba(201,169,110,.12);
    padding: 40px 28px;
  }
  .nw-price-card--featured {
    border: 1px solid rgba(201,169,110,.35) !important;
  }

  .nw-contact { padding: 70px 24px; }
  .nw-contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nw-contact__info-sticky { position: static; }
  .nw-contact__form-card { padding: 32px 28px; }
}

@media (max-width: 680px) {
  .nw-scope__grid { grid-template-columns: 1fr; }

  .nw-scope__promise {
    flex-direction: column;
    gap: 16px;
    padding: 28px 24px;
  }
  .nw-scope__promise-item {
    padding: 0;
    width: 100%;
    justify-content: center;
  }
  .nw-scope__promise-divider {
    width: 80px;
    height: 1px;
  }
}

@media (max-width: 600px) {
  .nw-hero { padding: 80px 20px 60px; }

  .nw-hero__cta-group  { flex-direction: column; align-items: center; }
  .nw-btn { width: 100%; text-align: center; justify-content: center; }

  .nw-why__card { padding: 28px 20px; }
  .nw-scope__card { padding: 26px 20px; }
  .nw-price-card { padding: 36px 20px; }
  .nw-pricing__note { font-size: 11px; padding: 0 8px; }

  .nw-contact { padding: 60px 20px; }
  .nw-contact__form-card { padding: 28px 20px; }
  .ct-row { grid-template-columns: 1fr; }
}


/* ============================================================
   portfolio-cta.css
   무료 상담 신청 — 화면 하단 fixed 플로팅 버튼
   ============================================================ */
.pf-cta-fixed {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 16px 44px;
  background: #1e5c3a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;

  box-shadow: 0 8px 32px rgba(30,92,58,.45);
  transition: background .25s, transform .25s, box-shadow .25s;

  animation: pfCtaIn .5s cubic-bezier(.34,1.56,.64,1) both;
}

.pf-cta-fixed::before {
  content: '';
  width: 8px; height: 8px;
  background: #7fdc9f;
  border-radius: 50%;
  animation: pfPulse 2s infinite;
  flex-shrink: 0;
}

.pf-cta-fixed:hover {
  background: #164d30;
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 16px 48px rgba(30,92,58,.5);
  color: #fff;
  text-decoration: none;
}

.pf-cta-fixed:active {
  transform: translateX(-50%) translateY(0);
  box-shadow: 0 6px 20px rgba(30,92,58,.35);
}

@keyframes pfCtaIn {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes pfPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.6); }
}

@media (max-width: 600px) {
  .pf-cta-fixed {
    bottom: 20px;
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
    transform: none;
    justify-content: center;
    font-size: 15px;
    padding: 15px 24px;
  }
  .pf-cta-fixed:hover {
    transform: translateY(-2px);
  }
  .pf-cta-fixed:active {
    transform: translateY(0);
  }

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

.r_quick { display: none !important; }