.preise-simple {
  --primary: var(--site-primary);
  --primary-dark: var(--site-primary-dark);
  --text: var(--site-text);
  --muted: var(--site-muted);
  --line: var(--site-line);
  --bg: var(--site-bg);

  background: var(--bg);
  padding: 80px 20px;
}

.preise-simple-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.preise-simple section {
  margin-top: 52px;
}

.preise-simple section:first-child {
  margin-top: 0;
}

.preise-simple h2 {
  margin: 0 0 18px 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary-dark);
}

.preise-simple h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
}

.preise-simple p {
  margin: 0 0 16px 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
}

.preise-simple .intro {
  color: var(--muted);
}

.preise-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.preise-table-wrap {
  overflow-x: auto;
}

.preise-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.preise-table th,
.preise-table td {
  padding: 14px 10px;
  font-size: 15px;
  line-height: 1.6;
  border-top: 1px solid var(--line);
  vertical-align: top;
}

.preise-table thead th {
  border-top: none;
  color: var(--text);
  font-weight: 700;
  text-align: left;
}

.preise-table tbody tr:first-child td {
  border-top: 1px solid var(--line);
}

.preise-table td,
.preise-table th {
  text-align: left;
}

.preise-table .center {
  text-align: center;
}

.preise-table .price-main {
  color: var(--primary);
  font-weight: 700;
}

.preise-table .muted {
  color: var(--muted);
}

.preise-list {
  margin: 0;
  padding-left: 22px;
}

.preise-list li {
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.75;
}

.preise-facts {
  border-top: 1px solid var(--line);
}

.preise-fact {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.preise-fact strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 16px;
}

.preise-fact span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.preise-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}

.preise-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.preise-link:hover {
  text-decoration: underline;
}

.preise-cta {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.preise-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 22px;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.preise-btn:hover {
  background: var(--primary-dark);
  color: #ffffff;
}

@media (max-width: 768px) {
  .preise-simple {
    padding: 60px 16px;
  }

  .preise-simple h2 {
    font-size: 24px !important;
  }

  .preise-grid-2 {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .preise-table th,
  .preise-table td {
    font-size: 14px;
    padding: 12px 8px;
  }
}
