/* OztecTV Kaufseite — Markenfarben aus der App (tokens.css) */
:root {
  --brand: #22c55e;
  --brand-hover: #16a34a;
  --bg: #0b0f14;
  --bg-elevated: #1a2230;
  --bg-card: #141b26;
  --text: #f5f7fa;
  --text-dim: #9fb0c0;
  --border: #263244;
  --radius: 14px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(11, 15, 20, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; gap: 24px; height: 64px; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--text); letter-spacing: 0.5px; }
.logo b { color: var(--brand); font-weight: 700; }
.nav-links { display: flex; gap: 20px; margin-left: auto; align-items: center; }
.nav-links a { color: var(--text-dim); font-size: 0.95rem; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.lang-btn {
  background: var(--bg-elevated); color: var(--text-dim);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 6px 12px; cursor: pointer; font-size: 0.85rem;
}
.lang-btn:hover { color: var(--text); border-color: var(--brand); }

/* Hero */
.hero { padding: 88px 0 56px; text-align: center; }
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin: 0 0 16px; line-height: 1.15; text-wrap: balance;
}
.hero h1 em { color: var(--brand); font-style: normal; }
.hero .sub { color: var(--text-dim); font-size: 1.2rem; max-width: 640px; margin: 0 auto 12px; }
.platforms { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 24px 0 32px; }
.platform {
  border: 1px solid var(--border); border-radius: 999px;
  padding: 6px 16px; color: var(--text-dim); font-size: 0.9rem; background: var(--bg-card);
}
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; border-radius: 10px; padding: 13px 28px;
  font-size: 1.05rem; font-weight: 600; cursor: pointer; border: none;
}
.btn-primary { background: var(--brand); color: #06220f; }
.btn-primary:hover { background: var(--brand-hover); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--brand); text-decoration: none; }

/* Kernsatz-Banner (wichtig für Zahlungsanbieter-Prüfung) — komplett grüner Rand */
.notice {
  background: var(--bg-elevated); border: 2px solid var(--brand);
  border-radius: 10px;
  padding: 16px 22px; max-width: 800px; margin: 0 auto 26px;
  color: var(--text-dim); font-size: 0.98rem; text-align: left;
}
.notice strong { color: var(--text); }
.ver-badge {
  display: inline-flex; align-items: center;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 18px;
  color: var(--text-dim); font-size: 0.95rem; font-weight: 600;
}

/* Sections */
section { padding: 64px 0; }
h2 { font-size: 1.9rem; text-align: center; margin: 0 0 40px; text-wrap: balance; }

/* Features */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.feature {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
}
.feature .icon { font-size: 1.6rem; margin-bottom: 8px; }
.feature h3 { margin: 0 0 6px; font-size: 1.05rem; }
.feature p { margin: 0; color: var(--text-dim); font-size: 0.94rem; }

.tag-exclusive {
  display: inline-block; background: var(--brand); color: #06220f;
  font-size: 0.68rem; font-weight: 700; border-radius: 999px;
  padding: 2px 9px; margin-left: 8px; vertical-align: middle; letter-spacing: 0.3px;
}

/* App-Ansichten (Demo-Mockups) */
.shots { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; }
.shot { margin: 0; }
.shot img {
  width: 100%; aspect-ratio: 16 / 9; display: block;
  border: 1px solid var(--border); border-radius: 12px; background: var(--bg-card);
}
.shot figcaption { color: var(--text-dim); font-size: 0.87rem; margin-top: 10px; text-align: center; }
.shots-note { text-align: center; color: var(--text-dim); font-size: 0.82rem; margin-top: 18px; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; align-items: stretch; }
.plan {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 22px;
  display: flex; flex-direction: column; text-align: center; position: relative;
}
.plan.best { border-color: var(--brand); }
.plan .badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #06220f; font-size: 0.78rem; font-weight: 700;
  border-radius: 999px; padding: 3px 12px; white-space: nowrap;
}
.plan h3 { margin: 0 0 4px; font-size: 1.1rem; }
.plan .devices { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 14px; }
.plan .price { font-size: 2.3rem; font-weight: 700; }
.plan .price small { font-size: 1rem; color: var(--text-dim); font-weight: 400; }
.plan .per { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 18px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 22px; color: var(--text-dim); font-size: 0.92rem; text-align: left; }
.plan li { padding: 4px 0 4px 24px; position: relative; }
.plan li::before { content: "✓"; color: var(--brand); position: absolute; left: 4px; }
.plan .btn { margin-top: auto; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }
.pricing-note { text-align: center; color: var(--text-dim); font-size: 0.85rem; margin-top: 18px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; counter-reset: step; }
.step { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.step::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--brand); color: #06220f; font-weight: 700; margin-bottom: 10px;
}
.step h3 { margin: 0 0 6px; font-size: 1.02rem; }
.step p { margin: 0; color: var(--text-dim); font-size: 0.93rem; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 20px; margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--text-dim); margin: 10px 0 0; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 36px 0; color: var(--text-dim); font-size: 0.9rem; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; justify-content: space-between; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--text-dim); }
.footer-core { margin-top: 14px; font-size: 0.85rem; }

/* Rechtsseiten */
.legal { max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; }
.legal h1 { font-size: 1.9rem; }
.legal h2 { text-align: left; font-size: 1.25rem; margin: 32px 0 10px; }
.legal p, .legal li { color: var(--text-dim); }
.legal strong { color: var(--text); }

@media (max-width: 640px) {
  .nav-links a:not(.lang-btn) { display: none; }
  .hero { padding: 56px 0 40px; }
}
