@charset "utf-8";

/*
 * style.css — cremareview 이벤트 고유 스타일
 */

/* ── 하네스 제어 영역 (매 이벤트 교체) ── */
:root {
  --color-primary: #003ae5; /* 포인트 컬러 — 버튼·배지·강조 */
  --color-primary-mid: #1463ff; /* bonus 배경, 보조 강조 */
  --color-bg-hero: #edf4ff; /* overview 배경 */
  --color-table-head: #003ae5; /* 패키지 라벨 */
  --color-section-alt: #edf4ff; /* benefit 섹션 배경 */
  --color-cta: #55eeff; /* sticky·now CTA 버튼 */
  --color-dark: #000943; /* now 섹션 배경 */
  --color-darker: #161d2c; /* notice 섹션 배경 */
  --color-bonus-bg: #1463ff; /* bonus 섹션 배경 */
  --color-accent: #87f3ff; /* 배지 텍스트 컬러 */
  --color-point-bar: #0756f8; /* point 섹션 바 배경 */
  --font-base: "Pretendard", sans-serif;
  --border: 1px solid #e7ebf2;
}

body {
  font-family: var(--font-base);
  color: #000;
}
@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Thin.woff2")
    format("woff2");
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraLight.woff2")
    format("woff2");
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Light.woff2")
    format("woff2");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Regular.woff2")
    format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Medium.woff2")
    format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-SemiBold.woff2")
    format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Bold.woff2")
    format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraBold.woff2")
    format("woff2");
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Black.woff2")
    format("woff2");
  font-weight: 900;
  font-display: swap;
}

/* ── 공통 컴포넌트 -------------- */

/* pkg label (PACKAGE 1·2, SPECIAL BONUS) */
.pkg_label {
  width: 164px;
  display: flex;
  flex-direction: column;
  justify-self: center;
  gap: 7px;
  margin-bottom: 32px;
}
.pkg_label p {
  margin: 0 auto;
  font-size: clamp(16px, 2.4vw, 20px);
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
  line-height: 1;
}
.pkg_line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
}
.pkg_label_inv p {
  color: #67ffec;
}
.pkg_label_inv .pkg_line {
  background: #67ffec;
}

/* 섹션 타이틀 서브텍스트 */
.tit_desc {
  font-size: clamp(14px, 0.94vw, 18px);
  color: #294368;
  line-height: 1.4;
  margin-top: 16px;
}

/* 버튼 공통 */
.btn_primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  padding: 19px 48px;
  background: var(--color-primary);
  color: #fff;
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 700;
  border-radius: 10px;
  letter-spacing: -0.02em;
  line-height: 1;
  transition: 0.2s;
}
.btn_primary:hover {
  background: #0035bc;
}

.btn_outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  padding: 20px 48px;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  border-radius: 10px;
  letter-spacing: -0.02em;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}
.btn_outline:hover {
  border-color: #0035bc;
  color: #0035bc;
}

/* ── popup -------------- */
.popup_overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  transition: opacity 0.2s;
}
.popup_overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.popup_wrap {
  position: relative;
  width: clamp(300px, 90vw, 468px);
  background: #fff;
  border-radius: 20px;
  padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 36px) clamp(24px, 4vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.5vw, 16px);
}
.popup_close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s;
}
.popup_close:hover {
  background: #f0f0f0;
}

.popup_tit {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  color: #000;
  text-align: center;
  line-height: 24px;
}
.popup_desc {
  font-size: clamp(15px, 1.2vw, 18px);
  color: #000;
  text-align: center;
  line-height: 18px;
}
.popup_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: clamp(16px, 1.5vw, 16px) 48px;
  background: #0052f4;
  color: #fff;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 700;
  border-radius: 10px;
  letter-spacing: -0.02em;
  text-align: center;
  margin-top: clamp(6px, 1vw, 20px);
  white-space: nowrap;
}
.popup_link_wrap {
  font-size: clamp(13px, 1vw, 16px);
  color: #364056;
  text-align: center;
}
.popup_link {
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 600;
  color: #1463ff;
  text-decoration: underline;
  margin-left: 4px;
}
.popup_today {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  cursor: pointer;
  font-size: clamp(12px, 0.9vw, 14px);
  color: #888;
}
.popup_today input[type="checkbox"] {
  width: 14px;
  height: 14px;
  cursor: pointer;
  accent-color: var(--color-primary);
}
/* popup// -------------- */

/* ── overview -------------- */
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes floatYR {
  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }
  50% {
    transform: translateY(-10px) rotate(6deg);
  }
}

.overview {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  background: var(--color-bg-hero);
  background-image: url(/images/event/cremareview/img_overview.png),
    url(/images/event/cremareview/bg_overview.png);
  background-size: contain, cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overview_bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.overview_deco {
  position: absolute;
  pointer-events: none;
}

/* Figma 1920px 기준: main left:1092/1920=56.9%, top:101/740=13.6%, w:568px */
.overview_deco_main {
  object-fit: contain;
}
/* pinkmoney left:1561/1920=81.3%, top:38/740=5.1%, w:263px */
.overview_deco_pinkmoney {
  right: clamp(20px, 5%, 100px);
  top: 5%;
  width: clamp(80px, 13.7vw, 263px);
  animation: floatYR 3s ease-in-out infinite;
}
/* bluemoney left:890/1920=46.4%, top:469/740=63.4%, w:266px */
.overview_deco_bluemoney {
  left: 46%;
  bottom: 0;
  width: clamp(80px, 13.9vw, 266px);
  animation: floatYR 3.5s 0.5s ease-in-out infinite;
}
/* coin right side left:1573/1920=81.9%, top:374/740=50.5%, w:251px */
.overview_deco_coin {
  right: clamp(20px, 5%, 100px);
  bottom: 20%;
  width: clamp(60px, 13.1vw, 251px);
  animation: floatY 2.5s 1s ease-in-out infinite;
}

.overview_wrap {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 740px;
  flex-direction: column;
  gap: clamp(18px, 1.35vw, 24px);
  padding: clamp(60px, 12vw, 102px) 0;
}

.overview_logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: clamp(8px, 0.71vw, 11px) clamp(20px, 2.1vw, 32px);
  border: 1px solid #a9bcdf;
  border-radius: 100px;
  width: fit-content;
}
.overview_logo img {
  height: clamp(12px, 0.94vw, 18px);
  width: auto;
}
.overview_logo_x {
  height: 30px !important;
  width: 30px;
  object-fit: contain;
}
.overview_logo img:last-child {
  height: clamp(12px, 0.94vw, 17px);
}

.tit_overview {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 1.35vw, 27px);
}

.tit_overview_sub b {
  color: #000;
  font-weight: 700;
}
.tit_overview_sub {
  font-size: clamp(14px, 1.1vw, 20px);
  font-weight: 400;
  color: #000b2c;
  line-height: 1.4;
}
.tit_overview_sub strong {
  font-weight: 800;
  color: var(--color-primary);
}

.tit_overview h2 {
  font-size: clamp(40px, 4.8vw, 92px);
  font-weight: 800;
  color: #000b2c;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.tit_overview h2 span {
  color: var(--color-primary);
}

.overview_period {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #3b61ad;
}
.overview_period_line {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: #3b61ad;
}

.overview_btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}
/* overview// -------------- */

/* ── point -------------- */
.point {
  background: var(--color-point-bar);
  height: clamp(100px, 9.2vw, 140px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.point_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  width: 100%;
  height: 100%;
}

.point_item {
  flex: 1;
  text-align: center;
}
.point_item strong {
  display: block;
  font-size: clamp(24px, 2.1vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.point_item sub {
  font-size: 0.8em;
  vertical-align: baseline;
}
.point_item p {
  font-size: clamp(12px, 0.94vw, 18px);
  font-weight: 500;
  color: #89f3ff;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: pre;
}
.point_sep {
  flex-shrink: 0;
  width: 1px;
  height: clamp(60px, 4.58vw, 88px);
  background: #1f67f9;
}
/* point// -------------- */

/* ── why -------------- */
.why {
  background: #fff;
  padding: clamp(60px, 6.25vw, 107px) 0;
  overflow: hidden;
}

.tit_why_wrap {
  text-align: center;
  max-width: 960px;
  margin-bottom: clamp(40px, 4.13vw, 78px);
}

.tit_why {
  margin-bottom: 34px;
}

.tit_why h2 {
  font-size: clamp(28px, 2.92vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: clamp(16px, 1.35vw, 26px);
}
.tit_why h2 em {
  font-style: normal;
  color: #1463ff;
  font-weight: 700;
}
.tit_why h2 em span {
  position: relative;
  top: 6px;
  font-family: "Noto Sans KR";
}

.tit_why p {
  font-size: clamp(14px, 1.1vw, 20px);
  color: #000;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
.tit_why p strong {
  font-weight: 700;
}

.why_link {
  font-size: 16px;
  font-weight: 600;
  color: #0048d7;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: -0.32px;
}

/* swiper */
.why_swiper_wrap {
  width: 100%;
}

.whySwiper .swiper-slide {
  width: clamp(600px, 66.67vw, 1280px);
  opacity: 0.25;
  transition: opacity 0.3s;
}
.whySwiper .swiper-slide-active {
  opacity: 1;
}

.why_card {
  align-items: stretch;
  background: #f3f5f8;
  border-radius: 20px;
  overflow: hidden;
}

.why_card_txt {
  position: relative;
  z-index: 1;
  min-height: 440px;
  flex: 0 0 clamp(260px, 22.76vw, 440px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: clamp(28px, 3.33vw, 60px) clamp(20px, 4.17vw, 80px);
  justify-content: center;
}

.why_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 18px;
  background: var(--color-primary);
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-accent);
  width: fit-content;
}

.why_card_tt h3 {
  font-size: clamp(20px, 1.88vw, 36px);
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  margin-bottom: 16px;
}
.why_card_tt p {
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 500;
  color: #6e7380;
  line-height: 1.5;
}

.why_card_img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  display: flex;
  align-items: stretch;
  flex: 1;
  height: 440px;
  overflow: hidden;
}
.why_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.why_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: clamp(20px, 2.1vw, 32px);
}
.why_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.3);
  font-size: 26px;
  transition: color 0.2s;
  padding: 0;
}
.why_btn::before {
  font-family: inherit;
}
.why_btn_prev::before {
  content: "‹";
}
.why_btn_next::before {
  content: "›";
}
.why_btn:hover {
  color: #000;
}
.why_pager {
  line-height: 28px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  min-width: 40px;
  text-align: center;
}
/* why// -------------- */

/* ── benefit (Package 1) -------------- */
.benefit {
  background: var(--color-section-alt);
  padding: clamp(80px, 6.25vw, 120px) 0;
}

.benefit .wrap {
  max-width: 960px;
}

.tit_benefit {
  text-align: center;
  margin-bottom: clamp(40px, 4.17vw, 76px);
}
.tit_benefit > p:first-child {
  font-size: clamp(18px, 1.56vw, 30px);
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}
.tit_benefit h2 {
  font-size: clamp(30px, 2.92vw, 56px);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
}

.benefit_list {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.35vw, 26px);
}

.benefit_card {
  background: #fff;
  border-radius: 20px;
  padding: clamp(24px, 2.1vw, 40px);
  box-shadow: 0 4px 30px rgba(82, 149, 244, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.benefit_card_period {
  padding: clamp(24px, 2.1vw, 40px) clamp(30px, 6.77vw, 130px) 17px;
}
.benefit_cals > img:first-child {
  display: block;
}
.benefit_cals > img:last-child {
  display: none;
}
.benefit_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 20px;
  background: var(--color-primary);
  border-radius: 100px;
  font-size: clamp(16px, 2.1vw, 18px);
  font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
}

.benefit_badge + div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit_card_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.benefit_tt_sub {
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 700;
  color: #000;
  line-height: 1.3;
}
.benefit_tt_main {
  display: block;
  font-size: clamp(28px, 1.67vw, 32px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}
.benefit_tt_main b {
  font-weight: 700;
}
.benefit_card_desc {
  font-size: clamp(14px, 0.95vw, 16px);
  color: #6e7380;
  line-height: 1.4;
}
.benefit_card {
  padding: 40px;
}
.benefit_cals {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(20px, 5.21vw, 100px);
  width: 100%;
}
.benefit_cal {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.benefit_cal img {
  width: clamp(140px, 13.02vw, 250px);
}
.benefit_cal_tag {
  position: absolute;
  bottom: 0;
  background: #f2f6fd;
  border: 1px solid #edf3ff;
  border-radius: 100px;
  padding: 8px 20px;
  font-size: clamp(13px, 0.95vw, 16px);
  color: #6e809c;
  font-weight: 500;
  white-space: nowrap;
}
.benefit_cal_tag em {
  font-style: normal;
  font-weight: 700;
  color: #004feb;
  font-size: 1.125em;
}
.benefit_cal_sep {
  flex-shrink: 0;
  width: 1px;
  height: clamp(160px, 16.56vw, 318px);
  background: #dce3f0;
}

.benefit_row {
  display: flex;
  gap: clamp(16px, 1.25vw, 24px);
  width: 100%;
}
.benefit_row .benefit_card {
  flex: 1;
}
.benefit_card_img {
  max-width: 272px;
  object-fit: contain;
  object-position: bottom;
}
/* benefit// -------------- */

/* ── lineup (Package 2) -------------- */
.lineup {
  background: #fff;
  padding: clamp(60px, 6.25vw, 120px) 0;
}

.lineup .wrap {
  max-width: 960px;
}

.tit_lineup {
  text-align: center;
  margin-bottom: clamp(40px, 4.17vw, 76px);
}
.tit_lineup > p:first-child {
  font-size: clamp(18px, 1.56vw, 30px);
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}
.tit_lineup h2 {
  font-size: clamp(28px, 2.92vw, 56px);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
}

.lineup_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.lineup_card {
  flex: 0 0 calc(50% - 12px);
  background: #f3f5f8;
  border-radius: 20px;
  padding: clamp(20px, 1.88vw, 36px);
  padding-top: clamp(24px, 2.5vw, 48px);
  display: flex;
  flex-direction: column;
  min-height: 476px;
}

.lineup_head {
  text-align: center;
  padding-bottom: 32px;
  border-bottom: 1px dashed #dce1ec;
}
.lineup_head h3 {
  margin-bottom: 12px;
  font-size: clamp(20px, 1.46vw, 28px);
  font-weight: 600;
  color: #000;
  line-height: 28px;
}
.lineup_head p {
  font-size: 16px;
  font-weight: 500;
  color: #6e7380;
}

.lineup_price {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}
.lineup_price_label {
  font-size: 18px;
  font-weight: 600;
  color: #474747;
}
.lineup_price strong {
  font-size: clamp(22px, 1.88vw, 36px);
  font-weight: 700;
  color: #000;
  line-height: 1;
}
.lineup_price strong span {
  font-size: 0.56em;
  font-weight: 400;
}
.lineup_discount {
  margin-top: 3px;
  font-size: clamp(14px, 1.1vw, 20px);
  font-weight: 700;
  color: var(--color-primary-mid, #1463ff);
}
.lineup_discount_dark {
  color: var(--color-primary);
}

.lineup_actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding-top: 35px;
  border-top: 1px dashed #dce1ec;
}
.lineup_detail_link {
  font-size: 14px;
  font-weight: 600;
  color: #7d8ca9;
  letter-spacing: -0.28px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.btn_lineup {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 21px;
  background: #0052f4;
  color: #fff;
  font-size: clamp(14px, 1.1vw, 20px);
  font-weight: 700;
  border-radius: 10px;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  transition: 0.2s;
}
.btn_lineup:hover {
  background-color: #0042cf;
}

.lineup_card_consult {
  background: #fff;
  border: 1px solid #e7ebf2;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}
.lineup_consult_q {
  font-size: clamp(22px, 1.88vw, 36px);
  font-weight: 700;
  color: #000;
  letter-spacing: -0.02em;
}
.lineup_consult_a {
  font-size: clamp(14px, 1.15vw, 22px);
  color: #000;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
.lineup_consult_a a {
  font-weight: 600;
  color: #1463ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* lineup// -------------- */

/* ── bonus -------------- */
.bonus {
  background: var(--color-bonus-bg);
  padding: clamp(60px, 6.25vw, 120px) 0;
}

.bonus .wrap {
  max-width: 960px;
}

.tit_bonus {
  text-align: center;
  margin-bottom: clamp(40px, 4.17vw, 80px);
}
.tit_bonus h2 {
  font-size: clamp(28px, 2.92vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.tit_bonus p {
  font-size: clamp(14px, 0.94vw, 18px);
  color: #dbe7ff;
}

.bonus_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.bonus_card {
  background: #fff;
  border-radius: 20px;
  padding: clamp(24px, 2.1vw, 40px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.04vw, 20px);
  min-height: 292px;
  box-shadow: 0 4px 15px rgba(0, 60, 179, 0.3);
}
.bonus_card img {
  width: clamp(32px, 3vw, 64px);
  height: clamp(32px, 3vw, 64px);
  object-fit: contain;
  flex-shrink: 0;
}
.bonus_card div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bonus_card h3 {
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 700;
  color: #000;
  line-height: 1.4;
}
.bonus_card p {
  font-size: clamp(13px, 0.95vw, 16px);
  color: #6e7380;
  line-height: 1.4;
}
.bonus_card a {
  font-size: 14px;
  font-weight: 500;
  color: #1463ff;
  text-decoration: underline;
  margin-top: 14px;
}
.bonus_card small {
  font-size: 14px;
  color: #6e7380;
}
/* bonus// -------------- */

/* ── now -------------- */
.now {
  background: url(/images/event/cremareview/bg_now.png) no-repeat center;
  background-size: cover;
  overflow: hidden;
}
.now_wrap {
  max-width: 960px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(60px, 8vw, 120px) 0;
}
.now_txt {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 32px);
}
.now_txt + div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: -60px;
}
.now_sub {
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.02em;
}
.now_sub strong {
  font-weight: 700;
  background: linear-gradient(
    87deg,
    #8ceeff 8.78%,
    #f4fdff 53.19%,
    #8ceeff 97.59%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.now_txt h2 {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.btn_now {
  display: inline-flex;
  align-items: center;
  width: 280px;
  justify-content: center;
  padding: clamp(18px, 0.8vw, 24px) 0;
  background: #55eeff;
  color: #000733;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 700;
  border-radius: 10px;
  letter-spacing: -0.02em;
  cursor: pointer;
}
.now_dday {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(16px, 2vw, 28px);
  flex-shrink: 0;
}

.now_badge {
  background: #1b2983;
  border-radius: 100px;
  padding: 13px 20px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.now_badge span {
  font-size: clamp(14px, 1.1vw, 20px);
  font-weight: 500;
  color: #a6c5ff;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.dday_counter {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dday_sep {
  width: clamp(8px, 0.73vw, 14px);
  height: clamp(3px, 0.21vw, 4px);
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}
.dday_card_static,
.dday_tick .tick-flip {
  width: clamp(50px, 4.27vw, 82px) !important;
  height: clamp(62px, 5.21vw, 100px) !important;
  border-radius: clamp(8px, 0.71vw, 13.7px) !important;
  background: #fff !important;
  position: relative;
  overflow: hidden;
}

/* ── D 고정 카드 ── */
.dday_card_static {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dday_card_static span {
  font-size: clamp(36px, 3.44vw, 66px);
  font-weight: 700;
  color: #001071;
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
  z-index: 3;
}

/* D 카드 하단 그라디언트
   Figma: top:51px h:49px (카드 100px 기준 하단 49%) */
.dday_card_static::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 49%;
  background: linear-gradient(to bottom, #bac0e9, rgba(255, 255, 255, 0));
  border-radius: 0 0 clamp(8px, 0.71vw, 13.7px) clamp(8px, 0.71vw, 13.7px);
  pointer-events: none;
  z-index: 2;
}

/* D 카드 중앙 구분선
   Figma: top:50px h:2px (카드 절반) */
.dday_card_static::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ababd3d9;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

/* ── Tick 카드 스타일 ── */
.dday_tick {
  display: block;
  line-height: 0;
}
.dday_tick .tick-flip-panel {
  background-color: #fff !important;
  color: #001071 !important;
  font-weight: 700 !important;
  font-family: var(--font-base) !important;
  font-size: clamp(36px, 3.44vw, 66px) !important;
  letter-spacing: -0.02em !important;
}

/* 하단 절반 그라디언트 (D 카드와 동일) */
.dday_tick .tick-flip-panel-back-bottom,
.dday_tick .tick-flip-panel-front-bottom {
  background: linear-gradient(
    to bottom,
    #d0d4ed,
    rgba(255, 255, 255, 0)
  ) !important;
}

/* 중앙 구분선 */
.dday_tick .tick-flip-spacer {
  background: rgba(255, 255, 255, 0.85) !important;
  height: 2px !important;
}

/* 그림자 제거 */
.dday_tick .tick-flip-shadow {
  box-shadow: none !important;
}
.tick-flip-panel-text-wrapper {
  left: -4px !important;
  top: 6px !important;
}
.tick-flip-panel-back-text .tick-flip-panel-text-wrapper {
  top: -84% !important;
  z-index: 2 !important;
}
.tick-flip-panel-back:after {
  background-image: linear-gradient(
    180deg,
    #b6bbe1 1px,
    #b9bfe9 0,
    transparent 61%
  ) !important;
}

/* now// -------------- */

/* ── faq -------------- */
.faq {
  background: #fff;
  padding: clamp(60px, 6.25vw, 116px) 0;
}

.faq .wrap {
  max-width: 960px;
}

.faq > .wrap > h2 {
  font-size: clamp(28px, 2.5vw, 48px);
  font-weight: 700;
  color: #000;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: clamp(40px, 4.17vw, 74px);
}

.faq_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}

.faq_q {
  width: 100%;
  background: #f3f5f8;
  border-radius: 20px;
  padding: clamp(20px, 2.1vw, 40px);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  transition: border-radius 0.2s;
}
.faq_item.is-open .faq_q {
  padding-bottom: 14px;
  border-radius: 20px 20px 0 0;
}

.faq_qlabel {
  font-size: 18px;
  font-weight: 600;
  color: #303845;
  flex-shrink: 0;
  line-height: 1.4;
}
.faq_q > span:nth-child(2) {
  flex: 1;
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: 600;
  color: #303845;
  line-height: 1.4;
}
.faq_arrow {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.3s;
}
.faq_q[aria-expanded="false"] .faq_arrow {
  transform: rotate(180deg);
}

.faq_a {
  background: #f3f5f8;
  border-radius: 0 0 20px 20px;
  padding: 0 clamp(20px, 2.1vw, 40px) clamp(20px, 2.1vw, 40px)
    clamp(32px, 4vw, 70px);
}
.faq_a p {
  font-size: clamp(13px, 0.95vw, 16px);
  color: #4b5f7d;
  line-height: 1.5;
  margin-bottom: 8px;
}
.faq_a a {
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 600;
  color: #1463ff;
  text-decoration: underline;
  text-underline-offset: 2px;
  display: inline-block;
  margin-top: 4px;
}
/* faq// -------------- */

/* ── notice -------------- */
.notice {
  background: var(--color-darker);
  padding: clamp(40px, 4.17vw, 78px) 0;
}

.notice .wrap {
  max-width: 960px;
}

.notice_intro h3 {
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.notice_intro p {
  font-size: clamp(13px, 0.95vw, 16px);
  color: #b6bfd2;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
.notice_intro a {
  font-weight: 600;
  text-decoration: underline;
  color: #b6bfd2;
}

.notice_hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: clamp(24px, 3.13vw, 60px) 0;
}

.notice_detail {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.5vw, 47px);
}
.notice_group h4 {
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 700;
  color: #86acf6;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.notice_group .dot_list > li {
  font-size: clamp(12px, 0.95vw, 16px);
  color: #b6bfd2;
  line-height: 1.5;
  letter-spacing: -0.02em;
  padding-left: 12px;
}
.notice_group .dot_list > li::before {
  content: "·";
  left: 0;
}
/* notice// -------------- */

/* ── responsive -------------- */
@media screen and (max-width: 1024px) {
  /* overview */
  .overview {
    min-height: auto;
    background-image: url(/images/event/cremareview/bg_overview.png);
    background-size: cover;
  }
  .overview_deco_main {
    position: relative;
    width: 50vw;
    margin: 0 auto;
    top: auto;
    right: auto;
    display: block;
  }
  .overview_btns {
    margin-top: -6vw;
  }
  .overview_deco_bluemoney {
    left: 20%;
    top: 65%;
    width: clamp(120px, 20vw, 140px);
  }
  .overview_deco_pinkmoney {
    right: 16%;
    top: 45%;
    width: clamp(120px, 20vw, 140px);
  }
  .overview_deco_coin {
    right: 20%;
    bottom: 20%;
    width: clamp(100px, 14vw, 100px);
  }
  .overview_wrap {
    align-items: center;
    text-align: center;
    min-height: auto;
    padding: 60px 0 40px;
  }
  .overview_btns {
    justify-content: center;
  }

  /* point */
  .point {
    height: auto;
    padding: 20px 0;
  }
  .point_list {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .point_item {
    flex: 0 0 calc(33% - 20px);
  }
  .point_sep {
    display: none;
  }

  /* why */
  .whySwiper .swiper-slide {
    width: 88vw;
  }
  .why_card {
    display: flex;
  }
  .why_card_txt {
    min-height: 34vw;
    flex: 0 1 40%;
  }
  .why_card_img {
    position: relative;
    flex: 0 1 60%;
    height: 34vw;
  }
  .why_card_img img {
    object-fit: contain;
    object-position: center bottom;
  }

  /* benefit */
  .benefit_card_period {
    padding: 40px 24px;
    gap: 40px;
  }
  .benefit_row {
    flex-direction: column;
  }
  .benefit_cals {
    width: 75%;
  }
  .benefit_cals > img:first-child {
    display: none;
  }
  .benefit_cals > img:last-child {
    display: block;
  }

  /* lineup */
  .lineup_list {
    flex-direction: column;
  }
  .lineup_card {
    flex: none;
    min-height: auto;
  }
  .lineup_price {
    padding: 20px 0;
  }

  /* bonus */
  .bonus_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .bonus_card {
    min-height: auto;
  }

  /* now */
  .now {
    min-height: auto;
  }
  .now_wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 5vw;
  }
  .now_txt {
    align-items: center;
  }
  .now_txt + div {
    margin-top: 0;
  }
  .now_wrap {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding: clamp(40px, 6vw, 80px) 0;
    gap: 40px;
  }
  .now_sub {
    justify-content: center;
  }
  .now_dday {
    align-items: center;
  }
  .btn_now {
    align-self: center;
  }
  .now_deco_1,
  .now_deco_4 {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .overview_deco_main {
    width: 90vw;
  }
  .overview_btns {
    margin-top: -8vw;
  }
  .overview_deco_bluemoney {
    left: 4%;
    top: 65%;
  }
  .overview_deco_pinkmoney {
    right: -10%;
    top: 45%;
  }
  .overview_deco_coin {
    right: -5%;
    bottom: 25%;
  }
  .point_item {
    flex: 0 0 calc(33% - 10px);
  }
  .pkg_label {
    width: 124px;
    gap: 8px;
  }
  .benefit_cals {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
  }
  .benefit_card_img {
    max-width: 236px;
  }
  .benefit_cal_sep {
    display: none;
  }
  .benefit_cals > img:first-child {
    display: none;
  }
  .benefit_cals > img:last-child {
    display: block;
  }
  .why_card {
    flex-direction: column;
    height: 400px;
  }
  .why_card_txt {
    flex: 0 1 60%;
    padding-bottom: 0;
  }
  .why_card_img {
    flex: 0 1 40%;
  }
  .now_txt + div img {
    width: 70%;
  }
  .dday_counter {
    gap: clamp(6px, 3vw, 16px);
  }
  .tick-flip-panel-back-text .tick-flip-panel-text-wrapper {
    top: -24px !important;
  }
  .now_txt {
    gap: 24px;
  }
  .now_txt > hgroup {
    gap: 0;
  }

  /* bonus */
  .lineup_list,
  .bonus_list {
    grid-template-columns: 1fr;
  }
}
/* responsive// -------------- */
