/* ==================================================
   SÄNTIS WEBDESIGN — VERSION 1.1
   Strukturiert, responsiv, ohne doppelte Regelblöcke
================================================== */

/* ==================================================
   1. DESIGN TOKENS
================================================== */
:root {
    --navy: #07111f;
    --navy-2: #0b1829;
    --navy-3: #10243a;
    --blue: #2f80ff;
    --cyan: #5edcff;
    --ink: #0c1a2f;
    --muted: #65758c;
    --line: #dce4ee;
    --soft: #f3f6fa;
    --white: #fff;

    --max: 1440px;
    --section-x: clamp(20px, 3vw, 42px);
    --section-y: clamp(92px, 8vw, 140px);

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 28px;

    --shadow: 0 24px 70px rgba(11, 34, 66, .12);
    --ease: cubic-bezier(.2, .75, .25, 1);
}

/* ==================================================
   2. RESET / GLOBAL
================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
    margin: 0;
    overflow-x: hidden;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--white);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
::selection { color: var(--navy); background: var(--cyan); }

.container { width: min(100%, var(--max)); margin-inline: auto; }
.section { padding: var(--section-y) var(--section-x); }

.section-index,
.kicker {
    margin: 0;
    color: #7b8ba1;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.section-index { margin-bottom: 28px; }
.section-index.light { color: #7891ae; }

.section-lead {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.title { margin: 0; letter-spacing: -.045em; }
.title-section { font-size: clamp(42px, 4.4vw, 68px); line-height: 1.03; }
.title-section span { color: var(--blue); }
.title-display { font-size: clamp(44px, 4.6vw, 70px); line-height: 1.02; letter-spacing: -.05em; }
.title-display span { color: var(--cyan); }

/* ==================================================
   3. HEADER / NAVIGATION
================================================== */
.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: 94px;
    background: linear-gradient(180deg, rgba(7,17,31,.88), transparent);
    transition: height .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}

.header.scrolled {
    height: 80px;
    background: rgba(7,17,31,.96);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
}

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
    height: 100%;
    max-width: var(--max);
    margin: auto;
    padding-inline: var(--section-x);
}

.logo {
    display: grid;
    place-items: center;
    width: 96px;
    height: 76px;
    margin-right: auto;
}

.logo img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    filter: saturate(.96) contrast(1.04);
    transition: transform .25s var(--ease), filter .25s var(--ease);
}

.logo:is(:hover,:focus-visible) img {
    transform: translateY(-1px) scale(1.04);
    filter: saturate(1.08) drop-shadow(0 0 14px rgba(94,220,255,.2));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 12px 0;
    color: #cbd6e5;
    font-size: 15px;
    font-weight: 700;
    transition: color .22s var(--ease), transform .22s var(--ease);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), #a9efff);
    box-shadow: 0 0 12px rgba(94,220,255,.45);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease);
}

.nav-links a:is(:hover,:focus-visible) {
    color: #fff;
    transform: translateY(-1px);
}

.nav-links a:is(:hover,:focus-visible)::after {
    transform: scaleX(1);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 20px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    transition: transform .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease);
}

.nav-cta:is(:hover,:focus-visible) {
    transform: translateY(-2px);
    background: rgba(94,220,255,.08);
    border-color: rgba(94,220,255,.5);
}

.burger {
    display: none;
    padding: 8px;
    border: 0;
    background: none;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 6px;
    background: #fff;
    transition: transform .25s var(--ease), opacity .2s ease;
}

/* ==================================================
   4. HERO
================================================== */
.hero {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 100svh;
    padding: 140px 0 78px;
    overflow: hidden;
    color: #fff;
    background: radial-gradient(circle at 72% 34%, #143760 0, #0b2039 27%, var(--navy) 62%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, transparent 92%);
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .18;
}

.orb-a {
    top: 80px;
    right: -160px;
    width: 500px;
    height: 500px;
    background: var(--blue);
}

.orb-b {
    bottom: -80px;
    left: -180px;
    width: 320px;
    height: 320px;
    background: var(--cyan);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: clamp(45px, 5vw, 80px);
    width: min(var(--max), calc(100% - 84px));
    margin: auto;
}

.kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9bb1ca;
}

.kicker span {
    width: 28px;
    height: 1px;
    background: var(--cyan);
}

.hero h1 {
    max-width: 760px;
    margin: 28px 0;
    font-size: clamp(48px, 5.2vw, 82px);
    line-height: .98;
    letter-spacing: -.055em;
}

.hero h1 em {
    display: block;
    color: var(--cyan);
    font-style: normal;
}

.hero-lead {
    max-width: 650px;
    margin: 0;
    color: #aab9cb;
    font-size: 19px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 36px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border-radius: var(--r-sm);
    font-size: 14px;
    font-weight: 800;
    transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}

.btn:is(:hover,:focus-visible) {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--navy);
    background: #fff;
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.btn-primary span { display: none; }

.btn-ghost {
    color: #d9e3ee;
    border: 1px solid rgba(255,255,255,.16);
}

.btn-ghost:is(:hover,:focus-visible) {
    border-color: rgba(94,220,255,.45);
}

.hero-proof {
    display: flex;
    margin-top: 48px;
    color: #8396ac;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-proof span {
    padding: 0 18px;
    border-left: 1px solid rgba(255,255,255,.14);
}

.hero-proof span:first-child {
    padding-left: 0;
    border: 0;
}

/* ==================================================
   5. HERO MOCKUP
================================================== */
.hero-stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 650px;
}

.stage-glow {
    position: absolute;
    width: 78%;
    height: 72%;
    background: #287fff;
    filter: blur(115px);
    opacity: .16;
}

.desktop-frame {
    width: 88%;
    aspect-ratio: 1.22;
    overflow: hidden;
    background: #dce7f7;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 18px;
    box-shadow: 0 40px 100px rgba(0,0,0,.42);
    transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg);
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.frame-bar,
.case-bar {
    display: flex;
    align-items: center;
}

.frame-bar {
    gap: 7px;
    height: 42px;
    padding: 0 14px;
    background: #172c48;
}

.frame-bar i,
.case-bar i {
    border-radius: 50%;
}

.frame-bar i {
    width: 8px;
    height: 8px;
    background: #71849c;
}

.frame-bar span,
.case-bar span {
    margin: auto;
    font-size: 10px;
}

.frame-bar span { color: #8192a8; }

.frame-page {
    height: calc(100% - 42px);
    padding: 28px 34px;
    color: #0b1930;
    background: #f6f9ff;
}

.demo-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    letter-spacing: .18em;
}

.demo-nav div {
    display: flex;
    gap: 8px;
}

.demo-nav i {
    width: 24px;
    height: 3px;
    border-radius: 4px;
    background: #d2dceb;
}

.demo-hero {
    padding: 55px 16px 42px;
}

.demo-hero small {
    color: var(--blue);
    font-weight: 800;
    letter-spacing: .2em;
}

.demo-hero strong {
    display: block;
    margin: 15px 0;
    font-size: 42px;
    line-height: 1.02;
    letter-spacing: -.05em;
}

.demo-hero strong span {
    display: block;
    color: var(--blue);
}

.demo-hero p { color: #7b899c; }

.demo-hero button {
    padding: 12px 18px;
    color: #fff;
    background: var(--blue);
    border: 0;
    border-radius: 7px;
    font-weight: 700;
}

.demo-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
}

.demo-row i {
    height: 82px;
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 12px;
}

.phone-frame {
    position: absolute;
    right: -1%;
    bottom: 3%;
    width: 25%;
    aspect-ratio: .52;
    padding: 32px 15px 18px;
    overflow: hidden;
    background: var(--navy);
    border: 5px solid #1b2b40;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0,0,0,.5);
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 36%;
    height: 8px;
    background: #26384d;
    border-radius: 8px;
    transform: translateX(-50%);
}

.phone-brand {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .2em;
}

.phone-copy { margin-top: 55px; }

.phone-copy small {
    color: var(--cyan);
    font-size: 7px;
    letter-spacing: .18em;
}

.phone-copy b {
    display: block;
    margin: 9px 0 25px;
    font-size: 24px;
    line-height: 1;
}

.phone-copy b span {
    display: block;
    color: var(--cyan);
}

.phone-copy i {
    display: block;
    height: 45px;
    margin: 8px 0;
    background: #10243d;
    border: 1px solid #1b3859;
    border-radius: 8px;
}

.stage-annotations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.stage-annotation {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 176px;
    padding: 12px 14px;
    color: #fff;
    background: rgba(6,15,27,.93);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(0,0,0,.22);
    backdrop-filter: blur(12px);
    transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}

.annotation-index {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--cyan);
    background: #0f3b46;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 900;
}

.annotation-copy {
    display: grid;
    gap: 3px;
}

.annotation-copy b { font-size: 12px; }
.annotation-copy small { color: #8193a8; font-size: 9px; }

.annotation-responsive { top: 8%; right: 2%; }
.annotation-performance { bottom: 11%; left: -1%; }
.annotation-individual { right: 2%; bottom: 4%; }

.scroll-cue {
    position: absolute;
    bottom: 24px;
    left: 50%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    color: #70839a;
    font-size: 9px;
    letter-spacing: .2em;
    transform: translateX(-50%);
}

.scroll-cue span {
    width: 1px;
    height: 34px;
    background: linear-gradient(var(--cyan),transparent);
}

@media (hover:hover) and (pointer:fine) {
    .hero-stage:hover .desktop-frame {
        transform: perspective(1400px) rotateY(-2deg) rotateX(.5deg) translateY(-4px);
        box-shadow: 0 50px 120px rgba(0,0,0,.46);
    }

    .hero-stage:hover .phone-frame {
        transform: translate(4px,-7px);
        box-shadow: 0 38px 80px rgba(0,0,0,.54);
    }

    .hero-stage:hover .stage-annotation {
        border-color: rgba(94,220,255,.22);
    }

    .hero-stage:hover .annotation-responsive { transform: translate(5px,-4px); }
    .hero-stage:hover .annotation-performance { transform: translate(-5px,4px); }
    .hero-stage:hover .annotation-individual { transform: translate(5px,4px); }
}

/* ==================================================
   6. POSITIONIERUNG
================================================== */
.positioning {
    padding: 120px var(--section-x) 126px;
    background: #fff;
}

.title-positioning {
    max-width: 1220px;
    font-size: clamp(42px,4.8vw,74px);
    line-height: 1.05;
}

.title-positioning span { color: #a8b4c3; }

.positioning-points {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 22px;
    max-width: 980px;
    margin: 54px 0 0 auto;
}

.positioning-point {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 28px;
    border: 1px solid #e0e7ef;
    border-radius: 20px;
    background: linear-gradient(180deg,#fff,#fbfcfe);
}

.positioning-point > span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
}

.positioning-point h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: -.02em;
}

.positioning-point p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
}

/* ==================================================
   7. LEISTUNGEN
================================================== */
.services { background: var(--soft); }

.section-top,
.process-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 64px;
}

.section-top .section-index,
.process-head .section-index {
    grid-column: 1/-1;
}

.service-showcase {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 18px;
}

.service-main,
.service-panel {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dfe6ef;
    border-radius: 24px;
}

.service-main {
    min-height: 590px;
    padding: 48px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    color: #8796aa;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
}

.service-main h3 {
    max-width: 650px;
    margin: 90px 0 22px;
    font-size: 44px;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.service-main > p {
    max-width: 600px;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.service-tags span,
.about-values span {
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 11px;
}

.service-tags span {
    color: #617086;
    border: 1px solid #dfe6ef;
}

.service-device-preview {
    position: absolute;
    right: 24px;
    bottom: 22px;
    width: 47%;
    height: 245px;
}

.preview-desktop,
.preview-tablet,
.preview-phone {
    position: absolute;
    overflow: hidden;
    background: #eef5ff;
    border: 1px solid #cfe0fb;
    box-shadow: 0 20px 50px rgba(29,75,135,.12);
}

.preview-desktop {
    right: 0;
    bottom: 0;
    width: 90%;
    height: 72%;
    border-radius: 16px;
}

.preview-tablet {
    left: 3%;
    bottom: 4%;
    width: 34%;
    height: 60%;
    border-radius: 14px;
}

.preview-phone {
    right: 4%;
    bottom: 4%;
    width: 16%;
    height: 48%;
    border-radius: 12px;
}

.preview-desktop span,
.preview-tablet span,
.preview-phone span {
    display: block;
    height: 16%;
    background: linear-gradient(90deg,#0d2340,var(--blue));
}

.preview-desktop i,
.preview-tablet i,
.preview-phone i {
    display: block;
    margin: 8% 8% 0;
    background: #d6e7ff;
    border-radius: 6px;
}

.preview-desktop i:nth-of-type(1) { width: 52%; height: 16%; }
.preview-desktop i:nth-of-type(2) { width: 78%; height: 8%; }
.preview-desktop i:nth-of-type(3) { width: 64%; height: 8%; }
.preview-tablet i { width: 70%; height: 12%; }
.preview-phone i { width: 68%; height: 10%; }

.service-side {
    display: grid;
    gap: 18px;
}

.service-panel {
    min-height: 286px;
    padding: 38px;
}

.service-panel > span {
    color: #8c9aab;
    font-size: 11px;
    font-weight: 800;
}

.service-panel h3 {
    margin: 55px 0 12px;
    font-size: 28px;
    letter-spacing: -.03em;
}

.service-panel p {
    max-width: 450px;
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.service-panel-dark {
    color: #fff;
    background: var(--navy);
    border-color: #14263c;
}

.service-panel-dark p { color: #8fa1b7; }

.device-lines,
.signal {
    position: absolute;
    right: 30px;
    display: flex;
    align-items: end;
}

.device-lines {
    top: 30px;
    gap: 7px;
}

.device-lines i {
    display: block;
    border: 2px solid #d7e6ff;
    border-radius: 4px;
}

.device-lines i:nth-child(1) { width: 38px; height: 27px; }
.device-lines i:nth-child(2) { width: 22px; height: 32px; }
.device-lines i:nth-child(3) { width: 13px; height: 25px; }

.signal {
    top: 35px;
    right: 34px;
    gap: 5px;
    height: 38px;
}

.signal i {
    width: 6px;
    background: var(--cyan);
    border-radius: 5px;
}

.signal i:nth-child(1) { height: 10px; }
.signal i:nth-child(2) { height: 18px; }
.signal i:nth-child(3) { height: 27px; }
.signal i:nth-child(4) { height: 37px; }

.service-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 8px 0;
    color: #5f6e81;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.service-strip i {
    width: 4px;
    height: 4px;
    background: var(--blue);
    border-radius: 50%;
}

/* ==================================================
   8. REFERENZ / CASE STUDY
================================================== */
.case {
    padding: 136px var(--section-x);
    color: #fff;
    background: var(--navy);
}

.case-inner {
    display: grid;
    grid-template-columns: .68fr 1.32fr;
    align-items: center;
    gap: 80px;
}

.case-copy h2 { margin: 0 0 26px; }

.case-intro {
    margin: 0;
    color: #92a4ba;
    font-size: 17px;
    line-height: 1.75;
}

.case-story {
    display: grid;
    margin: 34px 0 28px;
    border-top: 1px solid #203149;
}

.case-story article {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 18px;
    padding: 19px 0;
    border-bottom: 1px solid #203149;
}

.case-story span {
    color: var(--cyan);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
}

.case-story p {
    margin: 0;
    color: #a8b6c8;
    font-size: 13px;
    line-height: 1.6;
}

.case-scope {
    margin-bottom: 26px;
    color: #6f89a8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 7px;
    border-bottom: 1px solid #35516f;
    font-weight: 800;
    transition: color .22s var(--ease), border-color .22s var(--ease);
}

.case-link span { color: var(--cyan); }

.case-link:is(:hover,:focus-visible) {
    color: var(--cyan);
    border-color: var(--cyan);
}

.case-visual {
    position: relative;
    padding: 34px 34px 56px 0;
}

.case-browser {
    overflow: hidden;
    background: #10233a;
    border: 1px solid #243a55;
    border-radius: 20px;
    box-shadow: 0 50px 100px rgba(0,0,0,.35);
    transform: rotate(.7deg);
}

.case-bar {
    gap: 6px;
    height: 42px;
    padding: 0 14px;
    background: #0d1c2f;
}

.case-bar i {
    width: 7px;
    height: 7px;
    background: #52657c;
}

.case-bar span { color: #6e8299; }

.case-browser img {
    width: 100%;
    aspect-ratio: 2/1;
    object-fit: cover;
    object-position: top center;
    background: #10233a;
}

.case-phone {
    position: absolute;
    right: 0;
    bottom: 34px;
    z-index: 3;
    width: 26%;
    aspect-ratio: .53;
    padding: 18px 8px 8px;
    background: #091625;
    border: 5px solid #223b5b;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(0,0,0,.42);
    transform: rotate(2deg);
}

.case-phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 40%;
    height: 7px;
    border-radius: 999px;
    background: #324966;
    transform: translateX(-50%);
}

.case-phone-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
}

.case-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.case-label {
    position: absolute;
    right: 18%;
    bottom: 6px;
    z-index: 4;
    min-width: 200px;
    padding: 15px 20px;
    color: var(--ink);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,.22);
}

.case-label span {
    display: block;
    margin-bottom: 5px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .16em;
}

.case-label b {
    display: block;
    font-size: 13px;
}

.case-label small {
    color: #8190a3;
    font-size: 10px;
}

/* ==================================================
   9. PROZESS
================================================== */
.process { background: #fff; }

.process-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    padding-top: 18px;
}

.process-line {
    position: absolute;
    top: 66px;
    left: 11.5%;
    right: 11.5%;
    height: 2px;
    overflow: hidden;
    background: #e5edf7;
    border-radius: 999px;
}

.process-line span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,var(--blue),var(--cyan));
    transform: scaleX(var(--process-progress,0));
    transform-origin: left;
    transition: transform .18s linear;
}

.process-item {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 27px;
    min-width: 0;
    padding: 0 22px 10px;
}

.process-node {
    position: relative;
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    margin-inline: auto;
    color: #8395ac;
    background: #fff;
    border: 1px solid #dce6f2;
    border-radius: 26px;
    box-shadow: 0 18px 40px rgba(21,54,95,.08);
    transition:
        transform .3s var(--ease),
        color .3s var(--ease),
        border-color .3s var(--ease),
        background .3s var(--ease),
        box-shadow .3s var(--ease);
}

.process-node span {
    position: absolute;
    top: 8px;
    left: 10px;
    color: #94a4b7;
    font-size: 9px;
    font-weight: 800;
}

.process-node svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-copy {
    text-align: center;
}

.process-eyebrow {
    display: block;
    margin-bottom: 11px;
    color: #8b9bae;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.process-item h3 {
    position: relative;
    margin: 0 0 12px;
    font-size: 25px;
    line-height: 1.15;
    letter-spacing: -.03em;
    transition: color .3s var(--ease), transform .3s var(--ease);
}

.process-item h3::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    margin: 9px auto 0;
    border-radius: 999px;
    background: var(--cyan);
    transition: width .3s var(--ease);
}

.process-item p {
    max-width: 285px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

@media (hover:hover) and (pointer:fine) {
    .process-item:hover .process-node {
        color: var(--cyan);
        background: #0b1f36;
        border-color: rgba(94,220,255,.42);
        box-shadow: 0 20px 50px rgba(47,128,255,.18), inset 0 0 30px rgba(94,220,255,.06);
        transform: translateY(-6px) scale(1.04);
    }

    .process-item:hover h3 {
        color: var(--blue);
        transform: translateY(-2px);
    }

    .process-item:hover h3::after {
        width: 38px;
    }
}

.process-item:focus-within .process-node {
    outline: 2px solid rgba(47,128,255,.35);
    outline-offset: 4px;
}

/* ==================================================
   10. ÜBER MICH
================================================== */
.about {
    padding: 136px var(--section-x);
    color: #fff;
    background: var(--navy-2);
}

.about-inner {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: center;
    gap: clamp(58px, 6vw, 110px);
}

.about-signature {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 540px;
    padding: 36px;

    background:
        radial-gradient(
            circle at 50% 40%,
            #143457,
            var(--navy-2) 64%
        );

    border: 1px solid #20334a;
    border-radius: 26px;
}


/* ==================================================
   ABOUT LOGO / FADENKREUZ
================================================== */

.about-logo-wrap {
    position: relative;

    display: grid;
    place-items: center;

    width: 420px;
    height: 360px;

    margin: 14px auto 20px;

    border: 0;
    border-radius: 0;
    box-shadow: none;
}


/* Vertikale Linie */

.about-logo-wrap::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 1px;
    height: 130%;

    background:
        rgba(94, 220, 255, .14);

    transform:
        translate(-50%, -50%);
}


/* Horizontale Linie */

.about-logo-wrap::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 130%;
    height: 1px;

    background:
        rgba(94, 220, 255, .14);

    transform:
        translate(-50%, -50%);
}


/* Logo */

.about-logo-wrap img {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: none;
    height: auto;

    object-fit: contain;

    /* ==========================================
       HIER LOGO EINSTELLEN

       translateX:
       negativ = links
       positiv = rechts

       translateY:
       negativ = hoch
       positiv = runter

       scale:
       1.00 = original
       1.20 = 20% grösser
       1.40 = 40% grösser
    ========================================== */

    transform:
        translateX(-4.5px)
        translateY(0px)
        scale(1.5);
}


/* ==================================================
   PERSON
================================================== */

.about-person {
    display: grid;
    gap: 5px;

    padding-top: 24px;

    border-top:
        1px solid
        #20334a;
}

.about-person-kicker {
    color: var(--cyan);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .13em;
}

.about-person strong {
    font-size: 21px;
}

.about-person small {
    color: #7890aa;

    font-size: 12px;
}


/* ==================================================
   LOCATION
================================================== */

.about-location {
    display: flex;
    justify-content: space-between;
    gap: 18px;

    margin-top: 24px;

    color: #7388a2;

    font-size: 10px;
    letter-spacing: .18em;
}


/* ==================================================
   ABOUT COPY
================================================== */

.about-copy {
    min-width: 0;
    max-width: 720px;
}

.about-copy h2 {
    margin-bottom: 28px;
}

.about-copy > p {
    max-width: 650px;

    margin:
        0
        0
        18px;

    color: #92a4ba;

    font-size: 17px;
    line-height: 1.75;
}


/* ==================================================
   VALUES
================================================== */

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin:
        28px
        0;
}

.about-values span {
    color: #9cb1c9;

    border:
        1px solid
        #20334a;
}

/* ==================================================
   11. KONTAKT
================================================== */
.contact {
    position: relative;
    overflow: hidden;
    padding: 126px var(--section-x);
    color: #fff;
    background: linear-gradient(135deg,#1f6fe5,var(--blue) 48%,#49b9ef);
}

.contact::after {
    content: "";
    position: absolute;
    top: -270px;
    right: -240px;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    box-shadow:
        0 0 0 100px rgba(255,255,255,.03),
        0 0 0 200px rgba(255,255,255,.025);
}

.contact-inner {
    position: relative;
    z-index: 1;
}

.contact .section-index {
    color: #d3e8ff;
}

.title-contact {
    max-width: 980px;
    font-size: clamp(50px,6vw,90px);
}

.contact-inner > p {
    max-width: 680px;
    margin: 26px 0 0;
    color: #dcecff;
    font-size: 17px;
    line-height: 1.75;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 64px;
    align-items: start;
    max-width: 1180px;
    margin-top: 54px;
}

.contact-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 126px;
    padding: 28px 32px;
    color: var(--ink);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 22px 50px rgba(14,60,122,.18);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.contact-main:is(:hover,:focus-visible) {
    transform: translateY(-3px);
    box-shadow: 0 28px 60px rgba(14,60,122,.25);
}

.contact-main > span {
    display: grid;
    gap: 8px;
    font-size: 20px;
    font-weight: 900;
}

.contact-main small {
    color: var(--blue);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .16em;
}

.contact-arrow {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    margin-left: 20px;
    color: var(--cyan);
    background: var(--navy);
    border-radius: 50%;
    transition: transform .25s var(--ease), background .25s var(--ease);
}

.contact-arrow::before {
    content: "";
    width: 14px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transform: translateX(-1px);
}

.contact-arrow::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateX(4px) rotate(45deg);
}

.contact-main:is(:hover,:focus-visible) .contact-arrow {
    transform: translateX(4px);
    background: #0b213a;
}

.contact-email {
    margin: 16px 4px 0;
    color: #dcecff;
    font-size: 13px;
}

.contact-email a {
    margin-left: 10px;
    color: #fff;
    font-weight: 800;
    border-bottom: 1px solid rgba(255,255,255,.55);
}

.contact-trust {
    padding-top: 4px;
}

.contact-trust-label {
    display: block;
    padding-bottom: 18px;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
}

.contact-trust-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.18);
}

.contact-trust-item:last-child {
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.contact-trust-item > b {
    color: #d7ecff;
    font-size: 12px;
}

.contact-trust-item span {
    display: grid;
    gap: 5px;
}

.contact-trust-item strong {
    font-size: 16px;
}

.contact-trust-item small {
    color: #d5e8ff;
    font-size: 12px;
    line-height: 1.5;
}

/* ==================================================
   12. FOOTER
================================================== */
footer {
    padding: 70px var(--section-x) 28px;
    color: #fff;
    background: #050c15;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(300px,1fr) 220px 180px;
    gap: 80px;
    align-items: start;
}

.footer-brand-block {
    max-width: 360px;
}

.footer-brand {
    display: block;
    width: 140px;
    margin-bottom: 20px;
}

.footer-brand img {
    width: 100%;
    height: auto;
}

.footer-brand-block p {
    max-width: 300px;
    margin: 0 0 12px;
    color: #9aabba;
    font-size: 14px;
    line-height: 1.6;
}

.footer-brand-block > span {
    color: #5f7084;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-column {
    display: grid;
    gap: 13px;
}

.footer-column strong {
    margin-bottom: 5px;
    color: #fff;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-column a {
    width: fit-content;
    color: #9aabba;
    font-size: 13px;
    transition: color .2s ease;
}

.footer-column a:is(:hover,:focus-visible) {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 55px;
    padding-top: 24px;
    border-top: 1px solid #172435;
    color: #5f7084;
    font-size: 11px;
}

/* ==================================================
   13. REVEAL
================================================== */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ==================================================
   14. TABLET
================================================== */
@media (max-width: 1100px) {
    .nav-links { gap: 22px; }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 22px;
        width: min(calc(100% - 52px),var(--max));
    }

    .hero-copy {
        max-width: 820px;
        margin: auto;
        text-align: center;
    }

    .kicker,
    .hero-actions,
    .hero-proof {
        justify-content: center;
    }

    .hero-stage {
        width: 100%;
        max-width: 820px;
        min-height: 540px;
        margin: auto;
    }

    .desktop-frame { width: 78%; }
    .phone-frame { right: 5%; }
    .annotation-responsive { right: 4%; }
    .annotation-performance { left: 5%; }
    .annotation-individual { right: 5%; }

    .service-showcase { grid-template-columns: 1fr; }
    .service-side { grid-template-columns: repeat(2,1fr); }
    .service-main { min-height: 520px; }

    .case-inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .case-copy { max-width: 820px; }

    .case-visual {
        max-width: 900px;
        width: 100%;
        margin: auto;
    }

    .process-list {
        grid-template-columns: repeat(2,1fr);
        gap: 44px 0;
    }

    .process-line { display: none; }

    .about-inner { gap: 52px; }
    .about-logo-wrap { width: 280px; height: 280px; }
    .contact-layout { gap: 42px; }
}

/* ==================================================
   15. MOBILE — ÜBERARBEITET
   Nur Mobile. Desktop bleibt unverändert.
================================================== */
@media (max-width: 800px) {

    :root {
        --section-x: 20px;
        --section-y: 82px;
    }

    html {
        scroll-padding-top: 74px;
    }

    .header,
    .header.scrolled {
        height: 74px;
        background: rgba(7,17,31,.98);
        backdrop-filter: blur(16px);
    }

    .nav {
        gap: 16px;
        padding-inline: 18px;
    }

    .nav-cta {
        display: none;
    }

    .burger {
        display: block;
        z-index: 2;
    }

    .burger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .burger[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .burger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 82px;
        left: 14px;
        right: 14px;
        display: grid;
        gap: 4px;
        padding: 12px;
        background: rgba(8,25,43,.99);
        border: 1px solid #1e3855;
        border-radius: 18px;
        box-shadow: 0 24px 70px rgba(0,0,0,.32);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px) scale(.985);
        transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-links a {
        display: flex;
        justify-content: center;
        padding: 16px 15px;
        color: #fff;
        border-radius: 11px;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding: 112px 0 68px;
    }

    .hero-inner {
        width: calc(100% - 36px);
        gap: 28px;
    }

    .hero-copy {
        width: 100%;
        max-width: 680px;
        margin-inline: auto;
        text-align: center;
    }

    .kicker {
        justify-content: center;
        font-size: 10px;
        letter-spacing: .16em;
    }

    .hero h1 {
        max-width: 690px;
        margin: 22px auto 24px;
        font-size: clamp(42px,10.8vw,58px);
        line-height: .98;
        letter-spacing: -.05em;
        text-align: center;
    }

    .hero-lead {
        max-width: 640px;
        margin-inline: auto;
        font-size: 16px;
        line-height: 1.65;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        margin-top: 30px;
    }

    .btn {
        width: 100%;
        min-height: 58px;
    }

    .hero-proof {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 0;
        margin-top: 34px;
        text-align: center;
    }

    .hero-proof span {
        padding-inline: 14px;
        font-size: 9px;
    }

    .hero-stage {
        min-height: 360px;
        margin-top: 4px;
    }

    .desktop-frame {
        width: 94%;
        transform: none;
    }

    .frame-page {
        padding: 22px 24px;
    }

    .demo-hero {
        padding: 34px 8px 24px;
    }

    .demo-hero strong {
        font-size: 28px;
    }

    .demo-row i {
        height: 46px;
    }

    .phone-frame {
        right: -1%;
        bottom: -2%;
        width: 25%;
        padding: 22px 9px;
        border-width: 3px;
        border-radius: 18px;
    }

    .phone-copy { margin-top: 30px; }
    .phone-copy b { font-size: 15px; }
    .phone-copy i { height: 28px; }

    .stage-annotations,
    .scroll-cue {
        display: none;
    }

    .section-index {
        margin-bottom: 22px;
        font-size: 10px;
        text-align: center;
    }

    .title-section,
    .title-positioning,
    .title-display {
        max-width: 100%;
        margin-inline: auto;
        font-size: clamp(36px,8.8vw,46px);
        text-align: center;
    }

    .section-top,
    .process-head {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 38px;
        text-align: center;
    }

    .section-top .section-index,
    .process-head .section-index {
        grid-column: auto;
    }

    .section-lead {
        margin-inline: auto;
        font-size: 15px;
        line-height: 1.65;
        text-align: center;
    }

    .positioning {
        padding: 78px 20px 84px;
    }

    .positioning-points {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 680px;
        margin: 38px auto 0;
    }

    .positioning-point {
        display: block;
        padding: 24px 22px;
        border-radius: 18px;
        text-align: center;
    }

    .positioning-point > span {
        display: block;
        margin-bottom: 10px;
    }

    .positioning-point h3 {
        margin-inline: auto;
        font-size: 19px;
    }

    .positioning-point p {
        max-width: 560px;
        margin-inline: auto;
        font-size: 15px;
        line-height: 1.65;
    }

    .service-main,
    .service-panel {
        text-align: center;
    }

    .service-main {
        min-height: 500px;
        padding: 26px;
    }

    .service-meta {
        justify-content: center;
        gap: 20px;
    }

    .service-main h3 {
        max-width: 560px;
        margin: 52px auto 18px;
        font-size: 32px;
    }

    .service-main > p {
        max-width: 580px;
        margin-inline: auto;
        font-size: 15px;
        line-height: 1.65;
    }

    .service-tags {
        justify-content: center;
    }

    .service-device-preview {
        right: 50%;
        bottom: 14px;
        width: 64%;
        height: 165px;
        transform: translateX(50%);
    }

    .service-side {
        grid-template-columns: 1fr;
    }

    .service-panel {
        min-height: 220px;
        padding: 26px;
    }

    .service-panel h3 {
        max-width: 560px;
        margin: 38px auto 12px;
        font-size: 25px;
    }

    .service-panel p {
        margin-inline: auto;
        font-size: 15px;
    }

    .service-strip {
        display: grid;
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 10px;
        padding: 24px 0 0;
    }

    .service-strip span {
        padding: 11px 12px;
        text-align: center;
        background: rgba(255,255,255,.72);
        border: 1px solid #dfe6ef;
        border-radius: 10px;
        font-size: 9px;
        line-height: 1.35;
    }

    .service-strip i { display: none; }

    .case {
        padding: 82px 20px;
    }

    .case-inner {
        gap: 34px;
    }

    .case-copy {
        max-width: 720px;
        margin-inline: auto;
        text-align: center;
    }

    .case-intro {
        font-size: 15px;
        line-height: 1.7;
    }

    .case-story {
        margin: 28px 0 24px;
    }

    .case-story article {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 18px 0;
        text-align: center;
    }

    .case-scope,
    .case-link {
        margin-inline: auto;
    }

    .case-visual {
        width: 100%;
        max-width: 760px;
        margin-inline: auto;
        padding: 0 18px 52px 0;
    }

    .case-browser {
        border-radius: 16px;
        transform: none;
    }

    .case-browser img {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        object-fit: cover;
        object-position: center 26%;
    }

    .case-phone {
        right: 0;
        bottom: 20px;
        width: 31%;
        border-width: 4px;
        border-radius: 22px;
        transform: rotate(1deg);
    }

    .case-phone-screen {
        border-radius: 14px;
    }

    .case-phone-screen img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }

    .case-label {
        right: auto;
        left: 14px;
        bottom: 0;
        min-width: 0;
        max-width: 70%;
        padding: 12px 15px;
        text-align: left;
    }

    .process-list {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 680px;
        margin-inline: auto;
        padding: 0;
    }

    .process-line {
        display: block;
        top: 28px;
        bottom: 28px;
        left: 27px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .process-line span {
        transform: scaleY(var(--process-progress,0));
        transform-origin: top;
    }

    .process-item {
        grid-template-columns: 56px 1fr;
        grid-template-rows: auto;
        gap: 18px;
        padding: 0 0 34px;
    }

    .process-node {
        width: 56px;
        height: 56px;
        margin: 0;
        border-radius: 17px;
    }

    .process-copy {
        padding-top: 2px;
        text-align: left;
    }

    .process-item h3 {
        margin-bottom: 8px;
        font-size: 23px;
    }

    .process-item h3::after {
        display: none;
    }

    .process-item p {
        max-width: none;
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
    }

    .about {
        padding: 82px 20px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about-signature {
        width: 100%;
        max-width: 620px;
        min-height: 410px;
        margin-inline: auto;
        padding: 26px;
    }

    .about-logo-wrap {
        width: min(285px,72vw);
        height: min(285px,72vw);
        margin: 10px auto 20px;
    }

    .about-copy {
        width: 100%;
        max-width: 680px;
        margin-inline: auto;
        text-align: center;
    }

    .about-copy h2 {
        max-width: 100%;
        margin-inline: auto;
        font-size: clamp(36px,8.6vw,46px);
        line-height: 1.02;
    }

    .about-copy > p {
        max-width: 620px;
        margin-inline: auto;
        font-size: 15px;
        line-height: 1.7;
    }

    .about-values {
        justify-content: center;
        margin: 24px 0;
    }

    .about-copy .case-link,
    .about-copy > a {
        margin-inline: auto;
    }

    .contact {
        padding: 86px 20px;
        text-align: center;
    }

    .title-contact {
        max-width: 680px;
        margin-inline: auto;
        font-size: clamp(42px,10.5vw,56px);
    }

    .contact-inner > p {
        max-width: 620px;
        margin-inline: auto;
        font-size: 15px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 680px;
        margin: 38px auto 0;
    }

    .contact-main {
        min-height: 112px;
        padding: 24px;
        text-align: left;
    }

    .contact-main > span {
        font-size: 18px;
    }

    .contact-arrow {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }

    .contact-email {
        margin-inline: 4px;
        line-height: 1.7;
        text-align: center;
    }

    .contact-trust {
        padding-top: 0;
        text-align: center;
    }

    .contact-trust-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 18px 0;
        text-align: center;
    }

    footer {
        padding: 58px 20px 26px;
        text-align: center;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 38px 28px;
    }

    .footer-brand-block {
        grid-column: 1/-1;
        margin-inline: auto;
    }

    .footer-brand,
    .footer-column a {
        margin-inline: auto;
    }

    .footer-bottom {
        margin-top: 42px;
    }

    .reveal {
        transform: translateY(12px);
    }
}

/* ==================================================
   16. KLEINE SMARTPHONES
================================================== */
@media (max-width: 480px) {
    :root {
        --section-x: 16px;
        --section-y: 68px;
    }

    .nav {
        padding-inline: 14px;
    }

    .hero {
        padding-top: 102px;
    }

    .hero-inner {
        width: calc(100% - 28px);
    }

    .kicker {
        font-size: 9px;
        letter-spacing: .13em;
    }

    .hero h1 {
        font-size: clamp(38px,11.5vw,50px);
    }

    .hero-lead {
        font-size: 15px;
    }

    .hero-proof span {
        padding-inline: 10px;
        font-size: 8px;
    }

    .hero-stage {
        min-height: 300px;
    }

    .frame-bar {
        height: 28px;
    }

    .frame-page {
        height: calc(100% - 28px);
        padding: 14px;
    }

    .demo-nav {
        font-size: 8px;
    }

    .demo-nav i {
        width: 12px;
    }

    .demo-hero {
        padding: 22px 4px 16px;
    }

    .demo-hero small {
        font-size: 6px;
    }

    .demo-hero strong {
        font-size: 20px;
    }

    .demo-hero p {
        margin: 8px 0;
        font-size: 8px;
    }

    .demo-hero button {
        padding: 7px 9px;
        font-size: 7px;
    }

    .demo-row {
        gap: 5px;
    }

    .demo-row i {
        height: 30px;
    }

    .phone-frame {
        width: 26%;
    }

    .positioning,
    .case,
    .about,
    .contact,
    .section {
        padding-inline: 16px;
    }

    .title-section,
    .title-positioning,
    .title-display {
        font-size: 34px;
    }

    .positioning-point {
        padding: 20px 18px;
    }

    .service-main {
        min-height: 470px;
        padding: 22px;
    }

    .service-main h3 {
        font-size: 29px;
    }

    .service-device-preview {
        width: 72%;
        height: 142px;
    }

    .service-panel {
        min-height: 205px;
        padding: 22px;
    }

    .service-panel h3 {
        font-size: 23px;
    }

    .service-strip {
        grid-template-columns: 1fr;
    }

    .case-visual {
        padding-right: 10px;
        padding-bottom: 48px;
    }

    .case-browser img {
        aspect-ratio: 1/1;
        object-position: center 25%;
    }

    .case-phone {
        width: 34%;
        right: 0;
        bottom: 16px;
    }

    .case-label {
        left: 8px;
        max-width: 68%;
    }

    .about-signature {
        min-height: 380px;
        padding: 22px;
    }

    .about-logo-wrap {
        width: min(255px,72vw);
        height: min(255px,72vw);
    }

    .about-person strong {
        font-size: 19px;
    }

    .about-location {
        font-size: 9px;
    }

    .about-values {
        gap: 7px;
    }

    .about-values span {
        font-size: 10px;
    }

    .contact-main {
        min-height: 104px;
        padding: 20px;
    }

    .contact-email a {
        display: inline-block;
        margin-left: 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-brand-block {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

/* ==================================================
   17. TOUCH / REDUCED MOTION
================================================== */
@media (hover:none) {
    .desktop-frame,
    .phone-frame,
    .stage-annotation,
    .process-node,
    .process-item h3 {
        transform: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* ==================================================
   IMPRESSUM / RECHTLICHE SEITEN
================================================== */

.legal-page {
    min-height: 100vh;
    padding: 120px 24px 100px;
    color: #fff;
    background: var(--navy);
}

.legal-container {
    width: min(100%, 900px);
    margin: 0 auto;
}

.legal-page h1 {
    margin: 0 0 60px;
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1;
    letter-spacing: -.05em;
}

.legal-intro {
    max-width: 760px;
    margin: -30px 0 50px;
    color: #9bacc0;
    font-size: 17px;
    line-height: 1.8;
}

.legal-update {
    margin-top: 42px;
    color: #5f7084;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.legal-section {
    padding: 30px 0;
    border-top: 1px solid #20334a;
}

.legal-section h2 {
    margin: 0 0 14px;
    font-size: 20px;
}

.legal-section p {
    max-width: 760px;
    margin: 0;
    color: #9bacc0;
    font-size: 16px;
    line-height: 1.8;
}

.legal-section a {
    color: var(--cyan);
}

.legal-back {
    display: inline-block;
    margin-top: 48px;
    padding-bottom: 6px;
    color: #fff;
    font-weight: 800;
    border-bottom: 1px solid #35516f;
}

.legal-back:hover {
    color: var(--cyan);
    border-color: var(--cyan);
}


/* MOBILE */

@media (max-width: 800px) {

    .legal-page {
        padding: 100px 20px 70px;
    }

    .legal-page h1 {
        margin-bottom: 42px;
        font-size: 44px;
    }

    .legal-section {
        padding: 25px 0;
    }

    .legal-section h2 {
        font-size: 19px;
    }

    .legal-section p {
        font-size: 15px;
        line-height: 1.75;
    }
}