:root{
  --bg:#070A12;
  --panel:rgba(255,255,255,.04);
  --border:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --muted2:rgba(255,255,255,.55);
  --brand:#2b6cff;
  --radius:18px;
  --shadow: 0 18px 40px -26px rgba(0,0,0,.75);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
  background: radial-gradient(1200px 600px at 50% -120px, rgba(255,255,255,.10), transparent 55%),
              radial-gradient(600px 600px at -120px 30%, rgba(255,255,255,.06), transparent 55%),
              radial-gradient(700px 700px at 110% 90%, rgba(255,255,255,.06), transparent 55%),
              var(--bg);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 18px}

.topbar{
  position:sticky;top:0;z-index:40;
  backdrop-filter: blur(10px);
  background: rgba(7,10,18,.75);
  border-bottom: 1px solid var(--border);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
  gap:12px;
}
.brand{
  display:flex;align-items:center;gap:12px;
}
.brand img{height:44px;width:auto;display:block}
.brand .sub{font-size:12px;color:var(--muted2);margin-top:2px}

.links{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.links a{
  font-size:14px;color:var(--muted);
  padding:10px 12px;border-radius:14px;
  border:1px solid transparent;
}
.links a:hover{background:rgba(255,255,255,.05);color:var(--text);border-color:rgba(255,255,255,.06)}
.links a.active{background:rgba(255,255,255,.08);color:var(--text);border-color:rgba(255,255,255,.10)}

.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  color:var(--muted);
  font-size:12px;
}

.hero{padding:64px 0 38px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:center;
}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
}
h1{font-size:46px;line-height:1.05;margin:14px 0 10px}
@media (max-width: 520px){h1{font-size:36px}}
.lead{font-size:16px;color:var(--muted);max-width:60ch}
.cta-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  font-weight:700;font-size:14px;
  transition:.2s;
}
.btn.primary{
  background: white;color:#0a0f1c;border-color:transparent;
  box-shadow: 0 16px 40px -26px rgba(255,255,255,.45);
}
.btn.primary:hover{background:rgba(255,255,255,.92)}
.btn.secondary{
  background: rgba(255,255,255,.08); color:var(--text);
}
.btn.secondary:hover{background: rgba(255,255,255,.12)}
.btn.ghost{
  background: transparent; color:var(--text);
}
.btn.ghost:hover{background: rgba(255,255,255,.06)}

.card{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card.pad{padding:18px}
.card-title{font-weight:800;margin:0 0 8px}
.small{font-size:13px;color:var(--muted)}
.grid3{
  display:grid;gap:14px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
@media (max-width: 900px){.grid3{grid-template-columns:1fr}}
.grid2{
  display:grid;gap:14px;
  grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (max-width: 900px){.grid2{grid-template-columns:1fr}}

.section{padding:32px 0}
.section h2{margin:0 0 10px;font-size:26px}
.section p{margin:0;color:var(--muted)}

.hr{
  height:1px;margin:16px 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.14), transparent);
}

.kpi{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin-top:16px}
@media(max-width:900px){.kpi{grid-template-columns:repeat(2,minmax(0,1fr))}}
.kpi .k{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  border-radius:14px;padding:12px;
}
.k .v{font-weight:900;font-size:16px}
.k .l{font-size:12px;color:var(--muted2)}

.project-grid{
  display:grid;gap:14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media(max-width:980px){.project-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:620px){.project-grid{grid-template-columns:1fr}}
.project{overflow:hidden}
.project img{
  width:100%;height:180px;object-fit:cover;display:block;
}
.project .meta{padding:14px}
.tags{display:flex;gap:6px;flex-wrap:wrap;margin-top:10px}
.tag{
  font-size:11px;color:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  padding:4px 8px;border-radius:999px;
}

.form input,.form textarea,.form select{
  width:100%;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 11px 12px;
  color: var(--text);
  outline:none;
}
.form textarea{min-height:140px;resize:vertical}
.form label{display:block;font-size:12px;color:var(--muted2);margin:10px 0 6px}
.form .row{display:grid;grid-template-columns:1fr 1fr;gap:10px}
@media(max-width:700px){.form .row{grid-template-columns:1fr}}

.footer{
  margin-top:48px;
  border-top:1px solid var(--border);
  background: rgba(7,10,18,.60);
}
.footer .wrap{
  padding:22px 0;
  display:flex;gap:14px;flex-wrap:wrap;
  align-items:center;justify-content:space-between;
  color:var(--muted2);font-size:12px;
}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}

.lang{
  display:flex;
  align-items:center;
  gap:10px;
}
.lang select{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  padding: 10px 12px;
  border-radius: 14px;
  outline: none;
  font-weight: 700;
  font-size: 13px;
}
.lang select option{
  background:#0b1020;
  color:white;
}
:root{
  --bg:#070A12;
  --panel:rgba(255,255,255,.04);
  --border:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --muted2:rgba(255,255,255,.55);
  --brand:#2b6cff;
  --radius:18px;
  --shadow: 0 18px 40px -26px rgba(0,0,0,.75);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
  background: radial-gradient(1200px 600px at 50% -120px, rgba(255,255,255,.10), transparent 55%),
              radial-gradient(600px 600px at -120px 30%, rgba(255,255,255,.06), transparent 55%),
              radial-gradient(700px 700px at 110% 90%, rgba(255,255,255,.06), transparent 55%),
              var(--bg);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 18px}

.topbar{
  position:sticky;top:0;z-index:40;
  backdrop-filter: blur(10px);
  background: rgba(7,10,18,.75);
  border-bottom: 1px solid var(--border);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
  gap:12px;
}
.brand{
  display:flex;align-items:center;gap:12px;
}
.brand img{height:44px;width:auto;display:block}
.brand .sub{font-size:12px;color:var(--muted2);margin-top:2px}

.links{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.links a{
  font-size:14px;color:var(--muted);
  padding:10px 12px;border-radius:14px;
  border:1px solid transparent;
}
.links a:hover{background:rgba(255,255,255,.05);color:var(--text);border-color:rgba(255,255,255,.06)}
.links a.active{background:rgba(255,255,255,.08);color:var(--text);border-color:rgba(255,255,255,.10)}

.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  color:var(--muted);
  font-size:12px;
}

.hero{padding:64px 0 38px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:center;
}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
}
h1{font-size:46px;line-height:1.05;margin:14px 0 10px}
@media (max-width: 520px){h1{font-size:36px}}
.lead{font-size:16px;color:var(--muted);max-width:60ch}
.cta-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  font-weight:700;font-size:14px;
  transition:.2s;
}
.btn.primary{
  background: white;color:#0a0f1c;border-color:transparent;
  box-shadow: 0 16px 40px -26px rgba(255,255,255,.45);
}
.btn.primary:hover{background:rgba(255,255,255,.92)}
.btn.secondary{
  background: rgba(255,255,255,.08); color:var(--text);
}
.btn.secondary:hover{background: rgba(255,255,255,.12)}
.btn.ghost{
  background: transparent; color:var(--text);
}
.btn.ghost:hover{background: rgba(255,255,255,.06)}

.card{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card.pad{padding:18px}
.card-title{font-weight:800;margin:0 0 8px}
.small{font-size:13px;color:var(--muted)}
.grid3{
  display:grid;gap:14px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
@media (max-width: 900px){.grid3{grid-template-columns:1fr}}
.grid2{
  display:grid;gap:14px;
  grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (max-width: 900px){.grid2{grid-template-columns:1fr}}

.section{padding:32px 0}
.section h2{margin:0 0 10px;font-size:26px}
.section p{margin:0;color:var(--muted)}

.hr{
  height:1px;margin:16px 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.14), transparent);
}

.kpi{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin-top:16px}
@media(max-width:900px){.kpi{grid-template-columns:repeat(2,minmax(0,1fr))}}
.kpi .k{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  border-radius:14px;padding:12px;
}
.k .v{font-weight:900;font-size:16px}
.k .l{font-size:12px;color:var(--muted2)}

.project-grid{
  display:grid;gap:14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media(max-width:980px){.project-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:620px){.project-grid{grid-template-columns:1fr}}
.project{overflow:hidden}
.project img{
  width:100%;height:180px;object-fit:cover;display:block;
}
.project .meta{padding:14px}
.tags{display:flex;gap:6px;flex-wrap:wrap;margin-top:10px}
.tag{
  font-size:11px;color:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  padding:4px 8px;border-radius:999px;
}

.form input,.form textarea,.form select{
  width:100%;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 11px 12px;
  color: var(--text);
  outline:none;
}
.form textarea{min-height:140px;resize:vertical}
.form label{display:block;font-size:12px;color:var(--muted2);margin:10px 0 6px}
.form .row{display:grid;grid-template-columns:1fr 1fr;gap:10px}
@media(max-width:700px){.form .row{grid-template-columns:1fr}}

.footer{
  margin-top:48px;
  border-top:1px solid var(--border);
  background: rgba(7,10,18,.60);
}
.footer .wrap{
  padding:22px 0;
  display:flex;gap:14px;flex-wrap:wrap;
  align-items:center;justify-content:space-between;
  color:var(--muted2);font-size:12px;
}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}

.lang{
  display:flex;
  align-items:center;
  gap:10px;
}
.lang select{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  padding: 10px 12px;
  border-radius: 14px;
  outline: none;
  font-weight: 700;
  font-size: 13px;
}
.lang select option{
  background:#0b1020;
  color:white;
}
.modal-backdrop{
  position:fixed; inset:0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:999;
}
.modal-backdrop.open{ display:flex; }

.modal{
  width:min(1000px,100%);
  max-height:90vh;
  overflow:auto;
  border-radius:22px;
  background: rgba(10,14,24,.95);
  border:1px solid rgba(255,255,255,.12);
}
.modal-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
}
@media(max-width:900px){ .modal-grid{ grid-template-columns:1fr; } }

.modal img{
  width:100%;
  max-height:420px;
  object-fit:cover;
}
.modal-content{ padding:20px; }
.modal-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
}
.modal-title{ font-weight:900; font-size:18px; }
.modal-desc{ margin-top:8px; color:rgba(255,255,255,.7); }
.modal-close{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  border-radius:14px;
  padding:8px 10px;
  cursor:pointer;
  font-weight:800;
}
.modal-close:hover{ background:rgba(255,255,255,.15); }
.modal-meta{ margin-top:16px; display:grid; gap:12px; }
.meta-box{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:12px;
}
/* Rating line */
.rating-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  margin-bottom: 12px;
  transition: .2s;
  text-decoration: none;
}

.rating-link:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}

.stars{
  font-size:14px;
  letter-spacing:1px;
}

.rating-main{
  font-weight:900;
  font-size:13px;
}

.rating-count{
  font-weight:900;
  font-size:13px;
  opacity:.9;
}
/* Star Rating 4.8 */
.stars{
  display:flex;
  gap:2px;
}

.star{
  font-size:14px;
  position:relative;
  color:rgba(255,255,255,.15); /* leerer Stern */
}

/* volle Sterne */
.star.full{
  color:#FFC107; /* Gelb */
}

/* halber Stern */
.star.half{
  color:rgba(255,255,255,.15);
}

.star.half::before{
  content:"★";
  position:absolute;
  left:0;
  width:50%;
  overflow:hidden;
  color:#FFC107;
}
/* ===============================
   MOBILE HEADER FIX
================================ */

@media (max-width: 900px) {

  /* Ensure header area has room */
  .topbar { position: sticky; top: 0; z-index: 999; }

  /* Keep nav layout stacked */
  .nav{
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  /* NAV LINKS: visible, single row, swipeable */
  .links{
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: flex-start !important;

    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;

    padding: 10px 6px;       /* IMPORTANT: makes them visible */
    margin: 0;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    background: rgba(255,255,255,.04);

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox hide */
  }
  .links::-webkit-scrollbar{ display:none; }

  .links a{
    display: inline-flex;
    align-items: center;
    white-space: nowrap;

    font-size: 13px;
    padding: 7px 10px;

    color: rgba(255,255,255,.92); /* IMPORTANT: ensure visible */
    opacity: 1 !important;
    text-decoration: none;
  }

  .links a.active{
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
  }

  /* Language + button area stays clean */
  .lang{
    display:flex;
    gap:10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .lang .btn{
    width:100%;
    text-align:center;
  }
}
@media (max-width: 900px) {

  /* Hide Fiverr / Start button in header on mobile */
  .lang .btn {
    display: none !important;
  }

}
@media (max-width: 900px) {

  /* Hide Fiverr button in header */
  .lang .btn {
    display: none !important;
  }

  /* Hide language selector in header */
  .lang select {
    display: none !important;
  }

}