/* ============================================================
   CODEFINDER007 — Premium Page Styles
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.premium-hero {
  padding: 120px 2rem 70px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.premium-hero-inner { max-width: 720px; margin: 0 auto; }

.premium-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--border-bright);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.45rem 1.4rem;
  border-radius: 50px;
  margin-bottom: 1.8rem;
}

.premium-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1.3rem;
}

.premium-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 2rem;
}
.premium-sub strong { color: var(--gold-light); }

.hero-btns { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }

.hero-cta {
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
}

.hero-sub-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── AdSense ──────────────────────────────────────────────── */
.adsense-container {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.adsense-placeholder {
  background: rgba(201,168,76,0.05);
  border: 1px dashed rgba(201,168,76,0.3);
  border-radius: var(--radius);
  padding: 1.2rem 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* ── Advantages Grid ──────────────────────────────────────── */
.advantages-section { position: relative; z-index: 1; }

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 2.5rem auto 0;
}
@media (max-width: 680px) {
  .advantages-grid { grid-template-columns: 1fr; }
}

.advantage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: transform var(--transition), border-color var(--transition);
}
.advantage-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
}

.advantage-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.advantage-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 0.7rem;
}

.advantage-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.advantage-card p strong { color: var(--text-main); }

.advantage-compare {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  border-top: 1px solid var(--border);
  padding-top: 0.8rem;
}
.compare-free  { color: var(--text-muted); }
.compare-premium { color: var(--gold-light); font-weight: 600; }

/* ── Comparison Grid ──────────────────────────────────────── */
.comparison-section { position: relative; z-index: 1; }

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 820px;
  margin: 2.5rem auto 0;
}
@media (max-width: 650px) {
  .comparison-grid { grid-template-columns: 1fr; }
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.plan-card:hover { transform: translateY(-4px); }

.premium-card {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(201,168,76,0.15);
}

.plan-bestseller {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #050810;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-header { text-align: center; }
.plan-icon   { font-size: 2.2rem; margin-bottom: 0.5rem; }

.plan-name {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.plan-price {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}
.plan-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
}
.plan-price-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
.plan-features li         { font-size: 0.87rem; color: var(--text-muted); line-height: 1.5; }
.plan-features li.yes     { color: var(--text-main); }
.plan-features li.no      { opacity: 0.4; }
.plan-features li.gold    { color: var(--gold-light); }

.plan-btn {
  width: 100%;
  text-align: center;
  display: block;
  padding: 0.9rem 1.5rem;
}

.plan-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

/* ── Rechnung / Math ──────────────────────────────────────── */
.math-section { position: relative; z-index: 1; }

.math-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 600px;
  margin: 2.5rem auto 2rem;
  flex-wrap: wrap;
}

.math-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2.5rem;
  text-align: center;
  flex: 1;
  min-width: 160px;
}
.math-card-gold { border-color: var(--gold); box-shadow: 0 0 20px rgba(201,168,76,0.12); }

.math-number {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}
.math-label { font-size: 0.82rem; color: var(--text-muted); }

.math-divider {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 700;
}

.math-text {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.math-text strong { color: var(--gold-light); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section { position: relative; z-index: 1; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 2.5rem auto 0;
}
@media (max-width: 650px) {
  .faq-grid { grid-template-columns: 1fr; }
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-bright); }

.faq-item h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.faq-item p  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }
.faq-item a  { color: var(--gold); }
.faq-item strong { color: var(--text-main); }

/* ── Finaler CTA ──────────────────────────────────────────── */
.cta-final {
  position: relative;
  z-index: 1;
  padding-bottom: 4rem;
}

.cta-final-inner {
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 40px rgba(201,168,76,0.12);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-icon  { font-size: 3rem; margin-bottom: 1rem; }

.cta-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-main);
  margin-bottom: 1rem;
}

.cta-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-btn {
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.cta-legal {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}
