/* =========================
   Boss Labs – One Page
   ========================= */

:root{
  --bg: #0b0f14;            /* anthrazit */
  --bg-2: #0f1620;          /* dunkelblau-anthrazit */
  --card: rgba(255,255,255,0.06);
  --card-2: rgba(255,255,255,0.09);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --line: rgba(255,255,255,0.12);
  --accent: #ff7a18;        /* orange CTA */
  --accent-2: #25d0c5;      /* türkis */
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 18px;
  --radius-lg: 26px;
  --container: 1100px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1100px 700px at 70% -10%, rgba(37,208,197,0.16), transparent 60%),
              radial-gradient(900px 600px at 20% 10%, rgba(255,122,24,0.12), transparent 60%),
              var(--bg);
  color: var(--text);
  line-height: 1.55;
}

img{ max-width: 100%; display: block; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section{
  padding: 84px 0;
}

.section-alt{
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.03), transparent);
}

h1,h2,h3{
  line-height: 1.15;
  margin: 0 0 12px;
}

h1{ font-size: clamp(2.1rem, 4vw, 3.2rem); letter-spacing: -0.02em; }
h2{ font-size: clamp(1.6rem, 2.4vw, 2.1rem); letter-spacing: -0.01em; }
h3{ font-size: 1.15rem; }

p{ margin: 0 0 14px; }
.lead{ font-size: 1.05rem; color: var(--muted); }
.muted{ color: var(--muted); }

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: none; }

/* Header / Nav */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11,15,20,0.55);
  border-bottom: 1px solid var(--line);
}

.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255,122,24,0.95), rgba(37,208,197,0.95));
  color: #0b0f14;
  font-weight: 800;
}

.brand-text{ font-size: 1.02rem; }

.nav-links{
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a{
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 10px;
  border-radius: 12px;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}

.nav-links a:hover{
  background: rgba(255,255,255,0.06);
  color: var(--text);
  transform: translateY(-1px);
}

.nav-toggle{
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle:hover{ background: rgba(255,255,255,0.06); }

.nav-toggle-bar{
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  margin: 5px 0;
  border-radius: 2px;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,122,24,0.35);
  background: linear-gradient(135deg, rgba(255,122,24,0.95), rgba(255,122,24,0.75));
  color: #0b0f14;
  font-weight: 800;
  box-shadow: 0 14px 40px rgba(255,122,24,0.12);
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 18px 55px rgba(255,122,24,0.18);
}

.btn:active{ transform: translateY(0px); }

.btn-ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--text);
  box-shadow: none;
}

.btn-ghost:hover{
  background: rgba(255,255,255,0.06);
  box-shadow: none;
}

.btn-small{
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.92rem;
}

.btn-wide{
  width: 100%;
}

/* Hero */
.hero{
  position: relative;
  padding: 78px 0 58px;
  border-bottom: 1px solid var(--line);
}

.hero-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(900px 500px at 25% 15%, rgba(37,208,197,0.10), transparent 60%),
              radial-gradient(900px 600px at 80% 20%, rgba(255,122,24,0.10), transparent 60%);
  opacity: 0.9;
}

.hero-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.trust-row{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.trust-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--muted);
  font-weight: 600;
}

.hero-media{
  display: grid;
  gap: 14px;
}

.media-card{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
  transform: translateZ(0);
}

.media-card img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  opacity: 0.92;
  transform: scale(1.02);
}

.media-overlay{
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat{
  background: rgba(11,15,20,0.62);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 10px 12px;
  backdrop-filter: blur(10px);
}

.stat-number{
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
}

.stat-label{
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
}

.note-card{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(37,208,197,0.22);
  background: rgba(37,208,197,0.06);
  color: var(--muted);
}

.note-card i{ margin-top: 3px; color: var(--accent-2); }

/* Layout helpers */
.two-col{
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.section-head{
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
}

/* About */
.checklist{
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.checklist li{
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-weight: 600;
}

.checklist i{ color: var(--accent-2); }

.about-card{
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 18px;
  box-shadow: var(--shadow);
}

.mini-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 14px 0 16px;
}

.mini{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 12px;
}

.mini-title{
  display: block;
  color: rgba(255,255,255,0.78);
  font-weight: 800;
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.mini-text{
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Cards */
.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.card{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  padding: 18px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.25);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.card:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,0.065);
  border-color: rgba(255,255,255,0.18);
}

.card-icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(37,208,197,0.95), rgba(255,122,24,0.85));
  color: #0b0f14;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.bullets{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 600;
}

.cta-band{
  margin-top: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,122,24,0.22);
  background: linear-gradient(135deg, rgba(255,122,24,0.12), rgba(37,208,197,0.08));
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* Portfolio */
.portfolio-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.portfolio-card{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  padding: 18px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.portfolio-card:hover{
  transform: translateY(-3px);
  border-color: rgba(37,208,197,0.22);
  background: rgba(255,255,255,0.065);
}

.portfolio-top{
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.logo-badge{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #0b0f14;
  background: linear-gradient(135deg, rgba(255,122,24,0.95), rgba(37,208,197,0.95));
}

.link{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
  color: rgba(255,255,255,0.82);
  font-weight: 800;
}

.link:hover{ color: var(--accent-2); }

.note{
  margin-top: 16px;
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}

.note i{ margin-top: 3px; color: var(--accent-2); }

/* Process */
.process{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.step{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  padding: 16px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.step:hover{
  transform: translateY(-3px);
  border-color: rgba(255,122,24,0.22);
  background: rgba(255,255,255,0.065);
}

.step-icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 10px;
}

.process-visual{
  position: relative;
  margin-top: 18px;
  padding: 14px 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.035);
  overflow: hidden;
}

.rail{
  position: absolute;
  left: 18px; right: 18px;
  top: 50%;
  height: 2px;
  background: rgba(255,255,255,0.14);
}

.rail-dot{
  position: relative;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(11,15,20,0.55);
  color: rgba(255,255,255,0.82);
  font-weight: 800;
  margin-right: 10px;
}

/* Contact */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.contact-cards{
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.contact-card{
  display: flex;
  gap: 12px;
  align-items: center;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  padding: 12px 14px;
}

.contact-card i{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--accent-2);
}

.micro{
  margin-top: 14px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: center;
}

.form{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  padding: 18px;
  box-shadow: var(--shadow);
}

.form-head{
  margin-bottom: 10px;
}

label{
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

label span{
  font-weight: 700;
  color: rgba(255,255,255,0.84);
}

input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(11,15,20,0.6);
  color: var(--text);
  outline: none;
  transition: border-color .15s ease, transform .15s ease;
}

input:focus, textarea:focus{
  border-color: rgba(37,208,197,0.38);
  transform: translateY(-1px);
}

.form-note{
  margin-top: 10px;
  min-height: 22px;
}

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  padding: 26px 0 18px;
  background: rgba(0,0,0,0.12);
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.85fr;
  gap: 18px;
  align-items: start;
}

.footer-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-links, .footer-legal{
  display: grid;
  gap: 10px;
  justify-items: start;
}

.footer a{
  color: var(--muted);
  font-weight: 650;
}

.footer a:hover{ color: var(--text); }

.social{
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social a{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  transition: transform .15s ease, border-color .15s ease;
}

.social a:hover{
  transform: translateY(-2px);
  border-color: rgba(255,122,24,0.25);
}

.footer-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid,
  .two-col,
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .media-card img{ height: 320px; }
  .cards{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; }
  .process{ grid-template-columns: 1fr; }
  .cta-band{ flex-direction: column; align-items: flex-start; }
  .footer-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .nav-toggle{ display: inline-flex; }
  .nav-links{
    position: absolute;
    right: 20px;
    top: 64px;
    width: min(340px, calc(100% - 40px));
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(11,15,20,0.92);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.is-open{ display: flex; }
  .nav-links a{ padding: 10px 12px; }
}
/* Portfolio – Tags & Actions */
.tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tag{
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-weight: 650;
  font-size: 0.88rem;
}

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