:root{
  --gold:#d8b46a;
  --gold-soft:#f1dca3;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --radius:22px;
  --shadow:0 30px 80px rgba(0,0,0,.55);
  --max:1200px;
}

/* RESET */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
html, body{margin:0;padding:0}
body{
  margin:0;
  font-family:"Segoe UI",system-ui,-apple-system,sans-serif;
  color:var(--text);
  background:
    linear-gradient(to bottom, rgba(0,0,0,.30), rgba(0,0,0,.92)),
    url("bg.jpg") center/cover no-repeat fixed;
  overflow-x:hidden;
}

/* Optional: falls du .page verwendest */
.page{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

/* Hintergrundlinien */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(216,180,106,0) 0px,
      rgba(216,180,106,0) 60px,
      rgba(216,180,106,.10) 74px,
      rgba(216,180,106,0) 110px
    );
  opacity:.22;
  z-index:0;
}

/* Layout */
.wrapper{
  position:relative;
  z-index:1;
  max-width:var(--max);
  margin:auto;
  padding:20px 18px 70px;
}

/* ================= GLAS BOX ================= */
.box{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.04));
  backdrop-filter: blur(16px) saturate(160%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.18),var(--shadow);
  position:relative;
  overflow:hidden;
}
.box::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 200px at 10% 0%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(500px 220px at 90% 30%, rgba(255,255,255,.12), transparent 60%);
}
.box > *{position:relative;z-index:1}

.pad{padding:22px}
.pad-lg{padding:28px}

/* ================= HEADER ================= */
header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  padding:10px 0 16px;
}
.brand img{
  width:320px;
  max-width:70vw;
  filter:drop-shadow(0 18px 40px rgba(0,0,0,.75));
}
.actions{display:flex;gap:12px;align-items:center;flex-wrap:wrap}

/* NAV */
nav{display:flex;gap:10px;flex-wrap:wrap}
nav a{
  color:#fff;
  text-decoration:none;
  font-weight:900;
  font-size:13px;
  padding:10px 12px;
  border-radius:14px;
  border:2px solid rgba(241,220,163,.65);
  background:rgba(0,0,0,.35);
}
nav a:hover{border-color:var(--gold-soft);color:var(--gold-soft)}

/* BUTTONS */
.btn{
  padding:12px 16px;
  border-radius:16px;
  border:2px solid rgba(241,220,163,.85);
  background:linear-gradient(135deg,rgba(241,220,163,.35),rgba(216,180,106,.15));
  color:white;
  font-weight:980;
  text-decoration:none;
  cursor:pointer;
}
.btn.dark{
  background:rgba(0,0,0,.45);
  border-color:rgba(255,255,255,.25);
}

/* ================= LANGUAGE BOX ================= */
.langbox{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 18px;
  border-radius:18px;
  border:2px solid rgba(241,220,163,.9);
  background:linear-gradient(180deg,rgba(255,255,255,.16),rgba(255,255,255,.06));
}
.langbox strong{font-size:14px}
.langbox small{font-size:12px;color:var(--muted);font-weight:900}

/* ================= ICONS ================= */
.icon{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--gold-soft);
}
.icon svg{width:22px;height:22px;fill:currentColor}

/* ================= TYPO ================= */
.kicker{
  color:var(--gold-soft);
  letter-spacing:.16em;
  font-weight:980;
  font-size:12px;
  text-transform:uppercase;
}
.h1{font-size:40px;line-height:1.05}
.sub{color:var(--muted);font-size:16px;line-height:1.65}
.section-title{margin:34px 0 14px;font-size:22px;color:var(--gold-soft)}

/* ================= LISTEN ================= */
.list{padding-left:18px;margin:10px 0}
.list li{margin:8px 0;color:rgba(255,255,255,.85)}

/* ================= GRIDS ================= */
.hero{display:grid;grid-template-columns:1.15fr .85fr;gap:16px}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.twoCol{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.pricing{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
@media(max-width:980px){
  .hero,.grid3,.twoCol,.pricing{grid-template-columns:1fr}
}

/* ================= CARDS ================= */
.card{
  padding:16px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.03));
}
.card h3{display:flex;gap:10px;color:var(--gold-soft)}
.card.extra{display:none;}

/* ================= PAKETE ================= */
.pricecard{
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.04));
}
.tag{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.3);
  color:var(--gold-soft);
  font-weight:900;
  font-size:12px;
}
.pname{font-weight:980}
.pprice{font-size:28px;font-weight:980;color:var(--gold-soft)}
.plist{padding-left:18px;color:var(--muted)}

/* ================= FORM ================= */
label{font-size:13px;font-weight:900;color:var(--muted)}
input,textarea,select{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.45);
  color:white;
  padding:12px;
}

/* =========================
   FOOTER – PREMIUM (unsere Änderungen)
========================= */
.footer-premium{
  margin-top:34px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.15);
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:14px;
  color:var(--muted);
  font-size:13px;
  align-items:flex-start;
}

.footer-left{
  display:flex;
  flex-direction:column;
  gap:10px;
  max-width:720px;
}

.footer-brand{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,.82);
}
.footer-brand strong{ color:rgba(255,255,255,.95); }
.footer-brand .dot{ color:rgba(241,220,163,.55); }

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.footer-links a{
  color:var(--gold-soft);
  text-decoration:none;
  font-weight:900;
  letter-spacing:.02em;
  position:relative;
  padding-bottom:2px;
  opacity:.92;
}
.footer-links a:hover{ opacity:1; }
.footer-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  height:2px;
  width:0;
  background:linear-gradient(90deg, rgba(241,220,163,.95), rgba(216,180,106,.15));
  border-radius:99px;
  transition:width .22s ease;
}
.footer-links a:hover::after{ width:100%; }

/* Rechtlicher Hinweis (integriert) */
.footer-legal{
  margin-top:10px;
  font-size:12px;
  line-height:1.55;
  color:rgba(255,255,255,.62);
  max-width:680px;
  letter-spacing:.01em;
}
.footer-legal::before{
  content:"ℹ︎ ";
  color:rgba(216,180,106,.75);
  font-weight:900;
}

/* RIGHT: Social + Logo */
.footer-right{
  display:flex;
  gap:16px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

/* SOCIAL BADGES */
.footer-premium .social{
  width:46px;
  height:46px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--gold-soft) !important; /* wichtig */
  text-decoration:none;

  border:1px solid rgba(241,220,163,.35);
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(0,0,0,.20));
  backdrop-filter: blur(10px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 18px 50px rgba(0,0,0,.45);
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.footer-premium .social svg{
  width:26px;
  height:26px;
  fill:currentColor !important;
  filter:drop-shadow(0 0 10px rgba(241,220,163,.20));
}
.footer-premium .social:hover{
  transform:translateY(-2px) scale(1.02);
  border-color:rgba(241,220,163,.75);
  box-shadow:
    0 0 26px rgba(241,220,163,.25),
    inset 0 1px 0 rgba(255,255,255,.22),
    0 22px 60px rgba(0,0,0,.55);
}
.footer-premium .social:active{ transform:translateY(-1px) scale(0.99); }

/* Footer Logo */
.footer-logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:18px;
  border:1px solid rgba(241,220,163,.45);
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(0,0,0,.26));
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.2),
    0 18px 50px rgba(0,0,0,.45);
  transition:.18s ease;
  text-decoration:none;
}
.footer-logo img{
  width:92px;
  height:auto;
  display:block;
  filter:drop-shadow(0 0 12px rgba(241,220,163,.35));
}
.footer-logo:hover{
  transform:translateY(-2px);
  border-color:rgba(241,220,163,.85);
  box-shadow:
    0 0 24px rgba(241,220,163,.22),
    inset 0 1px 0 rgba(255,255,255,.25),
    0 22px 60px rgba(0,0,0,.55);
}

/* Mobile */
@media(max-width:720px){
  .footer-premium{ align-items:flex-start; }
  .footer-right{
    width:100%;
    justify-content:flex-start;
    margin-top:4px;
  }
  .footer-logo img{ width:74px; }
}
/* ================= STARTPAKET: Release-Angebot Preis ================= */
.pprice-release{
  display:flex;
  align-items:baseline;
  gap:10px;
  flex-wrap:wrap;
}

.pprice-release .old{
  color: rgba(255,255,255,.55);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(241,220,163,.75);
  font-weight: 900;
}

.pprice-release .sep{
  color: rgba(241,220,163,.75);
  font-weight: 950;
}

.pprice-release .new{
  color: rgba(241,220,163,.98);
  font-weight: 950;
  font-size: 1.15em;
  text-shadow: 0 0 18px rgba(241,220,163,.18);
}

.pprice-release .badge{
  border:1px solid rgba(241,220,163,.55);
  background: rgba(0,0,0,.26);
  padding:6px 10px;
  border-radius:999px;
  font-size: 12px;
  font-weight: 950;
  color: rgba(241,220,163,.95);
}


/* ================= SONGORIA COOKIE CONSENT ================= */
.sg-cookie-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  display: none;
}

.sg-cookie{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(980px, calc(100vw - 24px));
  z-index: 10001;
  display: none;
}

.sg-cookie-card{
  border-radius: 22px;
  border: 1px solid rgba(241,220,163,.28);
  background:
    radial-gradient(900px 260px at 20% 0%, rgba(241,220,163,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.42));
  box-shadow: 0 28px 90px rgba(0,0,0,.75);
  padding: 16px 16px 14px;
  color: rgba(255,255,255,.92);
}

.sg-cookie-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
}

.sg-cookie-kicker{
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255,255,255,.72);
}

.sg-cookie-title{
  margin: 6px 0 6px;
  font-size: 22px;
  line-height: 1.1;
}

.sg-cookie-desc{
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}

.sg-cookie-desc a{
  color: rgba(241,220,163,.95);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sg-cookie-x{
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.28);
  color: rgba(255,255,255,.86);
  border-radius: 14px;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 950;
}

.sg-cookie-actions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sg-cookie-btn{
  border-radius: 16px;
  padding: 11px 14px;
  font-weight: 950;
  cursor:pointer;
  border: 1px solid rgba(241,220,163,.35);
  background: rgba(0,0,0,.26);
  color: rgba(255,255,255,.92);
}

.sg-cookie-btn:hover{ border-color: rgba(241,220,163,.75); }

.sg-cookie-btn-primary{
  border: 2px solid rgba(241,220,163,.90);
  background: linear-gradient(135deg, rgba(241,220,163,.48), rgba(216,180,106,.14));
}

.sg-cookie-btn-dark{
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.35);
}

.sg-cookie-sections{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.sg-cookie-section{
  border-radius: 18px;
  border: 1px solid rgba(241,220,163,.18);
  background: rgba(0,0,0,.22);
  padding: 12px 12px;
}

.sg-cookie-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 14px;
}

.sg-cookie-h{
  font-weight: 950;
  margin-bottom: 4px;
  color: rgba(241,220,163,.95);
}

.sg-cookie-p{
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.74);
  max-width: 720px;
}

.sg-cookie-toggle{
  border:1px solid rgba(241,220,163,.35);
  background: rgba(0,0,0,.20);
  color: rgba(241,220,163,.95);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.sg-switch{
  position: relative;
  display:inline-block;
  width: 52px;
  height: 30px;
  flex: 0 0 auto;
}
.sg-switch input{ display:none; }
.sg-slider{
  position:absolute;
  cursor:pointer;
  inset:0;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(241,220,163,.28);
  transition: .2s;
  border-radius: 999px;
}
.sg-slider:before{
  content:"";
  position:absolute;
  height: 24px;
  width: 24px;
  left: 3px;
  top: 2px;
  background: rgba(255,255,255,.90);
  transition: .2s;
  border-radius: 999px;
}
.sg-switch input:checked + .sg-slider{
  background: rgba(241,220,163,.35);
  border-color: rgba(241,220,163,.75);
}
.sg-switch input:checked + .sg-slider:before{
  transform: translateX(22px);
  background: rgba(241,220,163,.95);
}

.sg-cookie-footer{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
  justify-content:flex-start;
  color: rgba(255,255,255,.70);
  font-size: 12px;
}

.sg-cookie-footer a{
  color: rgba(241,220,163,.95);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sg-cookie-dot{ color: rgba(255,255,255,.45); }

.sg-cookie-link{
  background: transparent;
  border: 0;
  padding: 0;
  color: rgba(241,220,163,.95);
  cursor:pointer;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Footer link button (looks like your footer links) */
.footer-cookie-link{
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--gold-soft);
  font-weight: 900;
  letter-spacing: .02em;
  position: relative;
  padding-bottom: 2px;
  opacity: .92;
}
.footer-cookie-link:hover{ opacity: 1; }
.footer-cookie-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  height:2px;
  width:0;
  background:linear-gradient(90deg, rgba(241,220,163,.95), rgba(216,180,106,.15));
  border-radius:99px;
  transition:width .22s ease;
}
.footer-cookie-link:hover::after{ width:100%; }

@media (max-width: 640px){
  .sg-cookie{
    bottom: 10px;
    width: calc(100vw - 18px);
  }
  .sg-cookie-title{ font-size: 20px; }
}
