/* =========================================================
   Homoney 資產複利平台 — Brand Style
   Forest Green + Antique Gold + Warm Cream
   ========================================================= */

:root {
  /* Brand Color (好家來 Homoney) */
  --forest-900: #2C3E2E;
  --forest-800: #3D7A5F;
  --forest-700: #4A8C6F;   /* primary */
  --forest-600: #5DA084;
  --forest-500: #7DBD9F;
  --forest-100: #E5F1EA;

  --gold-700: #A57A24;
  --gold-600: #C9973A;     /* accent */
  --gold-500: #D4A852;
  --gold-400: #DFBA75;
  --gold-100: #F3E6C8;

  --cream-50: #FDFCF7;
  --cream-100: #F8F6F0;    /* surface */
  --cream-200: #F1ECDF;
  --cream-300: #E8E2CE;
  --line: #E5DFC9;
  --line-2: #D6CFB5;

  --ink-900: #1F2D24;
  --ink-800: #2C3E2E;
  --ink-700: #3D4B3F;
  --ink-500: #6B7268;
  --ink-400: #8A8E84;

  /* Typography */
  --font-serif: "Noto Serif TC", "Source Han Serif TC", "Songti TC", serif;
  --font-sans: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", "Noto Serif TC", serif;
  --font-num: "Inter", "Noto Sans TC", sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(44, 62, 46, 0.06), 0 1px 1px rgba(44, 62, 46, 0.04);
  --shadow-md: 0 4px 14px rgba(44, 62, 46, 0.09), 0 2px 6px rgba(44, 62, 46, 0.05);
  --shadow-lg: 0 20px 48px rgba(44, 62, 46, 0.14), 0 8px 20px rgba(44, 62, 46, 0.08);
  --shadow-gold: 0 10px 28px rgba(201, 151, 58, 0.32);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-800);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ===== Utility ===== */
.text-gold { color: var(--gold-600); font-style: normal; }
.text-gold-soft { color: var(--gold-400); }
.text-light { color: var(--cream-50); }
.text-light-muted { color: rgba(253, 252, 247, 0.78); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-800);
  margin-bottom: 14px;
}
.eyebrow--gold { color: var(--gold-600); }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 252, 247, 0.88);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 78px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--forest-700);
}
.logo__mark {
  flex-shrink: 0;
  border-radius: 8px;
}
.logo__text { display: flex; flex-direction: column; line-height: 1.15; gap: 2px; }
.logo__brand {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--forest-900);
}
.logo__tagline {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.nav { display: none; gap: 30px; }
.nav a {
  font-size: 15px;
  color: var(--ink-700);
  font-weight: 500;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav a:hover { color: var(--forest-700); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }
@media (min-width: 980px) { .nav { display: flex; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
  font-family: var(--font-sans);
}
.btn--primary {
  background: var(--forest-700);
  color: var(--cream-50);
  border-color: var(--forest-700);
}
.btn--primary:hover {
  background: var(--forest-800);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--forest-700);
  border-color: var(--forest-700);
}
.btn--ghost:hover {
  background: var(--forest-700);
  color: var(--cream-50);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: var(--forest-900);
  border-color: var(--gold-600);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--final {
  font-size: 17px;
  padding: 18px 40px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--cream-100);
  overflow: hidden;
  padding: 96px 0 88px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(74, 140, 111, 0.08) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.6;
}
.hero__glow {
  position: absolute;
  top: -8%; right: -15%;
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201, 151, 58, 0.18), transparent 65%);
  filter: blur(50px);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1024px) { .hero__inner { grid-template-columns: 1.1fr 0.9fr; gap: 60px; } }

.hero__content { max-width: 640px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 18px;
  border: 1px solid rgba(74, 140, 111, 0.3);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--forest-800);
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.7);
}
.hero__eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-600);
  box-shadow: 0 0 0 4px rgba(201, 151, 58, 0.18);
  animation: pulseDot 2.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201, 151, 58, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(201, 151, 58, 0.04); }
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.25;
  color: var(--forest-900);
  margin-bottom: 26px;
  letter-spacing: -0.015em;
  font-weight: 700;
}
.hero__title em { font-style: normal; }
.hero__sub {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-700);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.hero__points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-700);
}
.hero__points li span {
  display: inline-flex;
  width: 20px; height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--forest-100);
  color: var(--forest-700);
  font-size: 12px;
  font-weight: 700;
}

/* Hero Flywheel */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flywheel {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
}
.flywheel__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotate 60s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.flywheel__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest-700), var(--forest-800));
  color: var(--gold-400);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg), inset 0 0 0 6px rgba(253, 252, 247, 0.08);
  z-index: 2;
}
.flywheel__label {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream-50);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.flywheel__sub {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold-400);
  margin-top: 4px;
  text-transform: uppercase;
}
.flywheel__node {
  position: absolute;
  width: 92px;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  z-index: 1;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.flywheel__node:hover {
  transform: scale(1.06);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-500);
}
.flywheel__node .node-num {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-600);
}
.flywheel__node .node-label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--forest-900);
  margin-top: 2px;
  white-space: nowrap;
}
/* Position 6 nodes around a circle */
.flywheel__node--1 { top: 0;    left: 50%; transform: translate(-50%, 0); }
.flywheel__node--2 { top: 25%;  right: 0;  transform: translate(20%, -50%); }
.flywheel__node--3 { bottom: 25%; right: 0; transform: translate(20%, 50%); }
.flywheel__node--4 { bottom: 0; left: 50%; transform: translate(-50%, 0); }
.flywheel__node--5 { bottom: 25%; left: 0; transform: translate(-20%, 50%); }
.flywheel__node--6 { top: 25%;  left: 0;  transform: translate(-20%, -50%); }
.flywheel__node--1:hover { transform: translate(-50%, 0) scale(1.06); }
.flywheel__node--2:hover { transform: translate(20%, -50%) scale(1.06); }
.flywheel__node--3:hover { transform: translate(20%, 50%) scale(1.06); }
.flywheel__node--4:hover { transform: translate(-50%, 0) scale(1.06); }
.flywheel__node--5:hover { transform: translate(-20%, 50%) scale(1.06); }
.flywheel__node--6:hover { transform: translate(-20%, -50%) scale(1.06); }

@media (max-width: 600px) {
  .flywheel { max-width: 320px; }
  .flywheel__node { width: 78px; padding: 8px 8px; }
  .flywheel__node .node-label { font-size: 11px; }
  .flywheel__center { width: 110px; height: 110px; }
  .flywheel__label { font-size: 18px; }
}

/* ===== Generic Section ===== */
.section { padding: 100px 0; }
@media (max-width: 768px) { .section { padding: 68px 0; } }
.section__header { margin-bottom: 60px; max-width: 760px; }
.section__header--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__title {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.3;
  margin: 0 0 16px;
}
.section__deck {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-500);
}
.section__deck strong { color: var(--forest-900); }

/* ===== Philosophy (3 layers) ===== */
.section--philosophy { background: var(--cream-50); }
.layers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
@media (min-width: 768px) { .layers { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.layer {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.layer:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--forest-500);
}
.layer--featured {
  background: linear-gradient(180deg, var(--forest-100), #fff);
  border-color: var(--forest-500);
  box-shadow: var(--shadow-sm);
}
.layer__num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold-600);
  margin-bottom: 14px;
  font-weight: 600;
}
.layer__title {
  font-size: 28px;
  color: var(--forest-900);
  margin-bottom: 4px;
}
.layer__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-500);
  margin-bottom: 18px;
}
.layer__body {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--ink-700);
  margin-bottom: 20px;
}
.layer__body strong { color: var(--forest-900); }
.layer__items {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.layer__items li {
  font-size: 14px;
  color: var(--ink-500);
  padding-left: 18px;
  position: relative;
  line-height: 1.65;
}
.layer__items li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-600);
}
.philosophy__quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.philosophy__quote p {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.7;
  color: var(--forest-900);
  margin: 0;
}
.philosophy__quote em { font-style: normal; font-weight: 600; }

/* ===== Path (6 steps) ===== */
.section--path {
  background: var(--cream-100);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.path-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 640px) { .path-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .path-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.path-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.path-step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--forest-700), var(--gold-600));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.path-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.path-step:hover::before { opacity: 1; }
.path-step__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.path-step__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--gold-600);
  line-height: 1;
  letter-spacing: -0.02em;
}
.path-step__tag {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 600;
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
}
.path-step h3 {
  font-size: 21px;
  color: var(--forest-900);
  margin-bottom: 12px;
}
.path-step p {
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.75;
  margin: 0 0 18px;
}
.path-step__tool {
  font-size: 13px;
  color: var(--forest-800);
  padding: 10px 14px;
  background: var(--forest-100);
  border-radius: var(--radius-sm);
  font-weight: 500;
}

/* ===== Cases (tabs) ===== */
.section--cases { background: var(--cream-50); }
.cases-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
  padding: 6px;
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.case-tab {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 18px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--ink-500);
  font-family: var(--font-sans);
  transition: all 0.2s var(--ease);
  min-width: 110px;
  gap: 2px;
}
.case-tab__age {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gold-600);
  font-weight: 600;
}
.case-tab__name {
  font-size: 15px;
  font-weight: 600;
  color: inherit;
}
.case-tab:hover {
  background: rgba(255, 255, 255, 0.6);
  color: var(--forest-800);
}
.case-tab.is-active {
  background: var(--forest-700);
  color: var(--cream-50);
  box-shadow: var(--shadow-sm);
}
.case-tab.is-active .case-tab__age { color: var(--gold-400); }
.case-tab.is-active .case-tab__name { color: var(--cream-50); }

.case-panels {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.case-panel {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  animation: fadeUp 0.4s var(--ease);
}
.case-panel.is-active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.case-panel__head {
  padding: 36px 40px 28px;
  background: linear-gradient(135deg, var(--forest-100), #fff);
  border-bottom: 1px solid var(--line);
}
.case-label {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold-600);
  font-weight: 600;
  text-transform: uppercase;
}
.case-panel__head h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  margin: 8px 0 14px;
  color: var(--forest-900);
}
.case-quote {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--ink-700);
  margin: 0;
  padding-left: 14px;
  border-left: 3px solid var(--gold-600);
}
.case-panel__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .case-panel__body { grid-template-columns: 1.5fr 1fr; }
}
.case-col { padding: 32px 40px; }
.case-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 10px;
  font-weight: 600;
}
.case-col h4:not(:first-child) { margin-top: 24px; }
.case-col p, .case-col li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-700);
}
.case-col p { margin: 0 0 8px; }
.case-col strong { color: var(--forest-900); }
.case-col ol {
  list-style: decimal;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}
.case-col ol li { padding-left: 4px; }
.case-col--takeaway {
  background: var(--forest-900);
  color: var(--cream-100);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-col--takeaway h4 { color: var(--gold-400); }
.case-col--takeaway p { color: var(--cream-100); margin: 0; }
.case-col--takeaway strong { color: var(--gold-400); }
.case-emoji {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

/* ===== Courses ===== */
.section--courses {
  background: linear-gradient(180deg, var(--cream-100), var(--cream-50));
  border-top: 1px solid var(--line);
}
.courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
@media (min-width: 880px) { .courses-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.course-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--forest-500);
}
.course-card--featured {
  background: linear-gradient(180deg, #fff, var(--forest-100));
  border-color: var(--forest-700);
  box-shadow: var(--shadow-md);
}
.course-card--featured:hover {
  border-color: var(--forest-700);
  box-shadow: var(--shadow-lg);
}
.course-card__badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: var(--forest-900);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-sm);
}
.course-card__head { margin-bottom: 20px; }
.course-card__level {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
}
.course-card__title {
  font-size: 30px;
  color: var(--forest-900);
  margin: 6px 0 4px;
}
.course-card__en {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-500);
  margin: 0;
}
.course-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 18px 0;
  margin-bottom: 18px;
  border-bottom: 1px dashed var(--line-2);
  font-family: var(--font-num);
}
.course-card__price .currency {
  font-size: 14px;
  color: var(--ink-500);
  font-weight: 500;
}
.course-card__price .amount {
  font-size: 38px;
  font-weight: 700;
  color: var(--forest-900);
  letter-spacing: -0.02em;
  line-height: 1;
}
.course-card__price .period {
  font-size: 14px;
  color: var(--ink-500);
  margin-left: 6px;
}
.course-card__pitch {
  font-size: 15.5px;
  color: var(--forest-800);
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 18px;
}
.course-card__list {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  flex: 1;
}
.course-card__list li {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-700);
  padding-left: 22px;
  position: relative;
}
.course-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--forest-700);
  font-weight: 700;
}
.course-card--featured .course-card__list li::before { color: var(--gold-600); }
.course-card__for {
  padding: 14px 16px;
  background: var(--cream-100);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--ink-500);
  text-align: center;
  border-left: 3px solid var(--gold-600);
}
.courses__note {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-400);
  line-height: 1.8;
  margin: 24px auto 0;
  max-width: 720px;
}

/* ===== Flagship course card (single-card layout) ===== */
.courses-grid--single {
  display: block;
  max-width: 960px;
  margin: 0 auto 32px;
}
@media (min-width: 880px) {
  .courses-grid--single { grid-template-columns: 1fr; }
}
.course-card--flagship {
  background: linear-gradient(180deg, #fff 0%, var(--cream-50) 100%);
  border: 1.5px solid var(--forest-700);
  box-shadow: 0 12px 40px -16px rgba(44, 62, 46, 0.18);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.course-card--flagship::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest-700), var(--gold-600), var(--forest-700));
}
.course-card--flagship:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px -16px rgba(44, 62, 46, 0.28);
  border-color: var(--forest-700);
}
.course-card--flagship .course-card__title {
  font-size: 36px;
  letter-spacing: -0.005em;
}
.course-card--flagship .course-card__list li::before {
  color: var(--gold-600);
}
.course-card__price--ntd {
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 4px 0 22px;
  border-bottom: 1px solid var(--line);
  justify-content: flex-start;
}
.course-card__price--ntd .currency {
  font-size: 16px;
  color: var(--forest-800);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.course-card__price--ntd .amount {
  font-size: 46px;
  color: var(--forest-900);
}
.course-card__price--ntd .period {
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink-500);
}

/* 3 pillars (18 HRS / 12 MOS / 24/7) */
.course-card__pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 8px 0 28px;
  padding: 24px;
  background: var(--cream-100);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold-600);
}
@media (min-width: 720px) {
  .course-card__pillars { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.pillar {
  text-align: center;
  padding: 8px 6px;
  border-right: 1px dashed var(--line-2);
}
.pillar:last-child { border-right: none; }
@media (max-width: 719px) {
  .pillar {
    border-right: none;
    border-bottom: 1px dashed var(--line-2);
    padding-bottom: 14px;
    text-align: left;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 12px;
    align-items: start;
  }
  .pillar:last-child { border-bottom: none; }
  .pillar p { grid-column: 1 / -1; }
}
.pillar__num {
  font-family: var(--font-num);
  font-size: 26px;
  font-weight: 700;
  color: var(--forest-900);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 6px;
}
.pillar__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--forest-800);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.pillar p {
  font-size: 12.5px;
  color: var(--ink-500);
  line-height: 1.6;
  margin: 0;
}

/* Split block: 6 modules vs assessment + mentoring */
.course-card__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 4px 0 24px;
}
@media (min-width: 720px) {
  .course-card__split { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.course-card__block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 22px 18px;
}
.course-card__block h4 {
  font-size: 15px;
  color: var(--forest-900);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-2);
  letter-spacing: 0.02em;
  font-weight: 700;
}
.course-card__block .course-card__list {
  margin-bottom: 0;
}
.course-card__block .course-card__list li {
  font-size: 13.5px;
  padding-left: 18px;
}
.course-card__block .course-card__list li::before {
  font-size: 12px;
}

/* CTA row */
.course-card__cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}
@media (min-width: 640px) {
  .course-card__cta-row { flex-direction: row; }
  .course-card__cta-row .btn { flex: 1; }
}
.btn--lg {
  padding: 16px 28px;
  font-size: 15px;
  letter-spacing: 0.03em;
}

@media (max-width: 640px) {
  .course-card--flagship { padding: 32px 22px; }
  .course-card--flagship .course-card__title { font-size: 28px; }
  .course-card__price--ntd .amount { font-size: 38px; }
  .course-card__pillars { padding: 18px; }
}

/* ===== H-Score ===== */
.section--hscore {
  background: linear-gradient(160deg, var(--forest-900), var(--forest-800));
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.section--hscore::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(201, 151, 58, 0.18), transparent 55%);
  pointer-events: none;
}
.hscore__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) { .hscore__inner { grid-template-columns: 1.05fr 0.95fr; gap: 60px; } }
.hscore__content .section__title { color: var(--cream-50); }
.hscore__metrics {
  display: grid;
  gap: 12px;
  margin: 24px 0 32px;
}
.hscore__metrics li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  padding: 14px 18px;
  background: rgba(253, 252, 247, 0.06);
  border: 1px solid rgba(201, 151, 58, 0.2);
  border-radius: var(--radius-sm);
  transition: background 0.2s var(--ease);
}
.hscore__metrics li:hover { background: rgba(253, 252, 247, 0.1); }
.hscore-num {
  grid-row: 1 / 3;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold-400);
  font-weight: 600;
  align-self: center;
}
.hscore-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--cream-50);
}
.hscore-desc {
  font-size: 13px;
  color: rgba(253, 252, 247, 0.66);
  line-height: 1.55;
}

/* Score Card Mockup */
.hscore__visual { display: flex; justify-content: center; }
.score-card {
  width: 100%;
  max-width: 420px;
  background: var(--cream-50);
  color: var(--ink-800);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold-500);
}
.score-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.score-card__id {
  font-family: var(--font-num);
  font-size: 12px;
  color: var(--ink-400);
  letter-spacing: 0.08em;
}
.score-card__addr {
  font-size: 13px;
  color: var(--forest-800);
  font-weight: 600;
}
.score-card__main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}
.score-ring {
  position: relative;
  width: 110px;
  height: 110px;
}
.score-ring__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-ring__num {
  font-family: var(--font-num);
  font-size: 34px;
  font-weight: 700;
  color: var(--forest-800);
  line-height: 1;
}
.score-ring__label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold-600);
  margin-top: 2px;
  font-weight: 600;
}
.score-bars {
  display: grid;
  gap: 8px;
}
.score-bars li {
  display: grid;
  grid-template-columns: 58px 1fr 26px;
  align-items: center;
  gap: 8px;
}
.bar-label { font-size: 12px; color: var(--ink-700); }
.bar {
  height: 8px;
  background: var(--cream-200);
  border-radius: 999px;
  overflow: hidden;
}
.bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--forest-700), var(--forest-500));
  border-radius: 999px;
}
.bar-num {
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 600;
  color: var(--forest-800);
  text-align: right;
}
.score-card__verdict {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--line-2);
}
.verdict-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}
.verdict-tag--hold {
  background: var(--forest-100);
  color: var(--forest-800);
}
.score-card__verdict p {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.7;
  margin: 0;
}

/* ===== Audience ===== */
.section--audience {
  background: var(--cream-50);
  border-top: 1px solid var(--line);
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 880px) { .audience-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.audience-col {
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--line);
}
.audience-col--yes {
  background: linear-gradient(180deg, var(--forest-100), #fff);
  border-color: var(--forest-500);
}
.audience-col--no {
  background: var(--cream-100);
  border-color: var(--line-2);
}
.audience-col h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-2);
  color: var(--forest-900);
}
.audience-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 700;
}
.audience-col--yes .audience-mark {
  background: var(--gold-100);
  color: var(--gold-700);
  border: 1.5px solid var(--gold-500);
}
.audience-col--no .audience-mark {
  background: var(--cream-200);
  color: var(--ink-400);
  border: 1.5px solid var(--line-2);
}
.audience-col ul { display: grid; gap: 14px; }
.audience-col li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-700);
  padding-left: 18px;
  position: relative;
}
.audience-col li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
}
.audience-col--yes li::before { background: var(--forest-700); }
.audience-col--no li::before { background: var(--ink-400); }
.audience-col li strong { color: var(--forest-900); }

/* ===== Instructor ===== */
.section--instructor {
  background: var(--cream-100);
  border-top: 1px solid var(--line);
}
.instructor {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 880px) { .instructor { grid-template-columns: 0.8fr 1.2fr; gap: 60px; } }
.instructor__photo {
  background: var(--forest-900);
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  max-width: 340px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
  outline: 1px solid var(--gold-500);
  outline-offset: 4px;
}
.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(201, 151, 58, 0.55);
  text-align: center;
  font-size: 14px;
}
.photo-placeholder p { margin: 16px 0 6px; }
.photo-placeholder span {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.instructor__body p {
  color: var(--ink-700);
  font-size: 15.5px;
  line-height: 1.9;
}
.instructor__body strong { color: var(--forest-900); }
.instructor__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-600);
  font-weight: 600;
  margin: 6px 0 22px;
  letter-spacing: 0.02em;
}
.instructor__quote {
  margin: 24px 0 0;
  padding: 24px 28px;
  background: #fff;
  border-left: 4px solid var(--gold-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.8;
  color: var(--forest-900);
  font-style: italic;
}
.instructor__quote strong { color: var(--gold-700); font-style: normal; }

/* ===== FAQ ===== */
.section--faq { background: var(--cream-50); border-top: 1px solid var(--line); }
.faq__inner { max-width: 880px; margin: 0 auto; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.faq-item[open] {
  border-color: var(--forest-500);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 26px;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--forest-900);
  position: relative;
  line-height: 1.5;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 26px; top: 50%;
  width: 12px; height: 12px;
  border-right: 2px solid var(--gold-600);
  border-bottom: 2px solid var(--gold-600);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq-item summary:hover { color: var(--gold-700); }
.faq-body {
  padding: 0 26px 22px;
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.85;
}
.faq-body p { margin: 0; }
.faq-body strong { color: var(--forest-900); }
.faq-body a { color: var(--gold-700); text-decoration: underline; }

/* ===== Contact ===== */
.section--contact {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 151, 58, 0.18), transparent 60%),
    linear-gradient(180deg, var(--forest-900), #1a2920);
  color: var(--cream-100);
  text-align: center;
}
.contact__inner { max-width: 760px; margin: 0 auto; }
.contact__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.3;
  margin: 14px 0 22px;
  color: var(--cream-50);
}
.contact__sub {
  font-size: 16.5px;
  line-height: 1.9;
  color: rgba(253, 252, 247, 0.78);
  margin-bottom: 36px;
}
.contact__sub strong { color: var(--gold-400); }
.contact__channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
}
@media (min-width: 768px) { .contact__channels { grid-template-columns: repeat(3, 1fr); } }
.channel {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  background: rgba(253, 252, 247, 0.04);
  border: 1px solid rgba(201, 151, 58, 0.22);
  border-radius: var(--radius);
  transition: background 0.2s var(--ease);
}
.channel:hover { background: rgba(253, 252, 247, 0.08); }
.channel__icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(201, 151, 58, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.channel__text h4 {
  font-size: 15px;
  color: var(--cream-50);
  margin: 0 0 4px;
  font-family: var(--font-sans);
}
.channel__text p {
  font-size: 13px;
  color: rgba(253, 252, 247, 0.6);
  margin: 0;
  line-height: 1.55;
}
.contact__note {
  font-size: 13px;
  color: rgba(253, 252, 247, 0.55);
  margin: 18px 0 0;
}

/* ===== Footer ===== */
.footer {
  background: #15201A;
  color: rgba(253, 252, 247, 0.7);
  padding: 56px 0 32px;
  font-size: 13.5px;
}
.footer__inner {
  display: grid;
  gap: 32px;
}
@media (min-width: 880px) {
  .footer__inner {
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: start;
  }
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--forest-700);
}
.footer__name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--cream-50);
}
.footer__tag {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-top: 2px;
}
.footer__legal h4 {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 600;
}
.footer__legal p {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(253, 252, 247, 0.6);
  margin: 0 0 12px;
}
.footer__legal p:last-child { margin-bottom: 0; }
.footer__legal strong { color: rgba(253, 252, 247, 0.85); }
.footer__bottom {
  grid-column: 1 / -1;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 151, 58, 0.15);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(253, 252, 247, 0.5);
}
.footer__bottom a:hover { color: var(--gold-500); }
.footer__sep { opacity: 0.5; }

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ===== Super Early Bird Price Block (in course card) ===== */
.course-card__earlybird {
  margin: 18px 0 24px;
  padding: 20px 22px;
  background: linear-gradient(135deg, rgba(201, 151, 58, 0.10), rgba(201, 151, 58, 0.02));
  border: 1.5px solid var(--gold-500);
  border-radius: var(--radius);
  position: relative;
}
.earlybird__badge {
  display: inline-block;
  background: var(--gold-500);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  font-family: var(--font-sans);
}
.earlybird__prices {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.earlybird__now {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.earlybird__now .currency {
  font-size: 16px;
  color: var(--forest-700);
  font-weight: 600;
}
.earlybird__now .amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--forest-900);
  letter-spacing: -0.02em;
  line-height: 1;
}
.earlybird__was {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: rgba(13, 46, 34, 0.55);
}
.was-label {
  font-size: 12px;
  letter-spacing: 0.1em;
}
.was-amount {
  font-size: 16px;
  text-decoration: line-through;
}
.save-label {
  background: #c1392b;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.earlybird__note {
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(13, 46, 34, 0.7);
  border-top: 1px dashed rgba(201, 151, 58, 0.4);
  padding-top: 10px;
}
@media (max-width: 640px) {
  .earlybird__now .amount { font-size: 42px; }
  .earlybird__prices { gap: 12px; }
}

/* ===== Enroll Section (replaces old contact) ===== */
.section--enroll {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 151, 58, 0.18), transparent 60%),
    linear-gradient(180deg, var(--forest-900), #1a2920);
  color: var(--cream-100);
  padding: 80px 0 64px;
}
.enroll__inner { max-width: 1180px; margin: 0 auto; }
.enroll__head { text-align: center; margin-bottom: 48px; }
.enroll__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.3;
  margin: 14px 0 20px;
  color: var(--cream-50);
}
.enroll__price-hl {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  color: var(--gold-400);
  font-weight: 800;
  margin-top: 8px;
  letter-spacing: -0.01em;
}
.enroll__sub {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(253, 252, 247, 0.78);
  max-width: 720px;
  margin: 0 auto;
}
.enroll__sub strong { color: var(--gold-400); }

.enroll__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 980px) {
  .enroll__grid { grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: start; }
}
.enroll__h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--cream-50);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 151, 58, 0.3);
}
.enroll__highlights {
  background: rgba(253, 252, 247, 0.04);
  border: 1px solid rgba(201, 151, 58, 0.22);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
}
.enroll__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.enroll__list li {
  position: relative;
  padding: 10px 0 10px 26px;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(253, 252, 247, 0.85);
  border-bottom: 1px dashed rgba(201, 151, 58, 0.15);
}
.enroll__list li:last-child { border-bottom: none; }
.enroll__list li::before {
  content: "●";
  position: absolute;
  left: 4px;
  top: 11px;
  color: var(--gold-500);
  font-size: 10px;
}
.enroll__list li strong { color: var(--gold-400); }

.enroll__riskbox {
  background: rgba(201, 151, 58, 0.08);
  border-left: 3px solid var(--gold-500);
  padding: 14px 16px;
  border-radius: 4px;
}
.enroll__riskbox h4 {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--gold-400);
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
}
.enroll__riskbox p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(253, 252, 247, 0.7);
  margin: 0;
}

.enroll__form {
  background: var(--cream-50);
  border-radius: var(--radius);
  padding: 8px 8px 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}
.enroll__formhead {
  padding: 18px 20px 10px;
  text-align: center;
}
.enroll__formhead .enroll__h3 {
  color: var(--forest-900);
  border-bottom-color: rgba(13, 46, 34, 0.12);
  margin-bottom: 8px;
}
.enroll__formhead p {
  font-size: 13.5px;
  color: rgba(13, 46, 34, 0.65);
  margin: 0;
}
.enroll__form iframe {
  display: block;
  width: 100%;
  border: none;
  background: var(--cream-50);
  border-radius: 8px;
  min-height: 720px;
}
.enroll__alt {
  text-align: center;
  font-size: 13px;
  color: rgba(13, 46, 34, 0.6);
  margin: 12px 0 0;
}
.enroll__alt a {
  color: var(--forest-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.enroll__alt a:hover { color: var(--gold-600, #a07a30); }

.enroll__channels {
  border-top: 1px solid rgba(201, 151, 58, 0.2);
  padding-top: 32px;
}
.enroll__channels-title {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--gold-400);
  margin: 0 0 20px;
  font-family: var(--font-display);
  text-transform: uppercase;
}
.channel__icon--label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--gold-400);
}
