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

:root {
  --blue-dark: #0A1B6E;
  --blue-mid: #1338BE;
  --blue-hero: #0D2FD4;
  --blue-bright: #2563EB;
  --cyan: #00D4FF;
  --gold: #F5A623;
  --white: #FFFFFF;
  --white70: rgba(255, 255, 255, 0.70);
  --white40: rgba(255, 255, 255, 0.40);
  --white10: rgba(255, 255, 255, 0.10);
  --white06: rgba(255, 255, 255, 0.06);

  --inner: 1020px;
  --gap: 20px;
  --radius-card: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Pretendard Variable', 'Nanum Gothic', sans-serif;
  background: var(--blue-dark);
  color: var(--white);
  min-width: 280px;
  overflow-x: hidden;
  letter-spacing: -0.1px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

.inner {
  width: 100%;
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 40px;
}


.gnb {
  position: relative;
  z-index: 100;
  padding: 18px 0 0;
}

.gnb-inner {
  display: flex;
  align-items: center;
}

.gnb-logo img {
  width: 123px;
  height: auto;
}

.gnb-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}


.hero {
  position: relative;
  background: linear-gradient(180deg, rgba(13, 47, 212, 0.85) 0%, rgba(19, 56, 190, 0.80) 55%, rgba(10, 27, 110, 0.90) 100%), url('https://bimg.mk.co.kr/2026/mk60_event/images/bg_pc.png') center center / cover no-repeat;
  overflow: hidden;
  padding-bottom: 40px;
}


.hero-dots {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 160px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.18) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
}

.hero-dots-lb {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 140px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.13) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
}

.hero-top {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 40px;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.7px;
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
}

.hero-title .tit-for-pc {
  display: inline-block;
  text-align: center;
}

.hero-title .tit-for-pc img {
  width: 620px !important;
  height: auto;
}

.hero-title .tit-for-m {
  display: none;
}

.hero-period-badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 40px;
  padding: 6px 18px;
  backdrop-filter: blur(4px);
  margin-top: 8px;
  margin-bottom: 30px;
  color: #9ACFFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  /* 25.5px */
  letter-spacing: -0.4px;
}


.hero-illust {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 480px;
}

.hero-illust img {
  width: 342px;
}

.hero-illust-placeholder {
  width: 340px;
  height: 260px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white40);
  font-size: 14px;
  font-weight: 700;
  margin: 0 auto 10px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px 0 20px;
}

.hero-copy p {
  font-size: 17px;
  color: var(--white);
  line-height: 1.85;
}

.hero-copy p strong {
  color: var(--white);
  font-weight: 700;
}


.missions {
  background: linear-gradient(180deg, #0A1B6E 0%, #0D2FD4 100%);
  padding: 20px 0 80px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.m-card {
  background: rgba(255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  padding: 15px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  backdrop-filter: blur(8px);
}

.m-card img {
  width: 36px;
}

.m-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 4px 11px;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
}


.m-icon {
  font-size: 26px;
  margin-bottom: 12px;
}

.m-title {
  color: #01359C;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  line-height: 1.3;
}

.m-desc {
  color: #01359C;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 18px;
  flex: 1;
}


.m-prize {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  border-radius: 10px;
  margin-top: auto;
  margin-bottom: 16px;
  height: 104px;
}

.m-prize-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.m-prize-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.m-prize-icon img {
  width: 20px;
}

.m-prize-label {
  font-size: 16px;
  font-weight: 800;
  color: #d93048;
  display: inline-block;
  margin-left: -2px;
}

.m-prize-name {
  font-size: 15px;
  color: #000;
  line-height: 1.5;
  font-weight: 500;
}


.m-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 18px;
}

.m-meta span {
  font-size: 14px;
  color: #556e98;
  font-weight: 500;
}

.m-meta span b {
  color: #556e98;
  font-weight: 500;
}


.btn-mission {
  width: 100%;
  padding: 14px;
  background: var(--blue-bright);
  color: #fff;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background .15s, transform .12s;
}

.btn-mission:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.btn-mission .arrow {
  font-size: 16px;
  position: relative;
}

/*.btn-mission .arrow:after {
      content: "";
      display: inline-block;
      width: 15px;
      height: 12px;
      background: url(https://bimg.mk.co.kr/2026/mk60_future_event/assets/images/ic_arrow.png) no-repeat;
      background-size: 100%;
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }*/

.share-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 40px 0;
  background: rgb(6 13 57);
}

.share-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--white70);
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.share-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Pretendard Variable', 'Nanum Gothic', sans-serif;
  transition: transform .18s;
}

.share-btn:hover {
  transform: translateY(-3px);
}

.share-btn-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.share-btn-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--white70);
}

.share-kakao .share-btn-icon {
  background: #FEE500;
}

.share-facebook .share-btn-icon {
  background: #1877F2;
}

.share-x .share-btn-icon {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.share-copy .share-btn-icon {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}


.copy-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(30, 30, 30, 0.92);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .22s, transform .22s;
  z-index: 9999;
  white-space: nowrap;
  font-family: 'Pretendard Variable', 'Nanum Gothic', sans-serif;
}

.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


.other-events {
  background: #091660;
  padding: 56px 0 64px;
}

.other-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.other-title img {
  width: 36px;
}

.other-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.other-card {
  border-radius: 14px;
  padding: 18px 18px 52px;
  position: relative;
  overflow: hidden;
  min-height: 120px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}

.other-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}


.other-card.gold {
  background: #3EB9EA;
}

.other-card.family {
  background: #7093AC;
}

.other-card.support {
  background: #F35B4D;
}

.other-card.reading {
  background: #498CF8;
}

.other-card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
  height: 64px;
}

.other-card-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

.other-card-link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6px;
}

.other-card-link::after {
  content: ' >';
}


.other-card-deco {
  position: absolute;
  bottom: 18px;
  right: 18px;
}

.other-card-deco img {
  width: 36px;
}

.other-swiper-wrap {
  display: none;
}

.swiper-other {
  width: 100%;
  padding-bottom: 36px !important;
}

.swiper-other .swiper-slide {
  height: auto;
}

.swiper-other .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.swiper-other .swiper-pagination-bullet-active {
  background: #fff;
}


.mk60_notice {
  background: #060E3A;
  padding: 48px 0 48px;
}

.notice-title {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.notice-common {
  margin-bottom: 30px;
}

.notice-common ul,
.notice-mission ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.notice-common li,
.notice-mission li {
  font-size: 14px;
  color: var(--white70);
  line-height: 1.7;
  padding-left: 14px;
  position: relative;
}

.notice-common li::before,
.notice-mission li::before {
  content: '.';
  position: absolute;
  left: 0;
  color: var(--white40);
  font-weight: 800;
}

.notice-common li a,
.notice-mission li a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
}

.notice-mission li.underline {
  text-decoration: underline;
}

.notice-missions {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.notice-mission h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.notice-contact {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.notice-contact p {
  font-size: 13px;
  color: var(--white40);
  line-height: 1.8;
}

.notice-contact a {
  color: var(--white70);
  font-weight: 700;
}


.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  backdrop-filter: blur(4px);
  padding: 16px;
}

.overlay.open {
  display: flex;
}


@media (max-width: 1024px) {
  .inner {
    padding: 0 28px;
  }

  .other-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 768px) {
  .inner {
    padding: 0 20px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .other-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: clamp(36px, 8vw, 52px);
    letter-spacing: -1.5px;
  }

  .hero-illust {
    display: none;
  }

  .hero-title .tit-for-m {
    display: block;
    text-align: center;
  }

  .hero-title .tit-for-m img {
    min-width: 226px;
    max-width: 276px;
    display: inline-block;
    width: 54%;
  }

  .hero-title .tit-for-pc {
    display: none;
  }

  .hero-period-badge {
    font-size: 15px;
  }

  .missions {
    padding: 48px 0 56px;
  }

  .other-events {
    padding: 42px 0 36px;
  }

  .hero-copy {
    padding-top: 0;
    padding-bottom: 0;
  }

  .gnb-logo img {
    width: 88px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .missions {
    padding-top: 0;
  }

  .other-title {
    font-size: 19px;
  }

  .other-title img {
    width: 30px;
  }

  .mk60_notice {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}


@media (max-width: 480px) {
  .inner {
    padding: 0 16px;
  }

  .gnb {
    padding-top: 16px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: clamp(32px, 9vw, 44px);
    letter-spacing: -1px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-illust-placeholder {
    width: 260px;
    height: 200px;
  }

  .other-grid {
    grid-template-columns: 1fr;
  }

  .m-title {
    font-size: 22px;
  }

  .missions {
    padding: 0 0 48px;
  }

  .notice {
    padding: 40px 0 36px;
  }

  .hero-period-badge {
    font-size: 14px;
  }

  .m-prize {
    height: 88px;
  }

  .other-card {
    min-height: 80px;
  }

  .hero-period-badge {
    margin-top: 14px;
  }

  .notice-title {
    font-size: 17px;
  }

  .mk60_notice {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}


@media (max-width: 280px) {
  .inner {
    padding: 0 12px;
  }

  .hero-title {
    font-size: 28px;
  }

  .btn-mission {
    font-size: 13px;
  }
}


:root {
  --qz-orange: #F05A00;
  --qz-dark: #1a1a1a;
  --qz-gray: #666;
  --qz-light: #f5f5f5;
  --qz-border: #e0e0e0;
  --qz-correct: #1A5FFF;
  --qz-wrong: #D0021B;
}


.qz-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  backdrop-filter: blur(3px);
  padding: 16px;
}

.qz-overlay.open {
  display: flex;
}


.qz-popup {
  background: #fff;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  animation: qzPopIn 0.3s cubic-bezier(0.34, 1.5, 0.64, 1) both;
  scrollbar-width: none;
}

.qz-popup::-webkit-scrollbar {
  display: none;
}

@keyframes qzPopIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(16px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}


.qz-popup::before {
  content: '';
  display: block;
  height: 4px;
  background: var(--qz-orange);
  position: sticky;
  top: 0;
  z-index: 2;
}


.qz-close {
  position: sticky;
  top: 4px;
  float: right;
  margin: 8px 10px 0 0;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 800;
  color: #999;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s, transform .15s;
  z-index: 3;
  font-family: 'Pretendard Variable', 'Nanum Gothic', sans-serif;
  border-radius: 50%;
}

.qz-close:hover {
  color: var(--qz-orange);
  transform: rotate(90deg);
}


.qz-screen {
  display: none;
}

.qz-screen.active {
  display: block;
}


.qz-header {
  padding: 16px 30px 18px;
  text-align: center;
  border-bottom: 1px solid var(--qz-border);
  clear: both;
}

.qz-brand {
  font-size: 22px;
  font-weight: 800;
  color: var(--qz-dark);
  letter-spacing: -0.5px;
}

.qz-brand span {
  color: var(--qz-orange);
}

.qz-subtitle {
  font-size: 13px;
  color: var(--qz-gray);
  margin-top: 5px;
  font-weight: 400;
  line-height: 1.55;
}

.qz-hint-row {
  display: flex;
  justify-content: flex-end;
  padding: 12px 30px 0;
}

.qz-btn-hint {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  color: var(--qz-gray);
  font-family: 'Pretendard Variable', 'Nanum Gothic', sans-serif;
  font-weight: 700;
  transition: color .15s;
}

.qz-btn-hint:hover {
  color: var(--qz-orange);
}

.qz-hint-box {
  display: none;
  margin: 8px 30px 0;
  padding: 10px 14px;
  background: #FFF4EC;
  border-left: 3px solid var(--qz-orange);
  font-size: 13px;
  color: #7a3a00;
  line-height: 1.6;
  border-radius: 0 2px 2px 0;
}

.qz-hint-box.on {
  display: block;
  animation: qzFadeIn .2s ease;
}

.qz-hint-box a {
  color: var(--qz-orange);
  font-weight: 700;
}

@keyframes qzFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

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

.qz-question {
  padding: 14px 30px 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.qz-question .qz-bar {
  width: 4px;
  min-height: 20px;
  background: var(--qz-orange);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 3px;
}

.qz-question p {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--qz-dark);
  line-height: 1.6;
}

.qz-options {
  padding: 0 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.qz-opt {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--qz-border);
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  color: var(--qz-dark);
  cursor: pointer;
  font-family: 'Pretendard Variable', 'Nanum Gothic', sans-serif;
  text-align: center;
  transition: border-color .16s, background .16s, transform .1s;
}

.qz-opt:hover:not(:disabled) {
  border-color: var(--qz-orange);
  background: #FFF4EC;
  transform: translateY(-1px);
}

.qz-opt.correct {
  border-color: var(--qz-correct) !important;
  color: var(--qz-correct);
}

.qz-opt.wrong {
  border-color: var(--qz-wrong) !important;
  color: var(--qz-wrong);
}

.qz-opt:disabled {
  cursor: default;
}


.qz-result-wrap {
  padding: 32px 30px 0;
  text-align: center;
}

.qz-result-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin: 0 auto 16px;
  animation: qzIconPop .4s cubic-bezier(0.34, 1.56, 0.64, 1) .1s both;
}

@keyframes qzIconPop {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.qz-icon-correct {
  background: #EAF0FF;
}

.qz-icon-wrong {
  background: #FFEAEC;
}

.qz-result-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 2px;
}

.qz-title-correct {
  color: var(--qz-correct);
}

.qz-title-wrong {
  color: var(--qz-wrong);
}

.qz-info-box {
  margin: 18px 30px 0;
  border: 1.5px solid var(--qz-border);
  border-radius: 2px;
  padding: 16px 18px;
  text-align: left;
  background: var(--qz-light);
}

.qz-info-box p {
  font-size: 14px;
  color: var(--qz-dark);
  line-height: 1.78;
  font-weight: 400;
}

.qz-info-box p strong {
  font-weight: 800;
  color: var(--qz-orange);
}

.qz-go-link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--qz-correct);
  text-decoration: none;
}

.qz-go-link:hover {
  text-decoration: underline;
}

.qz-go-link::after {
  content: ' >';
}


.qz-wrong-box {
  margin: 18px 30px 0;
  border: 1.5px solid var(--qz-border);
  border-radius: 8px;
  background: var(--qz-light);
  overflow: hidden;
}

.qz-wrong-label {
  padding: 10px 16px;
  background: #fff0f0;
  border-bottom: 1px solid #f5c6c6;
  font-size: 14px;
  font-weight: 800;
  color: var(--qz-wrong);
  display: flex;
  align-items: center;
  gap: 6px;
}

.qz-wrong-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--qz-wrong);
  border-radius: 50%;
  flex-shrink: 0;
}

.qz-wrong-body {
  padding: 14px 16px;
}

.qz-wrong-body p {
  font-size: 13px;
  color: var(--qz-dark);
  line-height: 1.78;
  font-weight: 400;
}

.qz-wrong-body p strong {
  font-weight: 800;
}


.qz-actions {
  padding: 18px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.qz-btn-main {
  width: 100%;
  padding: 14px;
  background: var(--qz-orange);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 800;
  font-family: 'Pretendard Variable', 'Nanum Gothic', sans-serif;
  cursor: pointer;
  transition: background .15s, transform .1s;
  letter-spacing: -0.3px;
  border-radius: 8px;
}

.qz-btn-main:hover {
  background: #d44e00;
  transform: translateY(-1px);
}


@media (max-width: 520px) {
  .qz-popup {
    border-radius: 10px;
  }

  .qz-header,
  .qz-question,
  .qz-actions {
    padding-left: 20px;
    padding-right: 20px;
  }

  .qz-options {
    padding-left: 20px;
    padding-right: 20px;
  }

  .qz-hint-row {
    padding-left: 20px;
    padding-right: 20px;
  }

  .qz-hint-box {
    margin-left: 20px;
    margin-right: 20px;
  }

  .qz-result-wrap {
    padding: 24px 20px 0;
  }

  .qz-info-box,
  .qz-wrong-box {
    margin-left: 20px;
    margin-right: 20px;
  }

  .qz-result-title {
    font-size: 20px;
  }
}


:root {
  --cw-orange: #FF6B2B;
  --cw-orange-light: #FF8C52;
  --cw-orange-pale: #FFF0E8;
  --cw-green: #2ECC71;
  --cw-green-dark: #27AE60;
  --cw-green-light: #E8F8F0;
  --cw-yellow: #FFD93D;
  --cw-bg: #FFFDF9;
  --cw-text: #1A1A2E;
  --cw-gray: #6B7280;
  --cw-border: #E5E7EB;
  --cw-shadow: 0 4px 24px rgba(255, 107, 43, 0.12);
  --cw-shadow-lg: 0 8px 40px rgba(255, 107, 43, 0.18);
}

.cw-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  backdrop-filter: blur(3px);
  padding: 16px;
}

.cw-overlay.open {
  display: flex;
}

.cw-popup {
  background: var(--cw-bg);
  color: var(--cw-text);
  font-family: 'Pretendard Variable', 'Nanum Gothic', sans-serif;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  position: relative;
  animation: cwPopIn 0.3s cubic-bezier(0.34, 1.4, 0.64, 1) both;
  scrollbar-width: none;
}

.cw-popup::-webkit-scrollbar {
  display: none;
}

@keyframes cwPopIn {
  from {
    opacity: 0;
    transform: scale(0.93) translateY(18px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.cw-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 800;
  color: #555;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s, transform .15s;
  z-index: 10;
  font-family: 'Pretendard Variable', 'Nanum Gothic', sans-serif;
}

.cw-close:hover {
  background: none;
  color: #F05A00;
  transform: rotate(90deg);
}

.cw-fun-banner {
  background: var(--cw-yellow);
  text-align: center;
  padding: 10px 44px 10px 20px;
  font-weight: 800;
  font-size: clamp(11px, 2.2vw, 14px);
  color: #7A5000;
  border-radius: 16px 16px 0 0;
}

.cw-hero {
  background: linear-gradient(135deg, #FF6B2B 0%, #FF8C52 40%, #FFB347 100%);
  padding: 32px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cw-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cw-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -30px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.cw-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.cw-hero h2 {
  font-size: clamp(22px, 5vw, 36px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.cw-hero-sub {
  font-size: clamp(12px, 2.5vw, 15px);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cw-section-title {
  text-align: center;
  padding: 28px 20px 4px;
}

.cw-section-title h3 {
  font-size: clamp(16px, 3.5vw, 20px);
  font-weight: 800;
  color: var(--cw-orange);
}

.cw-divider {
  width: 36px;
  height: 4px;
  background: var(--cw-orange);
  border-radius: 2px;
  margin: 8px auto 0;
}

.cw-steps {
  padding: 20px 20px 28px;
}

.cw-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cw-step-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--cw-shadow);
  border: 2px solid transparent;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}

.cw-step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--cw-shadow-lg);
  border-color: var(--cw-orange-light);
}

.cw-step-header {
  background: linear-gradient(90deg, var(--cw-orange-pale) 0%, #fff 100%);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--cw-border);
}

.cw-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cw-orange);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cw-step-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  background: #f3f3f3;
}

.cw-step-img-placeholder {
  width: 100%;
  height: 150px;
  background: #f5f5f5;
  border: 2px dashed #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #bbb;
  font-weight: 700;
}

.cw-step-desc {
  padding: 12px 14px 14px;
  background: var(--cw-orange-pale);
  border-top: 1px solid rgba(255, 107, 43, 0.12);
}

.cw-step-desc p {
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 700;
  color: var(--cw-text);
  line-height: 1.6;
  text-align: center;
}

.cw-step-desc .cw-hl {
  color: var(--cw-orange);
}

.cw-step-desc a {
  color: var(--cw-orange);
  text-decoration: none;
}

.cw-step-desc a:hover {
  text-decoration: underline;
}

.cw-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 20px 24px;
}

.cw-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(13px, 2.5vw, 16px);
  transition: transform .2s, box-shadow .2s;
  gap: 4px;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: 'Pretendard Variable', 'Nanum Gothic', sans-serif;
}

.cw-cta-btn:hover {
  transform: translateY(-2px);
}

.cw-cta-btn span {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.88;
}

.cw-cta-primary {
  background: linear-gradient(135deg, #FF6B2B, #FF8C52);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 107, 43, 0.30);
}

.cw-cta-secondary {
  background: linear-gradient(135deg, #2ECC71, #27AE60);
  color: #fff;
  box-shadow: 0 4px 16px rgba(46, 204, 113, 0.30);
}

.cw-notice {
  background: var(--cw-green-light);
  border-top: 3px solid var(--cw-green);
  padding: 24px 20px 28px;
}

.cw-notice-title {
  font-size: clamp(14px, 3vw, 17px);
  font-weight: 800;
  color: var(--cw-green-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cw-notice-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cw-notice-list li {
  font-size: clamp(11px, 2vw, 13px);
  font-weight: 700;
  color: #1A4731;
  padding: 10px 14px;
  background: #fff;
  border-radius: 8px;
  border-left: 4px solid var(--cw-green);
  line-height: 1.65;
  box-shadow: 0 2px 5px rgba(46, 204, 113, 0.08);
}

.cw-notice-list li strong {
  color: var(--cw-orange);
}

.cw-popup-footer {
  background: var(--cw-text);
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  padding: 16px 20px;
  font-size: 12px;
  border-radius: 0 0 16px 16px;
}

.cw-popup-footer strong {
  color: var(--cw-orange-light);
}

@media (max-width: 600px) {
  .cw-popup {
    border-radius: 10px;
    max-height: 95vh;
  }

  .cw-fun-banner {
    border-radius: 10px 10px 0 0;
    font-size: 11px;
    padding-right: 40px;
  }

  .cw-popup-footer {
    border-radius: 0 0 10px 10px;
  }

  .cw-steps-grid {
    grid-template-columns: 1fr;
  }

  .cw-cta-row {
    grid-template-columns: 1fr;
  }

  .cw-hero {
    padding: 24px 16px 32px;
  }

  .cw-steps {
    padding: 14px 14px 20px;
  }

  .cw-notice {
    padding: 18px 14px 22px;
  }

  .cw-cta-row {
    margin: 0 14px 20px;
  }
}

@media (max-width: 360px) {

  .cw-step-img,
  .cw-step-img-placeholder {
    height: 120px;
  }
}


.m3-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  backdrop-filter: blur(2px);
  padding: 16px;
}

.m3-overlay.open {
  display: flex;
}

.m3-popup {
  background: #fff;
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.3);
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
  scrollbar-width: none;
  animation: m3PopIn .3s cubic-bezier(0.34, 1.5, 0.64, 1) both;
}

.m3-popup::-webkit-scrollbar {
  display: none;
}

@keyframes m3PopIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.m3-top-bar {
  height: 4px;
  background: #F05A00;
  position: sticky;
  top: 0;
  z-index: 20;
}

.m3-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 800;
  color: #999;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s, transform .15s;
  z-index: 30;
  font-family: inherit;
}

.m3-close:hover {
  color: #F05A00;
  transform: rotate(90deg);
}

.m3-pop-header {
  padding: 30px 30px 20px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.m3-pop-title {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.m3-pop-sub {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
  line-height: 1.65;
  font-weight: 400;
}

.m3-guide-msg {
  padding: 16px 30px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.m3-bar {
  width: 4px;
  min-height: 20px;
  flex-shrink: 0;
  background: #F05A00;
  border-radius: 2px;
  margin-top: 2px;
}

.m3-guide-msg p {
  font-size: 14px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.6;
}

.m3-cards {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.m3-mission-card {
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}

.m3-mission-card:hover {
  border-color: #F05A00;
}

.m3-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.m3-card-head-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.m3-card-ico {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.m3-card-name {
  font-size: 14px;
  font-weight: 800;
  color: #1a1a1a;
}

.m3-card-tag {
  font-size: 11px;
  font-weight: 700;
  color: #666;
  white-space: nowrap;
}

.m3-card-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.m3-btn-goto {
  padding: 11px 14px;
  border: none;
  border-right: 1px solid #e0e0e0;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  transition: background .15s;
}

.m3-btn-goto:hover {
  background: #f5f5f5;
}

.m3-btn-cert {
  padding: 11px 14px;
  border: none;
  background: #F05A00;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: background .15s;
}

.m3-btn-cert:hover {
  background: #d44e00;
}

.m3-guide-links {
  padding: 14px 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.m3-btn-guide {
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition: border-color .15s, background .15s, color .15s;
}

.m3-btn-guide:hover {
  border-color: #F05A00;
  background: #FFF4EC;
  color: #F05A00;
}

@media (max-width: 520px) {
  .m3-popup {
    max-width: 100%;
  }

  .m3-pop-header,
  .m3-guide-msg,
  .m3-cards,
  .m3-guide-links {
    padding-left: 18px;
    padding-right: 18px;
  }

  .m3-pop-title {
    font-size: 20px;
  }
}


.sub-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9500;
  backdrop-filter: blur(4px);
  padding: 16px;
}

.sub-overlay.open {
  display: flex;
}

.sub-popup {
  background: #FFFDF9;
  color: #1A1A2E;
  font-family: 'Pretendard Variable', 'Nanum Gothic', sans-serif;
  width: 100%;
  max-width: 720px;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  position: relative;
  animation: subPopIn .3s cubic-bezier(0.34, 1.4, 0.64, 1) both;
  scrollbar-width: none;
}

.sub-popup::-webkit-scrollbar {
  display: none;
}

@keyframes subPopIn {
  from {
    opacity: 0;
    transform: scale(0.93) translateY(18px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.sub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 0 20px;
  height: 48px;
  background: linear-gradient(90deg, #FF6B2B, #FFB347);
  border-radius: 16px 16px 0 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.sub-header-title {
  font-size: clamp(12px, 2.5vw, 14px);
  font-weight: 800;
  color: #fff;
}

.sub-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sub-btn-back {
  background: rgba(255, 255, 255, 0.22);
  border: none;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background .15s;
}

.sub-btn-back:hover {
  background: rgba(255, 255, 255, 0.38);
}

.sub-btn-back::before {
  content: '<';
  font-size: 16px;
  line-height: 1;
}

.sub-btn-close {
  background: rgba(255, 255, 255, 0.22);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, transform .15s;
}

.sub-btn-close:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
}

.sub-hero {
  background: linear-gradient(135deg, #FF6B2B 0%, #FF8C52 40%, #FFB347 100%);
  padding: 30px 20px 38px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sub-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.sub-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -30px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.sub-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.sub-hero h3 {
  font-size: clamp(20px, 5vw, 30px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.sub-hero p {
  font-size: clamp(12px, 2.5vw, 14px);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.sub-sec-title {
  text-align: center;
  padding: 26px 20px 4px;
}

.sub-sec-title h4 {
  font-size: clamp(16px, 3.5vw, 20px);
  font-weight: 800;
  color: #FF6B2B;
}

.sub-divider {
  width: 36px;
  height: 4px;
  background: #FF6B2B;
  border-radius: 2px;
  margin: 8px auto 0;
}

.sub-steps {
  padding: 20px 20px 24px;
}

.sub-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sub-step-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(255, 107, 43, 0.10);
  border: 2px solid transparent;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  display: flex;
  flex-direction: column;
}

.sub-step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(255, 107, 43, 0.16);
  border-color: #FF8C52;
}

.sub-step-hd {
  background: linear-gradient(90deg, #FFF0E8 0%, #fff 100%);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #E5E7EB;
}

.sub-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FF6B2B;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sub-step-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  background: #f3f3f3;
}

.sub-step-img-ph {
  width: 100%;
  height: 150px;
  background: #f5f5f5;
  border: 2px dashed #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #bbb;
  font-weight: 700;
}

.sub-step-desc {
  padding: 12px 14px 14px;
  background: #FFF0E8;
  border-top: 1px solid rgba(255, 107, 43, 0.12);
  flex-grow: 1;
}

.sub-step-desc p {
  font-size: clamp(11px, 2vw, 13px);
  font-weight: 700;
  color: #1A1A2E;
  line-height: 1.6;
  text-align: center;
}

.sub-hl {
  color: #FF6B2B;
}

.sub-step-desc a {
  color: #FF6B2B;
  text-decoration: none;
}

.sub-step-desc a:hover {
  text-decoration: underline;
}


.sub-steps-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sub-step-img-wrap {
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
}

.sub-step-img-full {
  width: 280px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: block;
}

.sub-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 20px 24px;
}

.sub-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(13px, 2.5vw, 15px);
  transition: transform .2s, box-shadow .2s;
  gap: 4px;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.sub-cta-btn:hover {
  transform: translateY(-2px);
}

.sub-cta-btn span {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.88;
}

.sub-cta-p {
  background: linear-gradient(135deg, #FF6B2B, #FF8C52);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 107, 43, 0.30);
}

.sub-cta-s {
  background: linear-gradient(135deg, #2ECC71, #27AE60);
  color: #fff;
  box-shadow: 0 4px 16px rgba(46, 204, 113, 0.28);
}

.sub-notice {
  background: #E8F8F0;
  border-top: 3px solid #2ECC71;
  padding: 22px 20px 26px;
}

.sub-notice-title {
  font-size: clamp(13px, 3vw, 16px);
  font-weight: 800;
  color: #27AE60;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sub-notice-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sub-notice-list li {
  font-size: clamp(11px, 2vw, 13px);
  font-weight: 700;
  color: #1A4731;
  padding: 10px 14px;
  background: #fff;
  border-radius: 8px;
  border-left: 4px solid #2ECC71;
  line-height: 1.65;
  box-shadow: 0 2px 5px rgba(46, 204, 113, 0.08);
}

.sub-notice-list li strong {
  color: #FF6B2B;
}

.sub-popup-footer {
  background: #1A1A2E;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  padding: 14px 20px;
  font-size: 12px;
  border-radius: 0 0 16px 16px;
}

.sub-popup-footer strong {
  color: #FF8C52;
}


.sub-popup-col {
  max-width: 560px;
}

@media (max-width: 600px) {
  .sub-popup {
    border-radius: 10px;
  }

  .sub-header {
    border-radius: 10px 10px 0 0;
  }

  .sub-popup-footer {
    border-radius: 0 0 10px 10px;
  }

  .sub-steps-grid {
    grid-template-columns: 1fr;
  }

  .sub-cta-row {
    grid-template-columns: 1fr;
    margin: 0 14px 20px;
  }

  .sub-steps {
    padding: 14px 14px 20px;
  }

  .sub-notice {
    padding: 16px 14px 22px;
  }
}

@media (max-width: 360px) {

  .sub-step-img,
  .sub-step-img-ph {
    height: 120px;
  }
}


.cw-popup .ch-top-bar {
  height: 4px;
  background: #F05A00;
  position: sticky;
  top: 0;
  z-index: 20;
}

.cw-popup .ch-header {
  padding: 28px 28px 18px;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
}

.cw-popup .ch-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.cw-popup .ch-sub {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
  line-height: 1.65;
}

.cw-popup .ch-guide {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 28px 12px;
}

.cw-popup .ch-guide-bar {
  width: 4px;
  min-height: 20px;
  flex-shrink: 0;
  background: #F05A00;
  border-radius: 2px;
  margin-top: 2px;
}

.cw-popup .ch-guide p {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.6;
}

.cw-popup .ch-cards {
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cw-popup .ch-card {
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s;
}

.cw-popup .ch-card:hover {
  border-color: #F05A00;
}

.cw-popup .ch-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.cw-popup .ch-card-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cw-popup .ch-card-ico {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.cw-popup .ch-card-name {
  font-size: 14px;
  font-weight: 800;
  color: #1a1a1a;
}

.cw-popup .ch-card-tag {
  font-size: 11px;
  font-weight: 700;
  color: #666;
  white-space: nowrap;
}

.cw-popup .ch-card-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cw-popup .ch-btn-goto {
  padding: 11px 14px;
  border: none;
  border-right: 1px solid #e0e0e0;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  transition: background .15s;
}

.cw-popup .ch-btn-goto:hover {
  background: #f5f5f5;
}

.cw-popup .ch-btn-cert {
  padding: 11px 14px;
  border: none;
  background: #F05A00;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: background .15s;
}

.cw-popup .ch-btn-cert:hover {
  background: #d44e00;
}

.cw-popup .ch-guide-links {
  padding: 14px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.cw-popup .ch-btn-guide {
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition: border-color .15s, background .15s, color .15s;
}

.cw-popup .ch-btn-guide:hover {
  border-color: #F05A00;
  background: #FFF4EC;
  color: #F05A00;
}

@media (max-width: 520px) {

  .cw-popup .ch-header,
  .cw-popup .ch-guide,
  .cw-popup .ch-cards,
  .cw-popup .ch-guide-links {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cw-popup .ch-title {
    font-size: 18px;
  }
}


.btn-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-bright);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s, background .15s;
  z-index: 8000;
}

.btn-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.btn-top:hover {
  background: #1d4ed8;
}

.btn-top span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1;
}

@media (max-width: 480px) {
  .btn-top {
    bottom: 20px;
    right: 16px;
    width: 42px;
    height: 42px;
  }
}

/* Result Popup */
.btn_result {
  background: #ff7a00 !important;
}

/*.btn_result2 {
  background: #494b61 !important;
}

.btn_result3 {
  background: linear-gradient(90deg, rgb(9 170 239) 0%, rgba(20, 71, 255, 1) 52%, rgba(107, 15, 255, 1) 100%) !important;
}

.btn_result4 {
  background: #002277 !important;
}*/

.qz-overlay .pop_contents {
  padding: 56px 0;
  font-size: 16px;
  color: #000;
  text-align: center;
}

.pop_contents a {
  text-decoration: underline;
  font-weight: bold;
}