.landing-hub {
  margin: 34px auto 72px;
}

.landing-hub-head {
  text-align: right;
  margin-bottom: 24px;
}

.landing-hub-head h1 {
  margin: 0;
  color: #1d222b;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.2px;
}

.landing-hub-head p {
  margin: 10px 0 0;
  color: #5f6672;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.75;
  max-width: 720px;
}

.landing-hub-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 28px;
}

.landing-hub-stat {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 14px;
  padding: 12px 22px;
  box-shadow: 0 4px 14px rgba(12, 14, 17, 0.06);
  text-align: center;
  min-width: 108px;
}

.landing-hub-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: #c50712;
  line-height: 1;
}

.landing-hub-stat span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #5f6672;
}

.landing-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.landing-hub-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid #eceef4;
  background: #fff;
  box-shadow: 0 16px 30px rgba(11, 14, 20, 0.08);
  padding: 22px 20px 18px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.landing-hub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 42px rgba(10, 14, 22, 0.14);
  border-color: rgba(197, 7, 18, 0.28);
}

.landing-hub-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e50914, #8b000e);
  color: #fff;
  font-size: 18px;
}

.landing-hub-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: #1d222b;
}

.landing-hub-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #5f6672;
  font-weight: 600;
}

.landing-hub-card-cta {
  margin-top: auto;
  font-size: 13px;
  font-weight: 800;
  color: #c50712;
}

.landing-hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.landing-hub-actions .btn {
  min-height: 44px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.landing-hub-actions .btn.primary {
  background: #c50712;
  color: #fff;
  border: 1px solid #c50712;
}

.landing-hub-actions .btn.ghost {
  background: #fff;
  color: #c50712;
  border: 1px solid rgba(197, 7, 18, 0.35);
}

@media (max-width: 900px) {
  .landing-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .landing-hub-grid {
    grid-template-columns: 1fr;
  }
}
