/* ═══════════════════════════════════════════
   COURSE DETAIL PAGES — Dark Theme
   Shared by: course-fortune-teller.html,
              course-psychic.html,
              course-psychic-video.html
   Consistent with pricing.html / about.html
═══════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  --white: #ffffff;
  --border-gold: rgba(201, 168, 76, 0.3);
  --smoke: #fff;
}

/* ═══════════════════════════════════════════
   1. PAGE HERO (override: different padding from common.css)
═══════════════════════════════════════════ */
.page-hero {
  padding: 140px 60px 80px;
}

@keyframes heroFortuneBeamMain {
  0%, 100% {
    transform: rotate(31deg) translate3d(-2%, 0, 0) scaleY(1);
    opacity: 0.2;
  }
  50% {
    transform: rotate(31deg) translate3d(2.5%, -1%, 0) scaleY(1.04);
    opacity: 0.52;
  }
}

@keyframes heroFortuneBeamSide {
  0%, 100% {
    transform: rotate(25deg) translate3d(-3%, 0, 0);
    opacity: 0.08;
  }
  50% {
    transform: rotate(25deg) translate3d(3%, 1%, 0);
    opacity: 0.26;
  }
}

@keyframes heroFortuneHalo {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(0.98);
    opacity: 0.22;
  }
  50% {
    transform: translate3d(1%, -2%, 0) scale(1.04);
    opacity: 0.42;
  }
}

@keyframes heroPsychicMist {
  0%, 100% {
    transform: translate3d(-2%, 0, 0) scale(1);
    opacity: 0.18;
  }
  50% {
    transform: translate3d(3%, -2%, 0) scale(1.08);
    opacity: 0.38;
  }
}

@keyframes heroPsychicCurrent {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-7deg) scale(1);
    opacity: 0.12;
  }
  50% {
    transform: translate3d(-2%, 2%, 0) rotate(-4deg) scale(1.05);
    opacity: 0.28;
  }
}

@keyframes heroPsychicRipple {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(0.96);
    opacity: 0.08;
  }
  50% {
    transform: translate3d(1.5%, -1.5%, 0) scale(1.06);
    opacity: 0.18;
  }
}

.page-hero--psychic .page-hero-bg::before,
.page-hero--psychic .page-hero-bg::after,
.page-hero--psychic .hero-stars-bg::before,
.page-hero--psychic .hero-stars-bg::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.page-hero--psychic .page-hero-bg::before {
  top: -8%;
  right: -10%;
  width: 54%;
  height: 52%;
  background:
    radial-gradient(ellipse 56% 38% at 55% 50%, rgba(106, 86, 171, 0.28) 0%, rgba(74, 45, 138, 0.14) 48%, transparent 78%);
  filter: blur(34px);
  animation: heroPsychicMist 19s ease-in-out infinite;
}

.page-hero--psychic .page-hero-bg::after {
  left: 10%;
  bottom: -22%;
  width: 64%;
  height: 52%;
  background:
    radial-gradient(ellipse 60% 48% at 50% 50%, rgba(76, 128, 170, 0.14) 0%, rgba(74, 45, 138, 0.12) 42%, transparent 78%);
  filter: blur(42px);
  animation: heroPsychicCurrent 22s ease-in-out infinite 1.5s;
}

.page-hero--psychic .hero-stars-bg::before {
  top: 8%;
  right: 6%;
  width: 30%;
  height: 34%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(171, 152, 232, 0.12) 0%, rgba(106, 86, 171, 0.08) 32%, transparent 66%);
  box-shadow:
    0 0 0 1px rgba(165, 138, 232, 0.08),
    0 0 0 44px rgba(111, 82, 181, 0.03),
    0 0 0 92px rgba(111, 82, 181, 0.02);
  filter: blur(10px);
  animation: heroPsychicRipple 16s ease-in-out infinite;
}

.page-hero--psychic .hero-stars-bg::after {
  top: 20%;
  left: 18%;
  width: 34%;
  height: 24%;
  background: linear-gradient(90deg, transparent 0%, rgba(165, 138, 232, 0.1) 24%, rgba(111, 82, 181, 0.16) 50%, rgba(165, 138, 232, 0.08) 76%, transparent 100%);
  filter: blur(28px);
  transform: rotate(-8deg);
  animation: heroPsychicCurrent 24s ease-in-out infinite 3s;
}

@media (max-width: 1024px) {
  .page-hero--psychic .page-hero-bg::before {
    width: 66%;
  }
}

@media (max-width: 480px) {
  .page-hero--psychic .page-hero-bg::before,
  .page-hero--psychic .page-hero-bg::after,
  .page-hero--psychic .hero-stars-bg::before,
  .page-hero--psychic .hero-stars-bg::after {
    filter: blur(18px);
  }

  .page-hero--psychic .page-hero-bg::before {
    opacity: 0.16;
  }

  .page-hero--psychic .page-hero-bg::after {
    opacity: 0.12;
  }

  .page-hero--psychic .hero-stars-bg::before,
  .page-hero--psychic .hero-stars-bg::after {
    opacity: 0.1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero--psychic .page-hero-bg::before,
  .page-hero--psychic .page-hero-bg::after,
  .page-hero--psychic .hero-stars-bg::before,
  .page-hero--psychic .hero-stars-bg::after {
    animation: none;
  }
}

/* course-detail specific breadcrumb additions */
.breadcrumb .sep {
  color: rgba(201, 168, 76, 0.3);
}

.breadcrumb .current {
  color: var(--gold);
}

/* course-detail specific page-title-ja addition */
.page-title-ja {
  line-height: 1.4;
}

/* ═══════════════════════════════════════════
   2. STAT STRIP
═══════════════════════════════════════════ */
.stat-strip {
  background: #0d0e1a;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.stat-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-strip-inner.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.stat-block {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-block:last-child {
  border-right: none;
}

.stat-icon,
.stat-block > i {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 8px;
  opacity: 0.7;
}

.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-num small {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.stat-label {
  font-size: 10px;
  color: #fff;
  letter-spacing: 0.12em;
  margin-top: 6px;
}

.stat-strip--fortune {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 110% at 50% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, rgba(14, 13, 26, 0.96) 0%, rgba(10, 10, 18, 0.98) 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.stat-strip--fortune::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.015) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.75;
  pointer-events: none;
}

.stat-strip--fortune .section-wrap {
  position: relative;
  z-index: 1;
}

.stat-strip--fortune .stat-strip-inner {
  gap: 18px;
  padding: 26px 0;
}

.stat-strip--fortune .stat-block {
  position: relative;
  padding: 34px 24px 30px;
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-right: 1px solid rgba(201, 168, 76, 0.14);
  background:
    radial-gradient(ellipse 90% 70% at 20% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 68%),
    rgba(255, 255, 255, 0.022);
  gap: 8px;
}

.stat-strip--fortune .stat-block:last-child {
  border-right: 1px solid rgba(201, 168, 76, 0.14);
}

.stat-strip--fortune .stat-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, 0.9) 50%, transparent 100%);
  opacity: 0.7;
}

.stat-strip--fortune .stat-ornament {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 22px;
  height: 22px;
  opacity: 0.5;
}

.stat-strip--fortune .stat-ornament::before,
.stat-strip--fortune .stat-ornament::after {
  content: '';
  position: absolute;
  background: var(--gold);
}

.stat-strip--fortune .stat-ornament::before {
  top: 0;
  left: 0;
  width: 22px;
  height: 1px;
}

.stat-strip--fortune .stat-ornament::after {
  top: 0;
  left: 0;
  width: 1px;
  height: 22px;
}

.stat-strip--fortune .stat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  border: 1px solid rgba(201, 168, 76, 0.16);
  background: rgba(201, 168, 76, 0.07);
}

.stat-strip--fortune .stat-icon,
.stat-strip--fortune .stat-block > i {
  margin-bottom: 0;
  margin-right: 0;
  font-size: 18px;
  color: var(--gold);
  opacity: 0.9;
}

.stat-strip--fortune .stat-kicker {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.72);
  line-height: 1;
}

.stat-strip--fortune .stat-num {
  font-size: 40px;
  letter-spacing: -0.01em;
}

.stat-strip--fortune .stat-num small {
  font-size: 16px;
  color: rgba(232, 201, 106, 0.9);
}

.stat-strip--fortune .stat-label {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.92);
}


/* ═══════════════════════════════════════════
   4. OVERVIEW SECTION
═══════════════════════════════════════════ */
.overview-section {
  background: var(--midnight);
  padding: 100px 0;
  position: relative;
}

.overview-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background:
    radial-gradient(ellipse 40% 60% at 90% 30%, rgba(45, 27, 94, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.overview-layout {
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 40px;
  position: relative;
}

.overview-accent {
  width: 4px;
  background: linear-gradient(to bottom, var(--gold), var(--goldLight), transparent);
}

.overview-content {
  position: relative;
}

.overview-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 2;
  margin-bottom: 24px;
}

.overview-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  line-height: 2.2;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.overview-text:last-child {
  margin-bottom: 0;
  padding-top: 24px;
}

.overview-info {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.overview-info-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold);
  flex-shrink: 0;
}

.overview-info-value {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.overview-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.overview-highlight {
  padding: 6px 16px;
  border: 1px solid var(--border-gold);
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.08em;
  background: rgba(201, 168, 76, 0.04);
}

/* ── Overview Lead Text ── */
.overview-lead-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2.2;
  letter-spacing: 0.04em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}

/* ── Recommend Section (こんな方におすすめ) ── */
.recommend-section {
  position: relative;
  padding: 64px 56px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(201, 168, 76, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(201, 168, 76, 0.03) 0%, transparent 60%),
    rgba(255, 255, 255, 0.028);
}

.recommend-ornament { position: absolute; width: 28px; height: 28px; }
.recommend-ornament::before,
.recommend-ornament::after { content: ''; position: absolute; background: var(--gold); }
.recommend-ornament::before { width: 28px; height: 1px; }
.recommend-ornament::after  { width: 1px;  height: 28px; }
.recommend-ornament--tl { top: -1px; left: -1px; }
.recommend-ornament--tl::before { top: 0; left: 0; }
.recommend-ornament--tl::after  { top: 0; left: 0; }
.recommend-ornament--tr { top: -1px; right: -1px; }
.recommend-ornament--tr::before { top: 0; right: 0; }
.recommend-ornament--tr::after  { top: 0; right: 0; }
.recommend-ornament--bl { bottom: -1px; left: -1px; }
.recommend-ornament--bl::before { bottom: 0; left: 0; }
.recommend-ornament--bl::after  { bottom: 0; left: 0; }
.recommend-ornament--br { bottom: -1px; right: -1px; }
.recommend-ornament--br::before { bottom: 0; right: 0; }
.recommend-ornament--br::after  { bottom: 0; right: 0; }

.recommend-header { text-align: center; margin-bottom: 52px; }

.recommend-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  opacity: 0.85;
}

.recommend-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.12em;
}

.recommend-divider {
  width: 60px;
  height: 1px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.recommend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.recommend-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.recommend-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.recommend-item:first-child { padding-top: 0; }
.recommend-item:last-child { border-bottom: none; padding-bottom: 0; }

.recommend-marker {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recommend-marker-diamond {
  display: block;
  width: 9px;
  height: 9px;
  background: transparent;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
}

.recommend-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.98rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.recommend-text strong {
  font-weight: 600;
  color: var(--goldLight);
  font-size: 1.4em;
}

.recommend-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recommend-card {
  position: relative;
  padding: 28px 28px 28px 32px;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.045) 0%, transparent 60%),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(201, 168, 76, 0.12);
  overflow: hidden;
}

.recommend-card-number {
  position: absolute;
  top: -6px;
  right: 14px;
  font-family: 'Cinzel', serif;
  font-size: 52px;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.recommend-card-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 16px;
}

.recommend-card-label {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.recommend-card-value {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.85;
  letter-spacing: 0.03em;
}

.recommend-card-value em {
  font-style: normal;
  font-family: 'Cinzel', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--goldLight);
  margin: 0 3px;
}

.recommend-card-value small {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   5. CURRICULUM SECTION (Timeline)
═══════════════════════════════════════════ */
.curriculum-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: url('../img/curriculum-bg.jpg') center / cover no-repeat fixed;
}

.curriculum-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 18, 0.88);
  pointer-events: none;
}

/* Curriculum Grid */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.curr-card {
  position: relative;
  overflow: hidden;
  padding: 28px 24px 24px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: linear-gradient(135deg, rgba(26, 20, 40, 0.9), rgba(13, 14, 26, 0.92));
}

.curr-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--goldLight), transparent);
}

.curr-card--wide {
  grid-column: 1 / -1;
}

.curr-num {
  position: absolute;
  top: -12px;
  right: 10px;
  font-family: 'Cinzel', serif;
  font-size: 80px;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.curr-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-bottom: 14px;
  padding-bottom: 12px;
  position: absolute;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
}

.curr-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  letter-spacing: 0.04em;
  position: relative;
}

.curriculum-section--fortune::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 80%);
  pointer-events: none;
  opacity: 0.9;
}

.curriculum-section--fortune .curriculum-wrap {
  position: relative;
  z-index: 1;
}

.curriculum-section--fortune .curriculum-header {
  text-align: center;
  margin-bottom: 64px;
}

.curriculum-section--fortune .curriculum-header-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 16px;
  opacity: 0.82;
}

.curriculum-section--fortune .curriculum-header-label .hl,
.curriculum-section--fortune .curriculum-header-label .hr {
  width: 40px;
  height: 1px;
}

.curriculum-section--fortune .curriculum-header-label .hl {
  background: linear-gradient(90deg, transparent, var(--gold));
}

.curriculum-section--fortune .curriculum-header-label .hr {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.curriculum-section--fortune .curriculum-header-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
}

.curriculum-section--fortune .curriculum-header-title small {
  font-size: 0.7em;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  margin-left: 6px;
  line-height: 0.8;
}

.curriculum-section--fortune .curriculum-header-en {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 10px;
}

.curriculum-section--fortune .curriculum-grid {
  gap: 2px;
  margin-top: 0;
}

.curriculum-section--fortune .curr-card {
  padding: 36px 28px 30px;
  border: 1px solid rgba(201, 168, 76, 0.14);
  background: rgba(255, 255, 255, 0.025);
}

.curriculum-section--fortune .curr-card::before {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  background-size: 200% 100%;
  opacity: 0.6;
  animation: curriculumShimmerLine 4s ease-in-out infinite;
}

.curriculum-section--fortune .curr-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.curriculum-section--fortune .curr-card:nth-child(1)::before  { animation-delay: 0s; }
.curriculum-section--fortune .curr-card:nth-child(2)::before  { animation-delay: 0.4s; }
.curriculum-section--fortune .curr-card:nth-child(3)::before  { animation-delay: 0.8s; }
.curriculum-section--fortune .curr-card:nth-child(4)::before  { animation-delay: 1.2s; }
.curriculum-section--fortune .curr-card:nth-child(5)::before  { animation-delay: 1.6s; }
.curriculum-section--fortune .curr-card:nth-child(6)::before  { animation-delay: 2s; }
.curriculum-section--fortune .curr-card:nth-child(7)::before  { animation-delay: 0.2s; }
.curriculum-section--fortune .curr-card:nth-child(8)::before  { animation-delay: 0.6s; }
.curriculum-section--fortune .curr-card:nth-child(9)::before  { animation-delay: 1s; }
.curriculum-section--fortune .curr-card:nth-child(10)::before { animation-delay: 1.4s; }
.curriculum-section--fortune .curr-card:nth-child(11)::before { animation-delay: 1.8s; }
.curriculum-section--fortune .curr-card:nth-child(12)::before { animation-delay: 2.2s; }

.curriculum-section--fortune .curr-card--accent {
  border-left: 2px solid rgba(201, 168, 76, 0.35);
}

.curriculum-section--fortune .curr-title--featured {
  color: #fff;
  font-size: 1.24rem;
}

.curriculum-section--fortune .curr-card--wide {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 32px 36px;
  background:
    linear-gradient(90deg, rgba(201, 168, 76, 0.05) 0%, transparent 40%, rgba(201, 168, 76, 0.03) 100%),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.curriculum-section--fortune .curr-card--wide::before {
  height: 2px;
  opacity: 0.45;
  animation-duration: 6s;
}

.curriculum-section--fortune .curr-accent-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.06) 0%, transparent 100%);
  pointer-events: none;
}

.curriculum-section--fortune .curr-num,
.curriculum-section--fortune .curr-title,
.curriculum-section--fortune .curr-desc {
  position: relative;
  z-index: 1;
}

.curriculum-section--fortune .curr-num {
  position: relative;
  top: auto;
  right: auto;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.curriculum-section--fortune .curr-num::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(201, 168, 76, 0.35);
}

.curriculum-section--fortune .curr-ghost {
  position: absolute;
  right: 12px;
  bottom: -8px;
  font-family: 'Cinzel', serif;
  font-size: 84px;
  font-weight: 700;
  line-height: 1;
  color: rgba(201, 168, 76, 0.04);
  pointer-events: none;
  user-select: none;
}

.curriculum-section--fortune .curr-title {
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.65;
  margin-bottom: 10px;
  padding-bottom: 0;
  border-bottom: 0;
}

.curriculum-section--fortune .curr-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.curriculum-section--fortune .curr-card--wide .curr-num {
  margin-bottom: 0;
  font-size: 14px;
}

.curriculum-section--fortune .curr-card--wide .curr-title {
  margin-bottom: 0;
  font-size: 1.3rem;
}

.curriculum-section--fortune .curr-card--wide .curr-desc {
  text-align: right;
  white-space: nowrap;
}

.curriculum-section--fortune .curr-card--wide .curr-ghost {
  right: 20px;
  bottom: -4px;
  font-size: 72px;
}

@keyframes curriculumShimmerLine {
  0% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
  100% { background-position: -200% 0; }
}

/* ═══════════════════════════════════════════
   5.5 GUARANTEE ACCENT SECTION
═══════════════════════════════════════════ */
.guarantee-section--accent {
  background: linear-gradient(160deg, #12101e 0%, #1a1428 40%, #18120a 100%);
  padding: 120px 0;
  position: relative;
}

.guarantee-section--accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.guarantee-section--accent .section-title-ja {
  font-size: 40px;
  font-weight: 400;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
}

.guarantee-card {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.18);
  position: relative;
}

.guarantee-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--goldLight));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--midnight);
  margin-bottom: 20px;
}

.guarantee-card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.guarantee-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 2;
  letter-spacing: 0.04em;
}

.guarantee-list {
  list-style: none;
  padding: 0;
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.guarantee-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
}

.guarantee-list li i {
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 4px;
}

.guarantee-card-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 14px;
  line-height: 1.8;
}

.guarantee-section--fortune {
  overflow: hidden;
}

.guarantee-section--fortune::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.015) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(ellipse 68% 58% at 50% 50%, black 22%, transparent 82%);
  -webkit-mask-image: radial-gradient(ellipse 68% 58% at 50% 50%, black 22%, transparent 82%);
  pointer-events: none;
  opacity: 0.75;
}

.guarantee-section--fortune .section-wrap {
  position: relative;
  z-index: 1;
}

.guarantee-section--fortune .guarantee-grid {
  gap: 2px;
}

.guarantee-section--fortune .guarantee-card {
  padding: 42px 34px 36px;
  background:
    radial-gradient(ellipse 85% 65% at 18% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 70%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.14);
  overflow: hidden;
}

.guarantee-section--fortune .guarantee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, 0.9) 50%, transparent 100%);
  opacity: 0.65;
}

.guarantee-section--fortune .guarantee-card::after {
  content: '';
  position: absolute;
  right: 18px;
  bottom: -18px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 72%);
  pointer-events: none;
}

.guarantee-section--fortune .guarantee-card-kicker {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.72);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.guarantee-section--fortune .guarantee-card-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(232, 201, 106, 0.96), rgba(201, 168, 76, 0.78));
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.18);
  position: relative;
  z-index: 1;
}

.guarantee-section--fortune .guarantee-card-title {
  font-size: 28px;
  line-height: 1.45;
  margin-bottom: 14px;
  padding-bottom: 0;
  border-bottom: none;
  position: relative;
  z-index: 1;
}

.guarantee-section--fortune .guarantee-card-desc {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  z-index: 1;
}

.guarantee-section--fortune .guarantee-card-emphasis,
.guarantee-section--fortune .guarantee-list-label,
.guarantee-section--fortune .guarantee-list,
.guarantee-section--fortune .guarantee-card-note {
  position: relative;
  z-index: 1;
}

.guarantee-section--fortune .guarantee-card-emphasis {
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(201, 168, 76, 0.16);
  background: rgba(201, 168, 76, 0.05);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.guarantee-section--fortune .guarantee-list-label {
  margin-top: 18px;
  margin-bottom: 14px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: rgba(201, 168, 76, 0.74);
  text-transform: uppercase;
}

.guarantee-section--fortune .guarantee-list {
  gap: 10px;
  margin-top: 0;
}

.guarantee-section--fortune .guarantee-list li {
  padding: 11px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  font-size: 15px;
  line-height: 1.75;
}

.guarantee-section--fortune .guarantee-list li:last-child {
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.guarantee-section--fortune .guarantee-list li i {
  margin-top: 5px;
}

.guarantee-section--fortune .guarantee-card-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed rgba(201, 168, 76, 0.16);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.9;
}

/* ═══════════════════════════════════════════
   6. PRICING PLANS SECTION
═══════════════════════════════════════════ */
.plans-section {
  background: var(--midnight);
  padding: 120px 0;
  position: relative;
}

.plans-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(45, 27, 94, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(26, 74, 60, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

.plan-card {
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.plan-card--featured {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.03);
}

.plan-card-accent {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--goldLight), var(--gold));
}

.plan-card--purple .plan-card-accent {
  background: linear-gradient(90deg, var(--mysticViolet), #7c5fbf, var(--mysticViolet));
}

.plan-card--teal .plan-card-accent {
  background: linear-gradient(90deg, var(--teal), #2a9a84, var(--teal));
}

.plan-card-inner {
  padding: 48px 36px;
}

/* Plan tag */
.plan-tag {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1px solid var(--border-gold);
}

.plan-tag--featured {
  background: linear-gradient(135deg, var(--gold), var(--goldLight));
  color: var(--midnight);
  border-color: transparent;
  font-weight: 600;
}

/* Plan name */
.plan-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.plan-catch {
  font-size: 15px;
  color: #fff;
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

/* Plan price block */
.plan-price-block {
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.plan-price-label {
  font-size: 11px;
  color: #fff;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.plan-price-amount {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.06em;
}

.plan-price-amount em {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  font-weight: 600;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.plan-price-note {
  font-size: 11px;
  color: #fff;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* Plan features */
.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-desc {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-top: 12px;
}

.plans-trial-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.04em;
}

.plans-trial-note i {
  color: var(--gold);
  margin-right: 6px;
}

.plan-features li {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.6;
  padding: 8px 0 8px 20px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

/* ─── Trial Info ─── */
.trial-info {
  margin-top: 32px;
  padding: 24px 28px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: rgba(201, 168, 76, 0.03);
}

.trial-info-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.trial-info-title i {
  margin-right: 8px;
}

.trial-info-text {
  font-size: 14px;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.04em;
}

/* ─── Curriculum Note ─── */
.curriculum-note {
  margin-top: 32px;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.8;
}

.curriculum-section--fortune .curriculum-note {
  margin-top: 40px;
  font-size: 0.88rem;
  color: #fff;
  line-height: 2;
}

/* ═══════════════════════════════════════════
   6.5 RESULTS SECTION
═══════════════════════════════════════════ */
.results-section {
  background: linear-gradient(180deg, #0d0e1a 0%, #141020 50%, #0d0e1a 100%);
  padding: 100px 0;
  position: relative;
}

.results-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

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

.income-model-card {
  padding: 36px 32px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(201, 168, 76, 0.03);
  position: relative;
  overflow: hidden;
}

.income-model-ghost {
  position: absolute;
  top: -18px;
  right: -4px;
  font-family: 'Cinzel', serif;
  font-size: 100px;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.income-model-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}

.income-model-calc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-top: 12px;
}

.income-model-result {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.06em;
}

.income-model-result em {
  font-family: 'Cinzel', serif;
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  color: var(--gold);
}

/* ─── Results Examples (psychic page) ─── */
.results-examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.result-example-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: rgba(201, 168, 76, 0.03);
}

.result-example-num {
  font-family: 'Cinzel', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.result-example-num small {
  font-size: 14px;
  font-weight: 400;
}

.result-example-desc {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   7. BENEFITS SECTION
═══════════════════════════════════════════ */
.benefits-section {
  background: #0d0e1a;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201, 168, 76, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.benefits-section::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.06);
  pointer-events: none;
}

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

.benefit-card {
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 34px 26px 28px;
  position: relative;
  overflow: hidden;
}

/* Left accent border */
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--gold), var(--goldLight));
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: var(--gold);
  margin-bottom: 16px;
}

.benefit-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.benefit-desc {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
   7.5 GUARANTEE / CAREER / MESSAGE SECTIONS
═══════════════════════════════════════════ */
.guarantee-section,
.career-section,
.message-section {
  padding: 100px 0;
  position: relative;
}

.career-section {
  background: #0d0e1a;
}

/* Career Choices */
.career-choices {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}

.career-choice {
  flex: 1;
  text-align: center;
  padding: 40px 28px 36px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.career-or {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: rgba(201, 168, 76, 0.5);
  letter-spacing: 0.05em;
}

.career-choice-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.06);
}

.career-choice-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  line-height: 1.6;
}

.career-choice-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.message-section .overview-body {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.message-section .overview-text {
  font-size: 14px;
  line-height: 2.4;
}

/* (target-list styles moved to overview section above) */

/* ═══════════════════════════════════════════
   8. DETAILS SECTION
═══════════════════════════════════════════ */
.details-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: url('../img/details-bg.jpg') center / cover no-repeat fixed;
}

.details-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 18, 0.88);
  pointer-events: none;
}

.details-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}

/* Main details table */
.details-table {
  border: 1px solid rgba(201, 168, 76, 0.2);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(26, 20, 40, 0.9), rgba(13, 14, 26, 0.92));
  position: relative;
}

.details-box {
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  position: relative;
}

.details-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--goldLight));
}

.details-box-head {
  padding: 22px 32px 18px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.details-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.details-row:last-child {
  border-bottom: none;
}

.dt-label {
  padding: 18px 24px;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  background: rgba(201, 168, 76, 0.06);
  border-right: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
}

.dt-val {
  padding: 18px 24px;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.7;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.dt-price {
  font-family: 'Cinzel', serif;
  font-size: 21px;
  color: var(--gold);
  line-height: 1;
}

.dt-note {
  font-size: 11px;
  color: #fff;
}

/* Sidebar */
.details-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.side-card {
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 24px 22px;
}

.side-card.featured {
  background: rgba(201, 168, 76, 0.04);
  border-color: rgba(201, 168, 76, 0.25);
}

.side-card-head {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
}

.side-card-head span {
  font-size: 17px;
}

.side-card-body {
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.04em;
}

.gold-tag {
  display: inline-block;
  padding: 4px 13px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--gold), var(--goldLight));
  color: var(--midnight);
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.side-bar {
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(201, 168, 76, 0.04);
  border-left: 3px solid var(--gold);
  font-size: 14px;
  color: #fff;
  line-height: 1.85;
  letter-spacing: 0.04em;
}


.btn-course-detail {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border: 1px solid var(--border-gold);
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-course-detail:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  transform: translateY(-2px);
}

.btn-course-detail .btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.btn-course-detail:hover .btn-arrow {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════
   10.5 FORTUNE PAGE SECTION RHYTHM
═══════════════════════════════════════════ */
.plans-section--fortune {
  background:
    radial-gradient(ellipse 52% 58% at 18% 24%, rgba(201, 168, 76, 0.08) 0%, transparent 72%),
    radial-gradient(ellipse 40% 46% at 84% 82%, rgba(26, 74, 60, 0.1) 0%, transparent 70%),
    linear-gradient(180deg, #100f1b 0%, #14101f 48%, #0e0d18 100%);
  overflow: hidden;
}

.plans-section--fortune::before {
  background:
    radial-gradient(ellipse 44% 40% at 22% 78%, rgba(74, 46, 128, 0.18) 0%, transparent 68%),
    radial-gradient(ellipse 36% 34% at 78% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 62%);
}

.plans-section--fortune::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.015) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 72% 62% at 50% 50%, black 24%, transparent 84%);
  -webkit-mask-image: radial-gradient(ellipse 72% 62% at 50% 50%, black 24%, transparent 84%);
  pointer-events: none;
  opacity: 0.75;
}

.plans-section--fortune .section-wrap,
.results-section--fortune .section-wrap,
.career-section--fortune .section-wrap,
.details-section--fortune .section-wrap,
.closing-cta--fortune .cta-inner {
  position: relative;
  z-index: 1;
}

.plans-section--fortune .plans-grid {
  gap: 2px;
  margin-top: 56px;
}

.plans-section--fortune .plan-card {
  border: 1px solid rgba(201, 168, 76, 0.14);
  background:
    radial-gradient(ellipse 90% 70% at 20% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 70%),
    rgba(255, 255, 255, 0.03);
}

.plans-section--fortune .plan-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.plans-section--fortune .plan-card--premium {
  background:
    radial-gradient(ellipse 100% 80% at 18% 0%, rgba(232, 201, 106, 0.09) 0%, transparent 72%),
    rgba(255, 255, 255, 0.038);
}

.plans-section--fortune .plan-card--standard {
  background:
    radial-gradient(ellipse 88% 68% at 20% 0%, rgba(91, 141, 126, 0.09) 0%, transparent 72%),
    rgba(255, 255, 255, 0.026);
}

.plans-section--fortune .plan-card-accent {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.plans-section--fortune .plan-card-inner {
  padding: 44px 34px 38px;
}

.plans-section--fortune .plan-tag {
  padding: 6px 14px;
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.2);
}

.plans-section--fortune .plan-name {
  font-size: 26px;
  line-height: 1.55;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 20px;
}

.plans-section--fortune .plan-price {
  display: block;
}

.plans-section--fortune .plan-price-amount {
  display: inline-block;
  font-size: 16px;
}

.plans-section--fortune .plan-price-amount em {
  font-size: 54px;
  line-height: 0.95;
}

.plan-price-sub {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.05em;
}

.plans-section--fortune .plan-desc {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.plans-note {
  margin-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.8;
}

.plans-section--fortune .trial-info {
  margin-top: 28px;
  padding: 30px 30px 26px;
  border: 1px solid rgba(201, 168, 76, 0.14);
  background:
    linear-gradient(90deg, rgba(201, 168, 76, 0.05) 0%, transparent 35%, rgba(201, 168, 76, 0.02) 100%),
    rgba(255, 255, 255, 0.03);
}

.plans-section--fortune .trial-info-title {
  font-size: 18px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.14);
}

.trial-info-meta {
  margin-bottom: 12px;
}

.trial-info-label {
  margin-bottom: 8px;
  color: rgba(201, 168, 76, 0.9);
  font-size: 0.92rem;
}

.trial-info-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

.trial-info-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.8;
}

.trial-info-list li span {
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

.trial-info-footnote {
  margin-top: 12px;
  font-size: 0.9rem;
  opacity: 0.86;
}

.results-section--fortune {
  background:
    radial-gradient(ellipse 50% 54% at 78% 16%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 44% 48% at 22% 84%, rgba(58, 42, 104, 0.18) 0%, transparent 72%),
    linear-gradient(180deg, #0f0d19 0%, #181221 54%, #100f1a 100%);
  overflow: hidden;
}

.results-section--fortune::before {
  background:
    radial-gradient(ellipse 52% 60% at 50% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
}

.results-section--fortune .income-models {
  gap: 2px;
}

.results-section--fortune .income-model-card {
  padding: 40px 34px 34px;
  border: 1px solid rgba(201, 168, 76, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.results-section--fortune .income-model-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, 0.9) 50%, transparent 100%);
  opacity: 0.6;
}

.results-section--fortune .income-model-title {
  padding-left: 0;
  border-left: none;
  margin-bottom: 18px;
  font-size: 22px;
}

.results-section--fortune .income-model-result {
  font-size: 15px;
}

.results-section--fortune .income-model-result em {
  font-size: 54px;
}

.results-section--fortune .income-model-calc {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.results-note {
  margin-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.8;
}

.career-section--fortune {
  background:
    radial-gradient(ellipse 54% 56% at 16% 22%, rgba(201, 168, 76, 0.07) 0%, transparent 72%),
    radial-gradient(ellipse 50% 52% at 84% 84%, rgba(64, 113, 99, 0.1) 0%, transparent 72%),
    linear-gradient(180deg, #0e0d17 0%, #13111d 100%);
  overflow: hidden;
}

.career-section--fortune::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.012) 1px, transparent 1px);
  background-size: 96px 96px;
  pointer-events: none;
  opacity: 0.6;
}

.career-section--fortune .career-choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.career-section--fortune .career-or {
  display: none;
}

.career-section--fortune .career-choice {
  text-align: left;
  padding: 40px 30px 34px;
  border: 1px solid rgba(201, 168, 76, 0.14);
  background:
    radial-gradient(ellipse 92% 72% at 20% 0%, rgba(201, 168, 76, 0.04) 0%, transparent 72%),
    rgba(255, 255, 255, 0.025);
}

.career-section--fortune .career-choice-icon {
  margin: 0 0 20px;
  border-radius: 18px;
  width: 60px;
  height: 60px;
}

.career-section--fortune .career-choice-title {
  font-size: 22px;
  line-height: 1.55;
}

.career-section--fortune .career-choice-desc {
  color: rgba(255, 255, 255, 0.74);
}

.details-section--fortune {
  background-position: center;
}

.details-section--fortune::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.013) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.013) 1px, transparent 1px);
  background-size: 84px 84px;
  pointer-events: none;
  opacity: 0.6;
}

.details-section--fortune .details-table {
  border: 1px solid rgba(201, 168, 76, 0.16);
  background:
    radial-gradient(ellipse 84% 60% at 18% 0%, rgba(201, 168, 76, 0.04) 0%, transparent 72%),
    rgba(255, 255, 255, 0.03);
}

.details-section--fortune .details-table::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, 0.9) 50%, transparent 100%);
  opacity: 0.65;
}

.details-section--fortune .dt-label {
  background: rgba(201, 168, 76, 0.08);
}

.details-section--fortune .dt-val {
  background: rgba(255, 255, 255, 0.04);
}

.closing-cta--fortune {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 48% 54% at 20% 24%, rgba(201, 168, 76, 0.08) 0%, transparent 72%),
    radial-gradient(ellipse 42% 46% at 84% 76%, rgba(45, 27, 94, 0.28) 0%, transparent 74%),
    linear-gradient(180deg, #0e0d18 0%, #13111d 100%);
}

.closing-cta--fortune .cta-bg {
  background:
    radial-gradient(ellipse 58% 50% at 30% 60%, rgba(45, 27, 94, 0.42) 0%, transparent 60%),
    radial-gradient(ellipse 46% 38% at 72% 34%, rgba(26, 74, 60, 0.22) 0%, transparent 54%),
    radial-gradient(ellipse 26% 20% at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 40%);
}

.closing-cta--fortune .cta-inner {
  max-width: 760px;
  padding: 56px 36px;
  border: none;
  background: transparent;
}

.closing-cta--fortune .cta-eyebrow {
  margin-bottom: 20px;
}

.closing-cta--fortune .cta-title {
  font-size: 30px;
  line-height: 1.7;
}

.closing-cta--fortune .cta-subtitle {
  color: rgba(255, 255, 255, 0.86);
}

.closing-cta--fortune .cta-bottom-note {
  color: rgba(255, 255, 255, 0.78);
}

/* ═══════════════════════════════════════════
   10.6 PSYCHIC PAGE
═══════════════════════════════════════════ */
.stat-strip--psychic .stat-strip-inner.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.overview-section--psychic {
  background: var(--midnight);
}

.overview-quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.2em;
  font-style: italic;
  opacity: 0.92;
}

.recommend-section--psychic {
  margin-top: 40px;
  background:
    radial-gradient(ellipse 88% 68% at 20% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 70%),
    rgba(255, 255, 255, 0.03);
}

.recommend-section--psychic .recommend-header {
  margin-bottom: 40px;
}

.recommend-section--psychic .recommend-title {
  margin-bottom: 0;
}

.recommend-section--psychic .recommend-cards {
  align-content: start;
}

.benefits-section--psychic {
  background:
    linear-gradient(rgba(10, 10, 18, 0.88), rgba(10, 10, 18, 0.9)),
    url('../img/psychic-program-bg.jpg') center / cover no-repeat fixed;
}

.benefits-grid--psychic {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.benefits-section--psychic .benefit-card {
  background:
    radial-gradient(ellipse 90% 72% at 18% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 72%),
    rgba(255, 255, 255, 0.03);
}

.benefits-section--psychic .benefit-desc--stack {
  display: grid;
  gap: 14px;
}

.benefits-section--psychic .benefit-desc--stack p {
  margin: 0;
}

.benefits-section--psychic .benefit-emphasis {
  padding: 12px 14px;
  border: 1px solid rgba(201, 168, 76, 0.16);
  background: rgba(201, 168, 76, 0.06);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.85;
}

.curriculum-section--psychic {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: url('../img/curriculum-bg.jpg') center / cover no-repeat fixed;
}

.curriculum-section--psychic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 18, 0.88);
  pointer-events: none;
}

.curriculum-section--psychic::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 80%);
  pointer-events: none;
  opacity: 0.9;
}

.curriculum-section--psychic .curriculum-wrap {
  position: relative;
  z-index: 1;
}

.curriculum-section--psychic .curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.curriculum-section--psychic .curr-card {
  position: relative;
  overflow: hidden;
  padding: 36px 28px 30px;
  border: 1px solid rgba(201, 168, 76, 0.14);
  background: rgba(255, 255, 255, 0.025);
}

.curriculum-section--psychic .curr-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  background-size: 200% 100%;
  opacity: 0.6;
  animation: curriculumShimmerLine 4s ease-in-out infinite;
}

.curriculum-section--psychic .curr-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.curriculum-section--psychic .curr-card--accent {
  border-left: 2px solid rgba(201, 168, 76, 0.35);
}

.curriculum-section--psychic .curr-title--featured {
  color: #fff;
  font-size: 1.24rem;
}

.curriculum-section--psychic .curr-accent-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.06) 0%, transparent 100%);
  pointer-events: none;
}

.curriculum-section--psychic .curr-num,
.curriculum-section--psychic .curr-title,
.curriculum-section--psychic .curr-desc {
  position: relative;
  z-index: 1;
}

.curriculum-section--psychic .curr-num {
  position: relative;
  top: auto;
  right: auto;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.curriculum-section--psychic .curr-num::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(201, 168, 76, 0.35);
}

.curriculum-section--psychic .curr-ghost {
  position: absolute;
  right: 12px;
  bottom: -8px;
  font-family: 'Cinzel', serif;
  font-size: 84px;
  font-weight: 700;
  line-height: 1;
  color: rgba(201, 168, 76, 0.04);
  pointer-events: none;
  user-select: none;
}

.curriculum-section--psychic .curr-title {
  font-size: 1.22rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.65;
  margin-bottom: 10px;
  padding-bottom: 0;
  border-bottom: 0;
}

.curriculum-section--psychic .curr-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.curriculum-note-sub {
  margin-top: 0.6rem;
}

.plans-section--psychic {
  background:
    radial-gradient(ellipse 48% 54% at 16% 18%, rgba(232, 201, 106, 0.08) 0%, transparent 72%),
    radial-gradient(ellipse 42% 48% at 82% 82%, rgba(58, 42, 104, 0.18) 0%, transparent 74%),
    linear-gradient(180deg, #100f1b 0%, #14101f 48%, #0e0d18 100%);
}

.plans-section--psychic .plans-grid {
  grid-template-columns: repeat(3, 1fr);
}

.results-section--psychic {
  background:
    linear-gradient(rgba(10, 10, 18, 0.88), rgba(10, 10, 18, 0.92)),
    url('../img/psychic-results-bg.jpg') center / cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}

.results-section--psychic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 18, 0.78);
  pointer-events: none;
}

.results-section--psychic .section-wrap {
  position: relative;
  z-index: 1;
}

.results-section--psychic .results-examples {
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.results-section--psychic .result-example-card {
  padding: 42px 28px 36px;
  border: 1px solid rgba(201, 168, 76, 0.14);
  background:
    radial-gradient(ellipse 90% 70% at 20% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 70%),
    rgba(255, 255, 255, 0.03);
}

.results-section--psychic .result-example-num {
  font-size: 48px;
}

.results-section--psychic .result-example-desc {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
}

.details-section--psychic {
  background:
    linear-gradient(rgba(10, 10, 18, 0.88), rgba(10, 10, 18, 0.9)),
    url('../img/psychic-details-bg.jpg') center / cover no-repeat fixed;
}

.closing-cta--psychic {
  background:
    radial-gradient(ellipse 52% 56% at 20% 26%, rgba(201, 168, 76, 0.07) 0%, transparent 72%),
    radial-gradient(ellipse 44% 48% at 82% 74%, rgba(44, 84, 112, 0.22) 0%, transparent 74%),
    linear-gradient(180deg, #0e0d18 0%, #13111d 100%);
}

@media (max-width: 1024px) {
  .plans-section--psychic .plans-grid {
    grid-template-columns: 1fr;
  }

  .curriculum-section--psychic .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .curriculum-section--psychic .curr-card {
    padding: 32px 24px 28px;
  }

  .curriculum-section--psychic .curr-ghost {
    font-size: 64px;
  }

  .results-section--psychic .results-examples {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .stat-strip--psychic .stat-strip-inner.cols-3 {
    grid-template-columns: 1fr;
  }

  .recommend-section--psychic {
    margin-top: 32px;
  }

  .benefits-section--psychic .benefit-desc--stack {
    gap: 12px;
  }

  .curriculum-section--psychic {
    padding: 72px 0;
  }

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

@media (max-width: 600px) {
  .recommend-section--psychic {
    padding: 36px 20px;
  }

  .benefits-section--psychic .benefit-emphasis {
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.8;
  }

  .curriculum-section--psychic {
    padding: 56px 0;
  }

  .curriculum-section--psychic .curriculum-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 32px;
  }

  .curriculum-section--psychic .curr-card {
    padding: 28px 22px 24px;
  }

  .curriculum-section--psychic .curr-title {
    font-size: 1rem;
  }

  .curriculum-section--psychic .curr-ghost {
    font-size: 52px;
    right: 8px;
  }

  .results-section--psychic .result-example-card {
    padding: 26px 20px 22px;
  }

  .results-section--psychic .result-example-num {
    font-size: 36px;
  }
}

/* ═══════════════════════════════════════════
   11. ANIMATIONS
═══════════════════════════════════════════ */
.fade-left {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — 1024px
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .section-wrap {
    padding: 0 32px;
  }

  .stat-strip-inner {
    padding: 0 32px;
  }

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

  .details-layout {
    grid-template-columns: 1fr;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hero */
  .page-hero {
    padding: 100px 24px 60px;
  }

  .page-title-ja {
    font-size: 34px;
  }

  .page-subtitle {
    font-size: 14px;
  }

  /* Section common */
  .section-wrap {
    padding: 0 20px;
  }

  .section-header-center {
    margin-bottom: 40px;
  }

  .section-title-ja {
    font-size: 28px;
  }

  /* Stat strip */
  .stat-strip-inner {
    padding: 0;
    grid-template-columns: 1fr 1fr;
  }

  .stat-block:nth-child(2) {
    border-right: none;
  }

  .stat-block:nth-child(3) {
    border-top: 1px solid rgba(201, 168, 76, 0.1);
  }

  .stat-block:nth-child(4) {
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    border-right: none;
  }

  .stat-num {
    font-size: 26px;
  }

  .stat-strip--fortune .stat-strip-inner {
    gap: 12px;
    padding: 18px 0;
  }

  .stat-strip--fortune .stat-block {
    padding: 28px 18px 24px;
    border-right: 1px solid rgba(201, 168, 76, 0.14);
  }

  .stat-strip--fortune .stat-block:nth-child(2) {
    border-right: 1px solid rgba(201, 168, 76, 0.14);
  }

  .stat-strip--fortune .stat-block:nth-child(3),
  .stat-strip--fortune .stat-block:nth-child(4) {
    border-top: 1px solid rgba(201, 168, 76, 0.14);
  }

  .stat-strip--fortune .stat-icon-wrap {
    width: 44px;
    height: 44px;
  }

  .stat-strip--fortune .stat-kicker {
    font-size: 9px;
    letter-spacing: 0.22em;
  }

  .stat-strip--fortune .stat-num {
    font-size: 34px;
  }

  .stat-strip--fortune .stat-num small {
    font-size: 14px;
  }

  .stat-strip--fortune .stat-label {
    font-size: 11px;
  }

  /* Overview */
  .overview-section {
    padding: 72px 0;
  }

  .overview-layout {
    gap: 24px;
  }

  .overview-lead {
    font-size: 16px;
  }

  .recommend-section {
    padding: 44px 32px;
  }

  .recommend-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .recommend-title {
    font-size: 1.35rem;
  }

  .overview-lead-text {
    font-size: 14px;
    margin-bottom: 40px;
  }

  /* Curriculum */
  .curriculum-section {
    padding: 72px 0;
  }

  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .curr-title {
    font-size: 16px;
  }

  .curriculum-section--fortune .curriculum-header {
    margin-bottom: 52px;
  }

  .curriculum-section--fortune .curriculum-header-title {
    font-size: 1.4rem;
  }

  .curriculum-section--fortune .curr-card {
    padding: 32px 24px 28px;
  }

  .curriculum-section--fortune .curr-card--wide {
    grid-template-columns: auto 1fr;
    gap: 20px;
  }

  .curriculum-section--fortune .curr-card--wide .curr-desc {
    grid-column: 1 / -1;
    text-align: left;
    white-space: normal;
  }

  .curriculum-section--fortune .curr-ghost {
    font-size: 64px;
  }

  /* Plans */
  .plans-section {
    padding: 72px 0;
  }

  .plan-card-inner {
    padding: 32px 24px;
  }

  .plan-name {
    font-size: 18px;
  }

  .plan-price-amount em {
    font-size: 28px;
  }

  .plans-section--fortune .plans-grid {
    gap: 16px;
  }

  .plans-section--fortune .plan-card-inner {
    padding: 34px 24px 30px;
  }

  .plans-section--fortune .plan-name {
    font-size: 21px;
  }

  .plans-section--fortune .plan-price-amount em {
    font-size: 40px;
  }

  .plans-section--fortune .trial-info {
    padding: 24px 24px 22px;
  }

  /* Benefits */
  .benefits-section {
    padding: 72px 0;
  }

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

  .guarantee-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .guarantee-section--accent {
    padding: 80px 0;
  }

  .guarantee-section--accent .section-title-ja {
    font-size: 28px;
  }

  .guarantee-card {
    padding: 28px 24px;
  }

  .guarantee-section--fortune .guarantee-grid {
    gap: 16px;
  }

  .guarantee-section--fortune .guarantee-card {
    padding: 34px 26px 30px;
  }

  .guarantee-section--fortune .guarantee-card-title {
    font-size: 24px;
  }

  .results-section--fortune .income-models {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .results-section--fortune .income-model-card {
    padding: 32px 26px 28px;
  }

  .results-section--fortune .income-model-title {
    font-size: 20px;
  }

  .results-section--fortune .income-model-result em {
    font-size: 44px;
  }

  .career-choices {
    flex-direction: column;
    gap: 0;
  }

  .career-section--fortune .career-choices {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .career-section--fortune .career-choice {
    padding: 32px 24px 28px;
  }

  .career-section--fortune .career-choice-title {
    font-size: 20px;
  }

  .career-or {
    width: auto;
    height: 32px;
    padding: 0;
  }

  /* Details */
  .details-section {
    padding: 72px 0;
  }

  .details-row {
    grid-template-columns: 120px 1fr;
  }

  .dt-label {
    font-size: 11px;
    padding: 14px 14px;
  }

  .dt-val {
    font-size: 14px;
    padding: 14px 16px;
  }

  .closing-cta--fortune .cta-inner {
    max-width: 680px;
    padding: 42px 28px;
  }

  .closing-cta--fortune .cta-title {
    font-size: 26px;
  }

  /* CTA */
  .closing-cta {
    padding: 80px 0;
  }

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Buttons */
  .btn-primary-cta,
  .btn-secondary-cta {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }

  .btn-course-detail {
    width: 100%;
    justify-content: center;
  }

  /* Guarantee / Career / Message */
  .guarantee-section,
  .career-section,
  .message-section {
    padding: 72px 0;
  }

  .message-section .overview-text {
    font-size: 14px;
  }

  /* Results */
  .results-section {
    padding: 72px 0;
  }

  .results-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
  }

  .result-stat-num {
    font-size: 36px;
  }

  .income-models {
    grid-template-columns: 1fr;
  }

  .income-model-result em {
    font-size: 32px;
  }

  .results-examples {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .result-example-num {
    font-size: 32px;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — 480px
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Hero */
  .page-hero {
    padding: 90px 16px 48px;
  }

  .page-title-ja {
    font-size: 28px;
  }

  .breadcrumb {
    font-size: 10px;
  }

  .section-title-ja {
    font-size: 24px;
  }

  /* Section common */
  .section-wrap {
    padding: 0 16px;
  }

  /* Stat strip */
  .stat-strip-inner {
    grid-template-columns: 1fr;
  }

  .stat-block {
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding: 20px 16px;
    flex-direction: row;
    justify-content: space-between;
  }

  .stat-block:last-child {
    border-bottom: none;
  }

  .stat-block:nth-child(3),
  .stat-block:nth-child(4) {
    border-top: none;
  }

  .stat-num {
    font-size: 24px;
  }

  .stat-icon {
    margin-bottom: 0;
    margin-right: 12px;
  }

  .stat-strip--fortune .stat-strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px 0;
  }

  .stat-strip--fortune .stat-block {
    padding: 18px 14px 16px;
    border-right: 1px solid rgba(201, 168, 76, 0.14);
    border-bottom: 1px solid rgba(201, 168, 76, 0.14);
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .stat-strip--fortune .stat-block:last-child {
    border-bottom: 1px solid rgba(201, 168, 76, 0.14);
  }

  .stat-strip--fortune .stat-block:nth-child(2) {
    border-right: 1px solid rgba(201, 168, 76, 0.14);
  }

  .stat-strip--fortune .stat-block:nth-child(3),
  .stat-strip--fortune .stat-block:nth-child(4) {
    border-top: 1px solid rgba(201, 168, 76, 0.14);
  }

  .stat-strip--fortune .stat-icon-wrap {
    width: 36px;
    height: 36px;
    margin-bottom: 0;
  }

  .stat-strip--fortune .stat-icon {
    margin-right: 0;
    font-size: 14px;
  }

  .stat-strip--fortune .stat-kicker {
    font-size: 8px;
    letter-spacing: 0.16em;
  }

  .stat-strip--fortune .stat-num {
    font-size: 28px;
  }

  .stat-strip--fortune .stat-num small {
    font-size: 12px;
  }

  .stat-strip--fortune .stat-label {
    font-size: 9px;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }

  /* Overview */
  .overview-section {
    padding: 56px 0;
  }

  .overview-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .overview-accent {
    display: none;
  }

  .overview-lead {
    font-size: 15px;
  }

  .overview-text {
    font-size: 14px;
  }

  .overview-lead-text {
    font-size: 14px;
    margin-bottom: 32px;
    text-align: left;
  }

  .recommend-section {
    padding: 36px 20px;
  }

  .recommend-header {
    margin-bottom: 36px;
  }

  .recommend-label {
    font-size: 10px;
  }

  .recommend-title {
    font-size: 1.15rem;
  }

  .recommend-item {
    gap: 14px;
    padding: 14px 0;
  }

  .recommend-text {
    font-size: 0.9rem;
  }

  .recommend-text strong {
    font-size: 1.4em;
  }

  .recommend-card {
    padding: 22px 20px 22px 24px;
  }

  .recommend-card-number {
    font-size: 40px;
  }

  .recommend-card-icon {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .recommend-card-value em {
    font-size: 40px;
  }

  /* Curriculum */
  .curriculum-section {
    padding: 56px 0;
  }

  .curriculum-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 32px;
  }

  .curriculum-section--fortune .curriculum-grid {
    margin-top: 0;
  }

  .curriculum-section--fortune .curriculum-header {
    margin-bottom: 44px;
  }

  .curriculum-section--fortune .curriculum-header-title {
    font-size: 1.15rem;
  }

  .curriculum-section--fortune .curriculum-header-title small {
    display: block;
    margin-left: 0;
    margin-top: 4px;
    line-height: 0.8;
  }

  .curriculum-section--fortune .curr-card {
    padding: 28px 22px 24px;
  }

  .curriculum-section--fortune .curr-card--wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 22px;
  }

  .curr-title {
    font-size: 15px;
  }

  .curriculum-section--fortune .curr-title {
    font-size: 1.3rem;
  }

  .curriculum-section--fortune .curr-ghost {
    font-size: 52px;
    right: 8px;
  }

  .curriculum-section--fortune .curr-card--wide .curr-num {
    margin-bottom: 0;
  }

  .curriculum-section--fortune .curr-card--wide .curr-desc {
    text-align: left;
    white-space: normal;
  }

  .curriculum-section--fortune .curr-card--wide .curr-ghost {
    font-size: 48px;
  }

  .curriculum-section--fortune .curriculum-note {
    font-size: 0.82rem;
    margin-top: 28px;
  }

  /* Plans */
  .plans-section {
    padding: 56px 0;
  }

  .plans-grid {
    margin-top: 40px;
    max-width: none;
  }

  .plan-card-inner {
    padding: 28px 20px;
  }

  .plan-name {
    font-size: 17px;
  }

  .plan-price-amount em {
    font-size: 24px;
  }

  .plans-section--fortune .plans-grid {
    gap: 12px;
    margin-top: 36px;
  }

  .plans-section--fortune .plan-card-inner {
    padding: 28px 20px 24px;
  }

  .plans-section--fortune .plan-name {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .plans-section--fortune .plan-price-amount em {
    font-size: 34px;
  }

  .plan-price-sub {
    font-size: 0.82rem;
  }

  .plans-note {
    margin-top: 16px;
    font-size: 0.84rem;
    line-height: 1.75;
  }

  .plans-section--fortune .trial-info {
    margin-top: 20px;
    padding: 22px 18px 18px;
  }

  .plans-section--fortune .trial-info-title {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .trial-info-meta,
  .trial-info-label,
  .trial-info-footnote,
  .trial-info-list li {
    font-size: 0.84rem;
    line-height: 1.75;
  }

  /* Benefits */
  .benefits-section {
    padding: 56px 0;
  }

  .benefit-card {
    padding: 24px 20px 20px;
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 12px;
  }

  .benefit-title {
    font-size: 14px;
  }

  .benefit-desc {
    font-size: 11.5px;
  }

  .guarantee-section--accent {
    padding: 56px 0;
  }

  .guarantee-card {
    padding: 24px 20px;
  }

  .guarantee-card-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .guarantee-card-title {
    font-size: 18px;
  }

  .guarantee-section--fortune .guarantee-grid {
    gap: 12px;
  }

  .guarantee-section--fortune .guarantee-card {
    padding: 28px 20px 24px;
  }

  .guarantee-section--fortune .guarantee-card-kicker {
    font-size: 9px;
    letter-spacing: 0.2em;
    margin-bottom: 14px;
  }

  .guarantee-section--fortune .guarantee-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
    border-radius: 14px;
    font-size: 20px;
  }

  .guarantee-section--fortune .guarantee-card-title {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .guarantee-section--fortune .guarantee-card-desc {
    font-size: 13px;
    line-height: 1.9;
  }

  .guarantee-section--fortune .guarantee-card-emphasis {
    margin-top: 16px;
    padding: 12px 14px;
    font-size: 12px;
    line-height: 1.8;
  }

  .guarantee-section--fortune .guarantee-list-label {
    margin-top: 14px;
    margin-bottom: 10px;
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .guarantee-section--fortune .guarantee-list li {
    padding: 9px 0;
    font-size: 13px;
    gap: 8px;
  }

  .guarantee-section--fortune .guarantee-card-note {
    margin-top: 14px;
    padding-top: 14px;
    font-size: 12px;
    line-height: 1.8;
  }

  .results-section--fortune .income-models {
    gap: 12px;
  }

  .results-section--fortune .income-model-card {
    padding: 26px 20px 22px;
  }

  .results-section--fortune .income-model-title {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .results-section--fortune .income-model-result {
    font-size: 13px;
  }

  .results-section--fortune .income-model-result em {
    font-size: 34px;
  }

  .results-section--fortune .income-model-calc {
    font-size: 12px;
    line-height: 1.75;
  }

  .results-note {
    margin-top: 16px;
    font-size: 0.84rem;
    line-height: 1.75;
  }

  .career-choice {
    padding: 28px 20px;
  }

  .career-choice-title {
    font-size: 16px;
  }

  .career-section--fortune .career-choices {
    gap: 12px;
  }

  .career-section--fortune .career-choice {
    padding: 26px 20px 22px;
  }

  .career-section--fortune .career-choice-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 14px;
    font-size: 20px;
  }

  .career-section--fortune .career-choice-title {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .career-section--fortune .career-choice-desc {
    font-size: 13px;
    line-height: 1.8;
  }

  /* Details */
  .details-section {
    padding: 56px 0;
  }

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

  .dt-label {
    border-right: none;
    border-bottom: none;
    padding: 14px 16px 8px;
    font-size: 12px;
  }

  .dt-val {
    padding: 8px 16px 14px;
  }

  .details-section--fortune .details-table {
    border-color: rgba(201, 168, 76, 0.14);
  }

  .side-card {
    padding: 20px 16px;
  }

  /* CTA */
  .closing-cta {
    padding: 64px 0;
  }

  .cta-title {
    font-size: 20px;
  }

  .cta-subtitle {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .cta-ornament {
    width: 240px;
    height: 240px;
  }

  .closing-cta--fortune .cta-inner {
    padding: 34px 18px;
  }

  .closing-cta--fortune .cta-title {
    font-size: 22px;
    line-height: 1.6;
  }

  .closing-cta--fortune .cta-subtitle {
    font-size: 13px;
    line-height: 2;
  }

  /* Buttons */
  .btn-primary-cta,
  .btn-secondary-cta {
    padding: 14px 28px;
    font-size: 14px;
    max-width: none;
  }

  .btn-course-detail {
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* ═══════════════════════════════════════════
   LIGHT THEME OVERRIDES
   For content-heavy sections: overview,
   benefits/program, guarantee, plans, results(psychic)
═══════════════════════════════════════════ */

/* ─── Overview Section (Light) ─── */
.overview-section.light-section {
  background: #fff;
}

.overview-section.light-section::before {
  background:
    radial-gradient(ellipse 40% 60% at 90% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.overview-section.light-section .overview-lead-text {
  color: #4a4060;
}

.overview-section.light-section .overview-text {
  color: #4a4060;
}

.overview-section.light-section .recommend-section {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
    #f5f3fa;
  border-color: rgba(201, 168, 76, 0.22);
}

.overview-section.light-section .recommend-title {
  color: #1a1520;
}

.overview-section.light-section .recommend-text {
  color: #4a4060;
}

.overview-section.light-section .recommend-text strong {
  color: #9a7b2c;
}

.overview-section.light-section .recommend-item {
  border-bottom-color: rgba(74, 64, 96, 0.1);
}

.overview-section.light-section .recommend-card {
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(201, 168, 76, 0.03) 100%);
  border-color: rgba(201, 168, 76, 0.22);
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.06);
}

.overview-section.light-section .recommend-card-value {
  color: #1a1520;
}

.overview-section.light-section .recommend-card-value small {
  color: #8a80a0;
}

.overview-section.light-section .overview-info {
  border-top-color: rgba(201, 168, 76, 0.15);
}

.overview-section.light-section .overview-info-value {
  color: #4a4060;
}

.overview-section.light-section .overview-lead {
  color: #1a1520;
}

/* ─── Benefits / Program Section (Light) ─── */
.benefits-section.light-section {
  background: #f5f3fa;
}

.benefits-section.light-section::before {
  background-image: radial-gradient(circle, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
}

.benefits-section.light-section::after {
  border-color: rgba(201, 168, 76, 0.1);
}

.benefits-section.light-section .benefit-card {
  background: rgba(201, 168, 76, 0.04);
  border-color: rgba(201, 168, 76, 0.18);
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.06);
}

.benefits-section.light-section .benefit-title {
  color: #1a1520;
}

.benefits-section.light-section .benefit-desc {
  color: #4a4060;
}

.benefits-section.light-section .benefit-emphasis {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.2);
  color: #4a4060;
}

/* ─── Guarantee Section (Light) ─── */
.guarantee-section--accent.light-section {
  background: #fff;
}

.guarantee-section--accent.light-section::before {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}

.guarantee-section--accent.light-section::after {
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
}

.guarantee-section--accent.light-section .guarantee-card {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, rgba(245, 243, 250, 1) 100%);
  border-color: rgba(201, 168, 76, 0.22);
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.06);
}

.guarantee-section--accent.light-section .guarantee-card-title {
  color: #1a1520;
}

.guarantee-section--accent.light-section .guarantee-card-desc {
  color: #4a4060;
}

.guarantee-section--accent.light-section .guarantee-card-emphasis {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.2);
  color: #4a4060;
}

.guarantee-section--accent.light-section .guarantee-list li {
  color: #1a1520;
  border-top-color: rgba(201, 168, 76, 0.15);
}

.guarantee-section--accent.light-section .guarantee-list li:last-child {
  border-bottom-color: rgba(201, 168, 76, 0.15);
}

.guarantee-section--accent.light-section .guarantee-card-note {
  color: #4a4060;
  border-top-color: rgba(201, 168, 76, 0.2);
}

/* ─── Plans Section (Light) ─── */
.plans-section.light-section {
  background: #f5f3fa;
}

.plans-section.light-section::before {
  background:
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
}

.plans-section.light-section::after {
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.025) 1px, transparent 1px);
}

.plans-section.light-section .plan-card {
  background: rgba(201, 168, 76, 0.03);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.06);
}

.plans-section.light-section .plan-card--premium {
  background:
    radial-gradient(ellipse 100% 80% at 18% 0%, rgba(232, 201, 106, 0.12) 0%, transparent 72%),
    rgba(201, 168, 76, 0.03);
}

.plans-section.light-section .plan-card--standard {
  background:
    radial-gradient(ellipse 88% 68% at 20% 0%, rgba(91, 141, 126, 0.08) 0%, transparent 72%),
    rgba(201, 168, 76, 0.03);
}

.plans-section.light-section .plan-card--featured {
  background:
    radial-gradient(ellipse 100% 80% at 18% 0%, rgba(232, 201, 106, 0.14) 0%, transparent 72%),
    rgba(201, 168, 76, 0.04);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.1);
}

.plans-section.light-section .plan-name {
  color: #1a1520;
}

.plans-section.light-section .plan-catch {
  color: #4a4060;
}

.plans-section.light-section .plan-desc {
  color: #4a4060;
}

.plans-section.light-section .plan-price-amount {
  color: #1a1520;
}

.plans-section.light-section .plan-price-sub {
  color: #4a4060;
}

.plans-section.light-section .plan-price-note {
  color: #4a4060;
}

.plans-section.light-section .plan-features li {
  color: #4a4060;
  border-bottom-color: rgba(74, 64, 96, 0.08);
}

.plans-section.light-section .plans-note {
  color: #4a4060;
}

.plans-section.light-section .trial-info {
  background: rgba(201, 168, 76, 0.04);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.06);
}

.plans-section.light-section .trial-info-text {
  color: #4a4060;
}

.plans-section.light-section .plan-card::before {
  border-color: rgba(201, 168, 76, 0.04);
}

/* ─── Results Section (Light) — for psychic page ─── */
.results-section.light-section {
  background: #fff;
}

.results-section.light-section::before {
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
}

.results-section.light-section .result-example-card {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, rgba(245, 243, 250, 1) 100%);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.06);
}

.results-section.light-section .result-example-desc {
  color: #4a4060;
}

/* ─── Benefit cards inside any light-section ─── */
.light-section .benefit-card {
  background: rgba(201, 168, 76, 0.04);
  border-color: rgba(201, 168, 76, 0.18);
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.06);
}

.light-section .benefit-title {
  color: #1a1520;
}

.light-section .benefit-desc {
  color: #4a4060;
}

/* ─── Guarantee Message Section (Light) — for video page ─── */
.guarantee-section.light-section {
  background: #f5f3fa;
}

.guarantee-section.light-section .overview-text {
  color: #4a4060;
}
