@charset "utf-8";

.index-refresh {
  --home-primary: #165dff;
  --home-primary-light: #4080ff;
  --home-primary-bg: #f0f5ff;
  --home-success: #00b42a;
  --home-warning: #ff7d00;
  --home-text-primary: #1d2129;
  --home-text-secondary: #4e5969;
  --home-text-tertiary: #86909c;
  --home-bg-page: #f7f8fa;
  --home-bg-white: #ffffff;
  --home-border: #e5e6eb;
  --home-border-light: #f2f3f5;
  --home-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --home-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --home-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --home-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
  --home-radius-sm: 8px;
  --home-radius-md: 12px;
  --home-radius-lg: 16px;
  --home-radius-xl: 24px;
  --home-radius-full: 9999px;
  background: var(--home-bg-page);
  color: var(--home-text-primary);
  overflow: hidden;
}

.index-refresh * {
  box-sizing: border-box;
}

.index-refresh a {
  color: inherit;
  text-decoration: none;
}

.index-refresh img {
  display: block;
  max-width: 100%;
}

.index-refresh .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.index-refresh .home-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #eff6ff 0%, #ffffff 60%, #fdfeff 100%);
}

.index-refresh .home-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(22, 93, 255, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.index-refresh .home-hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(64, 128, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.index-refresh .hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 93, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 93, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.index-refresh .hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 88px 0 36px;
}

.index-refresh .hero-text {
  max-width: 580px;
}

.index-refresh .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  margin-bottom: 24px;
  border: 1px solid rgba(22, 93, 255, 0.15);
  border-radius: var(--home-radius-full);
  background: var(--home-primary-bg);
  color: var(--home-primary);
  font-size: 13px;
  font-weight: 500;
}

.index-refresh .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-success);
}

.index-refresh .hero-title {
  margin-bottom: 20px;
  color: var(--home-text-primary);
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.index-refresh .hero-title .highlight {
  background: linear-gradient(135deg, var(--home-primary), var(--home-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.index-refresh .hero-subtitle {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--home-text-secondary);
  font-size: 18px;
  line-height: 1.8;
}

.index-refresh .hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.index-refresh .feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--home-border-light);
  border-radius: var(--home-radius-full);
  background: var(--home-bg-white);
  box-shadow: var(--home-shadow-sm);
  color: var(--home-text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.index-refresh .feature-tag:hover {
  transform: translateY(-2px);
  border-color: var(--home-primary);
  color: var(--home-primary);
  box-shadow: var(--home-shadow-md);
}

.index-refresh .tag-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--home-primary-bg);
  color: var(--home-primary);
  font-size: 11px;
}

.index-refresh .hero-actions {
  display: flex;
  gap: 20px;
}

.index-refresh .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--home-radius-full);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.index-refresh .btn-primary {
  background: linear-gradient(135deg, var(--home-primary), var(--home-primary-light));
  box-shadow: 0 4px 14px rgba(22, 93, 255, 0.35);
  color: #fff;
}

.index-refresh .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(22, 93, 255, 0.45);
}

.index-refresh .btn-outline {
  border: 1.5px solid var(--home-border);
  background: transparent;
  color: var(--home-primary);
}

.index-refresh .btn-outline:hover {
  border-color: var(--home-primary);
  background: var(--home-primary-bg);
}

.index-refresh .hero-visual {
  position: relative;
}

.index-refresh .receipt-carousel {
  position: relative;
  aspect-ratio: 3 / 2;
  perspective: 1400px;
}

.index-refresh .receipt-carousel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 90%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(22, 93, 255, 0.06), transparent 70%);
  pointer-events: none;
}

.index-refresh .receipt-stage {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.index-refresh .window-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--home-radius-md);
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
  opacity: 0;
  pointer-events: none;
  transform: translateX(60px) rotateY(25deg) scale(0.92);
  transform-origin: center center;
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.index-refresh .window-card.active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) rotateY(0) scale(1);
}

.index-refresh .window-card.leaving {
  z-index: 1;
  opacity: 0;
  transform: translateX(-60px) rotateY(-25deg) scale(0.92);
}

.index-refresh .window-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, #e8e8ed, #dcdce1);
}

.index-refresh .window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.index-refresh .window-dot.red {
  background: #ff5f57;
}

.index-refresh .window-dot.yellow {
  background: #febc2e;
}

.index-refresh .window-dot.green {
  background: #28c840;
}

.index-refresh .window-title {
  flex: 1;
  margin-right: 60px;
  color: #6e6e73;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

.index-refresh .window-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 32px);
  background: #fff;
}

.index-refresh .window-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.index-refresh .carousel-progress {
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  overflow: hidden;
  height: 3px;
  border-radius: 2px;
  background: rgba(22, 93, 255, 0.1);
}

.index-refresh .carousel-progress-bar {
  width: 0;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--home-primary), var(--home-primary-light));
}

.index-refresh .hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  padding: 36px 0 56px;
  border-top: 1px solid var(--home-border-light);
}

.index-refresh .hero-stats .stat-item {
  flex: 1;
  text-align: center;
}

.index-refresh .stat-number {
  margin-bottom: 8px;
  color: var(--home-primary);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.index-refresh .stat-label {
  color: var(--home-text-tertiary);
  font-size: 14px;
}

.index-refresh .section {
  position: relative;
  padding: 80px 0;
}

.index-refresh .section-alt {
  background: var(--home-bg-white);
}

.index-refresh .section-header {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
}

.index-refresh .section-label {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 16px;
  border-radius: var(--home-radius-full);
  background: var(--home-primary-bg);
  color: var(--home-primary);
  font-size: 13px;
  font-weight: 600;
}

.index-refresh .section-title {
  margin-bottom: 16px;
  color: var(--home-text-primary);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.index-refresh .section-desc {
  color: var(--home-text-secondary);
  font-size: 17px;
  line-height: 1.7;
}

.index-refresh .tech-features,
.index-refresh .features-grid,
.index-refresh .solutions-grid,
.index-refresh .func-list {
  display: grid;
}

.index-refresh .tech-features {
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.index-refresh .tech-item {
  position: relative;
  overflow: hidden;
  padding: 28px 16px;
  border: 1px solid var(--home-border-light);
  border-radius: var(--home-radius-lg);
  background: var(--home-bg-white);
  text-align: center;
  transition: all 0.3s ease;
}

.index-refresh .tech-item:hover {
  transform: translateY(-8px);
  border-color: rgba(22, 93, 255, 0.2);
  box-shadow: 0 12px 40px rgba(22, 93, 255, 0.15);
}

.index-refresh .tech-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: var(--home-radius-md);
  background: var(--home-primary-bg);
  color: var(--home-primary);
  font-size: 26px;
}

.index-refresh .tech-name {
  margin-bottom: 6px;
  color: var(--home-text-primary);
  font-size: 15px;
  font-weight: 600;
}

.index-refresh .tech-desc {
  color: var(--home-text-tertiary);
  font-size: 12px;
  line-height: 1.5;
}

.index-refresh .ca-callout {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 48px;
  padding: 36px 40px;
  border-radius: var(--home-radius-lg);
  background: linear-gradient(135deg, #ecfff5, #f0fdf4);
}

.index-refresh .ca-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: var(--home-radius-lg);
  background: #fff;
  font-size: 38px;
}

.index-refresh .ca-callout h3 {
  margin-bottom: 10px;
  color: #166534;
  font-size: 20px;
  font-weight: 700;
}

.index-refresh .ca-law {
  margin-bottom: 12px;
  color: #15803d;
  font-size: 15px;
  font-weight: 700;
}

.index-refresh .ca-callout p {
  color: #166534;
  font-size: 14px;
  line-height: 1.8;
}

.index-refresh .func-list {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.index-refresh .func-item {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px 26px;
  border: 1px solid #e8e9ed;
  border-radius: var(--home-radius-lg);
  background: linear-gradient(135deg, #ffffff, #fafbfc);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.index-refresh .func-item:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 93, 255, 0.2);
  box-shadow: 0 8px 24px rgba(22, 93, 255, 0.12);
}

.index-refresh .func-icon,
.index-refresh .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: var(--home-radius-md);
}

.index-refresh .func-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--home-primary-bg), #e8eeff);
  color: var(--home-primary);
  font-size: 22px;
}

.index-refresh .func-info h4 {
  margin-bottom: 6px;
  color: var(--home-text-primary);
  font-size: 16px;
  font-weight: 700;
}

.index-refresh .func-info p {
  color: var(--home-text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

.index-refresh .payment-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.index-refresh .mode-card {
  padding: 40px 36px;
  border: 2px solid var(--home-border-light);
  border-radius: var(--home-radius-lg);
  background: var(--home-bg-white);
  transition: all 0.3s ease;
}

.index-refresh .mode-card:hover {
  transform: translateY(-4px);
  border-color: var(--home-primary);
  box-shadow: var(--home-shadow-lg);
}

.index-refresh .mode-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 14px;
  border-radius: var(--home-radius-full);
  font-size: 12px;
  font-weight: 700;
}

.index-refresh .mode-badge.green {
  background: #ecfff5;
  color: var(--home-success);
}

.index-refresh .mode-badge.blue {
  background: var(--home-primary-bg);
  color: var(--home-primary);
}

.index-refresh .mode-title {
  margin-bottom: 12px;
  color: var(--home-text-primary);
  font-size: 22px;
  font-weight: 700;
}

.index-refresh .mode-desc {
  margin-bottom: 24px;
  color: var(--home-text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.index-refresh .mode-steps {
  display: flex;
  gap: 8px;
  align-items: center;
}

.index-refresh .step-item {
  flex: 1;
  padding: 16px 8px;
  border-radius: var(--home-radius-sm);
  background: var(--home-bg-page);
  text-align: center;
}

.index-refresh .step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: var(--home-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.index-refresh .step-text {
  color: var(--home-text-secondary);
  font-size: 12px;
  line-height: 1.4;
}

.index-refresh .step-arrow {
  flex-shrink: 0;
  color: var(--home-text-tertiary);
  font-size: 18px;
}

.index-refresh .features-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.index-refresh .payment-feature-grid {
  margin-top: 48px;
}

.index-refresh .feature-card {
  position: relative;
  overflow: hidden;
  padding: 36px 30px;
  border: 1px solid var(--home-border-light);
  border-radius: var(--home-radius-lg);
  background: var(--home-bg-white);
  transition: all 0.3s ease;
}

.index-refresh .feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 93, 255, 0.12);
  box-shadow: var(--home-shadow-lg);
}

.index-refresh .feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  background: var(--home-primary-bg);
  color: var(--home-primary);
  font-size: 26px;
}

.index-refresh .feature-title {
  margin-bottom: 12px;
  color: var(--home-text-primary);
  font-size: 19px;
  font-weight: 700;
}

.index-refresh .feature-desc {
  color: var(--home-text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.index-refresh .contract-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.index-refresh .contract-tag {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 22px;
  border: 1px solid var(--home-border-light);
  border-radius: var(--home-radius-full);
  background: #fff;
  box-shadow: var(--home-shadow-sm);
  color: var(--home-text-primary);
  font-size: 15px;
  font-weight: 600;
}

.index-refresh .contract-tag span {
  color: var(--home-primary);
  font-weight: 700;
}

.index-refresh .solutions-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.index-refresh .section-news {
  background: #ffffff;
}

.index-refresh .home-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.index-refresh .home-news-item {
  overflow: hidden;
  border: 1px solid var(--home-border-light);
  border-radius: var(--home-radius-xl);
  background: var(--home-bg-white);
  transition: all 0.3s ease;
}

.index-refresh .home-news-item:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 93, 255, 0.14);
  box-shadow: var(--home-shadow-lg);
}

.index-refresh .home-news-link {
  display: block;
  height: 100%;
}

.index-refresh .home-news-thumb {
  width: 100%;
  min-width: 0;
  height: 180px;
  overflow: hidden;
  border-radius: 0;
  background: #f3f6fb;
}

.index-refresh .home-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.index-refresh .home-news-item:hover .home-news-thumb img {
  transform: scale(1.02);
}

.index-refresh .home-news-content {
  min-width: 0;
  padding: 22px 22px 20px;
}

.index-refresh .news-meta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.index-refresh .news-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--home-radius-full);
  background: linear-gradient(135deg, var(--home-primary), var(--home-primary-light));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.index-refresh .news-chip-light {
  background: var(--home-primary-bg);
  color: var(--home-primary);
  padding: 4px 10px;
  font-size: 11px;
}

.index-refresh .news-date {
  flex-shrink: 0;
  color: var(--home-text-tertiary);
  font-size: 12px;
  line-height: 1;
}

.index-refresh .home-news-title {
  margin-bottom: 10px;
  color: var(--home-text-primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.index-refresh .home-news-desc {
  color: var(--home-text-secondary);
  font-size: 14px;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.index-refresh .home-news-footer {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.index-refresh .news-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-full);
  background: #fff;
  color: var(--home-primary);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.index-refresh .news-more-link:hover {
  border-color: var(--home-primary);
  background: var(--home-primary-bg);
}

.index-refresh .solution-card {
  overflow: hidden;
  border: 1px solid var(--home-border-light);
  border-radius: var(--home-radius-xl);
  background: var(--home-bg-white);
  transition: all 0.3s ease;
}

.index-refresh .solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--home-shadow-xl);
}

.index-refresh .solution-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
}

.index-refresh .solution-card:nth-child(1) .solution-cover {
  background: linear-gradient(135deg, #eef2ff, #e8edff);
}

.index-refresh .solution-card:nth-child(2) .solution-cover {
  background: linear-gradient(135deg, #ecfff5, #e0fbeb);
}

.index-refresh .solution-card:nth-child(3) .solution-cover {
  background: linear-gradient(135deg, #fff7e8, #fff0db);
}

.index-refresh .solution-icon-large {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--home-shadow-md);
  font-size: 56px;
}

.index-refresh .solution-body {
  padding: 28px 28px 32px;
}

.index-refresh .solution-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 12px;
  border-radius: var(--home-radius-full);
  font-size: 12px;
  font-weight: 600;
}

.index-refresh .sol-tag-1 {
  background: #eef2ff;
  color: var(--home-primary);
}

.index-refresh .sol-tag-2 {
  background: #ecfff5;
  color: var(--home-success);
}

.index-refresh .sol-tag-3 {
  background: #fff7e8;
  color: var(--home-warning);
}

.index-refresh .solution-body h3 {
  margin-bottom: 12px;
  color: var(--home-text-primary);
  font-size: 22px;
  font-weight: 700;
}

.index-refresh .solution-body p {
  color: var(--home-text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.index-refresh .pricing-banner {
  position: relative;
  overflow: hidden;
  padding: 68px 60px;
  border-radius: var(--home-radius-xl);
  background: linear-gradient(135deg, #165dff 0%, #4080ff 50%, #69b1ff 100%);
  text-align: center;
}

.index-refresh .pricing-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(-15deg);
}

.index-refresh .pricing-banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 40%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.index-refresh .pb-content {
  position: relative;
  z-index: 1;
}

.index-refresh .pb-title {
  margin-bottom: 16px;
  color: #fff;
  font-size: 42px;
  font-weight: 800;
}

.index-refresh .pb-highlight {
  margin-bottom: 24px;
  color: #ffe066;
  font-size: 58px;
  font-weight: 900;
}

.index-refresh .pb-desc {
  max-width: 520px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.7;
}

.index-refresh .pb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  border-radius: var(--home-radius-full);
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  color: var(--home-primary);
  font-size: 17px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.index-refresh .pb-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.index-refresh .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.index-refresh .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.index-refresh .reveal-delay-1 {
  transition-delay: 0.1s;
}

.index-refresh .reveal-delay-2 {
  transition-delay: 0.2s;
}

.index-refresh .reveal-delay-3 {
  transition-delay: 0.3s;
}

.index-refresh .reveal-delay-4 {
  transition-delay: 0.4s;
}

.index-refresh .reveal-delay-5 {
  transition-delay: 0.5s;
}

.index-refresh .reveal-delay-6 {
  transition-delay: 0.6s;
}

.index-refresh #features,
.index-refresh #main-functions,
.index-refresh #payment,
.index-refresh #contract,
.index-refresh #solutions,
.index-refresh #news {
  scroll-margin-top: 90px;
}

@media (max-width: 1024px) {
  .index-refresh .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .index-refresh .hero-text {
    max-width: 100%;
  }

  .index-refresh .hero-features,
  .index-refresh .hero-actions,
  .index-refresh .contract-tags {
    justify-content: center;
  }

  .index-refresh .hero-stats {
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
  }

  .index-refresh .hero-visual {
    max-width: 550px;
    margin: 0 auto;
  }

  .index-refresh .tech-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .index-refresh .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .index-refresh .payment-modes,
  .index-refresh .solutions-grid,
  .index-refresh .func-list {
    grid-template-columns: 1fr;
  }

  .index-refresh .section-title {
    font-size: 32px;
  }

  .index-refresh .hero-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .index-refresh .container {
    padding: 0 16px;
  }

  .index-refresh .hero-content {
    padding: 64px 0 28px;
  }

  .index-refresh .hero-title {
    font-size: 28px;
  }

  .index-refresh .home-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .index-refresh .hero-subtitle {
    font-size: 15px;
  }

  .index-refresh .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .index-refresh .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding-bottom: 40px;
  }

  .index-refresh .tech-features,
  .index-refresh .features-grid {
    grid-template-columns: 1fr;
  }

  .index-refresh .mode-steps {
    flex-direction: column;
  }

  .index-refresh .step-arrow {
    transform: rotate(90deg);
  }

  .index-refresh .ca-callout {
    flex-direction: column;
    padding: 28px 24px;
    text-align: center;
  }

  .index-refresh .pricing-banner {
    padding: 40px 24px;
  }

  .index-refresh .pb-title {
    font-size: 26px;
  }

  .index-refresh .pb-highlight {
    font-size: 36px;
  }

  .index-refresh .home-news-thumb {
    height: 160px;
  }

  .index-refresh .home-news-title {
    font-size: 18px;
  }

  .index-refresh .home-news-desc {
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 640px) {
  .index-refresh .home-news-grid {
    grid-template-columns: 1fr;
  }

  .index-refresh .home-news-thumb {
    height: 168px;
  }

  .index-refresh .home-news-content {
    padding: 18px 18px 16px;
  }
}
