:root {
  --primary: #536a5c;
  --primary-light: #7d9786;
  --primary-dark: #36433a;
  --secondary: #faf6f0;
  --secondary-dark: #f1eadf;
  --accent: #d8c4a6;
  --text-dark: #2c332e;
  --text-light: #6e7570;
  --white: #ffffff;
  --gray-100: #f7fafc;
  --gray-200: #edf2f7;
  --border-color: #e2e8f0;
  --card-shadow:
    0 10px 25px -5px rgba(60, 80, 65, 0.08),
    0 8px 10px -6px rgba(60, 80, 65, 0.05);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* 全局米色背景层：消除白底段落跳变 */
body,
main {
  background-color: var(--secondary);
}

/* restore: intro / strength proof blocks */
.intro-proof,
.strength-proof {
  width: 100%;
  padding: 0 4.5%;
  background: var(--white);
}

.intro-proof-card {
  padding: 5.4% 0 4.6%;
  background: var(--white);
}

.intro-proof-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1vw;
  text-align: center;
  color: var(--primary-dark);
  font-weight: 900;
  line-height: 1.12;
}

.intro-proof-title span {
  color: var(--primary);
  font-size: clamp(34px, 9.2vw, 69px);
}

.intro-proof-title strong {
  font-size: clamp(22px, 6.3vw, 47px);
}

.intro-proof-title::after {
  content: "";
  width: 16%;
  height: 2px;
  margin-top: 2.5%;
  background: var(--accent);
}

.intro-proof-subtitle {
  margin: 3.8% auto 4.2%;
  color: var(--primary-dark);
  font-size: clamp(13px, 3.6vw, 27px);
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.intro-concern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.9vw;
}

.intro-concern-item {
  min-height: clamp(67px, 17.2vw, 129px);
  padding: 2.2vw 1.8vw;
  display: flex;
  align-items: center;
  gap: 1.9vw;
  border: 1px solid rgba(78, 101, 84, 0.13);
  border-radius: 5px;
  background: var(--secondary);
  color: var(--primary-dark);
  font-size: clamp(12px, 3.2vw, 24px);
  font-weight: 800;
  line-height: 1.28;
}

.intro-concern-icon {
  width: clamp(32px, 8.5vw, 64px);
  height: clamp(32px, 8.5vw, 64px);
  flex: 0 0 clamp(32px, 8.5vw, 64px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  font-size: clamp(13px, 3.4vw, 26px);
  font-style: normal;
  font-weight: 900;
}

.strength-proof {
  padding-top: 5.2%;
  padding-bottom: 6.2%;
  background: var(--secondary);
}

.strength-proof-card {
  padding: 0;
  background: var(--white);
}

.strength-head {
  margin: 0 0 4.1%;
  color: var(--primary-dark);
  font-size: clamp(23px, 6.1vw, 46px);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  position: relative;
}

.strength-head::before,
.strength-head::after {
  content: "";
  width: 12%;
  height: 1px;
  position: absolute;
  top: 50%;
  background: rgba(213, 192, 161, 0.9);
  transform: translateY(-50%);
}

.strength-head::before {
  left: 0;
}
.strength-head::after {
  right: 0;
}

.strength-feature-grid,
.strength-data-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(78, 101, 84, 0.16);
  border-radius: 5px;
  background: var(--white);
}

.strength-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 5px 5px 0 0;
}

.strength-feature-item {
  min-height: clamp(52px, 13.8vw, 104px);
  padding: 1.6vw 1vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1vw;
  border-right: 1px solid var(--secondary-dark);
  border-bottom: 1px solid var(--secondary-dark);
  text-align: center;
}

.strength-feature-item:nth-last-child(-n + 3) {
  border-bottom: 0;
}
.strength-feature-item:nth-child(3n) {
  border-right: 0;
}

.strength-feature-item i {
  width: clamp(25px, 6.6vw, 50px);
  height: clamp(25px, 6.6vw, 50px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(78, 101, 84, 0.16);
  border-radius: 50%;
  color: var(--primary);
  background: rgba(78, 101, 84, 0.08);
  font-size: clamp(12px, 3.15vw, 24px);
  font-style: normal;
  font-weight: 900;
}

.strength-feature-item span {
  color: var(--text-dark);
  font-size: clamp(9px, 2.45vw, 18px);
  font-weight: 700;
  line-height: 1.35;
}

.strength-data-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 0;
  border-radius: 0 0 5px 5px;
}

.strength-data-item {
  min-height: clamp(47px, 12.4vw, 93px);
  padding: 1.7vw 1.4vw;
  display: flex;
  align-items: center;
  gap: 1.5vw;
  border-right: 1px solid var(--secondary-dark);
  background: var(--white);
}

.strength-data-item:nth-child(2n) {
  border-right: 0;
}

.strength-data-item i {
  width: clamp(25px, 6.6vw, 50px);
  height: clamp(25px, 6.6vw, 50px);
  flex: 0 0 clamp(25px, 6.6vw, 50px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(181, 158, 124, 0.58);
  border-radius: 50%;
  background: rgba(213, 192, 161, 0.14);
  color: #8c7553;
  font-size: clamp(12px, 3.1vw, 23px);
  font-style: normal;
  font-weight: 900;
}

.strength-data-item span {
  display: block;
  color: var(--text-light);
  font-size: clamp(10px, 2.65vw, 20px);
  font-weight: 700;
  line-height: 1.25;
}

.strength-data-item strong {
  display: block;
  margin-top: 0.5vw;
  color: var(--primary);
  font-size: clamp(13px, 3.3vw, 25px);
  font-weight: 900;
  line-height: 1.18;
}

/* why compare image: crop top 15%, bottom 7% */
.why-compare-image-wrap {
  width: 100%;
  aspect-ratio: 1120 / 1310;
  /* overflow: hidden; */
  background: var(--secondary);
}

.why-compare-image {
  width: 100%;
  height: auto;
  display: block;
  /* transform: translateY(-15%); */
}

.practical-org-title {
  padding: 7.2vw 0 4.2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2vw;
  background: var(--secondary);
  color: var(--primary-dark);
  text-align: center;
  line-height: 1;
}

.practical-org-title span:first-child {
  font-size: clamp(28px, 8vw, 34px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.practical-org-title span:last-child {
  font-size: clamp(14px, 4vw, 16px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

/* employment / entrepreneurship title ornaments */
.employment-assist-head,
.entrepreneurship-assist-head {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.employment-assist-head h2,
.entrepreneurship-assist-head h2 {
  position: relative;
  z-index: 1;
}

.employment-assist-head h2::before {
  content: "Entrepreneurship";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  color: rgba(181, 158, 124, 0.13);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.employment-assist-head h2::after,
.entrepreneurship-assist-head h2::after {
  display: none;
}

.employment-assist-kicker,
.entrepreneurship-assist-kicker {
  gap: 2.4vw;
  margin: 3.2vw auto 2.2vw;
}

.employment-assist-kicker span,
.entrepreneurship-assist-kicker span {
  flex: 0 1 21vw;
  width: 21vw;
  max-width: 96px;
  height: 5.2vw;
  max-height: 24px;
  background: url("../picture/laurel-ornament-copy.png") center / 100% auto
    no-repeat;
}

.employment-assist-kicker span:first-child,
.entrepreneurship-assist-kicker span:first-child {
  transform: scaleX(-1);
}

.employment-assist-kicker strong,
.entrepreneurship-assist-kicker strong {
  position: relative;
  flex: 0 0 auto;
  padding: 0 7.2vw;
  color: var(--primary-dark);
  font-size: clamp(12px, 3.35vw, 16px);
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.employment-assist-kicker strong::before,
.employment-assist-kicker strong::after,
.entrepreneurship-assist-kicker strong::before,
.entrepreneurship-assist-kicker strong::after {
  content: "";
  width: 5.8vw;
  max-width: 26px;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: 50%;
  background: url("../picture/wheat-ornament-copy.png") center / contain
    no-repeat;
  transform: translateY(-50%);
}

.employment-assist-kicker strong::before,
.entrepreneurship-assist-kicker strong::before {
  left: 0;
}

.employment-assist-kicker strong::after,
.entrepreneurship-assist-kicker strong::after {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}

/* final correction: match reference image ornament order */
.employment-assist-head {
  padding-top: 3.8vw;
}

.employment-assist-head h2::before {
  content: "YOU WORK";
  top: 46%;
  color: rgba(181, 158, 124, 0.08);
  font-size: clamp(36px, 12vw, 56px);
  letter-spacing: -0.06em;
}

.employment-assist-kicker,
.entrepreneurship-assist-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3vw;
  width: 100%;
  margin: 4.6vw auto 2.6vw;
}

.employment-assist-kicker span,
.entrepreneurship-assist-kicker span {
  flex: 0 0 18vw;
  width: 18vw;
  max-width: 78px;
  height: 3.2vw;
  max-height: 14px;
  background: url("../picture/laurel-ornament-copy.png") center / 100% 100%
    no-repeat;
  transform: none;
}

.employment-assist-kicker span:first-child,
.entrepreneurship-assist-kicker span:first-child {
  transform: scaleX(-1);
}

.employment-assist-kicker strong,
.entrepreneurship-assist-kicker strong {
  position: relative;
  padding: 0 8.4vw;
  font-size: clamp(22px, 6.2vw, 42px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.employment-assist-kicker strong::before,
.employment-assist-kicker strong::after,
.entrepreneurship-assist-kicker strong::before,
.entrepreneurship-assist-kicker strong::after {
  width: 6.4vw;
  max-width: 30px;
  background-image: url("../picture/wheat-ornament-copy.png");
}

.employment-assist-kicker strong::before,
.entrepreneurship-assist-kicker strong::before {
  left: 0;
  transform: translateY(-50%);
}

.employment-assist-kicker strong::after,
.entrepreneurship-assist-kicker strong::after {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  background: var(--secondary);
}

body {
  max-width: 750px;
  margin: 0 auto;
  font:
    16px/1.5 -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    "Microsoft YaHei",
    sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.clear {
  clear: both;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
  vertical-align: middle;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}
.fl {
  float: left !important;
}
.fr {
  float: right !important;
}

.box_img {
  width: 100%;
  text-align: center;
  padding: 0 !important;
  line-height: 0;
}

.box_img a {
  display: block;
}

.box_img img {
  max-width: 100%;
  width: auto !important;
  display: block;
  margin: 0 auto;
  height: auto;
}

.bg {
  width: 100%;
  text-align: center;
  padding: 14px 0 12px;
}

.bg_01 {
  background: var(--secondary);
}
.bg_02 {
  /* background: url(../image/yjm_07.jpg) repeat-y top center; */
  background-size: 100% auto;
}
.bg_03 {
  /* background: url(../image/yjm_11.jpg) no-repeat top center; */
  background-size: 100% 100%;
}
.bg_04 {
  /* background: url(../image/yjm_16.jpg) repeat-y top center; */
  background-size: 100% auto;
}
.bg_05 {
  /* background: url(../image/yjm_23.jpg) no-repeat top center; */
  background-size: 100% 100%;
}
.bg_06 {
  /* background: url(../image/yjm_25.jpg) no-repeat top center; */
  background-size: 100% 100%;
}
.bg_07 {
  background: var(--secondary);
}
.bg_08 {
  background: var(--secondary-dark);
}
.bg_09 {
  /* background: url(../image/yjm_39.jpg) repeat-y top center; */
  background-size: 100% auto;
}

.aBox {
  width: 70%;
  max-width: 480px;
  min-height: 46px;
  padding: 10px 16px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(78, 101, 84, 0.2);
  transition: var(--transition);
}

.aBox:active {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.aBox img {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.aBox span {
  font-size: clamp(11px, 2.8vw, 12px);
  line-height: 1.2;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}
.aBoxxf {
  width: 70%;
  max-width: 480px;
  min-height: 46px;
  padding: 10px 16px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(78, 101, 84, 0.2);
  transition: var(--transition);
}

.aBoxxf:active {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.aBoxxf img {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.aBoxxf span {
  font-size: clamp(11px, 2.8vw, 12px);
  line-height: 1.2;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}
.title {
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--primary-dark);
  text-align: center;
}

.title span {
  display: block;
  color: var(--primary-dark);
  padding-left: 0;
  white-space: normal;
}

.title span.c1 {
  color: var(--accent);
}

.text {
  padding: 12px 18px 10px;
  text-align: center;
}

.text h2 {
  font-size: clamp(18px, 4.8vw, 26px);
  font-weight: 800;
  line-height: 1.35;
  color: var(--primary-dark);
  white-space: normal;
}

.text p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}

.text p span {
  font-size: 20px;
  color: #b59e7c;
  font-weight: 800;
}

.bg_07 span:nth-child(1) {
  font-size: clamp(28px, 6.8vw, 34px);
  padding: 0;
  line-height: 1.18;
}

.bg_08 .title {
  padding: 12px 0 6px;
}

.bg_08 .title span {
  font-size: clamp(28px, 6.4vw, 34px);
  padding: 0;
  line-height: 1.18;
}

.bg_08 .title b {
  color: var(--primary);
}

.bg_09 .title span {
  padding: 0;
  font-size: clamp(30px, 7vw, 36px);
  line-height: 1.12;
}

.question {
  padding: 12px 18px 0;
}

.question ul li {
  background: #fff url(../image/icon_03.png) 15px 50% no-repeat;
  background-size: 24px 24px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 18px rgba(182, 131, 70, 0.12);
  border: 1px solid var(--border-color);
  margin-bottom: 10px;
  transition: var(--transition);
}

.question ul li:active {
  transform: translateY(-1px);
}

.question ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.question ul li span:nth-child(1) {
  flex: 1;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
  padding: 0 0 0 40px;
  color: var(--text-dark);
}

.question ul li span:nth-child(2) {
  white-space: nowrap;
  color: var(--primary);
  font-size: 15px;
  padding-left: 12px;
}

.course-carousel-section {
  padding: 10px 0 14px;
  background: linear-gradient(
    180deg,
    var(--secondary) 0%,
    var(--secondary-dark) 100%
  );
}

.course-carousel {
  position: relative;
  width: 100%;
}

.course-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
  padding: 8px 18px 10px;
  min-width: 120px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  clip-path: polygon(
    6% 0,
    94% 0,
    100% 32%,
    92% 50%,
    100% 68%,
    94% 100%,
    6% 100%,
    0 68%,
    8% 50%,
    0 32%
  );
  box-shadow: 0 10px 24px rgba(213, 192, 161, 0.28);
}

.course-viewport {
  overflow: hidden;
  padding: 52px 0 6px;
  touch-action: pan-y;
}

.course-track {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 0 12px;
  will-change: transform;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-slide {
  flex: 0 0 min(80vw, 286px);
  max-width: 286px;
  background: var(--white);
  border: 1px solid var(--secondary-dark);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 26px rgba(78, 101, 84, 0.1);
  padding: 16px 14px 14px;
  text-align: center;
  transform: scale(0.84);
  opacity: 0.72;
  transition:
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.course-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.65),
    rgba(255, 255, 255, 0) 28%
  );
  pointer-events: none;
}

.course-slide.is-active {
  transform: scale(1.06) translateY(-8px);
  opacity: 1;
  box-shadow: 0 18px 34px rgba(78, 101, 84, 0.18);
  z-index: 3;
}

.course-slide h3 {
  margin: 8px 0 10px;
  font-size: 20px;
  line-height: 1.24;
  color: var(--primary-dark);
  font-weight: 800;
}

.course-cover {
  position: relative;
  height: 124px;
  margin: 2px auto 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 10px 18px rgba(0, 0, 0, 0.14);
}

.course-cover::before {
  content: "";
  position: absolute;
  inset: 12px 14px 14px 14px;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(241, 234, 223, 0.96) 100%
  );
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.14);
}

.course-cover::after {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 12px;
  width: 32px;
  border-radius: 10px;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.24) 0 14px,
      rgba(0, 0, 0, 0.04) 14px 16px
    ),
    linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
}

.course-cover-title,
.course-cover-sub {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--white);
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
}

.course-cover-title {
  top: 26px;
  font-size: 18px;
  letter-spacing: 0;
}

.course-cover-sub {
  top: 54px;
  font-size: 15px;
}

.course-icon {
  width: 54px;
  height: 54px;
  margin: -34px auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--secondary-dark);
  background: var(--secondary);
  color: var(--primary);
  font-size: 24px;
  box-shadow: 0 8px 18px rgba(78, 101, 84, 0.12);
  position: relative;
  z-index: 1;
}

.course-slide ul {
  text-align: left;
  padding: 0 4px;
  margin: 2px 0 14px;
}

.course-slide li {
  position: relative;
  padding-left: 14px;
  margin: 8px 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-dark);
}

.course-slide li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

.course-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  margin-top: auto;
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-size: 15px;
  font-weight: 800;
  background: var(--white);
  box-shadow: 0 4px 10px rgba(78, 101, 84, 0.06);
}

.course-slide.is-active .course-btn {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 8px 16px rgba(78, 101, 84, 0.18);
}

.course-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 34px;
  height: 34px;
  margin-top: 14px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  font-size: 26px;
  line-height: 34px;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(78, 101, 84, 0.14);
}

.course-prev {
  left: 8px;
}
.course-next {
  right: 8px;
}

.course-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.course-dots button {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 999px;
  background: rgba(78, 101, 84, 0.24);
}

.course-dots button.is-active {
  width: 24px;
  background: var(--primary);
}

.teacher-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 10px 12px 6px;
}

.teacher-shot {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(78, 101, 84, 0.12);
  border: 1px solid var(--secondary-dark);
  aspect-ratio: 4 / 5;
}

.teacher-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 420px) {
  .course-slide {
    flex-basis: min(82vw, 278px);
  }

  .teacher-grid {
    gap: 6px;
    padding: 8px 10px 4px;
  }

  .course-track {
    padding: 0 10px;
  }
}

.course-showcase-section {
  padding: 10px 0 14px;
  background: linear-gradient(
    180deg,
    var(--secondary) 0%,
    var(--secondary-dark) 100%
  );
}

.course-showcase {
  position: relative;
  width: 100%;
  padding-top: 42px;
}

.course-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.16fr) minmax(0, 0.92fr);
  gap: 8px;
  padding: 0 12px 8px;
  align-items: end;
}

.course-card {
  display: flex;
  flex-direction: column;
  min-height: 372px;
  padding: 14px 12px 12px;
  border: 1px solid var(--secondary-dark);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(78, 101, 84, 0.1);
  text-align: center;
}

.course-card:not(.course-card--featured) {
  margin-top: 16px;
}

.course-card--featured {
  min-height: 404px;
  margin-top: 0;
  transform: translateY(-10px);
  z-index: 1;
  box-shadow: 0 18px 34px rgba(78, 101, 84, 0.16);
}

.course-art {
  width: 100%;
  min-height: 124px;
  padding: 10px 12px 8px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--secondary) 0%, var(--white) 100%);
  border: 1px solid var(--secondary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.course-art img {
  width: 100%;
  height: 126px;
  object-fit: contain;
  display: block;
}

.course-icon {
  width: 54px;
  height: 54px;
  margin: -34px auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(78, 101, 84, 0.22);
  background: var(--secondary);
  color: var(--primary);
  font-size: 24px;
  box-shadow: 0 8px 18px rgba(78, 101, 84, 0.12);
  position: relative;
  z-index: 1;
}

.course-card h3 {
  margin: 6px 0 8px;
  font-size: 18px;
  line-height: 1.24;
  font-weight: 800;
  color: var(--primary-dark);
}

.course-card--featured h3 {
  font-size: 20px;
}

.course-card ul {
  text-align: left;
  padding: 0 2px;
  margin: 4px 0 14px;
}

.course-card li {
  position: relative;
  padding-left: 12px;
  margin: 7px 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-dark);
}

.course-card li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

.course-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  margin-top: auto;
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-size: 15px;
  font-weight: 800;
  background: var(--white);
  box-shadow: 0 4px 10px rgba(78, 101, 84, 0.06);
}

.course-card--featured .course-btn {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 8px 16px rgba(78, 101, 84, 0.18);
}

.course-title-section {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 7vw, 46px) 14px clamp(18px, 5.2vw, 32px);
  background:
    radial-gradient(
      circle at 16% 10%,
      rgba(255, 255, 255, 0.78) 0 14%,
      transparent 32%
    ),
    linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  text-align: center;
}

.course-title-section::before,
.course-title-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  border: 2px solid rgba(213, 192, 161, 0.38);
  transform: rotate(-10deg);
}

.course-title-section::before {
  width: 74%;
  height: 150%;
  top: -92%;
  right: -10%;
}

.course-title-section::after {
  width: 58%;
  height: 120%;
  top: -74%;
  right: -2%;
  border-color: rgba(213, 192, 161, 0.22);
}

.course-title-inner {
  position: relative;
  z-index: 1;
}

.course-title-inner::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 46px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  transform: translateX(-50%);
}

.course-title-inner h2 {
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(24px, 7vw, 30px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.course-title-inner p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(36px, 9vw, 54px);
  margin: clamp(16px, 4vw, 24px) 0 0;
  padding: 0 clamp(24px, 7vw, 52px);
  border: 2px solid var(--accent);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: #8c6b36;
  font-size: clamp(17px, 4.8vw, 28px);
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 6px 14px rgba(78, 101, 84, 0.06);
}

.course-bg-section {
  padding: 0;
}

.course-bg-stage {
  position: relative;
  width: 100%;
  max-width: 758px;
  margin: 0 auto;
  aspect-ratio: 758 / 597;
  background: url("../picture/course-bg-stage.png") center top / 100% 100%
    no-repeat;
}

.course-bg-copy {
  position: absolute;
  top: 56.5%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--text-dark);
}

.course-bg-copy--left {
  left: 4.2%;
  width: 22.8%;
  top: 55%;
  height: 42%;
}

.course-bg-copy--center {
  left: 31.2%;
  top: 57.6%;
  width: 37.6%;
  height: auto;
}

.course-bg-copy--right {
  right: 4.2%;
  width: 22.8%;
  top: 55%;
  height: 42%;
}

.course-bg-copy h3 {
  width: 100%;
  margin: 0 0 2px;
  font-size: clamp(8px, 2.45vw, 20px);
  line-height: 1.05;
  font-weight: 800;
  color: var(--primary-dark);
  white-space: nowrap;
}

.course-bg-copy--center h3 {
  font-size: clamp(10px, 3.2vw, 26px);
}

.course-bg-copy ul {
  width: 100%;
  margin: 0;
  padding: 0 2px;
  text-align: left;
}

.course-bg-copy li {
  position: relative;
  margin: 1px 0;
  padding-left: 7px;
  font-size: clamp(8px, 2.05vw, 15px);
  line-height: 1.32;
  color: var(--text-dark);
}

.course-bg-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--primary);
}

.course-bg-btn {
  width: 82%;
  min-height: clamp(22px, 5.4vw, 38px);
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--primary);
  font-size: clamp(10px, 2.65vw, 18px);
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(78, 101, 84, 0.12);
}

.course-bg-btn--primary {
  width: 80%;
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(78, 101, 84, 0.2);
}

.why-compare-section {
  padding: 10px 14px 16px;
  background: var(--secondary);
}

.why-compare-card {
  overflow: hidden;
  border: 1px solid rgba(213, 192, 161, 0.65);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.why-compare-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
  min-height: 60px;
}

.why-compare-brand,
.why-compare-pk,
.why-compare-normal {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  text-align: center;
}

.why-compare-brand {
  gap: 10px;
  padding: 10px 12px;
  background: linear-gradient(135deg, #c79a52 0%, #9f7737 100%);
  color: var(--white);
}

.why-crown {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
}

.why-crown svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.why-compare-brand strong {
  font-size: clamp(20px, 6vw, 34px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.why-compare-pk {
  color: #d71f19;
  font-size: clamp(21px, 6vw, 30px);
  font-weight: 900;
  background: linear-gradient(180deg, #faf4ec 0%, #f5ece1 100%);
}

.why-compare-normal {
  color: var(--text-dark);
  font-size: clamp(18px, 5vw, 29px);
  font-weight: 800;
  background: linear-gradient(180deg, #f9f4ef 0%, #efe8df 100%);
}

.why-compare-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 96px;
  border-top: 1px solid var(--border-color);
}

.why-compare-cell {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  padding: 16px 14px 14px;
}

.why-compare-cell--good {
  background: linear-gradient(180deg, #f9f2e6 0%, #fbf7ef 100%);
  border-right: 1px solid #eadfce;
}

.why-compare-cell--bad {
  background: linear-gradient(180deg, #ffffff 0%, #fbf9f5 100%);
}

.why-status {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  border-radius: 50%;
}

.why-status--good {
  background: linear-gradient(180deg, #d7a754 0%, #bb8435 100%);
  box-shadow: 0 4px 10px rgba(187, 132, 53, 0.22);
}

.why-status--good::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  width: 7px;
  height: 12px;
  border-right: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(45deg);
}

.why-status--bad {
  background: linear-gradient(180deg, #d6cec3 0%, #b9aea1 100%);
  box-shadow: 0 4px 10px rgba(185, 174, 161, 0.18);
}

.why-status--bad::before,
.why-status--bad::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 13px;
  width: 16px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--white);
  transform: rotate(45deg);
}

.why-status--bad::after {
  transform: rotate(-45deg);
}

.why-compare-cell p {
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(12px, 3.15vw, 20px);
  font-weight: 700;
  line-height: 1.38;
}

.why-compare-cell strong {
  color: var(--text-dark);
  font-weight: 900;
}

.trust-stats-section {
  padding: 12px 14px 18px;
  background: var(--secondary);
}

.trust-stats-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(213, 192, 161, 0.65);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

.trust-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 116px;
  padding: 18px 18px;
}

.trust-stat-item + .trust-stat-item {
  border-left: 1px solid rgba(213, 192, 161, 0.65);
}

.trust-stat-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8883f;
}

.trust-stat-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-stat-copy {
  min-width: 0;
  text-align: left;
}

.trust-stat-copy h3 {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 6px;
  margin: 0;
  color: #b8883f;
  line-height: 1.1;
}

.trust-stat-copy h3 strong {
  font-size: clamp(24px, 6.4vw, 38px);
  font-weight: 900;
  letter-spacing: 0;
}

.trust-stat-copy h3 span {
  color: var(--text-dark);
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 800;
}

.trust-stat-copy p {
  margin: 6px 0 0;
  color: var(--text-light);
  font-size: clamp(11px, 2.8vw, 14px);
  font-weight: 700;
  line-height: 1.35;
}

.cert-proof-section {
  padding: 0 22px 16px 20px;
  background: var(--secondary);
  text-align: center;
}

.cert-proof-title {
  position: relative;
  display: inline-block;
  margin: 0 0 22px;
  color: var(--primary-dark);
  font-size: clamp(22px, 6vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 1px;
}

.cert-proof-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 50px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  transform: translateX(-50%);
}

.cert-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.cert-proof-card {
  padding: 10px 8px 12px;
  background: var(--white);
  border: 1px solid var(--secondary-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
}

.cert-proof-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--white);
}

.cert-proof-card h4 {
  margin: 8px 0 0;
  color: var(--text-dark);
  font-size: clamp(13px, 3.5vw, 18px);
  font-weight: 800;
  line-height: 1.25;
}

.academy-mobile-section {
  padding: 24px 14px 22px;
  background: var(--secondary);
  text-align: center;
}

.academy-mobile-head h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: clamp(20px, 5.5vw, 24px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 1px;
}

.academy-mobile-head h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 50px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  transform: translateX(-50%);
}

.academy-mobile-decor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px 0 16px;
}

.academy-mobile-decor span {
  flex: 1;
  max-width: 72px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    transparent
  );
}

.academy-mobile-decor p {
  max-width: 64%;
  margin: 0;
  padding: 6px 10px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  background: rgba(213, 192, 161, 0.12);
  color: var(--primary-dark);
  font-size: clamp(11px, 3vw, 15px);
  font-weight: 700;
  line-height: 1.25;
}

.academy-mobile-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.academy-mobile-tab {
  min-height: 48px;
  padding: 7px 4px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.academy-mobile-tab span,
.academy-mobile-tab em {
  display: block;
  font-style: normal;
}

.academy-mobile-tab span {
  font-size: clamp(13px, 3.45vw, 17px);
  font-weight: 800;
  line-height: 1.15;
}

.academy-mobile-tab em {
  margin-top: 2px;
  color: var(--text-light);
  font-size: clamp(9px, 2.55vw, 12px);
  font-weight: 600;
  line-height: 1;
}

.academy-mobile-tab.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(78, 101, 84, 0.15);
}

.academy-mobile-tab.active em {
  color: var(--secondary-dark);
}

.academy-mobile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  height: clamp(390px, 92vw, 650px);
  gap: 8px;
  align-items: stretch;
}

.academy-mobile-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  height: 100%;
}

.academy-mobile-card {
  position: relative;
  flex: 1 1 0;
  width: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--secondary-dark);
  box-shadow: var(--card-shadow);
}

.academy-mobile-card--left {
  aspect-ratio: auto;
}

.academy-mobile-card--right {
  aspect-ratio: auto;
}

.academy-mobile-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.employment-assist-section {
  padding: 22px 14px 18px;
  background: var(--secondary);
}

.employment-assist-head {
  text-align: center;
  margin-bottom: 14px;
}

.employment-assist-head h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--primary-dark);
  font-size: clamp(20px, 5.5vw, 24px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.employment-assist-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 50px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  transform: translateX(-50%);
}

.employment-assist-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px 0 10px;
}

.employment-assist-kicker span {
  flex: 1;
  max-width: 52px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    transparent
  );
}

.employment-assist-kicker strong {
  color: var(--primary-dark);
  font-size: clamp(13px, 3.8vw, 18px);
  font-weight: 800;
  line-height: 1.2;
}

.employment-assist-head p {
  margin: 0;
  color: var(--text-light);
  font-size: clamp(12px, 3.2vw, 15px);
  line-height: 1.55;
}

.employment-assist-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  padding: 16px 14px;
  background: var(--white);
  border: 1px solid var(--secondary-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
}

.employment-assist-role {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 14px;
}

.employment-assist-icon {
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #f3d7a8 0%, #d5a042 100%);
  border: 2px solid rgba(213, 192, 161, 0.85);
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.35),
    0 8px 16px rgba(78, 101, 84, 0.1);
  color: var(--white);
}

.employment-assist-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--white);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.employment-assist-role h3 {
  margin: 12px 0 0;
  color: #b38745;
  font-size: clamp(18px, 5vw, 26px);
  font-weight: 800;
  line-height: 1.1;
}

.employment-assist-list {
  margin: 0;
  padding: 2px 0 2px 14px;
  border-left: 1px solid rgba(213, 192, 161, 0.65);
}

.employment-assist-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  color: var(--text-dark);
  font-size: clamp(15px, 4vw, 20px);
  font-weight: 800;
  line-height: 1.25;
}

.employment-assist-list li + li {
  border-top: 1px dashed rgba(213, 192, 161, 0.55);
}

.employment-bullet {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f3d7a8 0%, #d5a042 100%);
  border: 1px solid rgba(213, 192, 161, 0.95);
  box-shadow: 0 4px 8px rgba(78, 101, 84, 0.08);
}

.employment-bullet::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  width: 7px;
  height: 12px;
  border-right: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(45deg);
}

.employment-assist-list li span:last-child {
  flex: 1;
}

.entrepreneurship-assist-section {
  position: relative;
  padding: 15px 14px 18px;
  background: var(--secondary);
}

.entrepreneurship-assist-head {
  margin-bottom: 14px;
  text-align: center;
}

.entrepreneurship-assist-head h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--primary-dark);
  font-size: clamp(20px, 5.5vw, 24px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.entrepreneurship-assist-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 50px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  transform: translateX(-50%);
}

.entrepreneurship-assist-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px 0 8px;
}

.entrepreneurship-assist-kicker span {
  flex: 1;
  max-width: 58px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    transparent
  );
}

.entrepreneurship-assist-kicker strong {
  color: var(--primary-dark);
  font-size: clamp(13px, 3.7vw, 18px);
  font-weight: 800;
  line-height: 1.2;
}

.entrepreneurship-assist-head p {
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(12px, 3.1vw, 15px);
  line-height: 1.55;
  font-weight: 600;
}

.entrepreneurship-assist-head .entrepreneurship-assist-quote {
  color: var(--primary-dark);
  font-weight: 800;
}

.entrepreneurship-assist-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: stretch;
  padding: 16px 14px;
  background: var(--white);
  border: 1px solid var(--secondary-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
}

.entrepreneurship-assist-role {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 14px;
  border-right: 1px solid rgba(213, 192, 161, 0.65);
}

.entrepreneurship-assist-icon {
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #f3d7a8 0%, #d5a042 100%);
  border: 2px solid rgba(213, 192, 161, 0.85);
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.35),
    0 8px 16px rgba(78, 101, 84, 0.1);
  color: var(--white);
}

.entrepreneurship-assist-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--white);
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.entrepreneurship-assist-role h3 {
  margin: 12px 0 0;
  color: #b38745;
  font-size: clamp(18px, 5vw, 26px);
  font-weight: 800;
  line-height: 1.1;
}

.entrepreneurship-assist-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0 0 0 14px;
}

.entrepreneurship-assist-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 50px;
  padding: 9px 8px;
  color: var(--text-dark);
  font-size: clamp(11px, 3vw, 17px);
  font-weight: 800;
  line-height: 1.25;
}

.entrepreneurship-assist-list li:nth-child(even) {
  border-left: 1px solid rgba(213, 192, 161, 0.5);
}

.entrepreneurship-assist-list li:nth-child(n + 3) {
  border-top: 1px solid rgba(213, 192, 161, 0.5);
}

.entrepreneurship-bullet {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid #d5a042;
  background: rgba(213, 192, 161, 0.12);
}

.entrepreneurship-bullet::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 6px;
  height: 10px;
  border-right: 2.5px solid #b38745;
  border-bottom: 2.5px solid #b38745;
  transform: rotate(45deg);
}

.entrepreneurship-assist-list li span:last-child {
  flex: 1;
}

.double-cta-panel {
  width: 100%;
  padding: 18px 0 20px;
}

.double-cta-btn {
  position: relative;
  width: 72%;
  max-width: 560px;
  min-height: 48px;
  margin: 0 auto 10px;
  padding: 8px 56px 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(78, 101, 84, 0.2);
  color: var(--white);
  text-align: center;
  transition: var(--transition);
}

.double-cta-btn--secondary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(213, 192, 161, 0.3);
}

.double-cta-btn:active {
  transform: translateY(-1px);
}

.double-cta-btn:last-child {
  margin-bottom: 0;
}

.double-cta-text {
  font-size: clamp(17px, 4.8vw, 28px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.tap-hand {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  transform: translateY(-50%);
  animation: tapHand 1.05s ease-in-out infinite;
}

.double-cta-btn--secondary .tap-hand {
  color: var(--primary-dark);
}

.tap-hand::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  animation: tapRing 1.05s ease-out infinite;
}

.tap-hand svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(-20deg);
}

@keyframes tapHand {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
  }
  44% {
    transform: translate(-2px, calc(-50% - 2px)) scale(0.9);
  }
  68% {
    transform: translateY(-50%) scale(1.08);
  }
}

@keyframes tapRing {
  0% {
    opacity: 0.85;
    transform: scale(0.74);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

@media (max-width: 420px) {
  .course-showcase-grid {
    gap: 6px;
    padding: 0 10px 6px;
  }

  .course-card {
    min-height: 344px;
    padding: 12px 10px 10px;
  }

  .course-card--featured {
    min-height: 376px;
  }

  .course-art {
    min-height: 114px;
    padding: 8px 10px 6px;
  }

  .course-art img {
    height: 112px;
  }

  .course-card h3 {
    font-size: 16px;
  }

  .course-card--featured h3 {
    font-size: 18px;
  }

  .course-card li {
    font-size: 12px;
    margin: 6px 0;
  }

  .course-btn {
    min-height: 38px;
    font-size: 14px;
  }

  .double-cta-btn {
    width: 78%;
    min-height: 44px;
    padding: 7px 48px 7px 18px;
  }

  .tap-hand {
    right: 10px;
    width: 30px;
    height: 30px;
  }

  .tap-hand svg {
    width: 20px;
    height: 20px;
  }

  .employment-assist-section {
    padding: 20px 12px 16px;
  }

  .employment-assist-card {
    grid-template-columns: 102px minmax(0, 1fr);
    padding: 14px 12px;
  }

  .employment-assist-role {
    padding-right: 10px;
  }

  .employment-assist-icon {
    width: 80px;
    height: 80px;
  }

  .employment-assist-icon svg {
    width: 42px;
    height: 42px;
  }

  .employment-assist-role h3 {
    margin-top: 10px;
  }

  .employment-assist-list {
    padding-left: 12px;
  }

  .employment-assist-list li {
    gap: 8px;
    padding: 9px 0;
    font-size: 13px;
  }

  .employment-bullet {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }

  .employment-bullet::before {
    left: 7px;
    top: 5px;
    width: 6px;
    height: 10px;
    border-right-width: 2.5px;
    border-bottom-width: 2.5px;
  }

  .entrepreneurship-assist-section {
    padding: 20px 12px 16px;
  }

  .entrepreneurship-assist-head h2 {
    font-size: 26px;
  }

  .entrepreneurship-assist-card {
    grid-template-columns: 100px minmax(0, 1fr);
    padding: 14px 12px;
  }

  .entrepreneurship-assist-role {
    padding-right: 10px;
  }

  .entrepreneurship-assist-icon {
    width: 80px;
    height: 80px;
  }

  .entrepreneurship-assist-icon svg {
    width: 42px;
    height: 42px;
  }

  .entrepreneurship-assist-role h3 {
    margin-top: 10px;
  }

  .entrepreneurship-assist-list {
    padding-left: 12px;
  }

  .entrepreneurship-assist-list li {
    gap: 6px;
    min-height: 46px;
    padding: 8px 6px;
    font-size: 12px;
  }

  .entrepreneurship-bullet {
    flex-basis: 22px;
    width: 22px;
    height: 22px;
  }

  .entrepreneurship-bullet::before {
    left: 6px;
    top: 4px;
    width: 6px;
    height: 9px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }

  .academy-mobile-section {
    padding: 20px 12px 18px;
  }

  .academy-mobile-head h2 {
    font-size: 24px;
  }

  .academy-mobile-tabs {
    gap: 6px;
    margin-bottom: 10px;
  }

  .academy-mobile-grid {
    height: clamp(360px, 106vw, 430px);
    gap: 6px;
  }

  .academy-mobile-column {
    gap: 6px;
  }

  .why-compare-section {
    padding: 8px 12px 14px;
  }

  .why-compare-head {
    grid-template-columns: minmax(0, 1fr) 60px minmax(0, 1fr);
    min-height: 52px;
  }

  .why-compare-brand {
    gap: 8px;
    padding: 8px 10px;
  }

  .why-crown {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .why-compare-brand strong {
    font-size: 18px;
  }

  .why-compare-pk {
    font-size: 20px;
  }

  .why-compare-normal {
    font-size: 16px;
  }

  .why-compare-row {
    min-height: 84px;
  }

  .why-compare-cell {
    gap: 8px;
    padding: 12px 10px 11px;
  }

  .why-status {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }

  .why-status--good::before {
    left: 7px;
    top: 5px;
    width: 6px;
    height: 10px;
    border-right-width: 2.5px;
    border-bottom-width: 2.5px;
  }

  .why-status--bad::before,
  .why-status--bad::after {
    left: 5px;
    top: 11px;
    width: 14px;
    height: 2px;
  }

  .why-compare-cell p {
    font-size: 12px;
    line-height: 1.32;
  }

  .trust-stats-section {
    padding: 10px 12px 16px;
  }

  .trust-stat-item {
    gap: 9px;
    min-height: 96px;
    padding: 14px 12px;
  }

  .trust-stat-icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .trust-stat-copy h3 {
    gap: 4px;
  }

  .trust-stat-copy h3 strong {
    font-size: 22px;
  }

  .trust-stat-copy h3 span {
    font-size: 12px;
  }

  .trust-stat-copy p {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.3;
  }
}

@media (max-width: 560px) {
  .course-showcase-section {
    padding: 8px 0 10px;
  }

  .course-showcase {
    padding-top: 34px;
  }

  .course-ribbon {
    min-width: 96px;
    padding: 7px 14px 9px;
    font-size: 12px;
  }

  .course-showcase-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.18fr) minmax(0, 0.9fr);
    gap: 5px;
    padding: 0 8px 6px;
  }

  .course-card {
    min-height: 0;
    padding: 8px 5px 8px;
    border-radius: 13px;
    box-shadow: 0 8px 16px rgba(78, 101, 84, 0.1);
  }

  .course-card:not(.course-card--featured) {
    margin-top: 12px;
  }

  .course-card--featured {
    min-height: 0;
    transform: translateY(-6px);
    box-shadow: 0 12px 22px rgba(78, 101, 84, 0.16);
  }

  .course-art {
    min-height: 0;
    height: clamp(76px, 23vw, 116px);
    padding: 4px;
    border-radius: 10px;
  }

  .course-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .course-icon {
    width: 34px;
    height: 34px;
    margin: -19px auto 4px;
    font-size: 17px;
    box-shadow: 0 5px 10px rgba(78, 101, 84, 0.1);
  }

  .course-card h3,
  .course-card--featured h3 {
    margin: 4px 0 5px;
    font-size: clamp(12px, 3.45vw, 16px);
    line-height: 1.18;
  }

  .course-card ul {
    margin: 2px 0 8px;
    padding: 0;
  }

  .course-card li {
    padding-left: 8px;
    margin: 3px 0;
    font-size: clamp(9px, 2.55vw, 12px);
    line-height: 1.32;
  }

  .course-btn {
    min-height: 28px;
    padding: 0 4px;
    font-size: clamp(10px, 2.75vw, 13px);
    line-height: 1;
    border-radius: 999px;
  }
}

@media (max-width: 360px) {
  .course-showcase-grid {
    gap: 4px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .course-card {
    padding: 7px 4px;
    border-radius: 11px;
  }

  .course-art {
    height: 72px;
  }

  .course-card li {
    font-size: 9px;
  }
}

.icon_a {
  -webkit-animation: Tada2 2s both infinite;
  -moz-animation: Tada2 2s both infinite;
  -ms-animation: Tada2 2s both infinite;
  animation: Tada2 2s both infinite;
}

@-webkit-keyframes Tada2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  55% {
    -webkit-transform: scale(1.05) rotate(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes Tada2 {
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
  55% {
    -moz-transform: scale(1.05) rotate(0);
  }
  100% {
    -moz-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@-ms-keyframes Tada2 {
  0% {
    -ms-transform: scale(1);
    transform: scale(1);
  }
  55% {
    -ms-transform: scale(1.05) rotate(0);
  }
  100% {
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes Tada2 {
  0% {
    transform: scale(1);
  }
  55% {
    transform: scale(1.05) rotate(0);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

/* final override: employment / entrepreneurship ornaments */
.employment-assist-head,
.entrepreneurship-assist-head {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.employment-assist-head h2,
.entrepreneurship-assist-head h2 {
  position: relative;
  z-index: 1;
}

.employment-assist-head h2::before {
  content: "Entrepreneurship";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  color: rgba(181, 158, 124, 0.13);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.employment-assist-head h2::after,
.entrepreneurship-assist-head h2::after {
  display: none;
}

.employment-assist-kicker,
.entrepreneurship-assist-kicker {
  gap: 2.4vw;
  margin: 3.2vw auto 2.2vw;
}

.employment-assist-kicker span,
.entrepreneurship-assist-kicker span {
  flex: 0 1 21vw;
  width: 21vw;
  max-width: 96px;
  height: 5.2vw;
  max-height: 24px;
  background: url("../picture/laurel-ornament-copy.png") center / 100% auto
    no-repeat;
}

.employment-assist-kicker span:first-child,
.entrepreneurship-assist-kicker span:first-child {
  transform: scaleX(-1);
}

.employment-assist-kicker strong,
.entrepreneurship-assist-kicker strong {
  position: relative;
  flex: 0 0 auto;
  padding: 0 7.2vw;
  color: var(--primary-dark);
  font-size: clamp(12px, 3.35vw, 16px);
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.employment-assist-kicker strong::before,
.employment-assist-kicker strong::after,
.entrepreneurship-assist-kicker strong::before,
.entrepreneurship-assist-kicker strong::after {
  content: "";
  width: 5.8vw;
  max-width: 26px;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: 50%;
  background: url("../picture/wheat-ornament-copy.png") center / contain
    no-repeat;
  transform: translateY(-50%);
}

.employment-assist-kicker strong::before,
.entrepreneurship-assist-kicker strong::before {
  left: 0;
}

.employment-assist-kicker strong::after,
.entrepreneurship-assist-kicker strong::after {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}

.icon_shake {
  -webkit-animation: Tada 1.5s both infinite;
  -moz-animation: Tada 1.5s both infinite;
  -ms-animation: Tada 1.5s both infinite;
  animation: Tada 1.5s both infinite;
}

@-webkit-keyframes Tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  70%,
  73% {
    -webkit-transform: scale(0.9) rotate(-5deg);
    transform: scale(0.9) rotate(-5deg);
  }
  77%,
  83%,
  90%,
  97% {
    -webkit-transform: scale(1.05) rotate(5deg);
    transform: scale(1.05) rotate(5deg);
  }
  80%,
  87%,
  93% {
    -webkit-transform: scale(1.05) rotate(-5deg);
    transform: scale(1.05) rotate(-5deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@-moz-keyframes Tada {
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
  70%,
  73% {
    -moz-transform: scale(0.9) rotate(-5deg);
    transform: scale(0.9) rotate(-5deg);
  }
  77%,
  83%,
  90%,
  97% {
    -moz-transform: scale(1.05) rotate(5deg);
    transform: scale(1.05) rotate(5deg);
  }
  80%,
  87%,
  93% {
    -moz-transform: scale(1.05) rotate(-5deg);
    transform: scale(1.05) rotate(-5deg);
  }
  100% {
    -moz-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@-ms-keyframes Tada {
  0% {
    -ms-transform: scale(1);
    transform: scale(1);
  }
  70%,
  73% {
    -ms-transform: scale(0.9) rotate(-5deg);
    transform: scale(0.9) rotate(-5deg);
  }
  77%,
  83%,
  90%,
  97% {
    -ms-transform: scale(1.05) rotate(5deg);
    transform: scale(1.05) rotate(5deg);
  }
  80%,
  87%,
  93% {
    -ms-transform: scale(1.05) rotate(-5deg);
    transform: scale(1.05) rotate(-5deg);
  }
  100% {
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes Tada {
  0% {
    transform: scale(1);
  }
  70%,
  73% {
    transform: scale(0.9) rotate(-5deg);
  }
  77%,
  83%,
  90%,
  97% {
    transform: scale(1.05) rotate(5deg);
  }
  80%,
  87%,
  93% {
    transform: scale(1.05) rotate(-5deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

/* final layout: kicker ornaments are positioned by outer wrapper */
/* 就业板块: 月桂叶(宽) + 麦穗(窄) 双图叠加, 标题压在最上层, 与创业板块同款 */
.employment-assist-kicker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76vw;
  max-width: 380px;
  height: 22vw;
  max-height: 110px;
  margin: 2.4vw auto 1.6vw;
  padding: 0;
  gap: 0;
  overflow: visible;
  z-index: 5;
  background: transparent;
}

/* 底层: 月桂叶图, 宽幅铺开 */
.employment-assist-kicker::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 100%;
  height: 80%;
  background: url("../picture/laurel-ornament.png") center / contain no-repeat;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* 中层: 麦穗图, 窄一些 */
.employment-assist-kicker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 62%;
  height: 100%;
  background: url("../picture/wheat-ornament.png") center / contain no-repeat;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* 隐藏原 span 占位 */
.employment-assist-kicker span {
  display: none;
}

/* 标题压在图片正中最上层 */
.employment-assist-kicker strong {
  position: relative;
  z-index: 2;
  padding: 0 8px;
  font-size: clamp(20px, 5.4vw, 36px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--primary-dark);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.employment-assist-kicker strong::before,
.employment-assist-kicker strong::after {
  display: none;
}

/* 创业板块: 月桂叶(宽) + 麦穗(窄) 双图叠加, 标题压在最上层, 整体悬停在 section 上方 */
.entrepreneurship-assist-kicker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76vw;
  max-width: 380px;
  height: 22vw;
  max-height: 110px;
  margin: -5vw auto 1.6vw;
  padding: 0;
  gap: 0;
  overflow: visible;
  z-index: 5;
  background: transparent;
}

/* 底层: 月桂叶图 (laurel-ornament) 宽幅铺开 */
.entrepreneurship-assist-kicker::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 100%;
  height: 80%;
  background: url("../picture/laurel-ornament.png") center / contain no-repeat;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* 中层: 麦穗图, 窄一些 */
.entrepreneurship-assist-kicker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 62%;
  height: 100%;
  background: url("../picture/wheat-ornament.png") center / contain no-repeat;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* 隐藏原 span 占位 (HTML 里仍保留, 不动结构) */
.entrepreneurship-assist-kicker span {
  display: none;
}

/* 标题压在图片正中最上层 */
.entrepreneurship-assist-kicker strong {
  position: relative;
  z-index: 2;
  padding: 0 8px;
  font-size: clamp(20px, 5.4vw, 36px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--primary-dark);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.entrepreneurship-assist-kicker strong::before,
.entrepreneurship-assist-kicker strong::after {
  display: none;
}

/* ===========================================================
   全局优化: 间距节奏 + 按钮统一全圆胶囊 + 触控友好尺寸
   覆盖前面分散的旧规则, 放在最后保证优先级
   =========================================================== */

/* —— 1. 区块间距统一节奏 (只加区块间外边距, 不再加内部上下padding) —— */
/* .bg_02,
.bg_03,
.bg_05,
.bg_06,
.bg_07,
.bg_08,
.bg_09 {
  margin-top: 12px;
  margin-bottom: 0;
} */

.bg_02:first-child,
.bg_03:first-child {
  margin-top: 0;
}

section + section,
section + .bg,
.bg + section,
.bg + .bg {
  /* margin-top: 18px; */
}

.box_img + .box_img {
  margin-top: 4px;
}
.box_img img {
  display: block;
  width: 100%;
}

/* —— 2. 所有按钮统一圆角风格 (与PC端一致，不再使用胶囊风格) —— */
.aBox {
  border-radius: var(--radius-sm) !important; /* 8px */
}
.double-cta-btn {
  border-radius: var(--radius-md) !important; /* 12px */
}

/* —— 3. 按钮尺寸与内边距优化，精致且触控友好 (course-bg-stage 不动) —— */
/* 顶部/中部各 section 的 "咨询..." 按钮 */
.aBox {
  width: 48%;
  max-width: 240px;
  min-height: 24px;
  padding: 3px 10px;
  font-size: clamp(11px, 2.8vw, 12px);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(78, 101, 84, 0.2);
}
.aBox:active {
  transform: translateY(-1px);
}

/* "免费了解 / 课程大纲" 两个大 CTA */
.double-cta-btn {
  width: 80%;
  max-width: 480px;
  min-height: 38px;
  padding: 7px 48px 7px 18px;
  margin-bottom: 12px;
  font-size: clamp(15px, 4.2vw, 17px);
  box-shadow: 0 4px 12px rgba(78, 101, 84, 0.2);
}
.double-cta-btn:last-child {
  margin-bottom: 0;
}
.double-cta-text {
  font-size: clamp(15px, 4.2vw, 17px);
  letter-spacing: 0.02em;
}

/* —— 4. 问题列表也用全圆胶囊 —— */
.question ul li a {
  padding: 7px 18px;
}

/* —— 4.5 学员常见问题: 整体收紧, 减少留白 —— */
.bg_09 .title {
  margin-bottom: 6px;
}
.bg_09 .box_img {
  margin-bottom: 4px;
}
.bg_09 .box_img img {
  max-height: 40px;
  width: auto;
  margin: 0 auto;
}
.question {
  padding: 4px 14px 0;
}
.question ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.question ul li {
  padding: 8px 14px;
  margin-bottom: 7px;
  background-size: 18px 18px;
  background-position: 12px 50%;
  border-radius: 5px;
}
.question ul li span:nth-child(1) {
  font-size: 13px;
  line-height: 1.3;
  padding-left: 30px;
}
.question ul li span:nth-child(2) {
  font-size: 13px;
  padding-left: 10px;
}

/* —— 5. 默认透白段落统一为透明, 让 body 米色接管 —— */
.course-bg-section,
.double-cta-panel,
.cert-proof-section,
.academy-mobile-section {
  background: transparent;
}

/* —— 6. 章节内边距统一节奏 —— */
.course-title-section,
.course-bg-section,
.double-cta-panel,
.cert-proof-section,
.employment-assist-section,
.entrepreneurship-assist-section,
.why-compare-section,
.academy-mobile-section {
  padding-top: 24px;
  /* padding-bottom: 20px; */
  padding-left: 14px;
  padding-right: 14px;
}
.cert-proof-section {
  padding-top: unset;
}

/* —— 6.4 课程标题副标语 pill 缩小 —— */
.course-title-inner p {
  min-height: 28px;
  margin-top: 10px;
  padding: 0 16px;
  font-size: 13px;
  border-width: 1.5px;
}

/* —— 6.5 学员常见问题: 消息图标改主题色 (mask 着色, 不动资源) —— */
.question ul li {
  background-color: #fff;
  background-image: none;
  position: relative;
}
.question ul li a {
  display: flex;
  align-items: center;
}
.question ul li .q-icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  flex-shrink: 0;
}
/* img 是第 1 个子元素, 问题文本是第 2 个, "在线咨询 >" 是第 3 个 */
.question ul li span:nth-child(2) {
  font-size: 13px;
  line-height: 1.3;
  padding-left: 0;
  flex: 1;
  min-width: 0;
  text-align: left;
}
.question ul li span:nth-child(3) {
  font-size: 13px;
  padding-left: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

/* —— 7. 导师平均从业经验 (数字突出 + 英文水印) —— */
.teacher-experience {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 3.2vw auto 2vw;
  padding: 2vw 0 1.2vw;
  z-index: 1;
  overflow: hidden;
  text-align: center;
}
/* 英文水印: 大号低透明度, 居中铺在文字背后 */
.teacher-experience::before {
  content: "10 YEARS+";
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: 0;
  transform: translate(-50%, -50%);
  font-size: clamp(38px, 11vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
  color: rgba(181, 158, 124, 0.1);
  pointer-events: none;
}
.teacher-experience > * {
  position: relative;
  z-index: 1;
}
.teacher-experience span {
  font-size: clamp(13px, 3.6vw, 18px);
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.2;
}
.teacher-experience span:first-child {
  margin-right: 0.6em;
}
.teacher-experience span:last-child {
  margin-left: 0.3em;
}
.teacher-experience strong {
  font-size: clamp(28px, 7.6vw, 48px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.65);
}

/* ===========================================================
   8. bg_04 → cert-proof 三级标题层级 (按参考图: 警示→核心→辅助)
   别被骗! = 主标题(最大) → 考就考… = 核心副标题(中) → 2大…加持 = 辅助说明(最小)
   =========================================================== */
.bg_04 .title span {
  font-size: clamp(26px, 7.2vw, 34px) !important;
  font-weight: 900 !important;
  color: var(--primary-dark) !important;
  letter-spacing: 1px !important;
  line-height: 1.15 !important;
}
.bg_04 .text h2 {
  font-size: clamp(17px, 4.4vw, 22px) !important;
  font-weight: 700 !important;
  color: var(--primary-dark) !important;
  line-height: 1.35 !important;
  margin: 6px 0 0 !important;
}
.cert-proof-title {
  font-size: clamp(12px, 3.2vw, 14px) !important;
  font-weight: 700 !important;
  color: var(--primary-dark) !important;
  letter-spacing: 0.5px !important;
  margin: 0 10px 10px 14px !important;
}
/* 辅助文字不需要主标题的装饰下划线，隐藏掉 */
.cert-proof-title::after {
  display: none !important;
}

/* ===========================================================
   9. 移动端底部 footer (备案/版权/联系方式，无二维码)
   =========================================================== */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 28px 20px 22px;
  text-align: center;
  font-size: clamp(11px, 3vw, 13px);
  line-height: 1.85;
}
.site-footer-brand {
  font-size: clamp(15px, 4vw, 17px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.site-footer-hotline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.site-footer-hotline-label {
  font-size: clamp(11px, 3vw, 12px);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
}
.site-footer-hotline-num {
  font-size: clamp(18px, 5.2vw, 22px);
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.site-footer-legal p {
  margin: 0;
}
.site-footer-legal a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

/* Hero strength panel rebuilt from hero-banner.png so content remains selectable. */
.hero-strength {
  padding: 16px 14px;
  /* background: var(--secondary-dark); */
}

.hero-strength__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-strength__feature,
.hero-strength__stat {
  border: 1px solid rgba(50, 82, 85, 0.45);
  border-radius: 7px;
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.85);
}

.hero-strength__feature {
  min-height: 132px;
  padding: 16px 5px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-strength__feature img {
  width: 45px;
  height: 45px;
  margin-bottom: 12px;
  object-fit: contain;
}

.hero-strength__feature p,
.hero-strength__stat p {
  margin: 0;
  color: #111;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-strength__feature p {
  font-size: clamp(11px, 3.15vw, 18px);
  line-height: 1.48;
}

.hero-strength__stats {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-strength__stat {
  min-height: 76px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-strength__stat img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
}

.hero-strength__stat p {
  font-size: clamp(11px, 3.05vw, 17px);
  line-height: 1.25;
}

.hero-strength__stat strong {
  display: block;
  margin-top: 4px;
  color: #2f733d;
  font-size: 1.16em;
  font-weight: 900;
  white-space: nowrap;
}

.hero-strength__stat:nth-child(3) strong {
  font-size: 0.96em;
  line-height: 1.2;
  white-space: normal;
}

@media (max-width: 380px) {
  .hero-strength {
    padding: 10px 8px;
  }
  .hero-strength__features,
  .hero-strength__stats {
    gap: 6px;
  }
  .hero-strength__feature {
    min-height: 112px;
    padding: 10px 3px 8px;
  }
  .hero-strength__feature img {
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
  }
  .hero-strength__stat {
    min-height: 66px;
    padding: 7px;
    gap: 6px;
  }
  .hero-strength__stat img {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}

/* Tuition consultation button replacing the former yjm_12.gif banner. */
.tuition-cta {
  width: 100%;
  padding: 10px 14px;
}

.tuition-cta__button {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 45px;
  align-items: center;
  width: 100%;
  padding: 13px 10px 13px 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  background: #557464;
  box-shadow: 0 5px 14px rgba(48, 80, 63, 0.22);
  color: #fff;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.tuition-cta__button:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 2px 7px rgba(48, 80, 63, 0.22);
}

.tuition-cta__money {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  object-fit: cover;
}

.tuition-cta__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  padding: 0 6px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.tuition-cta__copy strong {
  display: block;
  font-size: clamp(14px, 3.8vw, 20px);
  font-weight: 800;
  letter-spacing: 0;
}

.tuition-cta__copy > span {
  display: inline-block;
  flex: 0 0 auto;
  padding: 10px 20px;
  border-radius: 5px;
  background: #f7f3e9;
  color: #3f6550;
  font-size: clamp(11px, 3vw, 14px);
  font-weight: 700;
}

.tuition-cta__hand {
  position: relative;
  left: 10px;
  top: 5px;
  width: 25px;
  height: 25px;
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: #f7f3e9;
  box-shadow: 0 2px 7px rgba(35, 50, 42, 0.18);
  transform-origin: 42% 24%;
  animation: tuitionHandTap 1.55s cubic-bezier(0.45, 0, 0.25, 1) infinite;
  pointer-events: none;
}

.tuition-cta__hand img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 66px;
  max-width: none;
  height: 66px;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

@keyframes tuitionHandTap {
  0%,
  100% {
    transform: translate3d(0, 2px, 0) scale(1);
  }
  36% {
    transform: translate3d(-2px, -2px, 0) scale(0.97);
  }
  52% {
    transform: translate3d(-2px, -2px, 0) scale(0.97);
  }
  76% {
    transform: translate3d(0, 2px, 0) scale(1);
  }
}

@media (max-width: 380px) {
  .tuition-cta {
    padding-inline: 8px;
  }

  .tuition-cta__button {
    grid-template-columns: 52px minmax(0, 1fr) 41px;
    min-height: 80px;
    padding: 11px 8px;
  }

  .tuition-cta__money {
    width: 48px;
    height: 48px;
  }

  .tuition-cta__copy {
    gap: 5px;
    padding-inline: 2px;
  }

  .tuition-cta__copy strong {
    font-size: 12px;
  }

  .tuition-cta__copy > span {
    padding: 3px 6px;
    font-size: 10px;
  }

  .tuition-cta__hand {
    width: 35px;
    height: 35px;
  }

  .tuition-cta__hand img {
    width: 66px;
    height: 66px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tuition-cta__hand {
    animation: none;
  }
}
