:root {
  --ink: #132536;
  --ink-soft: #294256;
  --paper: #f6f8f7;
  --white: #fff;
  --ice: #dfecef;
  --ice-deep: #bed7dd;
  --red: #df2f32;
  --red-dark: #b91f23;
  --line: rgba(19, 37, 54, .16);
  --container: 1240px;
  --header-h: 90px;
  --shadow: 0 22px 70px rgba(19, 37, 54, .14);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: clamp(88px, 10vw, 150px) 0; }
.section-dark { color: var(--white); background: var(--ink); }
.section-ice { background: var(--ice); }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px; color: var(--white); background: var(--ink); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: var(--header-h); color: var(--ink); background: rgba(255,255,255,.93); border-bottom: 1px solid rgba(19,37,54,.09); backdrop-filter: blur(18px); transition: height .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { height: 76px; box-shadow: 0 10px 40px rgba(19,37,54,.1); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { flex: 0 0 auto; }
.brand img { width: 188px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 38px); font-size: .78rem; font-weight: 700; letter-spacing: .055em; text-transform: uppercase; }
.primary-nav a { position: relative; padding: 8px 0; }
.primary-nav a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: 3px; left: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.primary-nav .nav-cta { padding: 11px 18px; color: var(--white); background: var(--red); transition: background .2s ease; }
.primary-nav .nav-cta:hover { background: var(--red-dark); }
.menu-toggle { display: none; align-items: center; gap: 12px; border: 0; background: none; color: var(--ink); cursor: pointer; }
.menu-toggle-label { font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.menu-toggle-icon { display: grid; gap: 4px; width: 25px; }
.menu-toggle-icon i { display: block; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero { position: relative; min-height: 780px; height: max(780px, 92vh); display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--ink); }
.hero-media { position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(8,23,35,.94) 0%, rgba(8,23,35,.68) 48%, rgba(8,23,35,.28) 78%), linear-gradient(0deg, rgba(8,23,35,.74), transparent 44%), url('../images/dolomiten.jpg'); background-position: center; background-size: cover; transform: scale(1.02); }
.hero-media::after { content: ""; position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to right, black, transparent 80%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) 270px; align-items: end; gap: 80px; padding-top: var(--header-h); }
.eyebrow, .section-number { margin: 0 0 24px; font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { color: #d9ebee; }
.eyebrow::before, .section-number::before { content: ""; display: inline-block; width: 34px; height: 2px; margin: 0 12px 3px 0; background: var(--red); }
.hero h1 { max-width: 900px; margin: 0; font-size: clamp(3.8rem, 8vw, 7.5rem); font-weight: 650; letter-spacing: -.065em; line-height: .9; }
.hero h1 span { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.75); }
.hero-lead { max-width: 660px; margin: 34px 0 0; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 52px; padding: 13px 23px; border: 1px solid transparent; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button > span[aria-hidden="true"], .text-link b, .product-meta a b { display: inline-block; font-size: 1.35rem; font-weight: 500; line-height: .65; transform: translateY(1px); }
.button-primary { color: var(--white); background: var(--red); }
.button-primary:hover { background: var(--red-dark); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.55); }
.button-ghost:hover { color: var(--ink); background: var(--white); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--red); }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { color: var(--white); background: var(--red); }
.hero-note { padding: 26px; border: 1px solid rgba(255,255,255,.25); background: rgba(12,31,46,.45); backdrop-filter: blur(12px); }
.hero-note .note-index { display: block; margin-bottom: 18px; color: #b9d7dc; font-size: .67rem; font-weight: 800; letter-spacing: .16em; }
.hero-note p { margin: 0; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.16); font-size: .86rem; }
.scroll-cue { position: absolute; z-index: 2; left: calc((100% - min(calc(100% - 48px), var(--container))) / 2); bottom: 28px; display: flex; align-items: center; gap: 12px; font-size: .67rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.scroll-cue span { width: 34px; height: 1px; background: var(--red); }

.split-heading { display: grid; grid-template-columns: minmax(160px, .45fr) 1.55fr; gap: 60px; }
.section-number { color: #69808f; }
.split-heading h2, .section-head h2, .product-intro h2, .story-copy h2, .paired-copy h2, .download-copy h2, .contact-copy h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 5.2rem); font-weight: 620; letter-spacing: -.055em; line-height: 1; }
.split-heading .lead { max-width: 920px; margin: 35px 0 0; color: var(--ink-soft); font-size: clamp(1.25rem, 2.2vw, 2rem); line-height: 1.45; }
.section-head { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 70px; margin-bottom: 68px; }
.section-head > p { max-width: 500px; margin: 0; color: rgba(255,255,255,.67); }
.section-dark .section-number { color: #9bb6be; }
.solution-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.solution-card { min-height: 470px; display: flex; flex-direction: column; padding: 28px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); transition: background .25s ease, color .25s ease; }
.solution-card:hover { color: var(--ink); background: var(--ice); }
.card-number { color: #9bb6be; font-size: .7rem; font-weight: 800; letter-spacing: .14em; }
.solution-thumb { width: 100%; height: 150px; margin: 20px 0 18px; padding: 10px; object-fit: contain; background: rgba(255,255,255,.08); transition: transform .3s ease, background .3s ease; }
.solution-card:hover .solution-thumb { transform: translateY(-4px); background: rgba(255,255,255,.6); }
.solution-card h3 { margin: 0 0 18px; font-size: clamp(1.55rem, 2.1vw, 2.25rem); font-weight: 600; line-height: 1.06; }
.solution-card p { min-height: 78px; margin: 0 0 24px; color: rgba(255,255,255,.64); font-size: .93rem; }
.solution-card:hover p { color: var(--ink-soft); }
.text-link { display: flex; align-items: center; justify-content: space-between; padding-top: 17px; border-top: 1px solid currentColor; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.text-link b { color: var(--red); }

.landscape-band { position: relative; min-height: clamp(300px, 36vw, 470px); display: flex; align-items: end; overflow: hidden; color: var(--white); background: #243d50; }
.landscape-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.landscape-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,26,39,.82), rgba(9,26,39,.18) 70%), linear-gradient(0deg, rgba(9,26,39,.62), transparent 60%); }
.landscape-content { position: relative; z-index: 1; padding-top: 70px; padding-bottom: 62px; }
.landscape-content p { margin: 0 0 8px; font-size: 1.15rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.landscape-content h2 { margin: 0; font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 580; letter-spacing: -.055em; line-height: .95; }
.product-intro { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 70px; margin-bottom: 68px; }
.product-intro > p { margin: 0; color: var(--ink-soft); font-size: 1.05rem; }
.product-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.product-card { overflow: hidden; background: var(--white); box-shadow: 0 1px 0 var(--line); }
.product-image { position: relative; aspect-ratio: 1.32; overflow: hidden; background: #e8ecec; }
.product-image img { width: 100%; height: 100%; padding: 18px; object-fit: contain; transition: transform .45s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-meta { padding: 25px 28px 28px; }
.product-meta span { color: #6d8290; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.product-meta h3 { margin: 9px 0 18px; font-size: clamp(1.55rem, 2.4vw, 2.35rem); line-height: 1.1; }
.product-meta a { display: inline-flex; gap: 10px; color: var(--red-dark); font-size: .73rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-strip div { padding: 30px 24px; border-right: 1px solid var(--line); }
.feature-strip div:last-child { border-right: 0; }
.feature-strip span { font-weight: 750; }
.feature-strip p { margin: 8px 0 0; color: #667b89; font-size: .88rem; }

.story-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.story-visual { position: relative; padding: 24px; border: 1px solid rgba(19,37,54,.22); background: rgba(255,255,255,.78); }
.story-visual::before { content: none; }
.story-visual img { position: relative; z-index: 1; display: block; width: 100%; max-width: 100%; height: auto; aspect-ratio: 1200 / 726; object-fit: contain; box-shadow: none; }
.image-label { position: absolute; z-index: 2; right: 16px; bottom: 16px; padding: 13px 18px; color: var(--white); background: var(--red); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.story-copy > p:not(.section-number) { margin: 30px 0; color: var(--ink-soft); font-size: 1.05rem; }
.check-list { margin: 34px 0; padding: 0; list-style: none; border-top: 1px solid rgba(19,37,54,.2); }
.check-list li { display: grid; grid-template-columns: 42px 1fr; gap: 10px; padding: 15px 0; border-bottom: 1px solid rgba(19,37,54,.2); font-size: .92rem; }
.check-list span { color: var(--red); font-size: .7rem; font-weight: 800; }
.thermistor-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 90px; }
.thermistor-feature { overflow: hidden; background: rgba(255,255,255,.78); box-shadow: 0 16px 46px rgba(19,37,54,.08); }
.thermistor-feature > img { width: 100%; height: 270px; padding: 20px; object-fit: contain; background: var(--white); }
.thermistor-feature > div { padding: 24px; }
.thermistor-feature span { color: var(--red); font-size: .67rem; font-weight: 800; letter-spacing: .12em; }
.thermistor-feature h3 { margin: 7px 0 8px; font-size: 1.25rem; line-height: 1.15; }
.thermistor-feature p { margin: 0; color: #667b89; font-size: .86rem; }

.paired-products { padding: 0; }
.paired-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 650px; }
.paired-card-reverse .paired-image { order: 2; }
.paired-image { display: grid; place-items: center; overflow: hidden; padding: clamp(28px, 4vw, 64px); background: #e8ecec; }
.paired-image img { display: block; width: 100%; max-width: 520px; height: auto; max-height: 100%; aspect-ratio: 934 / 622; object-fit: contain; }
.paired-gallery { position: relative; display: block; padding: 6%; }
.paired-gallery .paired-main-image { width: 100%; height: 100%; object-fit: contain; }
.paired-gallery .paired-inset-image { position: absolute; right: 5%; bottom: 5%; width: 38%; height: 38%; padding: 12px; object-fit: contain; background: rgba(255,255,255,.94); box-shadow: var(--shadow); }
.paired-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(46px, 7vw, 120px); background: var(--white); }
.paired-card-reverse .paired-copy { background: #eef2f2; }
.paired-copy > p:not(.section-number) { max-width: 600px; margin: 30px 0; color: var(--ink-soft); font-size: 1.05rem; }
.standalone { max-width: 330px; margin-top: 14px; }

.downloads { position: relative; isolation: isolate; background: #132536; }
.downloads::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(19,37,54,.98) 10%, rgba(19,37,54,.62)); }
.downloads-background { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .8; }
.download-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.download-copy p:not(.section-number) { max-width: 510px; margin: 30px 0 38px; color: rgba(255,255,255,.7); }
.download-visual { position: relative; display: block; }
.download-visual > img { display: block; width: 100%; height: auto; aspect-ratio: 701 / 526; object-fit: contain; background: var(--white); box-shadow: 0 30px 80px rgba(0,0,0,.3); }
.download-visual .download-portal-card { position: absolute; right: -24px; bottom: -24px; display: grid; grid-template-columns: 54px 1fr; align-items: center; gap: 2px 16px; min-width: 310px; padding: 18px 24px; color: var(--ink); background: var(--ice); }
.download-portal-card img { grid-row: 1 / 3; width: 54px; height: 54px; box-shadow: none; }
.download-portal-card strong { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.download-portal-card small { color: #546b78; font-size: .67rem; }

.facility { background: var(--white); }
.facility-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.facility-image { position: relative; }
.facility-image img { display: block; width: 100%; height: auto; aspect-ratio: 1152 / 661; object-fit: contain; box-shadow: var(--shadow); }
.facility-image span { position: absolute; right: 0; bottom: 0; padding: 12px 17px; color: var(--white); background: var(--red); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.facility-copy h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 5.2rem); font-weight: 620; letter-spacing: -.055em; line-height: 1; }
.facility-copy > p:not(.section-number) { margin: 30px 0; color: var(--ink-soft); font-size: 1.05rem; }
.facility-copy address { margin: 0 0 28px; color: #657b89; font-style: normal; }

.contact { position: relative; overflow: hidden; color: var(--white); background: #173044; }
.contact-bg { position: absolute; inset: 0; opacity: .22; background: radial-gradient(circle at 80% 30%, #5b8393, transparent 42%), linear-gradient(135deg, #10283a, #294e63); }
.contact-grid { position: relative; display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 9vw, 130px); }
.contact-copy > p:not(.section-number) { max-width: 450px; margin: 30px 0; color: rgba(255,255,255,.72); }
.contact-details { display: grid; gap: 5px; margin-top: 56px; font-size: 1.05rem; }
.contact-details a:hover { color: #b8dce3; }
.contact-details address { margin-top: 20px; color: rgba(255,255,255,.68); font-style: normal; }
.contact-form { padding: clamp(30px, 4.5vw, 62px); color: var(--ink); background: var(--white); box-shadow: var(--shadow); }
.contact-form label { display: block; margin-bottom: 24px; }
.contact-form label > span:first-child { display: block; margin-bottom: 7px; color: #58707f; font-size: .68rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.contact-form input:not([type="checkbox"]), .contact-form textarea { width: 100%; padding: 12px 0; color: var(--ink); border: 0; border-bottom: 1px solid #afbdc4; border-radius: 0; outline: 0; background: transparent; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--red); box-shadow: 0 1px 0 var(--red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-form .consent { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 11px; color: #5f7380; font-size: .82rem; }
.consent input { width: 16px; height: 16px; margin: 4px 0 0; accent-color: var(--red); }
.consent a { color: var(--red-dark); text-decoration: underline; }
.form-submit { display: flex; align-items: center; gap: 22px; margin-top: 32px; }
.form-submit button:disabled { opacity: .6; cursor: wait; }
.form-status { max-width: 390px; margin: 0; font-size: .82rem; }
.form-status.is-success { color: #246b45; }
.form-status.is-error { color: #a51f25; }

.site-footer { color: rgba(255,255,255,.75); background: #0c1b28; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 70px; padding-top: 75px; padding-bottom: 60px; }
.footer-brand img { display: block; width: 260px; height: auto; margin-bottom: 22px; background: var(--white); opacity: 1; }
.footer-brand p { max-width: 390px; margin: 0; }
.site-footer h2 { margin: 0 0 20px; color: var(--white); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.site-footer address { font-style: normal; }
.site-footer div > a { display: block; margin-bottom: 7px; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; padding-bottom: 22px; border-top: 1px solid rgba(255,255,255,.13); font-size: .72rem; letter-spacing: .04em; }
.footer-bottom p { margin: 0; }

.assistant-widget { position: fixed; z-index: 900; right: 24px; bottom: 24px; }
.assistant-launcher { position: relative; display: grid; place-items: center; width: 64px; height: 64px; padding: 0; color: var(--white); border: 0; border-radius: 50%; background: var(--ink); box-shadow: 0 12px 36px rgba(19,37,54,.3); cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.assistant-launcher::after { content: ""; position: absolute; inset: -5px; border: 1px solid rgba(223,47,50,.42); border-radius: inherit; }
.assistant-launcher:hover { background: var(--red); box-shadow: 0 15px 42px rgba(19,37,54,.38); transform: translateY(-2px); }
.assistant-launcher:focus-visible, .assistant-actions button:focus-visible { outline: 3px solid var(--ice-deep); outline-offset: 3px; }
.assistant-launcher-icon { font-size: 1.9rem; line-height: 1; }
.assistant-launcher-label { position: absolute; right: calc(100% + 12px); padding: 6px 10px; color: var(--white); border-radius: 3px; background: var(--ink); font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; opacity: 0; pointer-events: none; transform: translateX(5px); transition: opacity .2s ease, transform .2s ease; }
.assistant-launcher:hover .assistant-launcher-label, .assistant-launcher:focus-visible .assistant-launcher-label { opacity: 1; transform: none; }
.assistant-widget.is-open .assistant-launcher { display: none; }

.assistant-panel { width: min(390px, calc(100vw - 32px)); height: min(700px, calc(100vh - 48px)); height: min(700px, calc(100dvh - 48px)); overflow: hidden; border: 1px solid rgba(19,37,54,.2); border-radius: 18px; background: var(--white); box-shadow: 0 24px 80px rgba(8,23,35,.35); }
.assistant-panel[hidden] { display: none; }
.assistant-toolbar { height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 9px 10px 9px 16px; color: var(--white); background: var(--ink); }
.assistant-title { display: flex; align-items: center; gap: 10px; min-width: 0; }
.assistant-title > span:first-child { font-size: 1.45rem; line-height: 1; }
.assistant-title > span:last-child { display: grid; min-width: 0; }
.assistant-title strong { font-size: .82rem; line-height: 1.2; letter-spacing: .04em; }
.assistant-title small { color: rgba(255,255,255,.62); font-size: .61rem; line-height: 1.4; letter-spacing: .08em; text-transform: uppercase; }
.assistant-actions { display: flex; gap: 5px; }
.assistant-actions button { display: grid; place-items: center; width: 38px; height: 38px; padding: 0; color: var(--white); border: 0; border-radius: 50%; background: rgba(255,255,255,.08); cursor: pointer; transition: background .2s ease; }
.assistant-actions button:hover { background: var(--red); }
.assistant-maximize-icon { width: 13px; height: 13px; border: 1.5px solid currentColor; }
.assistant-panel.is-maximized .assistant-maximize-icon { position: relative; width: 12px; height: 12px; transform: translate(2px, -2px); }
.assistant-panel.is-maximized .assistant-maximize-icon::after { content: ""; position: absolute; right: 3px; top: 3px; width: 10px; height: 10px; border: 1.5px solid currentColor; background: var(--ink); }
.assistant-actions button:hover .assistant-maximize-icon::after { background: var(--red); }
.assistant-minimize-icon { width: 14px; height: 1.5px; background: currentColor; }
.assistant-frame { display: block; width: 100%; height: calc(100% - 62px); border: 0; background: var(--paper); }
.assistant-panel.is-maximized { position: fixed; inset: 18px; width: auto; height: auto; border-radius: 12px; }

@media (max-width: 520px) {
  .assistant-widget { right: 16px; bottom: 16px; }
  .assistant-panel { position: fixed; inset: 8px; width: auto; height: auto; border-radius: 12px; }
  .assistant-panel.is-maximized { inset: 0; border: 0; border-radius: 0; }
  .assistant-launcher { width: 58px; height: 58px; }
}

.legal-main { padding-top: var(--header-h); background: var(--white); }
.legal-hero { display: flex; align-items: end; min-height: 380px; padding: 80px 0 55px; color: var(--white); background: linear-gradient(110deg, rgba(11,31,47,.94), rgba(11,31,47,.62)), url('../images/geoprecision.jpg') center 44% / cover; }
.privacy-hero { background-image: linear-gradient(110deg, rgba(11,31,47,.95), rgba(11,31,47,.62)), url('../images/dolomiten.jpg'); }
.legal-hero h1 { margin: 0; font-size: clamp(3.5rem, 7vw, 6.5rem); font-weight: 620; letter-spacing: -.055em; line-height: 1; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 800px); justify-content: space-between; gap: 80px; padding-top: 90px; padding-bottom: 120px; }
.legal-index { position: sticky; top: 110px; align-self: start; display: grid; border-top: 1px solid var(--line); }
.legal-index a { padding: 12px 0; border-bottom: 1px solid var(--line); color: #627987; font-size: .78rem; font-weight: 700; }
.legal-index a:hover { color: var(--red); }
.legal-content section { margin-bottom: 80px; scroll-margin-top: 110px; }
.legal-content h2 { margin: 0 0 24px; font-size: clamp(1.75rem, 3vw, 2.7rem); letter-spacing: -.035em; line-height: 1.14; }
.legal-content p, .legal-content address { color: #3e5665; }
.legal-content address { margin-bottom: 30px; font-style: normal; }
.legal-content a { color: var(--red-dark); text-decoration: underline; }
.legal-content dl { margin: 35px 0 0; border-top: 1px solid var(--line); }
.legal-content dl div { display: grid; grid-template-columns: 180px 1fr; gap: 30px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.legal-content dt { color: #6a7e8a; }
.legal-content dd { margin: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.solution-card:nth-child(2), .product-card:nth-child(2) { transition-delay: .08s; }
.solution-card:nth-child(3), .product-card:nth-child(3) { transition-delay: .16s; }
.solution-card:nth-child(4), .product-card:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1020px) {
  :root { --header-h: 76px; }
  .primary-nav { position: fixed; inset: var(--header-h) 0 auto; display: grid; gap: 0; padding: 28px 24px 36px; background: var(--white); box-shadow: 0 24px 50px rgba(19,37,54,.15); transform: translateY(-130%); visibility: hidden; transition: transform .25s ease, visibility .25s; }
  .primary-nav.is-open { transform: none; visibility: visible; }
  .primary-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .primary-nav .nav-cta { margin-top: 16px; text-align: center; border-bottom: 0; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-note { max-width: 520px; }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .thermistor-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-strip div:nth-child(2) { border-right: 0; }
  .feature-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .story-grid, .download-grid, .facility-grid, .contact-grid { grid-template-columns: 1fr; }
  .story-copy { max-width: 760px; }
  .download-visual { max-width: 780px; }
  .contact-copy { max-width: 700px; }
  .legal-layout { grid-template-columns: 190px minmax(0, 1fr); gap: 55px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 76px 0; }
  .brand img { width: 160px; }
  .hero { min-height: 760px; height: auto; padding: 130px 0 90px; }
  .hero-media { background-image: linear-gradient(rgba(8,23,35,.78), rgba(8,23,35,.78)), url('../images/dolomiten.jpg'); background-position: 46% center; }
  .hero-grid { padding-top: 0; }
  .hero h1 { font-size: clamp(3.2rem, 16vw, 5.2rem); }
  .hero h1 span { letter-spacing: 0; }
  .hero-note { display: none; }
  .scroll-cue { left: 16px; }
  .split-heading, .section-head, .product-intro { grid-template-columns: 1fr; gap: 25px; }
  .section-head { align-items: start; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 300px; }
  .solution-thumb { height: 180px; }
  .product-gallery { grid-template-columns: 1fr; gap: 20px; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-strip div:last-child { border-bottom: 0; }
  .story-grid { gap: 70px; }
  .image-label { right: 0; }
  .thermistor-feature-grid { grid-template-columns: 1fr; margin-top: 65px; }
  .thermistor-feature { display: grid; grid-template-columns: 42% 58%; }
  .thermistor-feature > img { height: 100%; min-height: 230px; }
  .paired-card { grid-template-columns: 1fr; min-height: 0; }
  .paired-card-reverse .paired-image { order: 0; }
  .paired-image { height: 400px; }
  .paired-copy { padding: 60px 24px 75px; }
  .download-visual .download-portal-card { right: 0; bottom: -30px; min-width: min(310px, 94%); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-submit { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .legal-hero { min-height: 300px; }
  .legal-layout { grid-template-columns: 1fr; gap: 55px; padding-top: 65px; }
  .legal-index { position: static; }
  .legal-content dl div { grid-template-columns: 1fr; gap: 4px; }
}

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