:root{
  --bg:#0a0a0a;
  --bg2:#000;
  --card:#0f0f0f;
  --line:rgba(255,255,255,.12);
  --text:#fff;
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.55);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
  --focus: 0 0 0 3px rgba(255,255,255,.25);
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{
  padding-top:74px;height:100%}
body{
  padding-top:74px;
  margin:0;
  font-family:var(--font);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(255,255,255,.10), transparent 60%),
              radial-gradient(900px 500px at 100% 20%, rgba(255,255,255,.06), transparent 55%),
              linear-gradient(180deg, var(--bg2), var(--bg));
  color:var(--text);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

/* Header / Nav */
.header{
  position:fixed; top:0; left:0; right:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(0,0,0,.55);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  height:74px;
}
.brand{display:flex; align-items:center; gap:12px; min-width:200px}
.logo{height:44px; width:auto; display:block}
.logo.small{height:34px}
.brand-text{display:flex; flex-direction:column; gap:2px}
.brand-name{font-weight:800; letter-spacing:.3px}
.brand-tagline{font-size:12px; color:var(--muted2); letter-spacing:.22em; text-transform:uppercase}

.menu{display:flex; align-items:center; gap:18px}
.menu a{
  font-weight:600; color:var(--muted);
  padding:10px 10px; border-radius:12px;
}
.menu a:hover{background:rgba(255,255,255,.06); color:#fff}

.burger{
  display:none; background:transparent; border:0; padding:10px;
  border-radius:12px; cursor:pointer;
}
.burger:focus{outline:none; box-shadow:var(--focus)}
.burger span{
  display:block; width:26px; height:2px; background:#fff;
  margin:6px 0; border-radius:2px; opacity:.9;
}

/* Drawer */
.drawer{
  position:fixed; inset:74px 0 auto 0;
  transform: translateY(-8px);
  opacity:0; pointer-events:none;
  transition:.18s ease;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--line);
}
.drawer.open{
  opacity:1; pointer-events:auto; transform: translateY(0);
}
.drawer-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:18px 20px 22px;
  display:flex; flex-direction:column; gap:10px;
}
.drawer-link{
  padding:12px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  font-weight:650;
}
.drawer-footer{
  display:flex; gap:14px; flex-wrap:wrap;
  margin-top:6px; color:var(--muted2);
}
.drawer-footer a{padding:8px 0}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  height:44px; padding:0 16px;
  border-radius:14px; font-weight:750;
  border:1px solid rgba(255,255,255,.18);
}
.btn:focus{outline:none; box-shadow:var(--focus)}
.btn-primary{
  background:#fff; color:#000;
  border-color:#fff;
}
.btn-ghost{
  background:rgba(255,255,255,.06);
  color:#fff;
}
.btn-wide{width:100%}

/* Hero */
.hero{
  position:relative;
  padding:64px 0 40px;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:-120px -120px auto -120px;
  height:540px;
  background:
    radial-gradient(520px 260px at 25% 30%, rgba(255,255,255,.18), transparent 70%),
    radial-gradient(520px 260px at 80% 40%, rgba(255,255,255,.10), transparent 70%);
  filter: blur(8px);
  opacity:.85;
  pointer-events:none;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.35fr .95fr;
  gap:22px;
  align-items:stretch;
}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:var(--muted);
  font-weight:650;
  font-size:13px;
  margin-bottom:14px;
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(34px, 4.3vw, 56px);
  line-height:1.06;
  letter-spacing:-.02em;
}
.outline{
  -webkit-text-stroke: 1px rgba(255,255,255,.70);
  color: transparent;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 58ch;
}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin: 18px 0 22px}
.hero-stats{
  display:flex; gap:14px; flex-wrap:wrap;
}
.stat{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: 16px;
}
.stat-num{font-size:18px}
.stat-label{font-weight:650; color:var(--muted)}

/* Cards */
.card{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 18px;
}
.card.strong{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}
.hero-card{height:100%}
.hero-card-inner{height:100%; display:flex; flex-direction:column}
.hero-card h3{margin:0 0 10px}
.muted{color:var(--muted)}
.tiny{font-size:12px; color:var(--muted2)}
.divider{
  height:1px;
  background: rgba(255,255,255,.12);
  margin: 14px 0;
}
.checklist{list-style:none; padding:0; margin:0 0 12px; display:flex; flex-direction:column; gap:10px}
.check{display:inline-flex; width:22px; height:22px; align-items:center; justify-content:center;
  border-radius:8px; background:#fff; color:#000; font-weight:900; margin-right:8px}

/* Sections */
.section{padding:54px 0}
.section.alt{
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.section-head{
  display:flex; flex-direction:column; gap:8px;
  margin-bottom:18px;
}
.section-head h2{
  margin:0;
  font-size: clamp(24px, 2.8vw, 34px);
  letter-spacing:-.02em;
}
.section-head p{margin:0; color:var(--muted); max-width:70ch}

/* Grids */
.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.grid-2{display:grid; grid-template-columns: repeat(2, 1fr); gap:16px}
.list{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.list li{margin:6px 0}

/* Note */
.note{
  margin-top:18px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--muted);
}

/* FAQ */
.faq{display:grid; gap:12px}
.faq-item{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  padding: 14px 14px;
}
.faq-item summary{
  cursor:pointer;
  font-weight:800;
  list-style:none;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-body{
  padding-top:74px;margin-top:10px; color:var(--muted)}

/* Form */
.form{display:flex; flex-direction:column; gap:12px}
label{display:flex; flex-direction:column; gap:8px; color:var(--muted); font-weight:650}
input, textarea{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  color:#fff;
  padding:12px 12px;
  font-family:var(--font);
}
input:focus, textarea:focus{outline:none; box-shadow:var(--focus)}
.contact-box{display:flex; flex-direction:column; gap:12px; margin-top:10px}
.contact-row{display:flex; justify-content:space-between; gap:16px; padding:10px 12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
}
.contact-row .k{color:var(--muted)}
.contact-row .v{font-weight:750}

/* Footer */
.footer{
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.55);
  padding: 24px 0;
}
.footer-grid{
  display:grid; gap:12px;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items:center;
}
.footer-brand{display:flex; align-items:center; gap:12px}
.footer-title{font-weight:900}
.footer-sub{color:var(--muted2); font-size:12px; letter-spacing:.22em; text-transform:uppercase}
.footer-links, .footer-legal{display:flex; gap:14px; justify-content:flex-end; flex-wrap:wrap; color:var(--muted)}
.footer-links a, .footer-legal a{padding:8px 0}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; }
  .grid-3{grid-template-columns: 1fr}
  .grid-2{grid-template-columns: 1fr}
  .menu{display:none}
  .burger{display:block}
  .footer-grid{grid-template-columns: 1fr; text-align:left}
  .footer-links, .footer-legal{justify-content:flex-start}
}


/* Hero badges */
.hero-badges{
  display:flex; gap:10px; flex-wrap:wrap;
  margin: 6px 0 12px;
}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  font-weight:750;
  font-size:13px;
}
.badge .dot{
  width:8px; height:8px; border-radius:99px;
  background:#fff; opacity:.85;
}
.badge-ghost{
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.72);
}
.badge-ig{
  background:#fff; color:#000;
  border-color:#fff;
}

/* Flash / success message */
#flash{padding-top:18px}
.flash{
  margin-top:14px;
  padding:12px 14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.86);
}

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.gallery-item{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  overflow:hidden;
  padding:0;
  cursor:pointer;
  transition: transform .12s ease, border-color .12s ease;
}
.gallery-item:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
}
.gallery-item img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(10px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  opacity:0;
  pointer-events:none;
  transition: opacity .16s ease;
  z-index:80;
}
.lightbox.open{
  opacity:1;
  pointer-events:auto;
}
.lightbox img{
  max-width:min(1100px, 96vw);
  max-height: 86vh;
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 26px 90px rgba(0,0,0,.65);
}
.lightbox-close{
  position:absolute;
  top:18px; right:18px;
  width:46px; height:46px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color:#fff;
  font-size:26px;
  cursor:pointer;
}
.lightbox-close:focus{outline:none; box-shadow:var(--focus)}

/* Honeypot (spam) */
.hp{position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden}

/* Gallery responsive */
@media (max-width: 980px){
  .gallery-grid{grid-template-columns: 1fr}
  .gallery-item img{height:240px}
}


/* WhatsApp button */
.btn-wa{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
  color:#fff;
}
.btn-wa:hover{background: rgba(255,255,255,.14)}
.btn-wa::before{
  content:"💬";
}

/* Floating WhatsApp */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 850;
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}
.wa-float:hover{opacity:.92}
.wa-float:focus{outline:none; box-shadow:var(--focus)}
.wa-float-dot{
  width:10px; height:10px;
  border-radius: 999px;
  background: #000;
  opacity: .9;
}


/* Cooperation logo */
.coop-card{display:flex; flex-direction:column; gap:12px}
.coop-logo-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.coop-logo{
  max-width: 220px;
  width: 100%;
  height: auto;
  display:block;
}


/* Compact menu */
.menu{gap:12px}
.menu a{padding:10px 8px; font-size:14px}

/* Dropdown (Mehr) */
.dropdown{position:relative; display:inline-flex; align-items:center}
.dropbtn{
  height:44px;
  padding:0 12px;
  border-radius:14px;
  background: rgba(255,255,255,.06);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  font-weight:750;
  cursor:pointer;
}
.dropbtn:focus{outline:none; box-shadow:var(--focus)}
.drop{
  position:absolute;
  top:52px;
  right:0;
  min-width: 210px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  padding:8px;
  display:none;
  z-index: 60;
}
.drop.open{display:block}
.drop a{
  display:block;
  padding:10px 10px;
  border-radius: 14px;
  color: rgba(255,255,255,.86);
  font-weight:650;
}
.drop a:hover{background: rgba(255,255,255,.07); color:#fff}

/* Signup progress card */
.signup-card{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.signup-top{display:flex; align-items:center; justify-content:space-between; gap:14px}
.signup-title{font-weight:900}
.signup-count{font-weight:900; color: rgba(255,255,255,.92)}
.progress{
  height:10px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.10);
  overflow:hidden;
  margin-top:10px;
}
.progress-bar{
  height:100%;
  width:0%;
  background:#fff;
}

/* Sub hero tweaks */
.hero-sub{padding-top:52px}
.hero-grid-sub{grid-template-columns: 1.2fr .8fr}
@media (max-width: 980px){
  .hero-grid-sub{grid-template-columns:1fr}
}


/* Menu icons */
.menu a, .drop a, .dropbtn{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.menu .ico, .drop .ico{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  opacity:.85;
}

/* Dropdown hover + click */
.dropdown:hover .drop{display:block}
.dropdown:hover .dropbtn{background: rgba(255,255,255,.10)}


/* Footer cleanup */
.footer-links{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:24px;
}
.footer-col{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.footer-col strong{
  font-weight:900;
  margin-bottom:4px;
}
.footer-col a{
  padding:0;
  color: var(--muted);
}
.footer-col a:hover{color:#fff}

@media (max-width: 980px){
  .footer-links{
    grid-template-columns: 1fr;
    gap:16px;
  }
}


/* Contact button (higher contrast than primary) */
.btn-contact{
  background: rgba(0,0,0,.85);
  color:#fff;
  border:1px solid rgba(255,255,255,.34);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.btn-contact:hover{
  background:#fff;
  color:#000;
  border-color:#fff;
}
