:root {
  --maple-primary: #3b82f6;
  --maple-primary-rgb: 59, 130, 246;
  --maple-secondary: #8b5cf6;
  --maple-secondary-rgb: 139, 92, 246;
  --maple-accent: #ec4899;
  --maple-accent-rgb: 236, 72, 153;
  --maple-bg: #ffffff;
  --maple-card-bg: #ffffff;
  --maple-text: #1e293b;
  --maple-text-muted: #64748b;
  --maple-border: rgba(148, 163, 184, 0.2);
  --maple-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
  --maple-gradient-soft: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(236, 72, 153, 0.1) 100%);
}

html, body {
  background: linear-gradient(180deg, #f0f9ff 0%, #faf5ff 50%, #fdf2f8 100%);
  min-height: 100vh;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  color: var(--maple-text);
}

p, span, div, li, a {
  color: inherit;
}

.text-muted, .title-desc, .section-desc {
  color: var(--maple-text-muted) !important;
}

/* 全局 section 样式 - 确保所有内容区域都是透明背景 */
section, .section, .section-content, .maple-section, div[class*="section"] {
  background: transparent !important;
}

/* ===== 导航栏 ===== */
.maple-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--maple-border);
  transition: all 0.3s ease;
}

.maple-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.maple-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.maple-logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
}

.maple-logo img {
  height: 40px;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.maple-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.maple-menu-item {
  padding: 10px 20px;
  color: var(--maple-text);
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.maple-menu-item:hover {
  background: rgba(var(--maple-primary-rgb), 0.1);
  color: var(--maple-primary);
}

.maple-nav-actions {
  display: flex;
}

.maple-menu-item:hover::after { width: 20px; }

/* ===== Buttons ===== */
.maple-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.maple-btn-primary {
  background: var(--maple-gradient) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.maple-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.maple-btn-secondary {
  background: #ffffff !important;
  color: var(--maple-text) !important;
  border: 1px solid var(--maple-border) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.maple-btn-secondary:hover {
  background: #f8fafc !important;
  border-color: var(--maple-primary) !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.maple-nav-btn {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.maple-nav-btn.outline {
  background: transparent !important;
  border: 1px solid var(--maple-border) !important;
  color: var(--maple-text) !important;
}

.maple-nav-btn.outline:hover {
  border-color: var(--maple-primary) !important;
  color: var(--maple-primary) !important;
  background: rgba(59, 130, 246, 0.05) !important;
}

.maple-nav-btn.primary {
  background: var(--maple-gradient) !important;
  color: #ffffff !important;
  border: none !important;
}

.maple-nav-btn.primary:hover {
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

/* ===== Hero Section ===== */
.maple-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
  background: linear-gradient(135deg, #f0f9ff 0%, #faf5ff 50%, #fdf2f8 100%) !important;
}

.maple-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 50% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
  z-index: 1;
}

.maple-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(148, 163, 184, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 95%);
  z-index: 2;
}

.maple-hero-3d {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.maple-hero-3d canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.maple-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
}

.maple-hero-title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--maple-text) !important;
  letter-spacing: -1px;
}

.maple-hero-title span {
  background: var(--maple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.maple-hero-desc {
  font-size: 20px;
  color: var(--maple-text-muted) !important;
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.6;
  font-weight: 500;
}

/* ===== Feature Cards ===== */
.maple-features {
  position: relative;
  z-index: 100;
  max-width: 1200px;
  margin: -80px auto 0;
  padding: 0 20px;
}

.maple-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.maple-feature-card {
  background: #ffffff !important;
  border: 1px solid var(--maple-border) !important;
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.maple-feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--maple-primary) !important;
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%) !important;
}

.maple-feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--maple-primary-rgb), 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 32px;
}

.maple-feature-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--maple-text);
  margin-bottom: 6px;
}

.maple-feature-desc {
  font-size: 13px;
  color: var(--maple-text-muted);
  margin-bottom: 12px;
}

.maple-feature-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(var(--maple-primary-rgb), 0.1);
  border: 1px solid rgba(var(--maple-primary-rgb), 0.2);
  border-radius: 6px;
  font-size: 12px;
  color: var(--maple-primary);
}

/* ===== Products Section ===== */
.maple-section {
  padding: 120px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.maple-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.maple-section-label {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(var(--maple-primary-rgb), 0.1);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--maple-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.maple-section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--maple-text);
  margin-bottom: 16px;
}

.maple-section-desc {
  font-size: 16px;
  color: var(--maple-text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.maple-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.maple-product-card {
  background: #ffffff !important;
  border: 1px solid var(--maple-border) !important;
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.maple-product-card:hover {
  transform: translateY(-8px);
  border-color: var(--maple-primary) !important;
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%) !important;
}

.maple-product-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--maple-gradient);
  border-radius: 14px;
  margin-bottom: 24px;
  font-size: 28px;
}

.maple-product-icon.secondary { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.maple-product-icon.danger { background: linear-gradient(135deg, #ec4899, #f97316); }

.maple-product-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--maple-text);
  margin-bottom: 12px;
}

.maple-product-desc {
  font-size: 14px;
  color: var(--maple-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.maple-product-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.maple-product-tag {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  font-size: 12px;
  color: var(--maple-text-muted);
}

.maple-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--maple-border);
}

.maple-product-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--maple-primary);
}

.maple-product-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--maple-text-muted);
}

.maple-product-btn {
  padding: 12px 24px;
  background: transparent !important;
  border: 1px solid var(--maple-primary) !important;
  border-radius: 10px;
  color: var(--maple-primary) !important;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.maple-product-btn:hover {
  background: var(--maple-primary) !important;
  color: #030712 !important;
  box-shadow: 0 5px 15px rgba(0, 242, 255, 0.3);
}

/* ===== Solutions Section ===== */
.maple-solutions-bg {
  background: transparent !important;
}

.maple-solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.maple-solution-card {
  background: #ffffff !important;
  border: 1px solid var(--maple-border) !important;
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.maple-solution-card:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%) !important;
  border-color: #3b82f6 !important;
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

.maple-solution-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.maple-solution-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--maple-text);
  margin-bottom: 10px;
}

.maple-solution-desc {
  font-size: 13px;
  color: var(--maple-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.maple-solution-link {
  font-size: 13px;
  color: var(--maple-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.maple-solution-link:hover { gap: 10px; }

/* ===== Stats Section ===== */
.maple-stats {
  padding: 100px 40px;
  background: #f8fafc !important;
  border-top: 1px solid var(--maple-border);
  border-bottom: 1px solid var(--maple-border);
}

.maple-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.maple-stats-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--maple-text) !important;
  margin-bottom: 60px;
}

.maple-stats-grid {
  display: flex;
  justify-content: space-around;
  text-align: center;
  gap: 30px;
}

.maple-stat-item {
  padding: 30px;
  background: transparent;
  border-radius: 20px;
  flex: 1;
}

.maple-stat-value {
  font-size: 64px;
  font-weight: 900;
  background: var(--maple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 16px;
}

.maple-stat-label {
  font-size: 16px;
  color: var(--maple-text-muted);
  font-weight: 500;
}

/* ===== News Section ===== */
.maple-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.maple-news-col-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--maple-text);
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 4px solid #3b82f6;
}

.maple-news-col-title.secondary { border-left-color: #8b5cf6; }

.maple-news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--maple-border);
  transition: all 0.3s ease;
}

.maple-news-item:hover {
  border-bottom-color: #3b82f6;
}

.maple-news-item a {
  color: var(--maple-text);
  font-size: 15px;
  font-weight: 400;
}

.maple-news-item:hover a { color: #3b82f6; }

.maple-news-date {
  font-size: 13px;
  color: var(--maple-text-muted);
}

/* ===== Footer ===== */
.maple-footer {
  background: #f8fafc !important;
  border-top: 1px solid var(--maple-border);
  padding: 100px 40px 40px;
}

.maple-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.maple-footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 60px;
  margin-bottom: 80px;
}

.maple-footer-brand .maple-logo {
  margin-bottom: 24px;
  font-size: 32px;
}

.maple-footer-brand p {
  font-size: 15px;
  color: var(--maple-text-muted);
  line-height: 1.8;
  max-width: 300px;
}

.maple-footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--maple-text);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.maple-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.maple-footer-links li {
  margin-bottom: 16px;
  color: var(--maple-text-muted);
  font-size: 14px;
}

.maple-footer-links a {
  color: var(--maple-text-muted);
  transition: color 0.3s ease;
}

.maple-footer-links a:hover {
  color: var(--maple-primary);
}

.maple-footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--maple-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.maple-copyright {
  font-size: 14px;
  color: var(--maple-text-muted);
}

.maple-copyright a {
  color: var(--maple-text-muted);
}

.maple-copyright a:hover {
  color: var(--maple-primary);
}

/* ===== Sidebar Tools ===== */
.maple-sidebar {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.maple-sidebar-item {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff !important;
  border: 1px solid var(--maple-border) !important;
  border-radius: 12px;
  color: var(--maple-primary);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.maple-sidebar-item:hover {
  background: var(--maple-gradient) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  transform: translateX(-4px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.maple-sidebar-tooltip {
  position: absolute;
  right: 68px;
  padding: 12px 20px;
  background: #ffffff !important;
  border: 1px solid var(--maple-border) !important;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.maple-sidebar-item:hover .maple-sidebar-tooltip {
  opacity: 1;
  visibility: visible;
  right: 64px;
}

.maple-sidebar-tooltip h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--maple-text);
  margin-bottom: 4px;
}

.maple-sidebar-tooltip p {
  font-size: 12px;
  color: var(--maple-text-muted);
}

/* ===== Solution Pages Common Styles ===== */
.maple-solution-hero {
  min-height: 400px;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f9ff 0%, #faf5ff 50%, #fdf2f8 100%) !important;
  text-align: center;
}

.solution-trend, .solution-scene, .solution-advantage, .solution-future, .arrange-way {
  padding: 80px 0;
  background: transparent !important;
}

.trend-box {
  background: #ffffff !important;
  border: 1px solid var(--maple-border) !important;
  border-radius: 20px;
  padding: 40px 30px;
  margin: 15px;
  flex: 1;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.trend-box:hover {
  border-color: var(--maple-primary) !important;
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

.trend-box h4 {
  color: var(--maple-text) !important;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 15px;
}

.trend-box p {
  color: var(--maple-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.scene-box {
  background: #ffffff !important;
  border: 1px solid var(--maple-border) !important;
  border-radius: 24px;
  padding: 50px;
  display: flex !important;
  gap: 40px;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.scene-cont h4 {
  color: var(--maple-text) !important;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}

.scene-cont p {
  color: var(--maple-text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.advantage-box {
  background: #ffffff !important;
  border: 1px solid var(--maple-border) !important;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.advantage-box:hover {
  border-color: var(--maple-primary) !important;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%) !important;
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

.advantage-box h5 {
  color: var(--maple-text) !important;
  font-weight: 700;
  margin-top: 25px;
}

.advantage-box p {
  color: var(--maple-text-muted);
}

.solution-contact {
  background: #ffffff !important;
  padding: 50px;
  border-radius: 24px;
  border: 1px solid var(--maple-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-control {
  background: #f8fafc !important;
  border: 1px solid var(--maple-border) !important;
  color: var(--maple-text) !important;
  border-radius: 8px;
  padding: 12px 15px;
  height: auto;
}

.form-control:focus {
  border-color: var(--maple-primary) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  background: #ffffff !important;
}

.control-label {
  color: var(--maple-text) !important;
}

.arrange-way img {
  border-radius: 20px;
  border: 1px solid var(--maple-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.maple-page-header {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #f0f9ff 0%, #faf5ff 50%, #fdf2f8 100%) !important;
  text-align: center;
  border-bottom: 1px solid var(--maple-border);
}

/* Breadcrumb */
.breadcrumb {
  background: transparent !important;
  padding: 20px 0;
  margin-bottom: 20px;
  font-size: 14px;
}
.breadcrumb > li + li:before {
  content: "/" !important;
  color: var(--maple-text-muted) !important;
  padding: 0 10px;
}
.breadcrumb a {
  color: var(--maple-text-muted) !important;
}
.breadcrumb a:hover {
  color: var(--maple-primary) !important;
}
.breadcrumb > .active, #announce-name, #newType {
  color: var(--maple-text) !important;
}

/* News List & Details */
.document-news {
  padding: 60px 0;
  background: transparent !important;
}
.news-box {
  background: #ffffff !important;
  border: 1px solid var(--maple-border) !important;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.news-box-head {
  border-bottom: 1px solid var(--maple-border);
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.news-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--maple-text) !important;
}
.news-item {
  padding: 15px 0;
  border-bottom: 1px solid var(--maple-border);
  display: flex;
  align-items: center;
  gap: 15px;
}
.news-number {
  width: 24px;
  height: 24px;
  background: var(--maple-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}
.announce-details {
  background: #ffffff !important;
  border: 1px solid var(--maple-border) !important;
  border-radius: 20px;
  padding: 40px;
  color: var(--maple-text) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.announce-title {
  color: var(--maple-text) !important;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}
.announce-details-time {
  color: var(--maple-text-muted) !important;
  font-size: 14px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--maple-border);
  padding-bottom: 20px;
}
.announce-details-cont {
  line-height: 1.8;
  font-size: 16px;
}
.announce-details-cont img {
  max-width: 100%;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Pagination */
.pagination > li > a, .pagination > li > span {
  background: #ffffff !important;
  border: 1px solid var(--maple-border) !important;
  color: var(--maple-text) !important;
}
.pagination > .active > a, .pagination > .active > span {
  background: var(--maple-gradient) !important;
  border-color: transparent !important;
  color: #ffffff !important;
}
.pagination > li > a:hover {
  background: #f8fafc !important;
  border-color: var(--maple-primary) !important;
  color: var(--maple-primary) !important;
}
.maple-user-menu {
  position: relative;
  margin-left: 12px;
}

.maple-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--maple-primary);
  background: #f8fafc;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--maple-primary);
  overflow: hidden;
}

.maple-user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 12px;
  min-width: 180px;
  background: #ffffff;
  border: 1px solid var(--maple-border);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.maple-user-menu:hover .maple-user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.maple-dropdown-item {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--maple-text-muted);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.maple-dropdown-item:hover {
  background: rgba(var(--maple-primary-rgb), 0.1);
  color: var(--maple-text);
}

.maple-badge {
  padding: 2px 8px;
  font-size: 11px;
  border-radius: 4px;
  background: #f1f5f9;
  color: var(--maple-text-muted);
}

.maple-badge.success {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .maple-features-grid { grid-template-columns: repeat(2, 1fr); }
  .maple-products-grid { grid-template-columns: repeat(2, 1fr); }
  .maple-solutions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .maple-nav-inner { padding: 0 20px; }
  .maple-menu { display: none; }
  .maple-hero { padding: 100px 20px 60px; }
  .maple-features { padding: 0 20px; margin-top: -40px; }
  .maple-features-grid { grid-template-columns: 1fr; }
  .maple-section { padding: 80px 20px; }
  .maple-products-grid { grid-template-columns: 1fr; }
  .maple-solutions-grid { grid-template-columns: 1fr; }
  .maple-stats-grid { flex-direction: column; gap: 40px; }
  .maple-news-grid { grid-template-columns: 1fr; }
  .maple-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .maple-sidebar { display: none; }
}
