/* mobileGIS – Design System v2 ("engineered")
   Tokens: Grün als Markierung, Hairlines statt Karten, Mono-Labels, Duotone-Bilder. */

:root {
  --c-accent: #7CC694;            /* Brand Green – Aktion, Messmarke */
  --c-accent-deep: #2F6B4C;       /* Text-Akzent (AA) */
  --c-ink-green: #163326;         /* dunkle Sektionen, Duotone */
  --c-accent-soft: rgba(124,198,148,.12);
  --c-dark: #10171A;              /* Ink */
  --c-dark-2: #3C4A48;            /* Fließtext */
  --c-gray: #6E7B78;              /* Labels, Meta */
  --c-line: #D7DDDA;              /* Hairlines */
  --c-bg-light: #F4F6F5;          /* Paper */
  --c-white: #fff;
  --c-red: #E30613;

  --font-display: 'Space Grotesk', 'IBM Plex Sans', system-ui, sans-serif;
  --font: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --fs-display: 700 clamp(40px, 6vw, 72px)/1 var(--font-display);
  --fs-h1: 700 clamp(36px, 4.6vw, 60px)/1.02 var(--font-display);
  --fs-h2: 700 clamp(30px, 3.6vw, 44px)/1.08 var(--font-display);
  --fs-h3: 500 clamp(20px, 2vw, 26px)/1.2 var(--font-display);
  --fs-h4: 500 20px/1.2 var(--font-display);
  --fs-h5: 500 12px/1 var(--font-mono);
  --fs-h6: 500 19px/1.25 var(--font-display);
  --fs-lead: 400 19px/1.5 var(--font);
  --fs-body-lg: 400 17px/1.6 var(--font);
  --fs-body-md: 400 16px/1.65 var(--font);
  --fs-body-sm: 400 15px/1.6 var(--font);
  --fs-body-xs: 400 12px/1.5 var(--font-mono);
  --fs-label: 500 12px/1 var(--font-mono);

  --container: 1360px;
  --gutter: clamp(20px, 5vw, 72px);
  --space-s: 48px; --space-m: clamp(56px, 8vw, 96px); --space-l: clamp(72px, 10vw, 144px);
  --radius: 2px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font: var(--fs-body-md); color: var(--c-dark-2); background: var(--c-white); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
strong { color: var(--c-dark); font-weight: 600; }
.icon { flex: none; }
.icon svg { width: 100%; height: 100%; display: block; }

h1, h2, h3, h4, h5, h6 { margin: 0 0 16px; color: var(--c-dark); overflow-wrap: break-word; text-wrap: balance; letter-spacing: -.02em; }
/* Akzentwörter in Titeln: auf hellem Grund Green Deep (AA), auf dunklem Grund Brand Green */
h1 span[style*="c-accent"], h2 span[style*="c-accent"], h3 span[style*="c-accent"] { color: var(--c-accent-deep) !important; }
[style*="c-dark"] h2 span[style*="c-accent"], .page-hero h1 span[style*="c-accent"], .integration-band h2 span, .cta-band h2 span[style*="c-accent"] { color: var(--c-accent) !important; }
h1 { font: var(--fs-h1); letter-spacing: -.025em; }
h2 { font: var(--fs-h2); }
h3 { font: var(--fs-h3); }
h4 { font: var(--fs-h4); letter-spacing: 0; }
h5 { font: var(--fs-h5); letter-spacing: .14em; text-transform: uppercase; color: var(--c-gray); }
h6 { font: var(--fs-h6); letter-spacing: 0; }
.split h1 { font-size: clamp(32px, 3.6vw, 48px); }
.split h4 { font-size: 22px; }
p { margin: 0 0 16px; text-wrap: pretty; max-width: 68ch; }
p[style*="text-align:center"] { margin-left: auto; margin-right: auto; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: var(--space-m) 0; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  height: 48px; padding: 0 22px; border-radius: var(--radius);
  font: 600 15px/1 var(--font); border: 1.5px solid transparent; cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn::after { content: '→'; font-family: var(--font-mono); font-weight: 400; transition: transform .2s var(--ease); }
.btn:hover::after { transform: translateX(4px); }
.btn:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; }
.btn-primary { background: var(--c-accent); color: var(--c-dark); border-color: var(--c-accent); }
.btn-primary:hover { background: var(--c-dark); border-color: var(--c-dark); color: var(--c-white); }
.btn-outline-dark { background: transparent; color: var(--c-dark); border-color: var(--c-dark); }
.btn-outline-dark:hover { background: var(--c-dark); color: var(--c-white); }
.btn-secondary { background: transparent; color: var(--c-white); border-color: rgba(255,255,255,.7); }
.btn-secondary:hover { background: var(--c-white); color: var(--c-dark); border-color: var(--c-white); }
.btn-dark { background: var(--c-dark); color: var(--c-white); border-color: var(--c-dark); }
.btn-dark:hover { background: var(--c-white); color: var(--c-dark); }
.btn:active { transform: translateY(1px); }

/* ---------- Header / nav ---------- */
header.site-header { position: sticky; top: 0; z-index: 500; background: rgba(255,255,255,.94); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid transparent; transition: border-color .3s var(--ease); }
header.site-header.is-scrolled { border-bottom-color: var(--c-line); }
.header-inner { max-width: var(--container); margin: 0 auto; padding: 14px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.logo img { height: 53px; width: auto; transition: height .3s var(--ease); }
header.site-header.is-scrolled .logo img { height: 42px; }
nav.main-nav { flex: 1; }
nav.main-nav > ul { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 32px); justify-content: flex-end; }
nav.main-nav > ul > li { position: relative; }
nav.main-nav > ul > li > a, nav.main-nav > ul > li > button.nav-toggle {
  position: relative; font: 500 14px/1 var(--font); color: var(--c-dark); background: none; border: none; padding: 10px 0; cursor: pointer;
  display: flex; align-items: center; gap: 8px; white-space: nowrap; border-bottom: 1.5px solid transparent; transition: border-color .2s var(--ease), color .2s var(--ease);
}
nav.main-nav > ul > li > a:hover, nav.main-nav > ul > li:hover > button.nav-toggle, nav.main-nav > ul > li.open > button.nav-toggle { border-bottom-color: var(--c-accent); }
nav.main-nav > ul > li > button.nav-toggle::after { content: ''; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-top: -3px; transition: transform .2s var(--ease); }
nav.main-nav > ul > li:hover > button.nav-toggle::after, nav.main-nav > ul > li.open > button.nav-toggle::after { transform: rotate(225deg); margin-top: 3px; }

.mega-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding-top: 12px; /* Brücke: kein Hover-Loch zwischen Button und Menü */
  min-width: 560px; z-index: 600;
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s var(--ease), visibility .2s;
}
.mega-menu-col {
  background: var(--c-white); border: 1px solid var(--c-dark); border-radius: var(--radius); padding: 8px;
  flex: 1; display: flex; flex-direction: column;
}
nav.main-nav > ul > li:hover .mega-menu, nav.main-nav > ul > li.open .mega-menu { opacity: 1; visibility: visible; pointer-events: auto; }
nav.main-nav > ul > li:hover .mega-menu { transition-delay: 0s, 0s; }
nav.main-nav > ul > li .mega-menu { transition-delay: .15s, .15s; } /* kurze Nachlaufzeit beim Verlassen */
.mega-menu-col { flex: 1; display: flex; flex-direction: column; }
.mega-menu-col { }
.mega-menu a.mega-item { display: flex; gap: 16px; align-items: center; padding: 12px; border-bottom: 1px solid var(--c-line); transition: background .18s var(--ease); }
.mega-menu a.mega-item:last-child { border-bottom: 0; }
.mega-menu a.mega-item:hover { background: var(--c-bg-light); }
.mega-menu a.mega-item img { width: 56px; height: 48px; object-fit: contain; padding: 4px; background: var(--c-bg-light); flex: none; filter: saturate(.72); }
.mega-menu a.mega-item .mega-title { font: 500 15px/1.3 var(--font-display); color: var(--c-dark); }
.mega-menu a.mega-item .mega-desc { font: 400 12.5px/1.45 var(--font); color: var(--c-gray); }
.mobile-nav-toggle { display: none; background: none; border: none; cursor: pointer; }

/* ---------- Hero / Startseite ---------- */
.hero-lead { font: var(--fs-lead); color: var(--c-dark-2); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 0 32px; flex-wrap: wrap; font: 500 14px/1.4 var(--font); color: var(--c-dark); }
.hero-trust > span { display: flex; align-items: center; gap: 10px; padding: 12px 0; }
.hero-trust .icon { width: 18px; height: 18px; color: var(--c-accent-deep); }
h4 .icon, h3 .icon { width: 24px; height: 24px; }
.hero-video-frame { max-width: 1100px; margin: 0 auto; position: relative; background: var(--c-dark); }
.hero-video-frame video { width: 100%; display: block; }
.hero-video-frame::before, .hero-video-frame::after { content: ''; position: absolute; width: 18px; height: 18px; border: 1.5px solid var(--c-accent); z-index: 2; }
.hero-video-frame::before { left: 16px; top: 16px; border-right: 0; border-bottom: 0; }
.hero-video-frame::after { right: 16px; bottom: 16px; border-left: 0; border-top: 0; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0 24px; border-top: 1px solid var(--c-dark); text-align: left !important; }
.stat { padding: 32px 0; border-bottom: 1px solid var(--c-line); }
.stat h2, .stat .stat-num { font: 500 clamp(56px, 6vw, 88px)/.95 var(--font-display); letter-spacing: -.03em; font-variant-numeric: tabular-nums; color: var(--c-dark) !important; margin-bottom: 16px; }
.stat h2 .unit { color: var(--c-accent); }
.stat h3 { font: 500 20px/1.2 var(--font-display); color: var(--c-dark) !important; margin-bottom: 8px; }
.stat p { color: var(--c-dark-2); font: 400 14px/1.6 var(--font); margin: 0; max-width: 34ch; }

/* ---------- Generic two-col section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split img, .split video { border-radius: 0 !important; width: 100%; }
.split > img:not(.phone-shot), .split > div > img:not(.phone-shot):not([src*="crosssell"]) { filter: saturate(.72) contrast(1.05); }
.split > img:not(.phone-shot):not(.logo-img):not([src*="icon"]):not([src*="logo"]):not([src*="product"]):not([src*="keyvisual"]) { aspect-ratio: 3 / 2; object-fit: cover; }
.split > img[src*="icon"], .split > img[src*="logo"], .split > img[src*="product"], .split > img[src*="keyvisual"], .split > img.logo-img { width: auto; max-width: min(100%, 320px); margin: 0 auto; object-fit: contain; filter: none; }
.phone-shot { max-height: 680px; height: auto; object-fit: cover; object-position: top center; border: 1px solid var(--c-line); background: var(--c-white); box-shadow: none; }
.section-light { background: var(--c-bg-light); }
.eyebrow { color: var(--c-gray); font: var(--fs-label); text-transform: uppercase; letter-spacing: .14em; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--c-accent); flex: none; }
.eyebrow[style*="text-align:center"] { justify-content: center; }
.feature-list { display: flex; flex-direction: column; margin: 24px 0; border-top: 1px solid var(--c-dark); counter-reset: fl; }
.feature-list li { display: grid; grid-template-columns: 36px minmax(0,1fr); gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--c-line); font: 500 15px/1.5 var(--font); color: var(--c-dark); counter-increment: fl; }
.feature-list li::before { content: counter(fl, decimal-leading-zero); font: 500 12px/1.7 var(--font-mono); color: var(--c-accent-deep); }
.status-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--c-white); color: var(--c-dark); font: var(--fs-label); letter-spacing: .1em; text-transform: uppercase; padding: 9px 12px; border: 1px solid var(--c-dark); border-radius: var(--radius); margin-bottom: 16px; box-shadow: none !important; }
.status-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-accent); }

/* ---------- Cards / grids ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 32px 24px; }
.card-grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card-grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card { background: transparent; border: 0; border-radius: 0; overflow: visible; display: flex; flex-direction: column; gap: 16px; transition: none; }
.card:hover { box-shadow: none; transform: none; }
.card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; filter: saturate(.72) contrast(1.05); transition: filter .3s var(--ease); }
.card:hover img { filter: saturate(1) contrast(1); transform: none; }
.card img[src*="crosssell"] { object-fit: contain; background: var(--c-bg-light); padding: 16px; filter: none; }
.card-body { padding: 14px 0 0; border-top: 1px solid var(--c-dark); display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3, .card-body h4 { font: var(--fs-h6); margin: 0; transition: color .2s var(--ease); }
@media (hover: hover) { .card:hover .card-body h3, .card:hover .card-body h4 { color: var(--c-accent-deep); } }
.card-body p { font: var(--fs-body-sm); color: var(--c-dark-2); margin: 0; }
.card-body .card-date { font: var(--fs-body-xs); color: var(--c-gray); text-transform: uppercase; letter-spacing: .1em; order: -1; }

/* ---------- Logos marquee ---------- */
.logo-marquee { position: relative; overflow: hidden; padding: 24px 0; border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent); mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent); }
.logo-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: logo-scroll 38s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-track img { height: 40px; width: auto; max-width: 160px; object-fit: contain; flex: none; filter: grayscale(1); opacity: .75; transition: filter .3s var(--ease), opacity .3s var(--ease); }
.logo-track img:hover { filter: none; opacity: 1; }
@keyframes logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logo-track { animation: none; flex-wrap: wrap; justify-content: center; } }
.logo-strip { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.logo-strip img { max-height: 40px; width: auto; filter: grayscale(1); opacity: .75; }

/* ---------- Team carousel ---------- */
.team-carousel { max-width: 960px; margin: 0 auto; }
.team-slide { display: none; grid-template-columns: 300px 1fr; gap: 56px; align-items: center; }
.team-slide.is-active { display: grid; animation: team-fade-in .5s var(--ease); }
.team-photo-arch { width: 100%; max-width: 300px; aspect-ratio: 4/5; margin: 0 auto; overflow: hidden; border-radius: 0; box-shadow: none; position: relative; }
.team-photo-arch img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.72) contrast(1.05); }
.team-quote-block blockquote { font: 400 clamp(19px, 1.8vw, 22px)/1.45 var(--font); color: var(--c-dark); font-style: normal; border-left: 1.5px solid var(--c-accent); padding-left: 24px; margin: 0 0 20px; }
.team-name { font: 500 15px/1.5 var(--font-mono); color: var(--c-dark); margin: 0; }
.team-role { color: var(--c-gray); margin: 2px 0 0; font: 400 12px/1.5 var(--font-mono); }
.team-dots { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }
.team-dot { width: 24px; height: 2px; border-radius: 0; border: none; background: var(--c-line); cursor: pointer; padding: 0; transition: background .25s var(--ease); }
.team-dot:hover, .team-dot.is-active { background: var(--c-accent); transform: none; }
@keyframes team-fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (max-width: 860px) { .team-slide { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; margin: 48px 0; border-top: 1px solid var(--c-dark); }
.step { text-align: left; padding-top: 20px; }
.step .step-num { font: 500 clamp(40px, 4vw, 56px)/1 var(--font-display); letter-spacing: -.03em; color: var(--c-accent); margin-bottom: 14px; }
.step h4 { font: var(--fs-h6); margin-bottom: 6px; }
.step p { font: 400 14px/1.6 var(--font); color: var(--c-dark-2); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--c-dark); }
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; background: none; border: none; cursor: pointer; text-align: left; font: var(--fs-h6); color: var(--c-dark); transition: color .2s var(--ease); }
.faq-question::after { content: '+'; font: 400 24px/1 var(--font-mono); color: var(--c-accent-deep); flex: none; transition: transform .2s var(--ease); }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-question:hover { color: var(--c-accent-deep); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease), opacity .3s var(--ease); font: var(--fs-body-md); color: var(--c-dark-2); opacity: 0; }
.faq-item.open .faq-answer { opacity: 1; max-height: 600px; }
.faq-answer-inner { padding-bottom: 24px; max-width: 68ch; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font: var(--fs-label); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; color: var(--c-gray); }
input, select, textarea { width: 100%; padding: 14px 14px; border: 1px solid var(--c-line); border-radius: var(--radius); font: var(--fs-body-sm); color: var(--c-dark); background: var(--c-white); transition: border-color .2s var(--ease); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--c-dark); box-shadow: 0 0 0 3px var(--c-accent-soft); }
textarea { resize: vertical; min-height: 140px; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--c-ink-green); color: var(--c-white); padding: var(--space-m) 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px 24px; margin-bottom: 56px; }
.footer-col h5 { color: var(--c-accent); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.78); font: 400 14px/1.6 var(--font); margin-bottom: 10px; max-width: none; }
.footer-col a { border-bottom: 1px solid transparent; width: fit-content; white-space: nowrap; transition: color .2s var(--ease), border-color .2s var(--ease); }
.footer-col a:hover { color: var(--c-white); border-bottom-color: var(--c-accent); }
.footer-col .footer-legal { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-col .footer-legal a { display: inline; margin: 0; }
.footer-col .footer-legal span { color: rgba(255,255,255,.35); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { border: 0; }
.footer-social img { width: 32px; height: 32px; filter: grayscale(1) brightness(1.6); transition: filter .2s var(--ease); }
.footer-social a:hover img { filter: none; }

/* ---------- Calendly ---------- */
.calendly-inline-widget { min-width: 320px; height: 700px; margin: 0 auto; border-radius: var(--radius) !important; }

/* ---------- Page hero (Unterseiten) ---------- */
.page-hero { position: relative; background-color: var(--c-ink-green); background-size: cover; background-position: center; background-blend-mode: luminosity; color: var(--c-white); padding: var(--space-l) 0 var(--space-m); overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,51,38,.92) 0%, rgba(22,51,38,.6) 60%, rgba(22,51,38,.35) 100%); z-index: 0; }
.page-hero::after { content: ''; position: absolute; right: var(--gutter); top: 20px; width: 18px; height: 18px; border-top: 1.5px solid var(--c-accent); border-right: 1.5px solid var(--c-accent); z-index: 1; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--c-white); max-width: 20ch; }
.page-hero .hero-lead { color: rgba(255,255,255,.84); max-width: 56ch; }
.breadcrumb { font: var(--fs-body-xs); letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--c-accent); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--c-white); font: var(--fs-label); letter-spacing: .12em; text-transform: uppercase; padding: 9px 12px; border: 1px solid rgba(255,255,255,.45); border-radius: var(--radius); margin-bottom: 24px; }
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--c-accent); }

/* ---------- Kontakt ---------- */
.contact-shell { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; margin-top: -96px; position: relative; z-index: 5; }
.contact-card { background: var(--c-white); border-radius: var(--radius); padding: clamp(24px, 3vw, 40px); box-shadow: none; border: 1px solid var(--c-dark); }
.contact-card h3 { font: var(--fs-h3); }
.contact-card .card-sub { color: var(--c-dark-2); font: var(--fs-body-sm); margin-bottom: 24px; }
.contact-info-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--c-line); margin: 0; }
.contact-info-row .ci-icon { width: 22px; height: 22px; flex: none; color: var(--c-accent-deep); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.contact-info-row h4 { font: var(--fs-label); text-transform: uppercase; letter-spacing: .12em; color: var(--c-gray); margin-bottom: 6px; }
.contact-info-row p { margin: 0; font: 400 15px/1.5 var(--font); color: var(--c-dark); overflow-wrap: anywhere; }
@media (max-width: 900px) { .contact-shell { grid-template-columns: 1fr; margin-top: 24px; } }
.hero-cta-spaced { margin-bottom: 80px; }
@media (max-width: 900px) { .hero-cta-spaced { margin-bottom: 16px; } }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Legal ---------- */
.legal-content h2 { font: var(--fs-h3); margin-top: 40px; }
.legal-content h3 { font: var(--fs-h6); margin-top: 24px; }
.legal-content p, .legal-content li { font: var(--fs-body-md); color: var(--c-dark-2); }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-content a { color: var(--c-accent-deep); border-bottom: 1px solid var(--c-accent); }

/* ---------- Produktseite ---------- */
.product-hero-media { position: relative; background: var(--c-bg-light); }
.product-hero-media img { width: 100%; border-radius: 0 !important; aspect-ratio: 4/3; object-fit: cover; filter: saturate(.72) contrast(1.05); }
.product-hero-media::before, .product-hero-media::after { content: ''; position: absolute; width: 16px; height: 16px; border: 1.5px solid var(--c-white); z-index: 2; }
.product-hero-media::before { left: 14px; top: 14px; border-right: 0; border-bottom: 0; }
.product-hero-media::after { right: 14px; top: 14px; border-left: 0; border-bottom: 0; }
.floating-badge { position: absolute; left: 14px; bottom: 14px; background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius); box-shadow: none; padding: 10px 12px; display: flex; align-items: center; gap: 12px; z-index: 3; white-space: nowrap; animation: none; }
.floating-badge .fb-icon { width: 6px; height: 6px; border-radius: 0; background: var(--c-red); flex: none; overflow: hidden; }
.floating-badge .fb-icon .icon, .floating-badge .fb-icon span { display: none !important; }
.floating-badge .fb-label { font: var(--fs-label); letter-spacing: .12em; text-transform: uppercase; color: var(--c-gray); }
.floating-badge .fb-value { font: 500 14px/1.2 var(--font-mono); color: var(--c-dark); }
.floating-badge > div { display: flex; align-items: baseline; gap: 10px; }
.satellite-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.satellite-list li { display: inline-flex; align-items: center; gap: 8px; font: var(--fs-label); letter-spacing: .1em; text-transform: uppercase; color: var(--c-dark); border: 1px solid var(--c-dark); padding: 9px 12px; border-radius: var(--radius); }
.satellite-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--c-accent); }

.feature-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 48px; border-top: 1px solid var(--c-dark); counter-reset: fc; }
.feature-card { display: grid; grid-template-columns: 36px 40px minmax(0,1fr); gap: 12px; align-items: start; padding: 24px 0; border: 0; border-bottom: 1px solid var(--c-line); border-radius: 0; background: transparent; transition: background .2s var(--ease); counter-increment: fc; }
.feature-card::before { content: counter(fc, decimal-leading-zero); grid-row: 1; font: 500 12px/1.4 var(--font-mono); color: var(--c-gray); padding-top: 6px; }
.feature-card .fc-icon { grid-column: 2; grid-row: 1; }
.feature-card h4, .feature-card p, .feature-card > a, .feature-card > div:not(.fc-icon) { grid-column: 3; }
.feature-card:not(:has(.fc-icon)) h4, .feature-card:not(:has(.fc-icon)) p, .feature-card:not(:has(.fc-icon)) > a, .feature-card:not(:has(.fc-icon)) > div { grid-column: 2; }
.feature-card > a { display: block; color: inherit; }
.feature-card > a h4, .feature-card > a p { grid-column: auto; }
/* Karte komplett verlinkt (Icon + Text im <a>): Link wird selbst zum Raster */
.feature-card:has(> a > .fc-icon) > a { grid-column: 2 / 4; display: grid; grid-template-columns: 40px minmax(0,1fr); gap: 12px; align-items: start; }
.feature-card:has(> a > .fc-icon) > a .fc-icon { grid-column: 1; grid-row: 1; }
.feature-card:has(> a > .fc-icon) > a h4, .feature-card:has(> a > .fc-icon) > a p, .feature-card:has(> a > .fc-icon) > a span:not(.icon) { grid-column: 2; }
.feature-card > a > span:not(.icon) { display: inline-block; margin-top: 10px; font: 500 12px/1 var(--font-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--c-accent-deep) !important; border-bottom: 1px solid var(--c-accent); padding-bottom: 4px; width: fit-content; }
.feature-card > a:hover h4 { color: var(--c-accent-deep); }
.feature-card:hover { box-shadow: none; transform: none; background: transparent; }
.feature-card:hover::before { color: var(--c-accent-deep); }
.feature-card .fc-icon { width: 32px; height: 32px; border-radius: 0; background: transparent; color: var(--c-dark); display: flex; align-items: center; justify-content: center; padding: 0; margin: 0; }
.feature-card .fc-icon .icon { width: 28px !important; height: 28px !important; }
.feature-card:hover .fc-icon { background: transparent; color: var(--c-dark); transform: none; }
.feature-card h4 { font: var(--fs-h4); margin-bottom: 6px; }
.feature-card p { font: var(--fs-body-sm); color: var(--c-dark-2); margin: 0; max-width: 60ch; }
.feature-card:not(:has(.fc-icon)) { grid-template-columns: 36px minmax(0,1fr); }

.app-card { border-radius: 0; overflow: visible; border: 0; display: flex; flex-direction: column; gap: 16px; transition: none; }
.app-card:hover { box-shadow: none; transform: none; }
.app-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--c-ink-green); filter: grayscale(1) contrast(1.1); mix-blend-mode: normal; opacity: 1; transition: filter .3s var(--ease); }
.app-card:hover img { filter: saturate(.72) contrast(1.05); transform: none; }
.app-card .ac-body { padding: 14px 0 0; border-top: 1px solid var(--c-dark); }
.app-card h4 { font: var(--fs-h4); margin-bottom: 6px; }
.app-card p { font: var(--fs-body-sm); color: var(--c-dark-2); margin: 0; }

.spec-table { width: 100%; border-collapse: collapse; border-top: 1px solid var(--c-dark); }
.spec-table tr { border-bottom: 1px solid var(--c-line); }
.spec-table td { padding: 14px 0; vertical-align: top; }
.spec-table td:first-child { font: 500 14px/1.5 var(--font); color: var(--c-gray); width: 40%; padding-right: 24px; }
.spec-table td:last-child { font: 400 14px/1.5 var(--font-mono); color: var(--c-dark); }
.spec-table + p { margin-top: 40px !important; }

/* CTA-Band: standardmäßig Green Ink; folgt es direkt auf eine dunkle Sektion, wird es hell */
.cta-band { background: var(--c-ink-green); padding: var(--space-m) 0; text-align: center; }
.cta-band h2 { color: var(--c-white); }
.cta-band p { color: rgba(255,255,255,.82); max-width: 56ch; margin: 0 auto 28px; }
.cta-band .btn-dark { background: var(--c-accent); border-color: var(--c-accent); color: var(--c-dark); }
.cta-band .btn-dark:hover { background: var(--c-white); border-color: var(--c-white); }
.cta-band .btn-outline-dark { color: var(--c-white); border-color: rgba(255,255,255,.7); }
.cta-band .btn-outline-dark:hover { background: var(--c-white); color: var(--c-dark); border-color: var(--c-white); }
.section-dark + .cta-band, .cta-band.cta-light { background: var(--c-bg-light); border-top: 1px solid var(--c-dark); }
.section-dark + .cta-band h2, .cta-band.cta-light h2 { color: var(--c-dark); }
.section-dark + .cta-band p, .cta-band.cta-light p { color: var(--c-dark-2); }
.section-dark + .cta-band .btn-dark:hover, .cta-band.cta-light .btn-dark:hover { background: var(--c-dark); border-color: var(--c-dark); color: var(--c-white); }
.section-dark + .cta-band .btn-outline-dark, .cta-band.cta-light .btn-outline-dark { color: var(--c-dark); border-color: var(--c-dark); }
.section-dark + .cta-band .btn-outline-dark:hover, .cta-band.cta-light .btn-outline-dark:hover { background: var(--c-dark); color: var(--c-white); }

.delivery-list { display: flex; flex-direction: column; counter-reset: dl; }
.delivery-list li { display: grid; grid-template-columns: 36px minmax(0,1fr); gap: 12px; font: var(--fs-body-md); padding: 12px 0; border-bottom: 1px solid var(--c-line); counter-increment: dl; }
.delivery-list li::before { content: counter(dl, decimal-leading-zero); color: var(--c-accent-deep); font: 500 12px/1.8 var(--font-mono); }

/* ---------- Integration / Lieferumfang ---------- */
.integration-band { background: var(--c-ink-green); padding: var(--space-m) 0; }
.integration-band .split { align-items: start; }
.integration-band h2 { display: flex; align-items: center; gap: 14px; color: #fff; font: 500 clamp(22px, 2.4vw, 30px)/1.2 var(--font-display); margin-bottom: 18px; }
.integration-band h2 .icon { color: var(--c-white); width: 28px; height: 28px; }
.integration-band p { color: rgba(255,255,255,.78); }
.integration-band a { color: var(--c-accent); }
.os-badges { display: flex; gap: 8px; margin-top: 22px; flex-wrap: wrap; }
.os-badge { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: 1px solid rgba(255,255,255,.4); color: #fff; font: var(--fs-label); letter-spacing: .1em; text-transform: uppercase; padding: 9px 12px; border-radius: var(--radius); }
.os-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--c-accent); }
.delivery-card { background: transparent; border-radius: 0; padding: 0; }
.delivery-card .delivery-list { border-top: 1px solid rgba(255,255,255,.4); }
.delivery-card .delivery-list li { font: 500 15px/1.5 var(--font); color: var(--c-white); border-bottom-color: rgba(255,255,255,.18); }
.delivery-card .delivery-list li::before { content: counter(dl, decimal-leading-zero); color: var(--c-accent); background: none; width: auto; height: auto; }

/* ---------- Branchen ---------- */
.challenge-card { padding: 24px 0; border: 0; border-bottom: 1px solid var(--c-line); border-radius: 0; position: relative; display: grid; grid-template-columns: 36px minmax(0,1fr); gap: 12px; counter-increment: ch; transition: none; }
.card-grid:has(.challenge-card) { display: flex; flex-direction: column; border-top: 1px solid var(--c-dark); gap: 0; counter-reset: ch; max-width: 820px; }
.section-body > .card-grid:has(.challenge-card) { max-width: none; }
.challenge-card { grid-template-columns: 36px minmax(0,1fr); }
.challenge-card p { max-width: 68ch; }
.challenge-card::before { content: counter(ch, decimal-leading-zero); grid-row: 1; position: static; width: auto; height: auto; background: none; font: 500 12px/1.5 var(--font-mono); color: var(--c-gray); padding-top: 4px; }
.challenge-card h4, .challenge-card p { grid-column: 2; }
.challenge-card:hover { box-shadow: none; transform: none; }
.challenge-card:hover::before { color: var(--c-accent-deep); }
.challenge-card h4 { font: var(--fs-h6); margin-bottom: 6px; }
.challenge-card p { font: var(--fs-body-sm); color: var(--c-dark-2); margin: 0; }
.card-grid:has(.testimonial-card) { border-top: 1px solid var(--c-dark); gap: 24px; }
.testimonial-card { background: transparent; border-radius: 0; padding: 32px 0 32px 24px; border-left: 1.5px solid var(--c-accent); position: relative; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; transition: none; }
.testimonial-card:hover { box-shadow: none; transform: none; }
.testimonial-card::before { display: none; }
.testimonial-card blockquote { font: 400 clamp(18px, 1.8vw, 22px)/1.45 var(--font); color: var(--c-dark); margin: 0; font-style: normal; }
.testimonial-card .t-person { display: flex; align-items: center; gap: 14px; }
.testimonial-card .t-person img { width: 36px; height: 36px; object-fit: contain; filter: grayscale(1); }
.testimonial-card .t-name { font: 500 12px/1.5 var(--font-mono); color: var(--c-dark); }
.testimonial-card .t-role { font: 400 12px/1.5 var(--font-mono); color: var(--c-gray); }
.timeline-step { display: grid; grid-template-columns: 36px minmax(0,1fr); gap: 20px; margin-bottom: 32px; position: relative; padding-bottom: 0; }
.timeline-step:not(:last-child)::before { content: ''; position: absolute; left: 17.5px; top: 40px; bottom: -32px; width: 1px; background: var(--c-line); }
.timeline-step .ts-num { width: 36px; height: 36px; border-radius: var(--radius); background: var(--c-white); border: 1px solid var(--c-dark); color: var(--c-dark); font: 500 12px var(--font-mono); display: flex; align-items: center; justify-content: center; flex: none; z-index: 1; box-shadow: none; }
.timeline-step:last-child .ts-num { background: var(--c-dark); color: var(--c-accent); }
.timeline-step h4 { font: var(--fs-h4); margin-bottom: 6px; padding-top: 6px; }
.timeline-step p { font: var(--fs-body-sm); color: var(--c-dark-2); margin: 0; max-width: 60ch; }

.expert-card { text-align: left; border-top: 1px solid var(--c-dark); padding-top: 20px; }
.expert-card img { width: 96px; height: 96px; border-radius: 0; object-fit: cover; margin: 0 0 18px; border: 0; box-shadow: none; filter: saturate(.72) contrast(1.05); transition: filter .3s var(--ease); }
.expert-card:hover img { filter: none; transform: none; box-shadow: none; }
.expert-card h4 { font: var(--fs-h6); margin-bottom: 4px; }
.expert-card p { font: var(--fs-body-sm); color: var(--c-dark-2); }

/* ---------- Blog ---------- */
.post-hero-img { width: 100%; border-radius: 0; margin: 32px 0 48px; aspect-ratio: 16/9; object-fit: cover; filter: saturate(.72) contrast(1.05); }
.post-body { max-width: 760px; margin: 0 auto; font: var(--fs-body-md); }
.post-body p { max-width: none; }
.post-body h2 { font: var(--fs-h3); margin-top: 40px; }
.post-body h3 { font: var(--fs-h6); margin-top: 28px; }
.post-meta { display: flex; gap: 16px; align-items: center; font: var(--fs-body-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--c-gray); margin-bottom: 8px; }
.post-body ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.post-body li { margin-bottom: 8px; }
.post-body blockquote { border-left: 1.5px solid var(--c-accent); padding-left: 24px; margin: 24px 0; font-style: normal; color: var(--c-dark); font-size: 19px; }
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 24px 0; }
.post-tags span { border: 1px solid var(--c-line); color: var(--c-dark-2); font: var(--fs-label); letter-spacing: .1em; text-transform: uppercase; padding: 8px 10px; border-radius: var(--radius); }
.post-contact-box { background: var(--c-bg-light); border-radius: 0; border-top: 1px solid var(--c-dark); padding: 24px; margin: 40px 0; }
.post-contact-box h4 { font: var(--fs-h6); margin-bottom: 12px; }
.post-contact-box p { margin: 0 0 4px; font: var(--fs-body-sm); }
.post-contact-box a { color: var(--c-accent-deep); border-bottom: 1px solid var(--c-accent); }
.blog-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.blog-filter a { padding: 9px 12px; border-radius: var(--radius); border: 1px solid var(--c-line); font: var(--fs-label); letter-spacing: .1em; text-transform: uppercase; color: var(--c-dark-2); transition: all .2s var(--ease); }
.blog-filter a:hover { border-color: var(--c-dark); color: var(--c-dark); }
.blog-filter a.active { background: var(--c-dark); color: #fff; border-color: var(--c-dark); }
.blog-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.blog-pagination a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); border: 1px solid var(--c-line); font: 500 13px var(--font-mono); color: var(--c-dark); transition: all .2s var(--ease); }
.blog-pagination a:hover { border-color: var(--c-dark); transform: none; }
.blog-pagination a.active { background: var(--c-dark); color: #fff; border-color: var(--c-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .card-grid, .card-grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 960px) { nav.main-nav { display: none; } .mobile-nav-toggle { display: block; } }
@media (max-width: 860px) {
  .split, .contact-wrap, .steps { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .card-grid, .card-grid-4, .card-grid-2, .feature-card-grid { grid-template-columns: 1fr; }
  .phone-shot { max-height: 60vh; }
  .split > img:not(.phone-shot) { aspect-ratio: 4/3; }
}

/* Mobile nav panel */
.mobile-nav-panel { display: block; position: fixed; inset: 0; background: var(--c-white); z-index: 900; padding: 24px var(--gutter); overflow-y: auto; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s; }
.mobile-nav-panel.open { opacity: 1; visibility: visible; transform: none; }
.mobile-nav-panel ul { display: flex; flex-direction: column; }
.mobile-nav-panel > ul { margin-top: 48px; border-top: 1px solid var(--c-dark); }
.mobile-nav-panel > ul > li > a, .mobile-nav-panel > ul > li > button { width: 100%; text-align: left; background: none; border: none; padding: 16px 0; font: 500 clamp(22px, 5vw, 28px)/1.2 var(--font-display); color: var(--c-dark); border-bottom: 1px solid var(--c-line); display: block; }
.mobile-nav-panel .sub-list { padding: 4px 0 12px 24px; display: none; }
.mobile-nav-panel li.open .sub-list { display: block; }
.mobile-nav-panel .sub-list a { font: 400 16px/1.4 var(--font); padding: 10px 0; border: none; color: var(--c-dark-2); display: block; }
.mobile-nav-close { position: absolute; top: 20px; right: var(--gutter); background: none; border: none; font: 400 32px/1 var(--font-mono); cursor: pointer; color: var(--c-dark); }

/* ---------- Sektionslayout 3 / 9: Label + Titel links (sticky), Inhalt rechts ---------- */
main { counter-reset: sec; }
section img { border-radius: 0 !important; }
.section-split { display: grid; grid-template-columns: minmax(320px,4fr) minmax(0,8fr); gap: 32px clamp(24px,3vw,48px); align-items: start; }
.section-head h2 { font-size: clamp(22px, 2.3vw, 36px); overflow-wrap: normal; hyphens: manual; text-wrap: pretty; }
.section-head { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 16px; }
.section-head::before { content: counter(sec, decimal-leading-zero); counter-increment: sec; font: var(--fs-label); letter-spacing: .14em; color: var(--c-gray); padding-left: 44px; line-height: 12px; background: linear-gradient(var(--c-accent), var(--c-accent)) 0 50% / 32px 1px no-repeat; }
.section-head:has(.eyebrow)::before { display: none; }
.section-head h2, .section-head p, .section-head .eyebrow { text-align: left !important; margin: 0 !important; max-width: none !important; justify-content: flex-start !important; }
.section-head p { font: var(--fs-body-lg); color: var(--c-dark-2); }
.section-body > * { margin-top: 0 !important; }
.section-body > .faq, .section-body > [style*="max-width"], .section-body > .card-grid-2[style*="max-width"] { max-width: none !important; margin-left: 0 !important; margin-right: 0 !important; }
.section-body > .steps { margin-bottom: 0; }
.section-body > p[style*="text-align:center"] { text-align: left !important; margin-left: 0 !important; }
.section-body > .logo-marquee { margin-top: 8px !important; }
[style*="c-dark"] .section-head::before { color: var(--c-accent); }
@media (max-width: 1100px) { .section-split { grid-template-columns: 1fr; gap: 24px; } .section-head { position: static; } }

/* ---------- Dunkle Sektion (Green Ink) ---------- */
.section-dark { background: var(--c-ink-green); color: rgba(255,255,255,.82); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4, .section-dark h5, .section-dark h6, .section-dark strong { color: var(--c-white); }
.section-dark p, .section-dark .section-head p { color: rgba(255,255,255,.82); }
.section-dark .section-head::before, .section-dark .eyebrow { color: var(--c-accent); }
.section-dark .steps, .section-dark .feature-list, .section-dark .faq, .section-dark .feature-card-grid { border-top-color: rgba(255,255,255,.4); }
.section-dark .step p, .section-dark .feature-card p { color: rgba(255,255,255,.78); }
.section-dark .faq-item, .section-dark .feature-card, .section-dark .feature-list li { border-bottom-color: rgba(255,255,255,.18); }
.section-dark .faq-question, .section-dark .feature-list li { color: var(--c-white); }
.section-dark .faq-answer { color: rgba(255,255,255,.78); }
.section-dark .btn-outline-dark { color: var(--c-white); border-color: rgba(255,255,255,.7); }
.section-dark .btn-outline-dark:hover { background: var(--c-white); color: var(--c-dark); border-color: var(--c-white); }

/* ---------- App-Screenshot-Reihe: dunkle Bühne, Screens von unten angeschnitten, versetzte Höhen ---------- */
.screen-row { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: clamp(12px, 2vw, 24px); align-items: center; padding: clamp(32px, 5vw, 64px) clamp(20px, 4vw, 56px); background: var(--c-ink-green); }
.screen-row::before, .screen-row::after { content: ''; position: absolute; width: 18px; height: 18px; border: 1.5px solid var(--c-accent); z-index: 2; }
.screen-row::before { left: 16px; top: 16px; border-right: 0; border-bottom: 0; }
.screen-row::after { right: 16px; top: 16px; border-left: 0; border-bottom: 0; }
.screen-row img { width: 100%; height: auto; aspect-ratio: 510 / 1000; object-fit: cover; object-position: top; border: 1px solid rgba(255,255,255,.35); border-radius: 0 !important; box-shadow: none; filter: none; transition: transform .5s var(--ease); }
.screen-row img:nth-child(2n) { position: static; }
.screen-row img:hover { transform: translateY(-8px); }
@media (max-width: 760px) { .screen-row { grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* ---------- 08 Grafische Erweiterung ---------- */
/* Rastermotiv (per JS als Inline-SVG eingesetzt) */
.grid-motif { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.page-hero .grid-motif { z-index: 0; opacity: .9; }
.page-hero::before { z-index: 1; }
.hero-start { position: relative; overflow: hidden; }
.hero-start .grid-motif { -webkit-mask-image: linear-gradient(180deg, black 0%, black 55%, transparent 100%); mask-image: linear-gradient(180deg, black 0%, black 55%, transparent 100%); }
.hero-start > .container { position: relative; z-index: 1; }
/* Scroll-Fortschritt: Messlatte unter dem Header */
.scroll-progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: transparent; pointer-events: none; }
.scroll-progress .sp-fill { position: absolute; left: 0; top: 0; height: 1px; width: 0; background: var(--c-accent); }
.scroll-progress .sp-tick { position: absolute; left: 0; top: -6px; width: 1px; height: 13px; background: var(--c-dark); }
/* Fadenkreuz nur über Medien */
.product-hero-media, .hero-video-frame, .screen-row, .split > img, .card img, .app-card img, .post-hero-img, .team-photo-arch, .page-hero { cursor: crosshair; }
/* Einrasten: Eckmarken wachsen 14 -> 20 px */
.product-hero-media::before, .product-hero-media::after, .hero-video-frame::before, .hero-video-frame::after, .screen-row::before, .screen-row::after { transition: width .2s var(--ease), height .2s var(--ease); }
.product-hero-media:hover::before, .product-hero-media:hover::after, .hero-video-frame:hover::before, .hero-video-frame:hover::after, .screen-row:hover::before, .screen-row:hover::after { width: 22px; height: 22px; }
/* Bild-Annotationen: Messpunkt + Leader + Label (Werte aus Spezifikation) */
.product-hero-media { overflow: visible; }
.callout { position: absolute; width: 0; height: 0; z-index: 3; }
.callout .co-pt { position: absolute; left: -4px; top: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--c-accent); box-shadow: 0 0 0 3px rgba(22,51,38,.6); }
.co-lead { position: absolute; height: 1px; background: var(--c-accent); transform-origin: left center; z-index: 3; }
.callout-line { position: absolute; height: 1px; background: var(--c-accent); z-index: 3; }
.callout-label { position: absolute; transform: translateY(-50%); display: inline-flex; align-items: baseline; gap: 10px; background: var(--c-white); border: 1px solid var(--c-line); padding: 8px 10px; border-radius: var(--radius); white-space: nowrap; z-index: 4; }
.callout-label .co-k { font: 500 11px/1 var(--font-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--c-gray); }
.callout-label .co-v { font: 500 13px/1 var(--font-mono); color: var(--c-dark); }
@media (max-width: 1100px) { .callout, .co-lead, .callout-line, .callout-label { display: none; } }
.product-hero-media .callout-label { left: auto !important; right: 0; }
.product-hero-media .callout-line { width: calc(100% - var(--cl-left)) !important; }
@media (prefers-reduced-motion: reduce) { .product-hero-media:hover::before, .product-hero-media:hover::after, .hero-video-frame:hover::before, .hero-video-frame:hover::after { width: 18px; height: 18px; } }

/* Feldfoto in Zwei-Spalten-Sektionen: volle Spaltenbreite, 3:2, Eckmarken */
.field-photo { margin: 0; position: relative; width: 100%; aspect-ratio: 3 / 2; overflow: hidden; background: var(--c-bg-light); cursor: crosshair; }
.field-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.72) contrast(1.05); border-radius: 0 !important; }
.field-photo::before, .field-photo::after { content: ''; position: absolute; width: 16px; height: 16px; border: 1.5px solid var(--c-white); z-index: 2; transition: width .2s var(--ease), height .2s var(--ease); }
.field-photo::before { left: 14px; top: 14px; border-right: 0; border-bottom: 0; }
.field-photo::after { right: 14px; bottom: 14px; border-left: 0; border-top: 0; }
.field-photo:hover::before, .field-photo:hover::after { width: 22px; height: 22px; }
.field-photo-portrait { aspect-ratio: 4 / 5; max-width: 480px; margin: 0 auto; }
