@charset "utf-8";

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

:root {
  --orange: #EB5600;
  --orange-light: #FF6B1A;
  --orange-mid: #FF8731;
  --orange-grad-start: #FF8E0D;
  --orange-grad-end: #FF5020;
  --bg-cream: #fafaf8;
  --bg-pink: #fbf3f3;
  --text-black: #111;
  --text-gray: #9a9690;
  --gnb-h: 64px;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(235, 86, 0, 0.2);
  color: var(--text-black);
}

body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Noto Sans KR', sans-serif;
  background: #fff;
  color: var(--text-black);
  overflow-x: hidden;
}

.is_blind {
  visibility: hidden;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  font-size: 0;
  line-height: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ========================
       GNB
    ======================== */
.gnb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--gnb-h);
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 900;
  display: flex;
  align-items: center;
}

.gnb-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gnb-logo img {
  height: 28px;
  display: block;
}

.gnb-logo .logo {
  background: url(https://static.mk.co.kr/2026/css/mkplus/images/logo.svg) no-repeat 0 0;
  width: 158px;
  height: 27px;
  margin-top: 0;
}

.gnb-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.gnb-nav a {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-black);
  text-decoration: none;
  letter-spacing: -0.075px;
  position: relative;
}

.gnb-nav a:not(.gnb-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--text-black);
  transition: width 0.25s ease;
}

.gnb-nav a:not(.gnb-cta):hover::after {
  width: 100%;
}

.gnb-nav .gnb-cta {
  color: var(--orange-light);
}

.gnb-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 18px;
  border-radius: 94px;
  font-size: 14px;
  font-weight: 900;
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  z-index: 0;
  background: #fff;
  border: none;
  overflow: hidden;
}

/* rotating gradient border */
.gnb-cta::before {
  content: '';
  position: absolute;
  width: 300%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: conic-gradient(from 0deg, #FF5020 0deg, #FF8E0D 60deg, #fff5e0 100deg, #FF8E0D 140deg, #FF5020 360deg);
  z-index: -1;
  animation: gnb-border-spin 1.5s linear infinite;
}

.gnb-cta::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 90px;
  background: #fff;
  z-index: -1;
  transition: background 0.2s;
}

@keyframes gnb-border-spin {
  to {
    transform: rotate(360deg);
  }
}

.gnb-cta:hover {
  color: #fff;
}

.gnb-cta:hover::before {
  background: var(--orange);
  animation: none;
}

.gnb-cta:hover::after {
  background: var(--orange);
}

.gnb-cta svg {
  width: 12px;
  height: 12px;
  fill: #FF6B00;
  position: relative;
  z-index: 1;
}

.gnb-cta:hover svg {
  fill: #fff;
  transition: 0.2s;
}

@media (max-width: 1180px) {

  .gnb {
    padding: 0 18px;
  }

  .gnb-logo .logo {
    height: 22px;
  }

  .gnb-nav a {
    font-size: 14px;
  }

  /* 메뉴 링크는 숨기고, 구독하기 버튼만 표시 */
  .gnb-nav a:not(.gnb-cta) {
    display: none;
  }

  .gnb-logo img {
    height: 22px;
  }

  .gnb-cta {
    font-size: 12px;
    padding: 8px 14px;
  }

  /* Hero CTA 버튼 모바일에서 숨김 */
  .hero-cta-wrap {
    display: none !important;
  }
}

/* ========================
       HERO SECTION (상단 type2)
    ======================== */
.hero {
  padding-top: var(--gnb-h);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* 배경 이미지 레이어 */
.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1100px;
  background: #fff url('//bimg.mk.co.kr/2026/mplus/assets/images/bg_mkplus.png') no-repeat center / cover;
  background-size: cover;
  background-position: center top;
  pointer-events: none;
}

.hero-bg-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 40%,
      #ffffff 72%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  background: rgba(235, 86, 0, 0.08);
  padding: 4px 14px;
  border-radius: 20px;
}

.hero-title {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -2px;
  color: var(--text-black);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 2px;
}

.title-line-inner {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

.title-line:nth-child(2) .title-line-inner {
  transition-delay: 0.15s;
}

.hero-title--revealed .title-line-inner {
  transform: translateY(0);
  opacity: 1;
}

.hero-title .highlight {
  position: relative;
  display: inline-block;
  background-image: linear-gradient(90deg, #FF8E0D 0%, #FF5020 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight {
  position: relative;
  display: inline-block;
  background-image: linear-gradient(90deg, #FF8E0D 0%, #FF5020 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.hero-title .orange {
  color: var(--orange);
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  color: #555;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-cta-wrap {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  background: linear-gradient(to right, var(--orange-grad-start), var(--orange-grad-end));
  border: 1px solid #FF6625;
  border-radius: 80px;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-primary svg {
  width: 12px;
  height: 12px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  background: #312d26;
  border: 1px solid #000;
  border-radius: 80px;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-secondary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/*.btn-secondary svg {
  width: 12px;
  height: 12px;
  transform: rotate(-90deg);
}*/

/* PC 스크린 목업 */
.hero-screen-wrap {
  width: 100%;
  max-width: 1047px;
  position: relative;
}

.hero-screen-wrap--mo {
  display: none;
}

@media (max-width: 1180px) {

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 20px;
  }

  .hero-screen-wrap--pc {
    display: none;
  }

  .hero-screen-wrap--mo {
    display: block;
    max-width: 100%;
  }

  .hero-screen-mo {
    padding: 0 40px;
  }

  .hero-screen-mo img {
    display: block;
    width: 100%;
    height: auto;
    border: 3px solid #c9c9c9;
    border-bottom: 0;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}

.hero-screen-pc {
  border: 4px solid #c9c9c9;
  border-bottom: 0;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.hero-screen-pc img {
  display: block;
  width: 100%;
  height: auto;
}

.screen-bar {
  background: #1a1a1a;
  height: 28px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}

.screen-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.screen-dot.r {
  background: #ff5f57;
}

.screen-dot.y {
  background: #febc2e;
}

.screen-dot.g {
  background: #28c840;
}

@media (max-width: 1180px) {

  .hero-screen-pc {
    border-width: 3px;
    border-radius: 8px;
  }
}

/* ========================
       SECTION COMMON
    ======================== */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.26;
  letter-spacing: -1.5px;
  color: var(--text-black);
  text-align: left;
}

.section-title .highlight-line {
  position: relative;
  display: inline-block;
}

.section-title .highlight-line::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  height: 36%;
  background: linear-gradient(to right, var(--orange-grad-start), var(--orange-grad-end));
  z-index: -1;
  border-radius: 3px;
  opacity: 0.22;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

/* ========================
       VALUE SECTION (핵심가치)
    ======================== */
/* 모바일 전용 value 레이아웃 — 기본 숨김 */
.value-mo {
  display: none;
}

.value-mo-head {
  background: #FFEDE6 url(//bimg.mk.co.kr/2026/mplus/assets/images/bg_mo_value.png) no-repeat;
  background-position: calc(100% - 28px) bottom;
  background-size: 90px;
  padding: 36px 20px 32px;
  min-height: 180px;
}

.value-mo-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -1px;
  color: var(--text-black);
  max-width: 60%;
}

.value-mo-list {
  background: #fff;
  border-radius: 20px;
  margin: 0 18px 0;
  box-shadow: 0 4px 24px rgba(229, 194, 184, 0.45);
  overflow: hidden;
}

.value-mo-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.value-mo-item:last-child {
  border-bottom: none;
}

.value-mo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.value-mo-item-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-black);
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.value-mo-item-desc {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
  letter-spacing: -0.3px;
}

.value-section {
  padding: 80px 0 90px;
  background: #FFEDE6;
  position: relative;
}

.value-head {
  text-align: center;
  margin-bottom: 40px;
}

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

.value-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 24px;
  box-shadow: 0 4px 18px rgba(229, 194, 184, 0.55);
  transition: transform 0.25s, box-shadow 0.25s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(229, 194, 184, 0.7);
}

.value-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  object-fit: contain;
}

.value-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-black);
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  line-height: 1.35;
}

.value-card-desc {
  font-size: 15px;
  font-weight: 400;
  color: #555;
  line-height: 1.6;
}

.value-section .bg_area img {
  position: absolute;
  bottom: -40px;
  right: 57px;
  width: 366px;
}

@media (max-width: 1180px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-section .bg_area img {
    display: none;
  }

  .section-title {
    text-align: center;
  }

  .value-card {
    padding: 20px;
  }

  /* 모바일: PC 콘텐츠 숨기고 모바일 레이아웃 표시 */
  .value-pc-content {
    display: none;
  }

  .value-mo {
    display: block;
  }

  .value-section {
    padding: 0 0 48px;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ========================
       ESSENTIAL CONTENT SECTION (핵심 콘텐츠)
    ======================== */
.essential-section {
  padding: 80px 0 90px;
  background: #fff;
}

.essential-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}


.essential-head {
  margin-bottom: 80px;
}

.essential-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.essential-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #111;
  color: #fff;
  border-radius: 77px;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.08px;
  white-space: nowrap;
}

.essential-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ess-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255, 227, 211, 0.2);
  border: 1px solid #fcc9b1;
  border-radius: 12px;
  box-shadow: 0 4px 9.5px rgba(0, 0, 0, 0.07);
  transition: background 0.2s;
}

.ess-item:hover {
  background: rgba(255, 227, 211, 0.38);
}

.ess-item-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
}


.ess-item-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-black);
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}

.ess-item-desc {
  font-size: 15px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: -0.5px;
  line-height: 1.5;
}

.essential-right {
  position: relative;
}

.essential-img-wrap {
  position: relative;
}

.essential-img-bg {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1180px) {
  .essential-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .essential-right {
    order: -1;
  }

  .essential-img-bg {
    max-width: 360px;
    margin: 0 auto;
  }
}

/* 모바일 essential 레이아웃 — 기본 숨김 */
.essential-mo {
  display: none;
}

@media (max-width: 1180px) {

  /* PC 레이아웃 숨김 */
  .essential-pc {
    display: none;
  }

  /* 모바일 레이아웃 표시 */
  .essential-mo {
    display: block;
    padding: 40px 20px 48px;
  }

  .essential-mo-head {
    margin-bottom: 24px;
  }

  .essential-mo-img {
    display: block;
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
  }

  .essential-mo-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(229, 194, 184, 0.6);
    box-shadow: 0 4px 24px rgba(229, 194, 184, 0.5);
    overflow: hidden;
  }

  .ess-mo-item {
    padding: 22px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  }

  .ess-mo-item:last-child {
    border-bottom: none;
  }

  .ess-mo-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-black);
    letter-spacing: -0.3px;
    margin-bottom: 10px;
  }

  .ess-mo-row {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .ess-mo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange-grad-start), var(--orange-grad-end));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .ess-mo-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .ess-mo-desc {
    font-size: 14px;
    font-weight: 400;
    color: #555;
    line-height: 1.55;
    letter-spacing: -0.3px;
  }

  .essential-section {
    padding: 0;
  }
}

/* ========================
       BENEFIT SECTION (전용 혜택)
    ======================== */
.benefit-section {
  padding: 80px 0 100px;
  background:
    radial-gradient(circle, rgba(235, 86, 0, 0.12) 1.5px, transparent 1.5px),
    linear-gradient(180deg, #FFE8DC 0%, #FFF5F0 60%, #fff 100%);
  background-size: 28px 28px, 100% 100%;
  position: relative;
  overflow: hidden;
}

/* ── 3D 장식 요소 ── */
.benefit-deco {
  position: absolute;
  pointer-events: none;
}

/* 큰 3D 구체 – 우상단 */
.benefit-deco--sphere1 {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFB87A, #FF5020 55%, #c43000 100%);
  box-shadow: inset -12px -12px 28px rgba(0, 0, 0, 0.25), 0 20px 60px rgba(235, 86, 0, 0.25);
  top: -40px;
  right: 6%;
  opacity: 0.75;
  animation: float1 6s ease-in-out infinite;
}

/* 작은 3D 구체 – 좌중단 */
.benefit-deco--sphere2 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff5ee, #FFAD6B 50%, #FF6B1A 100%);
  box-shadow: inset -6px -6px 14px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(235, 86, 0, 0.2);
  top: 120px;
  left: 4%;
  animation: float2 5s ease-in-out infinite;
}

/* 링/도넛 – 좌하단 */
.benefit-deco--ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 14px solid transparent;
  background: linear-gradient(#fff0e8, #fff0e8) padding-box,
    linear-gradient(135deg, #FF8E0D, #FF5020) border-box;
  box-shadow: 0 8px 24px rgba(235, 86, 0, 0.18);
  bottom: 120px;
  left: 7%;
  transform: rotate(-20deg);
  animation: float3 7s ease-in-out infinite;
}

/* 큰 별 – 좌상단 */
.benefit-deco--star1 {
  width: 52px;
  height: 52px;
  top: 40px;
  left: 12%;
  filter: drop-shadow(0 4px 10px rgba(235, 86, 0, 0.4));
  animation: spin1 10s linear infinite;
}

/* 중간 별 – 우중단 */
.benefit-deco--star2 {
  width: 36px;
  height: 36px;
  top: 200px;
  right: 10%;
  filter: drop-shadow(0 3px 8px rgba(235, 86, 0, 0.3));
  animation: spin1 14s linear infinite reverse;
}

/* 작은 별 – 중앙 상단 오른쪽 */
.benefit-deco--star3 {
  width: 22px;
  height: 22px;
  top: 80px;
  right: 22%;
  animation: twinkle 3s ease-in-out infinite;
}

/* 작은 원 점들 */
.benefit-deco--dot1 {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFD4B8, #FF6B1A);
  box-shadow: 0 4px 10px rgba(235, 86, 0, 0.3);
  top: 160px;
  right: 18%;
  animation: float2 4s ease-in-out infinite;
}

.benefit-deco--dot2 {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, #FFAD6B);
  top: 60px;
  left: 28%;
  animation: float1 5s ease-in-out infinite 1s;
}

/* 큐브/다이아몬드 */
.benefit-deco--cube {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #FFD4A8 0%, #FF8731 50%, #FF5020 100%);
  box-shadow: inset -4px -4px 8px rgba(0, 0, 0, 0.2), 0 8px 20px rgba(235, 86, 0, 0.25);
  border-radius: 8px;
  bottom: 200px;
  right: 5%;
  transform: rotate(20deg);
  animation: float3 6s ease-in-out infinite 0.5s;
}

/* 모바일: 원/링/점/큐브 숨기고 별만 표시 */
@media (max-width: 1180px) {

  .benefit-deco--sphere1,
  .benefit-deco--sphere2,
  .benefit-deco--ring,
  .benefit-deco--dot1,
  .benefit-deco--dot2,
  .benefit-deco--cube {
    display: none;
  }

  .benefit-deco--star1 {
    width: 36px;
    height: 36px;
    left: 6%;
    top: 24px;
  }

  .benefit-deco--star2 {
    width: 26px;
    height: 26px;
    right: 6%;
    top: 160px;
  }

  .benefit-deco--star3 {
    width: 18px;
    height: 18px;
    right: 16%;
    top: 56px;
  }
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translateY(0) rotate(-20deg);
  }

  50% {
    transform: translateY(-10px) rotate(-10deg);
  }
}

@keyframes spin1 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

.benefit-head {
  text-align: center;
  margin-bottom: 30px;
}

.benefit-head-en {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--orange);
  margin-bottom: 12px;
  opacity: 0.8;
}

.benefit-head-title {
  font-size: clamp(24px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -1.5px;
  color: var(--text-black);
}

.benefit-mark {
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, var(--orange-grad-start), var(--orange-grad-end));
  color: #fff;
  padding: 0 10px 2px;
  border-radius: 6px;
  font-style: normal;
  overflow: hidden;
}

.benefit-mark::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg,
      transparent 20%,
      rgba(255, 255, 255, 0.45) 50%,
      transparent 80%);
  animation: shimmer 3s ease-in-out infinite 1s;
}

@keyframes shimmer {
  0% {
    left: -80%;
  }

  60%,
  100% {
    left: 140%;
  }
}

/* 혜택 레이아웃 - PC용: 폰 중앙 + 좌우 카드 */
.benefit-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 58px;
}

.benefit-col-left,
.benefit-col-right {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 40px;
}

.benefit-col-left {
  margin-top: 50px;
}

.benefit-col-right {
  margin-top: 170px;
}

.benefit-card {
  background: #fff;
  border: 4px solid var(--orange);
  border-radius: 28px;
  overflow: visible;
  box-shadow: 0 4px 16px rgba(235, 86, 0, 0.1);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(235, 86, 0, 0.18);
}

.benefit-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/13;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
}

.benefit-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-card-img {
  transform: scale(1.05);
}

.benefit-card-img--pos-60 {
  object-position: center 60%;
}

.benefit-card-img--pos-30 {
  object-position: center 30%;
}

.benefit-card-img--pos-70 {
  object-position: center 70%;
}

.benefit-tags-wrap {
  margin-top: 28px;
}

.benefit-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}

.benefit-tag {
  background: #fff;
  border-radius: 100px;
  padding: 11px 22px;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.3px;
  border: 1.5px solid rgba(235, 86, 0, 0.2);
}

.benefit-tag strong {
  font-weight: 800;
  color: var(--orange);
}

.benefit-card-body {
  padding: 20px 24px;
  background: #fff;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.benefit-badge {
  position: absolute;
  top: -22px;
  left: 20px;
  /* transform: translateX(-50%); */
  background: var(--orange);
  color: #fff;
  border-radius: 21px;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 1;
}

.benefit-badge img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.benefit-card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-black);
  text-align: left;
  line-height: 1.7;
  letter-spacing: -0.3px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.benefit-card-title-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.card-check {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
}

/* 중앙 폰 목업 */
.benefit-phone-wrap {
  width: 320px;
  flex-shrink: 0;
}

.benefit-phone {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22), 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.benefit-phone-screen {
  overflow: hidden;
}

.benefit-phone-notch {
  width: 60px;
  height: 18px;
  background: #1a1a1a;
  border-radius: 12px;
  margin: 6px auto;
}

.benefit-phone-screen img {
  width: 100%;
  display: block;
}

/* Benefit Swiper — 기본 숨김 */
.benefit-swiper {
  display: none;
}

/* 모바일에서 혜택 레이아웃 변경 */
@media (max-width: 1180px) {
  .benefit-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefit-phone-wrap {
    order: -1;
    width: 200px;
    margin: 0 auto;
  }

  .benefit-col-left,
  .benefit-col-right {
    padding-top: 0;
    gap: 16px;
  }
}

/* 모바일: Swiper 표시 / PC 레이아웃 숨김 / 폰 목업 숨김 */
@media (max-width: 1180px) {
  .benefit-layout {
    display: none;
  }

  .benefit-phone-wrap {
    display: none;
  }

  .benefit-card-body {
    min-height: 96px;
    padding: 18px;
  }

  .benefit-swiper {
    display: block;
    margin-top: 20px;
  }

  /* 뱃지 잘림 방지 — 슬라이드 상단 여백 */
  .benefit-swiper .swiper-slide {
    padding-top: 24px;
  }

  /* pagination을 swiper 바깥 아래에 표시 */
  .benefit-swiper .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    padding-bottom: 8px;
  }

  .benefit-swiper .swiper-pagination-bullet {
    background: var(--orange);
    opacity: 0.3;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
  }

  .benefit-swiper .swiper-pagination-bullet-active {
    opacity: 1;
  }

  .benefit-tag {
    font-size: 14px;
    padding: 8px 12px;
    border: none;
  }

  .benefit-head-title .hightlight {
    margin-bottom: 6px !important;
  }

  .benefit-card {
    border: 3px solid var(--orange);
    border-radius: 26px;
    box-shadow: 0 8px 32px rgba(235, 86, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .benefit-badge {
    font-size: 14px;
    padding: 8px 14px;
    top: -18px;
  }

  .benefit-tags-wrap {
    margin-top: 18px;
  }

  .benefit-card-title {
    font-size: 16px;
  }

  .benefit-mark {
    margin-top: 4px;
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* 모바일 전체 좌/우 여백 20px */
@media (max-width: 1180px) {

  .benefit-section .section-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .section-inner,
  .essential-inner,
  .sub-hero,
  .sub-plans {
    padding-left: 18px;
    padding-right: 18px;
  }

  .benefit-swiper {
    padding-left: 0;
    padding-right: 0;
  }

  .benefit-section {
    padding: 40px 0 40px;
  }

  .benefit-head {
    margin-bottom: 18px;
  }
}

/* ========================
       SUBSCRIPTION SECTION (구독 플랜)
    ======================== */
.subscription-section {
  padding: 0 0 100px;
  background: linear-gradient(to bottom, var(--orange-mid), #FF440B);
  position: relative;
  overflow: hidden;
}

/* 상단 오렌지 그라디언트 영역 */
.sub-hero {
  padding: 80px 0 20px 0;
  text-align: center;
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.sub-hero-img {
  position: absolute;
  top: 49px;
  right: 20px;
  width: 263px;
  pointer-events: none;
  opacity: 0.9;
}

.sub-hero-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.3;
  margin-bottom: 8px;
  text-align: left;
  max-width: 1180px;
  margin: 0 auto;
}

.sub-hero-title .light {
  font-weight: 500;
}

/* 플랜 카드 영역 */
.sub-plans-bg {
  border-radius: 28px 28px 0 0;
}

.sub-plans-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.sub-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-card {
  background: var(--bg-cream);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(235, 86, 0, 0.18);
}

.plan-sub {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-black);
  letter-spacing: -0.15px;
  margin-bottom: 6px;
}

.plan-title {
  font-size: 23px;
  font-weight: 800;
  color: var(--text-black);
  letter-spacing: -0.24px;
  margin-bottom: 12px;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.plan-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -2px;
}

.plan-unit {
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.09px;
}

.plan-note {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-gray);
  letter-spacing: -0.07px;
  margin-bottom: 4px;
}

.plan-note .em {
  color: var(--orange);
}

.plan-divider {
  border: none;
  border-top: 1px solid rgba(63, 63, 63, 0.12);
  margin: 16px 0;
}

.plan-feature {
  font-size: 15px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: -0.07px;
  line-height: 1.6;
  padding: 3px 0 3px 14px;
  position: relative;
}

.plan-feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.plan-feature.bold {
  font-weight: 700;
}

.plan-feature.check::before {
  content: '';
  width: 14px;
  height: 14px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><circle cx="7" cy="7" r="7" fill="%23ff6b00"/><path d="M3.5 7l2.5 2.5 4.5-4.5" stroke="white" stroke-width="1.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
  top: 5px;
}

.plan-feature:last-of-type {
  margin-bottom: 24px;
}

.plan-cta {
  display: block;
  margin-top: auto;
  padding: 16px;
  background: var(--orange);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 80px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: opacity 0.2s, transform 0.2s;
}

.plan-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.plan-cta svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 1180px) {
  .sub-plans-grid {
    grid-template-columns: 1fr;
    /*max-width: 400px;*/
    margin: 0 auto;
  }

  .sub-hero-img {
    display: none;
  }

  .subscription-section {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 50px;
  }

  .plan-card {
    padding: 22px;
    border-radius: 18px;
  }

  .plan-title {
    margin-bottom: 6px;
    font-size: 20px;
  }

  /* 모바일: 배경 이미지로 처리 */
  .sub-hero {
    display: block;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    min-height: 220px;
    background-image: url('//bimg.mk.co.kr/2026/mplus/assets/images/bg_subscription.png');
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) bottom;
    background-size: auto 110px;
  }

  .sub-hero-img {
    display: none;
  }

  .plan-sub {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .plan-note {
    font-size: 14px;
    line-height: 1.4;
  }

  .plan-feature {
    padding-bottom: 2px;
    padding-top: 2px;
  }

  .plan-cta {
    padding: 12px;
    font-size: 16px;
  }

  .sub-plans-bg {
    margin-top: 0;
  }

  .sub-hero {
    padding-top: 40px;
  }
}

/* ========================
       FAQ SECTION
    ======================== */
.faq-section {
  background: #393939;
  padding: 80px 0 80px;
}

.faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-title {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.2;
}

.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #191919;
  border-radius: 80px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #fafaf8;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.faq-link:hover {
  opacity: 0.8;
}

.faq-link svg {
  width: 10px;
  height: 10px;
}

.faq-box {
  background: #fff;
  border-radius: 21px;
  overflow: hidden;
}

.faq-item {
  padding: 26px 28px;
  border-bottom: 1px solid rgba(63, 63, 63, 0.1);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-black);
  letter-spacing: -0.18px;
  cursor: pointer;
  transition: background 0.15s;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item:hover {
  background: rgba(0, 0, 0, 0.04);
}

a.faq-item {
  text-decoration: none;
  color: inherit;
  display: flex;
}

@media (max-width: 1180px) {
  .faq-section {
    padding: 48px 0 48px;
  }

  .faq-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .faq-link {
    align-self: flex-end;
    font-size: 14px;
  }

  .faq-item {
    font-size: 15px;
    padding: 18px 20px;
  }

  .faq-box {
    border-radius: 16px;
  }
}

/* ========================
       FOOTER
    ======================== */
.footer {
  background: #282828;
  height: 90px;
  display: flex;
  align-items: center;
}

.footer .logo {
  background: url(https://static.mk.co.kr/2026/css/mkplus/images/logo.svg) no-repeat 0 0;
  width: 158px;
  height: 27px;
  margin-top: 0;
  display: block;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-logo img {
  height: 27px;
  display: block;
}

.footer-copy {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: -0.24px;
}

@media (max-width: 1180px) {
  .footer-inner {
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    height: auto;
    padding: 60px 0;
  }

  .footer-logo img {
    height: 24px;
  }

  .footer {
    height: auto;
  }
}

/* ========================
       MO 전용 픽스된 CTA
    ======================== */

/* ========================
       상단으로 가기 버튼
    ======================== */
.scroll-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  pointer-events: none;
  z-index: 800;
}

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

.scroll-top:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

@media (max-width: 1180px) {
  .scroll-top {
    bottom: 24px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

.mo-fixed-cta {
  display: none;
}

@media (max-width: 1180px) {
  .mo-fixed-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--orange);
    z-index: 800;
    padding: 12px 20px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .mo-fixed-cta a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .mo-fixed-cta-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
  }

  .mo-fixed-cta-text strong {
    font-size: 13px;
    color: #fff;
  }

  .mo-fixed-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    color: var(--orange);
    border-radius: 24px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
  }
}

/* ========================
       SCROLL FADE IN
    ======================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

/* Coin floating */
@keyframes coinFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.coin-float {
  animation: coinFloat 3.5s ease-in-out infinite;
}

/* logo MK PLUS svg */
.mk-logo-svg {
  height: 28px;
}