.insights-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
  text-align: left;
}
.insights-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content {
  width: 100%;
}
.hero-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 82, 147, 0.1);
  color: var(--primary-blue);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid rgba(0, 78, 146, 0.1);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: var(--primary-blue, #004e92);
  background: rgba(0, 78, 146, 0.05);
}
.insights-visual-hub {
  position: relative;
  width: 450px;
  height: 320px;
  margin: 0 auto;
}
.hub-grid-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background-image:
    linear-gradient(rgba(203, 213, 225, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203, 213, 225, 0.3) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, black 30%, transparent 70%);
  z-index: 0;
  opacity: 0.6;
}
.hub-interface-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 180px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 2;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.interface-header {
  height: 30px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.red {
  background: #ef4444;
}
.yellow {
  background: #f59e0b;
}
.green {
  background: #22c55e;
}
.interface-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.data-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.data-bar {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.data-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.data-bar:nth-child(1)::after {
  width: 70%;
  animation-delay: 0.5s;
}
.data-bar:nth-child(2)::after {
  width: 40%;
  animation-delay: 0.8s;
}
.data-bar:nth-child(3)::after {
  width: 90%;
  animation-delay: 1.1s;
}
.hub-notification {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.6);
  opacity: 1;
}
.hub-notification i,
.hub-notification svg {
  color: var(--primary-blue);
}
.notif-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.notif-text .title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e293b;
}
.notif-text .time {
  font-size: 0.7rem;
  color: #94a3b8;
}
.notif-1 {
  top: 15%;
  right: 0%;
  animation-delay: 1.5s;
}
.notif-2 {
  bottom: 20%;
  left: -10%;
  animation-delay: 2.5s;
}
@keyframes floatHub {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -60px);
  }
}
@keyframes loadBar {
  from {
    width: 0;
  }
}
@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 992px) {
  .insights-hero-grid {
    grid-template-columns: 1fr;
    gap: 0px;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
    max-width: 600px;
  }
  .hero-actions {
    justify-content: center;
  }
  .insights-visual-hub {
    transform: scale(0.9);
  }
}
@media (max-width: 768px) {
  .insights-hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-actions {
    width: 100%;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .insights-visual-hub {
    width: 100%;
    max-width: 350px;
    height: 250px;
    transform: scale(0.85);
    margin: 0 auto;
  }
  .hub-interface-card {
    width: 260px;
    height: 160px;
  }
  .notif-2 {
    left: 0;
    bottom: 10%;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .insights-visual-hub {
    transform: scale(0.7);
    margin: 0 auto;
  }
  .hub-notification {
    padding: 8px 12px;
  }
  .notif-text .title {
    font-size: 0.75rem;
  }
  .notif-text .time {
    font-size: 0.65rem;
  }
}
.featured-section {
  padding: 60px 0;
  background: var(--white);
}
.featured-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}
.featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-image {
  background: #f0f0f0;
  min-height: 300px;
  position: relative;
}
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #e6f0fa, #cbd5e1);
}
.tag {
  display: inline-block;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.date {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: block;
}
.featured-title {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-dark);
  line-height: 1.3;
}
.featured-excerpt {
  font-size: 1.1rem;
  color: var(--text-grey);
  margin-bottom: 24px;
  line-height: 1.6;
}
.articles-section {
  padding: 60px 0;
  background: #f8fafc;
}
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.article-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.article-img {
  height: 200px;
  background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.article-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.85rem;
}
.article-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
}
.article-title a {
  text-decoration: none;
  color: var(--text-dark);
  transition: color 0.2s;
}
.article-title a:hover {
  color: var(--primary-blue);
}
.article-excerpt {
  color: var(--text-grey);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
  flex: 1;
}
.read-more {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  align-self: flex-start;
}
.read-more:hover {
  text-decoration: underline;
}
.newsletter-section {
  padding: 80px 0;
  background: var(--soft-blue);
}
.newsletter-form {
  max-width: 500px;
  margin: 32px auto 0;
  display: flex;
  gap: 12px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-blue);
}
@media (min-width: 768px) {
  .featured-card {
    grid-template-columns: 1fr 1fr;
  }
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .featured-content {
    padding: 60px;
  }
}
@media (max-width: 576px) {
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form button {
    width: 100%;
  }
}
.text-center {
  text-align: center;
}
.cta-section {
  padding: 80px 0;
  background: var(--primary-blue);
  color: var(--white);
}
.cta-section .section-title {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  margin-bottom: 32px;
  font-size: 1.2rem;
  opacity: 0.9;
}
.cta-section .btn {
  background: var(--white);
  color: var(--primary-blue);
}
.cta-section .btn:hover {
  background: var(--soft-blue);
}
.skeleton,
.skeleton-text {
  background: #e2e8f0;
  background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  color: transparent !important;
  pointer-events: none;
  border-radius: 6px;
  display: inline-block;
}
@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
