@font-face {
  font-family: 'Inter';
  src: url('Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#6b7280;
  --brand:#111;
  --accent:#2b7fff;
  --accent-2:#6a5cff;
  --grad: linear-gradient(90deg,#2b7fff 0%, #6a5cff 50%, #a855f7 100%);
  --card:#fff;
  --border:#e9e9ee;
  --shade:0 12px 28px rgba(0,0,0,.12);
  --ring: 0 0 0 3px rgba(43,127,255,.25);
  --success: #10b981;
  --success-bg: rgba(16,185,129,.10);
  --danger:  #ef4444;
  --danger-bg: rgba(239,68,68,.10);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;display:block}
a{color:inherit}
.container{width:min(1120px,100%); margin:0 auto; padding:0 16px}

/* Skiplink */
.skiplink{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skiplink:focus{
  position:fixed; left:16px; top:16px; width:auto; height:auto; padding:8px 12px; background:#fff; border:1px solid var(--border); border-radius:10px; z-index:9999;
}

/* NAV (mobile-first) */
.nav{position:sticky;top:0;background:#fff;border-bottom:1px solid var(--border);z-index:50; backdrop-filter:saturate(180%) blur(6px)}
.nav__inner{display:flex;align-items:center;justify-content:space-between;min-height:64px}
.brand{display:flex;align-items:center;gap:8px;color:#111;text-decoration:none;font-weight:800}
.brand__logo{display:inline-flex;width:28px;height:28px;align-items:center;justify-content:center;background:#f1f5ff;border-radius:8px}
.menu{display:none;position:absolute;left:0;right:0;top:64px;background:#fff;border-bottom:1px solid var(--border);padding:12px 16px;flex-direction:column;gap:10px}
.menu a{color:#111;text-decoration:none;font-weight:700}
.menu .btn{margin-top:4px}
.menu--open{display:flex}

.hamburger{display:inline-flex;flex-direction:column;gap:4px;background:none;border:none;cursor:pointer;padding:8px;border-radius:10px}
.hamburger:focus{outline:none; box-shadow: var(--ring)}
.hamburger span{display:block;width:22px;height:2px;background:#111;border-radius:2px}

/* DESKTOP NAV */
@media(min-width:980px){
  .hamburger{display:none}
  .menu{display:flex; position:static; flex-direction:row; align-items:center; gap:18px; border:0; padding:0}
  .menu .btn{margin-left:6px; margin-top:0}
}

/* BUTTONS */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:12px 16px;border-radius:12px;border:1px solid #111;background:#111;color:#fff;
  text-decoration:none;font-weight:800;transition:transform .08s ease,opacity .15s, box-shadow .15s;
}
.btn:active{transform:translateY(1px)}
.btn:focus{outline:none; box-shadow: var(--ring)}
.btn--ghost{background:#fff;color:#111;border-color:#111}
.btn--primary{background:var(--accent);border-color:var(--accent)}
.btn-wide{width:100%}

/* CTA oben rechts – nicht mehr schwarz */
.btn--cta{
  background:linear-gradient(90deg, var(--accent), var(--accent-2));
  border-color:transparent;
  color:#fff;
  box-shadow:0 8px 18px rgba(43,127,255,.25);
}
.btn--cta:hover{opacity:.95}

/* Sticky Mobile CTA */
.sticky-cta{
  position:fixed; left:0; right:0; bottom:0; z-index:60; background:#fff; border-top:1px solid var(--border);
  padding:10px 16px;
}
.sticky-cta .btn{width:100%}

/* HERO */
.hero{padding:40px 0 10px;background:linear-gradient(180deg,#f8f9ff 0%, #ffffff 70%)}
.hero__grid{display:grid;grid-template-columns:1fr;gap:22px;align-items:center}
.hero h1{font-size:32px;line-height:1.15;margin:0 0 10px;letter-spacing:-0.02em}
.hero .lead{color:#374151;margin:0 0 16px}
.grad{background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent}
.hero__card{display:flex;flex-direction:column;gap:8px}
.mock{border:1px solid var(--border);border-radius:16px;box-shadow:var(--shade);overflow:hidden;background:#fff}
.mock__nav{background:#0f172a;color:#cbd5e1;padding:8px 12px;font-size:13px}
.mock__content{padding:14px 14px 18px;display:flex;flex-direction:column;gap:8px}
.bubble{padding:10px 12px;border-radius:14px;max-width:85%}
.bubble.bot{background:#f2f4f7;color:#111;align-self:flex-start}
.bubble.user{background:var(--accent);color:#fff;align-self:flex-end}
.typing{display:inline-flex;gap:4px}
.typing i{width:6px;height:6px;background:#888;border-radius:50%;display:block;animation:bounce 1s infinite ease-in-out;opacity:.7}
.typing i:nth-child(2){animation-delay:.15s}
.typing i:nth-child(3){animation-delay:.3s}
@keyframes bounce{0%,80%,100%{transform:translateY(0);opacity:.7}40%{transform:translateY(-4px);opacity:1}}

@media(min-width:980px){
  .hero__grid{grid-template-columns:1.1fr .9fr}
  .hero h1{font-size:48px}
}

/* TRUST */
.trust{padding:12px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:#fff}
.trust--inline{margin-top:8px}
.trust__row{display:flex;gap:8px;flex-wrap:wrap;justify-content:center}
.trust__item{font-size:14px;color:#374151;background:#f9fafb;border:1px solid #eef2ff;padding:8px 10px;border-radius:999px}

/* SECTIONS */
.section{padding:48px 0}
.section h2{font-size:26px;margin:0 0 16px}
.muted{color:var(--muted)}
.center{text-align:center}

/* CARDS / GRIDS (mobile-first) */
.grid{display:grid;grid-template-columns:1fr;gap:14px}
.card{background:var(--card);border:1px solid var(--border);border-radius:14px;padding:16px}
.features .card h3{margin:0 0 6px}
.features .card p{margin:0;color:#374151}

@media(min-width:760px){ .grid{grid-template-columns:repeat(2,1fr)} }
@media(min-width:1080px){ .grid{grid-template-columns:repeat(3,1fr)} }

/* INDUSTRIES */
.industries .card h3{margin:0 0 6px}

/* PRICING */
.toggle{display:flex;justify-content:center;margin-bottom:10px}
.toggle__label{font-weight:700;display:flex;gap:8px;align-items:center}
.toggle .save{color:#10b981;font-weight:800}
.pricing{align-items:stretch}
.pricecard{background:#fff;border:1px solid var(--border);border-radius:16px;padding:18px;display:flex;flex-direction:column;gap:12px;position:relative}
.pricecard .price{font-size:30px;font-weight:800}
.pricecard .price small{font-weight:700;color:#6b7280}
.pricecard ul{margin:0;padding-left:18px}
.pricecard--pop{border-color:#2b7fff;box-shadow:0 10px 24px rgba(43,127,255,.15)}
.ribbon{position:absolute;top:12px;right:12px;background:#2b7fff;color:#fff;font-weight:700;padding:4px 8px;border-radius:8px;font-size:12px}

/* DEMO */
.demo-embed{margin-top:10px}
.demo-card{border:1px solid var(--border);border-radius:14px;padding:16px;background:#fff}
pre{background:#0f172a;color:#cbd5e1;padding:12px;border-radius:10px;overflow:auto}

/* CONTACT – volle Breite auf Desktop (2 Spalten) */
.contact{display:grid;grid-template-columns:1fr;gap:16px}
@media(min-width:980px){
  .contact{grid-template-columns:1fr 1fr; align-items:stretch}
  .contact .card, .contact .form{height:100%}
}
.contact .form .row{margin-bottom:10px}
label{display:block;font-weight:700;margin-bottom:6px}
input[type="text"],input[type="email"],input[type="tel"],input[type="url"],textarea{
  width:100%;padding:12px 14px;border:1px solid #ddd;border-radius:10px;background:#fff;color:#111;font:inherit;
}
input:focus, textarea:focus{outline:none; box-shadow: var(--ring); border-color: var(--accent)}
.checkbox{display:flex;align-items:flex-start;gap:8px;font-weight:500}
.checkbox input{margin-top:3px}
.row--inline{display:flex}
.row--inline .checkbox{gap:8px}

/* FOOTER */
.footer{border-top:1px solid var(--border);background:#fff;padding:24px 0;margin-top:12px}
.foot__grid{display:flex;gap:20px;flex-wrap:wrap;justify-content:space-between;align-items:flex-start}
.foot__nav{display:flex;gap:14px;flex-wrap:wrap}
.foot__nav a{color:#111;text-decoration:none}
.foot__copy{padding-top:8px;color:#6b7280;font-size:14px}

/* UTIL */
.hero__card small a{color:#111}

/* Subtle motions for hover (improve perceived quality) */
.card:hover{transform:translateY(-1px); transition:transform .15s ease, box-shadow .15s ease; box-shadow:0 10px 18px rgba(0,0,0,.04)}

.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}

/* Notice / Alert */
.notice{
  display:none; /* per JS ein-/ausblenden */
  margin-top:12px;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
  color:var(--text);
  font-weight:600;
  box-shadow: var(--shade);
  align-items:center;
  gap:10px;
}

.notice.show{ display:grid; grid-template-columns:auto 1fr auto; animation: notice-in .18s ease-out; }
.notice__icon{ width:20px; height:20px; display:inline-grid; place-items:center; border-radius:6px; font-size:14px; }
.notice__close{ background:none; border:0; cursor:pointer; font-weight:800; line-height:1; padding:2px 6px; border-radius:8px; }
.notice__close:focus{ outline:none; box-shadow: var(--ring); }

/* Varianten */
.notice--success{
  border-color: color-mix(in srgb, var(--success) 40%, var(--border));
  background: var(--success-bg);
}
.notice--success .notice__icon{
  background: var(--success);
  color:#fff;
}

.notice--error{
  border-color: color-mix(in srgb, var(--danger) 40%, var(--border));
  background: var(--danger-bg);
}
.notice--error .notice__icon{
  background: var(--danger);
  color:#fff;
}

/* kleine Eintritts-Animation */
@keyframes notice-in {
  from { transform: translateY(-4px); opacity:.0; }
  to   { transform: translateY(0);    opacity:1; }
}