/* ================================================
   PREISE PAGE — Pricing section styles
   ================================================ */

/* HERO */
.preis-hero {
  padding: 80px 48px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.preis-hero-inner { max-width: 680px; }
.preis-hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.preis-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.preis-hero p {
  font-size: 18px;
  color: var(--fg2);
  line-height: 1.6;
  max-width: 560px;
}

/* PAKETE GRID */
.pakete {
  padding: 0 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.pakete-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.paket-card {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.paket-featured {
  border-color: var(--lime-border);
  background: linear-gradient(160deg, rgba(200,255,0,0.06) 0%, var(--bg2) 100%);
  box-shadow: 0 0 0 1px rgba(200,255,0,0.15), 0 20px 60px rgba(0,0,0,0.4);
}
.paket-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}
.paket-header { margin-bottom: 20px; }
.paket-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}
.paket-stage {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg2);
}
.paket-price { margin-bottom: 16px; }
.paket-setup {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}
.paket-setup-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--fg2);
}
.paket-monthly {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}
.paket-period { font-size: 15px; font-weight: 400; }
.paket-desc {
  font-size: 14px;
  color: var(--fg2);
  line-height: 1.6;
  margin-bottom: 24px;
}
.paket-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.paket-features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.paket-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.paket-cta { margin-top: auto; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover {
  background: #d4ff33;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

/* VERGLEICH */
.vergleich {
  padding: 60px 48px 80px;
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.vergleich-inner { max-width: 1200px; margin: 0 auto; }
.vergleich h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 36px;
}
.vergleich-table-wrap { overflow-x: auto; }
.vergleich-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.vergleich-table th {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 0 20px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.vergleich-table th:not(:first-child) { text-align: center; }
.th-featured {
  color: var(--accent);
  position: relative;
}
.th-name { display: block; }
.th-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--fg2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}
.vergleich-table td {
  font-size: 14px;
  color: var(--fg);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.vergleich-table td:not(:first-child) { text-align: center; }
.td-featured { color: var(--accent); font-weight: 600; }
.tr-section td {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg2);
  padding-top: 28px;
}

/* FAQ */
.faq-section { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.faq-inner { max-width: 1200px; }
.faq-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 48px;
}
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.faq-item {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.faq-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}
.faq-item p {
  font-size: 14px;
  color: var(--fg2);
  line-height: 1.7;
}

/* CTA */
.cta-section { padding: 0 48px 80px; max-width: 1200px; margin: 0 auto; }
.cta-inner { max-width: 800px; }
.cta-box {
  background: linear-gradient(135deg, rgba(200,255,0,0.06) 0%, var(--bg2) 100%);
  border: 1px solid var(--lime-border);
  border-radius: var(--radius);
  padding: 48px 56px;
  text-align: center;
}
.cta-box h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-box p {
  font-size: 16px;
  color: var(--fg2);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-actions { display: flex; justify-content: center; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pakete-grid { grid-template-columns: 1fr; gap: 16px; }
  .paket-featured { order: -1; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .preis-hero, .pakete, .vergleich, .faq-section, .cta-section { padding-left: 24px; padding-right: 24px; }
  .cta-box { padding: 36px 28px; }
  .vergleich-table { font-size: 13px; }
  .vergleich-table th, .vergleich-table td { padding: 12px 14px; }
}
@media (max-width: 480px) {
  .paket-monthly { font-size: 26px; }
}