/* ============================================
   PROCESS
   ============================================ */
.section--process {
  position: relative;
  overflow: hidden;
}

.process__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(235, 170, 201, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(247, 147, 30, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.process::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(247, 147, 30, 0.4) 10%,
    rgba(235, 170, 201, 0.3) 50%,
    rgba(248, 156, 50, 0.4) 90%,
    transparent
  );
  z-index: -1;
}

.process__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(245, 236, 221, 0.92));
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease);
}

.process__step:hover {
  border-color: rgba(247, 147, 30, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(46, 34, 25, 0.3);
}

.process__step--featured {
  background:
    linear-gradient(135deg, rgba(247, 147, 30, 0.12), rgba(248, 156, 50, 0.06)),
    linear-gradient(180deg, rgba(255, 252, 246, 0.95), rgba(245, 236, 221, 0.95));
  border-color: rgba(247, 147, 30, 0.3);
}

.process__step-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}

.process__step-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 147, 30, 0.3);
  background: rgba(247, 147, 30, 0.1);
  color: var(--coral);
  margin-bottom: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}

.process__step-icon svg {
  width: 24px;
  height: 24px;
}

.process__step--featured .process__step-icon {
  background: var(--coral);
  color: #1A130C;
  box-shadow: 0 0 24px rgba(247, 147, 30, 0.4);
}

.process__step-title {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.process__step-desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 1;
}
.process__step-desc em {
  font-style: normal;
  color: var(--text);
  font-weight: 600;
}

.process__step-time {
  display: inline-block;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cyan);
  border: 1px solid rgba(235, 170, 201, 0.3);
  background: rgba(235, 170, 201, 0.06);
  margin-top: auto;
}

.process__cta {
  margin-top: 56px;
  text-align: center;
}

/* ============================================
   FAQ TABS
   ============================================ */
.faq-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.faq-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.5);
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
}

.faq-tab {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.faq-tab:hover {
  color: var(--text);
  background: rgba(46, 34, 25, 0.04);
}

.faq-tab.is-active {
  background: linear-gradient(135deg, rgba(247, 147, 30, 0.18), rgba(248, 156, 50, 0.1));
  border-color: rgba(247, 147, 30, 0.35);
  color: var(--text);
  box-shadow: 0 6px 20px rgba(247, 147, 30, 0.15);
}

.faq-tab__icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--coral);
  flex-shrink: 0;
}
.faq-tab__icon svg {
  width: 18px;
  height: 18px;
}

.faq-tab.is-active .faq-tab__icon {
  color: var(--coral);
}

.faq-tab__label {
  font-weight: 700;
}

.faq-tab__count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(46, 34, 25, 0.06);
  border: 1px solid var(--line);
}

.faq-tab.is-active .faq-tab__count {
  color: var(--coral);
  background: rgba(247, 147, 30, 0.1);
  border-color: rgba(247, 147, 30, 0.3);
}

.faq-panel {
  animation: faqPanelFade 0.35s var(--ease);
}

.faq-panel[hidden] {
  display: none !important;
}

@keyframes faqPanelFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   WORKS — OVERLAY & BUTTON RESET
   ============================================ */
.work {
  /* Reset for button */
  font: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  padding: 0;
  color: inherit;
  display: block;
}

.work__img {
  position: relative;
}

.work__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(251, 246, 238, 0.15) 0%, rgba(251, 246, 238, 0.75) 100%);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.work:hover .work__overlay,
.work:focus-visible .work__overlay {
  opacity: 1;
}

.work__overlay-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--coral);
  background: rgba(247, 147, 30, 0.2);
  color: var(--coral);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transform: scale(0.85);
  transition: transform 0.35s var(--ease);
}

.work:hover .work__overlay-icon,
.work:focus-visible .work__overlay-icon {
  transform: scale(1);
}

.work:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 6, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.8);
  color: var(--text);
  cursor: pointer;
  z-index: 2;
  transition: all 0.25s var(--ease);
}
.lightbox__close:hover {
  background: var(--coral);
  color: #1A130C;
  border-color: var(--coral);
  transform: rotate(90deg);
}

.lightbox__content {
  position: relative;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  transform: scale(0.96);
  transition: transform 0.35s var(--ease);
}

.lightbox.is-open .lightbox__content {
  transform: scale(1);
}

.lightbox__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.lightbox__img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 70vh;
  object-fit: contain;
  background: rgba(46, 34, 25, 0.3);
}

.lightbox__caption {
  padding: clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--line);
}

.lightbox__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lightbox__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.lightbox__desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

body.lightbox-open {
  overflow: hidden;
}

/* ============================================
   SUB-PAGE HERO
   ============================================ */
.sub-hero {
  position: relative;
  padding: clamp(140px, 18vw, 200px) 0 clamp(60px, 10vw, 100px);
  overflow: hidden;
}

.sub-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.sub-hero__inner--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sub-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.5);
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.25s var(--ease);
}
.sub-hero__back:hover {
  color: var(--coral);
  border-color: rgba(247, 147, 30, 0.4);
  transform: translateX(-4px);
}

.sub-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.6);
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.sub-hero__inner--center .sub-hero__back {
  margin-left: auto;
  margin-right: auto;
}

.sub-hero__title {
  margin-bottom: 24px;
}

.sub-hero__desc {
  max-width: 700px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.sub-hero__desc--center {
  margin-left: auto;
  margin-right: auto;
}

.sub-hero__desc strong {
  color: var(--text);
}

.container--narrow {
  max-width: 880px;
}

/* ============================================
   BUTTON LARGE
   ============================================ */
.btn--large {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* ============================================
   COURSE PAGE
   ============================================ */
.course-price {
  display: inline-block;
  padding: 18px 28px;
  margin: 0 0 32px;
  border: 1px solid rgba(248, 156, 50, 0.4);
  background: linear-gradient(135deg, rgba(248, 156, 50, 0.12), rgba(247, 147, 30, 0.08));
}

.course-price__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.course-price__row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.course-price__old {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(247, 147, 30, 0.6);
}

.course-price__new {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  color: var(--lime);
  line-height: 1;
}

.course-price__save {
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--coral);
  background: rgba(247, 147, 30, 0.15);
  border: 1px solid rgba(247, 147, 30, 0.4);
}

/* ===== Cinematic sub-hero with background image ===== */
.sub-hero--cinematic {
  position: relative;
  padding: clamp(128px, 16vw, 188px) 0 clamp(56px, 8vw, 92px);
  background: #080c12;
  overflow: hidden;
}
.sub-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sub-hero__media picture,
.sub-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.sub-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(8, 12, 18, 0.97) 0%,
      rgba(8, 12, 18, 0.9) 30%,
      rgba(8, 12, 18, 0.55) 62%,
      rgba(8, 12, 18, 0.18) 100%),
    linear-gradient(to top,
      rgba(8, 12, 18, 0.85) 0%,
      rgba(8, 12, 18, 0) 50%);
}
.sub-hero--cinematic .sub-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
/* light-on-dark text treatment */
.sub-hero--cinematic .sub-hero__back {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.82);
}
.sub-hero--cinematic .sub-hero__back:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.sub-hero--cinematic .sub-hero__badge {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
}
.sub-hero--cinematic .hero__line--sub {
  color: rgba(255, 255, 255, 0.74);
}
.sub-hero--cinematic .sub-hero__desc {
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
}
.sub-hero--cinematic .sub-hero__desc strong {
  color: #fff;
}

/* ===== Course hero title lockup ===== */
.course-hero__title {
  margin-bottom: 26px;
}
.course-hero__topic {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.3rem, 5.4vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  background: linear-gradient(118deg, #FFB877 0%, #F7931E 42%, #C95792 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.course-hero__headline {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4.7vw, 3.7rem);
  line-height: 1.12;
  color: #fff;
  margin-top: 8px;
  letter-spacing: 0.005em;
}
.course-hero__headline em {
  font-style: normal;
  color: var(--coral);
  font-size: 1.16em;
  font-weight: 900;
  margin-right: 6px;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 30px rgba(247, 147, 30, 0.45);
}
.course-hero__headline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--coral), rgba(247, 147, 30, 0));
}
.course-hero__title .hero__line--sub {
  margin-top: 26px;
}

/* price pill on dark */
.course-price--hero {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(247, 147, 30, 0.5);
  backdrop-filter: blur(10px);
}
.course-price--hero .course-price__label {
  color: var(--coral);
}
.course-price--hero .course-price__old {
  color: rgba(255, 255, 255, 0.55);
  text-decoration-color: rgba(255, 255, 255, 0.45);
}
.course-price--hero .course-price__new {
  color: #FFB155;
}
.course-price--hero .course-price__save {
  color: #fff;
  background: rgba(247, 147, 30, 0.28);
  border-color: rgba(247, 147, 30, 0.55);
}

/* ghost button on dark */
.btn--on-dark.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}
.btn--on-dark.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
}

/* ===== Early-bird countdown (in cinematic hero) ===== */
/* 早鳥加開文案（電影感 hero 上，亮字） */
.earlybird-reopen {
  margin: 18px 0 0;
  padding: 12px 16px;
  max-width: 520px;
  border-left: 3px solid var(--coral);
  border-radius: 6px;
  background: rgba(247, 147, 30, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.65;
}
.earlybird-reopen s {
  color: rgba(255, 255, 255, 0.5);
}
.earlybird-reopen strong {
  color: #FFB877;
  font-weight: 700;
}

.earlybird-countdown {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 14px 0 0;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(247, 147, 30, 0.4);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  color: #fff;
  max-width: 100%;
}
.earlybird-countdown__label {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.05em;
}
.earlybird-countdown__timer {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}
.earlybird-countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 2.7rem;
}
.earlybird-countdown__num {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 5.4vw, 2rem);
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: #FFB877;
}
.earlybird-countdown__unit-label {
  font-size: 0.7rem;
  opacity: 0.7;
  margin-top: 6px;
  line-height: 1;
}
.earlybird-countdown__sep {
  font-family: var(--font-mono);
  font-size: clamp(1.3rem, 4.6vw, 1.6rem);
  font-weight: 700;
  line-height: 1;
  opacity: 0.4;
  /* sit on the same top edge as the numbers */
  align-self: flex-start;
}
.earlybird-countdown__expired {
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}
.earlybird-countdown__expired a {
  color: #FFB877;
  text-decoration: underline;
}
@media (max-width: 420px) {
  .earlybird-countdown { padding: 12px 14px; gap: 0.5rem; }
  .earlybird-countdown__timer { gap: 0.3rem; }
  .earlybird-countdown__unit { min-width: 2.3rem; }
}

@media (max-width: 760px) {
  .sub-hero__media img { object-position: 72% center; }
  .sub-hero__scrim {
    background:
      linear-gradient(to top,
        rgba(8, 12, 18, 0.97) 0%,
        rgba(8, 12, 18, 0.82) 42%,
        rgba(8, 12, 18, 0.55) 100%);
  }
}

/* ===== Facts band (below hero) ===== */
.facts-band-section {
  padding: clamp(28px, 4vw, 46px) 0 0;
}
.facts-band__rescue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto clamp(20px, 3vw, 28px);
  padding: 12px 20px;
  background: rgba(247, 147, 30, 0.08);
  border: 1px solid rgba(247, 147, 30, 0.32);
  border-radius: 999px;
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
  color: var(--text);
  text-align: center;
  line-height: 1.5;
}
.facts-band__rescue svg {
  flex-shrink: 0;
  color: var(--coral);
}
.facts-band__rescue strong {
  color: var(--coral);
  font-weight: 700;
}
.facts-band {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.facts-band li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.facts-band li:last-child {
  border-right: 0;
}
.facts-band li span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.facts-band li strong {
  font-size: 0.94rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 860px) {
  .facts-band { grid-template-columns: repeat(2, 1fr); }
  .facts-band li { border-right: 0; border-bottom: 1px solid var(--line); }
  .facts-band li:nth-child(odd) { border-right: 1px solid var(--line); }
  .facts-band li:nth-last-child(-n+1) { border-bottom: 0; }
}
@media (max-width: 480px) {
  .facts-band { grid-template-columns: 1fr; }
  .facts-band li { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .facts-band li:last-child { border-bottom: 0; }
}

/* ===== Webinar contrast block (2hr workshop vs 2-day main) ===== */
.webinar-contrast {
  max-width: 760px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  padding: clamp(20px, 3vw, 30px) clamp(22px, 3vw, 36px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  line-height: 1.75;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--muted);
  box-shadow: var(--shadow-soft);
}
.webinar-contrast p { margin: 0; }
.webinar-contrast p + p {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.webinar-contrast strong { color: var(--text); font-weight: 700; }
.webinar-contrast strong.urgent { color: var(--coral); }

/* ===== Applications placements callout (誘因 5) ===== */
.applications-placements {
  max-width: 820px;
  margin: clamp(32px, 5vw, 48px) auto 0;
  padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 32px);
  background: var(--panel);
  border: 1px dashed rgba(247, 147, 30, 0.55);
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.applications-placements__label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin: 0 0 14px;
}
.applications-placements__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.applications-placements__list li {
  padding: 7px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 600;
}

/* ===== Bonus pack section (報名即贈) ===== */
.bonus-pack__lead {
  text-align: center;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  line-height: 1.75;
}
.bonus-pack__lead strong { color: var(--text); font-weight: 700; }

.bonus-pack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  max-width: 1020px;
  margin: 0 auto;
}
.bonus-pack__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 26px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.bonus-pack__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(247, 147, 30, 0.45);
}
.bonus-pack__item--feature {
  border-color: rgba(247, 147, 30, 0.45);
  background: linear-gradient(180deg, rgba(247, 147, 30, 0.06), var(--panel) 60%);
}
.bonus-pack__num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}
.bonus-pack__title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}
.bonus-pack__desc {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.course-intro {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}

.course-intro__text p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  margin-bottom: 20px;
}

.course-intro__lead {
  font-size: clamp(1.2rem, 2vw, 1.5rem) !important;
  color: var(--text) !important;
  font-weight: 600;
}

.course-intro__text strong { color: var(--text); }
.course-intro__text em {
  font-style: normal;
  color: var(--coral);
  font-weight: 600;
}

.course-intro__benefits {
  position: sticky;
  top: 100px;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 252, 246, 0.9), rgba(245, 236, 221, 0.9));
  backdrop-filter: blur(10px);
}

.course-intro__benefits h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--coral);
}

.course-intro__benefits ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.course-intro__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.course-intro__benefits svg {
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 3px;
}

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

.audience__card {
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(245, 236, 221, 0.92));
  text-align: center;
  transition: all 0.35s var(--ease);
}

.audience__card:hover {
  border-color: rgba(247, 147, 30, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(46, 34, 25, 0.3);
}

.audience__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 147, 30, 0.3);
  background: rgba(247, 147, 30, 0.08);
  color: var(--coral);
  margin: 0 auto 16px;
  border-radius: 50%;
}
.audience__icon svg {
  width: 24px;
  height: 24px;
}

.audience__card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.audience__card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Curriculum */
.curriculum {
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: ch;
}

.curriculum__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 252, 246, 0.9), rgba(245, 236, 221, 0.9));
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease);
}

.curriculum__item:hover {
  border-color: rgba(247, 147, 30, 0.3);
  transform: translateX(4px);
}

.curriculum__item--featured {
  border-color: rgba(247, 147, 30, 0.3);
  background:
    linear-gradient(135deg, rgba(247, 147, 30, 0.08), rgba(248, 156, 50, 0.04)),
    linear-gradient(135deg, rgba(255, 252, 246, 0.92), rgba(245, 236, 221, 0.92));
}

.curriculum__num {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  text-align: center;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.curriculum__item--featured .curriculum__num {
  color: var(--lime);
}

.curriculum__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.curriculum__desc {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.curriculum__points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.curriculum__points li {
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(46, 34, 25, 0.04);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(245, 236, 221, 0.92));
  text-align: center;
  transition: all 0.35s var(--ease);
}
.feature:hover {
  border-color: rgba(247, 147, 30, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(46, 34, 25, 0.3);
}

.feature__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(247, 147, 30, 0.08);
  color: var(--coral);
  margin: 0 auto 16px;
}
.feature__icon svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Instructor */
.instructor {
  display: grid;
  grid-template-columns: minmax(200px, 240px) 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 252, 246, 0.9), rgba(245, 236, 221, 0.9));
  backdrop-filter: blur(10px);
}

.instructor__avatar {
  position: relative;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(247, 147, 30, 0.35);
  background:
    radial-gradient(circle at 30% 30%, rgba(247, 147, 30, 0.10), transparent 60%),
    rgba(255, 252, 246, 0.6);
  box-shadow: 0 0 60px rgba(247, 147, 30, 0.18), inset 0 0 30px rgba(46, 34, 25, 0.4);
  display: grid;
  place-items: center;
  justify-self: center;
  margin: 0 auto;
}
.instructor__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: drop-shadow(0 0 24px rgba(247, 147, 30, 0.28));
}
/* Real photo: no zoom/glow, clean fill */
.instructor__avatar--photo {
  background: var(--panel);
}
.instructor__avatar--photo img {
  transform: none;
  filter: none;
}

/* ===== Inline content figure (breaks up text) ===== */
.course-figure {
  max-width: 880px;
  margin: clamp(32px, 5vw, 48px) auto 0;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.course-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.course-figure figcaption {
  padding: 14px 18px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  line-height: 1.6;
}
.course-figure--wide { max-width: 1040px; }

/* ===== Format comparison (why small-class) ===== */
.format-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.format-card {
  position: relative;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.format-card--highlight {
  border: 2px solid var(--coral);
  background:
    radial-gradient(ellipse at top, rgba(247, 147, 30, 0.10) 0%, transparent 60%),
    var(--panel);
  box-shadow: var(--shadow);
}
.format-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 4px 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: #1A130C;
  background: var(--coral);
}
.format-card__tag {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.format-card--highlight .format-card__tag { color: var(--coral); }
.format-card__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.format-card__list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text);
}
.format-card__list li strong { color: var(--coral); font-weight: 600; }
.format-card__list--cross li { color: var(--muted); }
.format-card__list--cross li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 0;
  color: #C0492F;
  font-weight: 700;
}
.format-card__list--check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--coral);
  font-weight: 700;
}

@media (max-width: 760px) {
  .format-compare { grid-template-columns: 1fr; }
  .format-card--highlight { order: -1; }
}

/* ===== Mentorship / positioning (陪跑 3 個月) ===== */
.mentorship__lead {
  max-width: 760px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--text);
}
.mentorship__lead strong { color: var(--coral); font-weight: 700; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pillar {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  background: var(--panel);
  text-align: center;
  transition: all 0.3s var(--ease);
}
.pillar:hover {
  border-color: rgba(247, 147, 30, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.pillar__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--coral-dim);
  color: var(--coral);
}
.pillar__icon svg { width: 28px; height: 28px; }
.pillar h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.pillar p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.8;
  margin: 0;
}

.mentorship__band {
  margin-top: clamp(24px, 4vw, 36px);
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--coral);
  background:
    radial-gradient(ellipse at left, rgba(247, 147, 30, 0.12) 0%, transparent 60%),
    var(--panel);
}
.mentorship__band-tag {
  flex-shrink: 0;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #1A130C;
  background: var(--coral);
}
.mentorship__band-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}
.mentorship__band-text strong { color: var(--coral); font-weight: 700; }

/* ===== 1-on-1 coaching (3 sessions) ===== */
.oneonone {
  margin-top: clamp(20px, 3vw, 28px);
  text-align: center;
}
.oneonone__title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
}
.oneonone__title strong { color: var(--coral); }
.oneonone__sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 22px;
}
.oneonone__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.oneonone__card {
  position: relative;
  padding: 22px 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  text-align: center;
}
.oneonone__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--coral);
}
.oneonone__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 6px;
}
.oneonone__month {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.oneonone__card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== Instructor / founder heartfelt note ===== */
.mentorship__note {
  max-width: 680px;
  margin: clamp(28px, 4vw, 40px) auto 0;
  padding: clamp(24px, 4vw, 36px);
  text-align: center;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  position: relative;
}
.mentorship__note p {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 14px;
}
.mentorship__note strong { color: var(--coral); font-weight: 700; font-style: normal; }
.mentorship__note cite {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.06em;
  color: var(--muted);
}

@media (max-width: 760px) {
  .pillars { grid-template-columns: 1fr; }
  .oneonone__grid { grid-template-columns: 1fr; }
}

/* ===== AI 賦能實作 sessions (big dates) ===== */
.sessions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
}
.session-card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--coral);
  background:
    radial-gradient(ellipse at top, rgba(247, 147, 30, 0.10) 0%, transparent 60%),
    var(--panel);
  text-align: center;
}
.session-card__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: #1A130C;
  background: var(--coral);
  padding: 4px 14px;
  margin-bottom: 14px;
}
.session-card__date {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--coral);
  margin: 0 0 4px;
}
.session-card__date span {
  font-size: 0.4em;
  color: var(--text);
}
.session-card__time {
  font-family: var(--font-mono);
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: 0.02em;
}
.sessions__cta {
  text-align: center;
  margin-top: clamp(24px, 4vw, 36px);
}
.sessions__note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 16px 0 0;
}

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

/* ===== Top works carousel (horizontal swipe) ===== */
.course-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 8px;
}
.course-carousel__viewport {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 4px 8px;
  scroll-padding-inline: 50%;
}
.course-carousel__viewport::-webkit-scrollbar {
  display: none;
}
.course-carousel__slide {
  flex: 0 0 auto;
  width: clamp(380px, 52vw, 640px);
  aspect-ratio: 16 / 9;
  scroll-snap-align: center;
  background: #000;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.course-carousel__slide video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.course-carousel__btn {
  position: absolute;
  top: calc(50% - 18px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transform: translateY(-50%);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.course-carousel__btn:hover {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
  transform: translateY(-50%) scale(1.06);
}
.course-carousel__btn:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}
.course-carousel__btn--prev { left: -6px; }
.course-carousel__btn--next { right: -6px; }
.course-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.course-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--line);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.course-carousel__dot.is-active {
  width: 26px;
  background: var(--coral);
}
.course-carousel figcaption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 12px;
}

@media (max-width: 760px) {
  .course-carousel { padding: 0 4px; }
  .course-carousel__slide { width: min(88vw, 520px); }
  .course-carousel__btn--prev { left: 2px; }
  .course-carousel__btn--next { right: 2px; }
}
@media (max-width: 480px) {
  .course-carousel__btn { width: 38px; height: 38px; }
  .course-carousel__btn--prev { left: 0; }
  .course-carousel__btn--next { right: 0; }
}

/* ===== Top VSL placeholder + quick facts ===== */
.course-vsl {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px dashed rgba(247, 147, 30, 0.5);
  background:
    radial-gradient(ellipse at center, rgba(247, 147, 30, 0.12) 0%, transparent 65%),
    var(--panel);
}
.course-vsl__play {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--coral);
  color: #1A130C;
  box-shadow: 0 8px 30px rgba(247, 147, 30, 0.35);
}
.course-vsl__label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0;
}

.course-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 28px auto 0;
  padding: 0;
  list-style: none;
}
.course-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1 1 150px;
  padding: 16px 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  text-align: center;
}
.course-fact__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
}
.course-fact__value {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

/* ===== Instructor authority stats ===== */
.instructor__stats {
  display: flex;
  gap: 28px;
  margin: 4px 0 18px;
  flex-wrap: wrap;
}
.instructor__stat {
  display: flex;
  flex-direction: column;
}
.instructor__stat strong {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
}
.instructor__stat span {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ===== Enroll price installment ===== */
.enroll-card__price-installment {
  display: block;
  width: 100%;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}

/* 可接受分期銀行（可摺疊） */
.installment-banks {
  margin: 14px 0 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  overflow: hidden;
}
.installment-banks > summary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  user-select: none;
}
.installment-banks > summary::-webkit-details-marker { display: none; }
.installment-banks > summary svg:first-child { color: var(--coral); flex-shrink: 0; }
.installment-banks__chev {
  margin-left: auto;
  color: var(--muted);
  transition: transform 0.25s var(--ease);
}
.installment-banks[open] .installment-banks__chev { transform: rotate(180deg); }
.installment-banks__list {
  list-style: none;
  margin: 0;
  padding: 4px 14px 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  border-top: 1px solid var(--line);
}
.installment-banks__list li {
  position: relative;
  padding-left: 14px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}
.installment-banks__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.72em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
}
.installment-banks__note {
  margin: 0;
  padding: 8px 14px 12px;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 480px) {
  .installment-banks__list { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .course-fact { flex-basis: 100%; flex-direction: row; justify-content: space-between; text-align: left; }
  .instructor__stats { gap: 20px; }
}

/* ===== Free resource doc page ===== */
.resource-doc {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 56px);
}
.resource-doc__head {
  text-align: center;
  padding-bottom: clamp(24px, 4vw, 36px);
  margin-bottom: clamp(24px, 4vw, 36px);
  border-bottom: 2px solid var(--coral);
}
.resource-doc__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  border: 1px solid var(--coral);
  background: var(--coral-dim);
  padding: 4px 12px;
  margin-bottom: 16px;
}
.resource-doc__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin: 0 0 14px;
}
.resource-doc__sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 22px;
}
.resource-doc__print { margin: 0 auto; }

.resource-block { margin-bottom: clamp(24px, 3vw, 32px); }
.resource-block__h {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: var(--coral);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.resource-check { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.resource-check li {
  position: relative;
  padding: 12px 16px 12px 44px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
}
.resource-check li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 14px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--coral);
  border-radius: 4px;
}
.resource-check strong { color: var(--coral); font-weight: 600; }

.resource-doc__cta {
  margin-top: clamp(28px, 4vw, 40px);
  padding: clamp(24px, 4vw, 32px);
  text-align: center;
  background: var(--coral-dim);
  border: 1px solid rgba(247, 147, 30, 0.3);
}
.resource-doc__cta-text { font-size: 1.05rem; margin: 0 0 18px; }
.resource-doc__cta-text strong { color: var(--coral); }
.resource-doc__cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.resource-doc__foot {
  margin: 28px 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.8;
}

@media print {
  .nav, .line-fab, .back-to-top, .resource-doc__print, .skip-link, .cursor-glow { display: none !important; }
  body { background: #fff; }
  .resource-doc { box-shadow: none; border: none; padding: 0; }
  .resource-check li { break-inside: avoid; }
}

.instructor__text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 6px;
}

.instructor__role {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--cyan);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.instructor__text p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.instructor__text p strong { color: var(--text); }

.instructor__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-weight: 700;
  color: var(--coral);
  font-size: 0.95rem;
  transition: gap 0.25s var(--ease);
}
.instructor__more:hover { gap: 12px; }

/* ============================================
   COURSE PAGE — Landing components (v2)
   Painpoint / Philosophy / Workflow / Learn /
   Days / Takeaway / Fit / Applications / BigQuote / EnrollInfo
   ============================================ */

/* Painpoint */
.painpoint {
  max-width: 820px;
  margin: 0 auto;
}
.painpoint__intro {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--muted);
  text-align: center;
  margin: 0 auto 32px;
  line-height: 1.85;
}
.painpoint__list {
  display: grid;
  gap: 12px;
  margin: 0;
}
.painpoint__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  background: rgba(255, 252, 246, 0.55);
  border: 1px solid var(--line);
  border-left: 3px solid var(--coral);
  font-size: 0.98rem;
  color: var(--text);
}
.painpoint__item-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--coral);
}
.painpoint__outro {
  margin: 36px auto 0;
  text-align: center;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.9;
}
.painpoint__outro strong {
  color: var(--text);
  font-weight: 600;
}

/* Philosophy */
.philosophy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.philosophy__lead {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.3vw, 1.5rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 32px;
}
.philosophy__lead strong { color: var(--coral); font-weight: 700; }
.philosophy__body {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.85;
  margin: 0;
}
.philosophy__body strong { color: var(--text); font-weight: 600; }
.philosophy__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  margin: 24px auto 0;
  text-align: left;
  max-width: 720px;
}
.philosophy__list li {
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(255, 252, 246, 0.5);
  border: 1px solid var(--line);
  border-left: 2px solid var(--cyan);
}

/* Workflow */
.workflow {
  max-width: 1040px;
  margin: 0 auto;
}
.workflow__lead {
  text-align: center;
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 28px;
}
.workflow__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.workflow__step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: rgba(255, 252, 246, 0.7);
  border: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: all 0.3s var(--ease);
}
.workflow__step:hover {
  border-color: rgba(247, 147, 30, 0.4);
  transform: translateY(-2px);
}
.workflow__step--final {
  border-color: var(--coral);
  background: rgba(247, 147, 30, 0.08);
  color: var(--coral);
}
.workflow__step-num {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--coral);
  border: 1px solid var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
}
.workflow__step--final .workflow__step-num {
  background: var(--coral);
  color: #1A130C;
}
.workflow__arrow {
  color: var(--muted);
  opacity: 0.4;
  font-size: 1.1rem;
}
.workflow__note {
  margin: 32px auto 0;
  text-align: center;
  max-width: 720px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.9;
}
.workflow__note strong { color: var(--text); font-weight: 600; }

/* Big Quote */
.section--quote { padding-block: clamp(20px, 3vw, 44px); }
.big-quote {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: -0.005em;
  position: relative;
  padding: clamp(8px, 1.4vw, 16px) clamp(16px, 3vw, 32px);
}
.big-quote::before,
.big-quote::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--coral);
  margin: 0 auto;
}
.big-quote::before { margin-bottom: clamp(12px, 1.8vw, 20px); }
.big-quote::after { margin-top: clamp(12px, 1.8vw, 20px); }
.big-quote em {
  color: var(--coral);
  font-style: normal;
  font-weight: 700;
}

/* Learn (7 cards) */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.learn-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 252, 246, 0.6);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}
.learn-card:hover {
  border-color: rgba(247, 147, 30, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(46, 34, 25, 0.25);
}
.learn-card__num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--coral);
  font-weight: 700;
}
.learn-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  color: var(--text);
}
.learn-card__desc {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.85;
  margin: 0;
}

/* Days (Day 1 / Day 2) */
.days {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
}
.day-card {
  padding: clamp(28px, 4vw, 40px);
  background: linear-gradient(160deg, rgba(255, 252, 246, 0.92), rgba(245, 236, 221, 0.92));
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.day-card__tag {
  align-self: flex-start;
  padding: 5px 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--coral);
  border: 1px solid var(--coral);
  background: rgba(247, 147, 30, 0.08);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.day-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 14px;
}
.day-card__lead {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.8;
  margin: 0 0 22px;
}
.day-card__sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--coral);
  text-transform: uppercase;
  margin: 18px 0 10px;
  font-weight: 700;
}
.day-card__list {
  display: grid;
  gap: 6px;
  margin: 0;
}
.day-card__list li {
  padding: 10px 14px;
  background: rgba(251, 246, 238, 0.55);
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
  border-left: 2px solid rgba(247, 147, 30, 0.4);
}
.day-card__list--check li {
  position: relative;
  padding-left: 36px;
  border-left: none;
  background: rgba(235, 170, 201, 0.06);
  border: 1px solid rgba(235, 170, 201, 0.18);
}
.day-card__list--check li::before {
  content: '✓';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Takeaway */
.takeaway {
  max-width: 760px;
  margin: 0 auto;
}
.takeaway__intro {
  text-align: center;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
  margin: 0 0 32px;
}
.takeaway__intro strong { color: var(--text); font-weight: 600; }
.takeaway__list {
  display: grid;
  gap: 10px;
  margin: 0;
}
.takeaway__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255, 252, 246, 0.5);
  border: 1px solid var(--line);
  font-size: 0.98rem;
  line-height: 1.55;
}
.takeaway__list li::before {
  content: '✓';
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  background: rgba(247, 147, 30, 0.12);
  color: var(--coral);
  font-weight: 700;
  border-radius: 50%;
}
.takeaway__outro {
  margin: 32px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}
.takeaway__outro strong { color: var(--text); font-weight: 600; }

/* Fit / NoFit */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
}
.fit-card {
  padding: clamp(26px, 4vw, 36px);
  background: rgba(255, 252, 246, 0.6);
  border: 1px solid var(--line);
}
.fit-card--yes { border-top: 3px solid var(--cyan); }
.fit-card--no { border-top: 3px solid #ec6a6a; }
.fit-card__tag {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin: 0 0 6px;
}
.fit-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 18px;
}
.fit-card--yes .fit-card__title { color: var(--cyan); }
.fit-card--no .fit-card__title { color: #ec6a6a; }
.fit-card__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fit-card__list li {
  padding-left: 26px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
}
.fit-card--yes .fit-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-weight: 700;
}
.fit-card--no .fit-card__list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 0;
  color: #ec6a6a;
  font-weight: 700;
}
.fit-card__note {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  margin: 18px 0 0;
}
.fit-card__note strong { color: var(--text); font-weight: 600; }

/* Applications */
.applications-lead {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.85;
}
.applications-lead strong { color: var(--text); font-weight: 600; }
.applications {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  max-width: 980px;
  margin: 0 auto 36px;
}
.application {
  padding: 16px 20px;
  background: rgba(255, 252, 246, 0.5);
  border: 1px solid var(--line);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s var(--ease);
}
.application:hover {
  border-color: rgba(247, 147, 30, 0.3);
  transform: translateY(-2px);
}
.application__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
}
.applications-outro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}
.applications-outro p { margin: 0 0 18px; }
.applications-outro strong { color: var(--text); font-weight: 600; }
.applications-roles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  text-align: left;
  margin: 18px 0 0;
  padding: 0;
}
.applications-roles li {
  padding: 12px 16px;
  background: rgba(255, 252, 246, 0.5);
  border: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}
.applications-roles li strong {
  display: inline-block;
  color: var(--coral);
  font-weight: 700;
  margin-right: 6px;
}

/* Enroll Info Table */
.enroll-info {
  margin: 28px auto;
  max-width: 600px;
  text-align: left;
  display: grid;
  gap: 0;
  padding: 0;
}
.enroll-info__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.93rem;
}
.enroll-info__row:last-child { border-bottom: none; }
.enroll-info dt {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  padding-top: 2px;
}
.enroll-info dd {
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   ORIGIN PAGE — 初發心平台 (story / narrative)
   ============================================ */
.story {
  max-width: 720px;
  margin: 0 auto;
}
.story__body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 2;
  margin: 0 0 22px;
}
.story__body strong { color: var(--text); font-weight: 600; }
.story__body em { color: var(--coral); font-style: italic; font-weight: 500; }
.story__lead {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--text);
  font-weight: 500;
  text-align: center;
  margin: 36px auto 0;
  line-height: 1.6;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

/* Dialogue */
.story-dialogue {
  margin: 28px 0;
  padding: 24px 28px;
  background: rgba(255, 252, 246, 0.6);
  border: 1px solid var(--line);
  border-left: 3px solid var(--coral);
}
.story-dialogue__line {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin: 0 0 12px;
  padding-left: 56px;
  position: relative;
}
.story-dialogue__line:last-child { margin-bottom: 0; }
.story-dialogue__line--key {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--coral);
}
.story-dialogue__who {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--coral);
  background: rgba(247, 147, 30, 0.1);
  border: 1px solid var(--coral);
  padding: 2px 8px;
  text-transform: uppercase;
}

/* Observations */
.story-observations {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
}
.story-observations li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255, 252, 246, 0.5);
  border: 1px solid var(--line);
  font-size: 0.98rem;
  color: var(--text);
}
.story-observations__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: var(--coral);
  border-radius: 50%;
}
.story-observations strong { color: var(--coral); font-weight: 600; }

/* Rules */
.story-rules {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.story-rules li {
  display: flex;
  gap: 20px;
  padding: 22px 24px;
  background: rgba(255, 252, 246, 0.6);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}
.story-rules li:hover {
  border-color: rgba(247, 147, 30, 0.3);
  transform: translateY(-2px);
}
.story-rules__num {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--coral);
  width: 36px;
  text-align: center;
  padding-top: 2px;
}
.story-rules h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
  line-height: 1.4;
}
.story-rules p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.7;
}
.story-rules p strong { color: var(--text); font-weight: 600; }

/* Support Card */
.support-card {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px);
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(247, 147, 30, 0.1) 0%, transparent 60%),
    rgba(255, 252, 246, 0.7);
  border: 1px solid rgba(247, 147, 30, 0.25);
}
.support-card__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  color: var(--coral);
  border: 1px solid var(--coral);
  border-radius: 50%;
  background: rgba(247, 147, 30, 0.08);
}
.support-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 700;
  margin: 0 0 18px;
}
.support-card__body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  margin: 0 0 14px;
}
.support-card__body strong { color: var(--text); font-weight: 600; }
.support-card__note {
  font-size: 0.88rem;
  color: var(--muted);
  opacity: 0.75;
  margin: 18px 0 24px;
  line-height: 1.7;
}
.support-card__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Signature */
.story-signature {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 36px 0;
}
.story-signature__above {
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin: 0 0 18px;
}
.story-signature__name {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--coral);
  margin: 0 0 6px;
  line-height: 1;
  letter-spacing: 0.05em;
}
.story-signature__role {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

/* Enroll Card */
.enroll-card {
  position: relative;
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 60px);
  border: 1px solid rgba(247, 147, 30, 0.3);
  background:
    radial-gradient(ellipse at top, rgba(247, 147, 30, 0.12) 0%, transparent 60%),
    linear-gradient(135deg, rgba(255, 252, 246, 0.95), rgba(245, 236, 221, 0.95));
  backdrop-filter: blur(12px);
  text-align: center;
  overflow: hidden;
}

.enroll-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--coral), transparent);
}

.enroll-card__inner {
  max-width: 640px;
  margin: 0 auto;
}

.enroll-card__tag {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(247, 147, 30, 0.4);
  background: rgba(247, 147, 30, 0.08);
}

.enroll-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}

.enroll-card__desc {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 28px;
}

.enroll-card__price {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  margin-bottom: 24px;
  padding: 16px 28px;
  border: 1px solid var(--line);
  background: rgba(251, 246, 238, 0.5);
}
@media (max-width: 600px) {
  .enroll-card__price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 18px 22px;
    width: 100%;
  }
  .enroll-card__price-new { font-size: 2rem; }
}

.enroll-card__price-old {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
}

.enroll-card__price-new {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--lime);
  line-height: 1;
}

.enroll-card__note {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* Related */
.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(245, 236, 221, 0.92));
  transition: all 0.35s var(--ease);
}

.related__card:hover {
  border-color: rgba(247, 147, 30, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(46, 34, 25, 0.3);
}

.related__tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.related__card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.related__card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ============================================
   SHOP / GALLERY FILTERS
   ============================================ */
.shop-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  padding: 6px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.5);
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
}

.shop-filter {
  flex: 1;
  min-width: 90px;
  padding: 12px 18px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.shop-filter:hover {
  color: var(--text);
  background: rgba(46, 34, 25, 0.04);
}

.shop-filter.is-active {
  background: linear-gradient(135deg, rgba(247, 147, 30, 0.2), rgba(248, 156, 50, 0.1));
  border-color: rgba(247, 147, 30, 0.4);
  color: var(--text);
}

/* Shop Grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.shop-item {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.95), rgba(245, 236, 221, 0.95));
  transition: all 0.35s var(--ease);
}

.shop-item:hover {
  border-color: rgba(247, 147, 30, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(46, 34, 25, 0.3);
}

.shop-item--featured {
  background:
    linear-gradient(135deg, rgba(247, 147, 30, 0.1), rgba(248, 156, 50, 0.06)),
    linear-gradient(180deg, rgba(255, 252, 246, 0.95), rgba(245, 236, 221, 0.95));
  border-color: rgba(247, 147, 30, 0.25);
}

.shop-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}

.shop-item__tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-item__badge {
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--coral);
  border: 1px solid rgba(247, 147, 30, 0.4);
  background: rgba(247, 147, 30, 0.1);
  letter-spacing: 0.05em;
}

.shop-item__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.shop-item__desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.shop-item__points {
  margin-bottom: 20px;
  flex: 1;
}
.shop-item__points li {
  padding: 4px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.shop-item__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(251, 246, 238, 0.5);
}
.shop-item__price span {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
}
.shop-item__price strong {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  color: var(--lime);
  line-height: 1;
}

.shop-item .btn {
  width: 100%;
  justify-content: center;
}

.shop-item[hidden] { display: none !important; }

/* ============================================
   GALLERY PAGE — Hierarchical Filter
   ============================================ */
.gallery-filters {
  margin-bottom: 36px;
}

.gallery-filters__main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 0;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.5);
  backdrop-filter: blur(10px);
}

.filter-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
}

.filter-main:hover {
  color: var(--text);
  background: rgba(46, 34, 25, 0.04);
}

.filter-main.is-active {
  background: linear-gradient(135deg, rgba(247, 147, 30, 0.2), rgba(248, 156, 50, 0.1));
  border-color: rgba(247, 147, 30, 0.4);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(247, 147, 30, 0.18);
}

.filter-main__icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--coral);
  flex-shrink: 0;
}
.filter-main__icon svg {
  width: 22px;
  height: 22px;
}

.filter-main__label {
  flex: 0 1 auto;
}

.filter-main__count {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 26px;
  padding: 0 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(46, 34, 25, 0.06);
  border: 1px solid var(--line);
}
.filter-main.is-active .filter-main__count {
  color: var(--coral);
  background: rgba(247, 147, 30, 0.12);
  border-color: rgba(247, 147, 30, 0.35);
}

/* Sub-filter container */
.gallery-filters__subs {
  position: relative;
  min-height: 0;
}

.filter-subs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-top: 2px solid rgba(247, 147, 30, 0.3);
  background: rgba(251, 246, 238, 0.4);
  backdrop-filter: blur(8px);
  animation: subFadeIn 0.35s var(--ease);
}

.filter-subs[hidden] {
  display: none !important;
}

@keyframes subFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.filter-sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 252, 246, 0.5);
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.filter-sub:hover {
  color: var(--text);
  border-color: rgba(247, 147, 30, 0.3);
  background: rgba(247, 147, 30, 0.05);
}

.filter-sub.is-active {
  color: #1A130C;
  background: var(--coral);
  border-color: var(--coral);
}

.filter-sub__count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 18px;
  padding: 0 6px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(46, 34, 25, 0.08);
  border: 1px solid var(--line);
  color: var(--muted);
}

.filter-sub.is-active .filter-sub__count {
  background: var(--coral);
  color: #1A130C;
  border-color: var(--coral);
}

/* Empty state */
.gallery-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(60px, 10vw, 100px) 24px;
  border: 1px dashed var(--line);
  background: rgba(255, 252, 246, 0.4);
  gap: 12px;
}

.gallery-empty[hidden] {
  display: none !important;
}

.gallery-empty svg {
  color: rgba(247, 147, 30, 0.5);
  margin-bottom: 8px;
}

.gallery-empty h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  margin: 0;
}

.gallery-empty p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 12px;
}

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

.gallery-grid .work[hidden],
.gallery-grid .work-placeholder[hidden] {
  display: none !important;
}

.work-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 24px;
  border: 1px dashed var(--line);
  background: rgba(255, 252, 246, 0.4);
  transition: all 0.35s var(--ease);
}

.work-placeholder:hover {
  border-color: rgba(247, 147, 30, 0.3);
  background: rgba(255, 252, 246, 0.6);
}

.work-placeholder__inner {
  text-align: center;
  color: var(--muted);
}

.work-placeholder__inner svg {
  color: rgba(247, 147, 30, 0.5);
  margin: 0 auto 14px;
}

.work-placeholder__tag {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--coral);
  letter-spacing: 0.1em;
}

.work-placeholder__inner h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.work-placeholder__inner p {
  font-size: 0.85rem;
  margin: 0;
}

.gallery-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  background: rgba(235, 170, 201, 0.04);
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}
.gallery-note svg {
  color: var(--cyan);
  flex-shrink: 0;
}

/* ============================================
   LINKS PAGE
   ============================================ */
.links-avatar {
  width: clamp(160px, 40vw, 220px);
  aspect-ratio: 1 / 1;
  margin: 0 auto 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(247, 147, 30, 0.4);
  background:
    radial-gradient(circle at 30% 30%, rgba(247, 147, 30, 0.10), transparent 60%),
    rgba(255, 252, 246, 0.7);
  display: grid;
  place-items: center;
  box-shadow: 0 0 60px rgba(247, 147, 30, 0.22), inset 0 0 30px rgba(46, 34, 25, 0.4);
}

.links-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: drop-shadow(0 0 24px rgba(247, 147, 30, 0.28));
}

.links-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 252, 246, 0.9), rgba(245, 236, 221, 0.9));
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease);
}

.link-card:hover {
  border-color: rgba(247, 147, 30, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(46, 34, 25, 0.3);
  background: linear-gradient(135deg, rgba(247, 147, 30, 0.08), rgba(245, 236, 221, 0.9));
}

.link-card--primary {
  border-color: rgba(247, 147, 30, 0.3);
  background:
    linear-gradient(135deg, rgba(247, 147, 30, 0.1), rgba(248, 156, 50, 0.04)),
    linear-gradient(135deg, rgba(255, 252, 246, 0.95), rgba(245, 236, 221, 0.95));
}

.link-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--line);
  background: rgba(247, 147, 30, 0.08);
  color: var(--coral);
}
.link-card__icon svg {
  width: 22px;
  height: 22px;
}

.link-card__icon--ig {
  background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  color: #fff;
  border-color: transparent;
}
.link-card__icon--fb {
  background: #1877f2;
  color: #fff;
  border-color: transparent;
}
.link-card__icon--line {
  background: #06c755;
  color: #fff;
  border-color: transparent;
}
.link-card__icon--mail {
  background: rgba(235, 170, 201, 0.15);
  color: var(--cyan);
  border-color: rgba(235, 170, 201, 0.4);
}

.link-card__text {
  flex: 1;
  min-width: 0;
}

.link-card__text h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.link-card__text p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link-card__arrow {
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}

.link-card:hover .link-card__arrow {
  color: var(--coral);
  transform: translate(4px, -4px);
}

