
        :root {
            --background: 216 24% 8%;
            --foreground: 210 20% 92%;
            --muted: 213 18% 62%;
            --surface: 214 20% 11%;
            --surface-2: 214 20% 14%;
            --border: 213 20% 20%;
            --primary: 17 89% 48%;
            --primary-light: 20 89% 55%;
            --primary-foreground: 0 0% 100%;
            --radius: 12px;
            --font-heading: "Space Grotesk Variable", "Space Grotesk", system-ui, sans-serif;
            --font-body: "DM Sans Variable", "DM Sans", system-ui, sans-serif;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: hsl(var(--background));
            color: hsl(var(--foreground));
            font-family: var(--font-body);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        .container {
            width: min(1160px, calc(100% - 40px));
            margin: 0 auto;
        }

        .section {
            padding: 96px 0;
        }

        .section-alt {
            background: hsl(var(--surface) / .32);
            border-top: 1px solid hsl(var(--border));
            border-bottom: 1px solid hsl(var(--border));
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: hsl(var(--primary));
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .eyebrow::before {
            content: "";
            width: 28px;
            height: 2px;
            background: hsl(var(--primary));
            border-radius: 99px;
        }

        .gradient-text {
            background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .button-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            align-items: center;
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 12px 22px;
            border-radius: 10px;
            font-family: var(--font-heading);
            font-weight: 700;
            transition: transform .2s ease, border-color .2s ease, background .2s ease;
        }

        .button:hover {
            transform: translateY(-2px);
        }

        .button-primary {
            background: hsl(var(--primary));
            color: hsl(var(--primary-foreground));
        }

        .button-secondary {
            border: 1px solid hsl(var(--border));
            color: hsl(var(--foreground));
            background: hsl(var(--surface) / .45);
        }

        .button-secondary:hover {
            border-color: hsl(var(--primary) / .45);
        }

        header {
            position: sticky;
            top: 0;
            z-index: 20;
            border-bottom: 1px solid hsl(var(--border));
            background: hsl(var(--background) / .86);
            backdrop-filter: blur(16px);
        }

        .nav {
            min-height: 74px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .brand {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 24px;
            color: hsl(var(--muted));
            font-size: 14px;
            font-weight: 600;
        }

        .nav-links a:hover {
            color: hsl(var(--foreground));
        }

        .hero {
            position: relative;
            min-height: 720px;
            display: flex;
            align-items: center;
            padding: 92px 0 120px;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: -20% -10% auto auto;
            width: 620px;
            height: 620px;
            border-radius: 999px;
            background: radial-gradient(circle, hsl(var(--primary) / .16), transparent 66%);
            filter: blur(16px);
            pointer-events: none;
        }

        .hero-grid {
            position: relative;
            display: grid;
            grid-template-columns: 1.05fr .95fr;
            align-items: center;
            gap: 72px;
        }

        h1,
        h2,
        h3 {
            margin: 0;
            font-family: var(--font-heading);
            line-height: 1.08;
        }

        h1 {
            margin-top: 18px;
            max-width: 760px;
            font-size: clamp(42px, 6vw, 74px);
        }

        h2 {
            font-size: clamp(30px, 4vw, 48px);
        }

        h3 {
            font-size: 22px;
        }

        .lead {
            margin: 24px 0 34px;
            max-width: 640px;
            color: hsl(var(--muted));
            font-size: 20px;
            line-height: 1.7;
        }

        .hero-card {
            position: relative;
            border: 1px solid hsl(var(--border));
            border-radius: 24px;
            background: linear-gradient(180deg, hsl(var(--surface-2) / .92), hsl(var(--surface) / .72));
            padding: 24px;
            box-shadow: 0 34px 80px hsl(0 0% 0% / .42);
        }

        .hero-card img {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: contain;
            border-radius: 18px;
            background: hsl(var(--background) / .5);
        }

        .signal-strip {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 14px;
        }


        .signal-strip span {
            border: 1px solid hsl(var(--border));
            border-radius: 10px;
            padding: 12px 10px;
            color: hsl(var(--muted));
            text-align: center;
            font-size: 13px;
            font-weight: 700;
            background: hsl(var(--background) / .38);
        }

        .steps-section {
            background: hsl(var(--surface) / .32);
            border-top: 1px solid hsl(var(--border));
            border-bottom: 1px solid hsl(var(--border));
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 44px;
        }

        .step {
            position: relative;
            border: 1px solid hsl(var(--border));
            border-radius: 20px;
            padding: 32px 28px;
            background: hsl(var(--surface) / .58);
            overflow: hidden;
        }

        .step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: hsl(var(--primary) / .12);
            color: hsl(var(--primary));
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 20px;
            margin-bottom: 22px;
        }

        .step p {
            margin: 10px 0 0;
            color: hsl(var(--muted));
        }

        .step-pictogram {
            position: absolute;
            top: 26px;
            right: 24px;
            width: 56px;
            height: 56px;
            color: hsl(var(--primary) / .55);
            opacity: .9;
        }

        .step-pictogram svg {
            width: 100%;
            height: 100%;
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 38px;
        }

        .card {
            border: 1px solid hsl(var(--border));
            border-radius: 18px;
            background: hsl(var(--surface) / .58);
            padding: 26px;
        }

        .card p {
            margin: 12px 0 0;
            color: hsl(var(--muted));
        }

        .icon {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            margin-bottom: 22px;
            border-radius: 12px;
            background: hsl(var(--primary) / .12);
            color: hsl(var(--primary));
            font-weight: 800;
        }

/* Anwendungskarten verwenden .app-thumb statt .icon; siehe Ende der Datei. */


        .split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .split.reverse .visual {
            order: -1;
        }

        .visual {
            border: 1px solid hsl(var(--border));
            border-radius: 24px;
            overflow: hidden;
            background: hsl(var(--surface) / .4);
            box-shadow: 0 30px 70px hsl(0 0% 0% / .38);
        }

        .visual img {
            width: 100%;
            height: 100%;
            aspect-ratio: 4/3;
            object-fit: contain;
            background: hsl(var(--background) / .5);
        }

        .spec-list {
            display: grid;
            gap: 12px;
            margin-top: 26px;
        }

        .spec {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            padding: 16px 0;
            border-bottom: 1px solid hsl(var(--border));
            color: hsl(var(--muted));
        }

        .spec strong {
            color: hsl(var(--foreground));
            font-family: var(--font-heading);
        }

        .copy p {
            color: hsl(var(--muted));
            font-size: 18px;
            margin: 20px 0 0;
            max-width: 610px;
        }

        .checklist {
            list-style: none;
            padding: 0;
            margin: 26px 0 0;
            display: grid;
            gap: 12px;
        }

        .checklist li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            color: hsl(var(--foreground));
        }

        .checklist li::before {
            content: "✓";
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            border-radius: 999px;
            background: hsl(var(--primary) / .16);
            color: hsl(var(--primary));
            display: grid;
            place-items: center;
            font-weight: 800;
            font-size: 13px;
            margin-top: 3px;
        }

        .orelia-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: center;
            margin-top: 40px;
        }

        .orelia-split.reverse .orelia-split-media {
            order: -1;
        }

        .orelia-split-media {
            border: 1px solid hsl(var(--border));
            border-radius: 20px;
            overflow: hidden;
            background: hsl(var(--surface) / .5);
            box-shadow: 0 24px 60px hsl(0 0% 0% / .35);
        }

        .orelia-split-media img {
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
            display: block;
        }

        .orelia-split-num {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 14px;
            color: hsl(var(--primary));
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .orelia-split h3 {
            font-size: 30px;
            margin-bottom: 14px;
        }

        .orelia-split>div>p {
            color: hsl(var(--muted));
            font-size: 17px;
            margin: 0 0 20px;
        }

         /* Bausteine card thumbnails */
        .module-thumb {
            border-radius: 14px;
            overflow: hidden;
            margin-bottom: 20px;
            border: 1px solid hsl(var(--border));
        }

        .module-thumb img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            display: block;
        }


        .module-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 22px;
            margin-top: 44px;
            text-align: left;
        }

        .module-card {
            border: 1px solid hsl(var(--border));
            border-radius: 20px;
            padding: 34px 30px;
            background: hsl(var(--surface) / .58);
            display: flex;
            flex-direction: column;
        }

        .module-card>p {
            flex: 1;
            color: hsl(var(--muted));
            margin: 0 0 20px;
        }

        .text-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: hsl(var(--primary));
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 15px;
            margin-top: 20px;
        }

        .text-link:hover {
            text-decoration: underline;
        }

        .pill {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 999px;
            background: hsl(var(--primary) / .14);
            color: hsl(var(--primary));
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .module-card h3 {
            font-size: 24px;
            margin-bottom: 12px;
        }

        .industries {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 38px;
        }

        .industry {
            border: 1px solid hsl(var(--border));
            border-radius: 18px;
            padding: 26px;
            background: hsl(var(--surface) / .58);
        }

        .industry h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }

        .industry p {
            margin: 0;
            color: hsl(var(--muted));
            font-size: 15px;
        }

        .hardware-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 22px;
            margin-top: 44px;
        }

        .hardware-card {
            border: 1px solid hsl(var(--border));
            border-radius: 20px;
            padding: 34px 30px;
            background: hsl(var(--surface) / .58);
            display: flex;
            flex-direction: column;
        }

        .hardware-card .module-thumb img {
            aspect-ratio: 4/3;
        }

        .hardware-card ul {
            flex: 1;
        }

        .compliance-card {
            display: grid;
            grid-template-columns: 1.15fr .85fr;
            gap: 48px;
            align-items: center;
            border: 1px solid hsl(var(--primary) / .4);
            border-radius: 24px;
            padding: 44px;
            background: linear-gradient(135deg, hsl(var(--surface-2) / .8), hsl(var(--surface) / .4));
        }

        .compliance-spec {
            border: 1px solid hsl(var(--border));
            border-radius: 18px;
            padding: 26px 24px;
            background: hsl(var(--background) / .5);
        }

        .compliance-spec-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 14px;
            margin-bottom: 6px;
            border-bottom: 1px solid hsl(var(--border));
            color: hsl(var(--muted));
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .compliance-tag {
            color: hsl(var(--primary));
        }

        .cta {
            text-align: center;
            padding: 92px 0;
        }

        .cta p {
            margin: 20px auto 32px;
            max-width: 620px;
            color: hsl(var(--muted));
            font-size: 18px;
        }

        footer {
            border-top: 1px solid hsl(var(--border));
            padding: 34px 0;
            color: hsl(var(--muted));
            font-size: 14px;
        }

        footer .container {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        @media (max-width: 900px) {
            .nav-links {
                display: none;
            }

            .hero {
                min-height: auto;
                padding: 72px 0 86px;
            }

            .hero-grid,
            .split,
            .orelia-split,
            .compliance-card,
            .module-grid,
            .hardware-grid {
                grid-template-columns: 1fr;
                gap: 38px;
            }

            .split.reverse .visual,
            .orelia-split.reverse .orelia-split-media {
                order: 0;
            }

            .cards,
            .steps,
            .industries {
                grid-template-columns: 1fr;
            }

            .compliance-card {
                padding: 28px;
            }
        }

        @media (max-width: 560px) {
            .container {
                width: min(100% - 28px, 1160px);
            }

            .section {
                padding: 72px 0;
            }

            h1 {
                font-size: 38px;
            }

            .lead {
                font-size: 18px;
            }

            .signal-strip {
                justify-content: flex-start;
            }


            .hero-card {
                padding: 14px;
                border-radius: 18px;
            }

            .button {
                width: 100%;
            }
        }
            .language-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: hsl(var(--muted));
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.language-links a {
  color: hsl(var(--muted));
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 8px;
  transition: color .18s ease, background .18s ease;
}

.language-links a:hover {
  color: hsl(var(--foreground));
  background: hsl(var(--primary) / .12);
}

.language-links a.lang-active {
  color: hsl(var(--primary));
  background: hsl(var(--primary) / .14);
}
  #produkte {
    padding: 96px 0;
    background: transparent;
}

#produkte .container-main {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

#produkte .max-w-3xl {
    max-width: 768px;
}

#produkte .mb-12 {
    margin-bottom: 48px;
}

#produkte .mb-4 {
    margin-bottom: 16px;
}

#produkte .mb-3 {
    margin-bottom: 12px;
}

#produkte .flex {
    display: flex;
}

#produkte .items-center {
    align-items: center;
}

#produkte .items-start {
    align-items: flex-start;
}

#produkte .justify-center {
    justify-content: center;
}

#produkte .gap-2 {
    gap: 8px;
}

#produkte .gap-3 {
    gap: 12px;
}

#produkte .gap-6 {
    gap: 24px;
}

#produkte .w-10 {
    width: 40px;
}

#produkte .h-10 {
    height: 40px;
}

#produkte .w-5 {
    width: 20px;
}

#produkte .h-5 {
    height: 20px;
}

#produkte .w-3\.5 {
    width: 14px;
}

#produkte .h-3\.5 {
    height: 14px;
}

#produkte .rounded-xl {
    border-radius: 12px;
}

#produkte .rounded-lg {
    border-radius: 12px;
}

#produkte .bg-primary\/10 {
    background: hsl(var(--primary) / 0.10);
}

#produkte .bg-surface {
    background: hsl(var(--surface));
}

#produkte .bg-surface\/40 {
    background: hsl(var(--surface) / 0.40);
}

#produkte .bg-background\/40 {
    background: hsl(var(--background) / 0.40);
}

#produkte .text-primary {
    color: hsl(var(--primary));
}

#produkte .text-primary-foreground {
    color: hsl(var(--primary-foreground));
}

#produkte .text-muted-foreground {
    color: hsl(var(--muted));
}

#produkte .text-sm {
    font-size: 14px;
}

#produkte .text-\[15px\] {
    font-size: 15px;
}

#produkte .text-\[14px\] {
    font-size: 14px;
}

#produkte .text-\[12px\] {
    font-size: 12px;
}

#produkte .text-\[16px\] {
    font-size: 16px;
}

#produkte .text-\[clamp\(24px\,3vw\,32px\)\] {
    font-size: clamp(24px, 3vw, 32px);
}

#produkte .font-heading {
    font-family: var(--font-heading);
}

#produkte .font-semibold {
    font-weight: 600;
}

#produkte .font-bold {
    font-weight: 700;
}

#produkte .uppercase {
    text-transform: uppercase;
}

#produkte .tracking-wider {
    letter-spacing: 1.5px;
}

#produkte .grid {
    display: grid;
}

#produkte .grid-cols-1 {
    grid-template-columns: 1fr;
}

#produkte .border {
    border: 1px solid hsl(var(--border));
}

#produkte .border-border {
    border-color: hsl(var(--border));
}

#produkte .border-b {
    border-bottom: 1px solid hsl(var(--border));
}

#produkte .overflow-hidden {
    overflow: hidden;
}

#produkte .transition-all {
    transition: all 0.3s ease;
}

#produkte .duration-300 {
    transition-duration: 0.3s;
}

#produkte .flex-col {
    flex-direction: column;
}

#produkte .flex-1 {
    flex: 1;
}

#produkte .p-6 {
    padding: 24px;
}

#produkte .mb-2 {
    margin-bottom: 8px;
}

#produkte .leading-snug {
    line-height: 1.3;
}

#produkte .leading-relaxed {
    line-height: 1.7;
}

#produkte .mb-5 {
    margin-bottom: 20px;
}

#produkte .inline-flex {
    display: inline-flex;
}

#produkte .px-4 {
    padding-left: 16px;
    padding-right: 16px;
}

#produkte .py-2\.5 {
    padding-top: 10px;
    padding-bottom: 10px;
}

#produkte .hover\:opacity-90:hover {
    opacity: 0.9;
}

#produkte .hover\:-translate-y-0\.5:hover {
    transform: translateY(-2px);
}

#produkte .hover\:border-primary\/25:hover {
    border-color: hsl(var(--primary) / 0.25);
}

#produkte .hover\:shadow-\[0_0_30px_-10px_hsl\(var\(--primary\)\/0\.25\)\]:hover {
    box-shadow: 0 0 30px -10px hsl(var(--primary) / 0.25);
}

#produkte img.max-w-full {
    max-width: 100%;
}

#produkte img.h-auto {
    height: auto;
}

#produkte img.object-contain {
    object-fit: contain;
}

#produkte img.block {
    display: block;
}

#produkte h2 {
    margin: 0;
    font-family: var(--font-heading);
    line-height: 1.15;
}

#produkte h3 {
    margin: 0;
    font-family: var(--font-heading);
    line-height: 1.3;
}

#produkte p {
    margin-top: 0;
}

@media (min-width: 768px) {
    #produkte .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    #produkte .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    #produkte {
        padding: 72px 0;
    }
}

@media (max-width: 560px) {
    #produkte .container-main {
        width: min(100% - 28px, 1160px);
    }
}
      #produkte .inline-flex {
    display: inline-flex;
}

#produkte .items-center {
    align-items: center;
}

#produkte .gap-2 {
    gap: 8px;
}

#produkte .px-4 {
    padding-left: 16px;
    padding-right: 16px;
}

#produkte .py-2\.5 {
    padding-top: 10px;
    padding-bottom: 10px;
}

#produkte .rounded-lg {
    border-radius: 12px;
}

#produkte .font-heading {
    font-family: var(--font-heading);
}

#produkte .font-semibold {
    font-weight: 600;
}

#produkte .text-\[14px\] {
    font-size: 14px;
}

#produkte .bg-primary {
    background: hsl(var(--primary));
}

#produkte .text-primary-foreground {
    color: hsl(var(--primary-foreground));
}

#produkte .transition-all {
    transition: all 0.3s ease;
}

#produkte .hover\:opacity-90:hover {
    opacity: 0.9;
}

#produkte .hover\:-translate-y-0\.5:hover {
    transform: translateY(-2px);
}
      :root {
    --background: 216 24% 8%;
    --foreground: 210 20% 90%;
    --surface: 214 20% 11%;
    --primary: 17 89% 48%;
    --primary-light: 20 89% 53%;
    --muted-foreground: 213 20% 55%;
    --border: 213 20% 18%;
    --radius: .75rem;
    --font-heading: "Space Grotesk Variable", "Space Grotesk", sans-serif;
    --font-body: "DM Sans Variable", "DM Sans", sans-serif;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.container-main {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

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

.max-w-2xl {
    max-width: 42rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: .75rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-6 {
    gap: 1.5rem;
}

.bg-surface\/40 {
    background: hsl(var(--surface)/.4);
}

.bg-surface {
    background: hsl(var(--surface));
}

.border {
    border-width: 1px;
    border-style: solid;
}

.border-border {
    border-color: hsl(var(--border));
}

.rounded-2xl {
    border-radius: 1rem;
}

.p-8 {
    padding: 2rem;
}

.transition-all {
    transition: all .15s cubic-bezier(.4, 0, .2, 1);
}

.duration-300 {
    transition-duration: .3s;
}

.hover\:border-primary\/25:hover {
    border-color: hsl(var(--primary)/.25);
}

.hover\:-translate-y-1:hover {
    transform: translateY(-.25rem);
}

.hover\:shadow-glow:hover {
    box-shadow: 0 0 40px -12px hsl(var(--primary)/.35);
}

.text-primary {
    color: hsl(var(--primary));
}

.text-muted-foreground {
    color: hsl(var(--muted-foreground));
}

.text-sm {
    font-size: .875rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-\[15px\] {
    font-size: 15px;
}

.text-\[clamp\(32px\,4vw\,44px\)\] {
    font-size: clamp(32px, 4vw, 44px);
}

.font-heading {
    font-family: var(--font-heading);
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: .05em;
}

.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
}

.sensor-img {
    background: radial-gradient(circle at 50% 55%, hsl(var(--primary)/.18), transparent 60%);
    border-radius: 1.25rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sensor-img img {
    max-height: 340px;
    width: auto;
    object-fit: contain;
    display: block;
    max-width: 100%;
    height: auto;
}

h2, h3 {
    margin: 0;
    font-family: var(--font-heading);
    line-height: 1.2;
}

p {
    margin: 0;
    font-family: var(--font-body);
}

body {
    font-family: var(--font-body);
    color: hsl(var(--foreground));
    background: hsl(var(--background));
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
      :root {
    --background: 216 24% 8%;
    --foreground: 210 20% 90%;
    --surface: 214 20% 11%;
    --primary: 17 89% 48%;
    --primary-foreground: 0 0% 100%;
    --muted-foreground: 213 20% 55%;
    --border: 213 20% 18%;
    --radius: .75rem;
    --font-heading: "Space Grotesk Variable", "Space Grotesk", sans-serif;
    --font-body: "DM Sans Variable", "DM Sans", sans-serif;
}

#produkte {
    padding-top: 100px;
    padding-bottom: 100px;
    background: transparent;
}

#produkte .container-main {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

#produkte .max-w-3xl {
    max-width: 48rem;
}

#produkte .mb-12 {
    margin-bottom: 3rem;
}

#produkte .mb-5 {
    margin-bottom: 1.25rem;
}

#produkte .mb-4 {
    margin-bottom: 1rem;
}

#produkte .mb-3 {
    margin-bottom: .75rem;
}

#produkte .text-sm {
    font-size: .875rem;
}

#produkte .text-\[12px\] {
    font-size: 12px;
}

#produkte .text-\[13px\] {
    font-size: 13px;
}

#produkte .text-\[14px\] {
    font-size: 14px;
}

#produkte .text-\[15px\] {
    font-size: 15px;
}

#produkte .text-\[16px\] {
    font-size: 16px;
}

#produkte .text-\[clamp\(24px\,3vw\,32px\)\] {
    font-size: clamp(24px, 3vw, 32px);
}

#produkte .font-heading {
    font-family: var(--font-heading);
}

#produkte .font-semibold {
    font-weight: 600;
}

#produkte .font-bold {
    font-weight: 700;
}

#produkte .uppercase {
    text-transform: uppercase;
}

#produkte .tracking-wider {
    letter-spacing: .05em;
}

#produkte .text-primary {
    color: hsl(var(--primary));
}

#produkte .text-muted-foreground {
    color: hsl(var(--muted-foreground));
}

#produkte .text-primary-foreground {
    color: hsl(var(--primary-foreground));
}

#produkte .flex {
    display: flex;
}

#produkte .items-center {
    align-items: center;
}

#produkte .justify-center {
    justify-content: center;
}

#produkte .flex-col {
    flex-direction: column;
}

#produkte .flex-1 {
    flex: 1 1 0%;
}

#produkte .inline-flex {
    display: inline-flex;
}

#produkte .gap-2 {
    gap: .5rem;
}

#produkte .gap-3 {
    gap: .75rem;
}

#produkte .gap-6 {
    gap: 1.5rem;
}


#produkte .bg-surface {
    background: hsl(var(--surface));
}

#produkte .bg-background\/40 {
    background: hsl(var(--background) / .4);
}

#produkte .bg-primary {
    background: hsl(var(--primary));
}

#produkte .border {
    border-width: 1px;
    border-style: solid;
}

#produkte .border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

#produkte .border-border {
    border-color: hsl(var(--border));
}

#produkte .rounded-lg {
    border-radius: var(--radius);
}

#produkte .rounded-xl {
    border-radius: .875rem;
}

#produkte .overflow-hidden {
    overflow: hidden;
}

#produkte .transition-all {
    transition: all .15s cubic-bezier(.4, 0, .2, 1);
}

#produkte .duration-300 {
    transition-duration: .3s;
}

#produkte .hover\:border-primary\/25:hover {
    border-color: hsl(var(--primary) / .25);
}

#produkte .hover\:-translate-y-0\.5:hover {
    transform: translateY(-.125rem);
}

#produkte .hover\:shadow-\[0_0_30px_-10px_hsl\(var\(--primary\)\/0\.25\)\]:hover {
    box-shadow: 0 0 30px -10px hsl(var(--primary) / 0.25);
}

#produkte .max-w-full {
    max-width: 100%;
}

#produkte .h-auto {
    height: auto;
}

#produkte .object-contain {
    object-fit: contain;
}

#produkte .block {
    display: block;
}

#produkte .p-6 {
    padding: 1.5rem;
}

#produkte .px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

#produkte .py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem;
}

#produkte .leading-snug {
    line-height: 1.375;
}

#produkte .leading-relaxed {
    line-height: 1.625;
}

#produkte .w-3\.5 {
    width: .875rem;
}

#produkte .h-3\.5 {
    height: .875rem;
}

#produkte h2,
#produkte h3,
#produkte p,
#produkte a {
    margin-top: 0;
}

#produkte .section-badge-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #151c28;
    color: #f65a0a;
    flex-shrink: 0;
}

#produkte .section-badge-icon svg {
    width: 16px;
    height: 16px;
}

#produkte a.inline-flex.items-center.gap-2.px-5.py-3.rounded-xl.font-heading.font-semibold.text-\[13px\].bg-primary.text-primary-foreground {
    text-decoration: none;
    transition: all 0.2s ease;
}

#produkte a.inline-flex.items-center.gap-2.px-5.py-3.rounded-xl.font-heading.font-semibold.text-\[13px\].bg-primary.text-primary-foreground:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}
    

a.cta_button{-moz-box-sizing:content-box !important;-webkit-box-sizing:content-box !important;box-sizing:content-box !important;vertical-align:middle}.hs-breadcrumb-menu{list-style-type:none;margin:0px 0px 0px 0px;padding:0px 0px 0px 0px}.hs-breadcrumb-menu-item{float:left;padding:10px 0px 10px 10px}.hs-breadcrumb-menu-divider:before{content:'›';padding-left:10px}.hs-featured-image-link{border:0}.hs-featured-image{float:right;margin:0 0 20px 20px;max-width:50%}@media (max-width: 568px){.hs-featured-image{float:none;margin:0;width:100%;max-width:100%}}.hs-screen-reader-text{clip:rect(1px, 1px, 1px, 1px);height:1px;overflow:hidden;position:absolute !important;width:1px}


  .sn-footer {
    --sf-bg:           hsl(216 24% 7%);
    --sf-border:       hsl(213 20% 18% / .9);
    --sf-fg:           hsl(210 20% 90%);
    --sf-muted:        hsl(213 20% 60%);
    --sf-primary:      hsl(17 89% 48%);
    --sf-primary-light:hsl(20 89% 65%);

    background: var(--sf-bg);
    color: var(--sf-fg);
    font-family: 'DM Sans Variable', 'DM Sans', system-ui, sans-serif;
    border-top: 1px solid var(--sf-border);
    padding: 72px 0 28px;
  }
  .sn-footer__inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

  .sn-footer__top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px 64px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--sf-border);
  }

  .sn-footer__brand { display: flex; flex-direction: column; gap: 16px; max-width: 420px; }
  .sn-footer__logo { display: block; max-width: 160px; height: auto; }
  .sn-footer__tagline { margin: 0; color: var(--sf-muted); font-size: 14px; line-height: 1.65; }

  .sn-footer__social {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 8px;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid var(--sf-border);
    border-radius: 999px;
    color: var(--sf-fg);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
    transition: all .2s ease;
  }
  .sn-footer__social:hover {
    border-color: var(--sf-primary);
    color: var(--sf-primary-light);
    transform: translateY(-1px);
  }
  .sn-footer__social svg { width: 16px; height: 16px; }

  .sn-footer__col { display: flex; flex-direction: column; gap: 12px; }
  .sn-footer__heading {
    margin: 0 0 6px;
    font-family: 'Space Grotesk Variable', 'Space Grotesk', system-ui, sans-serif;
    font-weight: 700; font-size: 18px; color: #fff;
  }
  .sn-footer__line { margin: 0; color: var(--sf-muted); font-size: 14px; line-height: 1.6; }
  .sn-footer__line--strong { color: var(--sf-fg); font-weight: 600; }
  .sn-footer__address {
    display: flex; flex-direction: column; gap: 2px;
    font-style: normal; color: var(--sf-muted);
    font-size: 14px; line-height: 1.65;
  }
  .sn-footer__contact { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
  .sn-footer__contact li { display: flex; gap: 8px; align-items: baseline; font-size: 14px; color: var(--sf-muted); }
  .sn-footer__contact-label { color: var(--sf-fg); font-weight: 600; }
  .sn-footer__contact a { color: var(--sf-muted); text-decoration: none; transition: color .2s ease; }
  .sn-footer__contact a:hover { color: var(--sf-primary-light); }

  .sn-footer__bottom {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding-top: 24px; flex-wrap: wrap;
  }
  .sn-footer__copy { margin: 0; color: var(--sf-muted); font-size: 13px; }
  .sn-footer__legal { list-style: none; margin: 0; padding: 0; display: flex; gap: 24px; flex-wrap: wrap; }
  .sn-footer__legal a { color: var(--sf-muted); text-decoration: none; font-size: 13px; transition: color .2s ease; }
  .sn-footer__legal a:hover { color: var(--sf-primary-light); }

  @media (max-width: 768px) {
    .sn-footer { padding-top: 56px; }
    .sn-footer__top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 32px; }
  }
  @media (max-width: 600px) {
    .sn-footer__bottom { flex-direction: column; align-items: flex-start; }
  }

/* EOS Anwendungs-Kollage */
.eos-collage { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
.eos-collage__item { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid hsl(var(--border)); background: hsl(var(--surface)); }
.eos-collage__item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .4s ease; }
.eos-collage__item:hover img { transform: scale(1.05); }
.eos-collage__item figcaption { position: absolute; inset: auto 0 0 0; padding: 26px 14px 12px; font-size: 13px; font-weight: 600; background: linear-gradient(to top, hsl(216 24% 5% / .92), transparent); }
@media (max-width: 900px) { .eos-collage { grid-template-columns: repeat(2, 1fr); } }

/* Anwendungskarten mit Bildern */
.application-card {
    padding: 0 0 26px;
    overflow: hidden;
}

.application-card .app-thumb {
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    margin: -1px -1px 20px;
    border-bottom: 1px solid hsl(var(--border));
}

.application-card .app-thumb img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}

.application-card:hover .app-thumb img {
    transform: scale(1.05);
}

.application-card h3,
.application-card p {
    padding: 0 26px;
}

.application-card p {
    margin-top: 8px;
}

#anwendungen .icon {
    display: none;
}

/* Vorteile-Block */
.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 44px;
}

.benefit-card {
    border: 1px solid hsl(var(--border));
    border-radius: 18px;
    padding: 26px;
    background: hsl(var(--surface) / .58);
    transition: transform .2s ease, border-color .2s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
    border-color: hsl(var(--primary) / .35);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 12px;
    background: hsl(var(--primary) / .12);
    color: hsl(var(--primary));
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.benefit-card p {
    margin: 0;
    color: hsl(var(--muted));
    font-size: 15px;
}

@media (max-width: 900px) {
    .benefits {
        grid-template-columns: 1fr;
    }
    .application-card h3,
    .application-card p {
        padding: 0 22px;
    }
}

/* EOS mit Webapp Block */
#webapp .grid { display: grid; }
#webapp .grid-cols-1 { grid-template-columns: 1fr; }
#webapp .max-w-3xl { max-width: 48rem; }
#webapp .mb-12 { margin-bottom: 3rem; }
#webapp img { width: 100%; }
@media (min-width: 768px) {
    #webapp .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}
#webapp .section-badge-icon {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: 12px; background: #151c28; color: #f65a0a; flex-shrink: 0;
}
#webapp .section-badge-icon svg { width: 16px; height: 16px; }
#webapp .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 20px; border-radius: 12px;
    background: #f65a0a; color: #fff; text-decoration: none;
    font-weight: 600; font-size: 13px; transition: all .2s ease;
    margin-top: 12px;
}
#webapp .btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* App-Mockups */
#app .mockup-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;align-items:start}
#app .mockup-grid img{width:100%;height:auto;display:block}
@media (max-width:860px){#app .mockup-grid{grid-template-columns:1fr;max-width:360px;margin:0 auto}}

/* Kundenlogos */
.logo-strip-title{
  text-align:center;font-size:14px;letter-spacing:.12em;text-transform:uppercase;
  color:hsl(var(--muted));font-weight:600;margin:0 0 32px;
}
.logo-strip{
  display:grid;grid-template-columns:repeat(6,1fr);gap:20px;align-items:center;
}
.logo-item{
  display:flex;align-items:center;justify-content:center;height:84px;padding:14px 18px;
  border:1px solid hsl(var(--border));border-radius:12px;
  background:#fff;
  opacity:.92;transition:opacity .3s,border-color .3s,transform .3s;
}
.logo-item img{max-height:100%;max-width:100%;width:auto;height:auto;object-fit:contain;}
.logo-item:hover{opacity:1;border-color:hsl(var(--primary)/.35);transform:translateY(-2px);}
@media (max-width:900px){.logo-strip{grid-template-columns:repeat(3,1fr);}}
@media (max-width:520px){.logo-strip{grid-template-columns:repeat(2,1fr);}}

/* FAQ */
.faq-list{max-width:840px;margin:56px auto 0;display:flex;flex-direction:column;gap:12px;}
.faq-item{
  border:1px solid hsl(var(--border));border-radius:14px;
  background:hsl(var(--surface,var(--background))/.5);
  padding:0 22px;transition:border-color .3s;
}
.faq-item[open]{border-color:hsl(var(--primary)/.35);}
.faq-item summary{
  cursor:pointer;list-style:none;padding:20px 0;font-weight:600;font-size:17px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:"+";color:hsl(var(--primary));font-size:22px;line-height:1;flex:none;
}
.faq-item[open] summary::after{content:"–";}
.faq-item p{margin:0 0 22px;color:hsl(var(--muted));font-size:15px;line-height:1.7;}

#kunden{padding-top:32px;}
#webapp .grid-cols-1{gap:24px}

/* Cookie / Datenschutz-Hinweis */
.sn-cookie {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 999;
  padding: 12px clamp(12px, 4vw, 32px) calc(12px + env(safe-area-inset-bottom));
  animation: sn-cookie-in 0.35s ease-out;
}
@keyframes sn-cookie-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.sn-cookie__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  justify-content: space-between;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 15, 18, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
.sn-cookie__text { flex: 1 1 420px; min-width: 260px; }
.sn-cookie__title {
  margin: 0 0 4px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}
.sn-cookie__body {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}
.sn-cookie__body a { color: #ff7a1a; text-decoration: underline; }
.sn-cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.sn-cookie__btn {
  appearance: none;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 11px 22px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #14161a;
  background: #ff7a1a;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.sn-cookie__btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.sn-cookie__btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.sn-cookie__btn--ghost:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
