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

        :root {
            --bg: #050508;
            --bg2: #0d0d14;
            --bg3: #12121a;
            --line: rgba(255, 255, 255, 0.07);
            --accent: #c8ff00;
            --accent2: #a8e000;
            --white: #ffffff;
            --muted: rgba(255, 255, 255, 0.45);
            --muted2: rgba(255, 255, 255, 0.22);
            --ff-head: 'Syne', sans-serif;
            --ff-body: 'Inter', sans-serif;
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: var(--ff-body);
            background: var(--bg);
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.6
        }

        nav {
            position: sticky;
            top: 0;
            z-index: 200;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5vw;
            height: 60px;
            background: rgba(5, 5, 8, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--line);
        }

        .logo {
            font-family: var(--ff-head);
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--white)
        }

        .logo em {
            color: var(--accent);
            font-style: normal
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none
        }

        .nav-links a {
            color: var(--muted);
            text-decoration: none;
            font-size: 13px;
            font-weight: 400;
            letter-spacing: 0.04em;
            transition: color .2s
        }

        .nav-links a:hover {
            color: var(--white)
        }

        .nav-btn {
            background: var(--accent);
            color: #050508;
            padding: 8px 20px;
            border-radius: 100px;
            font-family: var(--ff-body);
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            letter-spacing: 0.02em;
            transition: transform .15s, background .2s
        }

        .nav-btn:hover {
            background: var(--accent2);
            transform: scale(1.03)
        }

        .hero {
            min-height: 92vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 5vw;
            position: relative;
            overflow: hidden
        }

        .hero-grid-bg {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%)
        }

        .hero-glow {
            position: absolute;
            top: -20%;
            left: 50%;
            transform: translateX(-50%);
            width: 700px;
            height: 400px;
            background: radial-gradient(ellipse, rgba(200, 255, 0, 0.08) 0%, transparent 70%);
            pointer-events: none
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 32px
        }

        .hero-eyebrow::before {
            content: '';
            width: 24px;
            height: 1px;
            background: var(--accent)
        }

        h1 {
            font-family: var(--ff-head);
            font-size: clamp(52px, 8vw, 110px);
            font-weight: 800;
            line-height: 0.95;
            letter-spacing: -0.03em;
            margin-bottom: 36px
        }

        h1 .dim {
            color: rgba(255, 255, 255, 0.25)
        }

        h1 .accent {
            color: var(--accent)
        }

        .hero-desc {
            font-size: 17px;
            font-weight: 300;
            color: var(--muted);
            line-height: 1.75;
            max-width: 500px;
            margin-bottom: 48px
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            align-items: center;
            flex-wrap: wrap
        }

        .btn-main {
            background: var(--accent);
            color: #050508;
            padding: 15px 32px;
            border-radius: 100px;
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            transition: transform .15s, background .2s;
            display: inline-block
        }

        .btn-main:hover {
            background: var(--accent2);
            transform: translateY(-2px)
        }

        .btn-outline {
            color: var(--muted);
            font-size: 14px;
            font-weight: 400;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color .2s
        }

        .btn-outline:hover {
            color: var(--white)
        }

        .btn-outline::after {
            content: '→';
            transition: transform .2s
        }

        .btn-outline:hover::after {
            transform: translateX(4px)
        }

        .hero-ticker {
            margin-top: 80px;
            display: flex;
            gap: 48px;
            border-top: 1px solid var(--line);
            padding-top: 40px
        }

        .ticker-num {
            font-family: var(--ff-head);
            font-size: 42px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.03em
        }

        .ticker-num span {
            color: var(--accent)
        }

        .ticker-label {
            font-size: 12px;
            color: var(--muted);
            margin-top: 4px;
            letter-spacing: 0.06em
        }

        .marquee-wrap {
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            padding: 18px 0;
            overflow: hidden;
            background: var(--bg2)
        }

        .marquee-inner {
            display: flex;
            gap: 64px;
            white-space: nowrap;
            animation: marquee 18s linear infinite
        }

        .marquee-item {
            font-family: var(--ff-head);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--muted2);
            display: inline-flex;
            align-items: center;
            gap: 24px
        }

        .marquee-item::after {
            content: '✦';
            color: var(--accent);
            font-size: 8px
        }

        @keyframes marquee {
            from {
                transform: translateX(0)
            }

            to {
                transform: translateX(-50%)
            }
        }

        .leistungen {
            padding: 120px 5vw;
            background: var(--bg)
        }

        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 64px;
            flex-wrap: wrap;
            gap: 24px
        }

        .section-label {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 12px
        }

        h2 {
            font-family: var(--ff-head);
            font-size: clamp(32px, 4vw, 52px);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.02em
        }

        .section-link {
            color: var(--muted);
            font-size: 13px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color .2s
        }

        .section-link:hover {
            color: var(--white)
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: var(--line);
            border: 1px solid var(--line);
            border-radius: 16px;
            overflow: hidden
        }

        .card {
            background: var(--bg2);
            padding: 36px 32px;
            position: relative;
            overflow: hidden;
            transition: background .25s;
            cursor: default
        }

        .card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 80% 20%, rgba(200, 255, 0, 0.05) 0%, transparent 60%);
            opacity: 0;
            transition: opacity .3s
        }

        .card:hover {
            background: var(--bg3)
        }

        .card:hover::before {
            opacity: 1
        }

        .card-num {
            font-family: var(--ff-head);
            font-size: 11px;
            font-weight: 700;
            color: var(--muted2);
            letter-spacing: 0.1em;
            margin-bottom: 32px
        }

        .card-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            border: 1px solid var(--line);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 18px
        }

        .card-title {
            font-family: var(--ff-head);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: -0.01em
        }

        .card-text {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
            font-weight: 300
        }

        .card-tag {
            display: inline-block;
            margin-top: 24px;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent)
        }

        .ueber {
            padding: 120px 5vw;
            background: var(--bg2);
            border-top: 1px solid var(--line)
        }

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

        .big-quote {
            font-family: var(--ff-head);
            font-size: clamp(28px, 3.5vw, 46px);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 40px
        }

        .big-quote em {
            color: var(--accent);
            font-style: normal
        }

        .ueber-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px
        }

        .ueber-list li {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            font-size: 15px;
            color: var(--muted);
            line-height: 1.65;
            font-weight: 300;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--line)
        }

        .ueber-list li:last-child {
            border-bottom: none;
            padding-bottom: 0
        }

        .li-num {
            font-family: var(--ff-head);
            font-size: 11px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 0.08em;
            flex-shrink: 0;
            margin-top: 3px
        }

        .ueber-list strong {
            color: var(--white);
            font-weight: 500
        }

        .ueber-right {
            background: var(--bg3);
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 48px 40px;
            position: relative;
            overflow: hidden
        }

        .ueber-right::after {
            content: '';
            position: absolute;
            bottom: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200, 255, 0, 0.08), transparent 70%)
        }

        .ueber-tag {
            display: inline-block;
            margin-bottom: 24px;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--accent);
            background: rgba(200, 255, 0, 0.1);
            padding: 6px 14px;
            border-radius: 100px;
            border: 1px solid rgba(200, 255, 0, 0.2)
        }

        .ueber-heading {
            font-family: var(--ff-head);
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
            line-height: 1.15
        }

        .ueber-sub {
            font-size: 15px;
            color: var(--muted);
            line-height: 1.7;
            font-weight: 300;
            margin-bottom: 32px
        }

        .ueber-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--accent);
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            letter-spacing: 0.02em;
            border: 1px solid rgba(200, 255, 0, 0.3);
            padding: 12px 22px;
            border-radius: 100px;
            transition: background .2s, transform .15s
        }

        .ueber-cta:hover {
            background: rgba(200, 255, 0, 0.08);
            transform: translateY(-1px)
        }

        .referenzen {
            padding: 120px 5vw;
            background: var(--bg);
            border-top: 1px solid var(--line)
        }

        .ref-banner {
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 56px 48px;
            background: var(--bg2);
            position: relative;
            overflow: hidden;
            display: flex;
            gap: 48px;
            align-items: flex-start
        }

        .ref-banner::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200, 255, 0, 0.07), transparent 70%)
        }

        .ref-num {
            font-family: var(--ff-head);
            font-size: 80px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.04em;
            color: var(--line);
            flex-shrink: 0
        }

        .ref-title {
            font-family: var(--ff-head);
            font-size: clamp(22px, 2.5vw, 34px);
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
            line-height: 1.15
        }

        .ref-title span {
            color: var(--accent)
        }

        .ref-text {
            font-size: 16px;
            color: var(--muted);
            line-height: 1.75;
            font-weight: 300;
            max-width: 560px;
            margin-bottom: 32px
        }

        .ref-perks {
            display: flex;
            gap: 16px;
            flex-wrap: wrap
        }

        .perk {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--accent);
            border: 1px solid rgba(200, 255, 0, 0.25);
            padding: 6px 16px;
            border-radius: 100px
        }

        .kontakt {
            padding: 120px 5vw;
            background: var(--bg2);
            border-top: 1px solid var(--line)
        }

        .kontakt-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 96px;
            align-items: start
        }

        .kontakt-desc {
            font-size: 16px;
            color: var(--muted);
            line-height: 1.75;
            font-weight: 300;
            margin-bottom: 48px;
            max-width: 440px
        }

        .contact-item {
            padding: 20px 0;
            border-bottom: 1px solid var(--line);
            display: flex;
            justify-content: space-between;
            align-items: center
        }

        .contact-item:first-of-type {
            border-top: 1px solid var(--line)
        }

        .contact-label {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--muted2)
        }

        .contact-val {
            font-size: 15px;
            font-weight: 400;
            color: var(--white)
        }

        .contact-val a {
            color: var(--accent);
            text-decoration: none
        }

        .kontakt-form {
            background: var(--bg3);
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 40px 36px
        }

        .form-row {
            margin-bottom: 20px
        }

        .flabel {
            display: block;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--muted2);
            margin-bottom: 8px
        }

        .finput {
            width: 100%;
            background: var(--bg2);
            border: 1px solid var(--line);
            border-radius: 8px;
            padding: 12px 16px;
            font-family: var(--ff-body);
            font-size: 15px;
            color: var(--white);
            outline: none;
            transition: border-color .2s
        }

        .finput:focus {
            border-color: rgba(200, 255, 0, 0.5)
        }

        .finput::placeholder {
            color: var(--muted2)
        }

        textarea.finput {
            min-height: 110px;
            resize: vertical
        }

        .fsubmit {
            width: 100%;
            background: var(--accent);
            color: #050508;
            border: none;
            padding: 14px;
            border-radius: 100px;
            font-family: var(--ff-body);
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            letter-spacing: 0.02em;
            margin-top: 8px;
            transition: background .2s, transform .15s
        }

        .fsubmit:hover {
            background: var(--accent2);
            transform: translateY(-1px)
        }

        footer {
            background: var(--bg);
            padding: 28px 5vw;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid var(--line);
            flex-wrap: wrap;
            gap: 12px
        }

        .footer-logo {
            font-family: var(--ff-head);
            font-size: 17px;
            font-weight: 800;
            letter-spacing: -0.02em
        }

        .footer-logo em {
            color: var(--accent);
            font-style: normal
        }

        .footer-copy {
            font-size: 12px;
            color: var(--muted2)
        }

        @media(max-width:768px) {
            .cards-grid {
                grid-template-columns: 1fr
            }

            .ueber-grid,
            .kontakt-grid {
                grid-template-columns: 1fr;
                gap: 48px
            }

            .nav-links {
                display: none
            }

            .hero-ticker {
                gap: 28px;
                flex-wrap: wrap
            }

            .ref-banner {
                flex-direction: column;
                gap: 24px
            }

            .ref-num {
                font-size: 48px
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        .hero-eyebrow {
            animation: fadeUp .6s ease both
        }

        h1 {
            animation: fadeUp .7s .1s ease both
        }

        .hero-desc {
            animation: fadeUp .7s .2s ease both
        }

        .hero-actions {
            animation: fadeUp .7s .3s ease both
        }

        .hero-ticker {
            animation: fadeUp .7s .4s ease both
        }
