@charset "UTF-8";
/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #D4AF37;
  --primary-dark: #B8941F;
  --secondary-color: #2C3E50;
  --accent-color: #E8D5B7;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --bg-light: #FAF8F3;
  --bg-white: #FFFFFF;
  --gradient-1: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
  --gradient-2: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: "Noto Sans TC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-light);
  width: 100%;
  max-width: 100vw;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-color);
}

.btn-contact {
  background: var(--gradient-1);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  color: var(--text-dark);
  font-weight: 600;
}

.btn-contact::after {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: var(--transition);
  border-radius: 2px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-1);
  opacity: 0.1;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  animation-delay: 5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 10%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-text {
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.8rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2C3E50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.title-line {
  display: block;
}

.title-line:first-child {
  margin-bottom: 0.2rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(44, 62, 80, 0.85);
  font-weight: 600;
  margin-bottom: 2.8rem;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

.hero-description {
  font-size: 1.08rem;
  color: rgba(44, 62, 80, 0.75);
  line-height: 2;
  margin-bottom: 3.5rem;
  max-width: 580px;
  padding: 1.5rem 0;
  border-left: 3px solid var(--primary-color);
  padding-left: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-radius: 0 12px 12px 0;
  backdrop-filter: blur(10px);
}

.hero-description p {
  margin-bottom: 0;
}

.highlight {
  color: var(--primary-color);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  margin-top: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.image-glow {
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  border-radius: 50%;
  background: var(--gradient-1);
  opacity: 0.25;
  filter: blur(60px);
  animation: pulse 3s infinite ease-in-out;
  z-index: -1;
}

.image-glow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0.5;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}
.profile-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50% !important;
  overflow: hidden !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.9), 0 0 0 8px rgba(255, 255, 255, 0.6);
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-white);
  display: block;
  box-sizing: border-box;
}

.profile-image-container::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: var(--gradient-1);
  z-index: -1;
  opacity: 0.3;
  filter: blur(30px);
  animation: pulse-border 4s infinite ease-in-out;
}

.profile-image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.1) 50%, rgba(212, 175, 55, 0.05) 100%);
  pointer-events: none;
  z-index: 1;
}

@keyframes pulse-border {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.5;
  }
}
.profile-image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(212, 175, 55, 0.25), 0 0 0 1px rgb(255, 255, 255), 0 0 0 8px rgba(255, 255, 255, 0.8);
}

.profile-image-container:hover::before {
  opacity: 0.5;
  filter: blur(40px);
}

.profile-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50% !important;
  margin: 0;
  padding: 0;
}

.profile-image-container:hover .profile-image {
  transform: scale(1.05);
}

.image-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
  z-index: 2;
}

.profile-icon {
  font-size: 6rem;
  font-weight: 900;
  color: var(--text-dark);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-dark);
  border-radius: 12px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--text-dark);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}
.arrow span {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-dark);
  border-bottom: 2px solid var(--text-dark);
  transform: rotate(45deg);
  animation: arrow-bounce 1.5s infinite;
}

.arrow span:nth-child(2) {
  animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes arrow-bounce {
  0%, 100% {
    opacity: 0;
    transform: rotate(45deg) translateY(0);
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) translateY(5px);
  }
}
/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid rgba(212, 175, 55, 0.3);
  font-weight: 500;
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--primary-color);
  color: var(--text-dark);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Section Styles */
section {
  padding: 6rem 0;
  position: relative;
}

.why-partner-section .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.why-partner-section .section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.why-partner-section .section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

.services-section .section-header {
  text-align: center;
}

.services-section .section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.services-section .section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  letter-spacing: 0.15em;
  word-spacing: 0.3em;
}

/* Why Partner Section */
.why-partner-section {
  background: linear-gradient(135deg, #FAF8F3 0%, #F5F1E8 50%, #FAF8F3 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.why-partner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(232, 213, 183, 0.15) 0%, transparent 50%);
  z-index: 0;
}

.why-partner-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(212, 175, 55, 0.02) 2px, rgba(212, 175, 55, 0.02) 4px);
  z-index: 0;
}

.why-partner-section .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.story-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 2rem 0;
}

.story-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-1);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gradient-1);
  opacity: 0.2;
}

.icon-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-color);
  z-index: 1;
}

.timeline-content {
  flex: 1;
  padding: 1.5rem;
  margin: 0 2rem;
  background: var(--bg-light);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.8;
}

.why-partner-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.why-partner-section .stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
  overflow: hidden;
}

.why-partner-section .stat-card:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 243, 0.95) 100%);
  border-top: 4px solid var(--primary-color);
}

.why-partner-section .stat-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 228, 188, 0.95) 100%);
  border-top: 4px solid rgba(212, 175, 55, 0.8);
}

.why-partner-section .stat-card:nth-child(3) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 213, 183, 0.95) 100%);
  border-top: 4px solid rgba(212, 175, 55, 0.7);
}

.stat-card:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 243, 0.95) 100%);
  border-top: 4px solid var(--primary-color);
}

.stat-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 228, 188, 0.95) 100%);
  border-top: 4px solid rgba(212, 175, 55, 0.8);
}

.stat-card:nth-child(3) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 213, 183, 0.95) 100%);
  border-top: 4px solid rgba(212, 175, 55, 0.7);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.4);
}

.why-partner-section .stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.6rem;
  line-height: 1;
  transition: all 0.4s ease;
  display: block;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
  line-height: 1;
  transition: all 0.4s ease;
  display: block;
}

.stat-card:hover .stat-number {
  transform: scale(1.1);
}

.why-partner-section .stat-label {
  font-size: 0.95rem;
  color: #2C3E50;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

.stat-label {
  font-size: 1.05rem;
  color: #2C3E50;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

.quote-box {
  max-width: 800px;
  margin: 4rem auto 0;
  padding: 3rem;
  background: var(--gradient-1);
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.quote-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-style: italic;
}

.quote-text:last-child {
  margin-bottom: 0;
}

/* Why Partner Grid */
.why-partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 2rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  flex-direction: column;
}

.why-card:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 243, 0.95) 100%);
  border-left: 4px solid var(--primary-color);
}

.why-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 228, 188, 0.95) 100%);
  border-left: 4px solid rgba(212, 175, 55, 0.7);
}

.why-card:nth-child(3) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 213, 183, 0.95) 100%);
  border-left: 4px solid rgba(212, 175, 55, 0.6);
}

.why-card:nth-child(4) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 243, 0.95) 100%);
  border-left: 4px solid var(--primary-color);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover::after {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.4);
}

.why-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  color: var(--primary-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(244, 228, 188, 0.12) 100%);
  border-radius: 16px;
  transition: var(--transition);
  flex-shrink: 0;
}

.why-card:hover .why-icon {
  transform: scale(1.08) rotate(3deg);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(244, 228, 188, 0.2) 100%);
}

.why-icon svg {
  width: 32px;
  height: 32px;
}

.why-card h3 {
  font-size: 1.3rem;
  color: #2C3E50;
  margin-bottom: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.why-card p {
  color: #34495E;
  line-height: 1.7;
  font-size: 0.95rem;
  flex: 1;
}

.analogy-box {
  max-width: 1000px;
  margin: 4rem auto 0;
  padding: 3.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 243, 0.98) 100%);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
  overflow: hidden;
}

.analogy-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-1);
}

.analogy-box::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.analogy-title {
  font-size: 1.6rem;
  color: #2C3E50;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  padding-left: 1rem;
  border-left: 4px solid var(--primary-color);
}

.analogy-text {
  font-size: 1.1rem;
  color: #34495E;
  line-height: 1.95;
  position: relative;
  z-index: 1;
}

.analogy-text strong {
  color: var(--primary-color);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Section Items */
.hero-section-item {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--primary-color);
}

.hero-section-title {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Services Grid New */
/* Product Showcase Section */
.product-showcase-section {
  margin: 2rem 0;
}

.product-showcase-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 4rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  max-width: 100%;
}

.product-showcase-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #FAF8F3 0%, #F5F1E8 100%);
  aspect-ratio: 1;
  width: 100%;
}

.product-image {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-showcase-image:hover .product-image {
  transform: scale(1.05);
}

.product-showcase-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}

.product-showcase-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: #2C3E50;
  margin-bottom: 0;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.product-showcase-description {
  font-size: 1.125rem;
  line-height: 1.85;
  color: #34495E;
  margin-bottom: 0;
}

.product-showcase-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-showcase-features li {
  color: #34495E;
  font-size: 1.05rem;
  line-height: 1.7;
  padding-left: 1.75rem;
  position: relative;
  transition: color 0.3s ease;
}

.product-showcase-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.4;
}

.product-showcase-features li:hover {
  color: #2C3E50;
}

.product-showcase-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.benefit-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 243, 0.95) 100%);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(250, 248, 243) 100%);
}

.benefit-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.benefit-text {
  font-size: 0.95rem;
  color: #34495E;
  line-height: 1.6;
}

/* Service Showcase Items (一行一個，交替布局) */
.service-showcase-item {
  margin: 4rem 0;
}

.service-showcase-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 4rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  max-width: 100%;
}

/* 桌面版：文字在左，图片在右 */
.service-showcase-reverse .service-showcase-container > .service-showcase-content {
  order: 1;
}

.service-showcase-reverse .service-showcase-container > .service-showcase-image {
  order: 2;
}

.service-showcase-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #FAF8F3 0%, #F5F1E8 100%);
  aspect-ratio: 1;
  width: 100%;
}

.service-showcase-img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-showcase-image:hover .service-showcase-img {
  transform: scale(1.05);
}

.service-showcase-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}

.service-showcase-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: #2C3E50;
  margin-bottom: 0;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.service-showcase-description {
  font-size: 1.125rem;
  line-height: 1.85;
  color: #34495E;
  margin-bottom: 0;
}

.service-showcase-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-showcase-features li {
  color: #34495E;
  font-size: 1.05rem;
  line-height: 1.7;
  padding-left: 1.75rem;
  position: relative;
  transition: color 0.3s ease;
}

.service-showcase-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.4;
}

.service-showcase-features li:hover {
  color: #2C3E50;
}

.service-showcase-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
}

/* Services Intro Row */
.services-intro-row {
  display: contents;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  width: 100%;
}

.service-intro-item {
  flex: 0 0 calc(50% - 1.25rem);
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.service-intro-item h3 {
  font-size: 2.25rem;
  font-weight: 900;
  color: #2C3E50;
  margin-bottom: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.service-intro-item .service-intro {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.service-intro-item .service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.service-intro-item .service-features li {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  padding-left: 1.75rem;
  position: relative;
  transition: color 0.3s ease;
}

.service-intro-item .service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.service-intro-item .service-features li:hover {
  color: var(--text-dark);
}

.service-intro-item .service-features li:hover::before {
  transform: scale(1.15);
}

.services-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.service-card-new {
  background: var(--bg-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
}

.service-card-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.service-card-new:hover::before {
  transform: scaleX(1);
}

.service-card-new:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-card-image-new {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f1e8 0%, #e8d5b7 50%, #d4af37 100%);
}

.service-card-image-new::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card-new:hover .service-card-image-new::after {
  opacity: 1;
}

.service-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary-color);
  opacity: 0.15;
  z-index: 1;
  font-family: "Arial", sans-serif;
  letter-spacing: -2px;
  transition: all 0.4s ease;
}

.service-card-new:hover .service-number {
  opacity: 0.25;
  transform: scale(1.1);
}

.service-card-body-new {
  padding: 2.5rem;
  flex: 1;
  position: relative;
  background: var(--bg-white);
}

.service-card-body-new h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.service-card-body-new .service-intro {
  color: var(--text-light);
  line-height: 1.9;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

/* Whole Brain Service */
.whole-brain-service {
  grid-column: 1/-1;
  margin: 2rem 0;
}

.whole-brain-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.whole-brain-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #FAF8F3 0%, #F5F1E8 100%);
  width: 100%;
}

.whole-brain-img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}

.whole-brain-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.whole-brain-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: #2C3E50;
  margin-bottom: 0;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.whole-brain-sections {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.brain-section-item {
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.brain-section-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.brain-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.brain-section-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #34495E;
  margin: 0;
}

.whole-brain-footer {
  padding-top: 0;
  border-top: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.brain-footer-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #2C3E50;
  margin: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 243, 0.9) 100%);
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.08);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brain-footer-text::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 2.5rem;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 -2px 3px rgba(212, 175, 55, 0.1));
}

.brain-footer-text:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgba(250, 248, 243, 0.95) 100%);
}

.brain-footer-text:first-child {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.15rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-color: rgba(212, 175, 55, 0.3);
  padding-left: 2.5rem;
  position: relative;
}

.brain-footer-text:first-child::before {
  border-bottom-color: rgba(212, 175, 55, 0.12);
}

.brain-footer-text:first-child::after {
  content: '"';
  position: absolute;
  left: 1.25rem;
  top: 1rem;
  font-size: 2.5rem;
  color: var(--primary-color);
  opacity: 0.25;
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 400;
}

.brain-footer-text:last-child {
  font-style: italic;
  color: #34495E;
}

/* Conclusion Section */
.conclusion-section {
  background: linear-gradient(135deg, #FFF8E7 0%, #FFE5B4 50%, #FFD89B 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Main Title */
.conclusion-header {
  margin-bottom: 4rem;
}

.conclusion-main-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #2C3E50;
  margin-bottom: 0;
  text-align: center;
}

/* Service Columns (Three Columns) */
/* Service Carousel Container */
.service-carousel-container {
  margin-bottom: 4rem;
  position: relative;
}

.service-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-columns.carousel-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto; /* 改为auto，允许滚动 */
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  align-items: stretch; /* 确保所有卡片拉伸到相同高度 */
  /* 优化滚动性能 */
  will-change: scroll-position;
  transform: translateZ(0); /* 启用硬件加速 */
  -webkit-transform: translateZ(0);
}

.service-columns.carousel-track::-webkit-scrollbar {
  display: none; /* 隐藏滚动条但保持滚动功能 */
}

.service-columns.carousel-track {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.service-column {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 0 0 calc(50% - 1rem); /* 桌面版显示2个卡片 */
  min-width: 0;
  scroll-snap-align: start;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 500px; /* 设置最小高度确保所有卡片高度一致 */
}

.service-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.view-gallery-btn {
  margin-top: auto; /* 推到卡片底部 */
  margin-bottom: 0; /* 确保在底部 */
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
  color: #2C3E50;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
  border: none;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.view-gallery-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.view-gallery-btn:hover::before {
  width: 300px;
  height: 300px;
}

.view-gallery-btn:hover {
  background: linear-gradient(135deg, #F4D03F 0%, #D4AF37 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: #1a1a1a;
}

.view-gallery-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(212, 175, 55, 0.3);
}

/* Carousel Buttons */
.carousel-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  color: #D4AF37;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(212, 175, 55, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}

.carousel-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50%;
}

.carousel-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.carousel-btn:hover::before {
  opacity: 1;
}

.carousel-btn:hover::after {
  width: 120%;
  height: 120%;
}

.carousel-btn:hover {
  color: white;
  transform: scale(1.15) translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4), 0 4px 12px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.carousel-btn:active {
  transform: scale(1.05) translateY(0);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.carousel-btn:hover svg {
  transform: scale(1.1);
}

.carousel-btn-prev:hover svg {
  transform: translateX(-2px) scale(1.1);
}

.carousel-btn-next:hover svg {
  transform: translateX(2px) scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.carousel-btn:disabled::before {
  display: none;
}

.carousel-btn:disabled:hover {
  transform: scale(1);
  color: #D4AF37;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(212, 175, 55, 0.15);
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: #D4AF37;
  transform: scale(1.2);
}

/* Recent Sessions */
.recent-sessions {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.sessions-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #D4AF37;
  margin-bottom: 1rem;
}

.sessions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sessions-list li {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.column-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #2C3E50;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding: 0.75rem 1rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  /* 渐变文字效果 */
  background: linear-gradient(135deg, #2C3E50 0%, #4a5568 50%, #2C3E50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* 装饰下划线 */
}
.column-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
  border-radius: 2px;
}

.service-column:hover .column-title {
  background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: scale(1.02);
  transition: all 0.3s ease;
}

.service-column:hover .column-title::after {
  width: 80px;
  background: linear-gradient(90deg, transparent 0%, #F4D03F 50%, transparent 100%);
  height: 4px;
}

/* Column Image */
.column-image {
  width: 100%;
  height: 200px;
  margin: 1.25rem 0 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-column:hover .column-image {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.column-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.column-description {
  font-size: 1.05rem;
  font-weight: 500;
  color: #4a5568;
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-style: italic;
  margin-bottom: 1.5rem;
  word-wrap: break-word; /* 允许长单词换行 */
  overflow-wrap: break-word; /* 确保文字不会溢出 */
  hyphens: auto; /* 自动添加连字符 */
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  min-height: 6.8rem; /* 约3行文字的高度，确保所有描述高度一致 (1rem * 1.7 * 3) */
  position: relative;
  padding-left: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid #D4AF37;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.column-description::before {
  content: '"';
  position: absolute;
  left: 1rem;
  top: -0.3rem;
  font-size: 3.5rem;
  color: #D4AF37;
  opacity: 0.25;
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 400;
}

.service-column:hover .column-description {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  border-left-color: #F4D03F;
  transform: translateX(2px);
}

.service-column:hover .column-description::before {
  opacity: 0.35;
  transform: scale(1.05);
}

.column-subsection {
  margin-top: 1.5rem;
  margin-bottom: 2rem; /* 增加与按钮之间的距离 */
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  flex: 1; /* 让这部分占据可用空间，将按钮推到底部 */
}

.subsection-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #D4AF37;
  margin-bottom: 1rem;
}

.subsection-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.subsection-list li {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.bullet-icon {
  color: #D4AF37;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

/* Community Section */
.community-section {
  margin-bottom: 3rem;
}

.community-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.community-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 1.5rem;
}

.community-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.community-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #D4AF37;
  margin-bottom: 1.25rem;
}

.community-beliefs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.community-beliefs li {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.community-beliefs li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-size: 1.5rem;
  line-height: 1.4;
}

/* Future Content */
.future-content {
  margin-bottom: 3rem;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.future-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 1.5rem;
  text-align: center;
}

.future-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.future-list li {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.heart-icon {
  color: #E91E63;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Final Message */
.final-message {
  margin-bottom: 3rem;
}

.final-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2C3E50;
  font-style: italic;
  text-align: center;
}

/* Action Call Box */
.action-call-box {
  text-align: center;
  padding: 3rem 0;
  position: relative;
}

.action-call-text {
  font-size: 1.3rem;
  color: #8B6914;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8), 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 20px rgba(212, 175, 55, 0.5);
  position: relative;
  display: inline-block;
  padding: 0.8rem 2rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 1px 3px rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.action-call-text::before,
.action-call-text::after {
  content: "✨";
  display: inline-block;
  margin: 0 0.5rem;
  font-size: 1.1rem;
  animation: sparkle 2s ease-in-out infinite;
}

.action-call-text::before {
  animation-delay: 0s;
}

.action-call-text::after {
  animation-delay: 1s;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}
.action-call-box .action-btn {
  position: relative;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
  background-size: 200% 200%;
  color: #1a1a1a;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), 0 0 30px rgba(212, 175, 55, 0.2), inset 0 2px 5px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.05em;
}

.action-call-box .action-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.action-call-box .action-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5), 0 0 40px rgba(212, 175, 55, 0.3), inset 0 2px 5px rgba(255, 255, 255, 0.4);
  background-position: 100% 0;
}

.action-call-box .action-btn:hover::before {
  left: 100%;
}

.action-call-box .action-btn:active {
  transform: translateY(-1px) scale(1.02);
}

/* Services Section */
.services-section {
  background: var(--bg-light);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.services-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 213, 183, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Featured Service Layout (左右布局) */
.service-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  padding: 3rem 0;
}

.service-image-wrapper {
  position: relative;
}

.service-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f5f1e8 0%, #e8d5b7 100%);
}

.service-image-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f1e8 0%, #e8d5b7 50%, #d4af37 100%);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.3) 0%, transparent 50%);
}

.product-showcase {
  position: relative;
  z-index: 2;
  width: 60%;
  height: 60%;
}

.product-bottle {
  width: 120px;
  height: 200px;
  background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
  border-radius: 20px 20px 5px 5px;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-bottle::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 20px;
  background: #654321;
  border-radius: 5px 5px 0 0;
}

.bottle-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}
.golden-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.golden-particles span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-color);
  animation: float-particle 4s infinite ease-in-out;
}

.golden-particles span:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.golden-particles span:nth-child(2) {
  top: 40%;
  right: 15%;
  animation-delay: 0.8s;
}

.golden-particles span:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 1.6s;
}

.golden-particles span:nth-child(4) {
  bottom: 15%;
  right: 10%;
  animation-delay: 2.4s;
}

.golden-particles span:nth-child(5) {
  top: 60%;
  left: 50%;
  animation-delay: 3.2s;
}

@keyframes float-particle {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 1;
  }
}
.service-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.service-content-wrapper {
  padding: 2rem;
}

.service-content {
  max-width: 100%;
}

.service-title-large {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.service-intro-large {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.service-features-large {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features-large li {
  padding: 0.75rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
}

.service-features-large li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.service-highlights-large {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-item-large {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.highlight-item-large:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.highlight-content {
  flex: 1;
}

.highlight-content .highlight-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.highlight-content .highlight-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Bottom Services Grid (下方并排布局) */
.services-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.service-card-large {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card-large:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f1e8 0%, #e8d5b7 100%);
}

.service-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: var(--transition);
}

.service-card-large:hover .service-card-image img {
  transform: scale(1.1);
}

.herb-pattern,
.business-pattern,
.brain-pattern,
.community-pattern {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.herb-icon,
.chart-icon,
.network-icon,
.growth-icon,
.brain-icon,
.lightbulb-icon,
.target-icon,
.community-icon,
.book-icon,
.heart-icon {
  font-size: 5rem;
  opacity: 0.25;
  animation: float-icon 4s infinite ease-in-out;
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.2));
  transition: all 0.4s ease;
}

.service-card-new:hover .herb-icon,
.service-card-new:hover .chart-icon,
.service-card-new:hover .network-icon,
.service-card-new:hover .growth-icon,
.service-card-new:hover .brain-icon,
.service-card-new:hover .lightbulb-icon,
.service-card-new:hover .target-icon,
.service-card-new:hover .community-icon,
.service-card-new:hover .book-icon,
.service-card-new:hover .heart-icon {
  opacity: 0.4;
  transform: scale(1.1);
}

.herb-icon:nth-child(2),
.network-icon,
.lightbulb-icon,
.book-icon {
  animation-delay: 1.3s;
}

.herb-icon:nth-child(3),
.growth-icon,
.target-icon,
.heart-icon {
  animation-delay: 2.6s;
}

@keyframes float-icon {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
.service-card-body {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.service-intro {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.service-description {
  color: var(--text-light);
  line-height: 1.8;
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
}

.highlight-item {
  text-align: center;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 10px;
  transition: var(--transition);
}

.highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.highlight-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.highlight-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Who Needs Me Section */
.who-needs-section {
  background: var(--bg-white);
}

.who-needs-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.who-needs-section .section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.who-needs-section .section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  word-spacing: 0.2em;
  line-height: 1.6;
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}

.need-card {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  position: relative;
  max-width: 100%;
  cursor: pointer;
}

.need-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0.6;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.need-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(212, 175, 55, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.need-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.need-card:hover::before {
  opacity: 0.3;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.need-card:hover::after {
  opacity: 1;
}

.need-card:active {
  transform: translateY(-8px) scale(0.98);
}

.need-content {
  padding: 2rem 2.5rem;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin: 2rem;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: calc(100% - 4rem);
  max-width: calc(100% - 4rem);
  box-sizing: border-box;
}

.need-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 0;
  line-height: 1.3;
  position: relative;
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.need-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.need-card ul li {
  padding: 0.5rem 0;
  color: var(--text-light);
}

.need-card h3 {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.need-card:hover h3 {
  color: var(--primary-color);
  transform: translateX(4px);
}

.need-description {
  color: #34495E;
  line-height: 1.85;
  font-size: 1.05rem;
  flex: 1;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 桌面版 hover 效果 */
@media (min-width: 969px) {
  .need-card:hover .need-content {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
  .need-card:hover h3 {
    margin-bottom: 1.25rem;
  }
  .need-card:hover .need-description {
    max-height: 200px;
    opacity: 1;
    margin-top: 1.25rem;
    color: #2C3E50;
  }
}
/* 手机版展开状态 */
.need-card.expanded .need-content {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.need-card.expanded h3 {
  margin-bottom: 0;
}

.need-card.expanded .need-description {
  max-height: 200px;
  opacity: 1;
  margin-top: 1.25rem;
  color: #2C3E50;
}

/* 添加光晕动画效果 */
@keyframes glow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  50% {
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
  }
}
.need-card {
  animation: glow 4s ease-in-out infinite;
}

.need-card:hover {
  animation: none;
}

.need-card:active {
  transform: translateY(-8px) scale(0.98);
}

.call-to-action {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--gradient-1);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.cta-content h3 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Contact Section */
.contact-section {
  background: var(--bg-light);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-text p {
  margin-bottom: 0.3rem;
  color: var(--text-light);
}

.contact-value {
  font-weight: 600;
  color: var(--text-dark) !important;
}

.contact-form-wrapper {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--secondary-color);
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.footer-content p {
  margin-bottom: 0.5rem;
}

.footer-quote {
  font-style: italic;
  opacity: 0.8;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive Design */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-title {
    font-size: 3rem;
  }
  .stats-grid,
  .why-partner-section .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
    width: 100%;
  }
  .stat-card {
    padding: 2rem 1.5rem;
  }
  .stat-number {
    font-size: 3rem;
  }
  .services-grid,
  .needs-grid,
  .services-grid-new {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .need-content {
    width: calc(100% - 3rem);
    max-width: calc(100% - 3rem);
    margin: 1.5rem;
  }
  .need-card {
    min-height: 380px;
  }
  .need-content {
    padding: 1.75rem 2rem;
    margin: 1.5rem;
  }
  .services-section .section-header {
    text-align: center;
  }
  .service-showcase-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .need-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
  }
  .need-description {
    font-size: 1rem;
    line-height: 1.75;
  }
  .services-intro-row {
    gap: 2rem;
  }
  .service-intro-item {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .service-card-image-new {
    height: 220px;
  }
  .service-card-body-new {
    padding: 2rem;
  }
  .service-card-body-new h3 {
    font-size: 1.4rem;
  }
  .service-number {
    font-size: 3rem;
    top: 1rem;
    right: 1rem;
  }
  .why-partner-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .why-card {
    padding: 2rem;
  }
  .why-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
  }
  .why-card h3 {
    font-size: 1.4rem;
  }
  .analogy-box {
    padding: 2.5rem 2rem;
  }
  .analogy-title {
    font-size: 1.5rem;
  }
  .analogy-text {
    font-size: 1rem;
  }
  .service-featured {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  .service-image-container {
    aspect-ratio: 16/9;
  }
  .services-bottom-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-highlights {
    grid-template-columns: 1fr;
  }
  .service-highlights-large {
    gap: 1rem;
  }
  .service-title-large {
    font-size: 2rem;
  }
  .product-showcase-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem;
  }
  .service-showcase-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem;
  }
  /* 手机版：统一为图片在上，文字在下 */
  .service-showcase-reverse .service-showcase-container > .service-showcase-content {
    order: 2 !important;
  }
  .service-showcase-reverse .service-showcase-container > .service-showcase-image {
    order: 1 !important;
  }
  .whole-brain-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem;
  }
  .whole-brain-title {
    font-size: 1.6rem;
  }
  .product-showcase-title {
    font-size: 1.6rem;
  }
  .service-intro-item h3 {
    font-size: 1.6rem;
  }
  .product-showcase-description {
    font-size: 1rem;
  }
  .product-showcase-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contact-content {
    grid-template-columns: 1fr;
  }
  /* Conclusion Section Responsive - Medium */
  .conclusion-main-title {
    font-size: 2.2rem;
  }
  /* Service Carousel Responsive - Medium */
  .service-columns.carousel-track {
    gap: 1.5rem;
  }
  .service-column {
    flex: 0 0 calc(50% - 0.75rem);
    padding: 2.25rem 2rem;
    min-height: 520px; /* 中等屏幕的最小高度（因为有图片） */
  }
  .column-image {
    height: 190px;
  }
  .column-title {
    font-size: 1.6rem;
    padding: 0.625rem 0.875rem;
  }
  .column-title::after {
    width: 50px;
    height: 2.5px;
  }
  .service-column:hover .column-title::after {
    width: 65px;
    height: 3px;
  }
  .column-description {
    min-height: 6.5rem; /* 中等屏幕调整高度，保持与桌面版一致 */
    font-size: 1.05rem;
    padding: 1.2rem 1.4rem;
    border-left-width: 3.5px;
  }
  .column-description::before {
    font-size: 3rem;
    left: 0.9rem;
    top: -0.25rem;
  }
  .column-subsection {
    margin-bottom: 2rem;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  .carousel-btn svg {
    width: 20px;
    height: 20px;
  }
  .community-content {
    padding: 2.5rem 2rem;
  }
  .action-buttons {
    flex-direction: column;
  }
  .story-timeline::before {
    left: 40px;
  }
  .timeline-item {
    flex-direction: row !important;
    padding-left: 80px;
  }
  .timeline-content {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 0px;
  }
  /* Conclusion / Carousel mobile optimizations */
  .conclusion-section {
    padding: 4rem 0;
  }
  .service-carousel-container {
    margin-bottom: 2.5rem;
  }
  .service-carousel-wrapper {
    gap: 0.5rem;
  }
  .service-columns.carousel-track {
    gap: 1rem;
    scroll-padding: 0 1rem;
  }
  .service-carousel-wrapper {
    padding: 0 0.5rem;
    position: relative;
  }
  .service-column {
    flex: 0 0 90%;
    padding: 1.5rem 1.25rem;
    min-height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }
  .column-image {
    width: 100%;
    aspect-ratio: 3/5; /* 約 3:5 的長寬比例 */
    height: auto;
    min-height: 220px;
    margin: 0 0 1rem 0;
  }
  .column-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 12px;
  }
  .column-title {
    font-size: 1.4rem;
    text-align: center;
  }
  .column-description {
    font-size: 1rem;
    line-height: 1.7;
  }
  .action-call-text {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    letter-spacing: 0.01em;
    display: inline-block;
    text-align: center;
    max-width: 100%;
    text-wrap: balance;
    white-space: normal;
  }
  .action-call-text::before,
  .action-call-text::after {
    margin: 0 0.25rem;
  }
  .subsection-title {
    font-size: 1.05rem;
  }
  .subsection-list li {
    font-size: 0.95rem;
  }
  .recent-sessions {
    margin-top: 1rem;
    padding-top: 1rem;
  }
  .sessions-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  .sessions-list li {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .view-gallery-btn {
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }
  .carousel-btn {
    width: 38px;
    height: 38px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  }
  .carousel-btn-prev {
    left: 8px;
  }
  .carousel-btn-next {
    right: 8px;
  }
  .carousel-btn svg {
    width: 20px;
    height: 20px;
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--bg-white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-md);
    padding: 2rem 0;
  }
  .nav-menu.active {
    left: 0;
  }
  .hamburger {
    display: flex;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .stats-grid,
  .why-partner-section .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
    width: 100%;
  }
  .stat-card {
    padding: 2rem 1.5rem;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .stat-label {
    font-size: 1rem;
  }
  .hero-cta {
    flex-direction: column;
  }
  .image-wrapper {
    max-width: 100%;
    aspect-ratio: 1;
  }
  .profile-image-container {
    border-width: 4px;
    padding: 4px;
  }
  .service-highlights {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .highlight-item {
    padding: 0.75rem;
  }
  .service-featured {
    padding: 2rem 0;
  }
  .service-title-large {
    font-size: 1.75rem;
  }
  .service-intro-large {
    font-size: 1rem;
  }
  .service-card-image {
    height: 250px;
  }
  .service-card-body {
    padding: 1.5rem;
  }
  .highlight-item-large {
    padding: 1rem;
  }
  .motto-text {
    font-size: 1.5rem;
  }
  /* Conclusion Section Responsive */
  .conclusion-main-title {
    font-size: 2rem;
  }
  /* Service Carousel Responsive - Small */
  .service-carousel-wrapper {
    gap: 0.5rem;
  }
  .service-columns.carousel-track {
    gap: 1rem;
  }
  .service-column {
    flex: 0 0 calc(100% - 0.5rem);
    padding: 2rem 1.5rem;
    min-height: 450px; /* 手机屏幕的最小高度 */
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
    display: flex; /* Show buttons on mobile */
  }
  .carousel-btn svg {
    width: 20px;
    height: 20px;
  }
  .carousel-indicators {
    margin-top: 1.5rem;
  }
  .column-image {
    height: 220px; /* 增加高度避免遮挡 */
    margin: 1rem 0 1.25rem 0;
  }
  .column-description {
    min-height: 6rem; /* 手机版调整高度，保持与其他版本一致 */
    font-size: 1.05rem;
    font-weight: 500;
    color: #4a5568;
    line-height: 1.8;
    letter-spacing: 0.02em;
    font-style: italic;
    position: relative;
    padding-left: 1.25rem;
    border-left: 3px solid #D4AF37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
  }
  .column-description::before {
    content: "“";
    position: absolute;
    left: 0.75rem;
    top: -0.25rem;
    font-size: 2.5rem;
    color: #D4AF37;
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
  }
  .column-subsection {
    margin-bottom: 1.75rem;
  }
  .view-gallery-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }
  .column-title {
    font-size: 1.4rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 1.25rem;
  }
  .column-title::after {
    width: 40px;
    height: 2px;
  }
  .service-column:hover .column-title::after {
    width: 50px;
    height: 2.5px;
  }
  .community-content {
    padding: 2rem 1.5rem;
  }
  .community-title {
    font-size: 1.5rem;
  }
  .community-subtitle {
    font-size: 1.2rem;
  }
  .future-content {
    padding: 0 1rem;
  }
  .final-text {
    font-size: 1.3rem;
  }
  .vision-box {
    padding: 1.5rem;
  }
  .action-call-box {
    padding: 2rem 1rem;
  }
  .action-call-text {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    padding: 0.6rem 1.5rem;
  }
  .action-call-box .action-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
  }
  .product-showcase-container {
    padding: 1.5rem;
    gap: 2rem;
  }
  .service-showcase-container {
    padding: 1.5rem;
    gap: 2rem;
  }
  /* 手机版：统一为图片在上，文字在下 */
  .service-showcase-reverse .service-showcase-container > .service-showcase-content {
    order: 2 !important;
  }
  .service-showcase-reverse .service-showcase-container > .service-showcase-image {
    order: 1 !important;
  }
  .service-showcase-title {
    font-size: 1.4rem;
  }
  .whole-brain-container {
    padding: 1.5rem;
    gap: 2rem;
  }
  .whole-brain-title {
    font-size: 1.4rem;
  }
  .brain-section-title {
    font-size: 1.1rem;
  }
  .brain-section-description,
  .brain-footer-text {
    font-size: 0.95rem;
  }
  .product-showcase-title {
    font-size: 1.4rem;
  }
  .service-intro-item h3 {
    font-size: 1.4rem;
  }
  .product-showcase-description {
    font-size: 0.95rem;
  }
  .product-showcase-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .services-section .section-header {
    text-align: center;
  }
  .service-showcase-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .benefit-item {
    padding: 1.2rem;
  }
  .who-needs-section .section-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  .who-needs-section .section-subtitle {
    font-size: 1rem;
    letter-spacing: 0.05em;
    word-spacing: 0.1em;
  }
  .who-needs-section .section-header {
    margin-bottom: 2rem;
  }
  .needs-grid {
    gap: 1.5rem;
    max-width: 100%;
  }
  .need-card {
    min-height: 360px;
  }
  .need-content {
    padding: 1.5rem 1.75rem;
    margin: 1.25rem;
    border-radius: 12px;
    width: calc(100% - 2.5rem);
    max-width: calc(100% - 2.5rem);
    box-sizing: border-box;
  }
  .need-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
  .need-description {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}