.page-home .services-grid-asymmetrical {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.page-home .service-card-wide {
  grid-column: span 2;
}

.page-home .cta-box-banner {
  background: linear-gradient(135deg, #e0ebff 0%, #eef3ff 50%, #f4f8ff 100%) !important;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 82, 204, 0.08);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.page-home .cta-box-banner::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  z-index: -1;
}

.page-home .cta-box-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 86, 216, 0.18) 0%, rgba(111, 85, 183, 0.08) 100%);
  pointer-events: none;
  z-index: -1;
}

.page-home .cta-box-banner-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-home .cta-box-banner h2 {
  font-size: 2.25rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.page-home .cta-box-banner p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
}

.page-home .cta-box-banner .btn-outline {
  background-color: #ffffff !important;
  color: var(--dark) !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: var(--shadow-sm);
}

.page-home .cta-box-banner .btn-outline:hover {
  background-color: #f8fafc !important;
  border-color: #cbd5e1 !important;
  box-shadow: var(--shadow-md);
}

.page-home .home-news-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 24px;
}

.page-home .news-horizontal-card {
  display: flex;
  background-color: #111827 !important;
  border: 1px solid #1f2937 !important;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 180px;
  align-items: center;
}

.page-home .news-horizontal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.page-home .news-horizontal-card img {
  width: clamp(180px, 28%, 240px);
  height: 190px;
  object-fit: cover;
  border-radius: 0 !important;
  flex-shrink: 0;
}

.page-home .news-horizontal-card--featured img {
  width: 240px;
}

.page-home .news-horizontal-card--featured .news-card-title {
  font-size: 1.22rem;
}

.page-home .news-horizontal-card--compact img {
  width: 200px;
}

.page-home .news-horizontal-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.page-home .news-tag-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 4px;
  margin-bottom: 12px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-home .news-tag-badge.event-badge {
  background-color: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.page-home .news-tag-badge.news-badge {
  background-color: rgba(249, 115, 22, 0.2);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.4);
}

.page-home .news-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.35;
  font-family: var(--font-heading);
}

.page-home .news-card-desc {
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.45;
  margin-bottom: 0;
}

.page-home .service-card-light-blue {
  background-color: #f0f4ff !important;
  border: 1px solid rgba(0, 82, 204, 0.06) !important;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.page-home .service-card-light-orange {
  background-color: #fff2ea !important;
  border: 1px solid rgba(255, 102, 0, 0.06) !important;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.page-home .service-card-light-blue:hover {
  background-color: #edf3ff !important;
  border-color: var(--primary) !important;
  box-shadow: var(--shadow-md);
}

.page-home .service-card-light-orange:hover {
  background-color: #ffebe0 !important;
  border-color: var(--accent) !important;
  box-shadow: var(--shadow-md);
}

.page-home .service-card-light-blue .card-icon,
.page-home .service-card-light-orange .card-icon {
  background-color: #ffffff !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-sm);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .service-card-light-blue .card-icon {
  color: var(--primary) !important;
}

.page-home .service-card-light-orange .card-icon {
  color: var(--accent) !important;
}

@media (max-width: 768px) {
  .page-home .services-grid-asymmetrical {
    grid-template-columns: 1fr;
  }

  .page-home .service-card-wide {
    grid-column: span 1;
  }

  .page-home .home-news-grid {
    grid-template-columns: 1fr;
  }

  .page-home .news-horizontal-card {
    flex-direction: column;
    height: auto;
  }

  .page-home .news-horizontal-card img {
    width: 100%;
    height: 160px;
  }
}
