/* Solutions page — property type tabs */
.tab-row.centered {
  justify-content: center;
  margin-bottom: 32px;
}

[data-tab-panel] {
  display: none;
}

[data-tab-panel].active {
  display: block;
}

.property-panel {
  border: 1px solid color-mix(in srgb, var(--panel-color, #0ea5e9) 14%, transparent);
  border-radius: 16px;
  padding: 33px;
  background: linear-gradient(167deg, color-mix(in srgb, var(--panel-color, #0ea5e9) 5%, transparent) 0%, rgba(8, 13, 28, 0.72) 100%);
}

.property-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 900px) {
  .property-grid {
    grid-template-columns: 1fr;
  }
}

.property-top {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.property-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--panel-color, #0ea5e9) 13%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.property-icon img {
  width: 28px;
  height: 28px;
}

.property-top h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-text);
  margin-bottom: 2px;
}

.property-top .property-subtitle {
  font-size: 14px;
  color: var(--panel-color, var(--color-accent));
}

.property-left p {
  font-size: 14px;
  line-height: 1.625;
  color: var(--color-text-muted-40);
  margin-bottom: 24px;
}

.focus-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-text-muted-40);
  margin-bottom: 16px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(232, 240, 255, 0.7);
}

.check-list img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Workflow steps constrained width */
.steps.workflow-steps {
  max-width: 896px;
  margin: 0 auto;
  width: 100%;
}

/* Centered button rows */
.button-row.centered {
  justify-content: center;
}
