
 
/* =========================
   PREISE PAGE
========================= */
 
.preise-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(255, 180, 0, 0.05), transparent 30%),
    linear-gradient(180deg, #151515 0%, #101010 100%);
  padding-bottom: 80px;
}
 
/* =========================
   PAGE HEADER
========================= */
 
.page-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 30px;
  text-align: left;
}
 
.page-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: #f5b400;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
 
.page-header h1 {
  margin: 0 0 10px;
  font-size: 2.8rem;
  line-height: 1.1;
  font-weight: 800;
  color: #f3f3f3;
}
 
.page-header p {
  margin: 0;
  color: #d9d9d9;
  font-size: 1rem;
  line-height: 1.5;
}
 
/* =========================
   GRID
========================= */
 
.preise-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
 
/* =========================
   CARD
========================= */
 
.preis-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 460px;
  background: linear-gradient(180deg, rgba(40, 43, 48, 0.96), rgba(25, 27, 31, 0.96));
  border-top: 3px solid #f5b400;
  border-radius: 4px;
  padding: 26px 22px 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
 
.preis-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
}
 
.preis-card-highlight {
  box-shadow:
    0 0 0 1px rgba(245, 180, 0, 0.22),
    0 12px 28px rgba(0, 0, 0, 0.22);
}
 
.preis-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-block;
  padding: 6px 10px;
  background: #f5b400;
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 999px;
}
 
/* =========================
   HEAD
========================= */
 
.preis-head {
  margin-bottom: 22px;
}
 
.preis-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: #f5b400;
  font-size: 0.95rem;
  font-weight: 800;
}
 
.preis-head h2 {
  margin: 0 0 12px;
  color: #f3f3f3;
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 800;
}
 
.preis-head p {
  margin: 0;
  color: #dcdcdc;
  font-size: 1rem;
  line-height: 1.6;
}
 
/* =========================
   LISTE
========================= */
 
.preis-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
 
.preis-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: #f0f0f0;
  font-size: 1rem;
  line-height: 1.45;
}
 
.preis-list li:last-child {
  border-bottom: 0;
}
 
.preis-list strong {
  color: #f5b400;
  font-size: 1.05rem;
  white-space: nowrap;
}
 
.preis-note {
  margin-top: 18px;
  color: #f0f0f0;
  font-size: 0.98rem;
  line-height: 1.6;
}
 
/* =========================
   BUTTONS
========================= */
 
.preis-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 22px;
  border-radius: 12px;
  background: #f5b400;
  color: #000;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 800;
  text-align: center;
  transition: 0.25s ease;
}
 
.preis-btn:hover {
  background: #ffd24d;
}
 
.preis-btn-outline {
  background: transparent;
  color: #f5b400;
  border: 2px solid #f5b400;
}
 
.preis-btn-outline:hover {
  background: #f5b400;
  color: #000;
}
 
/* =========================
   INFO BOX
========================= */
 
.preise-info {
  max-width: 1100px;
  margin: 50px auto 0;
  padding: 0 20px;
}
 
.preise-info-box {
  background: linear-gradient(180deg, rgba(40, 43, 48, 0.96), rgba(25, 27, 31, 0.96));
  border-top: 3px solid #f5b400;
  padding: 28px 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
 
.preise-info-box h2 {
  margin: 0 0 14px;
  color: #f5b400;
  font-size: 2rem;
  font-weight: 800;
}
 
.preise-info-box p {
  margin: 0 0 20px;
  color: #f0f0f0;
  font-size: 1rem;
  line-height: 1.6;
}
 
.preise-info-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
 
.preise-link {
  color: #f5b400;
  text-decoration: none;
  font-weight: 700;
}
 
.preise-link:hover {
  text-decoration: underline;
}
 
/* =========================
   TABLET
========================= */
 
@media (max-width: 1200px) {
  .preise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
 
  .page-header h1 {
    font-size: 2.4rem;
  }
 
  .preis-head h2,
  .preise-info-box h2 {
    font-size: 1.6rem;
  }
}
 
/* =========================
   MOBILE
========================= */
 
@media (max-width: 900px) {
  .page-header {
    padding: 34px 16px 20px;
    text-align: center;
  }
 
  .page-header h1 {
    font-size: 2rem;
  }
 
  .page-header p {
    font-size: 0.95rem;
  }
 
  .preise-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 10px 14px 0;
  }
 
  .preis-card {
    min-height: auto;
    padding: 22px 18px 18px;
  }
 
  .preis-head h2,
  .preise-info-box h2 {
    font-size: 1.45rem;
  }
 
  .preis-head p,
  .preis-list li,
  .preis-note,
  .preise-info-box p {
    font-size: 0.95rem;
  }
 
  .preis-list li {
    gap: 10px;
  }
 
  .preis-list strong {
    font-size: 1rem;
  }
 
  .preis-btn {
    width: 100%;
    box-sizing: border-box;
  }
 
  .preise-info {
    margin-top: 28px;
    padding: 0 14px;
  }
 
  .preise-info-box {
    padding: 20px 16px;
  }
 
  .preise-info-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
 