# Enterprise zweispaltig (C 067)

Kategorie: Cards  
Tags: pricing, enterprise, feature-list, cta, light, gradient-top  
Seite: https://designforai.dev/de/snippet/card-067

## Prompt

Erstelle eine 340px Enterprise-Pricing-Card: weiß, 1px #e5e7eb Rahmen, 18px Radius, 26px Padding, mit einem 5px Gradient-Streifen entlang der Oberkante (90deg #0ea5e9, #8b5cf6, #ec4899). Kopfzeile: 20px Planname "Enterprise" links, 26px extra-bold "Custom" rechts. Eine 13px #6b7280 Beschreibung, dann sechs Features in einem zweispaltigen Grid (13px, jedes mit einem 10px Gradient-Punkt als Bullet). Der CTA "Talk to sales" ist ein umrandeter Button in voller Breite mit 2px #111827 Rahmen, der sich beim Hover schwarz mit weißem Text füllt.

## HTML

```html
<article class="card-067">
  <header><h3>Enterprise</h3><span>Custom</span></header>
  <p>For teams that need controls, contracts and a human on call.</p>
  <ul><li>SSO and SCIM</li><li>Audit logs</li><li>99.99% SLA</li><li>Data residency</li><li>Custom roles</li><li>Dedicated CSM</li></ul>
  <a href="#">Talk to sales</a>
</article>
```

## CSS

```css
.card-067 {
  position: relative;
  width: 340px;
  padding: 26px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  font-family: system-ui,sans-serif;
  color: #111827
}
.card-067::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg,#0ea5e9,#8b5cf6,#ec4899)
}
.card-067 header {
  display: flex;
  justify-content: space-between;
  align-items: baseline
}
.card-067 h3 {
  margin: 0;
  font-size: 20px
}
.card-067 header span {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.02em
}
.card-067 p {
  margin: 8px 0 18px;
  font-size: 13px;
  line-height: 1.5;
  color: #6b7280
}
.card-067 ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  font-size: 13px
}
.card-067 li {
  padding-left: 18px;
  position: relative
}
.card-067 li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg,#0ea5e9,#8b5cf6)
}
.card-067 a {
  display: block;
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  border: 2px solid #111827;
  color: #111827;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background .15s,color .15s
}
.card-067 a:hover {
  background: #111827;
  color: #fff
}
.card-067 :is(a,button,input,select,textarea):focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
```
