/* build: 20260201a */
:root{
  --bg:#ffffff;
  --text:#0b1220;            /* near-black navy */
  --muted:#5b6475;           /* cool grey */
  --line:#e6e9ef;
  --card:#ffffff;

  /* v-labs inspired accents */
  --brand:#3b5cff;           /* indigo/blue */
  --brand-soft:#eef2ff;      /* very light indigo */
  --accent:#22d3ee;          /* cyan accent (very sparing) */

  --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.55;
}

a{color:var(--brand2); text-decoration:none}
a:hover{text-decoration:underline}
p{margin:0 0 1rem 0}
h1,h2,h3{line-height:1.2; margin:0 0 .75rem 0}
h1{font-size: clamp(2rem, 4vw, 3rem); letter-spacing:-0.02em}
h2{font-size: clamp(1.5rem, 2.4vw, 2rem); letter-spacing:-0.01em}
h3{font-size: 1.125rem}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.section{padding:104px 0}
.section.compact{padding:88px 0}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.88);
  backdrop-filter:saturate(140%) blur(10px);
  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:12px;
  font-weight:700; color:var(--text);
}
.brand-mark{
  width:34px; height:34px; border-radius:10px;
  background: linear-gradient(135deg, var(--brand), #0a3d91);
  box-shadow:none;
}
.brand small{display:block; font-weight:600; color:var(--muted); margin-top:-2px}
.navlinks{
  display:flex; gap:18px; align-items:center; flex-wrap:wrap; justify-content:flex-end;
}
.navlinks a{color:var(--text); font-weight:600; padding:8px 10px; border-radius:10px}
.navlinks a.active, .navlinks a:hover{background:var(--card); text-decoration:none}

.hero{
  padding:74px 0 44px;
  background:
    radial-gradient(1000px 450px at 15% 0%, rgba(11,42,91,.14), transparent 60%),
    radial-gradient(900px 420px at 95% 20%, rgba(15,59,128,.12), transparent 58%),
    linear-gradient(180deg, #ffffff, #ffffff);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:start;
}
.hero-card{
  background: linear-gradient(180deg, rgba(248,250,252,.95), rgba(248,250,252,.8));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow:none;
  padding:26px;
}
.kicker{font-weight:700; color:var(--brand); letter-spacing:.06em; text-transform:uppercase; font-size:.78rem}
.lead{font-size:1.1rem; color:var(--muted)}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px; border:1px solid var(--line);
  font-weight:700; text-decoration:none;
}
.btn.primary{background:linear-gradient(135deg, var(--brand), var(--brand2)); color:white; border-color:transparent}
.btn.primary:hover{background:#082248; text-decoration:none}
.btn.ghost{background:white}
.btn.ghost:hover{background:var(--card); text-decoration:none}

.cards{display:grid; gap:16px}
.cards.three{grid-template-columns: repeat(3, 1fr)}
.cards.two{grid-template-columns: repeat(2, 1fr)}
.card{
  background: white;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow:none;
  padding:26px;
}
.card.soft{background:var(--card)}
.card h3{margin-bottom:8px}
.card p{color:var(--muted)}
.pills{display:flex; gap:8px; flex-wrap:wrap; margin-top:10px}
.pill{
  font-size:.85rem;
  border:1px solid var(--line);
  background:white;
  padding:6px 10px;
  border-radius:999px;
  color:var(--muted);
}

.quote{
  border-left:4px solid var(--brand);
  padding:14px 16px;
  background: #f7fafc;
  border-radius: 14px;
}
.quote p{margin:0; color:var(--text)}
.quote .by{margin-top:10px; color:var(--muted); font-weight:600; font-size:.95rem}

.footer{
  padding:34px 0;
  border-top:1px solid var(--line);
  color:var(--muted);
}
.footer-grid{
  display:grid; gap:16px;
  grid-template-columns: 1.3fr .7fr;
}
.footer a{color:var(--muted)}
.small{font-size:.92rem}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
}

.form{
  display:grid; gap:12px;
}
.input{
  display:grid; gap:6px;
}
.input label{font-weight:700; font-size:.92rem}
.input input, .input textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius: 14px;
  padding:12px 12px;
  font: inherit;
}
.input textarea{min-height:140px; resize:vertical}
.notice{
  font-size:.9rem; color:var(--muted)
}

.breadcrumb{margin-top:10px; color:var(--muted); font-size:.92rem}
.breadcrumb a{color:var(--muted); font-weight:600}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .cards.three{grid-template-columns:1fr}
  .cards.two{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .navlinks{gap:8px}
}


.section.dark{
  background:#f8fafc; /* very light grey instead of navy block */
  color:var(--text);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:white;
  color:var(--muted);
  font-weight:700;
  font-size:.85rem;
}
.badge.dark{
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(229,231,235,.90);
}

.quote{
  border-left:0;
  padding:18px 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border-radius: var(--radius);
}
.quote p{margin:0; color:inherit}
.quote .by{margin-top:12px; color: rgba(229,231,235,.78); font-weight:700; font-size:.95rem}


/* Typography – Tech Executive */
body{
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height:1.7;
  letter-spacing:0.1px;
}

h1{font-size:2.6rem; letter-spacing:-0.5px;}
h2{font-size:1.6rem; letter-spacing:-0.2px;}
h3{font-size:1.1rem;}

.lead{
  max-width:760px;
  color:var(--muted);
}

/* Minimal cards */
.card{
  border:1px solid var(--line);
  background:#fff;
}

/* Buttons */
.btn.primary{
  background:var(--brand);
  color:#fff;
  border:none;
}
.btn.primary:hover{opacity:.9}

.btn.ghost{
  border:none;
  color:var(--brand);
  padding-left:0;
}

/* Sections */
.section.dark{
  background:#f8fafc; /* very light grey instead of navy block */
  color:var(--text);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}


/* Reference – minimal executive */
.section.dark .card{
  background:#ffffff;
  border:1px solid var(--line);
  border-radius:var(--radius);
}

.badge.dark{
  background:#ffffff;
  border:1px solid var(--line);
  color:var(--muted);
}



body{
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height:1.75;
  letter-spacing:0.1px;
  background:var(--bg);
  color:var(--text);
}

h1{
  font-size:2.7rem;
  letter-spacing:-0.6px;
}
h2{
  font-size:1.65rem;
  letter-spacing:-0.25px;
}
h3{
  font-size:1.05rem;
  color:var(--text);
}

.lead{
  max-width:760px;
  color:var(--muted);
}

/* Soft gradient sections (v-labs feel) */


/* Cards: ultra minimal */
.card{
  border:1px solid var(--line);
  background:#fff;
  box-shadow:none;
}

/* Reference card special */
.card.reference{
  background:
    linear-gradient(180deg, rgba(59,92,255,.03), rgba(255,255,255,1));
}

/* Buttons */
.btn.primary{
  background:linear-gradient(135deg, var(--brand), #6b7cff);
  color:#fff;
  border:none;
}
.btn.primary:hover{opacity:.92}

.btn.ghost{
  border:none;
  color:var(--brand);
  padding-left:0;
}

/* Badges */
.badge{
  background:var(--brand-soft);
  color:var(--brand);
  border:none;
  font-weight:600;
}


body{ background:#ffffff; }

/* Reference – calm, aligned with page */
.section.reference{
  background:#ffffff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section.reference .card{
  background:#ffffff;
  border:1px solid var(--line);
}




.form-consent{
  display:flex;
  align-items:flex-start;
  gap:12px;
  max-width: 720px;
  margin: 18px 0 22px;
}

.form-consent input[type="checkbox"]{
  margin-top: 4px;
  flex-shrink: 0;
}

.form-consent label{
  display:block;
  line-height: 1.5;
}


/* === Kontaktformular: Intro + Consent Layout (v2.2e) === */
.form-intro{
  max-width: 760px;
  margin: 0 0 22px 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
}

.form-consent{
  display:flex;
  align-items:flex-start;
  gap:12px;
  max-width: 760px;
  margin: 14px 0 18px;
}

.form-consent input[type="checkbox"]{
  margin-top: 4px;
  flex: 0 0 auto;
}

.form-consent label{
  display:block;
  line-height: 1.5;
  color: var(--muted);
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: anywhere;
}
