:root{
  --bg:#0b0c10;
  --panel:#11131a;
  --text:#e9e9ef;
  --muted:#a6a7b3;
  --line:#23263a;
  --accent:#d8ff52;
  --accent2:#7cf7ff;
  --shadow: 0 20px 50px rgba(0,0,0,.35);
  --radius:16px;
  --max: 1080px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(124,247,255,.15), transparent 60%),
              radial-gradient(900px 500px at 80% 0%, rgba(216,255,82,.12), transparent 55%),
              var(--bg);
  line-height:1.55;
}

a{color:inherit}
.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
}
.muted{color:var(--muted)}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(11,12,16,.65);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(35,38,58,.6);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}
.brand{
  display:flex; align-items:baseline; gap:10px;
  text-decoration:none;
}
.brand strong{
  letter-spacing:.12em; text-transform:uppercase; font-size:14px;
}
.brand span{color:var(--muted); font-size:13px}
nav{
  display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end;
  font-size:13px; color:var(--muted);
}
nav a{ text-decoration:none; padding:6px 8px; border-radius:10px; }
nav a:hover{ background:rgba(255,255,255,.06); color:var(--text); }

.hero{ padding:72px 0 34px; } /* mehr Luft oben/unten */


.hero .kicker{
  margin:0 0 10px;
  font-size:18px;           /* größer */
  color:rgba(233,233,239,.75);
}

h1{
  margin:0 0 16px;
  font-size:44px;
  line-height:1.08;
}

.hero .trustline{
  margin: 8px 0 18px;       /* direkt unter kicker */
  font-size:13px;
  color:rgba(233,233,239,.65);
}

.hero .subhead{
  margin: 0;
  font-size:18px;
  color:var(--muted);
  max-width: 60ch;
}

.hero .hero-quote{
  margin: 16px 0 0;
}
.hero-quote strong{ color:var(--accent); font-weight:700; }

.trustline{
  margin:12px 0 0;
  font-size:13px;
  color:rgba(233,233,239,.78);
}
.trustline .dot{opacity:.45; padding:0 6px;}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  margin-top:26px;
  align-items:stretch;
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,.10));
  border:1px solid rgba(35,38,58,.9);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-pad{ padding:20px; }

.cta-row{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:16px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(35,38,58,.9);
  background: rgba(255,255,255,.04);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  transition: transform .05s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:hover{ background: rgba(255,255,255,.07); }
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: linear-gradient(90deg, rgba(216,255,82,.22), rgba(124,247,255,.16));
  border-color: rgba(216,255,82,.35);
}
.btn-primary:hover{ border-color: rgba(216,255,82,.55); }

.media{
  position:relative;
  height:100%;
  min-height:220px;
  background:#0f1220;
}
.media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(1.05) contrast(1.02);
  opacity:.92;
}
.media .tag{
  position:absolute;
  left:14px; bottom:14px;
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(11,12,16,.55);
  border:1px solid rgba(35,38,58,.8);
  color:rgba(233,233,239,.85);
  backdrop-filter: blur(10px);
}

section{ padding:34px 0; }
.section-title{
  display:flex; align-items:baseline; justify-content:space-between; gap:16px;
  border-top:1px solid rgba(35,38,58,.7);
  padding-top:26px;
  margin-top:8px;
}
h2{
  margin:0;
  font-size:26px;
  letter-spacing:-.01em;
}
.section-note{ color:var(--muted); font-size:14px; margin:0; }

.reasons{
  display:grid;
  grid-template-columns: 1fr;
  gap:16px;
  margin-top:18px;
}
.reason h3{ margin:0; font-size:18px; }
.lede{ color:var(--muted); margin:0; }
.copy p{ margin:10px 0; }
.bullets{ margin:10px 0 0 0; padding-left:18px; }
.bullets li{ margin:6px 0; color:rgba(233,233,239,.85); }

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  margin-top:18px;
}
.process p{ margin:10px 0; color:rgba(233,233,239,.88); }

.cases{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
  margin-top:18px;
}
.case{ grid-column: span 12; }
.case-media{ height:240px; }
.case-body{ padding:18px; }
.case h4{ margin:0 0 6px; font-size:18px; }
.case p{ margin:8px 0; color:rgba(233,233,239,.85); }
.label{ color:var(--muted); font-size:13px; margin-top:10px; }

.contact{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  align-items:start;
  margin-top:18px;
}
.contact p{ margin:10px 0; color:rgba(233,233,239,.86); }
.lines{ display:grid; gap:10px; margin-top:12px; font-size:15px; }
.lines a{ text-decoration:none; }
.lines a:hover{ text-decoration:underline; }

form{ display:grid; gap:10px; }
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(35,38,58,.9);
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-size:14px;
  outline:none;
}
textarea{ min-height:120px; resize:vertical; }
input:focus, textarea:focus{
  border-color: rgba(216,255,82,.45);
  box-shadow: 0 0 0 3px rgba(216,255,82,.10);
}

.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:10px; }

footer{
  padding:26px 0 40px;
  color:var(--muted);
  font-size:13px;
  text-align:center;
}
footer a{ color:rgba(233,233,239,.85); text-decoration:none; }
footer a:hover{ text-decoration:underline; }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  h1{ font-size:36px; }
}
@media (max-width: 560px){
  nav{ display:none; }
  .form-row{ grid-template-columns: 1fr; }
  h1{ font-size:36px; }
}


/* ===== Leistungen: 3 Textboxen (2 oben, 1 unten) ===== */

.reason-split{
  display:grid;
  grid-template-columns: 1fr 1fr;   /* beide gleich breit */
  gap:20px;
  margin-top:18px;
}

.text-box{
  width:100%;
  padding:8px 8px;
  border-radius:10px;
  background: rgba(255,255,255,.00);
  border:2px solid var(--accent); */
}

.text-box p{
  margin:12px 0;
  color:rgba(233,233,239,.88);
}

.question{
  font-size:19px;
  font-weight:600;
  margin:16px 0 0;
  color:rgba(233,233,239,.95);
}

.examples-box{
  grid-column: 1 / -1;  /* nimmt die volle Breite unter beiden Boxen ein */
  margin-top:0;         /* Abstand kommt über gap */
}

.examples-title{
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--accent);
  margin:10 0 10px;
}

@media (max-width:900px){
  .reason-split{
    grid-template-columns: 1fr;   /* mobil untereinander */
  }
  .examples-box{
    grid-column: auto;
  }
}

.dot{opacity:.45; padding:0 6px;}

.hero{
  padding-left: 24px;
  padding-right: 24px;
}

section{
  padding-left: 24px;
  padding-right: 24px;
}

/* --- Wrap: garantiert Abstand links/rechts --- */
.wrap{
  max-width: var(--max, 1120px);
  margin: 0 auto;
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
}

/* --- Hero spacing --- */
.hero{
  padding: 40px 0 40px; /* oben/unten, seitlich kommt von .wrap */
}

.hero-inner{
  /* optional: damit nichts aus dem wrap "rausläuft" */
  width: 100%;
}

.hero .kicker{
  margin: 10px 0 8px;
  font-size: 24px;
  font-weight:600;               /* größer als vorher */
  color: rgba(233,233,239,.78);
}

.hero .trustline{
  margin: 0 0 18px;
  font-size: 13px;
  color: rgba(233,233,239,.62);
  line-height: 1.6;
}

.dot{ opacity: .45; padding: 0 6px; }

.hero .subhead{
  margin: 0;
  font-size: 18px;
  color: rgba(233,233,239,.72);
  max-width: 62ch;
}

.hero .hero-quote{
  margin: 16px 0 0;
}

.hero-proof{
  margin: 0;
  font-size:18px;
  color: rgba(233,233,239,.78);
}

.hero-text{
  margin-top:40px;
  margin-bottom:80px;

/*
  padding-left:10px;     
*/
  font-size:20px;        /* deutlich größer */
  line-height:1.45;

  max-width:800px;
}

.hero-text p{
  margin-bottom:20px;
}

.hero-quote{
  font-size:22px;
  font-weight:400;
  margin-top:30px;
}


.hero h1{
  color:var(--accent);
  margin-bottom:24px;
}


/* BEGIN Accordion -----------------------------------------------------------------------------------*/

.accordion{
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.acc-item{
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* damit scrollIntoView nicht unter dem Header klebt */
.acc-item{
  scroll-margin-top: 90px; /* ggf. an Headerhöhe anpassen */
}

.acc-trigger{
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 0;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  text-align: left;
  color: inherit;
}

.acc-title{
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
}

/* Chevron synchron zur Höhe */
.acc-icon{
  width: 14px;
  height: 14px;
  border-right: 2px solid rgba(233,233,239,.75);
  border-bottom: 2px solid rgba(233,233,239,.75);
  transform: rotate(-45deg);
  transition: transform var(--acc-h-ms) cubic-bezier(.42,0,.58,1);
  flex: 0 0 auto;
}

.acc-trigger[aria-expanded="true"] .acc-icon{
  transform: rotate(45deg);
}

/* Panel: Höhe per JS, Fade per JS */
.acc-panel{
  height: 0;
  overflow: hidden;
  opacity: 0;          /* Start: unsichtbar */
}

.acc-panel-inner{
  padding: 10px 0 34px;
}

/* Mobile: Titel etwas kleiner */
@media (max-width: 700px){
  .acc-title{ font-size: 26px; }
  .acc-trigger{ padding: 18px 0; }
}

:root{
  --acc-ease: cubic-bezier(.42,0,.58,1); /* echtes ease-in-out */
  --acc-h-ms: 1000ms;  /* Höhe */
  --acc-f-ms: 1000ms;   /* Fade */
}


/* END Accordion -----------------------------------------------------------------------------------*/


.section-title h2{
  color: var(--accent);
  letter-spacing: 0.02em;
  font-weight: 500;
}


/* BEGIN Leistungen -----------------------------------------------------------------------------------*/

.leistung-headline {
  font-size: 22px;
  font-weight: 400;
  margin-top: 0px;
  padding-top: 0;
}

.accent{
  color: var(--accent);
}
/* END Leistungen -----------------------------------------------------------------------------------*/




