/* =========================
   style.css (komplett)
   Modern / Dark (nicht reines schwarz), Yellow Highlight, Smooth UI
   Enthält: Header (transparent -> dark), Mobile Burger Nav, Hero, Logos,
            Cinematic Feature, Top-3 Gründe, Timeline, Reviews, Kontakt, Footer,
            Cookie Banner + Reveal Animation
========================= */

:root{
  --bg: #070b12;
  --bg2:#0b1220;

  --panel: rgba(12,18,30,.55);
  --panel2: rgba(12,18,30,.72);

  --text: rgba(255,255,255,.92);
  --muted: rgba(229,231,235,.70);
  --muted2: rgba(229,231,235,.55);

  --yellow:#e6ff00;
  --purple: rgba(130,90,255,.22);

  --radius:18px;
  --shadow: 0 30px 90px rgba(0,0,0,.55);

  --header-h:72px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 900px at 50% 10%, rgba(115,89,255,.10), transparent 60%),
    radial-gradient(1000px 700px at 20% 70%, rgba(255,255,255,.03), transparent 60%),
    var(--bg);
  color:var(--text);
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}
.container{max-width:1200px;margin:0 auto;padding:0 22px}

/* Skip */
.skip{position:absolute;left:-999px;top:-999px}
.skip:focus{
  left:16px;top:16px;background:#000;color:#fff;
  padding:10px 12px;border-radius:10px;z-index:99999
}

/* =========================
   REVEAL (Pop-in)
========================= */
.reveal{
  opacity: 1;
  transform: none;
}
.js .reveal{
  opacity: 0;
  transform: translateY(14px) scale(.98);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.9,.2,1);
  will-change: opacity, transform;
}
.js .reveal.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* =========================
   HEADER / NAV
========================= */
.site-header{
  position:fixed; top:0; left:0; right:0;
  height:var(--header-h);
  z-index:9990;
  background:transparent;
  border-bottom:1px solid transparent;
  transition: background .18s ease, border-color .18s ease, backdrop-filter .18s ease;
}
.site-header.is-scrolled{
  background: rgba(11,18,32,.96);
  border-bottom-color: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}

.header-inner{
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex; align-items:center; gap:10px;
  padding:10px 10px;border-radius:14px;
}
.brand-logo{width:28px;height:28px;object-fit:contain}
.brand-name{font-weight:900;letter-spacing:-.2px}

.site-nav{
  display:flex; gap:12px; align-items:center;
  padding:10px;border-radius:999px;
  background: rgba(12,18,30,.25);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.nav-link{
  padding:10px 14px;border-radius:999px;
  color:rgba(255,255,255,.75);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.nav-link:hover{background:rgba(255,255,255,.06);color:rgba(255,255,255,.95)}
.nav-link.is-active{
  background: rgba(130,90,255,.22);
  color: rgba(255,255,255,.95);
  border:1px solid rgba(130,90,255,.35);
}

/* Burger */
.nav-toggle{
  display:none;
  width:44px;height:44px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(11,18,32,.28);
  border-radius:12px;
  cursor:pointer;
  position:relative;
}
.nav-toggle span{
  position:absolute;left:11px;right:11px;height:2px;
  background:rgba(255,255,255,.88);
  border-radius:2px;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.nav-toggle span:nth-child(1){top:14px}
.nav-toggle span:nth-child(2){top:21px}
.nav-toggle span:nth-child(3){top:28px}

@media (max-width: 900px){
  .nav-toggle{display:inline-flex;align-items:center;justify-content:center}

  .site-nav{
    position:fixed;
    left:16px; right:16px;
    top: calc(var(--header-h) + 10px);
    display:grid;
    gap:10px;
    padding:14px;
    border-radius:16px;
    background: rgba(11,18,32,.96);
    border:1px solid rgba(255,255,255,.12);
    box-shadow: 0 26px 80px rgba(0,0,0,.55);

    transform: translateY(-10px);
    opacity:0;
    pointer-events:none;
    transition: transform .18s ease, opacity .18s ease;
    z-index:9999;
  }
  .site-header.nav-open .site-nav{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.nav-open .nav-toggle span:nth-child(1){top:21px;transform:rotate(45deg)}
  .site-header.nav-open .nav-toggle span:nth-child(2){opacity:0}
  .site-header.nav-open .nav-toggle span:nth-child(3){top:21px;transform:rotate(-45deg)}
}

/* =========================
   BUTTONS
========================= */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  cursor:pointer;user-select:none;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn:active{transform:translateY(1px)}

.btn-primary{
  background: rgba(230,255,0,.12);
  border-color: rgba(230,255,0,.35);
  color: var(--yellow);
}
.btn-primary:hover{
  background: rgba(230,255,0,.18);
  box-shadow: 0 18px 60px rgba(230,255,0,.10);
}

.btn-ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
  color: rgba(255,255,255,.85);
}
.btn-ghost:hover{background: rgba(255,255,255,.06)}

.btn-outline-yellow{
  border:2px solid rgba(230,255,0,.85);
  color:var(--yellow);
  background:transparent;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.5px;
}
.btn-outline-yellow:hover{
  background: var(--yellow);
  color:#000;
  box-shadow: 0 18px 60px rgba(230,255,0,.12);
  transform: translateY(-1px);
}

/* =========================
   HIGHLIGHT UTIL
========================= */
.hl{
  display:inline-block;
  background: var(--yellow);
  color:#000;
  padding: .14em .22em .10em;
  box-shadow: 0 18px 60px rgba(230,255,0,.14);
}

/* =========================
   HERO
========================= */
.hero{
  position:relative;
  padding-top: calc(var(--header-h) + 42px);
  padding-bottom: 44px;
  overflow:hidden;
}
.hero-bg{
  position:absolute;inset:0;
  background-image: url("/img/hero-bg.webp");
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.02);
}
.hero-overlay{
  position:absolute;inset:0;
  background:
    radial-gradient(900px 520px at 20% 30%, rgba(0,0,0,.70), transparent 60%),
    radial-gradient(900px 600px at 70% 60%, rgba(0,0,0,.45), transparent 62%),
    linear-gradient(180deg, rgba(7,11,18,.70), rgba(7,11,18,.55) 40%, rgba(7,11,18,.78));
}

.hero-grid{
  position:relative;z-index:1;
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(20px, 3vw, 44px);
  align-items:center;
}

.hero-title{
  margin:0 0 10px;
  font-weight: 1000;
  letter-spacing:-.8px;
  line-height:.92;
  text-transform:uppercase;
  font-size: clamp(42px, 4.6vw, 78px);
}
.hero-mark{
  display:inline-block;
  padding:10px 14px 8px;
  background: var(--yellow);
  color:#000;
  box-shadow: 0 18px 60px rgba(230,255,0,.14);
}

.hero-sub{
  margin:0 0 10px;
  color: rgba(230,255,0,.92);
  font-weight:900;
  font-size:18px;
}
.hero-text{margin:0 0 18px;color:var(--muted);line-height:1.7;max-width:62ch}

.hero-list{
  list-style:none;padding:0;margin:0 0 18px;
  display:grid;gap:12px;
}
.hero-list li{display:flex;align-items:center;gap:12px;color:rgba(255,255,255,.88)}
.hero-list strong{font-size:18px;font-weight:900}
.hero-ico{width:30px;height:30px;display:inline-flex;align-items:center;justify-content:center;flex:0 0 auto}
.hero-ico img{width:26px;height:26px;object-fit:contain}

.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:6px}

.hero-media{display:flex;flex-direction:column;gap:14px}
.hero-videoWrap{
  border-radius: var(--radius);
  overflow:hidden;
  background:#000;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
}
.hero-video{width:100%;height:100%;display:block;object-fit:cover}

.hero-rating{align-self:flex-end}
.rating-badge{
  display:flex;align-items:center;gap:12px;
  padding:12px 14px;border-radius:16px;
  background: rgba(12,18,30,.55);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}
.rating-g{
  width:36px;height:36px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  font-weight:1000;
}
.rating-title{color:var(--muted2);font-size:12px}
.rating-row{display:flex;align-items:center;gap:10px}
.rating-score{font-weight:1000}
.rating-stars{color:var(--yellow);letter-spacing:2px;font-size:14px}

/* Mobile hero */
@media (max-width: 900px){
  .hero{padding-top: calc(var(--header-h) + 22px)}
  .hero-grid{grid-template-columns:1fr;gap:14px}
  .hero-media{order:2}
  .hero-videoWrap{width:min(92vw, 560px);margin:0 auto;border-radius:16px}
  .hero-rating{align-self:center}
}

/* =========================
   LOGOS MARQUEE (passender Hintergrund)
========================= */
.logos{
  padding: 26px 0 22px;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(255,255,255,.03), transparent 65%),
    linear-gradient(180deg, rgba(7,11,18,.10), rgba(7,11,18,.35));
  overflow:hidden;
}
.logos-head{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;flex-wrap:wrap;margin-bottom:12px}
.logos-title{margin:0;font-size:18px;font-weight:1000;letter-spacing:-.2px}
.logos-sub{margin:0;color:var(--muted2);font-size:14px;max-width:60ch}

.logos-marquee{
  position:relative;
  padding: 14px 0;
  overflow:hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.logos-track{
  display:flex;align-items:center;gap:70px;
  width:max-content;
  animation: logos-scroll var(--logos-speed, 32s) linear infinite;
  will-change: transform;
}
@keyframes logos-scroll{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(-50%,0,0)}
}
.logo-item{display:flex;align-items:center;justify-content:center;min-width:140px;height:54px}
.logo-item img{
  max-height:54px;max-width:180px;width:auto;height:auto;
  filter: grayscale(1) contrast(1.05) brightness(.95);
  opacity:.82;
  transition: filter .18s ease, opacity .18s ease, transform .18s ease;
}
.logo-item:hover img{
  filter: grayscale(0) contrast(1.05) brightness(1);
  opacity:1;
  transform: translateY(-1px);
}
@media (max-width:900px){
  .logos-track{gap:40px}
  .logo-item{min-width:110px;height:44px}
  .logo-item img{max-height:44px;max-width:150px}
}

/* =========================
   CINEMATIC FEATURE
========================= */
.feature--cinematic{
  position:relative;
  padding:74px 0;
  background:#05060a;
  overflow:hidden;
}
.feature--cinematic::before{
  content:"";position:absolute;inset:-40px;
  background:
    radial-gradient(900px 520px at 20% 35%, rgba(230,255,0,.10), transparent 55%),
    radial-gradient(700px 520px at 85% 65%, rgba(115,89,255,.12), transparent 58%),
    radial-gradient(1200px 800px at 50% 50%, rgba(255,255,255,.04), transparent 62%);
  filter: blur(10px);
  opacity:.95;
  pointer-events:none;
}
.feature--cinematic::after{
  content:"";position:absolute;inset:0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity:.10;
  pointer-events:none;
}

.feature-grid{
  position:relative;z-index:1;
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(22px, 4vw, 56px);
  align-items:center;
}

.feature-title{
  margin:0 0 18px;
  line-height:.95;
  font-weight:1000;
  letter-spacing:-.8px;
  font-size: clamp(44px, 5.2vw, 84px);
  text-transform:uppercase;
}
.feature-title .mark{
  display:inline-block;
  padding:10px 14px 8px;
  background:var(--yellow);
  color:#000;
  box-shadow: 0 18px 60px rgba(230,255,0,.18);
}
.feature-text{
  max-width:54ch;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height:1.7;
  margin-bottom: 18px;
}
.feature-text p{margin:0 0 16px}
.feature-text strong{color:rgba(255,255,255,.96);font-weight:900}

.feature-frame{
  margin:0;
  position:relative;
  border-radius:18px;
  overflow:hidden;
  background:#0a0a0a;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 40px 120px rgba(0,0,0,.70);
}
.feature-frame img{width:100%;height:100%;object-fit:cover}

/* Desktop: Bild größer + hochkantiger Look */
.feature-frame--portrait{
  aspect-ratio: 4 / 5;
  max-width: 520px;
  margin-left: auto;
}
.corner{position:absolute;width:22px;height:22px;pointer-events:none}
.corner-tl{left:12px;top:12px;border-top:2px solid rgba(230,255,0,.95);border-left:2px solid rgba(230,255,0,.95)}
.corner-br{right:12px;bottom:12px;border-bottom:2px solid rgba(230,255,0,.95);border-right:2px solid rgba(230,255,0,.95)}

@media (max-width:980px){
  .feature--cinematic{padding:56px 0}
  .feature-grid{grid-template-columns:1fr;gap:18px}
  .feature-media{order:-1}
  .feature-frame--portrait{
    width: min(92vw, 560px);
    margin: 0 auto;
    border-radius:16px;
    aspect-ratio: 16/10; /* mobile wie Screenshot: Bild oben, nicht zu hoch */
    max-width: none;
  }
  .feature-title{font-size: clamp(34px, 10vw, 52px);margin-bottom:14px}
  .feature-title .mark{padding:8px 12px 7px}
}

/* =========================
   TOP 3 GRÜNDE
========================= */
.reasons{
  padding: 62px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.reasons-head{margin-bottom:18px}
.reasons-title{
  margin:0;
  font-weight:1000;
  letter-spacing:-.6px;
  line-height:1.0;
  text-transform:uppercase;
  font-size: clamp(34px, 3.6vw, 64px);
}
.reasons-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.reason-card{
  background: rgba(12,18,30,.55);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.38);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.reason-card:hover{
  transform: translateY(-4px);
  border-color: rgba(230,255,0,.25);
  background: rgba(12,18,30,.68);
  box-shadow: 0 30px 90px rgba(0,0,0,.52);
}
.reason-ico{
  width:44px;height:44px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(230,255,0,.10);
  border: 1px solid rgba(230,255,0,.25);
  margin-bottom: 12px;
}
.reason-ico img{width:26px;height:26px;object-fit:contain}
.reason-card h3{margin:0 0 8px;font-size:18px;font-weight:1000}
.reason-card p{margin:0;color:var(--muted);line-height:1.7}

.reasons-cta{margin-top:18px;display:flex;justify-content:center}

@media (max-width:980px){
  .reasons-grid{grid-template-columns:1fr}
}

/* =========================
   SECTION HEAD
========================= */
.section-head{margin-bottom:18px}
.section-title{
  margin:0 0 8px;
  font-size:28px;
  font-weight:1000;
  letter-spacing:-.3px;
}
.section-sub{margin:0;color:var(--muted2);line-height:1.6;max-width:70ch}

/* Gelb-Style für große Überschrift in Timeline (etwas kleiner als vorher) */
.section-title--hl{
  font-size: clamp(40px, 4.2vw, 72px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.8px;
}

/* =========================
   TIMELINE
========================= */
.timeline{
  padding:64px 0;
  border-top:1px solid rgba(255,255,255,.06);
}

.fp-wrap{
  position:relative;
  margin-top:26px;
  padding: 10px 0;
}

/* center line */
.fp-line{
  position:absolute;
  left:50%;
  top:0; bottom:0;
  width:2px;
  transform: translateX(-50%);
  background: rgba(255,255,255,.10);
}
.fp-line-progress{
  position:absolute;left:0;top:0;
  width:2px;height:0%;
  background: var(--yellow);
}

/* rows */
.fp-row{
  position:relative;
  display:grid;
  grid-template-columns: 1fr 88px 1fr;
  align-items:center;
  gap:22px;
  padding: 18px 0;
}

.fp-media img{
  width:100%;
  max-height:340px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
}

.fp-text h3{margin:0 0 6px;font-size:26px;font-weight:1000}
.fp-text p{margin:0;color:var(--muted);line-height:1.7;font-size:18px}

/* node */
.fp-node{display:flex;align-items:center;justify-content:center}
.fp-nodebox{
  width:58px;height:58px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(12,18,30,.55);
  border:1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.72);
  font-weight:1000;
  letter-spacing:.5px;
  transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

/* reached stays bright */
.fp-row.is-reached .fp-nodebox{
  border-color: rgba(230,255,0,.40);
  color: rgba(255,255,255,.92);
}

/* current = glowing */
.fp-row.is-current .fp-nodebox{
  background: rgba(230,255,0,.18);
  border-color: rgba(230,255,0,.75);
  color: var(--yellow);
  box-shadow: 0 18px 70px rgba(230,255,0,.12);
  transform: translateY(-1px);
}

/* left/right placement */
.fp-left .fp-media{grid-column:1}
.fp-left .fp-node{grid-column:2}
.fp-left .fp-text{grid-column:3}

.fp-right .fp-text{grid-column:1;text-align:right}
.fp-right .fp-node{grid-column:2}
.fp-right .fp-media{grid-column:3}

/* Mobile timeline fix: Nummer links, Content rechts (Bild oben, Text darunter) */
@media (max-width: 980px){
  .fp-line{left:22px;transform:none}

  .fp-row{
    grid-template-columns: 64px 1fr;
    gap:14px;
    align-items:start;
    padding:18px 0;
  }

  .fp-node{
    grid-column:1;
    grid-row: 1 / span 2;
    justify-content:flex-start;
    align-self:start;
    padding-top: 10px;
  }
  .fp-nodebox{width:46px;height:46px;border-radius:14px}

  .fp-media{
    grid-column:2 !important;
    grid-row:1;
  }
  .fp-text{
    grid-column:2 !important;
    grid-row:2;
    text-align:left !important;
  }

  .fp-media img{
    height:auto;
    max-height:none;
  }

  .fp-text h3{font-size:22px;margin:10px 0 6px}
  .fp-text p{font-size:16px}
}

/* =========================
   REVIEWS
========================= */
.reviews{
  padding:64px 0;
  border-top:1px solid rgba(255,255,255,.06);
}
.review-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin-top:18px;
}
.review-card{
  background: rgba(12,18,30,.55);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.38);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.review-card:hover{
  transform: translateY(-4px);
  border-color: rgba(130,90,255,.35);
  background: rgba(12,18,30,.68);
}
.review-stars{color:var(--yellow);letter-spacing:2px;margin-bottom:10px;font-size:14px}
.review-text{margin:0 0 14px;color:var(--muted);line-height:1.7}
.review-meta{display:flex;align-items:center;justify-content:space-between;gap:12px;color:rgba(255,255,255,.75);font-size:13px}
.review-name{font-weight:900;color:rgba(255,255,255,.88)}
.review-role{color:rgba(229,231,235,.55)}
@media (max-width:980px){
  .review-grid{grid-template-columns:1fr}
}

/* =========================
   CONTACT
========================= */
.contact{
  padding:64px 0;
  border-top:1px solid rgba(255,255,255,.06);
}
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}
.contact-box{
  margin-top: 14px;
  background: rgba(12,18,30,.45);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:16px;
}
.contact-box a{color: var(--yellow)}
.contact-form{
  background: rgba(12,18,30,.45);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:16px;
  display:grid;
  gap: 12px;
}
.contact-form label{display:grid;gap:8px;color:rgba(255,255,255,.78);font-weight:700;font-size:13px}
.contact-form input,
.contact-form textarea{
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,11,18,.45);
  color: rgba(255,255,255,.92);
  padding: 12px 12px;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(230,255,0,.35);
  box-shadow: 0 0 0 4px rgba(230,255,0,.08);
}
@media (max-width:980px){
  .contact-grid{grid-template-columns:1fr}
}

/* =========================
   FOOTER
========================= */
.footer{
  padding:40px 0 20px;
  border-top:1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(7,11,18,.2), rgba(7,11,18,.85));
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap:18px;
  align-items:start;
}
.footer-text{margin:12px 0 0;color:var(--muted2);line-height:1.7;max-width:52ch}
.footer-title{font-weight:1000;margin-bottom:10px}
.footer-link{display:block;padding:8px 0;color:rgba(255,255,255,.75)}
.footer-link:hover{color:rgba(255,255,255,.95)}

.social{display:flex;gap:10px;margin-top:8px}
.social-link{
  width:40px;height:40px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.social-link svg{width:20px;height:20px;color:rgba(255,255,255,.85)}
.social-link:hover{background: rgba(255,255,255,.06)}

.footer-bottom{
  margin-top:18px;padding-top:16px;
  border-top:1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.55);
  font-size:13px;
}
@media (max-width:980px){
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:520px){
  .footer-grid{grid-template-columns:1fr}
}

/* =========================
   COOKIE BANNER
========================= */
.cookie{
  position:fixed;left:16px;right:16px;bottom:16px;
  z-index:99999;display:flex;justify-content:center;
}
.cookie-card{
  width:min(920px, 100%);
  background: rgba(11,18,32,.94);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px;
  box-shadow: 0 30px 100px rgba(0,0,0,.60);
  backdrop-filter: blur(10px);
}
.cookie-title{font-weight:1000;margin-bottom:6px}
.cookie-text{margin:0 0 12px;color:rgba(229,231,235,.70);line-height:1.6}
.cookie-actions{display:flex;gap:10px;justify-content:flex-end;flex-wrap:wrap}
/* Cookie: robust verstecken/anzeigen */
.cookie.is-hidden{ display:none !important; }
