/* =========================
   style-premium.css
   Premium (High-Ticket)
   Accent2: #A78BFA (Purple), Badge: #FBBF24 (Gold), CTA: #22C55E (Green)
========================= */

/* =========================
   Global
========================= */
* { box-sizing: border-box; }
a { text-decoration: none; }
html { scroll-behavior: smooth; }

:root{
  --bg: #0B1020;          /* Deep Navy */
  --bg2:#070a14;
  --surface:#10183A;      /* Cards */
  --surface2:#0f1b2e;
  --text:#EAF1FF;
  --muted:#A8B3C7;
  --border: rgba(255,255,255,0.12);

  --accent2:#A78BFA;      /* Premium Purple */
  --gold:#FBBF24;         /* Gold badge */
  --primary:#22C55E;      /* CTA Green */
  --primary2:#34d399;     /* CTA Gradient end */
  --warn:#FBBF24;
  --danger:#fb7185;

  --shadow: 0 18px 60px rgba(0,0,0,0.45);
}

/* =========================
   REPORT (dein Performance-Report Look)
========================= */
body.report {
  font-family: Arial, sans-serif;
  margin: 0 auto;
  padding: 0;
  background-color: #f4f4f9;
  color: #333;
  width: 90%;
  max-width: 1200px;
}

.report h1 {
  background-color: #2c3e50;
  color: white;
  padding: 20px 0;
  margin: 0;
  text-align: center;
  font-size: 2.5em;
}

.report h2 {
  color: #34495e;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.report table {
  width: 70%;
  margin: 20px auto;
  border-collapse: collapse;
  border: 1px solid #ddd;
  background-color: #fff;
}

.report table th {
  background-color: #34495e;
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 1em;
}

.report table td {
  padding: 10px;
  text-align: center;
  font-size: 0.9em;
  border: 1px solid #ddd;
}

.report table tr:nth-child(even) { background-color: #f9f9f9; }
.report table tr:hover { background-color: #f1f1f1; }

.report img {
  display: block;
  margin: 0 auto;
  border: 2px solid #ddd;
  border-radius: 6px;
  max-width: 100%;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.12);
}

.report p {
  text-align: center;
  font-size: 1em;
  margin: 10px auto;
  max-width: 90%;
  line-height: 1.6;
}

/* Report-Topbar */
.report-topbar {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.report-topbar a { color: #2c3e50; font-weight: 600; }
.report-topbar .right { display: flex; gap: 10px; align-items: center; }
.report-topbar .btn { padding: 8px 12px; border-radius: 10px; border: 1px solid #d7dde6; background: #ffffff; }
.report-topbar .btn:hover { background: #f3f5f9; }

/* =========================
   LANDING + LOGIN
========================= */
body.landing, body.login {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(167, 139, 250, .22), transparent 58%),
    radial-gradient(750px 480px at 85% 22%, rgba(34,197,94,.14), transparent 58%),
    radial-gradient(950px 520px at 50% 100%, rgba(251,191,36,.10), transparent 60%),
    var(--bg);
}

.container { width: min(1100px, 92%); margin: 0 auto; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11,16,32,0.60);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-row { display:flex; align-items:center; justify-content: space-between; padding: 14px 0; }
.brand { display:flex; align-items: baseline; gap: 10px; font-weight: 800; letter-spacing: .2px; }
.brand small { opacity: .72; font-weight: 600; }
.logo-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: linear-gradient(90deg, var(--accent2), var(--gold));
  box-shadow: 0 0 26px rgba(167,139,250,.35);
}
.nav-links { display:flex; gap: 14px; align-items:center; }
.nav-links a {
  color: rgba(234,241,255,.86);
  font-weight: 650;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
}
.nav-links a:hover { background: rgba(255,255,255,0.06); }
.nav-login { border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.04); }

/* HERO */
.hero { padding: 56px 0 24px; }
.hero-grid { display:grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: start; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.pill{
  display:inline-flex; align-items:center; gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 650;
  font-size: 13px;
  color: rgba(234,241,255,.9);
}

.hero h1 { margin: 14px 0 10px; line-height: 1.06; font-size: 46px; }
@media (max-width: 520px) { .hero h1 { font-size: 36px; } }

.grad{
  background: linear-gradient(90deg, var(--gold), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub{
  margin: 0 0 18px;
  color: rgba(234,241,255,.80);
  font-size: 16px;
  line-height: 1.6;
  max-width: 58ch;
}

.hero-cta { display:flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap: 8px;
  padding: 12px 14px; border-radius: 14px;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(234,241,255,.92);
  background: rgba(255,255,255,0.06);
  transition: transform .12s ease, background .12s ease;
}
.btn:hover { transform: translateY(-1px); background: rgba(255,255,255,0.08); }

.btn.primary{
  border: 0;
  background: linear-gradient(90deg, var(--primary), var(--primary2));
  color: #06101b;
}
.btn.primary:hover { filter: brightness(1.05); }
.btn.ghost { background: rgba(255,255,255,0.04); }

.hero-proof{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
@media (max-width: 520px) { .hero-proof { grid-template-columns: 1fr; } }

.proof-card{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(16,24,58,.62);
}
.proof-k{ font-size: 20px; font-weight: 900; }
.proof-t{ color: rgba(234,241,255,.75); font-weight: 650; font-size: 13px; }

/* Right column mock */
.mock{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(16,24,58,.58);
  overflow:hidden;
}
.mock-top{ display:flex; align-items:center; gap:8px; padding: 12px 12px; border-bottom: 1px solid rgba(255,255,255,0.10); }
.dot{ width:10px; height: 10px; border-radius: 50%; opacity: .9; }
.dot.r{ background: var(--danger); } .dot.y{ background: var(--gold); } .dot.g{ background: var(--primary); }
.mock-title{ margin-left: 6px; font-weight: 800; color: rgba(234,241,255,.85); font-size: 13px; }
.mock-body{ padding: 14px; }
.mock-line{ padding: 8px 0; color: rgba(234,241,255,.8); border-bottom: 1px dashed rgba(255,255,255,0.10); }
.mock-line.strong{ font-weight: 900; color: rgba(234,241,255,.95); }
.mock-foot{ padding-top: 12px; color: rgba(234,241,255,.65); font-size: 12px; }

.note{
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(251,191,36,0.22);
  background: rgba(251,191,36,0.10);
  color: rgba(234,241,255,.85);
}

/* Sections */
.section { padding: 40px 0; }
.section.soft { background: rgba(255,255,255,0.03); border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.section h2 { text-align:center; margin:0 0 18px; font-size: 28px; }

.grid3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 980px) { .grid3 { grid-template-columns: 1fr; } }

.card{
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(16,24,58,.58);
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0; color: rgba(234,241,255,.78); line-height: 1.6; }

.steps{ display:grid; grid-template-columns: repeat(4, 1fr); gap:10px; }
@media (max-width: 980px) { .steps { grid-template-columns: 1fr; } }

.step{
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(16,24,58,.58);
  display:flex; gap: 12px; align-items:flex-start;
}
.step-n{
  width: 32px; height: 32px;
  border-radius: 12px;
  display:grid; place-items:center;
  font-weight: 900;
  color: #06101b;
  background: linear-gradient(90deg, var(--accent2), var(--gold));
}

/* Pricing */
.price-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 10px; }
@media (max-width: 980px) { .price-grid { grid-template-columns: 1fr; } }

.price-card{
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(16,24,58,.58);
  position: relative;
}
.price-card.featured{
  border: 1px solid rgba(251,191,36,0.60);
  box-shadow: 0 0 0 1px rgba(251,191,36,0.15), 0 30px 80px rgba(0,0,0,0.35);
}
.price-card .tag{
  position:absolute; top:14px; right:14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  color: #06101b;
  background: linear-gradient(90deg, var(--gold), #fde68a);
}
.price-head{ text-align:center; }
.price-name{ font-weight: 900; opacity: .9; }
.price-val{ font-size: 40px; font-weight: 950; margin: 10px 0 2px; }
.price-sub{ color: rgba(234,241,255,.70); font-weight: 650; }
.price-actions{ display:grid; gap:10px; margin-top: 14px; }

.faq{
  margin-top: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(16,24,58,.58);
  overflow:hidden;
}
.faq-q{
  padding: 14px 16px;
  font-weight: 900;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.faq-a{
  padding: 14px 16px;
  color: rgba(234,241,255,.78);
  line-height: 1.6;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.faq-a:last-child { border-bottom: 0; }

.disclaimer{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(167,139,250,0.22);
  background: rgba(167,139,250,0.10);
  color: rgba(234,241,255,.85);
}

/* Footer */
.footer{ padding: 22px 0 30px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-row{ display:flex; justify-content: space-between; align-items:center; gap:12px; }
.footer-links{ display:flex; gap:12px; }
.footer-links a{ color: rgba(234,241,255,.78); font-weight: 700; }
.footer-links a:hover{ color: rgba(234,241,255,.95); }

/* LOGIN */
.login-wrap{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 0;
  gap: 20px; /* <- Abstand zwischen lang-switch und login-card */
}
/* margin am lang-switch entfernen */
.lang-switch{
  margin: 0;
}
.login-back{
  position:absolute; top:18px; left:18px;
  color: rgba(234,241,255,.85);
  font-weight: 800;
}
.login-card{
  width: min(460px, 92%);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(16,24,58,.58);
  padding: 18px;
}
.login-brand{ text-align:center; padding: 10px 0 14px; }
.login-badge{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.login-card h1{ margin: 10px 0 2px; font-size: 26px; }
.login-card p{ margin:0; opacity:.75; }

.login-card form{ display:grid; gap: 10px; margin-top: 10px; }
.login-card label{ font-weight: 800; font-size: 13px; opacity: .9; }
.login-card input{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(11,16,32,0.55);
  color: rgba(234,241,255,.92);
  outline: none;
}
.login-card input:focus{
  border-color: rgba(167,139,250,0.85);
  box-shadow: 0 0 0 3px rgba(167,139,250,0.18);
}
.login-card button{
  margin-top: 4px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 0;
  font-weight: 950;
  cursor: pointer;
  color: #06101b;
  background: linear-gradient(90deg, var(--primary), var(--primary2));
}
.login-card button:hover{ filter: brightness(1.05); }

.login-error{
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(248,113,113,0.45);
  background: rgba(248,113,113,0.10);
  color: rgba(234,241,255,.92);
  font-weight: 700;
}
.login-hint{
  margin-top: 12px;
  opacity: .7;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

/* Cookie Popup (mittig, hell) */
body.landing #cookie-popup{
  position: fixed !important;
  left: 50% !important;
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;

  width: 700px;
  max-width: calc(100% - 24px);

  background: rgba(35, 40, 55, 0.98) !important;  /* heller */
  color: rgba(234,241,255,.95) !important;

  padding: 18px;
  text-align: left;

  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 10px 40px rgba(0,0,0,.55);
  z-index: 1000;
}

body.landing #cookie-popup .cookie-title{
  font-weight: 800;
  margin-bottom: 8px;
}

body.landing #cookie-popup .cookie-text{
  opacity: .95;
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 12px;
}

body.landing #cookie-popup .cookie-actions{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:14px;
}

/* Buttons: Gold-Style behalten */
body.landing #cookie-popup button{
  background: linear-gradient(90deg, var(--gold), #fde68a);
  color: #06101b;
  border: none;
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
  margin-left: 0 !important;
  border-radius: 12px;
  font-weight: 900;
}
body.landing #cookie-popup button:hover{
  filter: brightness(1.05);
}

/* Overlay hinter dem Cookie Banner */
#cookie-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 999;
  display: none;
}
body.landing #cookie-popup .cookie-title{
  text-align: center;
}

body.landing #cookie-popup .cookie-text{
  text-align: center;
}

body.landing #cookie-accept-all{
  background: #22c55e !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset,
              0 6px 18px rgba(34,197,94,.35);
}

/* Cookie Modal: per Klasse öffnen */
/* Cookie Settings Modal (muss FIXED + hohes z-index haben) */
#cookie-modal{
  display:none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 2000;
  padding: 16px;
}
#cookie-modal.is-open{
  display:block !important; /* überschreibt inline display:none */
}

.cookie-modal-card{
  max-width: 640px;
  margin: 8vh auto 0;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0,0,0,.55);
  overflow: hidden;
}
.cookie-modal-head{
  display:flex; justify-content:space-between; align-items:center;
  padding:14px 16px; border-bottom:1px solid rgba(255,255,255,.12);
}
.cookie-modal-title{ font-weight:800; }
.cookie-modal-close{ background:transparent; color:#fff; border:0; font-size:26px; cursor:pointer; }
.cookie-modal-body{ padding:16px; }
.cookie-row{
  display:flex; justify-content:space-between; gap:14px;
  padding:12px; border:1px solid rgba(255,255,255,.10);
  border-radius:10px; margin-bottom:10px;
}
.cookie-modal-actions{ padding:14px 16px; border-top:1px solid rgba(255,255,255,.12); text-align:right; }


/* optional: Banner ausblenden wenn Modal offen */
#cookie-popup.is-hidden{ display:none !important; }

.img-modal{
  display:none;
  position:fixed;
  z-index:9999;
  left:0; top:0;
  width:100%; height:100%;
  background:rgba(0,0,0,.85);
  padding:40px 20px;
  box-sizing:border-box;
}

.img-modal-content{
  display:block;
  max-width:95vw;
  max-height:85vh;
  margin:0 auto;
  border-radius:10px;
}

.img-modal-close{
  position:absolute;
  top:10px;
  right:20px;
  font-size:40px;
  color:#fff;
  cursor:pointer;
  line-height:1;
}

.img-modal-caption{
  color:#fff;
  text-align:center;
  margin-top:12px;
  font-size:14px;
  opacity:.9;
}


/* Pagination */
.pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin: 10px auto 22px;
}
.pagination button{
  background:#0b1220;
  color:#fff;
  border:0;
  border-radius:10px;
  padding:8px 12px;
  cursor:pointer;
  font-weight:700;
}
.pagination button[disabled]{ opacity:.35; cursor:not-allowed; }
.pagination button.active{ background:#34495e; }
.pagination .dots{ padding:0 4px; opacity:.6; }

.tv-full{
  grid-column: 1 / -1;     /* spannt über alle 3 Spalten */
  width: 100%;
  height: 650px;           /* wichtig, sonst oft zu klein */
}

#tradingview_fe81e1{
  width: 100%;
  height: 100%;
}
