/* ── Allgemeine Card ──────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px;
}

/* ── Feature Card (Icon + Titel + Text) ──────────────────────────── */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-card svg {
  width: 32px;
  height: 32px;
  color: var(--at-blue);
  stroke-width: 1.5;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.005em;
  line-height: 1.2;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Produkt-Card (Startseite) ───────────────────────────────────── */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}

.product-card:hover { border-color: var(--border-strong); }

.product-card .accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.product-card .accent-bar.blue { background: var(--at-blue); }
.product-card .accent-bar.red  { background: var(--at-red); }

.product-card .tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-secondary);
}

.product-card h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1;
  color: var(--text-primary);
}

.product-card .tagline {
  font-size: 16px;
  color: var(--at-blue);
  font-weight: 400;
  line-height: 1.4;
}

.product-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.product-card-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.product-card-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.product-card-links a:hover { color: var(--at-red); }

.product-card-links a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ── Commitment / USP Bar ────────────────────────────────────────── */
.commit {
  background: var(--bg-surface);
  padding: 40px var(--px);
  border-bottom: 1px solid var(--border);
}

.commit-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.commit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.commit-item svg {
  width: 28px;
  height: 28px;
  color: var(--at-blue);
  stroke-width: 1.5;
  flex-shrink: 0;
}

.commit-item i {
  font-size: 22px;
  color: var(--at-blue);
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  margin-top: 2px;
}

.commit-item .t {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 4px;
}

.commit-item .d {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .commit-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .commit { padding: 32px var(--px-sm); }
  .commit-inner { grid-template-columns: 1fr; gap: 24px; }
}
