/* 甜心爹系男友 - 高端社交服务平台样式 */

/* ===== 基础变量 ===== */
:root {
  --champagne-gold: #D4AF37;
  --rose-pink: #F8C3CD;
  --ivory: #FFFFF0;
  --dark-gold: #B8860B;
  --light-pink: #FFE4E1;
  --text-dark: #2C2C2C;
  --text-light: #666666;
  --white: #FFFFFF;
  --shadow: rgba(212, 175, 55, 0.15);
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F8C3CD 100%);
}

/* ===== 重置与基础 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Serif SC', serif;
  background: var(--ivory);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== 导航栏 ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 240, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-dark);
}

.logo-icon {
  font-size: 28px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--champagne-gold);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--champagne-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.bar {
  width: 25px;
  height: 2px;
  background: var(--champagne-gold);
  transition: all 0.3s;
}

/* ===== Hero区域 ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--light-pink) 50%, var(--rose-pink) 100%);
  overflow: hidden;
}

.hero-bg {
  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="20" cy="20" r="2" fill="%23D4AF37" opacity="0.1"/><circle cx="80" cy="40" r="3" fill="%23F8C3CD" opacity="0.1"/><circle cx="40" cy="80" r="2" fill="%23D4AF37" opacity="0.1"/></svg>');
  background-size: 200px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(255,255,240,0.3) 100%);
}

.hero-content {
  text-align: center;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-title .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 24px;
  color: var(--champagne-gold);
  margin-bottom: 15px;
  letter-spacing: 8px;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* ===== 按钮样式 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--white);
  box-shadow: 0 10px 30px var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--champagne-gold);
  border: 2px solid var(--champagne-gold);
}

.btn-secondary:hover {
  background: var(--champagne-gold);
  color: var(--white);
}

.btn-cta {
  background: var(--white);
  color: var(--champagne-gold);
  font-size: 18px;
  padding: 18px 50px;
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

/* ===== 装饰元素 ===== */
.hero-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.deco-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
  animation: float 6s ease-in-out infinite;
}

.deco-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

.deco-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 15%;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ===== 区块标题 ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--champagne-gold);
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.section-desc {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== 核心价值区域 ===== */
.values {
  padding: 100px 20px;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: var(--ivory);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow);
}

.value-card.featured {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--light-pink) 100%);
  border: 2px solid var(--champagne-gold);
}

.value-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--champagne-gold);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  color: var(--champagne-gold);
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.value-desc {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.value-features {
  list-style: none;
  text-align: left;
}

.value-features li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  font-size: 14px;
  color: var(--text-light);
}

.value-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--champagne-gold);
  font-weight: bold;
}

/* ===== 数据统计 ===== */
.stats {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--champagne-gold) 0%, var(--dark-gold) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  color: var(--white);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.stat-suffix {
  font-size: 32px;
  font-weight: 600;
}

.stat-label {
  font-size: 16px;
  margin-top: 10px;
  opacity: 0.9;
}

/* ===== 服务流程 ===== */
.process {
  padding: 100px 20px;
  background: var(--ivory);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  margin: 0 auto 20px;
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.step-content p {
  font-size: 14px;
  color: var(--text-light);
}

.step-line {
  position: absolute;
  top: 30px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--champagne-gold), transparent);
}

.process-step:last-child .step-line {
  display: none;
}

/* ===== 精选推荐 ===== */
.featured-section {
  padding: 100px 20px;
  background: var(--white);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.featured-card {
  background: var(--ivory);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.featured-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow);
}

.featured-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.featured-card:hover .featured-image img {
  transform: scale(1.05);
}

.featured-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
}

.verified-badge {
  background: var(--champagne-gold);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.featured-info {
  padding: 25px;
}

.featured-info h4 {
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.featured-title {
  color: var(--champagne-gold);
  font-size: 14px;
  margin-bottom: 10px;
}

.featured-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.6;
}

.featured-tags {
  display: flex;
  gap: 10px;
}

.featured-tags span {
  background: rgba(212, 175, 55, 0.1);
  color: var(--champagne-gold);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
}

/* ===== 客户评价 ===== */
.testimonials {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--light-pink) 0%, var(--ivory) 100%);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  display: none;
  background: var(--white);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px var(--shadow);
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.quote-icon {
  font-size: 60px;
  color: var(--champagne-gold);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
}

.author-info h4 {
  font-size: 16px;
  color: var(--text-dark);
}

.author-info p {
  font-size: 14px;
  color: var(--text-light);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active,
.dot:hover {
  background: var(--champagne-gold);
}

/* ===== CTA区域 ===== */
.cta {
  padding: 120px 20px;
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, var(--champagne-gold) 0%, var(--rose-pink) 100%);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  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="40" fill="none" stroke="white" stroke-width="0.5"/></svg>');
  background-size: 150px;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

/* ===== 页脚 ===== */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 80px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-logo .logo-text {
  color: var(--champagne-gold);
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--champagne-gold);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--champagne-gold);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--champagne-gold);
}

.footer-contact p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== 响应式设计 ===== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }
  
  .values-grid,
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--ivory);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0,0,0,0.05);
    padding: 20px 0;
    gap: 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    display: block;
    padding: 15px 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero {
    padding: 120px 20px 80px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
    letter-spacing: 4px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .values-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-number {
    font-size: 40px;
  }
  
  .process-steps {
    flex-direction: column;
    gap: 40px;
  }
  
  .step-line {
    display: none;
  }
  
  .testimonial-card {
    padding: 30px;
  }
  
  .testimonial-text {
    font-size: 16px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cta-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .btn {
    padding: 12px 30px;
    font-size: 14px;
  }
  
  .value-card {
    padding: 30px 20px;
  }
  
  .featured-image {
    height: 250px;
  }
}

/* ===== 懒加载图片 ===== */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* ===== 平滑滚动动画 ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 页面通用头部 ===== */
.page-header {
  padding: 150px 20px 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--champagne-gold) 0%, var(--rose-pink) 100%);
  position: relative;
  overflow: hidden;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--white);
  margin-bottom: 15px;
}

.page-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
}

/* ===== 关于我们页面 ===== */
.about-story {
  padding: 100px 20px;
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow);
}

.story-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--champagne-gold);
  border-radius: 20px;
  z-index: -1;
}

.story-content .section-title {
  text-align: left;
}

.story-text {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-values {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.story-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-dark);
}

.story-value .value-icon {
  font-size: 24px;
}

/* 核心优势 */
.advantages {
  padding: 100px 20px;
  background: var(--ivory);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.advantage-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  color: var(--champagne-gold);
}

.advantage-icon svg {
  width: 100%;
  height: 100%;
}

.advantage-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.advantage-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* 团队介绍 */
.team {
  padding: 100px 20px;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  background: var(--ivory);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow);
}

.team-image {
  height: 280px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 25px;
}

.team-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.team-role {
  color: var(--champagne-gold);
  font-size: 14px;
  margin-bottom: 10px;
}

.team-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* 发展历程 */
.timeline {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--light-pink) 0%, var(--ivory) 100%);
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--champagne-gold);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  position: relative;
  margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%;
}

.timeline-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
}

.timeline-content {
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
  max-width: 300px;
}

.timeline-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--champagne-gold);
}

.timeline-content p {
  font-size: 14px;
  color: var(--text-light);
}

/* ===== 服务页面 ===== */
.pricing {
  padding: 100px 20px;
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--ivory);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.3s;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow);
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--light-pink) 100%);
  border: 2px solid var(--champagne-gold);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--champagne-gold);
  color: var(--white);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 12px;
}

.pricing-name {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.pricing-price {
  text-align: center;
  margin-bottom: 10px;
}

.pricing-price .currency {
  font-size: 24px;
  color: var(--champagne-gold);
}

.pricing-price .amount {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--champagne-gold);
}

.pricing-price .period {
  font-size: 16px;
  color: var(--text-light);
}

.pricing-desc {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.pricing-features ul {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 12px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li.disabled {
  color: var(--text-light);
  opacity: 0.5;
}

.pricing-features .check {
  color: var(--champagne-gold);
  font-weight: bold;
}

.pricing-features .cross {
  color: #999;
}

.pricing-footer {
  text-align: center;
}

.btn-outline {
  background: transparent;
  color: var(--champagne-gold);
  border: 2px solid var(--champagne-gold);
}

.btn-outline:hover {
  background: var(--champagne-gold);
  color: var(--white);
}

/* 服务详情 */
.service-details {
  padding: 100px 20px;
  background: var(--ivory);
}

.service-detail-item {
  margin-bottom: 80px;
}

.service-detail-item.reverse .service-detail-grid {
  direction: rtl;
}

.service-detail-item.reverse .service-detail-content {
  direction: ltr;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow);
}

.service-detail-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.service-detail-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.service-detail-desc {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.7;
}

.service-detail-list {
  list-style: none;
}

.service-detail-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.service-detail-list li:last-child {
  border-bottom: none;
}

.service-detail-list strong {
  display: block;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.service-detail-list span {
  font-size: 14px;
  color: var(--text-light);
}

/* 增值服务 */
.extra-services {
  padding: 100px 20px;
  background: var(--white);
}

.extra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.extra-card {
  background: var(--ivory);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
}

.extra-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow);
}

.extra-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.extra-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.extra-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* FAQ */
.faq {
  padding: 100px 20px;
  background: var(--ivory);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-question:hover {
  background: rgba(212, 175, 55, 0.05);
}

.faq-question h4 {
  font-size: 16px;
  color: var(--text-dark);
}

.faq-toggle {
  font-size: 24px;
  color: var(--champagne-gold);
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 200px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== 联系我们页面 ===== */
.contact-info-section {
  padding: 100px 20px;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.contact-card {
  background: var(--ivory);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow);
}

.contact-card.featured {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--light-pink) 100%);
  border: 2px solid var(--champagne-gold);
}

.contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: var(--champagne-gold);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.contact-card p {
  font-size: 16px;
  color: var(--champagne-gold);
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-note {
  font-size: 12px;
  color: var(--text-light);
}

/* 咨询区域 */
.consultation {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--light-pink) 0%, var(--ivory) 100%);
}

.consultation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.consultation-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin: 15px 0 20px;
  color: var(--text-dark);
}

.consultation-content > p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 30px;
}

.consultation-features {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-dark);
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: var(--champagne-gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.consultation-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow);
}

/* 社交媒体 */
.social-section {
  padding: 100px 20px;
  background: var(--white);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.social-card {
  background: var(--ivory);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.social-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow);
}

.social-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: var(--champagne-gold);
}

.social-icon svg {
  width: 100%;
  height: 100%;
}

.social-card h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.social-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.social-id {
  font-size: 12px;
  color: var(--champagne-gold);
}

/* 服务承诺 */
.commitment {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--champagne-gold) 0%, var(--dark-gold) 100%);
}

.commitment .section-title,
.commitment .section-desc {
  color: var(--white);
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.commitment-card {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.commitment-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  opacity: 0.5;
  margin-bottom: 15px;
}

.commitment-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--white);
}

.commitment-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* ===== 响应式设计补充 ===== */
@media (max-width: 1024px) {
  .story-grid,
  .consultation-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-image {
    order: -1;
  }

  .consultation-image {
    order: -1;
  }

  .advantages-grid,
  .team-grid,
  .pricing-grid,
  .extra-grid,
  .contact-grid,
  .social-grid,
  .commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-container::before {
    left: 30px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 80px;
    padding-right: 0;
  }

  .timeline-year {
    left: 30px;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    font-size: 16px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .service-detail-item.reverse .service-detail-grid {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 120px 20px 60px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .story-values {
    flex-direction: column;
    gap: 15px;
  }

  .advantages-grid,
  .team-grid,
  .pricing-grid,
  .extra-grid,
  .contact-grid,
  .social-grid,
  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .timeline-container::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-left: 60px;
  }

  .timeline-year {
    left: 20px;
    width: 50px;
    height: 50px;
    font-size: 14px;
  }

  .timeline-content {
    max-width: 100%;
  }

  .service-detail-content h3 {
    font-size: 24px;
  }
}

/* ===== 页面标题区域 ===== */
.page-header {
  padding: 150px 20px 80px;
  background: linear-gradient(135deg, var(--champagne-gold) 0%, var(--rose-pink) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--white);
  margin-bottom: 15px;
}

.page-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== 价格套餐区域 ===== */
.pricing {
  padding: 100px 20px;
  background: var(--ivory);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow);
}

.pricing-card.featured {
  border: 2px solid var(--champagne-gold);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--champagne-gold);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-name {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.pricing-price .currency {
  font-size: 24px;
  color: var(--champagne-gold);
}

.pricing-price .amount {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--champagne-gold);
}

.pricing-price .period {
  font-size: 16px;
  color: var(--text-light);
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-light);
}

.pricing-features ul {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.pricing-features li.disabled {
  color: #ccc;
}

.pricing-features .check {
  color: var(--champagne-gold);
  font-weight: bold;
}

.pricing-features .cross {
  color: #ccc;
}

.pricing-footer {
  text-align: center;
}

.btn-outline {
  background: transparent;
  color: var(--champagne-gold);
  border: 2px solid var(--champagne-gold);
}

.btn-outline:hover {
  background: var(--champagne-gold);
  color: var(--white);
}

/* ===== 服务详情区域 ===== */
.service-details {
  padding: 100px 20px;
  background: var(--white);
}

.service-detail-item {
  margin-bottom: 80px;
}

.service-detail-item.reverse .service-detail-grid {
  direction: rtl;
}

.service-detail-item.reverse .service-detail-content {
  direction: ltr;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow);
}

.service-detail-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.service-detail-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.service-detail-desc {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.7;
}

.service-detail-list {
  list-style: none;
}

.service-detail-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.service-detail-list li strong {
  display: block;
  color: var(--champagne-gold);
  margin-bottom: 5px;
}

.service-detail-list li span {
  color: var(--text-light);
  font-size: 14px;
}

/* ===== 增值服务区域 ===== */
.extra-services {
  padding: 100px 20px;
  background: var(--ivory);
}

.extra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.extra-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.extra-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow);
}

.extra-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.extra-card h4 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.extra-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== FAQ区域 ===== */
.faq {
  padding: 100px 20px;
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--ivory);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-question:hover {
  background: rgba(212, 175, 55, 0.05);
}

.faq-question h4 {
  font-size: 16px;
  color: var(--text-dark);
}

.faq-toggle {
  font-size: 24px;
  color: var(--champagne-gold);
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 25px 20px;
  /*display: none;*/
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== 响应式设计 ===== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.featured {
    transform: scale(1);
  }
  .service-detail-grid {
    gap: 40px;
  }
  .extra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 36px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: scale(1);
  }
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-detail-item.reverse .service-detail-grid {
    direction: ltr;
  }
  .extra-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== 页面头部样式 ===== */
.page-header {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--champagne-gold) 0%, var(--rose-pink) 100%);
  overflow: hidden;
}

.page-header-bg {
  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="40" fill="none" stroke="white" stroke-width="0.3" opacity="0.3"/></svg>');
  background-size: 100px;
}

.page-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 120px 20px 60px;
}

.page-header-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 15px;
}

.page-header-content p {
  font-size: 18px;
  opacity: 0.9;
}

/* ===== 品牌故事区域 ===== */
.about-story {
  padding: 100px 20px;
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow);
}

.story-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--champagne-gold);
  border-radius: 20px;
  z-index: -1;
}

.story-content {
  padding: 20px 0;
}

.story-text {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-values {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.story-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
}

.story-value .value-icon {
  font-size: 24px;
}

/* ===== 核心优势区域 ===== */
.advantages {
  padding: 100px 20px;
  background: var(--ivory);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.advantage-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  color: var(--champagne-gold);
}

.advantage-icon svg {
  width: 100%;
  height: 100%;
}

.advantage-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.advantage-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== 团队介绍区域 ===== */
.team {
  padding: 100px 20px;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  background: var(--ivory);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow);
}

.team-image {
  height: 250px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 25px;
}

.team-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.team-role {
  color: var(--champagne-gold);
  font-size: 14px;
  margin-bottom: 10px;
}

.team-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== 发展历程时间线 ===== */
.timeline {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--light-pink) 0%, var(--ivory) 100%);
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--champagne-gold);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  position: relative;
  margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%;
}

.timeline-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
}

.timeline-content {
  background: var(--white);
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
  max-width: 300px;
}

.timeline-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--champagne-gold);
}

.timeline-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== 响应式设计 ===== */
@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-frame {
    display: none;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-header-content h1 {
    font-size: 36px;
  }

  .story-values {
    flex-direction: column;
    gap: 15px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .timeline-container::before {
    left: 30px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 80px;
    padding-right: 0;
  }

  .timeline-year {
    left: 30px;
    transform: translateX(-50%);
  }

  .timeline-content {
    max-width: 100%;
  }
}
