@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/SpaceGrotesk-VariableFont_wght.woff2') format('woff2');
    font-weight: 300 700;
    font-display: swap;
}

:root {
    --ink: #102139;
    --ink-2: #2c3f57;
    --muted: #5c6e7e;
    --line: #dce7ec;
    --bg: #f7fbfc;
    --cyan: #0a91a7;
    --cyan-2: #0fb8c8;
    --cyan-soft: #e7f7f9;
    --apricot: #ffad66;
    --apricot-soft: #fff0e4;
    --navy: #0c1c31;
    --white: #ffffff;
    --shadow: 0 20px 60px rgba(16, 33, 57, .11);
    --radius: 24px;
    --hero-scroll: 0;
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Space Grotesk', Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration-thickness: .08em; text-underline-offset: .18em; }
p { margin: 0 0 1.1rem; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; margin: 0 0 1rem; }
h1 { font-size: clamp(2.7rem, 6vw, 5.9rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.8rem); }
h3 { font-size: 1.2rem; letter-spacing: -.025em; }

.skip-link { position: absolute; left: -999px; top: 10px; background: var(--ink); color: #fff; padding: .8rem 1rem; border-radius: 999px; z-index: 9999; }
.skip-link:focus { left: 10px; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; clip: rect(0,0,0,0); overflow: hidden; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-inline: clamp(22px, 4vw, 56px);
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(220,231,236,.85);
}
.brand img { width: 164px; }
.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2.8vw, 40px); font-weight: 650; font-size: .96rem; }
.primary-nav a { color: var(--ink); text-decoration: none; position: relative; padding-block: 32px; }
.primary-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 22px; height: 3px; border-radius: 999px; background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.primary-nav a:hover::after, .primary-nav a.is-active::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle { display: none; }

.hero { min-height: calc(100vh - 86px); position: relative; overflow: clip; isolation: isolate; border-bottom: 1px solid var(--line); }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.87) 36%, rgba(255,255,255,.2) 72%), url('../img/hero-office.webp') center / cover no-repeat; z-index: -2; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 72% 18%, rgba(10,145,167,.16), transparent 28%), linear-gradient(180deg, transparent 70%, rgba(255,255,255,.56)); z-index: -1; }
.hero-inner { min-height: calc(100vh - 86px); width: min(1320px, calc(100% - 64px)); margin-inline: auto; display: grid; grid-template-columns: minmax(380px, .78fr) 1.05fr; align-items: center; gap: 2vw; padding: clamp(56px, 8vw, 100px) 0; }
.hero-copy { max-width: 680px; }
.eyebrow { color: var(--cyan); text-transform: uppercase; letter-spacing: .1em; font-weight: 760; font-size: .84rem; margin-bottom: 1rem; }
.hero-lead { font-size: clamp(1.05rem, 1.45vw, 1.35rem); color: var(--ink-2); max-width: 640px; }
.hero-bullets { list-style: none; margin: 1.8rem 0 2.2rem; padding: 0; display: grid; gap: .62rem; font-weight: 650; color: var(--ink-2); }
.hero-bullets li { position: relative; display: flex; align-items: center; gap: .72rem; }
.hero-bullets li::before { content: '✓'; width: 22px; height: 22px; flex: 0 0 22px; border: 2px solid var(--cyan); color: var(--cyan); border-radius: 50%; display: grid; place-items: center; font-size: .78rem; font-weight: 800; }
.hero-benefit { width: fit-content; max-width: 100%; }
.hero-benefit-trigger {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: help;
    text-align: left;
}
.hero-benefit-label {
    display: inline-block;
    border-bottom: 1px dotted rgba(10,145,167,.55);
}
.hero-benefit-popup {
    position: absolute;
    left: calc(100% + 16px);
    top: 50%;
    z-index: 20;
    width: min(420px, calc(100vw - 80px));
    padding: 14px 16px;
    border: 1px solid rgba(10,145,167,.24);
    border-radius: 14px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 16px 38px rgba(16,33,57,.16);
    color: var(--ink-2);
    font-size: .94rem;
    font-weight: 500;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(8px, -50%);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.hero-benefit-popup::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    border-left: 1px solid rgba(10,145,167,.24);
    border-bottom: 1px solid rgba(10,145,167,.24);
    background: rgba(255,255,255,.98);
    transform: translate(-7px, -50%) rotate(45deg);
}
.hero-benefit:hover .hero-benefit-popup,
.hero-benefit:focus-within .hero-benefit-popup {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
}
.hero-benefit-trigger:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 4px;
    border-radius: 3px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hokita-actions { margin-top: 20px; }
.btn { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: .7rem; padding: 0 1.35rem; border-radius: 10px; text-decoration: none; border: 1px solid transparent; font-weight: 760; cursor: pointer; font: inherit; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--cyan), #087790); box-shadow: 0 12px 26px rgba(10,145,167,.22); }
.btn-secondary { color: var(--cyan); background: rgba(255,255,255,.72); border-color: rgba(10,145,167,.35); }
.btn::after { content: '→'; }
.hero-stage { position: relative; height: min(610px, 64vh); min-height: 470px; }
.hero-object { position: absolute; filter: drop-shadow(0 28px 38px rgba(16,33,57,.18)); transform: translate3d(calc(var(--sx) * var(--hero-scroll)), calc(var(--sy) * var(--hero-scroll)), 0) rotate(calc(var(--sr) * var(--hero-scroll))); transition: filter .3s ease; will-change: transform; }
.object-tablet { width: min(52vw, 610px); left: 7%; top: 23%; }
.object-clipboard { width: 180px; left: 22%; top: 2%; }
.object-lock { width: 145px; left: 56%; top: 3%; }
.object-cloud { width: 170px; right: 2%; top: 20%; }
.object-server { width: 160px; right: 0; top: 43%; }
.object-clock { width: 152px; left: 10%; bottom: 10%; }
.object-building { width: 160px; right: 7%; bottom: 4%; }
.object-notepad { width: 140px; left: 42%; bottom: 2%; }

.section { padding: clamp(72px, 8vw, 128px) 0; }
.section-centered { text-align: center; background: linear-gradient(180deg, #fff, var(--bg)); }
.section-centered .section-lead { max-width: 760px; margin-inline: auto; font-size: 1.14rem; color: var(--ink-2); }
.section-lead-wide { max-width: 960px; }
.section-lead-wide p { margin: 0; }
.section-lead-wide p + p { margin-top: 1.35rem; }
.section-icon { width: 62px; height: 62px; margin: 0 auto 18px; border: 2px solid var(--cyan); color: var(--cyan); border-radius: 50%; display: grid; place-items: center; font-size: 2rem; }
.section-flow { background: #fff; }
.section-flow h2, .section-operations h2 { text-align: center; margin-bottom: 48px; }
.process-grid, .ops-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-card, .ops-card, .info-card, .form-card, .legal-item, .privacy-card {
    background: rgba(255,255,255,.86);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 36px rgba(16,33,57,.06);
}
.process-card { padding: 32px 28px; min-height: 265px; }
.process-card p, .ops-card p, .legal-item p, .privacy-card p { color: var(--muted); }
.card-icon, .ops-icon, .round-icon { width: 58px; height: 58px; display: inline-grid; place-items: center; border: 2px solid var(--cyan); border-radius: 18px; color: var(--cyan); margin-bottom: 28px; position: relative; }
.card-icon::before, .card-icon::after, .ops-icon::before, .ops-icon::after, .round-icon::before, .round-icon::after { content: ''; position: absolute; }

/* Open-Source Line-Icons (Lucide/Feather, lokale Inline-SVGs) */
.section-icon .mw-line-icon,
.card-icon .mw-line-icon,
.ops-icon .mw-line-icon,
.round-icon .mw-line-icon {
    width: 31px;
    height: 31px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.section-icon .mw-line-icon { width: 34px; height: 34px; }
.ops-card.ops-accent .ops-icon { color: #eb8d45; border-color: #eb8d45; }
.magnifier::before { width: 25px; height: 25px; border: 3px solid currentColor; border-radius: 50%; left: 13px; top: 11px; }
.magnifier::after { width: 18px; height: 3px; background: currentColor; transform: rotate(45deg); left: 35px; top: 38px; border-radius: 3px; }
.nodes::before { width: 12px; height: 12px; border: 3px solid currentColor; left: 21px; top: 8px; box-shadow: -18px 28px 0 -3px #fff, -18px 28px 0 0 currentColor, 18px 28px 0 -3px #fff, 18px 28px 0 0 currentColor, 0 28px 0 -3px #fff, 0 28px 0 0 currentColor; }
.nodes::after { width: 42px; height: 28px; border-top: 3px solid currentColor; border-left: 3px solid currentColor; border-right: 3px solid currentColor; left: 7px; top: 23px; }
.rocket::before { width: 34px; height: 34px; border: 3px solid currentColor; border-radius: 50% 50% 50% 6px; transform: rotate(45deg); left: 12px; top: 9px; }
.rocket::after { width: 8px; height: 8px; background: currentColor; border-radius: 50%; left: 27px; top: 22px; }
.people::before { width: 15px; height: 15px; border: 3px solid currentColor; border-radius: 50%; left: 9px; top: 12px; box-shadow: 24px 0 0 -3px #fff, 24px 0 0 0 currentColor; }
.people::after { width: 42px; height: 18px; border: 3px solid currentColor; border-top-left-radius: 16px; border-top-right-radius: 16px; border-bottom: 0; left: 6px; top: 37px; }

.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 80px); }
.align-center { align-items: center; }
.section-product { background: linear-gradient(135deg, #f2fbfc, #ffffff 68%); }
.product-copy p:not(.eyebrow) { color: var(--ink-2); font-size: 1.06rem; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chips span { border: 1px solid rgba(10,145,167,.3); color: var(--cyan); background: rgba(255,255,255,.72); border-radius: 999px; padding: .46rem .78rem; font-size: .9rem; font-weight: 650; }
.device-wrap { padding: 20px; }

.security-section { background: #fff; }
.security-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 42px; align-items: center; }
.server-room { min-height: 390px; border-radius: var(--radius); overflow: hidden; background: radial-gradient(circle at 60% 40%, rgba(19,199,223,.18), transparent 28%), linear-gradient(135deg, #061324, #12314f); position: relative; box-shadow: var(--shadow); }
.server-line { position: absolute; top: 9%; bottom: 9%; width: 18%; border-left: 1px solid rgba(255,255,255,.13); border-right: 1px solid rgba(255,255,255,.08); background: repeating-linear-gradient(180deg, rgba(255,255,255,.09) 0 8px, transparent 8px 28px); }
.server-line:nth-child(1){ left: 6%; }.server-line:nth-child(2){ left: 29%; }.server-line:nth-child(3){ left: 52%; }.server-line:nth-child(4){ left: 75%; }
.shield-lock { position: absolute; inset: 0; margin: auto; width: 130px; height: 150px; border: 5px solid rgba(255,255,255,.9); clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%); }
.shield-lock::before { content: ''; position: absolute; left: 37px; top: 64px; width: 58px; height: 48px; border-radius: 9px; background: rgba(255,255,255,.92); }
.shield-lock::after { content: ''; position: absolute; left: 48px; top: 35px; width: 34px; height: 42px; border: 8px solid rgba(255,255,255,.92); border-bottom: 0; border-radius: 22px 22px 0 0; }
.security-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(30px, 5vw, 58px); box-shadow: var(--shadow); }
.security-card p:not(.eyebrow) { color: var(--ink-2); }
.security-card .note { border-left: 4px solid var(--cyan); padding-left: 1rem; margin-top: 1.4rem; font-size: .96rem; }

.section-operations { background: linear-gradient(180deg, #fff, #f7fbfc); }
.ops-grid { grid-template-columns: repeat(3, 1fr); }
.ops-card { padding: 34px 28px; border-top: 4px solid var(--cyan); }
.ops-accent { border-top-color: var(--apricot); }
.ops-icon { border-radius: 16px; margin-bottom: 20px; }
.layers::before { width: 34px; height: 24px; border: 3px solid currentColor; transform: rotate(45deg); left: 10px; top: 16px; }
.gear { color: #eb8d45; border-color: #eb8d45; }
.gear::before { width: 28px; height: 28px; border: 4px solid currentColor; border-radius: 50%; left: 13px; top: 13px; }
.cloud::before { width: 38px; height: 20px; background: currentColor; border-radius: 18px; left: 9px; top: 25px; opacity: .2; }
.cloud::after { width: 42px; height: 27px; border: 3px solid currentColor; border-top-left-radius: 24px; border-top-right-radius: 24px; border-bottom: 0; left: 7px; top: 20px; }
.small { font-size: .94rem; }
.contact-strip { background: #fff; border-top: 1px solid var(--line); padding-top: 78px; }
.contact-strip-grid { display: grid; grid-template-columns: .6fr 1.4fr; gap: 46px; align-items: start; }
.contact-mail { display: inline-flex; margin-top: 1.4rem; padding: 1.1rem 1.4rem; border: 1px solid rgba(10,145,167,.3); border-radius: 14px; background: #fff; text-decoration: none; }
.mini-form, .contact-form { display: grid; gap: 14px; }
.mini-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 12px 36px rgba(16,33,57,.06); }
.mini-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 8px; font-weight: 620; color: var(--ink-2); }
input, textarea { width: 100%; border: 1px solid #cddbe2; border-radius: 8px; padding: .86rem 1rem; font: inherit; color: var(--ink); background: #fff; }
input:focus, textarea:focus { outline: 3px solid rgba(10,145,167,.18); border-color: var(--cyan); }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }
.form-actions-row { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; }
.spam-note, .spam-box { background: var(--apricot-soft); border: 1px solid rgba(255, 173, 102, .46); color: #714217; border-radius: 12px; padding: .9rem 1rem; margin: 0; font-size: .92rem; }

.subhero { position: relative; overflow: hidden; min-height: 385px; border-bottom: 1px solid var(--line); background: #f7fbfc; }
.subhero-bg { position: absolute; inset: 0; background-position: center; background-size: cover; opacity: 1; }
.subhero-contact .subhero-bg { background-image: linear-gradient(90deg, rgba(255,255,255,.94) 0 47%, rgba(255,255,255,.35)), url('../img/contact-hero.webp'); }
.subhero-impressum .subhero-bg { background-image: linear-gradient(90deg, rgba(255,255,255,.94) 0 47%, rgba(255,255,255,.30)), url('../img/impressum-hero.webp'); }
.subhero-datenschutz .subhero-bg { background-image: linear-gradient(90deg, rgba(255,255,255,.94) 0 47%, rgba(255,255,255,.30)), url('../img/datenschutz-hero.webp'); }
.subhero-inner { position: relative; z-index: 1; min-height: 385px; display: flex; align-items: center; }
.subhero h1 { font-size: clamp(3rem, 6vw, 5.2rem); }
.subhero p { max-width: 560px; font-size: clamp(1.08rem, 1.7vw, 1.38rem); color: var(--ink-2); }
.contact-page-section { background: var(--bg); }
.contact-page-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 38px; }
.contact-side { display: grid; gap: 28px; align-content: start; }
.info-card { padding: 44px; }
.info-card h2 { font-size: 1.28rem; }
.round-icon { border-radius: 50%; width: 70px; height: 70px; background: rgba(10,145,167,.05); }
.person::before { width: 18px; height: 18px; border: 3px solid currentColor; border-radius: 50%; top: 16px; left: 23px; }
.person::after { width: 34px; height: 18px; border: 3px solid currentColor; border-radius: 18px 18px 0 0; border-bottom: 0; left: 15px; top: 40px; }
.target::before { width: 36px; height: 36px; border: 3px solid currentColor; border-radius: 50%; left: 14px; top: 14px; box-shadow: inset 0 0 0 8px #fff, inset 0 0 0 11px currentColor; }
.shield::before { width: 34px; height: 40px; border: 3px solid currentColor; clip-path: polygon(50% 0,100% 18%,87% 78%,50% 100%,13% 78%,0 18%); left: 16px; top: 13px; }
.link::before { width: 24px; height: 12px; border: 3px solid currentColor; border-radius: 12px; transform: rotate(-35deg); left: 12px; top: 24px; box-shadow: 20px 15px 0 -3px #fff, 20px 15px 0 0 currentColor; }
.server::before { width: 34px; height: 38px; border-top: 4px solid currentColor; border-bottom: 4px solid currentColor; left: 16px; top: 16px; box-shadow: 0 13px 0 -4px #fff, 0 13px 0 0 currentColor; }
.file::before { width: 31px; height: 39px; border: 3px solid currentColor; left: 18px; top: 14px; }
.mail::before { width: 38px; height: 28px; border: 3px solid currentColor; left: 14px; top: 20px; border-radius: 3px; }
.mail::after { width: 28px; height: 18px; border-left: 3px solid currentColor; border-bottom: 3px solid currentColor; transform: rotate(-45deg); left: 20px; top: 18px; }
.eye::before { width: 42px; height: 24px; border: 3px solid currentColor; border-radius: 50%; left: 12px; top: 22px; }
.eye::after { width: 54px; height: 3px; background: currentColor; transform: rotate(-35deg); left: 8px; top: 34px; border-radius: 3px; }
.scales::before { width: 4px; height: 40px; background: currentColor; left: 32px; top: 14px; }
.scales::after { width: 44px; height: 18px; border-bottom: 3px solid currentColor; border-left: 3px solid currentColor; border-right: 3px solid currentColor; left: 11px; top: 26px; }
.lock::before { width: 36px; height: 30px; border: 3px solid currentColor; left: 15px; top: 28px; border-radius: 5px; }
.lock::after { width: 24px; height: 24px; border: 4px solid currentColor; border-bottom: 0; border-radius: 16px 16px 0 0; left: 21px; top: 13px; }
.form-card { padding: 42px; }
.contact-form button { justify-self: start; }
.spam-box { margin-top: 16px; }
.captcha-line { display: flex; align-items: center; gap: .5rem; margin: 0; color: var(--ink-2); }
.captcha-line::before { content: '◇'; color: var(--ink); }
.message { padding: 1rem 1.2rem; border-radius: 12px; margin-bottom: 18px; font-weight: 650; }
.message-success { background: #e8f7ed; color: #1a6740; border: 1px solid #bde5ca; }
.message-error { background: #fff0e4; color: #7a3912; border: 1px solid #ffc79b; }

.legal-section, .privacy-section { background: #fff; }
.legal-content { max-width: 920px; }
.legal-main { margin-bottom: 60px; }
.legal-main h2 { font-size: 1.35rem; }
.legal-dl { display: grid; grid-template-columns: 150px 1fr; gap: 4px 14px; margin: 28px 0; }
.legal-dl dt { font-weight: 760; }
.legal-dl dd { margin: 0; }
.legal-item { display: grid; grid-template-columns: 78px 1fr; gap: 28px; padding: 28px 0; border: 0; border-top: 1px solid var(--line); box-shadow: none; border-radius: 0; }
.legal-item h2, .privacy-card h2 { font-size: 1.28rem; }
.privacy-list { display: grid; gap: 18px; }
.privacy-card { display: grid; grid-template-columns: 86px 1fr; align-items: center; gap: 24px; padding: 28px; }
.privacy-card-split { grid-template-columns: 86px 1fr 320px; }
.partner-box { background: #f1fbfc; border: 1px solid rgba(10,145,167,.18); border-radius: 14px; padding: 22px; display: grid; gap: 8px; }
.partner-box strong { color: var(--cyan); }
.rights-list { display: flex; flex-wrap: wrap; gap: 16px 28px; list-style: none; padding: 0; margin: .5rem 0 0; }
.rights-list li { display: flex; align-items: center; gap: .55rem; }
.rights-list li::before { content: '✓'; color: var(--cyan); border: 2px solid var(--cyan); width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .78rem; font-weight: 800; }

.site-footer { background: linear-gradient(135deg, #0b1829, #142943); color: #fff; padding: 46px clamp(22px, 4vw, 56px); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 1220px; margin-inline: auto; }
.footer-brand { display: inline-flex; flex-direction: column; align-items: stretch; text-decoration: none; line-height: 1; }
.footer-brand img { filter: none; width: 165px; opacity: 1; }
.footer-brand-subline { display: block; margin-top: 7px; color: #fff; font-family: Montserrat, Arial, sans-serif; font-weight: 400; font-size: .72rem; line-height: 1; letter-spacing: .02em; text-align: right; opacity: .92; }
.footer-nav { display: flex; gap: clamp(24px, 5vw, 64px); }
.footer-nav a { color: #fff; text-decoration: none; opacity: .92; }
.footer-nav a:hover { opacity: 1; text-decoration: underline; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal[data-reveal="right"] { transform: translateX(64px); }
.reveal.is-visible { opacity: 1; transform: translate(0,0); }

@media (max-width: 980px) {
    .reveal[data-reveal="right"] { transform: translateY(28px); }
    .reveal[data-reveal="right"].is-visible { transform: translate(0,0); }
    .site-header { height: 76px; }
    .nav-toggle { display: inline-grid; gap: 5px; background: transparent; border: 0; padding: 10px; }
    .nav-toggle span:not(.sr-only) { display: block; width: 28px; height: 3px; background: var(--ink); border-radius: 999px; }
    .primary-nav { position: absolute; top: 76px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 18px; }
    .primary-nav.is-open { display: flex; }
    .primary-nav a { padding-block: 12px; }
    .primary-nav a::after { bottom: 4px; }
    .hero-inner, .two-col, .security-grid, .contact-strip-grid, .contact-page-grid { grid-template-columns: 1fr; }
    .hero-stage { order: -1; min-height: 360px; height: 48vh; opacity: .95; }
    .object-tablet { width: min(84vw, 540px); left: 15%; top: 18%; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .ops-grid { grid-template-columns: 1fr; }
    .privacy-card-split { grid-template-columns: 86px 1fr; }
    .partner-box { grid-column: 2; }
}
@media (max-width: 640px) {
    .hero-benefit-popup { left: 0; top: calc(100% + 10px); width: min(330px, calc(100vw - 48px)); transform: translateY(8px); }
    .hero-benefit-popup::after { left: 18px; top: 0; border: 0; border-left: 1px solid rgba(10,145,167,.24); border-top: 1px solid rgba(10,145,167,.24); transform: translateY(-7px) rotate(45deg); }
    .hero-benefit:hover .hero-benefit-popup,
    .hero-benefit:focus-within .hero-benefit-popup { transform: translateY(0); }
    .container, .hero-inner { width: min(100% - 32px, 1180px); }
    .brand img { width: 138px; }
    .hero-inner { padding-top: 38px; }
    .hero-stage { min-height: 290px; }
    .object-clipboard, .object-lock, .object-cloud, .object-server, .object-clock, .object-building, .object-notepad { opacity: .78; transform: scale(.82); }
    .process-grid, .mini-form-row { grid-template-columns: 1fr; }
    .form-actions-row { grid-template-columns: 1fr; }
    .subhero { min-height: 300px; }
    .subhero-inner { min-height: 300px; }
    .contact-page-section, .privacy-section, .legal-section { padding-top: 42px; }
    .info-card, .form-card, .privacy-card { padding: 24px; }
    .privacy-card, .legal-item { grid-template-columns: 1fr; }
    .partner-box { grid-column: auto; }
    .legal-dl { grid-template-columns: 1fr; }
    .footer-inner { align-items: flex-start; flex-direction: column; }
    .footer-nav { gap: 22px; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
    .hero-object { transform: none !important; }
    .reveal { opacity: 1; transform: none; }
}

/* Datenschutz – ausführliche Rechtstext-Darstellung */
.privacy-legal-text { max-width: 960px; }
.privacy-document {
    background: rgba(255,255,255,.92);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 36px rgba(16,33,57,.06);
    padding: clamp(32px, 5vw, 58px);
}
.privacy-document h2.privacy-title {
    font-size: clamp(1.85rem, 3vw, 2.65rem);
    margin-bottom: 2rem;
}
.privacy-document h2:not(.privacy-title) {
    font-size: clamp(1.45rem, 2.3vw, 2.05rem);
    margin-top: 2.6rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}
.privacy-document h3 {
    font-size: 1.08rem;
    letter-spacing: -.02em;
    margin: 1.45rem 0 .55rem;
}
.privacy-document p,
.privacy-document li { color: var(--ink-2); }
.privacy-document p { margin-bottom: 1rem; }
.privacy-document a { overflow-wrap: anywhere; }
.privacy-inline-list {
    margin: .2rem 0 1.4rem 1.2rem;
    padding: 0;
    color: var(--ink-2);
}
.privacy-inline-list li { margin-bottom: .55rem; }
.privacy-warning {
    background: var(--apricot-soft);
    border-left: 4px solid var(--apricot);
    border-radius: 12px;
    color: #714217 !important;
    font-weight: 650;
    padding: 1rem 1.15rem;
}
.privacy-download-text {
    margin-top: 2rem;
    color: var(--cyan) !important;
    font-weight: 760;
}

.privacy-print-link {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--cyan) !important;
    font: inherit;
    font-weight: inherit;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.privacy-print-link:hover,
.privacy-print-link:focus-visible {
    color: var(--cyan-dark) !important;
    text-decoration: underline;
}

.privacy-print-link:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 4px;
    border-radius: 4px;
}

.section-product .device-wrap img {
    width: 125%;
    max-width: none;
    margin-left: -12.5%;
}

@media (max-width: 980px) {
    .section-product .device-wrap img {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }
}

.server-room {
    background: linear-gradient(135deg, rgba(6,19,36,.18), rgba(6,19,36,.34)), url("../img/saas-security.webp") center center / cover no-repeat;
}

.server-room .server-line {
    display: none;
}

.server-room .mw-security-icon-img {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 150px;
    height: auto;
    margin: auto;
    filter: drop-shadow(0 16px 28px rgba(0,0,0,.35));
    pointer-events: none;
}
