:root {
  --ink: #071116;
  --ink-2: #0d1d24;
  --panel: #102832;
  --paper: #f3f7f5;
  --white: #ffffff;
  --muted: #a9bbc1;
  --text: #16262c;
  --cyan: #27d3ff;
  --lime: #b7f43b;
  --orange: #ff8a34;
  --line: rgba(255,255,255,.13);
  --radius: 1.3rem;
  --shadow: 0 24px 80px rgba(0,0,0,.2);
  --max: 1180px;
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; color: var(--text); background: var(--paper); font: 400 1rem/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }
.skip-link { position: fixed; top: .75rem; left: .75rem; z-index: 999; padding: .7rem 1rem; color: var(--ink); background: var(--lime); border-radius: 999px; transform: translateY(-180%); }
.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.shell { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 8rem) 0; }
.section-dark { color: var(--white); background: var(--ink); }
.section-deep { color: var(--white); background: var(--ink-2); }
.kicker { margin: 0 0 .9rem; color: #4eb7cf; font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section-dark .kicker, .section-deep .kicker, .hero .kicker { color: var(--lime); }
h1, h2, h3 { margin: 0; font-weight: 720; line-height: 1.08; letter-spacing: -.035em; text-wrap: balance; }
h1 { font-size: clamp(2.85rem, 8vw, 6.8rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); }
p { margin: 0 0 1rem; }
.lead { max-width: 750px; color: #52666e; font-size: clamp(1.08rem, 2vw, 1.3rem); }
.section-dark .lead, .section-deep .lead { color: var(--muted); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .7rem; min-height: 48px; padding: .75rem 1.15rem; border: 1px solid transparent; border-radius: 999px; color: var(--ink); background: var(--lime); font-weight: 800; text-decoration: none; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); background: #cbff68; }
.button-secondary { color: var(--white); background: transparent; border-color: rgba(255,255,255,.35); }
.button-secondary:hover { background: rgba(255,255,255,.08); }
.text-link { display: inline-flex; align-items: center; gap: .45rem; color: #147e98; font-weight: 800; text-decoration: none; }
.text-link::after { content: "→"; transition: transform .2s; }
.text-link:hover::after { transform: translateX(.3rem); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; color: var(--white); transition: background .25s, box-shadow .25s, backdrop-filter .25s; }
.site-header.is-scrolled, .inner-page .site-header { background: rgba(7,17,22,.9); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(18px); }
.header-row { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; color: var(--white); text-decoration: none; }
.brand-mark { display: grid; width: 42px; aspect-ratio: 1; place-items: center; border: 1px solid rgba(39,211,255,.6); border-radius: 12px; color: var(--cyan); font-size: .72rem; font-weight: 900; letter-spacing: -.05em; box-shadow: inset 0 0 22px rgba(39,211,255,.09); }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: .92rem; letter-spacing: .05em; }
.brand-copy span { color: var(--muted); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: clamp(.8rem, 2vw, 1.7rem); }
.main-nav a { position: relative; color: #d9e5e8; font-size: .88rem; font-weight: 650; text-decoration: none; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: -.45rem; left: 0; height: 2px; background: var(--cyan); transform: scaleX(0); transform-origin: right; transition: transform .2s; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.main-nav .nav-cta { padding: .55rem .9rem; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; }
.nav-toggle { display: none; width: 46px; aspect-ratio: 1; padding: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: transparent; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: block; width: 18px; height: 2px; margin: 4px auto; background: currentColor; content: ""; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.hero { position: relative; min-height: min(820px, 100svh); overflow: hidden; color: var(--white); background: var(--ink); }
.slides, .slide { position: absolute; inset: 0; }
.slide { opacity: 0; visibility: hidden; transition: opacity .8s ease, visibility .8s; }
.slide.is-active { opacity: 1; visibility: visible; }
.slide img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.08); transform: scale(1.04); transition: transform 8s ease-out; }
.slide.is-active img { transform: scale(1); }
.hero::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(3,10,13,.93) 0%, rgba(3,10,13,.68) 43%, rgba(3,10,13,.15) 76%), linear-gradient(0deg, var(--ink) 0%, transparent 28%); }
.hero-content { position: relative; z-index: 2; display: grid; min-height: min(820px, 100svh); align-content: center; padding-top: 6rem; padding-bottom: 7rem; }
.hero-copy { max-width: 830px; }
.hero h1 span { color: var(--cyan); }
.hero-sub { max-width: 650px; margin: 1.5rem 0 2rem; color: #d2dfe2; font-size: clamp(1.08rem, 2vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-controls { position: absolute; z-index: 3; right: max(1rem, calc((100vw - var(--max))/2)); bottom: 2rem; display: flex; align-items: center; gap: .55rem; }
.slider-button, .slider-dot { border: 1px solid rgba(255,255,255,.32); background: rgba(7,17,22,.55); backdrop-filter: blur(8px); }
.slider-button { width: 44px; height: 44px; border-radius: 50%; cursor: pointer; }
.slider-dot { width: 22px; height: 8px; padding: 0; border-radius: 999px; cursor: pointer; transition: width .2s, background .2s; }
.slider-dot.is-active { width: 42px; background: var(--lime); border-color: var(--lime); }
.scroll-cue { position: absolute; z-index: 3; bottom: 2.4rem; left: max(1rem, calc((100vw - var(--max))/2)); display: flex; align-items: center; gap: .7rem; color: var(--muted); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.scroll-cue::before { width: 38px; height: 1px; background: var(--cyan); content: ""; }

.intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 7vw, 7rem); align-items: end; }
.intro-note { padding: 1.5rem; border: 1px solid #d9e3e0; border-radius: var(--radius); background: rgba(255,255,255,.55); }
.intro-note strong { display: block; margin-bottom: .35rem; font-size: 1.2rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.service-card { position: relative; min-height: 320px; padding: 1.6rem; overflow: hidden; border: 1px solid #d8e2df; border-radius: var(--radius); background: rgba(255,255,255,.72); text-decoration: none; transition: transform .25s, border-color .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(39,211,255,.65); box-shadow: 0 24px 50px rgba(15,35,42,.12); }
.service-card::after { position: absolute; right: -60px; bottom: -60px; width: 170px; aspect-ratio: 1; border: 1px solid rgba(22,38,44,.08); border-radius: 50%; content: ""; box-shadow: 0 0 0 24px rgba(22,38,44,.025), 0 0 0 48px rgba(22,38,44,.018); }
.service-number { color: #7b9198; font: 700 .78rem/1 ui-monospace, SFMono-Regular, Consolas, monospace; }
.service-card h3 { margin: 4.6rem 0 1rem; }
.service-card p { max-width: 33ch; color: #5b6f76; }
.service-card .text-link { position: absolute; bottom: 1.5rem; left: 1.6rem; }

.use-cases { padding-top: 0; }
.use-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.use-case-card { position: relative; display: grid; min-width: 0; overflow: hidden; border: 1px solid #d8e2df; border-radius: var(--radius); background: rgba(255,255,255,.76); box-shadow: 0 18px 45px rgba(15,35,42,.07); }
.use-case-card img { width: 100%; height: 290px; object-fit: cover; }
.stock-badge { position: absolute; top: 1rem; left: 1rem; z-index: 2; padding: .45rem .65rem; border: 1px solid rgba(255,255,255,.6); border-radius: 999px; color: #fff; background: rgba(7,17,22,.72); backdrop-filter: blur(8px); font-size: .67rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.use-case-card:nth-child(2) img { object-position: center 44%; }
.use-case-card:nth-child(3) img { object-position: center 52%; }
.use-case-copy { display: flex; min-height: 300px; padding: 1.55rem; flex-direction: column; }
.use-case-copy > span { color: #397500; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.use-case-copy h3 { margin: .65rem 0 .85rem; }
.use-case-copy p { color: #52666e; }
.use-case-copy .text-link { margin-top: auto; padding-top: 1rem; }

.metrics { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.metric { min-height: 190px; padding: 1.5rem; border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; margin-bottom: .65rem; color: var(--cyan); font-size: clamp(1.65rem, 3vw, 3rem); line-height: 1; }
.metric span { color: var(--muted); }
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 4rem; counter-reset: process; }
.process article { position: relative; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.25); counter-increment: process; }
.process article::before { position: absolute; top: -.7rem; left: 0; padding-right: .5rem; color: var(--lime); background: var(--ink); content: "0" counter(process); font: 800 .72rem/1 ui-monospace, monospace; }
.process h3 { margin-bottom: .7rem; font-size: 1.18rem; }
.process p { color: var(--muted); }

.gallery { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, 280px); gap: 1rem; margin-top: 3rem; }
.gallery-card { position: relative; overflow: hidden; border-radius: var(--radius); color: var(--white); background: var(--panel); }
.gallery-card:first-child { grid-row: 1 / 3; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(3,10,13,.85), transparent 65%); }
.gallery-card figcaption { position: absolute; z-index: 2; right: 1.4rem; bottom: 1.2rem; left: 1.4rem; }
.gallery-card small { color: var(--lime); font-weight: 750; text-transform: uppercase; letter-spacing: .1em; }
.gallery-card strong { display: block; font-size: clamp(1.25rem, 2vw, 2rem); }

.faq-section { padding-top: 1rem; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.faq-list { display: grid; gap: .75rem; }
.faq-list details { border: 1px solid #d5dfdc; border-radius: 1rem; background: rgba(255,255,255,.7); }
.faq-list summary { position: relative; padding: 1.15rem 3.2rem 1.15rem 1.25rem; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 50%; right: 1.2rem; color: #147e98; font-size: 1.4rem; line-height: 1; content: "+"; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 1.25rem 1.25rem; color: #52666e; }

.news-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.news-card { display: flex; min-height: 260px; padding: 1.4rem; flex-direction: column; border: 1px solid #d6e0de; border-radius: var(--radius); background: var(--white); }
.news-card time { color: #6c8188; font: 650 .76rem/1 ui-monospace, monospace; }
.news-card h3 { margin: 2.1rem 0 .8rem; font-size: 1.28rem; }
.news-card p { color: #61747a; }
.news-card .text-link { margin-top: auto; }
.load-sentinel { display: grid; min-height: 90px; place-items: center; color: #64777e; }
.load-sentinel::after { width: 26px; aspect-ratio: 1; border: 2px solid #b9c6c3; border-top-color: #177f98; border-radius: 50%; content: ""; animation: spin .8s linear infinite; }
.load-sentinel.is-done::after { display: none; }
@keyframes spin { to { transform: rotate(1turn); } }

.contact-panel { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 7vw, 7rem); align-items: center; }
.contact-actions { display: grid; gap: .8rem; }
.contact-link { display: flex; padding: 1.2rem 1.3rem; align-items: center; justify-content: space-between; border: 1px solid var(--line); border-radius: 1rem; text-decoration: none; transition: border-color .2s, background .2s; }
.contact-link:hover { border-color: var(--cyan); background: rgba(39,211,255,.06); }
.contact-link span { color: var(--muted); font-size: .82rem; }
.contact-link strong { color: var(--white); font-size: clamp(1rem, 2vw, 1.25rem); }

.page-hero { padding: clamp(9rem, 17vw, 13rem) 0 clamp(4rem, 8vw, 7rem); color: var(--white); background: radial-gradient(circle at 85% 20%, rgba(39,211,255,.18), transparent 30%), var(--ink); }
.page-hero h1 { max-width: 1000px; font-size: clamp(2.7rem, 7vw, 5.6rem); }
.page-hero .lead { margin-top: 1.4rem; color: var(--muted); }
.page-image { margin-top: -2rem; }
.page-image img { width: 100%; max-height: 560px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(2rem, 7vw, 6rem); align-items: start; }
.prose { max-width: 760px; }
.prose h2 { margin: 2.8rem 0 1rem; font-size: clamp(1.8rem, 4vw, 3rem); }
.prose h3 { margin: 2rem 0 .7rem; }
.prose p, .prose li { color: #445a62; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li { margin-bottom: .5rem; }
.prose img { width: 100%; margin: 1.5rem 0; border-radius: 1rem; }
.fact-box { position: sticky; top: 110px; padding: 1.4rem; border: 1px solid #d5e1de; border-radius: var(--radius); background: var(--white); }
.fact-box h2 { margin-bottom: 1rem; font-size: 1.25rem; }
.fact-list { display: grid; gap: .8rem; padding: 0; list-style: none; }
.fact-list li { padding-bottom: .8rem; border-bottom: 1px solid #e3eae8; color: #52666d; }
.fact-list li:last-child { border: 0; }
.archive-list { display: grid; gap: 1rem; }
.archive-list article { padding: 1.4rem; border: 1px solid #d6e1df; border-radius: var(--radius); background: var(--white); }
.archive-list time { color: #6c8188; font-size: .82rem; }
.archive-list h2 { margin: .45rem 0 .7rem; font-size: clamp(1.35rem, 3vw, 2rem); }
.legal { max-width: 900px; }
.legal h2 { margin: 2.7rem 0 .8rem; font-size: clamp(1.55rem, 3vw, 2.35rem); }
.legal h3 { margin: 1.8rem 0 .6rem; font-size: 1.2rem; }
.legal p, .legal li { color: #43575e; }
.legal address { font-style: normal; }
.notice { padding: 1rem 1.2rem; border-left: 4px solid var(--cyan); background: #e8f5f7; }

.site-footer { color: var(--muted); background: #050b0e; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 3rem; padding: 4rem 0 2.5rem; }
.footer-brand p { max-width: 38ch; margin-top: 1rem; }
.footer-heading { margin-bottom: .8rem; color: var(--white); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a, .footer-links button { width: fit-content; padding: 0; border: 0; color: inherit; background: transparent; font: inherit; text-decoration: none; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: var(--cyan); }
.footer-bottom { display: flex; padding: 1.3rem 0; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); font-size: .78rem; }
.to-top { position: fixed; z-index: 90; right: 1.2rem; bottom: 1.2rem; display: grid; width: 46px; aspect-ratio: 1; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--white); background: rgba(7,17,22,.88); opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .2s, transform .2s; cursor: pointer; }
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.privacy-notice { position: fixed; z-index: 150; right: 1rem; bottom: 1rem; left: 1rem; display: grid; grid-template-columns: 1fr auto; width: min(calc(100% - 2rem), 920px); margin-inline: auto; padding: 1.15rem; align-items: center; gap: 1.5rem; border: 1px solid #cddbd8; border-radius: 1.2rem; color: var(--ink); background: rgba(255,255,255,.97); box-shadow: 0 24px 70px rgba(7,17,22,.22); backdrop-filter: blur(16px); }
.privacy-notice[hidden] { display: none; }
.privacy-notice strong { display: block; margin-bottom: .25rem; }
.privacy-notice p { margin: 0; color: #52666e; font-size: .9rem; }
.privacy-actions { display: flex; align-items: center; gap: 1rem; white-space: nowrap; }
.privacy-actions a { color: #147e98; font-weight: 800; }
.privacy-dialog { width: min(calc(100% - 2rem), 720px); padding: 1.5rem; border: 1px solid #cddbd8; border-radius: 1.3rem; color: var(--ink); background: #f9fbfa; box-shadow: 0 30px 90px rgba(7,17,22,.3); }
.privacy-dialog::backdrop { background: rgba(7,17,22,.52); backdrop-filter: blur(5px); }
.privacy-dialog-head { display: flex; align-items: start; justify-content: space-between; gap: 1rem; }
.privacy-dialog h2 { font-size: clamp(1.8rem, 5vw, 2.7rem); }
.privacy-close { width: 42px; aspect-ratio: 1; border: 1px solid #cad7d4; border-radius: 50%; background: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer; }
.privacy-option { display: flex; margin-top: .8rem; padding: 1rem; align-items: center; justify-content: space-between; gap: 1.5rem; border: 1px solid #d5dfdc; border-radius: 1rem; background: #fff; }
.privacy-option strong, .privacy-option span { display: block; }
.privacy-option span { margin-top: .2rem; color: #5b6f76; font-size: .85rem; }
.privacy-option b { flex: 0 0 auto; color: #397500; font-size: .77rem; text-transform: uppercase; }
.privacy-option.is-inactive b { color: #687a80; }
.privacy-dialog-note { margin: 1rem 0 0; color: #52666e; font-size: .85rem; }
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s, transform .65s; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Helle Designrichtung */
.site-header,
.site-header.is-scrolled,
.inner-page .site-header {
  color: var(--ink);
  background: rgba(247, 250, 248, .92);
  box-shadow: 0 1px 0 rgba(12, 35, 43, .12);
  backdrop-filter: blur(18px);
}
.brand { color: var(--ink); }
.brand-copy span { color: #63777e; }
.main-nav a { color: #23383f; }
.main-nav .nav-cta { border-color: rgba(12, 35, 43, .22); background: rgba(255,255,255,.6); }
.nav-toggle { border-color: rgba(12, 35, 43, .22); }

.hero { color: var(--ink); background: var(--paper); }
.hero::after {
  background:
    linear-gradient(90deg, rgba(247,250,248,.98) 0%, rgba(247,250,248,.9) 42%, rgba(247,250,248,.3) 78%),
    linear-gradient(0deg, var(--paper) 0%, transparent 24%);
}
.hero .kicker { color: #397500; }
.hero-sub { color: #2e444c; }
.hero .button-secondary { color: var(--ink); border-color: rgba(12,35,43,.35); background: rgba(255,255,255,.46); }
.hero .button-secondary:hover { background: rgba(255,255,255,.82); }
.slider-button, .slider-dot { color: var(--ink); border-color: rgba(12,35,43,.3); background: rgba(255,255,255,.78); }
.slider-dot.is-active { background: #76b900; border-color: #76b900; }
.scroll-cue { color: #4e6269; }

.section-dark,
.section-deep { color: var(--text); background: #eaf2f0; }
.section-deep { background: #e7f1f4; }
.section-dark .kicker, .section-deep .kicker { color: #397500; }
.section-dark .lead, .section-deep .lead { color: #52666e; }
.metrics { border-color: #cbd9d6; background: rgba(255,255,255,.5); }
.metric { border-color: #cbd9d6; }
.metric strong { color: #147e98; }
.metric span, .process p { color: #52666e; }
.process article { border-top-color: rgba(12,35,43,.24); }
.process article::before { color: #397500; background: #eaf2f0; }
.contact-link { border-color: rgba(12,35,43,.2); background: rgba(255,255,255,.5); }
.contact-link:hover { background: rgba(255,255,255,.9); }
.contact-link span { color: #61757c; }
.contact-link strong { color: var(--ink); }

.page-hero { color: var(--ink); background: radial-gradient(circle at 85% 20%, rgba(39,211,255,.2), transparent 34%), #eef5f3; }
.page-hero .lead { color: #52666e; }

.site-footer { color: #596d74; background: #f1f5f3; }
.site-footer .brand { color: var(--ink); }
.footer-heading { color: var(--ink); }
.footer-bottom { border-top-color: #d3ddda; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav { position: fixed; inset: 78px 0 auto; display: grid; padding: 1.4rem 1rem 1.8rem; color: var(--ink); background: rgba(247,250,248,.99); border-top: 1px solid rgba(12,35,43,.12); transform: translateY(-130%); transition: transform .25s; }
  .main-nav.is-open { transform: none; }
  .main-nav a { width: min(100%, var(--max)); margin-inline: auto; padding: .65rem; font-size: 1.05rem; }
  .main-nav .nav-cta { text-align: center; }
  .intro-grid, .contact-panel, .content-layout, .faq-layout { grid-template-columns: 1fr; }
  .service-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .use-case-grid { grid-template-columns: 1fr; }
  .use-case-card { grid-template-columns: minmax(240px, .75fr) 1.25fr; }
  .use-case-card img { height: 100%; min-height: 320px; }
  .use-case-copy { min-height: 320px; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .fact-box { position: static; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 1.25rem), var(--max)); }
  .header-row { min-height: 70px; }
  .brand-copy span { display: none; }
  .main-nav { inset-block-start: 70px; }
  .hero { min-height: 760px; }
  .hero-content { min-height: 760px; padding-top: 7rem; }
  .hero::after { background: linear-gradient(0deg, rgba(247,250,248,.98) 8%, rgba(247,250,248,.76) 72%, rgba(247,250,248,.58)); }
  .hero h1 { font-size: clamp(2.65rem, 15vw, 4.5rem); }
  .hero-controls { right: .75rem; bottom: 1rem; }
  .slider-button { display: none; }
  .scroll-cue { bottom: 1.5rem; left: .75rem; font-size: .68rem; }
  .service-grid, .news-grid, .process { grid-template-columns: 1fr; }
  .use-case-card { grid-template-columns: 1fr; }
  .use-case-card img { height: 260px; min-height: 0; }
  .use-case-copy { min-height: 285px; }
  .service-card { min-height: 285px; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: 360px 240px 240px; }
  .gallery-card:first-child { grid-row: auto; }
  .news-head { align-items: start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .privacy-notice { grid-template-columns: 1fr; gap: 1rem; }
  .privacy-actions { justify-content: space-between; }
  .privacy-option { align-items: start; flex-direction: column; gap: .5rem; }
}

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

@media print {
  .site-header, .hero-controls, .scroll-cue, .to-top, .button { display: none !important; }
  body { color: #000; background: #fff; }
  .page-hero, .section-dark, .section-deep, .site-footer { color: #000; background: #fff; }
}

/* Einheitliche Firmenpräsentation */
:root { --ink: #163440; --ink-2: #214653; --text: #203b46; --paper: #fff; --cyan: #17788c; --lime: #176b80; --radius: .45rem; --max: 1180px; }
html { background: #fff; scroll-padding-top: 100px; }
body { line-height: 1.7; }
h1, h2, h3 { letter-spacing: -.025em; line-height: 1.18; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; }
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.kicker, .hero .kicker, .section-dark .kicker, .section-deep .kicker { color: #176b80; font-size: .875rem; letter-spacing: .1em; }
.button { color: #fff; background: #176b80; border-radius: .3rem; font-weight: 650; }
.button:hover { background: #104f61; }
.button-secondary, .hero .button-secondary { color: #163440; background: #fff; border-color: #b6c6cd; }
.button-secondary:hover, .hero .button-secondary:hover { background: #eef4f6; }
:focus-visible { outline-color: #17788c; }
.skip-link { color: white; }
.site-header, .site-header.is-scrolled, .inner-page .site-header { background: #fff; backdrop-filter: none; }
.header-row { min-height: 84px; }
.brand-mark { border: 0; color: white; background: #163f4d; border-radius: .3rem; box-shadow: none; font-size: 1rem; }
.brand-copy strong { font-size: 1rem; }
.brand-copy span { margin-top: .3rem; font-size: .875rem; letter-spacing: .06em; text-transform: none; }
.main-nav { gap: 1.1rem; }
.main-nav a { font-size: .875rem; }
.main-nav .nav-cta { color: #fff; background: #176b80; border-color: #176b80; border-radius: .3rem; }
.hero { min-height: 0; padding: 144px 0 64px; background: #f1f5f7; overflow: visible; }
.hero::after { display: none; }
.hero-layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3.5rem; align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 3.7vw, 3.35rem); line-height: 1.17; }
.hero h1 span { color: #176b80; }
.hero-sub { font-size: 1.125rem; margin: 1.5rem 0; }
.hero-location { margin: 1.5rem 0 0; color: #5b6e77; font-size: .875rem; }
.hero-project { margin: 0; overflow: hidden; border-radius: .4rem; background: #fff; border: 1px solid #d9e2e6; }
.hero-project img { width: 100%; height: 350px; object-fit: contain; background: #12191e; }
.hero-project figcaption { padding: 1rem 1.2rem; font-size: 1rem; font-weight: 600; }
.hero-project figcaption span { display: block; color: #60717a; font-size: .875rem; font-weight: 400; }
.intro-grid { gap: 3rem; align-items: center; }
.intro-note { border: 0; border-left: 3px solid #176b80; border-radius: 0; padding: .4rem 0 .4rem 1.5rem; background: transparent; }
.intro-note p { margin-bottom: 0; }
.service-grid { margin-top: 2rem; gap: 1.25rem; }
.service-card { display: flex; flex-direction: column; min-height: 275px; padding: 1.5rem; background: #fff; border-color: #d9e2e6; }
.service-card::after { display: none; }
.service-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px #1634400d; border-color: #17788c; }
.service-number { font-size: .875rem; color: #52717d; }
.service-card h3 { margin: 1.5rem 0 .8rem; }
.service-card p { max-width: none; }
.service-card .text-link { position: static; margin-top: auto; padding-top: .7rem; }
.text-link { color: #176b80; font-weight: 650; }
.use-cases { background: #f3f6f8; padding-top: 4rem; }
.use-case-grid { margin-top: 2rem; }
.use-case-card { background: #fff; box-shadow: none; border-color: #d9e2e6; }
.use-case-card img { height: 230px; object-fit: contain; background: #e8edf0; }
.use-case-copy { min-height: 280px; }
.use-case-copy > span { color: #176b80; font-size: .875rem; letter-spacing: .04em; }
.section-dark, .section-deep { background: #eaf1f4; }
.metric { min-height: 145px; }
.metric strong { font-size: 2rem; color: #176b80; }
.process { margin-top: 2.5rem; }
.process article::before { color: #176b80; background: #eaf1f4; }
.page-hero { padding: 140px 0 60px; background: #f1f5f7; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); overflow-wrap: anywhere; }
.page-image { margin-top: 0; padding-top: 2rem; }
.page-image img { height: auto; max-height: 440px; object-fit: contain; box-shadow: none; background: #f1f5f7; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.prose > h2:first-child { margin-top: 0; }
.contact-link { border-radius: .3rem; flex-wrap: wrap; column-gap: 1rem; }
.contact-link span { font-size: .875rem; }
.contact-link strong { overflow-wrap: anywhere; }
.site-footer { background: #163440; color: #d0dce1; }
.site-footer .brand, .footer-heading { color: #fff; }
.site-footer .brand-copy span { color: #d0dce1; }
.site-footer .brand-mark { background: #fff; color: #163440; }
.footer-heading, .footer-bottom { font-size: .875rem; }
.footer-bottom { border-color: #ffffff26; }
.footer-links a:hover, .footer-links button:hover { color: #fff; text-decoration: underline; }
.privacy-notice { border-radius: .4rem; box-shadow: 0 4px 25px #1634401f; }
.js .reveal { opacity: 1; transform: none; transition: none; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; }
.faq-list details { border-bottom: 1px solid #d9e2e6; padding: 1.15rem 0; }
.faq-list summary { font-weight: 650; cursor: pointer; padding-right: 1rem; }
.faq-list details p { color: #52666e; margin: 1rem 0 0; }
@media(max-width: 1050px) {
 .nav-toggle { display: block; }
 .main-nav { position: fixed; inset: 84px 0 auto; display: none; padding: 1rem 1.5rem; background: white; border-bottom: 1px solid #d9e2e6; transform: none; }
 .main-nav.is-open { display: grid; }
 .main-nav a { padding: .65rem; font-size: 1rem; }
 .hero-layout { gap: 2rem; }
}
@media(max-width: 760px) {
 .hero { padding: 120px 0 40px; }
 .hero-layout { grid-template-columns: 1fr; }
 .hero h1 { font-size: clamp(2.1rem, 7vw, 3rem); }
 .hero-project img { height: 260px; }
 .faq-layout { grid-template-columns: 1fr; gap: 1rem; }
 .intro-grid { grid-template-columns: 1fr; gap: 1.5rem; }
 .page-hero { padding-top: 120px; }
 .contact-panel { gap: 1.5rem; }
}
@media(max-width: 620px) {
 .shell { width: calc(100% - 2rem); }
 .brand-copy span { display: block; }
 .brand-copy strong { font-size: .875rem; }
 .header-row { min-height: 76px; }
 .main-nav { inset-block-start: 76px; }
 .service-card { min-height: 0; }
 .service-card .text-link { margin-top: .5rem; }
 .metric { padding: 1rem; }
 .metric strong { font-size: 1.65rem; }
 .use-case-copy { min-height: 0; }
 .use-case-card img { height: 230px; }
 .privacy-actions { white-space: normal; }
 .contact-link { display: grid; }
}
