/* =============================================================================
   neotec.hamburg — Site-Theme für BusinessOS.
   Treuer Port von neoCms `wwwroot/sites/neotec.css` (das seinerseits die echte
   website/neotec.hamburg/site.css portiert). Unterschied: dort waren die Styles
   auf die neoCms-Bausteine (cms-*) gemappt, hier auf die ATOME (bos-*) — die
   Seiten sind in BusinessOS aus core.section/grid/stack/text/link/list gebaut.

   Alles ist unter `.site-neotec` gescopt. Das ist nicht nur Hygiene: ga-theme.css
   wird auf JEDEM Host geladen und setzt `h1,h2,h3,h4 { color: var(--ga-ink) }` per
   Element-Selektor. Vererbte Farbe verliert dagegen — deshalb setzen die Regeln
   hier die Überschriftenfarbe selbst und mit Klassen-Spezifität.
   ============================================================================= */

.site-neotec {
    --brand: #0066cc;
    --brand-dark: #004a99;
    --accent: #00d4a8;
    --accent-bright: #00f0c8;
    --ink: #0a1124;
    --ink-soft: #424559;
    --muted: #6b7280;
    --line: #eceef2;
    --line-strong: #d0d4dc;
    --bg: #fff;
    --bg-alt: #f6f7fb;
    --bg-hero: radial-gradient(at 20% 30%, rgba(0, 102, 204, .08), transparent 60%),
               radial-gradient(at 80% 80%, rgba(0, 240, 200, .10), transparent 55%),
               #fbfbfd;
    --bg-dark-grad: linear-gradient(135deg, #0a1124 0%, #131a35 100%);
    --radius-card: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-btn: 10px;
    --shadow-card: 0 12px 32px rgba(0, 0, 0, .06);
    --shadow-cta: 0 6px 20px rgba(0, 102, 204, .3);
    --pad-x: clamp(20px, 4vw, 40px);
    --section-y: clamp(56px, 8vw, 96px);
    --container-max: 1200px;

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    background: var(--bg);
    color: var(--ink-soft);
    font-size: clamp(15px, .9vw + 13px, 16px);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ----- Basistypografie (Klassen-Spezifität schlägt ga-theme.css) ----- */
.site-neotec .bos-text { color: var(--ink-soft); margin: 0 0 1rem; }
.site-neotec .bos-text--title,
.site-neotec .bos-text--heading,
.site-neotec .bos-text--subheading { color: var(--ink); line-height: 1.2; margin-top: 0; font-weight: 700; }
.site-neotec .bos-text--title { font-size: clamp(1.85rem, 1.2rem + 3vw, 3.25rem); font-weight: 800; letter-spacing: -.5px; margin-bottom: 20px; }
.site-neotec .bos-text--heading { font-size: clamp(1.4rem, .9rem + 2vw, 2.25rem); letter-spacing: -.3px; margin-bottom: 16px; }
.site-neotec .bos-text--subheading { font-size: clamp(1.1rem, .5rem + .5vw, 1.25rem); margin-bottom: 12px; }
.site-neotec .bos-text--body { font-size: clamp(.98rem, .3vw + .9rem, 1.05rem); }
.site-neotec .bos-text--caption { color: var(--muted); font-size: .85rem; }
.site-neotec .bos-text--center { text-align: center; }
.site-neotec .bos-text--right { text-align: right; }

/* „Eyebrow" der Originalsite: kleine Kapitälchen-Zeile mit Leuchtpunkt davor. */
.site-neotec .bos-text--stat-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--ink); margin: 0 0 14px;
}
.site-neotec .bos-text--stat-label::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
    background: var(--accent); box-shadow: 0 0 10px var(--accent-bright);
}
.site-neotec .bos-text--center.bos-text--stat-label { display: flex; justify-content: center; }

.site-neotec .bos-text--stat-value {
    font-size: clamp(1.8rem, 1rem + 2.5vw, 2.5rem); font-weight: 800;
    color: var(--brand); line-height: 1; margin: 0;
}

/* ----- Bereiche ----- */
.site-neotec .bos-section { padding: var(--section-y) 0; }
.site-neotec .bos-section__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--pad-x); }
.site-neotec .bos-section--wide .bos-section__inner { max-width: 1320px; }
.site-neotec .bos-section--full .bos-section__inner { max-width: none; }
.site-neotec .bos-section--tone-light { background: var(--bg-alt); }

/* Dunkler Bereich = gerundete Box im Weißraum (nicht randlos), wie im Original. */
.site-neotec .bos-section--tone-dark { background: transparent; padding: 0 0 var(--section-y); }
.site-neotec .bos-section--tone-dark .bos-section__inner {
    background: var(--bg-dark-grad); color: #fff; border-radius: var(--radius-xl);
    padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 48px); text-align: center;
    max-width: var(--container-max);
}
.site-neotec .bos-section--tone-dark .bos-text--title,
.site-neotec .bos-section--tone-dark .bos-text--heading,
.site-neotec .bos-section--tone-dark .bos-text--subheading { color: #fff; }
.site-neotec .bos-section--tone-dark .bos-text--body { color: #fff; opacity: .92; }
.site-neotec .bos-section--tone-dark .bos-text--stat-label { color: #fff; }

/* Hero = erster Bereich einer Seite: eigener Verlaufshintergrund, Inhalt ZENTRIERT (wie im Original),
   dazu zwei weiche Farbkreise als Hintergrundakzent. */
.site-neotec .bos-section--tone-hero {
    background: var(--bg-hero); border-bottom: 1px solid var(--line);
    position: relative; overflow: hidden;
    padding: clamp(64px, 9vw, 100px) 0 clamp(56px, 8vw, 90px);
}
.site-neotec .bos-section--tone-hero::before,
.site-neotec .bos-section--tone-hero::after {
    content: ""; position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
}
.site-neotec .bos-section--tone-hero::before {
    width: 520px; height: 520px; top: -180px; right: -120px;
    background: radial-gradient(circle at 30% 30%, rgba(0, 102, 204, .15), rgba(0, 102, 204, 0) 70%);
}
.site-neotec .bos-section--tone-hero::after {
    width: 380px; height: 380px; bottom: -160px; left: -80px;
    background: radial-gradient(circle at 70% 70%, rgba(0, 212, 255, .12), rgba(0, 212, 255, 0) 70%);
}
.site-neotec .bos-section--tone-hero .bos-section__inner {
    position: relative; z-index: 1; max-width: 900px; text-align: center;
    animation: neotec-slideDown .5s ease-out;
}
.site-neotec .bos-section--tone-hero .bos-text--body {
    color: #555; max-width: 680px; margin-left: auto; margin-right: auto;
    font-size: clamp(1rem, .4vw + .95rem, 1.2rem);
}
/* Ein Hero kann auch mit h2 aufmachen (zweiter Aufmacher auf der Startseite) — dann trägt die
   Überschrift trotzdem die Hero-Größe, nicht die kleinere Abschnitts-Größe. */
.site-neotec .bos-section--tone-hero > .bos-section__inner > .bos-text--heading {
    font-size: clamp(1.85rem, 1.2rem + 3vw, 3.25rem); font-weight: 800;
    letter-spacing: -.5px; margin-bottom: 20px;
}

/* Eyebrow im Hero ist eine PILLE in normaler Schreibweise — nicht die versalisierte
   Abschnitts-Beschriftung. Beide sind im Markup dasselbe Atom, unterschieden wird über den Kontext. */
.site-neotec .bos-section--tone-hero > .bos-section__inner > .bos-text--stat-label {
    /* inline-flex, damit die Pille sich um ihren Text legt statt sich über die Breite zu strecken —
       die Zentrierung übernimmt das text-align des Bereichs. */
    display: inline-flex;
    background: rgba(10, 17, 36, .04); color: var(--ink);
    padding: 8px 16px 8px 12px; border: 1px solid rgba(10, 17, 36, .10);
    border-radius: 100px; font-size: 13px; font-weight: 600; letter-spacing: .3px;
    text-transform: none; margin-bottom: 24px;
}
.site-neotec .bos-section--tone-hero > .bos-section__inner > .bos-text--stat-label::before {
    width: 8px; height: 8px;
}

@keyframes neotec-slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }

/* Bildbühne („Jumbo"): heller Text auf dem abgedunkelten Bild — schlägt die tone-Regeln oben,
   deshalb hier NACH ihnen und mit derselben Spezifität plus der zusätzlichen Bild-Klasse. */
/* Höhe am SEITENVERHÄLTNIS DES BILDES ausgerichtet (1672×941 ≈ 1,78): ist die Bühne deutlich
   flacher als das Bild, beschneidet `cover` es seitlich — dann fällt die Wortmarke rechts heraus.
   57vw trifft das Verhältnis, 730px deckelt es auf großen Schirmen. */
.site-neotec .bos-section--image {
    border-bottom: 0; padding: clamp(72px, 10vw, 128px) 0;
    display: flex; align-items: center; min-height: clamp(420px, 57vw, 730px);
}
/* Der Inhalt nutzt die volle Containerbreite und steht LINKS — nicht die schmale, zentrierte
   Hero-Spalte der Unterseiten (deren Regel steht weiter oben und wird hier überschrieben).
   Auch die Farbkreise entfallen, das Foto ist der Hintergrund. */
.site-neotec .bos-section--image .bos-section__inner {
    max-width: var(--container-max); width: 100%; text-align: left; animation: none;
}
.site-neotec .bos-section--image::before,
.site-neotec .bos-section--image::after { display: none; }
.site-neotec .bos-section--image .bos-text--body { margin-left: 0; margin-right: 0; }

/* Die Textspalte bleibt schmal, damit sie nicht in die Wortmarke des Fotos läuft —
   die Überschrift bricht dadurch um, statt sich mit dem Bildmotiv zu überlagern. */
.site-neotec .bos-section--image .bos-text,
.site-neotec .bos-section--image .bos-richtext { max-width: 620px; }

/* Eyebrow auf dem Bild: dieselbe Pille, nur hell auf dunklem Grund. */
.site-neotec .bos-section--image > .bos-section__inner > .bos-text--stat-label {
    background: rgba(255, 255, 255, .10); color: #fff;
    border-color: rgba(255, 255, 255, .22);
}
.site-neotec .bos-section--image .bos-text--title,
.site-neotec .bos-section--image .bos-text--heading,
.site-neotec .bos-section--image .bos-text--subheading { color: #fff; }
.site-neotec .bos-section--image .bos-text--body { color: #fff; opacity: .92; }
.site-neotec .bos-section--image .bos-text--stat-label { color: #fff; }
.site-neotec .bos-section--image .bos-link--secondary { color: #fff; border-color: rgba(255, 255, 255, .45); }
.site-neotec .bos-section--image .bos-link--secondary:hover { background: rgba(255, 255, 255, .12); border-color: #fff; color: #fff; }

/* ----- Raster & Stapel ----- */
.site-neotec .bos-grid { display: grid; gap: clamp(20px, 2.5vw, 28px); }
.site-neotec .bos-stack { display: flex; flex-direction: column; }
.site-neotec .bos-stack--row { flex-direction: row; flex-wrap: wrap; align-items: center; }
.site-neotec .bos-stack--center { align-items: center; text-align: center; }

/* ----- Link / Button ----- */
.site-neotec .bos-link {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 26px; border-radius: var(--radius-btn); margin: 6px 8px 6px 0;
    font-size: 15px; font-weight: 600; min-height: 44px; text-decoration: none;
    border: 1.5px solid transparent; transition: all .2s;
}
.site-neotec .bos-link--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-cta); }
.site-neotec .bos-link--primary:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); }
.site-neotec .bos-link--secondary { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.site-neotec .bos-link--secondary:hover { background: #fff; border-color: var(--ink); color: var(--ink); }
.site-neotec .bos-link--plain {
    padding: 0; min-height: 0; margin: 0; border: 0; background: none;
    color: var(--brand); font-weight: 600;
}
.site-neotec .bos-link--plain:hover { color: var(--brand-dark); text-decoration: underline; }

/* Auf dunklem Grund kehrt sich der Hauptbutton um: WEISS mit dunkler Schrift — ein blauer Button
   auf dunkelblauem Band hätte kaum Kontrast. */
.site-neotec .bos-section--tone-dark .bos-link--primary { background: #fff; color: var(--ink); box-shadow: none; }
.site-neotec .bos-section--tone-dark .bos-link--primary:hover { background: rgba(255, 255, 255, .9); color: var(--ink); }
.site-neotec .bos-section--tone-dark .bos-link--secondary { color: #fff; border-color: rgba(255, 255, 255, .4); }
.site-neotec .bos-section--tone-dark .bos-link--secondary:hover { background: rgba(255, 255, 255, .05); border-color: #fff; color: #fff; }
.site-neotec .bos-section--tone-dark .bos-text--body { color: rgba(255, 255, 255, .75); opacity: 1; }

/* ----- Listen ----- */
.site-neotec .bos-list { margin: 0 0 1rem; padding: 0; list-style: none; }
.site-neotec .bos-list__item { padding: 6px 0 6px 24px; position: relative; color: var(--ink-soft); font-size: .95rem; }
.site-neotec .bos-list--bullet .bos-list__item::before { content: "•"; position: absolute; left: 4px; color: var(--brand); font-weight: 700; }
.site-neotec .bos-list--check .bos-list__item::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.site-neotec .bos-list--plain .bos-list__item { padding-left: 0; }

/* Schlagwort-Chips (Branchen): zentriert, umbrechend, jeweils mit Leuchtpunkt. */
.site-neotec .bos-list--pills { justify-content: center; gap: 12px; max-width: 920px; margin: 0 auto; }
.site-neotec .bos-list--pills > .bos-list__item {
    padding: 10px 20px; background: #fff; border: 1px solid var(--line); border-radius: 100px;
    font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.2; transition: all .2s;
}
.site-neotec .bos-list--pills > .bos-list__item::before {
    content: ""; position: static; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
    background: var(--accent); box-shadow: 0 0 8px var(--accent-bright); margin-right: 10px;
}
.site-neotec .bos-list--pills > .bos-list__item:hover {
    transform: translateY(-1px); border-color: var(--brand); box-shadow: 0 4px 12px rgba(0, 102, 204, .10);
}
.site-neotec ol.bos-list { counter-reset: bos-li; }
.site-neotec ol.bos-list .bos-list__item::before { counter-increment: bos-li; content: counter(bos-li) "."; position: absolute; left: 0; color: var(--brand); font-weight: 700; }

/* ----- Fließtext (formatiert) — Artikel-/Rechtsseiten ----- */
/* Zentrierte Lesespalte wie im Original (dort 880px), NICHT über die volle Bereichsbreite. */
.site-neotec .bos-richtext { color: var(--ink-soft); line-height: 1.6; }
.site-neotec .bos-richtext--prose { max-width: 880px; margin-left: auto; margin-right: auto; }
.site-neotec .bos-richtext h2 { font-size: clamp(1.4rem, .9rem + 2vw, 2.25rem); color: var(--ink); margin: 40px 0 .7rem; letter-spacing: -.3px; }
.site-neotec .bos-richtext h3 { font-size: clamp(1.1rem, .5rem + .5vw, 1.25rem); color: var(--ink); margin: 28px 0 .5rem; }
.site-neotec .bos-richtext h2:first-child, .site-neotec .bos-richtext h3:first-child { margin-top: 0; }
.site-neotec .bos-richtext p { margin: 0 0 1rem; }
.site-neotec .bos-richtext strong { color: var(--ink); font-weight: 700; }
.site-neotec .bos-richtext a { color: var(--brand); }
.site-neotec .bos-richtext a:hover { color: var(--brand-dark); }
/* Fließtext-Listen tragen normale Aufzählungspunkte — die Akzent-Pfeile bleiben den
   Merkmalslisten in Produktkarten vorbehalten, sonst verliert das Zeichen seine Bedeutung. */
.site-neotec .bos-richtext ul { margin: .5rem 0 1rem; padding-left: 1.2rem; list-style: disc; }
.site-neotec .bos-richtext ol { margin: .5rem 0 1rem; padding-left: 1.4rem; }
.site-neotec .bos-richtext li { margin: .3rem 0; padding: 0; }
.site-neotec .bos-richtext code {
    background: #eef1f4; padding: .1rem .4rem; border-radius: 4px; font-size: .9em;
}

/* ----- Karte (core.stack mit Darstellung „card") ----- */
.site-neotec .bos-stack--card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card);
    padding: clamp(24px, 3vw, 32px); transition: all .25s; height: 100%;
}
.site-neotec .bos-stack--card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: #d8dde5; }
.site-neotec .bos-stack--card .bos-text--subheading { margin-bottom: 12px; }
.site-neotec .bos-stack--card .bos-text--body { color: #555; margin-bottom: 20px; }
.site-neotec .bos-stack--card .bos-link--plain { margin-top: auto; align-self: flex-start; }
.site-neotec .bos-stack--card > .bos-link { align-self: flex-start; }
.site-neotec .bos-stack--card .bos-stack--row { margin-top: auto; padding-top: 8px; }

/* Icon-Kachel der Service-Karte: erste Bildunterschrift wird zum dunklen Glyphen-Quadrat. */
.site-neotec .bos-stack--card > .bos-text--caption:first-child {
    width: 52px; height: 52px; border-radius: 14px; background: var(--ink);
    color: var(--accent-bright); display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 700; margin: 0 0 22px; flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(10, 17, 36, .18), inset 0 1px 0 rgba(255, 255, 255, .08);
}

/* Produkt-Karte: großzügiger, mit Pfeil-Liste statt Punkten. */
.site-neotec .bos-stack--card .bos-list--check .bos-list__item { padding-left: 24px; }

/* ----- Reiter (core.tabs) — Aussehen; die Schaltlogik steht in site.css ----- */
.site-neotec .bos-tabs { max-width: 900px; margin: 0 auto; }
.site-neotec .bos-tabs__chips { justify-content: center; margin-bottom: 28px; }
.site-neotec .bos-tabs__chip {
    display: inline-flex; align-items: center; padding: 10px 20px;
    background: #fff; border: 1px solid var(--line); border-radius: 100px;
    font-size: 14px; font-weight: 600; color: var(--ink); transition: all .2s; line-height: 1.2;
}
.site-neotec .bos-tabs__chip:hover { border-color: var(--brand); color: var(--brand); }

/* Aktiver Chip: dieselbe Selektor-Paarung wie das Umschalten der Panels. */
.site-neotec .bos-tabs__radio:nth-of-type(1):checked ~ .bos-tabs__chips > .bos-tabs__chip:nth-child(1),
.site-neotec .bos-tabs__radio:nth-of-type(2):checked ~ .bos-tabs__chips > .bos-tabs__chip:nth-child(2),
.site-neotec .bos-tabs__radio:nth-of-type(3):checked ~ .bos-tabs__chips > .bos-tabs__chip:nth-child(3),
.site-neotec .bos-tabs__radio:nth-of-type(4):checked ~ .bos-tabs__chips > .bos-tabs__chip:nth-child(4),
.site-neotec .bos-tabs__radio:nth-of-type(5):checked ~ .bos-tabs__chips > .bos-tabs__chip:nth-child(5),
.site-neotec .bos-tabs__radio:nth-of-type(6):checked ~ .bos-tabs__chips > .bos-tabs__chip:nth-child(6) {
    background: var(--ink); border-color: var(--ink); color: #fff;
    box-shadow: 0 6px 18px rgba(10, 17, 36, .18);
}

.site-neotec .bos-tabs__panel .bos-stack--card { background: #fff; }
/* „Ausgangslage → Ziel" nebeneinander, mit Pfeil dazwischen (wie im Original). */
.site-neotec .bos-tabs__panel .bos-grid--cols-2 { align-items: stretch; }

/* ----- Bild ----- */
.site-neotec .bos-image { margin: 0; }
.site-neotec .bos-image img { max-width: 100%; height: auto; border-radius: var(--radius-card); display: block; }
.site-neotec .bos-image__cap { display: block; margin-top: .5rem; color: var(--muted); font-size: .85rem; }

/* ----- Newsletter-Baustein (site.newsletter) -----
   Die Farben zieht der Baustein schon selbst aus den Tokens oben (site.css arbeitet mit
   var(--brand)/var(--ink)/…). Hier kommt dazu, was Tokens nicht abdecken: Maße, Typografie und
   der Knopf im Site-Look. Als Band SOLL er die volle Breite behalten — gerundet wird nur die
   Innenfläche, wie beim dunklen Bereich (bos-section--tone-dark). */
.site-neotec .nsite-newsletter { padding: var(--section-y) var(--pad-x); }
.site-neotec .nsite-newsletter__label { font-size: 12px; letter-spacing: 2px; }
.site-neotec .nsite-newsletter__h {
    font-size: clamp(1.4rem, .9rem + 2vw, 2.25rem); font-weight: 700; letter-spacing: -.3px;
}
.site-neotec .nsite-newsletter__intro { font-size: clamp(.98rem, .3vw + .9rem, 1.05rem); }
.site-neotec .nsite-newsletter__field input { padding: 12px 16px; }
.site-neotec .nsite-newsletter__field input:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
/* Knöpfe der nsite-Bausteine (Newsletter, Kontakt, Suche) im Site-Look — Maße und Marke wie
   bos-link--primary, damit ein Formular-Knopf nicht neben den Knöpfen der Seite als Fremdkörper steht.
   Ohne diese Regeln zieht site.css sein generisches --ns-accent (#2b59ff) statt der Marke (#0066cc). */
.site-neotec .nsite-btn {
    padding: 12px 26px; min-height: 44px; border-radius: var(--radius-btn);
    font-size: 15px; font-weight: 600; transition: all .2s;
}
.site-neotec .nsite-btn--light { background: var(--brand); color: #fff; box-shadow: var(--shadow-cta); }
.site-neotec .nsite-btn--light:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); }
/* Auf den farbigen Bändern kehrt sich der Knopf um — weiß mit dunkler Schrift, dieselbe Regel wie bei
   bos-section--tone-dark. Ein Marken-Knopf auf dem Markenband hätte kaum Kontrast. */
.site-neotec .nsite-newsletter--accent .nsite-btn,
.site-neotec .nsite-newsletter--dark .nsite-btn { background: #fff; color: var(--ink); }
.site-neotec .nsite-newsletter--accent .nsite-btn:hover,
.site-neotec .nsite-newsletter--dark .nsite-btn:hover { background: rgba(255, 255, 255, .9); color: var(--ink); }
.site-neotec .nsite-newsletter--light { border-block: 1px solid var(--line); }

/* ----- Kontaktformular (site.contact) -----
   Steht im Seed auf Start- und Migrationsseite, war aber als einziger Baustein nie gethemt: generische
   Schrift, 10-px-Ecken aus site.css und ein Knopf im Fremdblau. Wie beim Newsletter kommt hier nur
   dazu, was Tokens nicht abdecken — Maße, Typografie, Fokus. */
.site-neotec .nsite-contact { padding: var(--section-y) var(--pad-x); }
.site-neotec .nsite-contact .nsite-section__h {
    color: var(--ink); font-size: clamp(1.4rem, .9rem + 2vw, 2.25rem);
    font-weight: 700; letter-spacing: -.3px;
}
.site-neotec .nsite-contact__intro { font-size: clamp(.98rem, .3vw + .9rem, 1.05rem); }
.site-neotec .nsite-contact__field span { font-size: 12px; font-weight: 700; letter-spacing: .3px; }
.site-neotec .nsite-contact__field input,
.site-neotec .nsite-contact__field textarea { padding: 12px 16px; }
.site-neotec .nsite-contact__field input:focus-visible,
.site-neotec .nsite-contact__field textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.site-neotec .nsite-contact__ok { box-shadow: var(--shadow-card); }

/* Das Suchfeld zieht mit: seit die nsite-Knöpfe die Marken-Ecke (10 px) tragen, stünde daneben sonst
   ein Pillen-Eingabefeld aus site.css. */
.site-neotec .nsite-search__input {
    border-radius: var(--radius-btn); border-color: var(--line-strong); padding: 12px 16px;
}
.site-neotec .nsite-search__input:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ===== Chrome: Kopf & Fuß ===== */
.site-neotec .nsite-nav {
    position: sticky; top: 0; z-index: 50;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    min-height: 68px; padding: 0 var(--pad-x);
    background: rgba(255, 255, 255, .88); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.site-neotec .nsite-brand {
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 1.1rem; color: var(--ink); text-decoration: none; letter-spacing: -.3px;
}
.site-neotec .nsite-brand__logo { height: 40px; width: auto; display: block; }
.site-neotec .nsite-brand span { color: var(--ink); }
.site-neotec .nsite-nav__links { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.site-neotec .nsite-nav__links a {
    padding: 8px 14px; border-radius: 8px; font-size: 15px; font-weight: 500;
    color: var(--ink-soft); text-decoration: none; transition: color .15s, background .15s;
}
.site-neotec .nsite-nav__links a:hover { color: var(--brand); background: var(--bg-alt); }
.site-neotec .nsite-nav__cta {
    padding: 10px 20px; border-radius: var(--radius-btn); background: var(--brand); color: #fff;
    font-size: 14px; font-weight: 600; text-decoration: none; white-space: nowrap;
}
.site-neotec .nsite-nav__cta:hover { background: var(--brand-dark); color: #fff; }

.site-neotec .nsite-main { flex: 1; }

/* `display:block` und `text-align:left` setzen die zentrierte Basis-Regel aus site.css zurück —
   dort ist der Fuß eine schmale, mittige Zeile, hier ein mehrspaltiger dunkler Block. */
.site-neotec .nsite-footer {
    display: block; text-align: left;
    background: var(--ink); color: rgba(255, 255, 255, .7);
    padding: clamp(40px, 6vw, 64px) var(--pad-x) 24px; font-size: 14px;
}
.site-neotec .nsite-footer__inner {
    max-width: var(--container-max); margin: 0 auto;
    display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between;
    gap: clamp(28px, 4vw, 48px); padding: 0 0 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.site-neotec .nsite-footer__brand { display: flex; flex-direction: column; gap: 12px; }
.site-neotec .nsite-footer__name { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -.5px; }
.site-neotec .nsite-footer__tag,
.site-neotec .nsite-footer__addr { color: rgba(255, 255, 255, .55); font-size: 13px; line-height: 1.6; margin: 0; }
.site-neotec .nsite-footer__nav { display: flex; flex-direction: column; gap: 10px; }
.site-neotec .nsite-footer a { color: rgba(255, 255, 255, .7); text-decoration: none; transition: color .15s; }
.site-neotec .nsite-footer a:hover { color: #fff; }
.site-neotec .nsite-footer__nav a { padding: 4px 0; }
.site-neotec .nsite-footer__legal {
    flex-basis: 100%; margin-top: 16px; display: flex; flex-wrap: wrap; gap: 20px; font-size: 13px;
}
.site-neotec .nsite-footer__legal a { color: rgba(255, 255, 255, .55); }
.site-neotec .nsite-footer__bar {
    max-width: var(--container-max); margin: 24px auto 0;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    text-align: center; font-size: 12px; color: rgba(255, 255, 255, .4);
}

/* ===== Umbrüche (aus dem Original übernommen) ===== */
@media (max-width: 900px) {
    /* Kennzahlen und dreispaltige Karten-Raster brechen früher als das generische Raster. */
    .site-neotec .bos-grid--cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .site-neotec .nsite-nav { flex-wrap: wrap; padding-top: 10px; padding-bottom: 10px; }
    .site-neotec .bos-section--tone-dark .bos-section__inner { border-radius: var(--radius-lg); }
}
@media (max-width: 600px) {
    .site-neotec .bos-grid--cols-2, .site-neotec .bos-grid--cols-3 { grid-template-columns: 1fr; }
    /* Buttons untereinander statt gequetscht nebeneinander. */
    .site-neotec .bos-link { display: flex; width: 100%; margin-left: 0; margin-right: 0; }
    .site-neotec .bos-link--plain { display: inline-flex; width: auto; }
    .site-neotec .nsite-footer__inner { flex-direction: column; }
}

/* Wer Bewegung reduziert haben will, bekommt keine — betrifft Hero-Einblendung und Leuchtpunkte. */
@media (prefers-reduced-motion: reduce) {
    .site-neotec .bos-section--tone-hero .bos-section__inner { animation: none; }
    .site-neotec .bos-link, .site-neotec .bos-stack--card, .site-neotec .bos-tabs__chip,
    .site-neotec .nsite-btn { transition: none; }
    .site-neotec .bos-stack--card:hover, .site-neotec .bos-link--primary:hover,
    .site-neotec .nsite-btn--light:hover { transform: none; }
}
