/* ===============================
   WORKSTAMP Pricing Page (Standalone)
   zubuz 스타일과 충돌 방지 목적
   =============================== */

/* 가격 영역 중앙 정렬 + 세로 배치 */
.workstamp-pricing .workstamp-price {
  display: flex;
  justify-content: center;    /* ✅ 가로 중앙 */
  align-items: center;
  text-align: center;
  margin-bottom: 10px;
}

/* 금액 위 / 설명 아래 */
.workstamp-pricing .workstamp-price-area {
  display: flex;
  flex-direction: column;     /* ✅ 세로 */
  align-items: center;
}

/* 가격(8,900원) */
.workstamp-pricing .workstamp-price-krw {
  margin: 0;
  line-height: 1.1;
}

/* 월간 결제 / 3개월 이용 */
.workstamp-pricing .workstamp-price-sub {
  margin: 6px 0 0 0;          /* ✅ 기존 margin-left, margin-top 무력화 */
  font-size: 16px;
  color: #414141;
}

/* 혹시 기존 zubuz CSS가 더 강하게 잡고 있을 때 대비(안전망) */
.workstamp-pricing .zubuz-pricing-price p {
  margin-left: 0 !important;
}
.workstamp-pricing .zubuz-pricing-price {
  justify-content: center !important;
}

.zubuz-section-title.center.workstamp-section-title,
.zubuz-section-title.center.workstamp-section-title.w-large {
  max-width: none !important;
}

.zubuz-section-title.center.workstamp-section-title .ws-one-line{
  white-space: nowrap;
  word-break: keep-all;
}

.workstamp-alert-wrap{
  margin-bottom: 14px;
}

.workstamp-alert{
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.4;
}

.workstamp-alert.success{
  background: #ecfdf3;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.workstamp-feature-ticker{
  padding: 26px 0;
}

/* 제목(슬라이더 위 문장) */
.workstamp-feature-ticker .zubuz-brand-logo-wrap > p{
  margin: 0 0 14px;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #111;
}

/* 슬라이더 트랙 느낌 (배경/테두리/라운드) */
.workstamp-feature-ticker .zubuz-brand-slider3{
  padding: 10px 0;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
}

/* 아이템 간격(슬라이더 플러그인 구조에 따라 gap이 안 먹을 수 있어 margin도 같이) */
.workstamp-feature-ticker .zubuz-brand-item{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

/* 키워드 pill 디자인 */
.workstamp-feature-ticker .ws-feature-word{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #111;

  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform .15s ease, box-shadow .15s ease;
}

/* hover 시 살짝 떠오르는 느낌(PC에서만) */
@media (hover:hover){
  .workstamp-feature-ticker .ws-feature-word:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  }
}

/* 모바일 튜닝 */
@media (max-width: 767px){
  .workstamp-feature-ticker{
    padding: 18px 0;
  }

  .workstamp-feature-ticker .zubuz-brand-logo-wrap > p{
    font-size: 16px;
    margin-bottom: 10px;
  }

  .workstamp-feature-ticker .ws-feature-word{
    padding: 9px 12px;
    font-size: 13px;
  }

  .workstamp-feature-ticker .zubuz-brand-slider3{
    border-radius: 18px;
    padding: 8px 0;
  }
}

/* 다크/배경이 어두운 섹션에 올릴 경우 대비 */
.workstamp-feature-ticker.is-dark .zubuz-brand-logo-wrap > p{
  color: #fff;
}
.workstamp-feature-ticker.is-dark .zubuz-brand-slider3{
  background: rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.14);
}
.workstamp-feature-ticker.is-dark .ws-feature-word{
  background: rgba(0,0,0,0.35);
  color: #fff;
  border-color: rgba(255,255,255,0.14);
}

.ws-summary-price{
  display: flex;
  justify-content: center;   /* 가로 중앙 */
  text-align: center;
}

.ws-summary-price .zubuz-price-area{
  display: flex;
  flex-direction: column;    /* 8,900원 위 / 3개월 이용 아래 */
  align-items: center;
}

/* 기본 테마 margin 제거 */
.ws-summary-price h2,
.ws-summary-price p{
  margin: 0;
}

.zubuz-logout-btn {
  margin-left: 8px;
  background-color: transparent;
  border: 1px solid #ddd;
  color: #666;
}

.zubuz-logout-btn:hover {
  background-color: #f5f5f5;
  color: #333;
}

/* 요금 숫자 크기 조정 */
.workstamp-pricing .zubuz-price-krw {
    font-size: 38px;   /* 기존보다 약간 작게 */
    line-height: 1.2;
    font-weight: 700;
}

/* 모바일에서는 한 단계 더 작게 */
@media (max-width: 767px) {
    .workstamp-pricing .zubuz-price-krw {
        font-size: 32px;
    }
}

/* 공통 기능 카드 영역 */
.zubuz-feature-cards {
    row-gap: 24px;
}

.feature-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 22px 18px;
    height: 100%;
    text-align: center;
    transition: all 0.2s ease;
}

.feature-card img {
    width: 28px;
    margin-bottom: 12px;
}

.feature-card h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.feature-card:hover {
    border-color: #ddd;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* 모바일 최적화 */
@media (max-width: 767px) {
    .feature-card {
        padding: 18px 14px;
    }
}

/* 공통 기능 섹션 - 배경은 가로 전체 */
.pricing-common-section {
    width: 100vw;                 /* 화면 가로 전체 */
    margin-left: calc(-50vw + 50%); /* container 밖으로 확장 */
    background-color: #f8f9fb;
    padding: 80px 0;
}

/* 내부 콘텐츠는 다시 중앙 정렬 */
.pricing-common-section .zubuz-pricing-common {
    max-width: 1140px;  /* 기존 container 폭 */
    margin: 0 auto;
    padding: 0 15px;    /* 모바일 좌우 여백 */
}

/* 모바일 대응 */
@media (max-width: 767px) {
    .pricing-common-section {
        padding: 50px 0;
    }
}

.pricing-common-section {
    border-top: 1px solid #eee;
}