/* Next Cloud Solution – minimal static site
   Author: ChatGPT (generated)
*/

:root{
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --card: #f8fafc;
  --line: #e2e8f0;
  --brand: #2563eb;
  --brand2: #0ea5e9;
  --shadow: 0 10px 25px rgba(2,6,23,.08);
  --radius: 18px;
  --max: 1120px;
}

*{ 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: var(--bg);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: .2em; }

.container{
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip:focus{
  left:1rem; top:1rem;
  width:auto;height:auto;
  background:#fff;
  border:1px solid var(--line);
  padding:.6rem .8rem;
  border-radius: 10px;
  z-index: 9999;
}

header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: .9rem 0;
  gap: 1rem;
}

.brand{
  display:flex;
  align-items:center;
  gap:.75rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.brand-mark{
  height: 55px;
  width: auto;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}


nav ul{
  display:flex;
  list-style:none;
  gap: 1.1rem;
  padding:0;
  margin:0;
  align-items:center;
}
nav a{
  color: var(--muted);
  font-weight: 600;
  font-size: .95rem;
}
nav a.cta{
  color: #fff;
  background: var(--brand);
  padding: .55rem .85rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(37, 99, 235, .22);
}
nav a.cta:hover{ text-decoration: none; filter: brightness(1.03); }

.menu-btn{
  display:none;
  border:1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: .55rem .7rem;
  font-weight: 700;
}

.hero{
  padding: 4.2rem 0 2.6rem;
  background: radial-gradient(900px 300px at 20% 0%, rgba(37,99,235,.12), transparent 60%),
              radial-gradient(700px 260px at 70% 10%, rgba(14,165,233,.10), transparent 60%);
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: start;
}
h1{
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 .9rem;
}
.lead{
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 0 1.4rem;
  max-width: 55ch;
}

.actions{
  display:flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin: 1.2rem 0 1.8rem;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 750;
  text-decoration: none !important;
}
.btn.primary{
  background: var(--brand);
  color:#fff;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(37, 99, 235, .22);
}
.btn.ghost{
  background:#fff;
  color: var(--text);
}
.btn:hover{ filter: brightness(1.02); }

.trust{
  display:flex;
  gap:.75rem;
  flex-wrap: nowrap;          /* nicht umbrechen auf Desktop */
  width: 100%;                /* volle Breite */
}

.trust .pill{
  flex: 1 1 0;                /* beide nehmen gleich viel Platz */
  justify-content: center;    /* Inhalt mittig */
  text-align: center;
}

/* Mobile: wieder umbrechen, damit es nicht gequetscht aussieht */
@media (max-width: 720px){
  .trust{ flex-wrap: wrap; }
  .trust .pill{ flex: 1 1 100%; }
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding: .42rem .7rem;
  border-radius: 999px;
  background: var(--card);
  border:1px solid var(--line);
  color: var(--muted);
  font-weight: 650;
  font-size: .92rem;
}

.section{
  padding: 3.2rem 0;
}
.section h2{
  font-size: 1.7rem;
  margin: 0 0 .6rem;
  letter-spacing: -0.02em;
}
.section p.sub{
  color: var(--muted);
  margin:0 0 1.6rem;
  max-width: 70ch;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.card{
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 10px 22px rgba(2,6,23,.04);
}
.card h3{
  margin:0 0 .35rem;
  letter-spacing:-0.02em;
}
.card p{ margin:0; color: var(--muted); }

.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.step{
  padding: 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:#fff;
}
.step .n{
  width: 30px; height: 30px;
  border-radius: 10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, rgba(37,99,235,.18), rgba(14,165,233,.18));
  font-weight: 900;
  margin-bottom: .55rem;
}
.step h3{ margin: 0 0 .3rem; }
.step p{ margin:0; color: var(--muted); }

.quote{
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:#fff;
  box-shadow: 0 10px 22px rgba(2,6,23,.04);
}
blockquote{
  margin: 0 0 .8rem;
  color: var(--text);
  font-weight: 650;
}
cite{
  font-style: normal;
  color: var(--muted);
  font-weight: 650;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items:start;
  min-width: 0;
}

.cert-banner{
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.form{
  display:grid;
  gap: .8rem;
}
label{ font-weight: 700; font-size: .95rem; }
input, textarea{
  width: 100%;
  padding: .75rem .85rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background:#fff;
  font: inherit;
}
textarea{ min-height: 130px; resize: vertical; }

small.hint{ color: var(--muted); }
.footer{
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer a{ color: var(--muted); font-weight: 650; }
.footer-row{
  display:flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.kbd{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  border:1px solid var(--line);
  background:#fff;
  padding:.15rem .35rem;
  border-radius: 8px;
  font-size: .9rem;
}

.legal{
  padding: 2.2rem 0 3.2rem;
}
.legal h1{ margin-top: 0; }
.legal p, .legal li{ color: var(--muted); max-width: 80ch; }
.legal a{ color: var(--brand); }

@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  nav ul{
    display:none;
    position:absolute;
    right: 1rem;
    top: 64px;
    flex-direction: column;
    background:#fff;
    border:1px solid var(--line);
    border-radius: 16px;
    padding: .8rem;
    min-width: 230px;
    box-shadow: var(--shadow);
  }
  nav ul.open{ display:flex; }
  .menu-btn{ display:inline-flex; }
}

.status-badge{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.18);
  color: var(--text);
  font-weight: 800;
  letter-spacing: .01em;
  margin-bottom: .85rem;
}
.status-badge .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e; /* green dot */
  box-shadow: 0 0 0 3px rgba(34,197,94,.18);
}
/* Footer icon links */
.socials{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  text-decoration: none;
}

.social-link:hover{
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
}

.social-icon{
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Headshot in hero card */
.headshot-wrap{
  display:flex;
  justify-content:center;
  margin: -0.2rem 0 0.9rem;
}

.headshot{
  width: clamp(64px, 9vw, 96px) !important;   /* skaliert, aber gedeckelt */
  height: clamp(64px, 9vw, 96px) !important;
  max-width: 96px !important;
  max-height: 96px !important;
  border-radius: 999px;
  object-fit: cover;
  display:block;
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
}

/* Tags / pills */
.tags{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .4rem;
}

.tag{
  display: inline-flex;
  align-items: center;
  padding: .35rem .6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(2,6,23,.02);
  color: var(--text);
  font-weight: 700;
  font-size: .92rem;
}
.tag-break{
  flex-basis: 100%;
  width: 0;
  height: 0;
}
@media (max-width: 520px){
  .tag-break{ display:none; }
}

.tags.tags-4{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;  /* verteilt die Items über die ganze Zeile */
  row-gap: .5rem;                 /* Abstand zwischen den Zeilen */
  column-gap: 0;                  /* kein extra Gap, sonst nicht „gleichmäßig“ */
}

/* Break erzwingt neue Zeile */
.tags.tags-4 .tag-break{
  flex-basis: 100%;
  width: 0;
  height: 0;
}

@media (max-width: 520px){
  .tags.tags-4{
    justify-content: flex-start;
    column-gap: .5rem;
  }
  .tags.tags-4 .tag-break{ display:none; }
}