@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black: #1d1d1f;
    --ink: #2b2b2f;
    --blue: #0071e3;
    --blue-light: #2997ff;
    --blue-deep: #0a3d7a;
    --silver: #6e6e73;
    --line: rgba(0,0,0,0.09);
    --bg: #fbfbfd;
    --bg-soft: #f4f6fb;
    --nav-h: 80px;
    --section-pad: 110px;
    --font: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;
    --maxw: 1140px;
  }

  html { scroll-behavior: smooth; overflow-x: hidden; }
  body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--nav-h);
    background: rgba(251, 251, 253, 0.9);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--line);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px;
    transition: box-shadow 0.3s ease;
  }
  nav.scrolled { box-shadow: 0 1px 16px rgba(0,0,0,0.06); }
  .nav-logo { display: flex; align-items: center; cursor: pointer; }
  .nav-logo img { height: 52px; width: auto; object-fit: contain; display: block; }
  .nav-links { display: flex; gap: 2px; align-items: center; }
  .nav-link {
    font-size: 14px; font-weight: 450; color: var(--black);
    padding: 8px 14px; border-radius: 8px;
    opacity: 0.7; transition: opacity 0.2s, background 0.2s;
    cursor: pointer; background: none; border: none;
    font-family: var(--font); letter-spacing: -0.01em;
    text-decoration: none; display: inline-block;
    position: relative;
  }
  .nav-link:hover { opacity: 1; background: rgba(0,0,0,0.05); }
  .nav-link.active { opacity: 1; color: var(--blue); font-weight: 500; }
  .nav-link.active::after {
    content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px;
    height: 2px; border-radius: 2px; background: var(--blue);
  }
  .nav-cta {
    margin-left: 8px; padding: 9px 18px; border-radius: 980px;
    background: var(--blue); color: #fff; font-size: 14px; font-weight: 500;
    border: none; cursor: pointer; font-family: var(--font); letter-spacing: -0.01em;
    transition: background 0.2s, transform 0.2s; opacity: 1;
    text-decoration: none; display: inline-block;
  }
  .nav-cta:hover { background: #0077ed; transform: translateY(-1px); }

  /* PAGE ENTRANCE */
  body { animation: pageIn 0.36s ease; }
  @keyframes pageIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

  .scroll-progress { position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 999; height: 2px; }
  .scroll-progress-bar { height: 100%; width: 0%; background: var(--blue); transition: width 0.1s linear; }

  /* HERO */
  .hero {
    min-height: 90vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    position: relative; overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f3f7fe 100%);
    padding: calc(var(--nav-h) + 48px) 24px 72px;
  }
  .hero::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
    background: var(--line);
  }
  .hero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(90px); opacity: 0.32; pointer-events: none;
  }
  .orb1 { width: 520px; height: 520px; background: radial-gradient(circle, #bcd6ff, transparent 70%); top: -120px; right: -80px; }
  .orb2 { width: 420px; height: 420px; background: radial-gradient(circle, #cfe3ff, transparent 70%); bottom: -120px; left: -60px; }

  .hero-logo { z-index: 2; margin-bottom: 30px; opacity: 0; transform: translateY(16px); animation: fadeUp 0.7s 0.05s ease forwards; }
  .hero-logo img { height: 96px; width: auto; }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 500; letter-spacing: 0.01em; color: var(--blue-deep);
    background: rgba(0,113,227,0.08); border: 1px solid rgba(0,113,227,0.18);
    padding: 6px 14px; border-radius: 980px;
    margin-bottom: 26px; position: relative; z-index: 2;
    opacity: 0; transform: translateY(16px); animation: fadeUp 0.8s 0.2s ease forwards;
  }
  .hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: #34c759; box-shadow: 0 0 0 3px rgba(52,199,89,0.18); }

  .hero-title {
    font-size: clamp(32px, 6.2vw, 58px); font-weight: 700;
    letter-spacing: -0.035em; line-height: 1.06; max-width: 880px; color: var(--black);
    margin-bottom: 22px; position: relative; z-index: 2;
    opacity: 0; transform: translateY(22px); animation: fadeUp 0.9s 0.32s ease forwards;
  }
  .hero-title .accent { color: var(--blue); }
  .hero-subtitle {
    font-size: clamp(16px, 2.3vw, 20px); font-weight: 400; color: var(--silver);
    max-width: 640px; line-height: 1.6; margin-bottom: 38px;
    position: relative; z-index: 2;
    opacity: 0; transform: translateY(16px); animation: fadeUp 0.9s 0.46s ease forwards;
  }
  .hero-buttons {
    display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
    position: relative; z-index: 2;
    opacity: 0; transform: translateY(16px); animation: fadeUp 0.9s 0.6s ease forwards;
  }
  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

  .btn-primary {
    padding: 14px 28px; background: var(--blue); color: white;
    border: none; border-radius: 980px; font-family: var(--font);
    font-size: 16px; font-weight: 500; cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: all 0.25s; box-shadow: 0 4px 18px rgba(0,113,227,0.28);
  }
  .btn-primary:hover { background: #0077ed; transform: translateY(-2px); box-shadow: 0 8px 26px rgba(0,113,227,0.34); }
  .btn-secondary {
    padding: 14px 24px; background: #fff; color: var(--black);
    border: 1px solid var(--line); border-radius: 980px; font-family: var(--font);
    font-size: 16px; font-weight: 500; cursor: pointer;
    text-decoration: none; display: inline-block; transition: all 0.25s;
  }
  .btn-secondary:hover { border-color: rgba(0,0,0,0.25); transform: translateY(-2px); }

  .hero-trustline-simple {
    margin-top: 32px; position: relative; z-index: 2;
    font-size: 13.5px; color: var(--silver); font-weight: 450;
    opacity: 0; animation: fadeUp 0.9s 0.78s ease forwards;
  }

  /* SHARED SECTION */
  .wrap { max-width: var(--maxw); margin: 0 auto; }
  .section-header { text-align: center; margin-bottom: 60px; max-width: 720px; margin-left: auto; margin-right: auto; }
  .section-eyebrow {
    font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--blue); margin-bottom: 14px; display: block;
  }
  .section-title {
    font-size: clamp(28px, 4.4vw, 44px); font-weight: 700;
    letter-spacing: -0.03em; line-height: 1.1; color: var(--black); margin-bottom: 16px;
  }
  .section-subtitle { font-size: 18px; font-weight: 400; color: var(--silver); line-height: 1.6; }

  /* TRUST BAND (now light, matches former SOLUTIONS look) */
  .trust { background: var(--bg); padding: var(--section-pad) 24px; }
  .trust-inner { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 2; }
  .trust-top { max-width: 680px; margin-bottom: 52px; }
  .solutions .section-eyebrow { color: var(--blue-light); }
  .trust .section-eyebrow { color: var(--blue); }
  .trust h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.12; color: var(--black); margin-bottom: 16px; }
  .trust h2 .flag { color: var(--blue); }
  .trust-lead { font-size: 17px; font-weight: 400; color: var(--silver); line-height: 1.65; }
  .trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
  .trust-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: 18px; padding: 28px 26px; transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    opacity: 0; transform: translateY(26px);
  }
  .trust-card.visible { opacity: 1; transform: translateY(0); }
  .trust-card:hover { border-color: rgba(0,113,227,0.3); box-shadow: 0 12px 32px rgba(13,38,76,0.08); transform: translateY(-3px); }
  .trust-card .tc-icon { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; background: linear-gradient(135deg, rgba(0,113,227,0.1), rgba(41,151,255,0.06)); }
  .trust-card .tc-icon svg { width: 21px; height: 21px; color: var(--blue); }
  .trust-card h3 { font-size: 16px; font-weight: 600; color: var(--black); margin-bottom: 8px; letter-spacing: -0.01em; }
  .trust-card p { font-size: 14px; font-weight: 400; color: var(--silver); line-height: 1.6; }

  /* SOLUTIONS (dark) */
  .solutions { padding: var(--section-pad) 24px; background: #0e1320; position: relative; overflow: hidden; }
  .solutions::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 60% 60% at 80% 10%, rgba(0,113,227,0.18) 0%, transparent 60%);
  }
  .solutions .wrap { position: relative; z-index: 2; }
  .solutions .section-title { color: #f5f6f8; }
  .solutions .section-subtitle { color: rgba(255,255,255,0.8); }
  .solutions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 16px; }
  .solution-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 20px;
    padding: 34px 30px; transition: border-color 0.3s, background 0.3s, transform 0.3s;
    opacity: 0; transform: translateY(30px); display: flex; flex-direction: column;
  }
  .solution-card.visible { opacity: 1; transform: translateY(0); }
  .solution-card:hover { border-color: rgba(41,151,255,0.4); background: rgba(255,255,255,0.06); transform: translateY(-3px); }
  .sc-icon { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; background: rgba(41,151,255,0.14); }
  .sc-icon svg { width: 24px; height: 24px; color: var(--blue-light); }
  .solution-card h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; color: #f5f6f8; margin-bottom: 10px; }
  .solution-card p { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.8); line-height: 1.6; flex: 1; }
  .sc-link { margin-top: 18px; font-size: 14px; font-weight: 500; color: var(--blue-light); cursor: pointer; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; text-decoration: none; }
  .solution-card--wide {
    grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 24px;
  }
  .solution-card--wide .sc-icon { margin-bottom: 0; flex-shrink: 0; }
  .solution-card--wide .sc-wide-body { flex: 1; }
  .solution-card--wide .sc-wide-body h3 { margin-bottom: 6px; }
  .solution-card--wide .sc-wide-body p { margin: 0; }
  .solution-card--wide .sc-link { margin-top: 0; flex-shrink: 0; }
  .sc-link:hover { gap: 9px; }
  .solutions-foot { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 44px; position: relative; z-index: 2; }

  /* STATS */
  .stats { padding: 78px 24px; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 980px; margin: 0 auto; gap: 30px; }
  .stat-item { text-align: center; opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; }
  .stat-item.visible { opacity: 1; transform: translateY(0); }
  .stat-number { font-size: clamp(34px, 4.4vw, 50px); font-weight: 700; letter-spacing: -0.03em; color: var(--blue); display: block; margin-bottom: 6px; }
  .stat-label { font-size: 14.5px; font-weight: 400; color: var(--silver); line-height: 1.4; }

  /* REFERENCES */
  /* LOGO BAND */
  .logo-band { padding: 24px 24px 56px; background: var(--bg); border-bottom: 1px solid var(--line); }
  .logo-band-label { text-align: center; font-size: 14.5px; font-weight: 600; letter-spacing: 0.03em; color: var(--silver); text-transform: uppercase; margin-bottom: 36px; }
  .logo-track-wrap { max-width: 1600px; margin: 0 auto; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
  .logo-track { display: flex; align-items: center; gap: 76px; width: max-content; animation: logo-scroll 55s linear infinite; }
  .logo-item { flex-shrink: 0; height: 60px; display: flex; align-items: center; }
  .logo-item a { display: flex; align-items: center; height: 100%; text-decoration: none; }
  .logo-item img { height: 100%; width: auto; max-width: 200px; object-fit: contain; opacity: 0.85; transition: opacity 0.2s; }
  .logo-item img:hover { opacity: 1; }
  @keyframes logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  .references { padding: var(--section-pad) 24px; background: var(--bg); }
  .ref-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 18px; max-width: var(--maxw); margin: 0 auto; }
  .ref-card {
    background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 32px 30px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; display: flex; flex-direction: column;
    opacity: 0; transform: translateY(30px);
  }
  .ref-card.visible { opacity: 1; transform: translateY(0); }
  .ref-card:hover { border-color: rgba(0,113,227,0.3); box-shadow: 0 12px 32px rgba(13,38,76,0.08); transform: translateY(-3px); }
  .ref-badge {
    align-self: flex-start; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 980px; background: rgba(0,113,227,0.08); color: var(--blue);
    border: 1px solid rgba(0,113,227,0.16); margin-bottom: 18px;
  }
  .ref-card h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; color: var(--black); margin-bottom: 10px; }
  .ref-card p { font-size: 15px; font-weight: 400; color: var(--silver); line-height: 1.6; margin-bottom: 20px; flex: 1; }
  .ref-metric { display: flex; align-items: center; gap: 14px; padding: 16px 0 0; border-top: 1px solid var(--line); }
  .ref-metric .rm-before, .ref-metric .rm-after { display: flex; flex-direction: column; }
  .ref-metric .rm-num { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; color: var(--black); white-space: nowrap; }
  .ref-metric .rm-after .rm-num { color: var(--blue); }
  .ref-metric .rm-unit { font-size: 12px; color: var(--silver); margin-top: 3px; white-space: nowrap; }
  .ref-metric .rm-arrow { width: 16px; height: 16px; color: var(--silver); flex-shrink: 0; }
  .references-foot { text-align: center; margin-top: 44px; }
  .references-note { font-size: 15px; color: var(--silver); }
  .references-note a { color: var(--blue); cursor: pointer; text-decoration: none; font-weight: 500; }
  .references-note a:hover { text-decoration: underline; }

  /* ABOUT + TEAM */
  .about { padding: var(--section-pad) 24px 60px; background: var(--bg-soft); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: var(--maxw); margin: 0 auto 64px; align-items: start; }
  .about-text h3 { font-size: 30px; font-weight: 700; letter-spacing: -0.03em; color: var(--black); margin-bottom: 18px; }
  .about-text p { font-size: 17px; font-weight: 400; color: var(--ink); line-height: 1.7; margin-bottom: 16px; }
  .about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .value-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 20px; }
  .value-item h4 { font-size: 15.5px; font-weight: 600; color: var(--black); margin-bottom: 7px; letter-spacing: -0.01em; }
  .value-item p { font-size: 13.5px; font-weight: 400; color: var(--silver); line-height: 1.5; }

  .team-head { text-align: center; margin-bottom: 36px; }
  .team-head h3 { font-size: 26px; font-weight: 700; letter-spacing: -0.03em; color: var(--black); }
  .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; max-width: 1040px; margin: 0 auto; }
  .team-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 30px 26px; text-align: center; transition: border-color 0.3s, transform 0.3s; }
  .team-card:hover { border-color: rgba(0,113,227,0.3); transform: translateY(-3px); }
  .team-avatar {
    width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; font-weight: 600; color: #fff; letter-spacing: 0.01em;
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    overflow: hidden;
  }
  .team-avatar img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .team-card h4 { font-size: 18px; font-weight: 600; color: var(--black); margin-bottom: 5px; letter-spacing: -0.01em; }
  .team-role { font-size: 14px; font-weight: 500; color: var(--blue); margin-bottom: 4px; }
  .team-note { font-size: 13px; color: var(--silver); }

  /* CONTACT */
  .contact { padding: var(--section-pad) 24px; background: #0e1320; position: relative; overflow: hidden; }
  .contact::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(0,113,227,0.16) 0%, transparent 70%); }
  .contact .section-eyebrow { color: var(--blue-light); }
  .contact .section-title { color: #f5f6f8; }
  .contact .section-subtitle { color: rgba(255,255,255,0.75); }
  .contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 52px; max-width: 980px; margin: 0 auto; position: relative; z-index: 2; }
  .contact-form { display: flex; flex-direction: column; gap: 15px; }
  .form-group { display: flex; flex-direction: column; gap: 7px; }
  .form-group label { font-size: 13px; font-weight: 450; color: rgba(255,255,255,0.75); letter-spacing: 0.01em; }
  .form-group input, .form-group textarea, .form-group select {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px; padding: 13px 15px; font-family: var(--font);
    font-size: 15.5px; font-weight: 400; color: #f5f6f8;
    transition: border-color 0.3s, background 0.3s; outline: none; resize: vertical;
  }
  .form-group select { -webkit-appearance: none; -moz-appearance: none; appearance: none; padding-right: 38px; width: 100%; }
  .form-group select option { background: #14161f; color: #f5f6f8; }
  .select-wrap { position: relative; }
  .select-wrap .select-arrow { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: rgba(255,255,255,0.5); pointer-events: none; }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue-light); background: rgba(255,255,255,0.08); }
  .submit-btn {
    padding: 15px; background: var(--blue); color: white; border: none; border-radius: 12px;
    font-family: var(--font); font-size: 16px; font-weight: 500; cursor: pointer; margin-top: 6px;
    transition: background 0.3s, transform 0.2s;
  }
  .submit-btn:hover { background: #0077ed; transform: translateY(-1px); }
  .contact-info-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 28px; margin-bottom: 14px; }
  .faq { padding: 60px 24px var(--section-pad); background: var(--bg); }
  .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
  .faq-item { border: 1px solid var(--line); border-radius: 14px; padding: 0 22px; background: #fff; transition: border-color 0.2s; }
  .faq-item:hover { border-color: rgba(0,113,227,0.25); }
  .faq-item summary { cursor: pointer; list-style: none; padding: 18px 0; font-size: 16px; font-weight: 600; color: var(--black); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--blue); flex-shrink: 0; transition: transform 0.2s; }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item p { font-size: 14.5px; color: var(--silver); line-height: 1.65; padding: 0 0 20px; margin: 0; }
  .faq-more { text-align: center; margin-top: 32px; font-size: 15px; color: var(--silver); }
  .contact-info-card h3 { font-size: 17px; font-weight: 600; color: #f5f6f8; letter-spacing: -0.01em; margin-bottom: 10px; }
  .contact-info-card p { font-size: 14.5px; font-weight: 400; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 14px; }
  .contact-info-card a { color: var(--blue-light); text-decoration: none; font-size: 15px; display: block; margin-bottom: 7px; }
  .contact-info-card a:hover { text-decoration: underline; }
  .form-privacy-note { margin-top: 12px; font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,0.75); }
  .form-privacy-note a { color: rgba(255,255,255,0.85); text-decoration: underline; cursor: pointer; }
  .form-status { margin-top: 8px; font-size: 14px; font-weight: 500; color: #7dd3fc; min-height: 18px; }

  /* KONTAKT-SEITE: helle Variante des dunklen Contact-Blocks */
  .contact.contact-light { background: #fff; }
  .contact.contact-light::before { display: none; }
  .contact.contact-light .form-group label { color: var(--silver); }
  .contact.contact-light .form-group input, .contact.contact-light .form-group textarea, .contact.contact-light .form-group select {
    background: #fff; border: 1px solid var(--line); color: var(--black);
  }
  .contact.contact-light .form-group select option { background: #fff; color: var(--black); }
  .contact.contact-light .select-wrap .select-arrow { color: var(--silver); }
  .contact.contact-light .form-group input::placeholder, .contact.contact-light .form-group textarea::placeholder { color: rgba(0,0,0,0.3); }
  .contact.contact-light .form-group input:focus, .contact.contact-light .form-group textarea:focus, .contact.contact-light .form-group select:focus { border-color: var(--blue); background: #fff; }
  .contact.contact-light .contact-info-card { background: var(--bg-soft); border: 1px solid var(--line); }
  .contact.contact-light .contact-info-card h3 { color: var(--black); }
  .contact.contact-light .contact-info-card p { color: var(--silver); }
  .contact.contact-light .contact-info-card a { color: var(--blue); }
  .contact.contact-light .form-privacy-note { color: var(--silver); }
  .contact.contact-light .form-privacy-note a { color: var(--blue); }
  .contact.contact-light .form-status { color: var(--blue-deep); }

  /* FOOTER */
  footer { background: #1d1d1f; padding: 48px 40px 28px; }
  .footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, auto); gap: 44px; max-width: var(--maxw); margin: 0 auto 36px; align-items: start; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-logo img { height: 56px; filter: brightness(0) invert(1); opacity: 0.5; margin-bottom: 14px; }
  .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 400; line-height: 1.6; max-width: 280px; }
  .footer-col h4 { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 15px; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; cursor: pointer; }
  .footer-col a:hover { color: rgba(255,255,255,0.9); }
  .footer-bottom { text-align: center; font-size: 12px; color: rgba(255,255,255,0.55); max-width: var(--maxw); margin: 0 auto; }

  /* ══ SOLUTIONS DETAIL PAGE ══ */
  .sd-page { min-height: 100vh; padding-top: var(--nav-h); background: var(--bg); }
  .sd-hero { padding: 64px 24px 56px; background: linear-gradient(180deg, #ffffff 0%, #f3f7fe 100%); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
  .sd-hero-inner { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 2; }
  .sd-back { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 450; color: var(--blue); cursor: pointer; background: none; border: none; font-family: var(--font); margin-bottom: 24px; padding: 0; transition: gap 0.2s; text-decoration: none; }
  .sd-back:hover { gap: 9px; }
  .sd-hero h1 { font-size: clamp(30px, 5vw, 50px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.08; color: var(--black); margin-bottom: 18px; max-width: 760px; }
  .sd-hero p { font-size: 18px; font-weight: 400; color: var(--silver); line-height: 1.6; max-width: 640px; }

  .sd-body { max-width: var(--maxw); margin: 0 auto; padding: 56px 24px 40px; }
  .sol-shell { margin-bottom: 56px; }
  .sol-tabs {
    display: flex; flex-wrap: wrap; gap: 8px;
    background: var(--bg); padding: 14px 0 22px; margin-bottom: 24px; border-bottom: 1px solid var(--line);
  }
  .sol-tab {
    display: flex; align-items: center; gap: 9px; padding: 11px 16px; border-radius: 980px;
    border: 1px solid var(--line); background: #fff; cursor: pointer; text-align: left;
    font-family: var(--font); transition: background 0.2s, border-color 0.2s;
  }
  .sol-tab svg { width: 17px; height: 17px; color: var(--silver); flex-shrink: 0; }
  .sol-tab span { font-size: 13.5px; font-weight: 500; color: var(--black); line-height: 1.3; white-space: nowrap; }
  .sol-tab:hover { background: var(--bg-soft); }
  .sol-tab.active { background: rgba(0,113,227,0.08); border-color: rgba(0,113,227,0.35); }
  .sol-tab.active svg { color: var(--blue); }
  .sol-tab.active span { color: var(--blue); font-weight: 600; }
  @keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
  .sol-panels .sd-block { display: none; margin-bottom: 0; }
  .sol-panels .sd-block.active { display: block; animation: panelIn 0.35s ease; }
  .sd-block { margin-bottom: 80px; scroll-margin-top: calc(var(--nav-h) + 20px); }
  .sd-block-top { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
  .sd-block-icon { width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(0,113,227,0.1), rgba(41,151,255,0.06)); }
  .sd-block-icon svg { width: 27px; height: 27px; color: var(--blue); }
  .sd-block h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 700; letter-spacing: -0.03em; color: var(--black); }
  .sd-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: start; }
  .sd-layout-stack { grid-template-columns: 1fr; }
  .sd-layout-stack .sd-demo { max-width: 640px; }
  .sd-copy h3 { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); margin: 22px 0 8px; }
  .sd-copy h3:first-child { margin-top: 0; }
  .sd-copy p { font-size: 16px; font-weight: 400; color: var(--ink); line-height: 1.72; }
  .sd-highlight { margin-top: 24px; background: linear-gradient(135deg, rgba(0,113,227,0.06), rgba(41,151,255,0.03)); border: 1px solid rgba(0,113,227,0.16); border-radius: 16px; padding: 22px 24px; }
  .sd-highlight strong { display: block; font-size: 30px; font-weight: 700; color: var(--blue); letter-spacing: -0.02em; margin-bottom: 4px; }
  .sd-highlight span { font-size: 14.5px; color: var(--ink); line-height: 1.5; }

  /* BESTELLVERFAHREN: Schritt-für-Schritt-Ablauf */
  .order-intro { font-size: 16px; line-height: 1.65; color: var(--silver); max-width: 760px; margin: 4px auto 40px; text-align: center; }
  .order-steps { display: flex; flex-direction: column; max-width: 820px; margin: 0 auto; text-align: left; }
  .order-step { display: flex; gap: 22px; padding-bottom: 26px; }
  .order-step-marker { position: relative; width: 44px; flex: 0 0 44px; }
  .order-step-line { position: absolute; left: 21px; top: 44px; bottom: -26px; width: 2px; background: var(--line); }
  .order-step-dot {
    width: 44px; height: 44px; border-radius: 999px; background: var(--blue); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: ui-monospace, 'SF Mono', monospace; font-size: 15px; font-weight: 600;
    position: relative; z-index: 1;
  }
  .order-step-card { flex: 1; min-width: 0; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px 26px; display: flex; gap: 24px; flex-wrap: wrap; }
  .order-step-text { flex: 1; min-width: 260px; }
  .order-step-tag { font-family: ui-monospace, 'SF Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.07em; color: var(--blue); text-transform: uppercase; }
  .order-step-card h4 { font-size: 19px; font-weight: 600; color: var(--black); margin: 8px 0 0; letter-spacing: -0.01em; }
  .order-step-card p { font-size: 15px; color: var(--silver); line-height: 1.6; margin: 10px 0 0; }
  .order-step-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
  .order-chip { display: inline-flex; align-items: center; gap: 7px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: 7px 13px; font-size: 13px; color: var(--ink); }
  .order-chip::before { content: ''; width: 5px; height: 5px; border-radius: 999px; background: var(--blue); flex-shrink: 0; }
  .order-safety { display: flex; gap: 10px; margin-top: 16px; background: #FBF3E2; border: 1px solid #F0E4C8; border-radius: 12px; padding: 12px 16px; align-items: flex-start; }
  .order-safety-tag { font-family: ui-monospace, 'SF Mono', monospace; font-size: 10.5px; font-weight: 600; color: #B07D12; letter-spacing: 0.06em; flex: 0 0 auto; padding-top: 2px; text-transform: uppercase; }
  .order-safety p { font-size: 13.5px; line-height: 1.55; color: #7A5E1E; margin: 0 !important; }

  /* Visual-Boxen je Schritt (portiert & an unser Farbsystem angepasst) */
  .order-step-visual { flex: 0 0 180px; min-height: 156px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }

  @keyframes ov-ping { 0% { transform: scale(0.5); opacity: 0.5; } 100% { transform: scale(1.75); opacity: 0; } }
  @keyframes ov-drop { 0% { transform: translateY(-30px); opacity: 0; } 30% { opacity: 1; } 60%, 100% { transform: translateY(0); opacity: 1; } }
  @keyframes ov-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }
  @keyframes ov-scan { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(80px); } }
  @keyframes ov-connect { 0% { width: 0; } 45%, 100% { width: 100%; } }
  @keyframes ov-pop { 0%, 25% { transform: translate(-50%, -50%) scale(0); } 55% { transform: translate(-50%, -50%) scale(1.2); } 70%, 100% { transform: translate(-50%, -50%) scale(1); } }
  @keyframes ov-popbr { 0%, 30% { transform: scale(0); } 60% { transform: scale(1.2); } 75%, 100% { transform: scale(1); } }
  @keyframes ov-fill { 0% { width: 0; } 60%, 100% { width: 100%; } }
  @keyframes ov-bar { 0% { transform: scaleY(0.2); } 45% { transform: scaleY(1); } 100% { transform: scaleY(0.2); } }

  /* Schritt 1: Posteingang */
  .ov-inbox { position: relative; width: 120px; height: 104px; }
  .ov-inbox-ring { position: absolute; left: 50%; top: 30px; width: 46px; height: 46px; margin-left: -23px; border-radius: 999px; border: 2px solid var(--blue); animation: ov-ping 5s ease-out infinite; }
  .ov-inbox-flap { position: absolute; left: 50%; top: 4px; margin-left: -26px; width: 52px; height: 34px; background: #fff; border: 1.5px solid var(--blue); border-radius: 5px; overflow: hidden; animation: ov-drop 5s ease-in-out infinite; }
  .ov-inbox-flap::before { content: ''; position: absolute; top: -19px; left: 50%; width: 30px; height: 30px; margin-left: -15px; transform: rotate(45deg); border-right: 1.5px solid var(--blue); border-bottom: 1.5px solid var(--blue); background: #fff; }
  .ov-inbox-body { position: absolute; left: 50%; bottom: 18px; margin-left: -38px; width: 76px; height: 28px; border: 1.5px solid var(--line); border-top: none; border-radius: 0 0 9px 9px; background: linear-gradient(#fff, #eceef3); }
  .ov-inbox-dot { position: absolute; right: 2px; top: 2px; width: 8px; height: 8px; border-radius: 999px; background: var(--blue); animation: ov-blink 2.4s ease-in-out infinite; }

  /* Schritt 2: Scan/Lesen */
  .ov-scan-box { position: relative; width: 88px; height: 110px; background: #fff; border: 1.5px solid var(--line); border-radius: 8px; overflow: hidden; padding: 13px 11px 0; }
  .ov-scan-line { height: 6px; border-radius: 3px; background: var(--line); margin-bottom: 9px; }
  .ov-scan-beam { position: absolute; left: 0; right: 0; top: 6px; height: 16px; background: linear-gradient(180deg, rgba(0,113,227,0), rgba(0,113,227,0.22), rgba(0,113,227,0)); border-top: 2px solid var(--blue); box-shadow: 0 0 10px rgba(0,113,227,0.4); animation: ov-scan 5s ease-in-out infinite; }
  .ov-scan-caption { position: absolute; left: 0; right: 0; bottom: 0; text-align: center; font-family: ui-monospace, monospace; font-size: 10px; letter-spacing: 0.06em; color: var(--silver); background: linear-gradient(rgba(255,255,255,0), #fff 45%); padding: 8px 0 5px; }

  /* Schritt 3: Abgleich */
  .ov-match { display: flex; flex-direction: row; align-items: center; }
  .ov-match-col { display: flex; flex-direction: column; gap: 8px; }
  .ov-match-field { width: 34px; height: 22px; border-radius: 5px; background: #fff; border: 1.5px solid var(--line); }
  .ov-match-field--hit { background: rgba(0,113,227,0.1); border-color: var(--blue); }
  .ov-match-link { position: relative; width: 48px; height: 2px; background: var(--line); margin: 0 5px; }
  .ov-match-line { position: absolute; left: 0; top: 0; height: 2px; background: var(--blue); animation: ov-connect 5s ease-in-out infinite; }
  .ov-match-check { position: absolute; left: 50%; top: 50%; width: 22px; height: 22px; border-radius: 999px; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; box-shadow: 0 2px 6px rgba(0,113,227,0.4); animation: ov-pop 5s ease-in-out infinite; }

  /* Schritt 4: Anlegen */
  .ov-create { position: relative; width: 104px; background: #fff; border: 1.5px solid var(--line); border-radius: 8px; padding: 14px 13px; }
  .ov-create-bar { height: 7px; border-radius: 4px; background: var(--line); overflow: hidden; margin-bottom: 10px; }
  .ov-create-bar:last-of-type { margin-bottom: 0; }
  .ov-fill { height: 100%; background: var(--blue); width: 100%; animation: ov-fill 5s ease-in-out infinite; }
  .ov-fill-0 { animation-delay: 0s; }
  .ov-fill-1 { animation-delay: 0.6s; }
  .ov-fill-2 { animation-delay: 1.2s; }
  .ov-create-badge { position: absolute; right: -8px; bottom: -8px; width: 26px; height: 26px; border-radius: 999px; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; box-shadow: 0 3px 8px rgba(0,113,227,0.4); animation: ov-popbr 5s ease-in-out infinite; }

  /* Schritt 5: Tracking */
  .ov-track { display: flex; flex-direction: column; align-items: center; gap: 12px; }
  .ov-bar-row { display: flex; align-items: flex-end; gap: 7px; height: 76px; }
  .ov-bar { width: 13px; background: var(--blue); border-radius: 4px 4px 0 0; transform-origin: bottom; opacity: 0.85; animation: ov-bar 4.4s ease-in-out infinite; }
  .ov-bar-0 { animation-delay: 0s; }
  .ov-bar-1 { animation-delay: 0.2s; }
  .ov-bar-2 { animation-delay: 0.4s; }
  .ov-bar-3 { animation-delay: 0.6s; }
  .ov-bar-4 { animation-delay: 0.8s; }
  .ov-track-caption { font-family: ui-monospace, monospace; font-size: 10px; letter-spacing: 0.06em; color: var(--silver); }

  .order-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 8px auto 0; max-width: 820px; }
  .order-stat { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; }
  .order-stat .os-num { font-family: ui-monospace, 'SF Mono', monospace; font-size: 28px; font-weight: 700; color: var(--black); letter-spacing: -0.02em; }
  .order-stat .os-num span { font-size: 13px; color: var(--blue); font-weight: 500; margin-left: 3px; }
  .order-stat .os-label { font-size: 12.5px; color: var(--silver); margin-top: 6px; line-height: 1.4; }

  .order-dash { max-width: 900px; margin: 44px auto 0; }
  .order-dash-label { text-align: center; }
  .order-dash-note { text-align: center; }

  /* Belege: eigene Tabellen-Spaltenbreiten + Zusatzelemente */
  .beleg-table .order-row { grid-template-columns: 0.8fr 1.6fr 1.1fr 0.9fr 0.6fr 0.9fr 1fr; }
  .beleg-check { color: #1D9E75; font-size: 12px; margin-left: 4px; }
  .beleg-cat { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--ink); }
  .beleg-cat::before { content: ''; width: 7px; height: 7px; border-radius: 999px; background: currentColor; }
  .beleg-cat-blue { color: var(--blue); }
  .beleg-cat-amber { color: #B07D12; }
  .beleg-actions { display: flex; gap: 10px; align-items: center; }
  .beleg-actions svg { width: 16px; height: 16px; color: var(--silver); cursor: pointer; transition: color 0.2s; }
  .beleg-actions svg:hover { color: var(--blue); }

  /* Kompakte Variante für die Tabelle in der schmalen Demo-Spalte */
  .order-dash--compact { margin-top: 20px; }
  .order-dash--compact .order-dash-label { font-size: 11px; margin-bottom: 10px; }
  .order-dash--compact .order-table { min-width: 0; }
  .beleg-table--compact .order-row { grid-template-columns: 0.7fr 1.5fr 1fr 0.8fr; }
  .order-dash--compact .order-row > div { padding: 9px 10px; font-size: 12px; }
  .order-dash--compact .order-row-head > div { font-size: 9.5px; padding: 9px 10px; }
  .order-dash--compact .beleg-check { font-size: 10px; }
  .order-dash--compact .beleg-cat { font-size: 11px; }
  .order-dash--compact .order-dash-note { font-size: 10.5px; margin-top: 8px; }
  #sol-bestellungen > .sd-block-top { max-width: 820px; margin-left: auto; margin-right: auto; justify-content: center; text-align: center; }
  .order-dash-label { font-size: 13px; font-weight: 600; color: var(--silver); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; }
  .order-table-wrap { border: 1px solid var(--line); border-radius: 16px; overflow-x: auto; background: #fff; }

  /* Wenn die Tabelle in der schmalen Demo-Spalte sitzt: kein Scrollen, alles kompakt einpassen */
  .sd-demo .order-table-wrap { overflow-x: hidden; }
  .sd-demo .order-table { min-width: 0; }
  .sd-demo .order-row > div { padding: 11px 8px; font-size: 12.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .sd-demo .order-row-head > div { font-size: 10px; padding: 11px 8px; }
  .sd-demo .beleg-check { display: none; }
  .sd-demo .beleg-cat::before { width: 5px; height: 5px; }
  .sd-demo .beleg-actions { gap: 7px; }
  .sd-demo .beleg-actions svg { width: 14px; height: 14px; }
  .sd-demo .order-badge { padding: 3px 8px; font-size: 11.5px; }
  .sd-demo .order-dash-label { font-size: 12px; }
  .sd-demo .order-dash-note { font-size: 11px; }

  /* Belege-Panel: größere Demo-Spalte + größere Animation */
  #sol-belege .sd-layout { grid-template-columns: 0.9fr 1.1fr; }
  #sol-belege .flow-demo { padding: 44px 20px; }
  #sol-belege .flow-input, #sol-belege .flow-output { width: 150px; }
  #sol-belege .beleg-doc { width: 140px; height: 128px; }
  #sol-belege .beleg-data { width: 190px; font-size: 14px; }

  /* Avatare-Panel: größere Demo-Spalte für das Video */
  #sol-avatare .sd-layout { grid-template-columns: 0.85fr 1.15fr; }
  .order-table { min-width: 760px; }
  .order-row {
    display: grid; grid-template-columns: 0.8fr 0.7fr 1.6fr 1.2fr 0.6fr 1fr 0.7fr 1.5fr;
    align-items: center; border-bottom: 1px solid var(--line);
  }
  .order-row:last-child { border-bottom: none; }
  .order-row > div { padding: 13px 14px; font-size: 13.5px; color: var(--ink); }
  .order-row-head { background: var(--bg-soft); }
  .order-row-head > div { font-size: 11px; font-weight: 600; letter-spacing: 0.05em; color: var(--silver); text-transform: uppercase; padding: 12px 14px; }
  .order-row .mono { font-family: ui-monospace, 'SF Mono', monospace; font-size: 12.5px; color: var(--ink); }
  .order-row .muted { color: var(--silver); font-size: 12.5px; }
  .order-badge { display: inline-flex; align-items: center; font-size: 12px; font-weight: 500; border-radius: 999px; padding: 3px 10px; }
  .order-badge-ok { background: rgba(0,113,227,0.1); color: var(--blue-deep); }
  .order-badge-warn { background: #FBF3E2; color: #B07D12; }
  .order-dash-note { font-size: 12.5px; color: var(--silver); margin-top: 12px; }

  /* DEMO PLACEHOLDER */
  .sd-demo { position: sticky; top: calc(var(--nav-h) + 24px); min-width: 0; }
  .demo-frame {
    border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: #fff;
    box-shadow: 0 14px 40px rgba(13,38,76,0.07);
  }
  .demo-bar { display: flex; align-items: center; gap: 6px; padding: 12px 16px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
  .demo-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(0,0,0,0.14); display: inline-block; }
  .demo-bar .demo-label { margin-left: 10px; font-size: 12px; color: var(--silver); font-weight: 450; }
  .demo-media {
    aspect-ratio: 16 / 10; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px; background: repeating-linear-gradient(45deg, #f7f9fc, #f7f9fc 12px, #f2f5fa 12px, #f2f5fa 24px);
    color: var(--silver); text-align: center; padding: 24px;
  }
  .demo-media svg { width: 40px; height: 40px; color: var(--blue); opacity: 0.7; }
  .demo-media p { font-size: 13.5px; line-height: 1.5; max-width: 240px; }
  .demo-media code { font-size: 12px; background: rgba(0,113,227,0.08); color: var(--blue-deep); padding: 2px 7px; border-radius: 6px; font-family: ui-monospace, monospace; }
  .demo-scrollup {
    aspect-ratio: 9 / 16; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; background: repeating-linear-gradient(45deg, #f7f9fc, #f7f9fc 12px, #f2f5fa 12px, #f2f5fa 24px);
    color: var(--silver); text-align: center; padding: 28px; text-decoration: none; transition: background 0.2s;
  }
  .demo-scrollup:hover { background: repeating-linear-gradient(45deg, #f2f5fa, #f2f5fa 12px, #eaf1fc 12px, #eaf1fc 24px); }
  .demo-scrollup .ph-icon { width: 52px; height: 52px; border-radius: 15px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(0,113,227,0.12), rgba(41,151,255,0.07)); }
  .demo-scrollup .ph-icon svg { width: 26px; height: 26px; color: var(--blue); }
  .demo-scrollup h3 { font-size: 15px; font-weight: 600; color: var(--ink); }
  .demo-scrollup p { font-size: 13px; line-height: 1.5; max-width: 220px; }
  /* Eingefügte Videos/Bilder füllen den Rahmen automatisch im selben Format */
  /* SOLUTION DEMO ANIMATION */
  @keyframes flow-particle { 0% { transform: translateX(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateX(140px); opacity: 0; } }
  @keyframes flow-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.12); } }
  @keyframes flow-ring { 0% { transform: scale(0.9); opacity: 0.5; } 100% { transform: scale(1.7); opacity: 0; } }
  @keyframes flow-pop { 0% { transform: scale(0.8) translateY(6px); opacity: 0; } 30% { transform: scale(1.05) translateY(0); opacity: 1; } 100% { transform: scale(1) translateY(0); opacity: 1; } }
  .flow-demo { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 36px 20px; background: #1a1f2e; }
  .flow-input, .flow-output { width: 120px; flex-shrink: 0; text-align: center; }
  .flow-input .fi-box { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.18); border-radius: 8px; padding: 14px 12px; }
  .flow-input .fi-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.3); margin-bottom: 6px; }
  .flow-input .fi-line:last-child { margin-bottom: 0; }
  .flow-input .fi-qr { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; width: 60px; margin: 0 auto; }
  .flow-input .fi-qr span { display: block; aspect-ratio: 1; background: rgba(255,255,255,0.35); border-radius: 1px; }
  .flow-input .fi-qr span.off { background: transparent; }
  .flow-input .fi-label, .flow-core .fc-label, .flow-output .fo-label { margin-top: 8px; font-size: 12px; color: rgba(255,255,255,0.5); }
  .flow-track { flex: 1; position: relative; height: 16px; min-width: 30px; }
  .flow-track .fp { position: absolute; top: 6px; left: 0; width: 5px; height: 5px; border-radius: 50%; animation: flow-particle 1.8s linear infinite; }
  .flow-core { flex-shrink: 0; text-align: center; position: relative; width: 70px; }
  .flow-core .fc-ring { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--fc-color, #EF9F27); position: absolute; top: 0; left: 13px; animation: flow-ring 1.8s ease-out infinite; }
  .flow-core .fc-dot { width: 44px; height: 44px; border-radius: 50%; background: var(--fc-color, #EF9F27); display: flex; align-items: center; justify-content: center; margin: 0 auto; position: relative; animation: flow-pulse 1.8s ease-in-out infinite; }
  .flow-core .fc-dot svg { width: 20px; height: 20px; }
  .flow-output .fo-stack { position: relative; height: 80px; }
  .flow-output .fo-back2 { position: absolute; top: 12px; left: 6px; right: 6px; bottom: 0; background: rgba(15,110,86,0.2); border: 1px solid rgba(52,199,89,0.3); border-radius: 8px; }
  .flow-output .fo-back1 { position: absolute; top: 6px; left: 3px; right: 3px; bottom: 0; background: rgba(15,110,86,0.28); border: 1px solid rgba(52,199,89,0.4); border-radius: 8px; }
  .flow-output .fo-front { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(15,110,86,0.35); border: 1px solid #34c759; border-radius: 8px; display: flex; align-items: center; justify-content: center; animation: flow-pop 1.8s ease-out infinite; }
  .flow-output .fo-front svg { width: 24px; height: 24px; color: #34c759; }

  /* BESCHEINIGUNGEN: einzelne Karte statt Stapel */
  @keyframes cert-pop { 0% { opacity: 0; transform: translateY(8px) scale(0.92); } 15% { opacity: 1; transform: translateY(0) scale(1); } 82% { opacity: 1; transform: translateY(0) scale(1); } 100% { opacity: 0; transform: translateY(-6px) scale(0.96); } }
  .cert-output { width: 130px; text-align: center; }
  .cert-card { height: 70px; border-radius: 8px; background: rgba(15,110,86,0.32); border: 1px solid #34c759; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; animation: cert-pop 5.5s ease-in-out infinite; }
  .cert-card svg { width: 20px; height: 20px; color: #34c759; }
  .cert-card span { font-size: 11px; color: #eafff2; }

  /* BELEGE: Scan-Linie + gestaffelt einblendende Datenzeilen */
  @keyframes beleg-scan { 0% { top: 10%; } 100% { top: 82%; } }
  @keyframes beleg-row1 { 0% { opacity: 0; transform: translateY(4px); } 8% { opacity: 1; transform: translateY(0); } 92% { opacity: 1; } 100% { opacity: 0; } }
  @keyframes beleg-row2 { 0%, 20% { opacity: 0; transform: translateY(4px); } 30% { opacity: 1; transform: translateY(0); } 92% { opacity: 1; } 100% { opacity: 0; } }
  @keyframes beleg-row3 { 0%, 42% { opacity: 0; transform: translateY(4px); } 52% { opacity: 1; transform: translateY(0); } 92% { opacity: 1; } 100% { opacity: 0; } }
  .beleg-doc { position: relative; width: 110px; height: 100px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.18); border-radius: 8px; overflow: hidden; padding: 14px 12px; margin: 0 auto; }
  .beleg-doc .b-scanline { position: absolute; left: 0; right: 0; height: 2px; background: #2997ff; animation: beleg-scan 3s ease-in-out infinite alternate; }
  .beleg-data { width: 160px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.18); border-radius: 8px; padding: 12px 14px; font-size: 12px; color: rgba(255,255,255,0.85); text-align: left; }
  .beleg-data div { display: flex; justify-content: space-between; padding: 3px 0; }
  .beleg-data div span:first-child { color: rgba(255,255,255,0.5); }
  .beleg-data div:nth-child(1) { animation: beleg-row1 6s ease-in-out infinite; }
  .beleg-data div:nth-child(2) { animation: beleg-row2 6s ease-in-out infinite; }
  .beleg-data div:nth-child(3) { animation: beleg-row3 6s ease-in-out infinite; }

  /* BESTELLUNGEN: sanftes Atmen statt Stillstand */
  @keyframes breathe-slow { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.12); } }
  .breathe { animation: breathe-slow 7s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
  @keyframes drift-a { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(4px, -5px); } }
  @keyframes drift-b { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-5px, 4px); } }
  @keyframes drift-c { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(5px, 5px); } }
  @keyframes drift-d { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-4px, -5px); } }
  .drift-a { animation: drift-a 2s ease-in-out infinite; }
  .drift-b { animation: drift-b 2s ease-in-out infinite; }
  .drift-c { animation: drift-c 2s ease-in-out infinite; }
  .drift-d { animation: drift-d 2s ease-in-out infinite; }

  /* FORMULARE: sequentielle Animation QR -> Formular -> Haken */
  @keyframes seq-qr-sweep { 0%, 4% { opacity: 0; top: 6%; } 6% { opacity: 1; } 20% { opacity: 1; top: 88%; } 24%, 100% { opacity: 0; } }
  @keyframes seq-dot1 { 0%, 22% { opacity: 0; transform: translateX(0); } 26% { opacity: 1; } 36% { opacity: 1; transform: translateX(120%); } 40%, 100% { opacity: 0; } }
  @keyframes seq-phone-ring { 0%, 38% { opacity: 0; transform: scale(0.9); } 42% { opacity: 0.8; transform: scale(0.9); } 62% { opacity: 0; transform: scale(1.5); } 100% { opacity: 0; } }
  @keyframes seq-dot2 { 0%, 66% { opacity: 0; transform: translateX(0); } 70% { opacity: 1; } 80% { opacity: 1; transform: translateX(120%); } 84%, 100% { opacity: 0; } }
  @keyframes seq-check { 0%, 82% { opacity: 0; transform: scale(0.85); } 88% { opacity: 1; transform: scale(1); } 98% { opacity: 1; } 100% { opacity: 0; } }
  .seq-demo { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 36px 20px; background: #1a1f2e; }
  .seq-track { flex: 1; position: relative; height: 16px; min-width: 30px; }
  .seq-track .sd { position: absolute; top: 6px; left: 0; width: 5px; height: 5px; border-radius: 50%; background: #2997ff; }
  .seq-qr { width: 100px; text-align: center; }
  .seq-qr-box { position: relative; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.18); border-radius: 8px; padding: 12px; overflow: hidden; }
  .seq-qr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; width: 56px; margin: 0 auto; }
  .seq-qr-grid span { display: block; aspect-ratio: 1; background: rgba(255,255,255,0.35); border-radius: 1px; }
  .seq-qr-grid span.off { background: transparent; }
  .seq-qr-box .sweep { position: absolute; left: 0; right: 0; height: 2px; background: #2997ff; }
  .seq-phone { width: 90px; height: 150px; border: 2px solid rgba(255,255,255,0.25); border-radius: 16px; padding: 10px 8px; position: relative; background: rgba(255,255,255,0.03); flex-shrink: 0; }
  .seq-phone .sp-line { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.25); margin-bottom: 8px; }
  .seq-phone .sp-btn { height: 20px; background: rgba(41,151,255,0.25); border: 1px solid #2997ff; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 9px; color: #cfe6ff; position: relative; }
  .seq-phone .sp-ring { position: absolute; inset: 0; border-radius: 6px; border: 1.5px solid #2997ff; }
  .seq-check { width: 110px; text-align: center; }
  .seq-check-box { height: 70px; background: rgba(15,110,86,0.32); border: 1px solid #34c759; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
  .seq-check-box svg { width: 24px; height: 24px; color: #34c759; }
  .seq-label { margin-top: 8px; font-size: 12px; color: rgba(255,255,255,0.5); }

  /* INDIVIDUELLE LÖSUNGEN: Bausteine leuchten nacheinander auf */
  @keyframes brick-cycle { 0%, 20% { opacity: 1; border-color: #2997ff; } 25%, 100% { opacity: 0.35; border-color: rgba(255,255,255,0.15); } }
  .brick-demo { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 36px 20px; background: #1a1f2e; flex-wrap: wrap; }
  .brick { width: 100px; text-align: center; padding: 16px 10px; border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; animation: brick-cycle 8s ease-in-out infinite; }
  .brick svg { width: 22px; height: 22px; color: #2997ff; }
  .brick span { display: block; margin-top: 8px; font-size: 12px; color: rgba(255,255,255,0.7); }

  .demo-frame video, .demo-frame > img {
    display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: #000;
  }
  .demo-frame.portrait { max-width: 320px; margin: 0 auto; }
  .demo-frame.portrait video { aspect-ratio: 9 / 16; }
  .demo-frame.chat-demo-frame { max-width: 460px; margin: 0 auto; }
  .demo-frame.chat-demo-frame .hcw-wrap { height: 640px !important; }
  .demo-caption { font-size: 13px; color: var(--silver); margin-top: 12px; text-align: center; line-height: 1.5; }

  .sd-cta { background: #0e1320; border-radius: 24px; padding: 56px 40px; text-align: center; max-width: var(--maxw); margin: 0 auto 80px; position: relative; overflow: hidden; }
  .sd-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(0,113,227,0.18) 0%, transparent 65%); }
  .sd-cta h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 700; letter-spacing: -0.03em; color: #f5f6f8; margin-bottom: 14px; position: relative; z-index: 2; }
  .sd-cta p { font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.8); margin-bottom: 28px; position: relative; z-index: 2; max-width: 520px; margin-left: auto; margin-right: auto; }
  .sd-cta .btn-primary { position: relative; z-index: 2; }

  /* ══ IMPRESSUM / DATENSCHUTZ ══ */
  .impressum-page { min-height: 100vh; padding-top: var(--nav-h); background: var(--bg); }
  .impressum-hero { padding: 64px 24px 52px; background: linear-gradient(180deg, #ffffff 0%, #f3f7fe 100%); border-bottom: 1px solid var(--line); }
  .impressum-hero-inner { max-width: 820px; margin: 0 auto; }
  .impressum-back { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 450; color: var(--blue); cursor: pointer; background: none; border: none; font-family: var(--font); margin-bottom: 24px; padding: 0; transition: gap 0.2s; text-decoration: none; }
  .impressum-back:hover { gap: 9px; }
  .impressum-badge { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 13px; border-radius: 980px; background: rgba(0,113,227,0.08); border: 1px solid rgba(0,113,227,0.18); color: var(--blue); margin-bottom: 18px; }
  .impressum-title { font-size: clamp(30px, 4.6vw, 48px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.08; color: var(--black); }
  .impressum-content { max-width: 820px; margin: 0 auto; padding: 48px 24px 90px; }
  .imp-section { margin-bottom: 12px; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: #fff; opacity: 0; transform: translateY(18px); transition: opacity 0.5s, transform 0.5s; }
  .imp-section.visible { opacity: 1; transform: translateY(0); }
  .imp-section-header { display: flex; align-items: center; gap: 13px; padding: 18px 24px; background: #fff; border-bottom: 1px solid var(--line); }
  .imp-section-icon { width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,113,227,0.08); }
  .imp-section-icon svg { width: 18px; height: 18px; color: var(--blue); }
  .imp-section-title { font-size: 15px; font-weight: 600; color: var(--black); letter-spacing: -0.01em; }
  .imp-section-body { background: #fafbfc; }
  .imp-row { display: grid; grid-template-columns: 190px 1fr; padding: 15px 24px; border-bottom: 1px solid rgba(0,0,0,0.05); align-items: baseline; gap: 16px; }
  .imp-row:last-child { border-bottom: none; }
  .imp-label { font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--silver); }
  .imp-value { font-size: 14.5px; font-weight: 400; color: var(--black); line-height: 1.6; }
  .imp-value a { color: var(--blue); text-decoration: none; }
  .imp-value a:hover { text-decoration: underline; }
  .imp-value strong { font-weight: 600; }
  .imp-desc-block { padding: 18px 24px; font-size: 14.5px; font-weight: 400; color: var(--ink); line-height: 1.72; border-bottom: 1px solid rgba(0,0,0,0.05); }
  .imp-desc-block:last-child { border-bottom: none; }

  /* MOBILE */
  @media (max-width: 880px) {
    :root { --section-pad: 72px; --nav-h: 60px; }
    nav { padding: 0 18px; }
    .nav-logo img { height: 34px; }
    .nav-links .nav-link { display: none; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
    .solution-card--wide { flex-direction: column; align-items: flex-start; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .sd-layout { grid-template-columns: 1fr; gap: 28px; }
    .order-step { gap: 14px; }
    .order-step-card { padding: 20px 18px; }
    .order-stats { grid-template-columns: 1fr; }
    .sol-tabs { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
    .sd-demo { position: static; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
    footer { padding: 36px 22px 24px; }
    .impressum-hero, .sd-hero { padding: 44px 20px 40px; }
    .impressum-content, .sd-body { padding-left: 20px; padding-right: 20px; }
    .imp-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 20px; }
    .imp-section-header, .imp-desc-block { padding: 16px 20px; }
    .about-values { grid-template-columns: 1fr; }
  }
.skip-link { position: absolute; top: -100px; left: 16px; background: var(--blue); color: #fff; padding: 8px 16px; border-radius: 6px; font-size: 14px; font-weight: 500; z-index: 9999; transition: top 0.2s; }
.skip-link:focus { top: 16px; }
