.page-home .home-hero2 {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  height: 320px;
  margin: 14px 0 18px;
}

.page-home .home-hero2-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.page-home .home-hero2-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.78) 0%, rgba(2, 6, 23, 0.18) 58%, rgba(2, 6, 23, 0.06) 100%);
}

.page-home .home-hero2-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  max-width: 720px;
}

.page-home .home-hero2-brand {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
}

.page-home .home-hero2-title {
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.08;
}

.page-home .home-hero2-desc {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.85;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.page-home .home-hero2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .home-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
}

.page-home .home-cta:hover {
  border-color: rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.page-home .home-cta-primary {
  background: var(--color-main);
  border-color: var(--color-main);
  color: #fff;
}

.page-home .home-cta-primary:hover {
  background: var(--color-main);
  border-color: var(--color-main);
  color: #fff;
}

.page-home .home-services2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0;
}

.page-home .service2 {
  display: block;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}

.page-home .service2::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 20% 10%, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0) 60%);
  pointer-events: none;
}

.page-home .service2-2::after {
  background: radial-gradient(circle at 20% 10%, rgba(16, 185, 129, 0.18), rgba(16, 185, 129, 0) 60%);
}

.page-home .service2-3::after {
  background: radial-gradient(circle at 20% 10%, rgba(168, 85, 247, 0.18), rgba(168, 85, 247, 0) 60%);
}

.page-home .service2-4::after {
  background: radial-gradient(circle at 20% 10%, rgba(245, 158, 11, 0.18), rgba(245, 158, 11, 0) 60%);
}

.page-home .service2-head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .service2-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--color-text);
}

.page-home .service2-tag {
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 800;
}

.page-home .service2-list {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .service2-item {
  background: rgba(15, 23, 42, 0.04);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.page-home .home-feeds2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0 26px;
}

.page-home .feed2 {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.page-home .feed2-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
}

.page-home .feed2-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--color-text);
}

.page-home .feed2-more {
  color: var(--color-main);
  font-weight: 900;
  font-size: 13px;
}

.page-home .feed2-empty {
  padding: 14px 16px;
  color: var(--color-muted);
}

.page-home .feed2-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 70px;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}

.page-home .feed2-row:last-child {
  border-bottom: 0;
}

.page-home .feed2-row:hover {
  background: rgba(37, 99, 235, 0.06);
}

.page-home .feed2-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.10);
  color: var(--color-main);
  font-weight: 900;
  font-size: 12px;
}

.page-home .feed2-name {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.page-home .feed2-date {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .page-home .home-hero2 {
    height: 280px;
  }
  .page-home .home-services2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-home .home-feeds2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .page-home .home-hero2 {
    height: 240px;
  }
  .page-home .home-hero2-title {
    font-size: 24px;
  }
  .page-home .home-hero2-content {
    padding: 16px;
  }
  .page-home .home-services2 {
    grid-template-columns: 1fr;
  }
  .page-home .feed2-row {
    grid-template-columns: 1fr;
  }
  .page-home .feed2-date {
    text-align: left;
  }
}
