:root {
  --navy: #0a1628;
  --navy-light: #132240;
  --navy-soft: #1a2d4f;
  --gold: #c9a962;
  --gold-light: #e0c98a;
  --gold-dark: #a08540;
  --white: #ffffff;
  --black: #000000;
  --cream: #f8f5ef;
  --cream-dark: #efe9dc;
  --gray: #69707e;
  --gray-light: #e2e6ee;
  --gray-mid: #c5cad3;
  --accent: #4a9eff;
  --red: #c8483f;
  --title: #3262a6;
  --line: rgba(201, 169, 98, 0.25);
}
.dis-f {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.dis-b {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.dis-c {
    display: flex;
    align-items: center;
    justify-content: center
}

.dis-e {
    display: flex;
    align-items: center;
    justify-content: flex-end
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans SC", sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  min-width: 1200px;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

/* Top Bar */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}
.topbar.scrolled {
  padding: 12px 48px;
  background: rgba(10, 22, 40, 0.92);
}
.topbar-logo {
  font-family: "Noto Serif SC", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-logo::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
}
.topbar-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.topbar-nav a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  transition: color 0.3s;
  position: relative;
}
.topbar-nav a:hover {
  color: var(--gold);
}
.topbar-cta {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  transition: all 0.3s;
}
.topbar-cta:hover {
  background: var(--gold);
  color: var(--navy);
}
@media (max-width: 900px) {
  .topbar-nav {
    display: none;
  }
  .topbar {
    padding: 14px 24px;
  }
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url(images/banner.jpg) no-repeat;
  background-position: top center;
  background-size: auto 100%;
}
@media (max-width: 1023px) {
  .hero {
    background-size: cover;
    background-position: center center;
  }
}
.hero .hero-inner {
  width: 1200px;
  height: 100%;
  position: relative;
}
.hero .herobtnbox {
  position: absolute;
  left: 16px;
  bottom: 75px;
  display: flex;
  gap: 30px;
}
.sectionbtnbox {
  display: flex;
  gap: 50px;
  justify-content: center;
  margin: 50px auto 0;
}
.section-btn {
  padding: 0.6rem 1.7rem;
  color: var(--black);
  border-color: var(--gold-light);
  background: var(--gold-light);
  font-size: 1.2rem;
  border-radius: 80px;
  cursor: pointer;
  display: inline-block;
}
.hero .section-btn {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}
.section-btn:nth-child(1) {
  color: var(--black);
  border-color: var(--gold-light);
  background: var(--gold-light);
}
/* Floating particles */
.particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(201, 169, 98, 0.5);
  border-radius: 50%;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

/* Section Base */
.section {
  padding: 100px 48px;
  position: relative;
}
.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  font-weight: 500;
}
.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: "Noto Serif SC", serif;
  color: var(--title);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  letter-spacing: 0.02em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.6rem;
  position: relative;
  z-index: 1;
}
.section-title br {
  display: none;
}
.section-title span {
  background: var(--gold-light);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 100px;
  border: 2px solid var(--title);
  box-sizing: content-box;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.section-title span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3rem;
  height: 1px;
  background: var(--title);
  transform: translate3d(-50%, -50%, 0);
  z-index: -1;
}
.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

/* Pain Points - 学员/家长视角 */
.pain-section {
  background: var(--cream);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 80px;
}
.pain-card {
  background: var(--white);
  padding: 56px 44px 80px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  transform: translateY(40px);
  border: 1px solid var(--gray-light);
}
.pain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}
.pain-card:hover::before {
  transform: scaleX(1);
}
.pain-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(10, 22, 40, 0.08);
  border-color: transparent;
}
.pain-tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.pain-card h3 {
  font-family: "Noto Serif SC", serif;
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: var(--navy);
  font-weight: 700;
}
.pain-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pain-card ul li {
  padding: 14px 0 14px 24px;
  position: relative;
  line-height: 1.85;
  font-size: 0.95rem;
  color: var(--gray);
  border-bottom: 1px dashed var(--gray-light);
  font-weight: 300;
}
.pain-card ul li:last-child {
  border-bottom: none;
}
.pain-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.7em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.pain-card ul li strong {
  color: var(--navy);
  font-weight: 600;
}
.pain-section .section-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
}
@media (max-width: 900px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }
}

/* Audience Section - 适合人群 */
.audience-section {
  background: var(--white);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.audience-card {
  padding: 40px 28px;
  border: 1px solid var(--gray-light);
  background: var(--cream);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}
.audience-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.audience-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 20px 40px rgba(10, 22, 40, 0.06);
}
.audience-card:hover::after {
  transform: scaleX(1);
}
.audience-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  transition: all 0.4s;
}
.audience-icon i {
  font-size: 1.6rem;
  line-height: 1;
}
.audience-card:hover .audience-icon {
  background: var(--gold);
  color: var(--white);
}
.audience-card h4 {
  font-family: "Noto Serif SC", serif;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--navy);
  font-weight: 700;
}
.audience-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.8;
  font-weight: 300;
}
@media (max-width: 900px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

/* Course Hero (price + meta) */
.course-hero {
  background: var(--navy);
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.course-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(201,169,98,.1)"/></svg>');
  background-size: 40px 40px;
  opacity: 0.5;
}
.course-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.course-price-tag {
  display: inline-block;
  padding: 16px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: "Noto Serif SC", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.15em;
  opacity: 0;
  transform: scale(0.9);
}
.course-price-tag span {
  color: var(--white);
  font-size: 0.9rem;
  margin: 0 12px;
  opacity: 0.5;
}
.course-name {
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(20px);
}
.course-name em {
  color: var(--gold);
  font-style: normal;
  font-weight: 300;
}
.course-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
}
.course-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.course-meta-item {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}
.course-meta-item .num {
  font-family: "Noto Serif SC", serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.05em;
}
.course-meta-item .num small {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 6px;
  font-weight: 300;
}
.course-meta-item .label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .course-meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* Course Modules */
.modules-section {
  /* padding: 140px 48px; */
  background: var(--cream);
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 80px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.modules-grid .section-btn{
  position: absolute;
  bottom: 1.5rem;
  right: 1.1rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
}

.module-card {
  background: var(--white);
  padding: 56px 44px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  transform: translateY(40px);
  border: 1px solid transparent;
}
.module-card.alt {
  background: var(--title);
  color: var(--white);
}
.module-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(10, 22, 40, 0.12);
  border-color: var(--gold);
}
.module-num {
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
  font-style: italic;
}
.module-tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.module-card.alt .module-tag {
  color: var(--gold-light);
}
.module-title {
  font-family: "Noto Serif SC", serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.module-hours {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.05em;
}
.module-hours::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gray-light);
}
.module-card.alt .module-hours {
  color: rgba(255, 255, 255, 0.4);
}
.module-card.alt .module-hours::after {
  background: rgba(255, 255, 255, 0.12);
}
.module-section {
  margin-bottom: 24px;
}
.module-section-label {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  text-transform: uppercase;
  border-left: var(--gold) 5px solid;
  padding-left: 9px;
}
.module-card.alt .module-section-label {
  color: var(--gold-light);
}
.module-section-text {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--gray);
  font-weight: 300;
}
.module-section-text strong {
  font-weight: 600;
  color: var(--navy);
}
.module-card.alt .module-section-text {
  color: rgba(255, 255, 255, 0.7);
}
.module-card.alt .module-section-text strong {
  color: var(--gold-light);
}
.module-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
}
.module-card.alt .module-keywords {
  border-top-color: rgba(255, 255, 255, 0.12);
}
.module-keywords span {
  padding: 6px 14px;
  background: rgba(201, 169, 98, 0.08);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(201, 169, 98, 0.2);
  transition: all 0.3s;
  font-weight: 400;
}
.module-card.alt .module-keywords span {
  background: rgba(201, 169, 98, 0.1);
  color: var(--gold-light);
  border-color: rgba(201, 169, 98, 0.25);
}
.module-card:hover .module-keywords span {
  border-color: var(--gold);
  background: rgba(201, 169, 98, 0.15);
}
@media (max-width: 900px) {
  .modules-grid {
    grid-template-columns: 1fr;
  }
  .module-card{
    padding-bottom: 80px;
  }
.modules-grid .section-btn{
      bottom: 1.5rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}
}

/* Syllabus Detail (EAP + 微积分) */
.syllabus-section {
  background: var(--white);
}
.syllabus-block {
  margin-top: 80px;
}
.syllabus-block-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.syllabus-block-title {
  font-family: "Noto Serif SC", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 16px;
}
.syllabus-block-title .en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
.syllabus-block-meta {
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}
.syllabus-block-meta strong {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
  margin-right: 6px;
}

.syllabus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .syllabus-grid {
    grid-template-columns: 1fr;
  }
}
.syllabus-item {
  background: var(--white);
  padding: 32px 28px;
  border: 1px solid var(--gray-light);
  position: relative;
  transition: all 0.4s ease;
}
.syllabus-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.4s;
  transform-origin: bottom;
}
.syllabus-item:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.06);
  border-color: transparent;
}
.syllabus-item:hover::before {
  transform: scaleY(1);
}
.syllabus-no {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  margin-bottom: 12px;
}
.syllabus-item h4 {
  font-family: "Noto Serif SC", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.5;
}
.syllabus-item p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.8;
  font-weight: 300;
}

/* 微积分6主题 */
.calc-themes {
  margin-top: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.calc-themes-head {
  background: var(--navy);
  color: var(--gold);
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.calc-themes-head h4 {
  font-family: "Noto Serif SC", serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.calc-themes-head .en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.calc-themes-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 900px) {
  .calc-themes-body {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .calc-themes-body {
    grid-template-columns: 1fr;
  }
}
.calc-theme {
  padding: 28px 24px;
  border-right: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  position: relative;
  transition: all 0.3s;
}
.calc-theme:hover {
  background: var(--cream);
}
.calc-theme:nth-child(3n) {
  border-right: none;
}
.calc-theme:nth-last-child(-n + 3) {
  border-bottom: none;
}
@media (max-width: 900px) {
  .calc-theme:nth-child(3n) {
    border-right: 1px solid var(--gray-light);
  }
  .calc-theme:nth-child(2n) {
    border-right: none;
  }
  .calc-theme:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--gray-light);
  }
  .calc-theme:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}
.calc-theme-no {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 8px;
}
.calc-theme h5 {
  font-family: "Noto Serif SC", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.calc-theme p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.8;
  font-weight: 300;
}

/* 师资 */
.faculty-section {
  background: var(--cream);
}
.faculty-group {
  margin-top: 64px;
}
.faculty-group-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
}
.faculty-group-title {
  font-family: "Noto Serif SC", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 14px;
}
.faculty-group-title .en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.faculty-group-count {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.1em;
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.faculty-grid2{
  grid-template-columns: repeat(2, 1fr);

}
@media (max-width: 900px) {
  .faculty-grid {
    grid-template-columns: 1fr;
  }
}
.faculty-card {
  background: var(--white);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
}
.faculty-card:hover {
  background: var(--white);
  box-shadow: 0 30px 60px rgba(10, 22, 40, 0.08);
}
.faculty-card-head {
  padding: 36px 32px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}
.faculty-card-head .section-btn{
    position: absolute;
    bottom: -0.9rem;
    right: 1.1rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
}
.faculty-avatar {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gold);
  transition: all 0.4s;
}
.faculty-card:hover .faculty-avatar {
  transform: scale(1.05);
}
.faculty-info {
  flex: 1;
  min-width: 0;
}
.faculty-name {
  font-family: "Noto Serif SC", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.faculty-en {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.faculty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.faculty-tag {
  padding: 3px 10px;
  background: rgba(10, 22, 40, 0.06);
  color: var(--navy);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.faculty-tag.gold {
  background: rgba(201, 169, 98, 0.15);
  color: var(--gold-dark);
  font-weight: 600;
}
.faculty-card-body {
  border-top: 1px dashed var(--gray-light);
  margin: 0 28px;
}
.faculty-card-body > div {
  margin-top: 20px;
}
.faculty-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
}
.faculty-card-body ul {
  list-style: none;
  padding: 0;
}
.faculty-card-body li {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 25px;
  padding-left: 14px;
  position: relative;
  font-weight: 300;
  margin-bottom: 4px;
  min-height: 25px;
}
.faculty-card-body li::before {
  content: "·";
  position: absolute;
  left: 2px;
  color: var(--gold);
  font-weight: 700;
}
.faculty-card-body li.notype::before {
  display: none;
}
.faculty-card-foot {
  padding: 18px 25px;
  background: rgba(10, 22, 40, 0.04);
  font-size: 0.82rem;
  color: var(--navy);
  line-height: 1.7;
  border-top: 1px solid var(--gray-light);
  font-weight: 300;
}
.faculty-card-foot::before {
  content: "「 ";
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}
.faculty-card-foot::after {
  content: " 」";
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

/* 排课表 */
.schedule-section {
  background: var(--cream);
  padding: 140px 48px;
}
.schedule-wrap {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 1100px) {
  .schedule-wrap {
    grid-template-columns: 1fr;
  }
}
.schedule-card {
  background: var(--white);
  padding: 48px 40px;
  border: 1px solid var(--gray-light);
  position: relative;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}
.schedule-card:hover {
  box-shadow: 0 30px 60px rgba(10, 22, 40, 0.08);
  border-color: var(--gold);
}
.schedule-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.schedule-class {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}
.schedule-title {
  font-family: "Noto Serif SC", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.schedule-dates {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.schedule-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 24px;
}
.schedule-meta-item {
  text-align: center;
}
.schedule-meta-item .n {
  font-family: "Noto Serif SC", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.schedule-meta-item .l {
  font-size: 0.7rem;
  color: var(--gray);
  margin-top: 6px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.schedule-teachers {
  margin-bottom: 8px;
}
.schedule-teachers-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.schedule-teacher-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--gray-light);
  font-size: 0.9rem;
}
.schedule-teacher-row:last-child {
  border-bottom: none;
}
.schedule-teacher-row .role {
  color: var(--gray);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}
.schedule-teacher-row .name {
  font-weight: 600;
  color: var(--navy);
  font-family: "Noto Serif SC", serif;
}
.schedule-teacher-row .lang {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold);
  font-size: 0.85rem;
}

/* Bonus Section */
.bonus-section {
  background: var(--white);
}
.bonus-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) {
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .bonus-grid {
    grid-template-columns: 1fr;
  }
}
.bonus-card {
  background: var(--cream);
  padding: 44px 32px;
  border: 1px solid transparent;
  position: relative;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(40px);
}
.bonus-card .giftIcon{
  font-size: 2.6rem;
  color: #ece1cb;
  position: absolute;
  top: 18px;
  right: 18px;
}
.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
}
.bonus-card:hover::before {
  transform: scaleX(1);
}
.bonus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(10, 22, 40, 0.08);
  background: var(--white);
  border-color: transparent;
}
.bonus-no {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
  font-style: italic;
}
.bonus-card h4 {
  font-family: "Noto Serif SC", serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.bonus-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.85;
  font-weight: 300;
}
.bonus-card .bonus-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(201, 169, 98, 0.15);
  color: var(--gold-dark);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  margin-top: 20px;
  font-weight: 600;
}
.bonus-note {
  text-align: center;
  margin-top: 48px;
  color: var(--gray);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  font-weight: 300;
}
.bonus-note strong {
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.15em;
}

/* Service Section - 删掉，保持页面精简（C端不需要看服务体系流程） */
.cta-section{
  background: var(--title);
}
.cta-section .cta-content {
  max-width: 1240px;
  margin: 0 auto;
}