.static-banner {
  background: linear-gradient(90deg, #0f172a, #1e293b);
  color: #e2e8f0;
  padding: 10px 16px;
  font: 14px/1.5 Arial, sans-serif;
  text-align: center;
}

.static-banner a {
  color: #f8d448;
  text-decoration: none;
}

.static-panel-wrap {
  padding: 24px 16px 8px;
}

.static-panel {
  max-width: 960px;
  margin: 0 auto;
  padding: 22px 24px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #dbe4ee;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  font: 16px/1.6 Arial, sans-serif;
  color: #0f172a;
}

.static-panel-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.88));
}

.static-panel-hero h1,
.static-panel-hero h2,
.static-panel-hero p,
.static-panel-hero li {
  color: #fff;
}

.static-panel-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  pointer-events: none;
}

.static-panel-hero > * {
  position: relative;
  z-index: 1;
}

.static-hero-home::before {
  background-image: url("assets/pictures/force-h3x.jpg");
}

.static-hero-solutions::before {
  background-image: url("assets/pictures/fidus.jpg");
}

.static-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.static-card {
  background: #fff;
  border: 1px solid #dbe4ee;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.static-card-image {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #e2e8f0;
}

.static-card-body {
  padding: 16px;
  font: 15px/1.6 Arial, sans-serif;
  color: #0f172a;
}

.static-card-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.3;
}

.static-card-body p {
  margin: 0;
}

.static-panel h1,
.static-panel h2 {
  margin: 0 0 10px;
  font-weight: 700;
  color: #0f172a;
}

.static-panel p {
  margin: 0 0 12px;
}

.static-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.static-button {
  display: inline-block;
  padding: 11px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.static-button-primary {
  background: #0f172a;
  color: #fff;
}

.static-button-secondary {
  background: #e2e8f0;
  color: #0f172a;
}

.static-list {
  margin: 12px 0 0;
  padding-left: 18px;
}

.static-list li {
  margin: 6px 0;
}

@media (max-width: 640px) {
  .static-panel {
    padding: 18px;
  }

  .static-card-grid {
    grid-template-columns: 1fr;
  }

  .static-actions {
    flex-direction: column;
  }

  .static-button {
    text-align: center;
  }
}
