/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Color Variables - Light Theme */
:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary: #06b6d4;
  --accent: #f472b6;
  --bg-dark: #ffffff;
  --bg-card: #f8fafc;
  --bg-card-hover: #f1f5f9;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
  --gradient-mixed: linear-gradient(135deg, #6366f1 0%, #8b5cf6 30%, #ec4899 70%, #f472b6 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Fixed Navigation */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
  z-index: 1000;
  padding: 0 24px;
}

.nav-fixed-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-fixed-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
}

.nav-fixed-logo img {
  width: 36px;
  height: 36px;
}

.nav-fixed-links {
  display: flex;
  gap: 40px;
}

.nav-fixed-links a {
  font-size: 16px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s;
}

.nav-fixed-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-fixed-links a:hover,
.nav-fixed-links a.active {
  color: var(--primary);
}

.nav-fixed-links a:hover::after,
.nav-fixed-links a.active::after {
  transform: scaleX(1);
}

.nav-fixed-btn {
  padding: 12px 28px;
  background: var(--gradient-primary);
  color: white !important;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-fixed-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav-fixed-links {
    display: none;
  }
}

.section {
  padding: 100px 0;
}

/* Fixed Logo */
.fixed-logo {
  position: fixed;
  top: 16px;
  left: 20px;
  z-index: 1001;
}

.fixed-logo img {
  height: 40px;
  width: auto;
}

/* Fixed Join Button */
.fixed-join-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  padding: 10px 20px;
  background: var(--gradient-primary);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.fixed-join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
}

/* WeChat QR Modal */
.qr-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.qr-modal.active {
  display: flex;
  opacity: 1;
}

.qr-modal-content {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  position: relative;
  max-width: 360px;
  width: 90%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.qr-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: #f1f5f9;
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.qr-close:hover {
  background: #e2e8f0;
  color: var(--text-primary);
}

.qr-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.qr-header p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.qr-code {
  background: white;
  padding: 20px;
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.qr-code img {
  display: block;
  width: 180px;
  height: 180px;
}

.qr-footer p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.qr-hint {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}



.hero-feature-item li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.hero-feature-item li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

/* Hero Stats Section */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 32px 48px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-size: 40px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

/* What We Provide Section */
/* Hero Section - Redesigned */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: 80px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.gradient-text {
  background: var(--gradient-mixed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slogan {
  margin-bottom: 24px;
}

.slogan-line {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-subtitle {
  font-size: 22px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 48px;
}

.highlight-text {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none !important;
  filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.3));
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.3)); }
  50% { filter: drop-shadow(0 4px 16px rgba(99, 102, 241, 0.5)); }
}

/* Three Pillars */
.three-pillars {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border-radius: 16px;
  padding: 24px;
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.15);
  border-color: var(--primary-light);
}

.pillar-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.pillar-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pillar-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.pillar-content span {
  font-size: 12px;
  color: var(--primary);
  background: rgba(99, 102, 241, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Features Row */
.features-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 64px;
}



.feature-card:hover {
  transform: translateY(-6px);
  border-color: #c7d2fe;
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.12);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 15px;
  color: #64748b;
}

/* Hero Provide */
/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 40px;
}

.badge-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
  font-size: 96px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}

.gradient-text {
  background: var(--gradient-mixed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slogan {
  margin-bottom: 32px;
}

.slogan-line {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-secondary);
}

.hero-subtitle {
  font-size: 28px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 64px;
}

/* Features Block - Background Color Layout */
.features-block {
  max-width: 1100px;
  margin: 0 auto 80px;
}

.features-block-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.features-block-title {
  font-size: 48px;
  font-weight: 800;
  color: #1e293b;
}

.features-block-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-block-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  padding: 36px 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-block-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 3px 0 0 3px;
}

.block-1::before {
  background: linear-gradient(180deg, #6366f1, #8b5cf6);
}

.block-2::before {
  background: linear-gradient(180deg, #ec4899, #f472b6);
}

.block-3::before {
  background: linear-gradient(180deg, #10b981, #34d399);
}

.feature-block-item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.block-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.block-icon {
  font-size: 40px;
}

.block-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.block-header p {
  font-size: 15px;
  color: #64748b;
}

.block-content {
  display: flex;
  gap: 24px;
  padding-left: 60px;
}

.block-content span {
  font-size: 15px;
  color: #475569;
  background: rgba(99, 102, 241, 0.06);
  padding: 10px 20px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .features-block-title {
    font-size: 36px;
  }
  
  .block-content {
    flex-direction: column;
    padding-left: 60px;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .features-block-title {
    font-size: 28px;
  }
  
  .feature-block-item {
    padding: 28px 32px;
  }
  
  .block-header h3 {
    font-size: 22px;
  }
  
  .block-content {
    padding-left: 0;
    flex-direction: column;
  }
  
  .block-content span {
    text-align: center;
  }
}

@media (max-width: 1000px) {
  .hero-title {
    font-size: 72px;
  }
  
  .slogan-line {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 22px;
  }
  
  .features-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  
  
}

@media (max-width: 640px) {
  .hero {
    padding: 120px 16px 80px;
  }
  
  .hero-badge {
    font-size: 15px;
    padding: 12px 20px;
  }
  
  .hero-title {
    font-size: 52px;
  }
  
  .slogan-line {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  
  
  .feature-card h3 {
    font-size: 24px;
  }
}

.hero-provide {
  text-align: left;
}

.provide-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 32px;
  text-align: center;
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 56px;
  }
  
  .slogan-line {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .features-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  
  
  .provide-title {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 100px 16px 60px;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .slogan-line {
    font-size: 20px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 40px;
}

.badge-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
  font-size: 96px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}

.gradient-text {
  background: var(--gradient-mixed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slogan {
  margin-bottom: 32px;
}

.slogan-line {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-secondary);
}

.hero-subtitle {
  font-size: 28px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 64px;
}

/* Features Block - Background Color Layout */
.features-block {
  max-width: 1100px;
  margin: 0 auto 80px;
}

.features-block-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.features-block-title {
  font-size: 48px;
  font-weight: 800;
  color: #1e293b;
}

.features-block-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-block-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  padding: 36px 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-block-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 3px 0 0 3px;
}

.block-1::before {
  background: linear-gradient(180deg, #6366f1, #8b5cf6);
}

.block-2::before {
  background: linear-gradient(180deg, #ec4899, #f472b6);
}

.block-3::before {
  background: linear-gradient(180deg, #10b981, #34d399);
}

.feature-block-item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.block-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.block-icon {
  font-size: 40px;
}

.block-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.block-header p {
  font-size: 15px;
  color: #64748b;
}

.block-content {
  display: flex;
  gap: 24px;
  padding-left: 60px;
}

.block-content span {
  font-size: 15px;
  color: #475569;
  background: rgba(99, 102, 241, 0.06);
  padding: 10px 20px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .features-block-title {
    font-size: 36px;
  }
  
  .block-content {
    flex-direction: column;
    padding-left: 60px;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .features-block-title {
    font-size: 28px;
  }
  
  .feature-block-item {
    padding: 28px 32px;
  }
  
  .block-header h3 {
    font-size: 22px;
  }
  
  .block-content {
    padding-left: 0;
    flex-direction: column;
  }
  
  .block-content span {
    text-align: center;
  }
}

@media (max-width: 1000px) {
  .hero-title {
    font-size: 72px;
  }
  
  .slogan-line {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 22px;
  }
  
  .features-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  
  
}

@media (max-width: 640px) {
  .hero {
    padding: 120px 16px 80px;
  }
  
  .hero-badge {
    font-size: 15px;
    padding: 12px 20px;
  }
  
  .hero-title {
    font-size: 52px;
  }
  
  .slogan-line {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  
  
  .feature-card h3 {
    font-size: 24px;
  }
}

.hero-provide {
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 24px;
  padding: 40px;
  margin-top: 48px;
}

/* Hero Section - Redesigned */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: 80px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.gradient-text {
  background: var(--gradient-mixed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slogan {
  margin-bottom: 24px;
}

.slogan-line {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-subtitle {
  font-size: 22px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 48px;
}

/* Features Row */
.features-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 64px;
}



.feature-card:hover {
  transform: translateY(-6px);
  border-color: #c7d2fe;
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.12);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 15px;
  color: #64748b;
}

/* Hero Provide */
/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 40px;
}

.badge-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
  font-size: 96px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}

.gradient-text {
  background: var(--gradient-mixed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slogan {
  margin-bottom: 32px;
}

.slogan-line {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-secondary);
}

.hero-subtitle {
  font-size: 28px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 64px;
}

/* Features Block - Background Color Layout */
.features-block {
  max-width: 1100px;
  margin: 0 auto 80px;
}

.features-block-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.features-block-title {
  font-size: 48px;
  font-weight: 800;
  color: #1e293b;
}

.features-block-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-block-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  padding: 36px 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-block-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 3px 0 0 3px;
}

.block-1::before {
  background: linear-gradient(180deg, #6366f1, #8b5cf6);
}

.block-2::before {
  background: linear-gradient(180deg, #ec4899, #f472b6);
}

.block-3::before {
  background: linear-gradient(180deg, #10b981, #34d399);
}

.feature-block-item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.block-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.block-icon {
  font-size: 40px;
}

.block-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.block-header p {
  font-size: 15px;
  color: #64748b;
}

.block-content {
  display: flex;
  gap: 24px;
  padding-left: 60px;
}

.block-content span {
  font-size: 15px;
  color: #475569;
  background: rgba(99, 102, 241, 0.06);
  padding: 10px 20px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .features-block-title {
    font-size: 36px;
  }
  
  .block-content {
    flex-direction: column;
    padding-left: 60px;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .features-block-title {
    font-size: 28px;
  }
  
  .feature-block-item {
    padding: 28px 32px;
  }
  
  .block-header h3 {
    font-size: 22px;
  }
  
  .block-content {
    padding-left: 0;
    flex-direction: column;
  }
  
  .block-content span {
    text-align: center;
  }
}

@media (max-width: 1000px) {
  .hero-title {
    font-size: 72px;
  }
  
  .slogan-line {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 22px;
  }
  
  .features-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  
  
}

@media (max-width: 640px) {
  .hero {
    padding: 120px 16px 80px;
  }
  
  .hero-badge {
    font-size: 15px;
    padding: 12px 20px;
  }
  
  .hero-title {
    font-size: 52px;
  }
  
  .slogan-line {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  
  
  .feature-card h3 {
    font-size: 24px;
  }
}

.hero-provide {
  text-align: left;
}

.provide-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 32px;
  text-align: center;
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 56px;
  }
  
  .slogan-line {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .features-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  
  
  .provide-title {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 100px 16px 60px;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .slogan-line {
    font-size: 20px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 40px;
}

.badge-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
  font-size: 96px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}

.gradient-text {
  background: var(--gradient-mixed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slogan {
  margin-bottom: 32px;
}

.slogan-line {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-secondary);
}

.hero-subtitle {
  font-size: 28px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 64px;
}

/* Features Block - Background Color Layout */
.features-block {
  max-width: 1100px;
  margin: 0 auto 80px;
}

.features-block-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.features-block-title {
  font-size: 48px;
  font-weight: 800;
  color: #1e293b;
}

.features-block-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-block-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  padding: 36px 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-block-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 3px 0 0 3px;
}

.block-1::before {
  background: linear-gradient(180deg, #6366f1, #8b5cf6);
}

.block-2::before {
  background: linear-gradient(180deg, #ec4899, #f472b6);
}

.block-3::before {
  background: linear-gradient(180deg, #10b981, #34d399);
}

.feature-block-item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.block-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.block-icon {
  font-size: 40px;
}

.block-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.block-header p {
  font-size: 15px;
  color: #64748b;
}

.block-content {
  display: flex;
  gap: 24px;
  padding-left: 60px;
}

.block-content span {
  font-size: 15px;
  color: #475569;
  background: rgba(99, 102, 241, 0.06);
  padding: 10px 20px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .features-block-title {
    font-size: 36px;
  }
  
  .block-content {
    flex-direction: column;
    padding-left: 60px;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .features-block-title {
    font-size: 28px;
  }
  
  .feature-block-item {
    padding: 28px 32px;
  }
  
  .block-header h3 {
    font-size: 22px;
  }
  
  .block-content {
    padding-left: 0;
    flex-direction: column;
  }
  
  .block-content span {
    text-align: center;
  }
}

@media (max-width: 1000px) {
  .hero-title {
    font-size: 72px;
  }
  
  .slogan-line {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 22px;
  }
  
  .features-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  
  
}

@media (max-width: 640px) {
  .hero {
    padding: 120px 16px 80px;
  }
  
  .hero-badge {
    font-size: 15px;
    padding: 12px 20px;
  }
  
  .hero-title {
    font-size: 52px;
  }
  
  .slogan-line {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  
  
  .feature-card h3 {
    font-size: 24px;
  }
}

.hero-provide h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 28px;
  text-align: center;
}

.provide-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}

.provide-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.provide-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.12);
}

.provide-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 18px;
}

.provide-item p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
}

.provide-platform {
  background: var(--gradient-primary);
  border-radius: 14px;
  padding: 18px 28px;
  text-align: center;
  margin-bottom: 24px;
}

.provide-platform p {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin: 0;
}

.provide-highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.provide-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

.provide-highlights .highlight-icon {
  font-size: 20px;
}

.provide-showcase {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 28px;
}

.showcase-image {
  margin-top: 16px;
  text-align: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.showcase-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
}

.showcase-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showcase-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.showcase-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
}

.showcase-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.showcase-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.showcase-item p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* About Section */
.about {
  background: #f8fafc;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 100px;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.about-card {
  padding: 40px 32px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

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

.about-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.card-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 20px;
  color: white;
  margin: 0 auto 24px;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.about-card h3 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 16px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Values Section */
.values {
  background: #ffffff;
}

.values-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.values-left .section-title {
  text-align: left;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 24px;
}

.values-desc {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}

.values-highlight {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.highlight-item strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.highlight-item p {
  font-size: 14px;
  color: var(--text-muted);
}

.values-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-main {
  background: var(--gradient-primary);
  border: none;
  text-align: center;
  padding: 36px;
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.feature-main h4 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.feature-main p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.feature-badge-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 12px;
  color: white;
  margin-bottom: 16px;
  font-weight: 500;
}



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

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.1);
}

.feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.08);
  border-radius: 14px;
  color: var(--primary);
}

.feature-badge {
  padding: 5px 12px;
  background: rgba(236, 72, 153, 0.08);
  border: 1px solid rgba(236, 72, 153, 0.2);
  border-radius: 100px;
  font-size: 12px;
  color: var(--accent);
}

.feature-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tags span {
  padding: 5px 12px;
  background: rgba(99, 102, 241, 0.08);
  border-radius: 8px;
  font-size: 12px;
  color: var(--primary);
  font-weight: 500;
}

/* Vision Section */
.vision {
  background: #f8fafc;
}

.vision-timeline {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}

.vision-item {
  flex: 1;
  position: relative;
  z-index: 1;
}

.vision-card {
  padding: 32px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  margin: 0 12px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

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

.vision-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.1);
}

.vision-period {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gradient-primary);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.vision-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.vision-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.vision-card strong {
  color: var(--primary);
  font-weight: 600;
}

.vision-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  position: relative;
}

.connector-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.3), rgba(99, 102, 241, 0.6), rgba(99, 102, 241, 0.3));
}

.connector-dot {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 0 15px var(--primary);
}

/* Achievements Section */
.achievements {
  background: #ffffff;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.achievement-item {
  text-align: center;
  padding: 40px 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.achievement-item:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.1);
}

.achievement-number {
  font-size: 52px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.achievement-suffix {
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.achievement-label {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Testimonials Section */
.testimonials {
  background: #f8fafc;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

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

.testimonial-card:hover {
  border-color: var(--primary);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 16px;
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.testimonial-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.testimonial-author strong {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 14px;
  color: var(--text-muted);
}

.testimonial-income {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
}

/* CTA Section */
.cta {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-content {
  text-align: center;
  padding: 60px 40px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
  position: relative;
}

.cta-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  position: relative;
}

.cta-slogans {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  position: relative;
}

.slogan {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-secondary);
}

.slogan.highlight {
  background: var(--gradient-mixed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slogan-divider {
  font-size: 24px;
  color: var(--text-muted);
}

.cta-slogans.tagline {
  margin-bottom: 24px;
}

.cta-slogans.tagline span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
}

.cta-slogans.tagline .slogan-divider {
  font-size: 18px;
}

.cta-desc {
  text-align: center;
  margin-bottom: 32px;
}

.cta-desc p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.wechat-qr {
  width: 280px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.wechat-qr:hover {
  transform: scale(1.05);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.cta-hint {
  font-size: 14px;
  color: var(--secondary);
}

/* Footer */
.footer {
  padding: 64px 0 32px;
  background: #f8fafc;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 280px;
}

.footer-slogan {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 968px) {
  .values-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .values-left .section-title {
    text-align: center;
  }
  
  .values-desc {
    text-align: center;
  }
  
  .values-highlight {
    align-items: center;
  }
  
  .highlight-item {
    max-width: 400px;
  }
  
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vision-timeline {
    flex-direction: column;
    gap: 16px;
  }
  
  .vision-connector {
    display: none;
  }
  
  .vision-card {
    margin: 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }
  
  .hero {
    padding: 80px 16px 60px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .hero-feature-item {
    padding: 20px;
  }
  
  /* Hero Section - Redesigned */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: 80px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.gradient-text {
  background: var(--gradient-mixed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slogan {
  margin-bottom: 24px;
}

.slogan-line {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-subtitle {
  font-size: 22px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 48px;
}

/* Features Row */
.features-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 64px;
}



.feature-card:hover {
  transform: translateY(-6px);
  border-color: #c7d2fe;
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.12);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 15px;
  color: #64748b;
}

/* Hero Provide */
/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 40px;
}

.badge-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
  font-size: 96px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}

.gradient-text {
  background: var(--gradient-mixed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slogan {
  margin-bottom: 32px;
}

.slogan-line {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-secondary);
}

.hero-subtitle {
  font-size: 28px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 64px;
}

/* Features Block - Background Color Layout */
.features-block {
  max-width: 1100px;
  margin: 0 auto 80px;
}

.features-block-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.features-block-title {
  font-size: 48px;
  font-weight: 800;
  color: #1e293b;
}

.features-block-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-block-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  padding: 36px 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-block-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 3px 0 0 3px;
}

.block-1::before {
  background: linear-gradient(180deg, #6366f1, #8b5cf6);
}

.block-2::before {
  background: linear-gradient(180deg, #ec4899, #f472b6);
}

.block-3::before {
  background: linear-gradient(180deg, #10b981, #34d399);
}

.feature-block-item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.block-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.block-icon {
  font-size: 40px;
}

.block-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.block-header p {
  font-size: 15px;
  color: #64748b;
}

.block-content {
  display: flex;
  gap: 24px;
  padding-left: 60px;
}

.block-content span {
  font-size: 15px;
  color: #475569;
  background: rgba(99, 102, 241, 0.06);
  padding: 10px 20px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .features-block-title {
    font-size: 36px;
  }
  
  .block-content {
    flex-direction: column;
    padding-left: 60px;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .features-block-title {
    font-size: 28px;
  }
  
  .feature-block-item {
    padding: 28px 32px;
  }
  
  .block-header h3 {
    font-size: 22px;
  }
  
  .block-content {
    padding-left: 0;
    flex-direction: column;
  }
  
  .block-content span {
    text-align: center;
  }
}

@media (max-width: 1000px) {
  .hero-title {
    font-size: 72px;
  }
  
  .slogan-line {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 22px;
  }
  
  .features-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  
  
}

@media (max-width: 640px) {
  .hero {
    padding: 120px 16px 80px;
  }
  
  .hero-badge {
    font-size: 15px;
    padding: 12px 20px;
  }
  
  .hero-title {
    font-size: 52px;
  }
  
  .slogan-line {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  
  
  .feature-card h3 {
    font-size: 24px;
  }
}

.hero-provide {
  text-align: left;
}

.provide-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 32px;
  text-align: center;
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 56px;
  }
  
  .slogan-line {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .features-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  
  
  .provide-title {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 100px 16px 60px;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .slogan-line {
    font-size: 20px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 40px;
}

.badge-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
  font-size: 96px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}

.gradient-text {
  background: var(--gradient-mixed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slogan {
  margin-bottom: 32px;
}

.slogan-line {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-secondary);
}

.hero-subtitle {
  font-size: 28px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 64px;
}

/* Features Block - Background Color Layout */
.features-block {
  max-width: 1100px;
  margin: 0 auto 80px;
}

.features-block-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.features-block-title {
  font-size: 48px;
  font-weight: 800;
  color: #1e293b;
}

.features-block-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-block-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  padding: 36px 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-block-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 3px 0 0 3px;
}

.block-1::before {
  background: linear-gradient(180deg, #6366f1, #8b5cf6);
}

.block-2::before {
  background: linear-gradient(180deg, #ec4899, #f472b6);
}

.block-3::before {
  background: linear-gradient(180deg, #10b981, #34d399);
}

.feature-block-item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.block-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.block-icon {
  font-size: 40px;
}

.block-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.block-header p {
  font-size: 15px;
  color: #64748b;
}

.block-content {
  display: flex;
  gap: 24px;
  padding-left: 60px;
}

.block-content span {
  font-size: 15px;
  color: #475569;
  background: rgba(99, 102, 241, 0.06);
  padding: 10px 20px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .features-block-title {
    font-size: 36px;
  }
  
  .block-content {
    flex-direction: column;
    padding-left: 60px;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .features-block-title {
    font-size: 28px;
  }
  
  .feature-block-item {
    padding: 28px 32px;
  }
  
  .block-header h3 {
    font-size: 22px;
  }
  
  .block-content {
    padding-left: 0;
    flex-direction: column;
  }
  
  .block-content span {
    text-align: center;
  }
}

@media (max-width: 1000px) {
  .hero-title {
    font-size: 72px;
  }
  
  .slogan-line {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 22px;
  }
  
  .features-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  
  
}

@media (max-width: 640px) {
  .hero {
    padding: 120px 16px 80px;
  }
  
  .hero-badge {
    font-size: 15px;
    padding: 12px 20px;
  }
  
  .hero-title {
    font-size: 52px;
  }
  
  .slogan-line {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  
  
  .feature-card h3 {
    font-size: 24px;
  }
}

.hero-provide {
    padding: 24px 16px;
  }
  
  .provide-items {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .provide-item {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }
  
  .provide-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .provide-showcase {
    flex-direction: column;
  }
  
  .showcase-image {
    flex: none;
    width: 100%;
  }
  
  .showcase-features {
    width: 100%;
  }
  
  .showcase-image img {
    max-width: 100%;
  }
  
  .showcase-item {
    padding: 14px 16px;
  }
  
  .achievements-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .cta-slogans {
    flex-direction: column;
    gap: 8px;
  }
  
  .slogan-divider {
    display: none;
  }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding: 0 24px;
}

/* Not Suitable Section */
.not-suitable-section {
  margin-top: 32px;
  padding: 0 24px;
  text-align: center;
}

.not-suitable-title {
  font-size: 36px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
}

.not-suitable-desc {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 32px;
  line-height: 1.8;
}

.not-suitable-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.not-suitable-item {
  display: flex;
  align-items: flex-start;
  text-align: left;
  padding: 20px 24px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.not-suitable-item:hover {
  border-color: #c7d2fe;
  background: linear-gradient(135deg, #ffffff 0%, #eef2ff 100%);
  transform: translateX(-4px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.1);
}

.item-title {
  font-weight: 700;
  color: #1e293b;
  flex-shrink: 0;
}

.item-text {
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .not-suitable-title {
    font-size: 28px;
  }
  
  .not-suitable-item {
    flex-direction: column;
    gap: 8px;
  }
}
/* Member Gift Section */
.member-gift-section {
  margin: 40px 0;
  text-align: center;
  padding: 0 24px;
}

.gift-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #fbbf24;
  border-radius: 30px;
  padding: 8px 20px;
  margin-bottom: 16px;
}

.gift-icon {
  font-size: 18px;
}

.gift-text {
  font-size: 14px;
  font-weight: 600;
  color: #92400e;
}

.gift-title {
  font-size: 28px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 24px;
}

.gift-image {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.gift-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 640px) {
  .gift-title {
    font-size: 22px;
  }
}