:root {
  --vp-c-brand: #5f67ee;
  --vp-c-brand-soft: rgba(95, 103, 238, 0.1);
  --vp-c-text-1: #1f2937;
  --vp-c-text-2: #64748b;
  --vp-c-divider: #e5e7eb;
  --vp-c-default-soft: #f3f4f6;
  --vp-code-block-bg: #1f2937;
  --vp-c-brand: #5f67ee;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
  color: var(--vp-c-text-1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  min-height: 100vh;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* ========== Header 样式 ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  border-bottom: 1px solid var(--vp-c-divider);
  background: #fff;
}

.site-header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.site-logo {
  width: 40px;
  height: 40px;
}

.site-logo-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--vp-c-text-1);
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--vp-c-text-2);
  transition: color 0.2s;
}

.site-nav-link:hover {
  color: var(--vp-c-brand);
}

.site-nav-btn {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: var(--vp-c-brand);
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.site-nav-btn:hover {
  background: #4a54d6;
}

.site-mobile-menu-btn {
  display: none;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--vp-c-text-2);
}

@media (max-width: 768px) {
  .site-nav-links {
    display: none;
  }
  .site-mobile-menu-btn {
    display: block;
  }
}

.site-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border-top: 1px solid var(--vp-c-divider);
}

.site-mobile-menu:not(.hidden) {
  display: flex;
}

.site-mobile-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--vp-c-text-2);
}

.site-mobile-nav-link:hover {
  color: var(--vp-c-brand);
}

.site-mobile-nav-btn {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: var(--vp-c-brand);
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-align: center;
}

/* ========== Footer 样式 ========== */
.site-footer {
  border-top: 1px solid var(--vp-c-divider);
  background: #fff;
  padding: 24px 0;
}

.site-footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ========== 主内容区 ========== */
/* ========== 通用按钮样式 ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #2563eb;
  color: #fff;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.25);
  transition: all 0.2s;
}

.btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: #f1f5f9;
  color: #0f172a;
}

/* ========== 卡片样式 ========== */
.feature-card {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: white;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: all 0.2s;
}

.feature-card:hover {
  background: #f8fafc;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.demo-code{
  background-color: var(--vp-code-block-bg);
  border-radius: 10px;
  padding:12px;
  white-space: break-spaces;
}
.VPImage.image-src{
  border-radius: 20px;
}

.pricing-section {
  padding: 8rem 4rem 6rem;
  background: linear-gradient(135deg, #1a237e 0%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://23jt.gaoxiaodaan.cn/img/20230714131209.png');
  opacity: 0.1;
  pointer-events: none;
}

.pricing-section .section-title {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.pricing-card.popular {
  border: 2px solid #60a5fa;
  /* transform: scale(1.05); */
  background: rgba(255, 255, 255, 0.15);
}

.popular-tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #60a5fa;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #60a5fa;
}

.price-per-month,.saving-tag{
  color:#fff;
}

.price span {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-button {
  display: block;
  text-align: center;
  background: #60a5fa;
  color: white;
  padding: 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-button:hover {
  background: #3b82f6;
  transform: translateY(-2px);
}
.partners-section {
  padding: 6rem 4rem;
  background: white;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.partner-card img {
  max-width: 150px;
  height: auto;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partner-card:hover img {
  filter: grayscale(0%);
}

.faq-section {
  padding: 6rem 4rem;
  background: linear-gradient(135deg, #1a237e 0%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://23jt.gaoxiaodaan.cn/img/20230714131209.png');
  opacity: 0.1;
  pointer-events: none;
}

.faq-section .section-title {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.faq-item h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.faq-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.contact-section {
  padding: 6rem 4rem;
  background: white;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.contact-item {
  text-align: center;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-item h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #4b5563;
}
.custom-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 4rem 3rem; */
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(59, 130, 246, 0.9) 50%, rgba(37, 99, 235, 0.9) 100%), url('https://23jt.gaoxiaodaan.cn/img/20230714131209.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  /* border-radius: 1.5rem; */
  /* margin: 2rem 0; */
  position: relative;
  overflow: hidden;
}

.custom-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/pattern.png');
  opacity: 0.1;
}

.hero-content-box {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 120px;
}

.hero-content {
  flex: 2;
  /* padding-right: 3rem; */
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.primary-button,
.secondary-button {
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.primary-button {
  background-color: #ffffff;
  color: #3b82f6;
}

.primary-button:hover {
  background-color: #e0e7ff;
  transform: translateY(-2px);
}

.secondary-button {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-image {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .custom-hero {
    flex-direction: column;
    /* padding: 3rem 2rem; */
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    width: 200px;
    height: 200px;
  }
}
.custom-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6rem 4rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(59, 130, 246, 0.9) 50%, rgba(37, 99, 235, 0.9) 100%), url('https://23jt.gaoxiaodaan.cn/img/20230714131209.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  /* border-radius: 1.5rem; */
  /* margin: 3rem 0; */
  position: relative;
  overflow: hidden;
}

.custom-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://23jt.gaoxiaodaan.cn/img/20230714131209.png');
  opacity: 0.8;
}

.hero-content {
  /* flex: 1; */
  padding-right: 4rem;
  position: relative;
  z-index: 1;
  text-align: left;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  font-weight: 600;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.primary-button,
.secondary-button {
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary-button {
  background: white;
  color: #3b82f6;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 3rem rgba(0, 0, 0, 0.2));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1f2937;
}

.features-section {
  padding: 6rem 4rem;
  background: #f9fafb;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 20px auto;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
  font-weight: 600;
}

.feature-card p {
  color: #4b5563;
  line-height: 1.6;
}

.stats-section {
  padding: 6rem 4rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(59, 130, 246, 0.9) 50%, rgba(37, 99, 235, 0.9) 100%), url('https://23jt.gaoxiaodaan.cn/img/20230714131209.png');
  color: white;
  position: relative;
}

.stats-section .section-title {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(https://23jt.gaoxiaodaan.cn/img/20230714131209.png);
  opacity: 0.5;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
}

.stat-label {
  font-size: 1.125rem;
  opacity: 0.9;
}

.testimonials-section {
  padding: 6rem 4rem;
  background: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #f9fafb);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  position: relative;
  font-style: italic;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  color: #6366f1;
  font-size: 1.5em;
  font-weight: bold;
}

.testimonial-author {
  color: #6366f1;
  font-weight: 600;
}

@media (max-width: 768px) {
  .custom-hero {
    flex-direction: column;
    text-align: center;
    /* padding: 4rem 2rem; */
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stats-section,
  .features-section,
  .testimonials-section {
    padding: 4rem 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

.industry-solutions-section {
  padding: 6rem 4rem;
  /* background: linear-gradient(135deg, #1a237e 0%, #1e3a8a 100%);
  position: relative; */
  overflow: hidden;
}
/* 
.industry-solutions-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://23jt.gaoxiaodaan.cn/img/20230714131209.png');
  opacity: 0.1;
  pointer-events: none;
} */

.industry-solutions-section .section-title {
  /* color: #ffffff; */
  position: relative;
  z-index: 1;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem auto 0;
  max-width: 1200px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.solution-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.solution-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  /* color: #ffffff; */
}

.solution-description {
  /* color: rgba(255, 255, 255, 0.9); */
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.solution-features li {
  /* color: rgba(255, 255, 255, 0.8); */
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.solution-features li::before {
  content: '✓';
  color: #4f46e5;
  margin-right: 0.5rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  
  .solution-card {
    padding: 1.5rem;
  }
}

.VPHome {
  padding-bottom: 0!important;
}

.wula-home {
  background: #f5f7fb;
  color: #101828;
}

.wula-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.wula-hero {
  padding: 28px 0 28px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.wula-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: center;
}

.wula-hero-copy h1,
.wula-section-heading h2,
.wula-platform-layout h2,
.wula-cta-inner h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.06;
}

.wula-eyebrow,
.wula-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #475467;
}

.wula-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d92d20;
  box-shadow: 0 0 0 4px rgba(217, 45, 32, 0.12);
}

.wula-hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  color: #0f172a;
}

.wula-hero-copy h1 em {
  font-style: normal;
  color: #175cd3;
}

.wula-hero-lead,
.wula-section-heading p,
.wula-platform-layout p,
.wula-cta-inner p,
.wula-feature-card p {
  margin: 0;
  color: #475467;
  line-height: 1.7;
}

.wula-hero-lead {
  max-width: 54ch;
  margin-top: 16px;
  font-size: 16px;
}

.wula-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.wula-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

.wula-btn:hover {
  transform: translateY(-1px);
}

.wula-btn-primary {
  background: #175cd3;
  color: #fff;
  box-shadow: 0 10px 24px rgba(23, 92, 211, 0.22);
}

.wula-btn-primary:hover {
  background: #1849a9;
}

.wula-btn-ghost {
  background: #fff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.wula-btn-light {
  background: #fff7e6;
  color: #8a4b00;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.wula-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 13px;
  color: #667085;
}

.wula-trust-avatars {
  display: inline-flex;
  margin-right: 2px;
}

.wula-trust-avatars i {
  width: 28px;
  height: 28px;
  margin-left: -7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid #fff;
  background: #eff4ff;
  color: #175cd3;
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
}

.wula-hero-visual {
  position: relative;
}

.wula-dashboard-card,
.wula-feature-card,
.wula-platform-list > div,
.wula-cta-inner {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.wula-dashboard-card {
  padding: 18px;
}

.wula-dashboard-top,
.wula-chart-label,
.wula-task,
.wula-platform-list > div,
.wula-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wula-window-dots {
  display: inline-flex;
  gap: 6px;
}

.wula-window-dots i,
.wula-status i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  display: inline-block;
}

.wula-window-dots i:nth-child(1) { background: #ef4444; }
.wula-window-dots i:nth-child(2) { background: #f59e0b; }
.wula-window-dots i:nth-child(3) { background: #22c55e; }

.wula-dashboard-top {
  font-size: 13px;
  color: #475467;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.wula-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #175cd3;
  font-weight: 700;
}

.wula-status i {
  background: #22c55e;
}

.wula-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.wula-dashboard-stats > div {
  padding: 16px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.wula-dashboard-stats small {
  display: block;
  color: #667085;
  font-size: 12px;
}

.wula-dashboard-stats strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
  line-height: 1;
  color: #0f172a;
}

.wula-dashboard-stats span,
.wula-chart-axis span,
.wula-mini-editor span,
.wula-mini-editor i,
.wula-task small,
.wula-task strong,
.wula-platform-list span,
.wula-platform-list i {
  font-size: 12px;
}

.wula-dashboard-stats span {
  display: block;
  margin-top: 6px;
  color: #175cd3;
}

.wula-chart {
  margin-top: 16px;
  padding: 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f9fbff 0%, #eef4ff 100%);
  border: 1px solid rgba(23, 92, 211, 0.08);
}

.wula-chart-label {
  font-size: 13px;
  color: #334155;
  margin-bottom: 14px;
}

.wula-chart-label b {
  color: #d92d20;
}

.wula-bars {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  height: 130px;
}

.wula-bars i {
  display: block;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #8ab4ff 0%, #175cd3 100%);
  box-shadow: 0 8px 16px rgba(23, 92, 211, 0.18);
}

.wula-bars i.active {
  background: linear-gradient(180deg, #ffb648 0%, #d92d20 100%);
}

.wula-chart-axis {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  color: #667085;
}

.wula-task {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.wula-task-icon,
.wula-feature-icon,
.wula-mini-editor i,
.wula-platform-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.wula-task-icon {
  width: 32px;
  height: 32px;
  background: #eff4ff;
  color: #175cd3;
  font-weight: 800;
}

.wula-task b,
.wula-feature-card h3,
.wula-platform-layout b {
  color: #101828;
}

.wula-task small {
  display: block;
  margin-top: 4px;
  color: #667085;
}

.wula-task strong {
  color: #175cd3;
}

.wula-float-card {
  position: absolute;
  right: -14px;
  bottom: -14px;
  padding: 14px 16px;
  min-width: 140px;
  border-radius: 8px;
  background: #101828;
  color: #fff;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.22);
}

.wula-float-card span,
.wula-float-card small {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.wula-float-card b {
  display: block;
  margin: 8px 0 4px;
  font-size: 26px;
}

.wula-section {
  padding: 28px 0;
}

.wula-section-heading {
  max-width: 620px;
  margin-bottom: 18px;
}

.wula-section-heading h2,
.wula-platform-layout h2,
.wula-cta-inner h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.wula-section-heading p,
.wula-platform-layout p,
.wula-cta-inner p {
  margin-top: 12px;
  max-width: 60ch;
}

.wula-feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 16px;
}

.wula-feature-card {
  padding: 18px;
}

.wula-feature-card-wide {
  grid-row: span 2;
}

.wula-feature-number {
  display: inline-flex;
  margin-bottom: 14px;
  color: #d92d20;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.wula-feature-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  font-weight: 800;
}

.wula-icon-blue { background: #eff4ff; color: #175cd3; }
.wula-icon-yellow { background: #fff7e6; color: #a15c00; }
.wula-icon-red { background: #fff1f0; color: #d92d20; }

.wula-feature-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.wula-card-link,
.wula-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #175cd3;
  text-decoration: none;
  font-weight: 700;
}

.wula-mini-editor {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.wula-mini-editor span,
.wula-mini-editor b,
.wula-mini-editor i {
  padding: 10px 12px;
  border-radius: 8px;
  background: #f8fafc;
}

.wula-mini-editor b {
  color: #0f172a;
}

.wula-mini-editor i {
  width: fit-content;
  background: #175cd3;
  color: #fff;
  font-style: normal;
}

.wula-platform-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.wula-platform-list {
  display: grid;
  gap: 12px;
}

.wula-platform-list > div {
  padding: 16px 18px;
}

.wula-platform-list b {
  font-size: 16px;
}

.wula-platform-list span {
  color: #667085;
}

.wula-platform-list i {
  width: 30px;
  height: 30px;
  background: #eff4ff;
  color: #175cd3;
  font-style: normal;
  font-weight: 800;
}

.wula-cta {
  padding: 16px 0 42px;
}

.wula-cta-inner {
  padding: 18px 20px;
  background: linear-gradient(135deg, #101828 0%, #193b8c 100%);
  color: #fff;
}

.wula-cta-inner p {
  color: rgba(255, 255, 255, 0.82);
}

.wula-cta-inner .wula-btn-light {
  margin-left: auto;
}

.wula-cta-inner .wula-btn-light:hover {
  background: #fff1cc;
}

@media (max-width: 980px) {
  .wula-hero-grid,
  .wula-platform-layout,
  .wula-feature-grid {
    grid-template-columns: 1fr;
  }

  .wula-feature-card-wide {
    grid-row: auto;
  }

  .wula-float-card {
    right: 10px;
    bottom: -10px;
  }
}

@media (max-width: 640px) {
  .wula-shell {
    width: min(100% - 20px, 1180px);
  }

  .wula-hero,
  .wula-section {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .wula-dashboard-stats {
    grid-template-columns: 1fr;
  }

  .wula-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .wula-cta-inner .wula-btn-light {
    margin-left: 0;
  }
}
