:root {
  --pengo-navy: #1B2B5E;
  --pengo-orange: #FF6B2B;
  --pengo-purple: #690bad;
  --pengo-red: #E64A19;
  --page-max: 1280px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  margin: 0;
  background: #f8fafc;
  color: #111827;
  letter-spacing: -1px;
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: -1px;
}

p {
  font-size: 1.1rem;
}

.bg-pengo-navy {
  background-color: var(--pengo-navy);
}

.bg-pengo-purple {
  background-color: var(--pengo-purple);
}

.text-pengo-navy {
  color: var(--pengo-navy);
}

.text-pengo-purple {
  color: var(--pengo-purple);
}


.bg-pengo-orange {
  background-color: var(--pengo-orange);
}

.text-pengo-orange {
  color: var(--pengo-orange);
}

.border-pengo-orange {
  border-color: var(--pengo-orange);
}

.bg-pengo-red {
  background-color: var(--pengo-red);
}

.text-pengo-red {
  color: var(--pengo-red);
}

.section-shell {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 100px 32px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
}

.section-desc {
  color: #6b7280;
  font-size: 1.25rem;
  margin-top: 16px;
  line-height: 1.8;
}

.card-soft {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  min-width: 0;
}

.glass-dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 16px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.feature-card:hover,
.lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.feature-card,
.lift,
.step-circle,
.faq-card,
.benefit-card {
  transition: all .28s ease;
}

.step-circle:hover {
  transform: scale(1.05);
}

.bg-pattern-dots {
  background-image: radial-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 24px 24px;
}

.orange-line {
  width: 84px;
  height: 4px;
  border-radius: 999px;
  background: var(--pengo-orange);
  margin-top: 18px;
}

.process-static {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.process-card {
  position: relative;
  text-align: center;
  padding: 28px 18px;
}

.process-card::after {
  content: "";
  position: absolute;
  top: 56px;
  right: -11px;
  width: 22px;
  height: 22px;
  border-top: 3px solid #cbd5e1;
  border-right: 3px solid #cbd5e1;
  transform: rotate(45deg);
}

.process-card:last-child::after {
  display: none;
}

.pricing-static {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-static .featured-rate {
  transform: scale(1.03);
}

.mobile-hint {
  display: none !important;
}

@media (max-width: 1180px) {
  .process-static {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .process-card::after {
    display: none;
  }

  .pricing-static {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {

  .hero-grid,
  .two-col,
  .faq-layout,
  .closing-grid {
    grid-template-columns: 1fr !important;
  }

  .section-shell {
    padding: 72px 20px;
  }

  body {
    font-size: 17px;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .process-static {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .pricing-static {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .pricing-static .featured-rate {
    grid-column: span 2;
    transform: none;
    order: -1;
  }
}

@media (max-width: 560px) {
  .process-static {
    grid-template-columns: 1fr;
  }

  .pricing-static {
    grid-template-columns: 1fr;
  }

  .pricing-static .featured-rate {
    grid-column: span 1;
  }

  .process-card {
    padding: 24px 16px;
  }
}

.hero-air-visual {
  position: relative;
}

.hero-air-character {
  position: relative;
  width: 420px;
  max-width: 90%;
  z-index: 5;

  transform: rotate(-6deg);
  animation: flyFloat 4s ease-in-out infinite;

  filter: drop-shadow(0 40px 50px rgba(0, 0, 0, 0.45));
}

/* 떠있는 애니메이션 */

@keyframes flyFloat {

  0% {
    transform: translateY(0px) rotate(-6deg);
  }

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

  100% {
    transform: translateY(0px) rotate(-6deg);
  }

}



#air-intro {
  position: relative;
  background: linear-gradient(180deg, #6fc8ff 0%, #49b7ff 35%, #2d99ef 70%, #1c78d0 100%);
}

/* 하늘 밝기층 */
#air-intro {
  position: relative;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.04) 0%, transparent 25%),
    linear-gradient(180deg, #1b2b5e 0%, #172452 100%);
}

/* 구름 공통 */
.air-cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.95;
  z-index: 1;
  pointer-events: none;
  box-shadow:
    40px 10px 0 8px rgba(255, 255, 255, 0.92),
    85px 0 0 12px rgba(255, 255, 255, 0.88),
    130px 12px 0 4px rgba(255, 255, 255, 0.85);
}

.air-cloud::before,
.air-cloud::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
}

.air-cloud::before {
  width: 70px;
  height: 70px;
  left: 22px;
  top: -26px;
}

.air-cloud::after {
  width: 90px;
  height: 90px;
  left: 72px;
  top: -34px;
}

.cloud-1 {
  width: 150px;
  height: 48px;
  top: 80px;
  left: 6%;
  animation: cloudMove1 30s linear infinite;
  opacity: .18;
}

.cloud-2 {
  width: 190px;
  height: 58px;
  top: 150px;
  right: 10%;
  animation: cloudMove2 38s linear infinite;
  opacity: .22;
  transform: scale(1.05);
}

.cloud-3 {
  width: 170px;
  height: 54px;
  bottom: 90px;
  left: 42%;
  animation: cloudMove3 34s linear infinite;
  opacity: .10;
  transform: scale(.92);
}

.hero-air-visual {
  isolation: isolate;
}

.hero-air-character {
  position: relative;
  z-index: 3;
  max-width: 380px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.18));
}

.glass-dark {
  background: rgba(17, 37, 84, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

@keyframes cloudMove1 {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(30px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes cloudMove2 {
  0% {
    transform: translateX(0) scale(1.05);
  }

  50% {
    transform: translateX(-35px) scale(1.05);
  }

  100% {
    transform: translateX(0) scale(1.05);
  }
}

@keyframes cloudMove3 {
  0% {
    transform: translateX(0) scale(.92);
  }

  50% {
    transform: translateX(24px) scale(.92);
  }

  100% {
    transform: translateX(0) scale(.92);
  }
}

@media (max-width: 768px) {
  .cloud-1 {
    top: 60px;
    left: -10px;
    transform: scale(.78);
  }

  .cloud-2 {
    top: 120px;
    right: -20px;
    transform: scale(.82);
  }

  .cloud-3 {
    bottom: 120px;
    left: 28%;
    transform: scale(.72);
  }

  .hero-air-character {
    max-width: 280px;
  }
}



.pengo-feature-section {
  position: relative;
  overflow: hidden;
}

.pengo-feature-section .section-shell {
  position: relative;
  z-index: 2;
}

.pengo-feature-character {
  position: absolute;
  right: 250px;
  bottom: 10px;
  width: 260px;
  max-width: 32vw;
  z-index: 1;
  pointer-events: none;
  opacity: .96;
  filter:
    drop-shadow(0 18px 28px rgba(27, 43, 94, .16)) drop-shadow(0 10px 24px rgba(255, 107, 43, .10));
  transform: rotate(-4deg);
}

/* 카드가 캐릭터와 자연스럽게 어우러지도록 */
.pengo-feature-section .feature-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(2px);
}

/* 오른쪽 마지막 카드가 캐릭터와 너무 겹치지 않게 */
@media (min-width: 1280px) {
  .pengo-feature-section .grid {
    padding-right: 180px;
  }
}

@media (max-width: 1279px) {
  .pengo-feature-character {
    width: 220px;
    right: -20px;
    bottom: 0;
    opacity: .22;
  }
}

@media (max-width: 767px) {
  .pengo-feature-character {
    width: 150px;
    right: -22px;
    bottom: 8px;
    opacity: .14;
    transform: rotate(-7deg);
  }
}



.process-static {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
}

.process-card {
  position: relative;
  width: 180px;
  min-height: 255px;
  padding: 26px 20px;
  text-align: center;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.process-card:not(:last-child)::after {
  content: none;
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  z-index: 3;

  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  color: #cbd5e1;
}

.step-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 9999px;
  border: 4px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b2b;
  font-size: 40px;
  font-weight: 900;
  background: #fff;
}

.step-circle-active {
  border-color: #1b2b5e;
}

.process-time-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.process-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #1b2b5e;
  color: #fff;
  padding: 16px 28px;
  border-radius: 9999px;
  box-shadow: 0 18px 40px rgba(27, 43, 94, 0.22);
}

@media (max-width: 1280px) {
  .process-static {
    gap: 22px;
  }

  .process-card {
    width: 170px;
  }

  .process-card:not(:last-child)::after {
    right: -15px;
  }
}

@media (max-width: 1024px) {
  .process-static {
    gap: 18px;
  }

  .process-card {
    width: calc(33.333% - 12px);
    min-width: 180px;
  }

  .process-card::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-static {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .process-card {
    width: 100%;
    max-width: 340px;
    min-height: auto;
  }

  .process-card::after {
    display: none;
  }

  .process-time-badge {
    width: 100%;
    max-width: 340px;
    border-radius: 24px;
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}



.weekly-air-section {
  position: relative;
}

.weekly-air-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .4;
  pointer-events: none;
}

.weekly-schedule-wrap {
  position: relative;
  padding-bottom: 80px;
}

.weekly-board {
  position: relative;
  z-index: 2;
}

.weekly-character {
  position: absolute;
  right: -170px;
  bottom: -30px;
  z-index: 99;
  pointer-events: none;
}

.weekly-character img {
  width: 300px;
  max-width: 30vw;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.28));
}

.weekly-calendar-trigger-wrap {
  display: flex;
  justify-content: center;
  padding: 18px 20px;
  background: linear-gradient(180deg, #fff7ef 0%, #ffffff 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.weekly-calendar-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  background: var(--pengo-navy);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(27, 12, 1, 0.24);
  transition: transform .18s ease, box-shadow .18s ease;
}

.weekly-calendar-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(23, 1, 105, 0.32);
}

.weekly-calendar-trigger-icon {
  font-size: 18px;
  line-height: 1;
}

.schedule-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.schedule-modal.is-open {
  display: block;
}

.schedule-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.66);
  backdrop-filter: blur(4px);
}

.schedule-modal-dialog {
  position: relative;
  width: min(960px, calc(100% - 32px));
  margin: 50px auto;
  background: #fff;
  color: #16325c;
  border-radius: 28px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
  padding: 28px;
  z-index: 2;
  max-height: calc(100vh - 100px);
  overflow: auto;
}

.schedule-modal-close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: #edf2f7;
  color: #1e293b;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.schedule-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 24px;
  padding-right: 54px;
}

.schedule-modal-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  color: #ff6a00;
  margin-bottom: 8px;
}

.schedule-modal-head h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 900;
  color: #18356d;
}

.schedule-modal-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.schedule-tab {
  border: 1px solid #d6deea;
  background: #fff;
  color: #5b6f96;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all .18s ease;
}

.schedule-tab.is-active {
  background: #18356d;
  color: #fff;
  border-color: #18356d;
}

.schedule-modal-toolbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.calendar-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #d6deea;
  background: #fff;
  color: #18356d;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  font-weight: 700;
}

.calendar-current-month {
  min-width: 180px;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  color: #18356d;
}

.schedule-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
  color: #51627f;
  font-size: 13px;
  font-weight: 700;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: inline-block;
}

.legend-dot.air {
  background: #ff7a1a;
}

.legend-dot.sea {
  background: #16a34a;
}

.legend-dot.today {
  background: #18356d;
}

.schedule-calendar-wrap {
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}

.schedule-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.schedule-calendar-weekdays div {
  text-align: center;
  padding: 14px 8px;
  font-size: 14px;
  font-weight: 900;
  color: #18356d;
}

.schedule-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #fff;
}

.calendar-day {
  min-height: 115px;
  border-right: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
  padding: 12px;
  position: relative;
  background: #fff;
}

.calendar-day:nth-child(7n) {
  border-right: 0;
}

.calendar-day.is-other-month {
  background: #f8fafc;
  color: #a0aec0;
}

.calendar-day.is-today {
  box-shadow: inset 0 0 0 2px #18356d;
  z-index: 1;
}

.calendar-day-number {
  font-size: 15px;
  font-weight: 900;
  color: #18356d;
}

.calendar-day.is-other-month .calendar-day-number {
  color: #a0aec0;
}

.calendar-badges {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calendar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .02em;
}

.calendar-badge.air {
  background: #fff1e8;
  color: #ff6a00;
  border: 1px solid #ffd1b0;
}

.calendar-badge.sea {
  background: #ecfdf3;
  color: #15803d;
  border: 1px solid #b7efcc;
}

.schedule-modal-footer {
  margin-top: 16px;
}

.schedule-note-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 14px 16px;
  color: #51627f;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .weekly-character {
    right: -40px;
    bottom: -10px;
  }

  .weekly-character img {
    width: 240px;
  }
}

@media (max-width: 980px) {
  .weekly-schedule-wrap {
    padding-bottom: 40px;
  }

  .weekly-character {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 0 auto 20px;
    text-align: center;
  }

  .weekly-character img {
    width: 220px;
    max-width: 60vw;
    margin: 0 auto;
  }
}






/* =========================================
   WEEKLY SCHEDULE HORIZONTAL SCROLL FIX
========================================= */
.weekly-board {
  overflow: hidden;
}

.weekly-scroll-x {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.weekly-scroll-table {
  min-width: 980px;
}

.weekly-days-head {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  background: var(--pengo-orange);
  color: #fff;
  text-align: center;
  font-weight: 900;
  font-size: 15px;
}

.weekly-days-head>div {
  padding: 16px 8px;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.weekly-days-head>div:last-child {
  border-right: 0;
}

.weekly-days-body {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  text-align: center;
  border-top: 1px solid #e2e8f0;
}

.weekly-day-card {
  min-height: 180px;
  padding: 24px 16px;
  border-right: 1px solid #f1f5f9;
}

.weekly-day-card-last {
  border-right: 0;
}

@media (max-width: 980px) {
  .weekly-scroll-table {
    min-width: 980px;
  }
}

@media (max-width: 768px) {
  .weekly-scroll-table {
    min-width: 910px;
  }

  .weekly-day-card {
    min-height: 165px;
    padding: 18px 12px;
  }

  .weekly-days-head>div {
    padding: 12px 6px;
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .weekly-scroll-table {
    min-width: 880px;
  }

  .weekly-day-card {
    min-height: 155px;
    padding: 16px 10px;
  }

  .weekly-day-card .text-2xl,
  .weekly-day-card .md\:text-3xl {
    font-size: 1.3rem !important;
    line-height: 1.25;
  }
}





















.schedule-modal-dialog {
  width: min(96vw, 680px);
  max-width: 96vw;
  margin: 20px auto;
  padding: 16px;
  max-height: calc(100vh - 40px);
  border-radius: 20px;
}

.schedule-modal-head {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-right: 44px;
}

.schedule-modal-head h3 {
  font-size: 24px;
}

.schedule-modal-tabs {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.schedule-tab {
  width: 100%;
  justify-content: center;
  padding: 10px 12px;
  font-size: 13px;
  white-space: nowrap;
}

.schedule-modal-toolbar {
  gap: 10px;
  margin-top: 14px;
}

.calendar-nav-btn {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}

.calendar-current-month {
  font-size: 18px;
  min-width: 0;
  flex: 1 1 auto;
  text-align: center;
}

.schedule-legend {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  font-size: 12px;
  margin-top: 12px;
}

.schedule-calendar-wrap {
  overflow: visible;
  width: 100%;
  margin-top: 14px;
}

.schedule-calendar-weekdays {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  font-size: 11px;
  text-align: center;
}

.schedule-calendar-weekdays div {
  min-width: 0;
  padding: 8px 2px;
  font-size: 11px;
  word-break: keep-all;
}

.schedule-calendar-grid {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.calendar-day {
  min-width: 0;
  min-height: 74px;
  padding: 8px 4px;
  border-radius: 12px;
}

.calendar-day-number {
  font-size: 12px;
  margin-bottom: 4px;
}

.calendar-badges {
  margin-top: 6px;
  gap: 3px;
}

.calendar-badge {
  font-size: 9px;
  line-height: 1.15;
  padding: 3px 4px;
  border-radius: 8px;
  white-space: normal;
  word-break: keep-all;
}

.schedule-modal-footer {
  margin-top: 12px;
}

.schedule-note-box {
  font-size: 12px;
  line-height: 1.5;
  padding: 12px;
}
}




@media (max-width: 480px) {
  .schedule-modal-dialog {
    width: 98vw;
    max-width: 98vw;
    padding: 12px;
    border-radius: 16px;
  }

  .schedule-modal-head h3 {
    font-size: 20px;
  }

  .schedule-modal-kicker {
    font-size: 11px;
  }

  .schedule-calendar-weekdays {
    font-size: 10px;
  }

  .schedule-calendar-weekdays div {
    padding: 6px 1px;
    font-size: 10px;
  }

  .schedule-calendar-grid {
    gap: 3px;
  }

  .calendar-day {
    min-height: 66px;
    padding: 6px 3px;
    border-radius: 10px;
  }

  .calendar-day-number {
    font-size: 11px;
  }

  .calendar-badge {
    font-size: 8px;
    padding: 2px 3px;
    border-radius: 6px;
  }

  .schedule-note-box {
    font-size: 11px;
    line-height: 1.45;
  }
}






.rate-radio-label input[type="radio"] {
  accent-color: #ff7a1a;
  transform: scale(1.1);
}



#nz-shipping-map * {
  box-sizing: border-box;
}

#nz-shipping-map {
  padding: 24px 0;
  background: #eef2f6;
  color: #183153;
}

#nz-shipping-map .wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px;
}

#nz-shipping-map .layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
  align-items: start;
}

#nz-shipping-map .map-card {
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  overflow: hidden;
}

#nz-shipping-map .map-stage {
  width: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#nz-shipping-map .nz-map {
  width: 100%;
  height: auto;
  display: block;
  max-width: none;
  overflow: visible;
}

#nz-shipping-map .region {
  cursor: pointer;
  transition: transform .22s ease, filter .22s ease, opacity .22s ease;
  transform-box: fill-box;
  transform-origin: center;
}

#nz-shipping-map .region:hover {
  filter: brightness(1.06);
}

#nz-shipping-map .region.active {
  transform: translateY(-8px);
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, .18));
}

#nz-shipping-map .region.dimmed {
  opacity: .72;
}

#nz-shipping-map .info-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  position: sticky;
  top: 20px;
}

#nz-shipping-map .zone-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  color: #fff;
  background: #183153;
  margin-bottom: 14px;
}

#nz-shipping-map .info-card h2 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.2;
}

#nz-shipping-map .info-card p {
  margin: 0 0 16px;
  line-height: 1.6;
  color: #5f6f85;
}

#nz-shipping-map .apply-help {
  margin: 0;
  font-size: 14px;
  color: #5f6f85;
  text-align: center;
}

#nz-shipping-map .shipping-top-banner {
  margin: 0 0 28px;
}

#nz-shipping-map .shipping-top-inner {
  background: linear-gradient(180deg, #f4f4f4 0%, #ededed 100%);
  border-radius: 34px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
  border: 1px solid #e7e7e7;
}

#nz-shipping-map .shipping-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: center;
  margin-bottom: 20px;
}

#nz-shipping-map .shipping-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background: transparent;
  border-radius: 24px;
  overflow: hidden;
}

#nz-shipping-map .shipping-hero-image img {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: block;
  object-fit: contain;
}

#nz-shipping-map .shipping-hero-summary {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#nz-shipping-map .shipping-summary-top {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

#nz-shipping-map .shipping-price-card {
  width: 220px;
  background: #fff;
  border: 2px solid #2e2e2e;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .06);
  flex: 0 0 auto;
}

#nz-shipping-map .shipping-price-card-top {
  text-align: center;
  padding: 18px 12px 14px;
  font-size: 38px;
  font-weight: 400;
  color: #111;
  border-bottom: 2px solid #2e2e2e;
  line-height: 1;
  background: #fff;
}

#nz-shipping-map .shipping-price-card-bottom {
  text-align: center;
  padding: 18px 12px 20px;
  font-size: 82px;
  font-weight: 900;
  color: #d40000;
  line-height: .95;
  background: #fff;
  letter-spacing: -0.06em;
}

#nz-shipping-map .shipping-service-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: .95;
  color: #000;
  flex: 0 0 auto;
}

#nz-shipping-map .shipping-service-copy strong {
  font-size: 86px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

#nz-shipping-map .shipping-service-copy span {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

#nz-shipping-map .shipping-main-notice {
  background: rgba(255, 255, 255, .65);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, .06);
}

#nz-shipping-map .shipping-main-notice-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.35;
  color: #1d1d1d;
  word-break: keep-all;
  letter-spacing: -0.03em;
}

#nz-shipping-map .shipping-main-notice-title .check {
  color: #ff2d2d;
  font-size: 46px;
  line-height: 1;
  flex: 0 0 auto;
}

#nz-shipping-map .shipping-main-notice-title strong {
  color: #a80000;
  font-weight: 900;
}

#nz-shipping-map .shipping-main-notice-line {
  height: 2px;
  background: rgba(0, 0, 0, .6);
  margin: 18px 0 16px;
}

#nz-shipping-map .shipping-main-notice-desc {
  text-align: center;
}

#nz-shipping-map .shipping-main-notice-desc p {
  margin: 4px 0;
  font-size: 22px;
  line-height: 1.5;
  color: #222;
  word-break: keep-all;
}

#nz-shipping-map .shipping-main-notice-desc strong {
  color: #a80000;
  font-weight: 900;
}

#nz-shipping-map .shipping-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

#nz-shipping-map .shipping-info-box {
  position: relative;
  background: rgba(255, 255, 255, .55);
  border-radius: 24px;
  min-height: 215px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .05);
  overflow: hidden;
}

#nz-shipping-map .shipping-info-box h3 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  color: #111;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

#nz-shipping-map .shipping-info-box p {
  margin: 4px 0;
  font-size: 22px;
  line-height: 1.45;
  color: #222;
  word-break: keep-all;
}

#nz-shipping-map .shipping-info-box strong {
  font-weight: 900;
}

#nz-shipping-map .shipping-info-box small {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.55;
  color: #333;
  word-break: keep-all;
}

#nz-shipping-map .shipping-info-box--brand {
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, .55) 0%, rgba(255, 255, 255, .42) 100%);
}

#nz-shipping-map .brand-copy {
  font-size: 46px;
  line-height: 1.02;
  font-weight: 900;
  color: #0c48ad;
  font-style: italic;
  letter-spacing: -0.05em;
  text-shadow: 0 5px 10px rgba(0, 0, 0, .08);
}

#nz-shipping-map .event-ribbon {
  position: absolute;
  top: 18px;
  right: -52px;
  width: 180px;
  text-align: center;
  background: #ff1200;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  padding: 12px 0;
  transform: rotate(45deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
  letter-spacing: -0.02em;
  z-index: 2;
}

#nz-shipping-map .zone-multi-stack {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

#nz-shipping-map .zone-card-v2 {
  background: #ffffff;
  border: 1px solid #d7e2ee;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .06);
}

#nz-shipping-map .zone-card-v2--empty {
  background: #f8fafc;
}

#nz-shipping-map .zone-card-v2__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

#nz-shipping-map .zone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .03em;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .14);
  flex-shrink: 0;
}

#nz-shipping-map .zone-card-v2__title {
  font-size: 22px;
  font-weight: 900;
  color: #17345f;
  line-height: 1.25;
  letter-spacing: -.02em;
}

#nz-shipping-map .zone-card-v2__desc {
  margin: 0 0 16px;
  color: #5f6f86;
  font-size: 15px;
  line-height: 1.7;
}

#nz-shipping-map .zone-card-v2__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
}

#nz-shipping-map .zone-card-v2__grid--two {
  grid-template-columns: 1fr 1fr;
}

#nz-shipping-map .zone-box {
  background: #eef3f8;
  border: 1px solid #ccd8e6;
  border-radius: 18px;
  min-height: 120px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#nz-shipping-map .zone-box--full {
  min-height: 74px;
}

#nz-shipping-map .zone-box__label {
  font-size: 14px;
  font-weight: 800;
  color: #7b8798;
  margin-bottom: 8px;
  line-height: 1.3;
}

#nz-shipping-map .zone-box__value {
  font-size: 22px;
  font-weight: 900;
  color: #17345f;
  line-height: 1.35;
  letter-spacing: -.03em;
  word-break: keep-all;
}

#nz-shipping-map .zone-box__value--price {
  font-size: 18px;
}

#nz-shipping-map .zone-apply-btn {
  width: 100%;
  border: 0;
  border-radius: 18px;
  margin-top: 12px;
  padding: 19px 18px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

#nz-shipping-map .zone-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(15, 23, 42, .14);
}

#nz-shipping-map .zone-apply-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}





#nz-shipping-map .map-stage {
  overflow: hidden;
}

#nz-shipping-map .map-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

#nz-shipping-map .map-watermark img {
  width: 42%;
  max-width: 360px;
  min-width: 220px;
  opacity: 0.1;
  filter: grayscale(100%);
  transform: rotate(0deg);
  user-select: none;
}

#nz-shipping-map .nz-map,
#nz-shipping-map svg {
  position: relative;
  z-index: 2;
}



@media (max-width: 980px) {
  #nz-shipping-map .map-watermark img {
    width: 58%;
    max-width: 300px;
    min-width: 240px;
    opacity: 0.1;
    transform: rotate(0deg);
  }
}

@media (max-width: 560px) {
  #nz-shipping-map .map-watermark img {
    width: 64%;
    max-width: 220px;
    min-width: 120px;
    opacity: 0.06;
    transform: rotate(-0deg);
  }
}






@media (max-width: 1180px) {
  #nz-shipping-map .shipping-hero {
    grid-template-columns: 1fr;
  }

  #nz-shipping-map .shipping-hero-image {
    min-height: auto;
  }

  #nz-shipping-map .shipping-service-copy strong {
    font-size: 64px;
  }

  #nz-shipping-map .shipping-service-copy span {
    font-size: 32px;
  }

  #nz-shipping-map .shipping-main-notice-title {
    font-size: 28px;
  }
}

@media (max-width: 980px) {
  #nz-shipping-map .layout {
    grid-template-columns: 1fr;
  }

  #nz-shipping-map .info-card {
    position: static;
  }

  #nz-shipping-map .shipping-top-inner {
    padding: 18px;
    border-radius: 24px;
  }

  #nz-shipping-map .shipping-summary-top {
    gap: 14px;
  }

  #nz-shipping-map .shipping-price-card {
    width: 180px;
    border-radius: 22px;
  }

  #nz-shipping-map .shipping-price-card-top {
    font-size: 30px;
    padding: 14px 10px 12px;
  }

  #nz-shipping-map .shipping-price-card-bottom {
    font-size: 64px;
    padding: 14px 10px 16px;
  }

  #nz-shipping-map .shipping-service-copy {
    align-items: center;
    text-align: center;
  }

  #nz-shipping-map .shipping-service-copy strong {
    font-size: 52px;
  }

  #nz-shipping-map .shipping-service-copy span {
    font-size: 28px;
  }

  #nz-shipping-map .shipping-main-notice {
    padding: 18px 16px;
    border-radius: 18px;
  }

  #nz-shipping-map .shipping-main-notice-title {
    font-size: 20px;
    gap: 10px;
  }

  #nz-shipping-map .shipping-main-notice-title .check {
    font-size: 32px;
  }

  #nz-shipping-map .shipping-main-notice-desc p {
    font-size: 16px;
  }

  #nz-shipping-map .shipping-info-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #nz-shipping-map .shipping-info-box {
    min-height: auto;
    padding: 22px 16px;
    border-radius: 18px;
  }

  #nz-shipping-map .shipping-info-box h3 {
    font-size: 26px;
  }

  #nz-shipping-map .shipping-info-box p {
    font-size: 18px;
  }

  #nz-shipping-map .shipping-info-box small {
    font-size: 13px;
  }

  #nz-shipping-map .brand-copy {
    font-size: 34px;
  }

  #nz-shipping-map .zone-card-v2__title {
    font-size: 20px;
  }

  #nz-shipping-map .zone-card-v2__grid--two {
    grid-template-columns: 1fr 1fr;
  }

  #nz-shipping-map .zone-box {
    min-height: 104px;
  }

  #nz-shipping-map .zone-box__value {
    font-size: 18px;
  }

  #nz-shipping-map .zone-box__value--price {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  #nz-shipping-map {
    padding: 6px 0 12px;
  }

  #nz-shipping-map .wrap {
    padding: 6px;
  }

  #nz-shipping-map .map-card {
    padding: 2px;
    border-radius: 14px;
  }

  #nz-shipping-map .nz-map {
    width: calc(100% + 34px);
    max-width: calc(100% + 34px);
    margin-left: -17px;
    margin-right: -17px;
  }

  #nz-shipping-map .zone-card-v2__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  #nz-shipping-map .zone-card-v2__grid--two {
    grid-template-columns: 1fr 1fr;
  }

  #nz-shipping-map .zone-box {
    padding: 16px 12px;
  }

  #nz-shipping-map .zone-box__value {
    font-size: 16px;
  }

  #nz-shipping-map .event-ribbon {
    top: 16px;
    right: -58px;
    width: 170px;
    font-size: .92rem;
    padding: 11px 0;
  }
}



.pengo-special-service {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, .75), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(18, 91, 86, .08), transparent 26%),
    linear-gradient(180deg, #f7faf9 0%, #eef4f2 100%);
}

.special-shell {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.special-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  opacity: .35;
}

.special-bg-glow-1 {
  width: 260px;
  height: 260px;
  background: rgba(255, 181, 84, .35);
  left: -70px;
  top: 140px;
}

.special-bg-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(18, 91, 86, .12);
  right: -90px;
  bottom: 80px;
}

.special-head {
  max-width: 860px;
  margin: 0 auto 54px;
  text-align: center;
}

.special-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(10, 65, 61, .10);
  color: #0f5b56;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.special-title {
  margin: 18px 0 16px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -.03em;
  color: #103b38;
}

.special-subtitle {
  margin: 0;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.9;
  color: #5d706d;
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.special-card {
  position: relative;
  min-height: 500px;
  padding: 34px 28px 30px;
  border-radius: 34px;
  background: rgba(255, 255, 255, .90);
  border: 1px solid rgba(16, 59, 56, .08);
  box-shadow:
    0 20px 50px rgba(18, 35, 33, .08),
    inset 0 1px 0 rgba(255, 255, 255, .8);
  transition: transform .3s ease, box-shadow .3s ease;
}

.special-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 28px 60px rgba(18, 35, 33, .14),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}

.special-number {
  position: absolute;
  top: -22px;
  left: 28px;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: rgba(15, 91, 86, .10);
  letter-spacing: -.04em;
  pointer-events: none;
}

.special-icon {
  display: flex;
  justify-content: center;
  margin: 22px 0 26px;
}

.icon-circle {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, #f3fbf8 0%, #dff2ec 100%);
  border: 1px solid rgba(15, 91, 86, .10);
  color: #0f5b56;
  font-size: 32px;
  font-weight: 900;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .9),
    0 14px 30px rgba(15, 91, 86, .08);
}

.special-card-body {
  text-align: center;
}

.special-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef8f4;
  color: #0f5b56;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 18px;
}

.special-card h3 {
  margin: 0 0 18px;
  font-size: clamp(28px, 2vw, 42px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -.04em;
  color: #0f4d49;
}

.special-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.85;
  color: #556562;
  word-break: keep-all;
}

.special-bottom {
  margin-top: 34px;
  padding: 24px 26px;
  text-align: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(16, 59, 56, .08);
  color: #49615d;
  font-size: 17px;
  line-height: 1.85;
  box-shadow: 0 12px 30px rgba(18, 35, 33, .05);
}

.reveal-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .special-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }

  .special-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .pengo-special-service {
    padding: 90px 16px;
  }

  .special-title {
    font-size: 34px;
  }

  .special-card {
    padding: 30px 22px 26px;
    border-radius: 26px;
  }

  .special-number {
    font-size: 58px;
    top: -14px;
    left: 20px;
  }

  .icon-circle {
    width: 92px;
    height: 92px;
    font-size: 26px;
  }

  .special-card h3 {
    font-size: 24px;
  }

  .special-card p {
    font-size: 16px;
  }

  .special-bottom {
    font-size: 15px;
    padding: 20px 18px;
  }
}



.pengo-declaration-section {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .05), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(255, 180, 90, .08), transparent 26%),
    linear-gradient(135deg, #08263e 0%, #0c3856 48%, #0a2740 100%);
  color: #fff;
}

.declaration-shell {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

.declaration-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .25;
  pointer-events: none;
}

.declaration-bg-glow-1 {
  width: 320px;
  height: 320px;
  background: #ff9f43;
  left: -80px;
  bottom: 40px;
}

.declaration-bg-glow-2 {
  width: 280px;
  height: 280px;
  background: #6fd3ff;
  right: -60px;
  top: 120px;
}

.declaration-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 42px;
}

.declaration-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  color: #ffd9a4;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(8px);
}

.declaration-title {
  margin: 18px 0 16px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -.03em;
}

.declaration-subtitle {
  margin: 0;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.8;
  color: rgba(255, 255, 255, .82);
}

.declaration-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 34px;
}

.declaration-tab {
  appearance: none;
  border: none;
  cursor: pointer;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(8px);
  transition: .25s ease;
}

.declaration-tab:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .12);
}

.declaration-tab.active {
  color: #0b2b43;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.declaration-main {
  display: grid;
  grid-template-columns: minmax(320px, 470px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.declaration-image-card {
  position: sticky;
  top: 30px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .28);
  backdrop-filter: blur(10px);
}

.declaration-image-card img {
  display: block;
  width: 100%;
  height: auto;
}

.declaration-image-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(9, 31, 47, .78);
  border: 1px solid rgba(255, 255, 255, .14);
  font-size: 13px;
  font-weight: 800;
  color: #ffe0b5;
  backdrop-filter: blur(8px);
}

.declaration-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.declaration-message-card,
.declaration-roadmap,
.declaration-progress-card,
.declaration-closing,
.promise-mini-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
}

.declaration-message-card {
  padding: 32px;
}

.message-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  color: #ffcf8a;
  margin-bottom: 12px;
}

.message-title {
  margin: 0 0 14px;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 900;
  letter-spacing: -.03em;
}

.message-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .85);
}

.declaration-promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.promise-mini-card {
  padding: 24px 22px;
}

.mini-label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .68);
}

.promise-mini-card strong {
  font-size: 19px;
  line-height: 1.6;
}

.declaration-roadmap {
  padding: 28px;
}

.roadmap-head h4 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.03em;
}

.roadmap-head p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .76);
  line-height: 1.8;
}

.roadmap-table {
  display: grid;
  gap: 12px;
}

.roadmap-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .08);
}

.roadmap-row-head {
  background: rgba(255, 255, 255, .08);
  font-weight: 800;
  color: #dceeff;
}

.roadmap-row:not(.roadmap-row-head) {
  transition: transform .25s ease, background .25s ease;
}

.roadmap-row:not(.roadmap-row-head):hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .08);
}

.air-price,
.sea-price {
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 900;
  color: #ffe3b5;
}

.milestone {
  text-align: center;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 900;
  color: #fff;
}

.declaration-progress-card {
  padding: 28px;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 16px;
}

.progress-label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .68);
}

.progress-value {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.03em;
}

.progress-goal {
  font-size: 15px;
  color: rgba(255, 255, 255, .82);
}

.progress-bar {
  position: relative;
  height: 14px;
  background: rgba(255, 255, 255, .12);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 14px;
}

.progress-fill {
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb86c 0%, #ffd79a 50%, #fff2d9 100%);
  box-shadow: 0 0 24px rgba(255, 200, 120, .45);
  transition: width 1.1s cubic-bezier(.2, .8, .2, 1);
}

.progress-caption {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.8;
}

.declaration-closing {
  padding: 30px 28px;
  text-align: center;
}

.closing-main {
  margin: 0 0 14px;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: -.03em;
}

.closing-sub {
  margin: 0;
  font-size: 17px;
  color: #ffe0b0;
  font-weight: 700;
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .declaration-main {
    grid-template-columns: 1fr;
  }

  .declaration-image-card {
    position: relative;
    top: auto;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .pengo-declaration-section {
    padding: 90px 16px;
  }

  .declaration-promise-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .progress-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .declaration-message-card,
  .declaration-roadmap,
  .declaration-progress-card,
  .declaration-closing {
    padding: 22px;
    border-radius: 22px;
  }
}



.zone-section {
  background: linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%);
}

.zone-head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 48px;
}

.zone-map-wrap {
  max-width: 1220px;
  margin: 0 auto;
}

.zone-map-board {
  position: relative;
  min-height: 1100px;
  border-radius: 34px;
  padding: 40px;
  background:
    radial-gradient(circle at top right, rgba(255, 107, 43, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  overflow: hidden;
}

.zone-map-image {
  position: absolute;
  inset: 90px 220px 90px 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.zone-map-image img {
  width: 100%;
  max-width: 620px;
  height: auto;
  opacity: 0.96;
  filter: drop-shadow(0 14px 28px rgba(15, 23, 42, 0.10));
}

.zone-card {
  position: absolute;
  width: 290px;
  z-index: 5;
}

.zone-card-body {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 22px;
  padding: 24px 22px 20px;
  border: 2px solid currentColor;
  box-shadow:
    0 18px 36px rgba(15, 23, 42, 0.16),
    0 8px 0 rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(8px);
}

.zone-label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
  margin-bottom: -8px;
  position: relative;
  z-index: 6;
}

.zone-label-ko {
  display: inline-block;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  padding: 10px 14px;
  border-radius: 12px 12px 4px 4px;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.18);
}

.zone-label-en {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

.zone-card h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 900;
  color: #111827;
  line-height: 1.15;
}

.zone-area {
  margin: 12px 0 0;
  color: #4b5563;
  line-height: 1.6;
  font-size: 1rem;
  min-height: 48px;
}

.zone-divider {
  height: 1px;
  background: rgba(17, 24, 39, 0.18);
  margin: 18px 0 16px;
}

.zone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  text-align: center;
}

.zone-mini-title {
  display: block;
  color: #3b82f6;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.zone-grid strong {
  display: block;
  color: #111827;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.35;
}

.zone-purple {
  color: #d116ff;
  top: 50px;
  left: 26px;
}

.zone-purple .zone-label-ko {
  background: #d116ff;
}

.zone-blue {
  color: #2a53ff;
  top: 34px;
  right: 26px;
}

.zone-blue .zone-label-ko {
  background: #2a53ff;
}

.zone-green {
  color: #12a34a;
  left: 34px;
  top: 430px;
}

.zone-green .zone-label-ko {
  background: #12a34a;
}

.zone-grey {
  color: #9ca3af;
  right: 62px;
  top: 560px;
}

.zone-grey .zone-label-ko {
  background: #8f949c;
}

.zone-orange {
  color: #f2b420;
  left: 320px;
  bottom: 34px;
}

.zone-orange .zone-label-ko {
  background: #f2b420;
}

.zone-line {
  position: absolute;
  z-index: 2;
  height: 3px;
  border-radius: 999px;
  transform-origin: left center;
  opacity: 0.9;
}

.line-purple {
  background: #d116ff;
  width: 175px;
  left: 298px;
  top: 180px;
  transform: rotate(0deg);
}

.line-blue {
  background: #2a53ff;
  width: 150px;
  right: 300px;
  top: 170px;
  transform: rotate(135deg);
}

.line-green {
  background: #12a34a;
  width: 190px;
  left: 280px;
  top: 610px;
  transform: rotate(-28deg);
}

.line-grey {
  background: #9ca3af;
  width: 150px;
  right: 268px;
  top: 690px;
  transform: rotate(147deg);
}

.line-orange {
  background: #f2b420;
  width: 148px;
  left: 506px;
  bottom: 226px;
  transform: rotate(122deg);
}

.zone-note {
  margin-top: 18px;
  color: #64748b;
  font-size: 0.95rem;
  text-align: right;
}

@media (max-width: 1180px) {
  .zone-map-board {
    min-height: auto;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .zone-map-image,
  .zone-line {
    display: none;
  }

  .zone-card {
    position: relative;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100%;
    max-width: none;
  }

  .zone-label-wrap {
    margin-left: 10px;
  }

  .zone-orange {
    order: 5;
  }
}

@media (max-width: 720px) {
  .zone-map-board {
    padding: 18px;
    border-radius: 24px;
  }

  .zone-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .zone-card h3 {
    font-size: 1.55rem;
  }

  .zone-label-wrap {
    flex-wrap: wrap;
    gap: 8px;
  }

  .zone-label-en {
    font-size: 0.85rem;
  }

  .zone-card-body {
    padding: 20px 18px 18px;
  }

  .zone-area {
    min-height: auto;
  }

  .zone-note {
    text-align: left;
  }
}



:root {
  --sea-bg-1: #4a005d;
  --sea-bg-2: #7c009b;
  --sea-bg-3: #2f0b57;
  --sea-orange: #ffb341;
  --sea-orange-deep: #ff9f1a;
  --sea-white: #ffffff;
  --sea-text-soft: rgba(255, 255, 255, 0.82);
  --sea-text-muted: rgba(255, 255, 255, 0.68);
  --sea-card: rgba(255, 255, 255, 0.10);
  --sea-card-border: rgba(255, 255, 255, 0.18);
  --sea-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

.sea-hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 179, 65, 0.16), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, var(--sea-bg-1) 0%, var(--sea-bg-2) 48%, var(--sea-bg-3) 100%);
  color: var(--sea-white);
  padding: 110px 24px;
}

.sea-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.025) 0px,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 90px);
  pointer-events: none;
}

.sea-hero-shell {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.sea-copy {
  position: relative;
  z-index: 2;
}

.sea-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--sea-orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.sea-line {
  display: inline-block;
  width: 42px;
  height: 2px;
  background: var(--sea-orange);
  border-radius: 999px;
}

.sea-title {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.sea-title span {
  color: var(--sea-orange);
  text-shadow: 0 8px 30px rgba(255, 179, 65, 0.25);
}

.sea-lead {
  margin: 28px 0 0;
  padding-left: 20px;
  border-left: 4px solid var(--sea-orange);
  font-size: clamp(20px, 2.2vw, 29px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.sea-lead strong {
  color: #fff;
  font-weight: 900;
}

.sea-desc {
  margin-top: 28px;
  display: grid;
  gap: 12px;
  color: var(--sea-text-soft);
  font-size: 18px;
  line-height: 1.9;
}

.sea-desc .highlight {
  color: var(--sea-orange);
  font-size: 1.2em;
  font-weight: 900;
}

.sea-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.sea-feature-card {
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  background: var(--sea-card);
  border: 1px solid var(--sea-card-border);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.16);
}

.sea-feature-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 24px;
  background: rgba(255, 179, 65, 0.16);
  border: 1px solid rgba(255, 179, 65, 0.22);
  flex-shrink: 0;
}

.sea-feature-card .label {
  font-size: 13px;
  color: var(--sea-text-muted);
  margin-bottom: 4px;
}

.sea-feature-card .value {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.sea-visual-wrap {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.sea-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
}

.sea-glow-1 {
  width: 380px;
  height: 380px;
  background: rgba(255, 179, 65, 0.18);
  right: 40px;
  top: 60px;
}

.sea-glow-2 {
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.12);
  left: 70px;
  bottom: 100px;
}

.sea-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.sea-ring-1 {
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.sea-ring-2 {
  width: 410px;
  height: 410px;
  border: 1px dashed rgba(255, 179, 65, 0.35);
}

.sea-image-card {
  position: relative;
  width: min(100%, 560px);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 3;
  animation: seaFloat 4.8s ease-in-out infinite;
}

.sea-main-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.28));
}

.sea-badge {
  position: absolute;
  z-index: 5;
  border-radius: 22px;
  padding: 14px 18px;
  backdrop-filter: blur(14px);
  box-shadow: var(--sea-shadow);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.sea-badge-top {
  top: 90px;
  right: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #1d2951;
  min-width: 165px;
}

.sea-badge-bottom {
  left: 10px;
  bottom: 110px;
  background: rgba(27, 17, 52, 0.56);
  color: #fff;
  min-width: 180px;
}

.sea-badge .small {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.sea-badge .big {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.sea-badge-top .big span {
  color: var(--sea-orange-deep);
  font-size: 72px;
  line-height: 1;
}

.sea-badge-bottom .big {
  font-size: 22px;
}

.sea-wave {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: 460px;
  height: 90px;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12), transparent 35%),
    radial-gradient(circle at 80% 50%, rgba(255, 179, 65, 0.15), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: 50%;
  filter: blur(2px);
  z-index: 1;
  opacity: 0.9;
}

@keyframes seaFloat {
  0% {
    transform: translateY(0px);
  }

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

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

@media (max-width: 1100px) {
  .sea-hero-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sea-copy {
    text-align: center;
  }

  .sea-eyebrow {
    justify-content: center;
  }

  .sea-lead {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .sea-desc {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .sea-feature-row {
    justify-content: center;
  }

  .sea-visual-wrap {
    min-height: 560px;
    margin-top: 10px;
  }

  .sea-badge-top {
    right: 30px;
  }

  .sea-badge-bottom {
    left: 30px;
    bottom: 90px;
  }
}

@media (max-width: 767px) {
  .sea-hero-section {
    padding: 70px 18px;
  }

  .sea-title {
    font-size: 42px;
  }

  .sea-lead {
    font-size: 19px;
    line-height: 1.65;
    padding-left: 16px;
  }

  .sea-desc {
    font-size: 15px;
    line-height: 1.8;
  }

  .sea-feature-row {
    flex-direction: column;
    align-items: stretch;
  }

  .sea-feature-card {
    width: 100%;
    min-width: auto;
  }

  .sea-visual-wrap {
    min-height: 430px;
  }

  .sea-main-image {
    max-width: 320px;
  }

  .sea-ring-1 {
    width: 330px;
    height: 330px;
  }

  .sea-ring-2 {
    width: 260px;
    height: 260px;
  }

  .sea-badge-top {
    top: 20px;
    right: 0;
    padding: 12px 14px;
    min-width: 130px;
  }

  .sea-badge-top .big {
    font-size: 18px;
  }

  .sea-badge-top .big span {
    font-size: 30px;
  }

  .sea-badge-bottom {
    left: 0;
    bottom: 45px;
    padding: 12px 14px;
    min-width: 150px;
  }

  .sea-badge-bottom .big {
    font-size: 17px;
  }

  .sea-wave {
    width: 280px;
    height: 58px;
    bottom: 20px;
  }
}



.sea-adv-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.sea-adv-section .section-shell {
  position: relative;
  z-index: 2;
}

/* 배+캐릭터 이미지 */
.sea-adv-ship {
  position: absolute;
  right: -200px;
  bottom: -30px;
  width: 580px;
  max-width: 45vw;
  z-index: 99;
  pointer-events: none;
  opacity: .98;
  filter: drop-shadow(0 28px 40px rgba(15, 23, 42, .16));
}

/* 카드가 이미지와 자연스럽게 섞이도록 */
.sea-adv-section .feature-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(15, 23, 42, .05);
  box-shadow: 0 18px 35px rgba(15, 23, 42, .08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.sea-adv-section .feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, .12);
}

/* 살짝 해상 느낌 배경 포인트 */
.sea-adv-section::before {
  content: "";
  position: absolute;
  right: 120px;
  bottom: 80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, .08) 0%, rgba(59, 130, 246, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.sea-adv-section::after {
  content: "";
  position: absolute;
  left: -120px;
  top: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 43, .08) 0%, rgba(255, 107, 43, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .sea-adv-ship {
    width: 520px;
    right: -90px;
    bottom: -10px;
    max-width: 48vw;
    opacity: .9;
  }
}

@media (max-width: 900px) {
  .sea-adv-ship {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    margin: 0 auto 28px;
    width: 420px;
    max-width: 88%;
  }

  .sea-adv-section .section-shell {
    display: block;
  }
}

@media (max-width: 640px) {
  .sea-adv-ship {
    width: 340px;
    margin: 0 auto 22px;
  }

  .sea-adv-section .feature-card {
    padding: 22px 18px;
  }

  .sea-adv-section h3 {
    font-size: 1.55rem !important;
  }
}




/* 슬라이드페이지 */

/* =========================================================
   TOP HERO PROMO SLIDER
========================================================= */
.hero-promo-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

.hero-promo-track {
  position: relative;
  width: 100%;
  height: 600px;
}

.hero-promo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: opacity .45s ease, visibility .45s ease;
}

.hero-promo-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hero-promo-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, .10) 0%,
      rgba(0, 0, 0, .14) 55%,
      rgba(0, 0, 0, .18) 100%);
  pointer-events: none;
}

.hero-promo-content {
  position: absolute;
  left: clamp(24px, 5vw, 80px);
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 680px;
  z-index: 3;
  color: #fff;
}

.hero-promo-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ff8b3d;
}

.hero-promo-content h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.03em;
  color: #fff;
}

.hero-promo-content p {
  margin: 20px 0 0;
  max-width: 620px;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.7;
  color: rgba(255, 255, 255, .85);
}

.hero-promo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #ff6b2b;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(255, 107, 43, .28);
}

.hero-promo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: rgba(8, 19, 30, .45);
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  cursor: pointer;
  transition: .25s ease;
}

.hero-promo-nav:hover {
  background: rgba(8, 19, 30, .7);
}

.hero-promo-prev {
  left: 18px;
}

.hero-promo-next {
  right: 18px;
}

.hero-promo-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-promo-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, .42);
  cursor: pointer;
  transition: .25s ease;
}

.hero-promo-dot.is-active {
  width: 28px;
  background: #fff;
}

@media (max-width: 1024px) {
  .hero-promo-track {
    height: 420px;
  }

  .hero-promo-content {
    left: 24px;
    right: 24px;
    max-width: none;
  }

  .hero-promo-content h2 {
    font-size: 38px;
  }

  .hero-promo-content p {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-promo-nav {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 768px) {
  .hero-promo-slider {
    background: transparent;
    overflow: visible;
  }

  .hero-promo-track {
    height: auto;
  }

  .hero-promo-slide {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    overflow: visible;
  }

  .hero-promo-slide.is-active {
    display: block;
    pointer-events: auto;
  }

  .hero-promo-slide img {
    width: 100%;
    height: auto;
    object-fit: unset;
    object-position: center center;
    background: transparent;
  }

  .hero-promo-overlay {
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, .04) 0%,
        rgba(0, 0, 0, .08) 60%,
        rgba(0, 0, 0, .12) 100%);
  }

  .hero-promo-content {
    left: 18px;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
  }

  .hero-promo-content h2 {
    font-size: 30px;
  }

  .hero-promo-content p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-promo-cta {
    margin-top: 20px;
    padding: 12px 18px;
    font-size: 14px;
  }

  .hero-promo-nav {
    width: 40px;
    height: 40px;
  }

  .hero-promo-prev {
    left: 8px;
  }

  .hero-promo-next {
    right: 8px;
  }

  .hero-promo-dots {
    bottom: 10px;
    gap: 8px;
  }

  .hero-promo-dot {
    width: 8px;
    height: 8px;
  }

  .hero-promo-dot.is-active {
    width: 22px;
  }
}

@media (max-width: 480px) {
  .hero-promo-nav {
    width: 36px;
    height: 36px;
  }

  .hero-promo-prev {
    left: 6px;
  }

  .hero-promo-next {
    right: 6px;
  }
}












/* =========================================================
   WEEKLY SCHEDULE MOBILE SCROLL FIX- 스케쥴 옆으로 흐르기
========================================================= */
.weekly-scroll-x {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.weekly-scroll-inner {
  min-width: 980px;
}

.weekly-days-head {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  background: #ff6b2b;
  color: #fff;
  text-align: center;
  font-weight: 900;
  font-size: 15px;
}

.weekly-days-body {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  text-align: center;
  border-top: 1px solid #e2e8f0;
}

.weekly-day-card {
  min-height: 180px;
  padding: 24px 16px;
  border-right: 1px solid #f1f5f9;
}

.weekly-day-card.is-last {
  border-right: none;
}

@media (max-width: 980px) {
  .weekly-board {
    overflow: hidden;
  }

  .weekly-scroll-x {
    border-top: 1px solid #e5e7eb;
  }

  .weekly-scroll-inner {
    min-width: 980px;
  }

  .weekly-days-head {
    font-size: 14px;
  }

  .weekly-day-card {
    min-height: 170px;
    padding: 20px 14px;
  }
}

@media (max-width: 640px) {
  .weekly-scroll-inner {
    min-width: 910px;
  }

  .weekly-day-card {
    min-height: 160px;
    padding: 18px 12px;
  }

  .weekly-day-card .text-2xl,
  .weekly-day-card .md\:text-3xl {
    font-size: 1.35rem !important;
    line-height: 1.3;
  }
}














/* =========================================================
   PENGO APRIL BIG EVENT - 4월 빅이벤트
========================================================= */
.pengo-april-event {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 12, 28, .88) 0%, rgba(7, 15, 34, .76) 38%, rgba(9, 16, 28, .52) 100%),
    url("img/april-event-bg.jpg") center center / cover no-repeat;
}

.april-event-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 214, 94, .12) 0%, transparent 28%),
    radial-gradient(circle at 76% 35%, rgba(255, 80, 80, .10) 0%, transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, .03) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.april-event-flash {
  position: absolute;
  width: 2px;
  height: 340px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(173, 216, 255, .95), rgba(255, 255, 255, 0));
  opacity: .35;
  filter: blur(1px);
  transform: rotate(18deg);
  pointer-events: none;
}

.april-event-flash.flash-1 {
  left: 38%;
  top: 20px;
}

.april-event-flash.flash-2 {
  left: 52%;
  top: 110px;
  height: 280px;
  transform: rotate(-12deg);
}

.april-event-shell {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 32px;
}

.april-event-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.april-event-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffcc00;
  color: #181818;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 0 12px 28px rgba(255, 204, 0, .22);
}

.april-event-side-note {
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, .76);
  letter-spacing: .12em;
}

.april-event-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
}

.april-event-kicker {
  margin: 0 0 14px;
  color: #ff6b2b;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.april-event-title {
  margin: 0;
  font-size: clamp(2.1rem, 4.5vw, 4.3rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.04em;
  text-shadow: 0 4px 22px rgba(0, 0, 0, .26);
}

.april-event-title span {
  color: #ffe38a;
}

.april-event-subtitle {
  margin: 24px 0 0;
  font-size: 1.2rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, .9);
  max-width: 800px;
}

.april-event-subtitle strong {
  color: #ffd25b;
  font-weight: 900;
}

.april-event-alert {
  margin-top: 28px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  padding: 24px 24px 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .16);
}

.april-alert-head {
  font-size: 20px;
  font-weight: 900;
  color: #ffd38b;
  margin-bottom: 12px;
}

.april-event-alert ul {
  margin: 0;
  padding-left: 20px;
}

.april-event-alert li {
  margin: 8px 0;
  color: rgba(255, 255, 255, .88);
  line-height: 1.8;
  font-size: 16px;
}

.april-event-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.april-event-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  transition: .22s ease;
}

.april-event-btn.primary {
  background: #ff6b2b;
  color: #fff;
  box-shadow: 0 14px 34px rgba(255, 107, 43, .24);
}

.april-event-btn.primary:hover {
  transform: translateY(-2px);
}

.april-event-btn.secondary {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
}

.april-event-btn.secondary:hover {
  background: rgba(255, 255, 255, .14);
}

.april-event-right {
  position: relative;
}

.april-price-board {
  position: relative;
  background: rgba(13, 23, 41, .72);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 30px;
  padding: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

.april-price-head {
  text-align: center;
  margin-bottom: 20px;
}

.april-price-head span {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.april-price-head strong {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
}

.april-price-list {
  display: grid;
  gap: 14px;
}

.april-price-card {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr 150px;
  align-items: center;
  gap: 16px;
  padding: 18px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
}

.april-price-card.highlight {
  background: linear-gradient(90deg, rgba(255, 107, 43, .16) 0%, rgba(255, 204, 0, .08) 100%);
  border-color: rgba(255, 204, 0, .3);
}

.april-price-mini {
  font-size: 44px;
  font-weight: 900;
  color: rgba(255, 255, 255, .22);
  text-decoration: line-through;
  letter-spacing: -.05em;
  text-align: center;
}

.april-price-label {
  font-size: 24px;
  font-weight: 900;
  color: #ffe2a4;
  line-height: 1.2;
}

.april-price-main {
  font-size: 72px;
  font-weight: 900;
  color: #ffcc00;
  line-height: .95;
  letter-spacing: -.07em;
  text-align: right;
  text-shadow: 0 8px 24px rgba(255, 204, 0, .16);
}

.april-price-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.april-price-foot p {
  margin: 6px 0;
  color: rgba(255, 255, 255, .82);
  line-height: 1.75;
  font-size: 15px;
}

.april-event-stamp {
  position: absolute;
  right: -8px;
  top: -16px;
  transform: rotate(10deg);
  padding: 14px 20px;
  border: 3px solid #ff1d1d;
  color: #ff1d1d;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
  background: rgba(0, 0, 0, .18);
  box-shadow: 0 14px 26px rgba(0, 0, 0, .2);
}

@media (max-width: 1100px) {
  .april-event-grid {
    grid-template-columns: 1fr;
  }

  .april-event-right {
    margin-top: 6px;
  }
}

@media (max-width: 768px) {
  .pengo-april-event {
    background:
      linear-gradient(180deg, rgba(5, 12, 28, .92) 0%, rgba(7, 15, 34, .82) 48%, rgba(9, 16, 28, .78) 100%),
      url("img/april-event-bg.jpg") center center / cover no-repeat;
  }

  .april-event-shell {
    padding: 72px 18px;
  }

  .april-event-title {
    font-size: 2.3rem;
  }

  .april-event-subtitle {
    font-size: 1rem;
    line-height: 1.8;
  }

  .april-event-alert {
    padding: 18px;
    border-radius: 20px;
  }

  .april-alert-head {
    font-size: 18px;
  }

  .april-event-alert li {
    font-size: 14px;
    line-height: 1.7;
  }

  .april-price-board {
    padding: 18px;
    border-radius: 24px;
  }

  .april-price-head strong {
    font-size: 24px;
  }

  .april-price-card {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .april-price-mini {
    font-size: 30px;
    text-align: center;
  }

  .april-price-label {
    font-size: 18px;
    text-align: center;
  }

  .april-price-main {
    font-size: 52px;
    text-align: center;
  }

  .april-event-stamp {
    position: static;
    display: inline-block;
    margin-top: 14px;
    transform: rotate(-4deg);
    font-size: 20px;
  }
}





.pengo-april-event {
  position: relative;
  overflow: hidden;
  padding: 110px 20px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 124, 41, 0.18), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(84, 162, 255, 0.12), transparent 24%),
    linear-gradient(135deg, #071a2a 0%, #0d2538 42%, #091622 100%);
  color: #fff;
}

.april-event-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 22%),
    repeating-linear-gradient(115deg,
      rgba(255, 255, 255, 0.02) 0 2px,
      transparent 2px 18px);
  pointer-events: none;
}

.april-event-flash {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: .32;
  pointer-events: none;
}

.flash-1 {
  width: 260px;
  height: 260px;
  background: rgba(255, 138, 61, 0.55);
  top: 80px;
  left: -40px;
}

.flash-2 {
  width: 280px;
  height: 280px;
  background: rgba(82, 164, 255, 0.32);
  right: -40px;
  top: 120px;
}

.flash-3 {
  width: 220px;
  height: 220px;
  background: rgba(255, 183, 96, 0.18);
  right: 18%;
  bottom: 80px;
}

.april-event-shell {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

.april-event-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.april-event-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8b3d 0%, #ffb15d 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 0 12px 28px rgba(255, 130, 48, .24);
}

.april-event-side-note {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  color: rgba(255, 255, 255, .52);
  text-transform: uppercase;
}

.april-event-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: 34px;
  align-items: center;
}

.april-event-left {
  position: relative;
  z-index: 3;
}

.april-event-kicker {
  margin: 0 0 16px;
  color: #ffb772;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.april-event-title {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.04em;
}

.april-event-title span {
  color: #ffae61;
  text-shadow: 0 6px 20px rgba(255, 140, 61, .22);
}

.april-event-subtitle {
  margin: 26px 0 0;
  max-width: 700px;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.9;
  color: rgba(255, 255, 255, .84);
}

.april-event-subtitle strong {
  color: #fff1d7;
}

.april-event-alert {
  margin-top: 28px;
  padding: 26px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
}

.april-alert-head {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 900;
  color: #ffd79f;
  letter-spacing: -.02em;
}

.april-event-alert ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, .86);
  line-height: 1.8;
  font-size: 15px;
}

.april-event-cta-group {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.april-event-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.01em;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.april-event-btn:hover {
  transform: translateY(-2px);
}

.april-event-btn.primary {
  background: linear-gradient(135deg, #ff8d3f 0%, #ffb35a 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(255, 132, 47, .28);
}

.april-event-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.april-price-board-wrap {
  position: relative;
  width: min(560px, 100%);
  padding-top: 210px;
  /* 기존 180px → 210px */
}

.april-mascot {
  position: absolute;
  top: -150px;
  /* 기존 0 → -30px */
  left: 50%;
  width: min(400px, 84%);
  /* 기존 min(360px, 78%) → 더 크게 */
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
  filter:
    drop-shadow(0 22px 34px rgba(0, 0, 0, .38)) drop-shadow(0 8px 18px rgba(255, 165, 81, .10));
}

.april-price-board {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 140px 28px 28px;
  /* 위쪽 여백을 크게 줘서 이미지가 안 가리게 */
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(15, 26, 37, .84) 0%, rgba(9, 18, 28, .92) 100%);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 255, 255, .04);
  backdrop-filter: blur(12px);
}

.april-price-board::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 180, 103, .35), rgba(255, 255, 255, .02), rgba(99, 171, 255, .20));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.april-price-head {
  margin-bottom: 20px;
  text-align: center;
}

.april-price-head span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  color: #ffbe7d;
  text-transform: uppercase;
}

.april-price-head strong {
  display: block;
  font-size: clamp(26px, 2.2vw, 38px);
  font-weight: 900;
  letter-spacing: -.03em;
  color: #fff;
}

.april-price-list {
  display: grid;
  gap: 14px;
}

.april-price-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: transform .22s ease, background .22s ease;
}

.april-price-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .08);
}

.april-price-card.highlight {
  background: linear-gradient(135deg, rgba(255, 145, 59, .14) 0%, rgba(255, 255, 255, .06) 100%);
  border-color: rgba(255, 175, 106, .20);
  box-shadow: 0 12px 24px rgba(255, 133, 42, .10);
}

.april-price-mini {
  font-size: 28px;
  font-weight: 900;
  color: rgba(255, 255, 255, .34);
  text-decoration: line-through;
  letter-spacing: -.03em;
}

.april-price-label {
  font-size: 18px;
  font-weight: 800;
  color: #f8fbff;
}

.april-price-main {
  font-size: 46px;
  font-weight: 900;
  color: #ffb566;
  letter-spacing: -.04em;
  white-space: nowrap;
  text-shadow: 0 4px 18px rgba(255, 157, 76, .18);
  text-align: center;
}

.april-price-foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.april-price-foot p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .74);
}

.april-price-foot p:last-child {
  margin-bottom: 0;
}

.april-event-stamp {
  position: absolute;
  right: 18px;
  top: 150px;
  z-index: 6;
  padding: 16px 14px;
  border: 3px solid rgba(255, 111, 66, .72);
  border-radius: 999px;
  color: rgba(255, 123, 61, .88);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .08em;
  transform: rotate(14deg);
  background: rgba(255, 255, 255, .02);
  box-shadow: 0 10px 30px rgba(255, 111, 66, .08);
  backdrop-filter: blur(4px);
}

@media (max-width: 1200px) {
  .april-event-grid {
    grid-template-columns: 1fr;
  }

  .april-event-right {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .pengo-april-event {
    padding: 86px 16px;
  }

  .april-event-title {
    font-size: clamp(30px, 9vw, 46px);
  }

  .april-event-subtitle {
    font-size: 15px;
    line-height: 1.85;
  }

  .april-event-alert {
    padding: 22px 20px;
    border-radius: 20px;
  }

  .april-price-board-wrap {
    padding-top: 155px;
    /* 기존 130px → 155px */
  }

  .april-mascot {
    top: -18px;
    /* 살짝 위로 */
    width: min(280px, 78%);
    /* 기존 min(240px, 70%) → 조금 더 크게 */
  }
}

.april-price-board {
  padding: 100px 22px 22px;
  border-radius: 24px;
}

.april-price-card {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 8px;
}

.april-price-mini {
  font-size: 24px;
}

.april-price-label {
  font-size: 17px;
}



.april-event-stamp {
  top: 108px;
  right: 8px;
  font-size: 15px;
  padding: 12px 11px;
  border-width: 2px;
}