/*
 * NGW SynedatSite V1
 * Server-side Fluid foundation styles.
 * These styles are prepared in Step 183 and activated in a later step.
 */

:root {
  --ngw-bg: #07111f;
  --ngw-bg-2: #0d1c33;
  --ngw-surface: rgba(255, 255, 255, 0.08);
  --ngw-surface-strong: rgba(255, 255, 255, 0.14);
  --ngw-text: #f8fbff;
  --ngw-muted: rgba(248, 251, 255, 0.76);
  --ngw-line: rgba(255, 255, 255, 0.16);
  --ngw-accent: #28d8ff;
  --ngw-accent-2: #00f0a8;
  --ngw-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --ngw-radius-lg: 28px;
  --ngw-radius-md: 18px;
  --ngw-container: min(1180px, calc(100vw - 40px));
}

html.ngw-site-active,
body.ngw-site-design {
  background: var(--ngw-bg);
  color: var(--ngw-text);
}

body.ngw-site-design {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.ngw-page-shell {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 10%, rgba(40, 216, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 82% 16%, rgba(0, 240, 168, 0.16), transparent 30rem),
    linear-gradient(145deg, var(--ngw-bg), var(--ngw-bg-2));
}

.ngw-page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 74%);
}

.ngw-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--ngw-line);
  backdrop-filter: blur(22px);
  background: rgba(7, 17, 31, 0.72);
}

.ngw-site-header__inner {
  width: var(--ngw-container);
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.ngw-site-header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.ngw-site-header__logo {
  display: block;
  width: 178px;
  max-width: 44vw;
  height: auto;
}

.ngw-site-header__nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.ngw-site-header__nav a,
.ngw-site-footer a {
  color: var(--ngw-muted);
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease;
}

.ngw-site-header__nav a:hover,
.ngw-site-footer a:hover {
  color: var(--ngw-text);
}

.ngw-site-header__cta,
.ngw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--ngw-line);
  color: var(--ngw-text);
  text-decoration: none;
  font-weight: 650;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.ngw-site-header__cta:hover,
.ngw-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.34);
}

.ngw-button--primary {
  border-color: transparent;
  color: #06111f;
  background: linear-gradient(135deg, var(--ngw-accent), var(--ngw-accent-2));
  box-shadow: 0 16px 42px rgba(0, 240, 168, 0.22);
}

.ngw-hero {
  width: var(--ngw-container);
  margin: 0 auto;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 58px;
  align-items: center;
  padding: 72px 0 86px;
}

.ngw-hero__eyebrow,
.ngw-section-kicker {
  margin: 0 0 18px;
  color: var(--ngw-accent-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 800;
}

.ngw-hero__title {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3.0rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.ngw-hero__title span {
  background: linear-gradient(135deg, var(--ngw-text), var(--ngw-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ngw-hero__lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--ngw-muted);
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  line-height: 1.6;
}

.ngw-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.ngw-hero__visual {
  position: relative;
  min-height: 520px;
}

.ngw-hero__orb {
  position: absolute;
  inset: 8% 8% auto auto;
  width: min(420px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.9), transparent 0.5rem),
    radial-gradient(circle at 42% 36%, var(--ngw-accent), transparent 10rem),
    radial-gradient(circle at 60% 64%, var(--ngw-accent-2), transparent 11rem),
    rgba(255, 255, 255, 0.05);
  filter: saturate(1.1);
  box-shadow: var(--ngw-shadow);
}

.ngw-hero-card {
  position: absolute;
  max-width: 275px;
  padding: 22px;
  border-radius: var(--ngw-radius-md);
  border: 1px solid var(--ngw-line);
  background: var(--ngw-surface);
  box-shadow: var(--ngw-shadow);
  backdrop-filter: blur(18px);
}

.ngw-hero-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.ngw-hero-card span {
  color: var(--ngw-muted);
  line-height: 1.5;
}

.ngw-hero-card--primary {
  left: 0;
  top: 20%;
}

.ngw-hero-card--secondary {
  right: 0;
  bottom: 16%;
}

.ngw-cta-band {
  width: var(--ngw-container);
  margin: 0 auto;
  padding: 24px 0 84px;
}

.ngw-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: var(--ngw-radius-lg);
  border: 1px solid var(--ngw-line);
  background: var(--ngw-surface-strong);
  box-shadow: var(--ngw-shadow);
}

.ngw-cta-band h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.ngw-cta-band p {
  margin: 12px 0 0;
  max-width: 700px;
  color: var(--ngw-muted);
  line-height: 1.6;
}

.ngw-site-footer {
  border-top: 1px solid var(--ngw-line);
  background: rgba(4, 10, 20, 0.58);
}

.ngw-site-footer__inner {
  width: var(--ngw-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(0, 1.3fr);
  gap: 58px;
  padding: 58px 0 42px;
}

.ngw-site-footer__logo {
  width: 160px;
  max-width: 70%;
  height: auto;
}

.ngw-site-footer__brand p {
  margin: 20px 0 0;
  max-width: 380px;
  color: var(--ngw-muted);
  line-height: 1.6;
}

.ngw-site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.ngw-site-footer nav {
  display: grid;
  gap: 12px;
}

.ngw-site-footer strong {
  margin-bottom: 8px;
}

.ngw-site-footer__bottom {
  width: var(--ngw-container);
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid var(--ngw-line);
  color: rgba(248, 251, 255, 0.58);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .ngw-site-header__inner {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .ngw-site-header__nav {
    margin-left: 0;
    flex-wrap: wrap;
  }

  .ngw-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .ngw-hero__visual {
    min-height: 420px;
  }

  .ngw-cta-band__inner,
  .ngw-site-footer__inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .ngw-site-footer__columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --ngw-container: min(100vw - 28px, 1180px);
  }

  .ngw-site-header__nav {
    display: none;
  }

  .ngw-site-header__logo {
    width: 148px;
  }

  .ngw-hero__visual {
    display: none;
  }

  .ngw-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ngw-cta-band__inner {
    padding: 24px;
  }
}

/* STEP191 NGW V1 editable TYPO3 content elements */
.ngw-content-section {
  width: var(--ngw-container);
  margin: 0 auto;
  padding: 32px 0 84px;
  display: grid;
  gap: 24px;
}

.ngw-content-section .frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ngw-line);
  border-radius: var(--ngw-radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
  box-shadow: var(--ngw-shadow);
  padding: clamp(24px, 4vw, 42px);
}

.ngw-content-section .frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 0%, rgba(40, 216, 255, 0.16), transparent 24rem),
    radial-gradient(circle at 90% 20%, rgba(0, 240, 168, 0.12), transparent 22rem);
}

.ngw-content-section .frame > * {
  position: relative;
  z-index: 1;
}

.ngw-content-section h1,
.ngw-content-section h2,
.ngw-content-section h3,
.ngw-content-section .header,
.ngw-content-section .ce-headline {
  margin-top: 0;
  color: var(--ngw-text);
  letter-spacing: -0.035em;
}

.ngw-content-section h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
}

.ngw-content-section h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.16;
}

.ngw-content-section p,
.ngw-content-section li {
  color: var(--ngw-muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.ngw-content-section ul {
  margin: 18px 0 0;
  padding-left: 1.25rem;
}

.ngw-content-section li + li {
  margin-top: 0.65rem;
}

.ngw-content-section strong {
  color: var(--ngw-text);
}

.ngw-content-section a {
  color: var(--ngw-accent);
}

@media (min-width: 860px) {
  .ngw-content-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ngw-content-section .frame:first-child,
  .ngw-content-section .frame:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .ngw-content-section {
    padding-top: 18px;
  }

  .ngw-content-section .frame {
    padding: 24px;
  }
}
/* END STEP191 NGW V1 editable TYPO3 content elements */

/* STEP203 NGW V1 nested Bootstrap frame display fix */
.ngw-content-section {
  align-items: stretch;
}

.ngw-content-section > .frame {
  min-width: 0;
}

/*
 * TYPO3/Bootstrap Package can render nested .frame wrappers inside one content element.
 * STEP191 intentionally styles the outer editable content elements as cards.
 * This reset prevents inner technical wrappers from becoming cards inside cards.
 */
.ngw-content-section .frame .frame {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.ngw-content-section .frame .frame::before {
  content: none;
  display: none;
}

.ngw-content-section .frame .frame > * {
  position: static;
  z-index: auto;
}

.ngw-content-section .frame .frame:first-child,
.ngw-content-section .frame .frame:last-child {
  grid-column: auto;
}

.ngw-content-section .frame .frame + .frame {
  margin-top: 0;
}

.ngw-content-section .ce-bodytext > p:empty,
.ngw-content-section .ce-bodytext > p:first-child:empty,
.ngw-content-section .frame > p:empty {
  display: none;
}

.ngw-content-section .frame-header,
.ngw-content-section .ce-header {
  margin-bottom: 1rem;
}

.ngw-content-section .frame-type-text,
.ngw-content-section .frame-type-texticon {
  min-width: 0;
}
/* END STEP203 NGW V1 nested Bootstrap frame display fix */


/* STEP206 NGW V1 Bootstrap content layout wrapper fix */
body.ngw-site-design .ngw-content-section .frame > .container,
body.ngw-site-design .ngw-content-section .frame > .container-fluid,
body.ngw-site-design .ngw-content-section .frame .ce-bodytext > .container,
body.ngw-site-design .ngw-content-section .frame .ce-bodytext > .container-fluid {
  width: 100% !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.ngw-site-design .ngw-content-section .frame .row {
  display: block !important;
  flex-wrap: nowrap !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.ngw-site-design .ngw-content-section .frame [class^="col"],
body.ngw-site-design .ngw-content-section .frame [class*=" col-"] {
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.ngw-site-design .ngw-content-section .frame .frame-header,
body.ngw-site-design .ngw-content-section .frame .ce-header {
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
}

body.ngw-site-design .ngw-content-section .frame .ce-bodytext > :first-child {
  margin-top: 0 !important;
}

body.ngw-site-design .ngw-content-section .frame .ce-bodytext > :last-child {
  margin-bottom: 0 !important;
}

body.ngw-site-design .ngw-content-section .frame p:empty {
  display: none !important;
}

body.ngw-site-design .ngw-content-section .frame img {
  max-width: 100%;
  height: auto;
}
/* END STEP206 NGW V1 Bootstrap content layout wrapper fix */

/* STEP207 NGW V1 Bootstrap Package frame wrapper fix */
body.ngw-site-design .ngw-content-section .frame > .frame-group-container,
body.ngw-site-design .ngw-content-section .frame .frame-group-inner,
body.ngw-site-design .ngw-content-section .frame .frame-container,
body.ngw-site-design .ngw-content-section .frame .frame-container-default,
body.ngw-site-design .ngw-content-section .frame .frame-inner {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.ngw-site-design .ngw-content-section .frame .frame-group-container::before,
body.ngw-site-design .ngw-content-section .frame .frame-group-inner::before,
body.ngw-site-design .ngw-content-section .frame .frame-container::before,
body.ngw-site-design .ngw-content-section .frame .frame-inner::before {
  content: none !important;
  display: none !important;
}

body.ngw-site-design .ngw-content-section .frame .frame-header {
  margin: 0 0 1rem 0 !important;
  padding: 0 !important;
}

body.ngw-site-design .ngw-content-section .frame .frame-header > * {
  margin-top: 0 !important;
}

body.ngw-site-design .ngw-content-section .frame .ce-bodytext,
body.ngw-site-design .ngw-content-section .frame .ce-textpic,
body.ngw-site-design .ngw-content-section .frame .ce-textpic-text {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

body.ngw-site-design .ngw-content-section .frame .ce-bodytext > :first-child {
  margin-top: 0 !important;
}

body.ngw-site-design .ngw-content-section .frame .ce-bodytext > :last-child {
  margin-bottom: 0 !important;
}

body.ngw-site-design .ngw-content-section .frame p:empty {
  display: none !important;
}

body.ngw-site-design .ngw-content-section .frame ul,
body.ngw-site-design .ngw-content-section .frame ol {
  max-width: none !important;
}

body.ngw-site-design .ngw-content-section .frame img {
  max-width: 100% !important;
  height: auto !important;
}
/* END STEP207 NGW V1 Bootstrap Package frame wrapper fix */

/* STEP208 NGW V1 content card grid hard wrapper flattening */
body.ngw-site-design .ngw-content-section > .frame {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
}

body.ngw-site-design .ngw-content-section > .frame > .frame-group-container,
body.ngw-site-design .ngw-content-section > .frame .frame-group-inner,
body.ngw-site-design .ngw-content-section > .frame .frame-container,
body.ngw-site-design .ngw-content-section > .frame .frame-inner {
  display: contents !important;
}

body.ngw-site-design .ngw-content-section > .frame .frame-header {
  display: block !important;
  width: 100% !important;
}

body.ngw-site-design .ngw-content-section > .frame .ce-bodytext,
body.ngw-site-design .ngw-content-section > .frame .ce-textpic,
body.ngw-site-design .ngw-content-section > .frame .ce-textpic-text {
  display: block !important;
  width: 100% !important;
}

body.ngw-site-design .ngw-content-section > .frame:first-child,
body.ngw-site-design .ngw-content-section > .frame:last-child {
  grid-column: 1 / -1 !important;
}
/* END STEP208 NGW V1 content card grid hard wrapper flattening */

/* STEP212 NGW V1 target design foundation */
:root {
  --ngw-target-ink: #0b2433;
  --ngw-target-muted: #5d7180;
  --ngw-target-line: #d9e5eb;
  --ngw-target-bg: #f4f8fb;
  --ngw-target-card: #ffffff;
  --ngw-target-teal: #007d83;
  --ngw-target-teal-dark: #005f66;
  --ngw-target-deep: #062a38;
  --ngw-target-shadow: 0 18px 45px rgba(9, 38, 55, 0.12);
}

html.ngw-target-design,
html.ngw-target-design body.ngw-site-design,
body.ngw-site-design.ngw-target-design {
  background: var(--ngw-target-bg) !important;
  color: var(--ngw-target-ink) !important;
}

html.ngw-target-design body.ngw-site-design .ngw-page-shell,
body.ngw-site-design.ngw-target-design .ngw-page-shell {
  background:
    radial-gradient(circle at 82% 9%, rgba(0, 125, 131, 0.14), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 58%, #eef6f8 100%) !important;
  color: var(--ngw-target-ink) !important;
}

html.ngw-target-design body.ngw-site-design .ngw-header,
html.ngw-target-design body.ngw-site-design .ngw-site-header,
body.ngw-site-design.ngw-target-design .ngw-header,
body.ngw-site-design.ngw-target-design .ngw-site-header {
  background: rgba(255, 255, 255, 0.92) !important;
  border-bottom: 1px solid rgba(10, 52, 68, 0.08) !important;
  color: var(--ngw-target-ink) !important;
  backdrop-filter: blur(14px);
}

html.ngw-target-design body.ngw-site-design .ngw-header a,
html.ngw-target-design body.ngw-site-design .ngw-site-header a,
body.ngw-site-design.ngw-target-design .ngw-header a,
body.ngw-site-design.ngw-target-design .ngw-site-header a {
  color: var(--ngw-target-ink) !important;
}

html.ngw-target-design body.ngw-site-design .ngw-hero,
body.ngw-site-design.ngw-target-design .ngw-hero {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: clamp(2rem, 4vw, 4.8rem) clamp(1rem, 3vw, 2rem) clamp(1.4rem, 3vw, 2.8rem) !important;
  color: var(--ngw-target-ink) !important;
}

html.ngw-target-design body.ngw-site-design .ngw-hero__eyebrow,
body.ngw-site-design.ngw-target-design .ngw-hero__eyebrow {
  color: var(--ngw-target-teal) !important;
  letter-spacing: 0.08em !important;
  font-weight: 800 !important;
}

html.ngw-target-design body.ngw-site-design .ngw-hero h1,
html.ngw-target-design body.ngw-site-design .ngw-hero__title,
body.ngw-site-design.ngw-target-design .ngw-hero h1,
body.ngw-site-design.ngw-target-design .ngw-hero__title {
  color: var(--ngw-target-ink) !important;
  font-weight: 850 !important;
  letter-spacing: -0.055em !important;
  line-height: 0.98 !important;
  max-width: 12ch !important;
}

html.ngw-target-design body.ngw-site-design .ngw-hero p,
html.ngw-target-design body.ngw-site-design .ngw-hero__copy,
body.ngw-site-design.ngw-target-design .ngw-hero p,
body.ngw-site-design.ngw-target-design .ngw-hero__copy {
  color: var(--ngw-target-muted) !important;
}

html.ngw-target-design body.ngw-site-design .ngw-button,
html.ngw-target-design body.ngw-site-design .btn-primary,
body.ngw-site-design.ngw-target-design .ngw-button,
body.ngw-site-design.ngw-target-design .btn-primary {
  border-radius: 0.45rem !important;
  background: var(--ngw-target-teal) !important;
  border-color: var(--ngw-target-teal) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 26px rgba(0, 125, 131, 0.18) !important;
}

html.ngw-target-design body.ngw-site-design .ngw-button:hover,
html.ngw-target-design body.ngw-site-design .btn-primary:hover,
body.ngw-site-design.ngw-target-design .ngw-button:hover,
body.ngw-site-design.ngw-target-design .btn-primary:hover {
  background: var(--ngw-target-teal-dark) !important;
  border-color: var(--ngw-target-teal-dark) !important;
}

html.ngw-target-design body.ngw-site-design .ngw-content-section,
body.ngw-site-design.ngw-target-design .ngw-content-section {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: clamp(1.5rem, 3vw, 3rem) clamp(1rem, 3vw, 2rem) !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1rem !important;
}

html.ngw-target-design body.ngw-site-design .ngw-content-section > .frame,
body.ngw-site-design.ngw-target-design .ngw-content-section > .frame {
  background: var(--ngw-target-card) !important;
  border: 1px solid var(--ngw-target-line) !important;
  border-radius: 0.9rem !important;
  color: var(--ngw-target-ink) !important;
  box-shadow: 0 10px 28px rgba(9, 38, 55, 0.06) !important;
  padding: clamp(1rem, 2vw, 1.35rem) !important;
}

html.ngw-target-design body.ngw-site-design .ngw-content-section > .frame:first-child,
body.ngw-site-design.ngw-target-design .ngw-content-section > .frame:first-child {
  grid-column: 1 / -1 !important;
  background: linear-gradient(135deg, rgba(0, 125, 131, 0.10), #ffffff 48%, rgba(8, 43, 57, 0.05)) !important;
  box-shadow: var(--ngw-target-shadow) !important;
}

html.ngw-target-design body.ngw-site-design .ngw-content-section > .frame:last-child,
body.ngw-site-design.ngw-target-design .ngw-content-section > .frame:last-child {
  grid-column: 1 / -1 !important;
  background: var(--ngw-target-deep) !important;
  color: #ffffff !important;
}

html.ngw-target-design body.ngw-site-design .ngw-content-section > .frame:last-child *,
body.ngw-site-design.ngw-target-design .ngw-content-section > .frame:last-child * {
  color: inherit !important;
}

html.ngw-target-design body.ngw-site-design .ngw-content-section h2,
html.ngw-target-design body.ngw-site-design .ngw-content-section h3,
html.ngw-target-design body.ngw-site-design .ngw-content-section h4,
body.ngw-site-design.ngw-target-design .ngw-content-section h2,
body.ngw-site-design.ngw-target-design .ngw-content-section h3,
body.ngw-site-design.ngw-target-design .ngw-content-section h4 {
  color: inherit !important;
  letter-spacing: -0.025em !important;
}

html.ngw-target-design body.ngw-site-design .ngw-content-section p,
html.ngw-target-design body.ngw-site-design .ngw-content-section li,
body.ngw-site-design.ngw-target-design .ngw-content-section p,
body.ngw-site-design.ngw-target-design .ngw-content-section li {
  color: inherit !important;
}

html.ngw-target-design body.ngw-site-design .ngw-content-section > .frame:not(:first-child):not(:last-child):hover,
body.ngw-site-design.ngw-target-design .ngw-content-section > .frame:not(:first-child):not(:last-child):hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(9, 38, 55, 0.10) !important;
}

html.ngw-target-design body.ngw-site-design .ngw-footer,
body.ngw-site-design.ngw-target-design .ngw-footer {
  background: #ffffff !important;
  color: var(--ngw-target-ink) !important;
  border-top: 1px solid var(--ngw-target-line) !important;
}

html.ngw-target-design body.ngw-site-design .ngw-footer a,
body.ngw-site-design.ngw-target-design .ngw-footer a {
  color: var(--ngw-target-teal-dark) !important;
}

@media (max-width: 1024px) {
  html.ngw-target-design body.ngw-site-design .ngw-content-section,
  body.ngw-site-design.ngw-target-design .ngw-content-section {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  html.ngw-target-design body.ngw-site-design .ngw-hero,
  body.ngw-site-design.ngw-target-design .ngw-hero {
    padding-top: 2rem !important;
  }

  html.ngw-target-design body.ngw-site-design .ngw-content-section,
  body.ngw-site-design.ngw-target-design .ngw-content-section {
    grid-template-columns: 1fr !important;
  }

  html.ngw-target-design body.ngw-site-design .ngw-content-section > .frame,
  body.ngw-site-design.ngw-target-design .ngw-content-section > .frame {
    grid-column: auto !important;
  }
}
/* END STEP212 NGW V1 target design foundation */

/* BEGIN NGW V1 content page design */
body.ngw-site-design {
  background:
    radial-gradient(circle at top left, rgba(74, 144, 226, 0.12), transparent 32rem),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}

.ngw-main--content {
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.ngw-content-head--compact {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 12vw, 10rem) 0 clamp(2.5rem, 6vw, 4.5rem);
  background:
    radial-gradient(circle at 85% 20%, rgba(86, 153, 255, 0.20), transparent 28rem),
    linear-gradient(135deg, #07182f 0%, #0f2b4d 52%, #123b66 100%);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ngw-content-head--compact::after {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -9rem;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.ngw-content-head__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.ngw-content-head--compact .ngw-section-kicker {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ngw-content-head--compact h1 {
  margin: 0;
  max-width: 860px;
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.ngw-content-section--page {
  width: min(1120px, calc(100% - 40px));
  margin: clamp(-1.5rem, -2vw, -1rem) auto 0;
  padding: 0;
}

.ngw-content-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.96);
  color: #172033;
  border: 1px solid rgba(15, 43, 77, 0.10);
  border-radius: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 24px 70px rgba(7, 24, 47, 0.14);
  backdrop-filter: blur(14px);
}

.ngw-content-card .frame {
  margin-top: 0;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.ngw-content-card .frame:last-child {
  margin-bottom: 0;
}

.ngw-content-card h2,
.ngw-content-card h3 {
  color: #07182f;
  letter-spacing: -0.025em;
}

.ngw-content-card p,
.ngw-content-card li {
  color: rgba(23, 32, 51, 0.82);
}

.ngw-content-card a {
  color: #0d5ea6;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

@media (max-width: 760px) {
  .ngw-content-head__inner,
  .ngw-content-section--page {
    width: min(100% - 28px, 1120px);
  }

  .ngw-content-head--compact {
    padding-top: 6.5rem;
  }

  .ngw-content-card {
    border-radius: 1.25rem;
  }
}
/* END NGW V1 content page design */

/* BEGIN NGW V1 header polish */
.ngw-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(7, 24, 47, 0.82);
  backdrop-filter: blur(18px);
}

.ngw-site-header__inner {
  min-height: 76px;
}

.ngw-site-header__nav a {
  position: relative;
  opacity: 0.82;
  transition: opacity 180ms ease, color 180ms ease;
}

.ngw-site-header__nav a:hover,
.ngw-site-header__nav a.is-active {
  opacity: 1;
}

.ngw-site-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7cc4ff, #ffffff);
  opacity: 0;
  transform: scaleX(0.65);
  transition: opacity 180ms ease, transform 180ms ease;
}

.ngw-site-header__nav a:hover::after,
.ngw-site-header__nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.ngw-site-header__toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.9rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
}

.ngw-site-header__toggle-icon,
.ngw-site-header__toggle-icon::before,
.ngw-site-header__toggle-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.ngw-site-header__toggle-icon {
  position: relative;
}

.ngw-site-header__toggle-icon::before,
.ngw-site-header__toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.ngw-site-header__toggle-icon::before {
  top: -6px;
}

.ngw-site-header__toggle-icon::after {
  top: 6px;
}

body.ngw-menu-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .ngw-site-header__inner {
    min-height: 68px;
  }

  .ngw-site-header__toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .ngw-site-header__cta {
    display: none;
  }

  .ngw-site-header__nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    background: rgba(7, 24, 47, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.25rem;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .ngw-site-header[data-ngw-menu-open="true"] .ngw-site-header__nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .ngw-site-header__nav a {
    padding: 0.85rem 0.95rem;
    border-radius: 0.9rem;
  }

  .ngw-site-header__nav a::after {
    display: none;
  }

  .ngw-site-header__nav a:hover,
  .ngw-site-header__nav a.is-active {
    background: rgba(255, 255, 255, 0.08);
  }
}
/* END NGW V1 header polish */


/* BEGIN NGW V1 CTA polish */
.ngw-cta-band {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(124, 196, 255, 0.18), transparent 26rem),
    linear-gradient(180deg, rgba(238, 243, 248, 0.4) 0%, #f7f9fc 100%);
}

.ngw-cta-band__inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 15%, rgba(124, 196, 255, 0.28), transparent 24rem),
    linear-gradient(135deg, #07182f 0%, #123b66 100%);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(7, 24, 47, 0.22);
}

.ngw-cta-band__inner h2,
.ngw-cta-band__inner p {
  margin-top: 0;
}

.ngw-cta-band__inner p {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 760px) {
  .ngw-cta-band__inner {
    grid-template-columns: 1fr;
  }
}
/* END NGW V1 CTA polish */

/* BEGIN NGW V1 footer polish */
.ngw-site-footer {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 0%, rgba(124, 196, 255, 0.16), transparent 28rem),
    linear-gradient(135deg, #061426 0%, #0a203b 48%, #07182f 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ngw-site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.22;
  pointer-events: none;
}

.ngw-site-footer__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.7fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.ngw-site-footer__brand {
  max-width: 28rem;
}

.ngw-site-footer__logo {
  width: min(210px, 70vw);
  height: auto;
  margin-bottom: 1.4rem;
}

.ngw-site-footer__brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.ngw-site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}

.ngw-site-footer nav {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.ngw-site-footer nav strong {
  margin-bottom: 0.35rem;
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ngw-site-footer nav a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.ngw-site-footer nav a:hover,
.ngw-site-footer nav a:focus-visible {
  color: #ffffff;
  transform: translateX(3px);
}

.ngw-site-footer__bottom {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 1.25rem 0 1.75rem;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .ngw-site-footer__inner {
    grid-template-columns: 1fr;
  }

  .ngw-site-footer__columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .ngw-site-footer__columns {
    grid-template-columns: 1fr;
  }
}
/* END NGW V1 footer polish */

/* BEGIN NGW V1 content elements polish */
.ngw-content-card .frame {
  max-width: 920px;
}

.ngw-content-card h2 {
  margin: 0 0 1rem;
  color: #07182f;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.ngw-content-card h3 {
  margin: 2rem 0 0.75rem;
  color: #102a45;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.ngw-content-card p {
  margin: 0 0 1rem;
}

.ngw-content-card ul,
.ngw-content-card ol {
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
}

.ngw-content-card li {
  margin: 0.45rem 0;
}

.ngw-content-card table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(7, 24, 47, 0.08);
}

.ngw-content-card th,
.ngw-content-card td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(7, 24, 47, 0.08);
  text-align: left;
  vertical-align: top;
}

.ngw-content-card th {
  color: #07182f;
  background: #eef4fb;
  font-weight: 700;
}

.ngw-content-card input,
.ngw-content-card textarea,
.ngw-content-card select {
  width: 100%;
  border: 1px solid rgba(7, 24, 47, 0.16);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  background: #ffffff;
  color: #07182f;
}

.ngw-content-card input:focus,
.ngw-content-card textarea:focus,
.ngw-content-card select:focus {
  outline: 3px solid rgba(74, 144, 226, 0.22);
  border-color: rgba(74, 144, 226, 0.75);
}

.ngw-content-card button,
.ngw-content-card input[type="submit"] {
  width: auto;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  color: #ffffff;
  background: linear-gradient(135deg, #1d6fd6 0%, #123b66 100%);
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(18, 59, 102, 0.18);
}
/* END NGW V1 content elements polish */

/* BEGIN NGW V1 frame polish */
.ngw-content-card .frame + .frame {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(7, 24, 47, 0.08);
}

.ngw-content-card .ce-gallery,
.ngw-content-card .ce-image,
.ngw-content-card figure {
  margin: 1.5rem 0;
}

.ngw-content-card img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.ngw-content-card figcaption,
.ngw-content-card .caption {
  margin-top: 0.65rem;
  color: #5f6f83;
  font-size: 0.95rem;
}

.ngw-content-card a:not(.btn):not(.button) {
  color: #1d6fd6;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.ngw-content-card a:not(.btn):not(.button):hover {
  color: #123b66;
}

.ngw-content-card blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid #1d6fd6;
  border-radius: 0 18px 18px 0;
  background: #eef4fb;
  color: #102a45;
}

.ngw-content-card hr {
  margin: 2.5rem 0;
  border: 0;
  border-top: 1px solid rgba(7, 24, 47, 0.1);
}
/* END NGW V1 frame polish */




/* BEGIN NGW V1 active navigation polish */
.ngw-site-header__nav a {
  position: relative;
}

.ngw-site-header__nav a.is-active,
.ngw-site-header__nav a[aria-current="page"] {
  color: #ffffff;
}

.ngw-site-header__nav a.is-active::after,
.ngw-site-header__nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: -0.45rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7cc4ff, #ffffff);
  box-shadow: 0 0 18px rgba(124, 196, 255, 0.45);
}

.ngw-site-header__cta {
  box-shadow: 0 14px 38px rgba(124, 196, 255, 0.18);
}

.ngw-site-header__cta:hover,
.ngw-site-header__cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(124, 196, 255, 0.26);
}

@media (max-width: 980px) {
  .ngw-site-header__nav a.is-active::after,
  .ngw-site-header__nav a[aria-current="page"]::after {
    left: 0;
    right: auto;
    bottom: 0.35rem;
    width: 2.5rem;
  }
}
/* END NGW V1 active navigation polish */

/* BEGIN NGW V1 mobile navigation polish */
html.ngw-nav-open,
body.ngw-nav-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .ngw-site-header__inner {
    position: relative;
  }

  .ngw-site-header__nav {
    position: absolute;
    top: calc(100% + 0.85rem);
    left: 20px;
    right: 20px;
    z-index: 40;
    padding: 1rem;
    display: grid;
    gap: 0.25rem;
    border-radius: 22px;
    background: rgba(7, 24, 47, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 70px rgba(7, 24, 47, 0.34);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.6rem) scale(0.98);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .ngw-site-header__nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .ngw-site-header__nav a {
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
  }

  .ngw-site-header__nav a:hover,
  .ngw-site-header__nav a:focus-visible,
  .ngw-site-header__nav a.is-active,
  .ngw-site-header__nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.09);
  }

  .ngw-site-header__toggle.is-active .ngw-site-header__toggle-icon {
    background: transparent;
  }

  .ngw-site-header__toggle.is-active .ngw-site-header__toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .ngw-site-header__toggle.is-active .ngw-site-header__toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }
}
/* END NGW V1 mobile navigation polish */


/* BEGIN NGW V1 domain accent polish */
body.ngw-site-design {
  --ngw-accent: #7cc4ff;
  --ngw-accent-rgb: 124, 196, 255;
  --ngw-accent-strong: #4f9dff;
}

/* datacenter */
body#p101.ngw-site-design {
  --ngw-accent: #7cc4ff;
  --ngw-accent-rgb: 124, 196, 255;
  --ngw-accent-strong: #4f9dff;
}

/* connect */
body#p102.ngw-site-design {
  --ngw-accent: #6ee7c8;
  --ngw-accent-rgb: 110, 231, 200;
  --ngw-accent-strong: #21c7a8;
}

/* technology */
body#p103.ngw-site-design {
  --ngw-accent: #8ab4ff;
  --ngw-accent-rgb: 138, 180, 255;
  --ngw-accent-strong: #5b8cff;
}

/* newsletter */
body#p104.ngw-site-design {
  --ngw-accent: #f8c36a;
  --ngw-accent-rgb: 248, 195, 106;
  --ngw-accent-strong: #ee9f24;
}

/* customerportal */
body#p105.ngw-site-design {
  --ngw-accent: #b28cff;
  --ngw-accent-rgb: 178, 140, 255;
  --ngw-accent-strong: #8d62ee;
}

/* blog */
body#p106.ngw-site-design {
  --ngw-accent: #ff9f7a;
  --ngw-accent-rgb: 255, 159, 122;
  --ngw-accent-strong: #ff7648;
}

/* wiki */
body#p107.ngw-site-design {
  --ngw-accent: #9ddf7c;
  --ngw-accent-rgb: 157, 223, 124;
  --ngw-accent-strong: #6fc34a;
}

/* faq */
body#p108.ngw-site-design {
  --ngw-accent: #7dd3fc;
  --ngw-accent-rgb: 125, 211, 252;
  --ngw-accent-strong: #38bdf8;
}

/* supplyportal */
body#p362.ngw-site-design {
  --ngw-accent: #5eead4;
  --ngw-accent-rgb: 94, 234, 212;
  --ngw-accent-strong: #14b8a6;
}

/* docs */
body#p440.ngw-site-design {
  --ngw-accent: #a7f3d0;
  --ngw-accent-rgb: 167, 243, 208;
  --ngw-accent-strong: #34d399;
}

/* jobsportal */
body#p442.ngw-site-design {
  --ngw-accent: #fda4af;
  --ngw-accent-rgb: 253, 164, 175;
  --ngw-accent-strong: #fb7185;
}

/* consulting */
body#p512.ngw-site-design {
  --ngw-accent: #93c5fd;
  --ngw-accent-rgb: 147, 197, 253;
  --ngw-accent-strong: #3b82f6;
}

.ngw-hero__orb,
.ngw-content-head--compact::after {
  background: rgba(var(--ngw-accent-rgb), 0.16);
}

.ngw-hero-card--primary,
.ngw-content-card,
.ngw-cta-band__inner {
  box-shadow:
    0 28px 80px rgba(7, 24, 47, 0.18),
    0 0 0 1px rgba(var(--ngw-accent-rgb), 0.08);
}

.ngw-button--primary,
.ngw-site-header__cta {
  background: linear-gradient(135deg, var(--ngw-accent), var(--ngw-accent-strong));
  color: #061426;
}

.ngw-site-header__nav a.is-active::after,
.ngw-site-header__nav a[aria-current="page"]::after {
  background: linear-gradient(90deg, var(--ngw-accent), #ffffff);
  box-shadow: 0 0 18px rgba(var(--ngw-accent-rgb), 0.45);
}

.ngw-section-kicker,
.ngw-content-card a {
  color: var(--ngw-accent-strong);
}

.ngw-content-head--compact .ngw-section-kicker,
.ngw-hero__eyebrow {
  color: rgba(var(--ngw-accent-rgb), 0.92);
}
/* END NGW V1 domain accent polish */

/* BEGIN NGW V1 light homepage reference step 3 */
.ngw-home-reference {
  min-height: 100vh;
  color: #0b1b33;
  background:
    radial-gradient(circle at 70% 10%, rgba(0, 135, 150, 0.10), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f6f9fb 100%);
}

.ngw-home-reference .ngw-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #0b1b33;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(11, 27, 51, 0.08);
  backdrop-filter: blur(18px);
}

.ngw-home-reference .ngw-site-header__inner {
  min-height: 74px;
}

.ngw-home-reference .ngw-site-header__nav a {
  color: rgba(11, 27, 51, 0.72);
}

.ngw-home-reference .ngw-site-header__nav a:hover,
.ngw-home-reference .ngw-site-header__nav a:focus-visible,
.ngw-home-reference .ngw-site-header__nav a.is-active,
.ngw-home-reference .ngw-site-header__nav a[aria-current="page"] {
  color: #004f5d;
}

.ngw-home-reference .ngw-site-header__cta {
  color: #ffffff;
  background: #006b78;
  border-color: #006b78;
  box-shadow: 0 12px 30px rgba(0, 107, 120, 0.20);
}

.ngw-home-main {
  background: transparent;
}

.ngw-home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6.5rem) 0 clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.88) 48%, rgba(255,255,255,0.45) 100%);
}

.ngw-home-hero__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.ngw-home-eyebrow {
  margin: 0 0 1rem;
  color: #007d8a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ngw-home-title {
  max-width: 680px;
  margin: 0;
  color: #0b1b33;
  font-size: clamp(2.5rem, 6.8vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.ngw-home-title span {
  color: #006b78;
}

.ngw-home-hero__lead {
  max-width: 620px;
  margin: 1.4rem 0 0;
  color: rgba(11, 27, 51, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.65;
}

.ngw-home-hero__visual {
  min-height: clamp(22rem, 42vw, 34rem);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.92) 42%),
    radial-gradient(circle at 72% 30%, rgba(0, 107, 120, 0.20), transparent 20rem),
    linear-gradient(135deg, #e8f3f5 0%, #ffffff 100%);
  box-shadow: 0 28px 80px rgba(11, 27, 51, 0.12);
  border: 1px solid rgba(11, 27, 51, 0.08);
}

.ngw-home-visual-card {
  height: 100%;
  min-height: inherit;
  display: grid;
  place-items: center;
  position: relative;
}

.ngw-home-visual-card span {
  position: absolute;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 107, 120, 0.14);
  box-shadow: 0 18px 50px rgba(11, 27, 51, 0.10);
}

.ngw-home-visual-card span:nth-child(1) {
  width: 62%;
  height: 42%;
}

.ngw-home-visual-card span:nth-child(2) {
  right: 8%;
  bottom: 14%;
  width: 42%;
  height: 22%;
}

.ngw-home-visual-card span:nth-child(3) {
  left: 8%;
  top: 14%;
  width: 34%;
  height: 18%;
}

.ngw-home-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

@media (max-width: 900px) {
  .ngw-home-hero__inner {
    grid-template-columns: 1fr;
  }

  .ngw-home-hero__visual {
    min-height: 18rem;
  }
}
/* END NGW V1 light homepage reference step 3 */

/* BEGIN NGW V1 light homepage reference step 4 */
.ngw-home-kpis {
  padding: 0 0 clamp(2.5rem, 5vw, 4rem);
  background: #ffffff;
}

.ngw-home-kpis__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 1.2rem 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  border-top: 1px solid rgba(11, 27, 51, 0.08);
  border-bottom: 1px solid rgba(11, 27, 51, 0.08);
}

.ngw-home-kpi {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
  color: #0b1b33;
}

.ngw-home-kpi::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.8rem;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.9), transparent 35%),
    linear-gradient(135deg, #007d8a, #00a2ad);
  box-shadow: 0 10px 28px rgba(0, 125, 138, 0.18);
}

.ngw-home-kpi strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
  color: #0b1b33;
}

.ngw-home-kpi span {
  display: block;
  margin-top: 0.15rem;
  color: rgba(11, 27, 51, 0.62);
  font-size: 0.88rem;
}

.ngw-home-section-head {
  margin-bottom: 1.4rem;
}

.ngw-home-section-kicker {
  margin: 0 0 0.4rem;
  color: #007d8a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ngw-home-section-head h2 {
  margin: 0;
  max-width: 760px;
  color: #0b1b33;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.ngw-home-card-grid {
  display: grid;
  gap: 1rem;
}

.ngw-home-card-grid--services {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ngw-home-card-grid--solutions {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ngw-home-card {
  min-height: 12rem;
  padding: 1.35rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(11, 27, 51, 0.10);
  box-shadow: 0 18px 48px rgba(11, 27, 51, 0.07);
}

.ngw-home-card--dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 15%, rgba(0, 210, 220, 0.16), transparent 12rem),
    linear-gradient(135deg, #07182f 0%, #0b2b3f 100%);
  border-color: rgba(255, 255, 255, 0.10);
}

.ngw-home-card__icon {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 0.9rem;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  background: #007d8a;
}

.ngw-home-card h3 {
  margin: 0 0 0.65rem;
  color: inherit;
  font-size: 1.05rem;
  line-height: 1.2;
}

.ngw-home-card p {
  margin: 0;
  color: rgba(11, 27, 51, 0.66);
  font-size: 0.92rem;
  line-height: 1.55;
}

.ngw-home-card--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.ngw-home-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .ngw-home-kpis__inner,
  .ngw-home-card-grid--services,
  .ngw-home-card-grid--solutions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .ngw-home-kpis__inner,
  .ngw-home-card-grid--services,
  .ngw-home-card-grid--solutions {
    grid-template-columns: 1fr;
  }
}
/* END NGW V1 light homepage reference step 4 */

/* BEGIN NGW V1 home more sections polish */
.ngw-home-industries,
.ngw-home-cases,
.ngw-home-knowledge {
  position: relative;
}

.ngw-home-industries {
  background:
    radial-gradient(circle at 15% 10%, rgba(124, 196, 255, 0.16), transparent 28rem),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}

.ngw-home-cases {
  background:
    radial-gradient(circle at 85% 15%, rgba(18, 59, 102, 0.18), transparent 30rem),
    linear-gradient(180deg, #eef3f8 0%, #f7f9fc 100%);
}

.ngw-home-knowledge {
  background:
    linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}

.ngw-home-card-grid--industries {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ngw-home-card-grid--cases {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ngw-home-image-card,
.ngw-home-case-card,
.ngw-home-knowledge-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(7, 24, 47, 0.08);
  box-shadow: 0 22px 70px rgba(7, 24, 47, 0.10);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.ngw-home-image-card:hover,
.ngw-home-case-card:hover,
.ngw-home-knowledge-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 196, 255, 0.34);
  box-shadow: 0 30px 90px rgba(7, 24, 47, 0.16);
}

.ngw-home-image-card {
  display: grid;
  grid-template-rows: 11rem auto;
  min-height: 24rem;
}

.ngw-home-image-card__media {
  min-height: 11rem;
  background:
    linear-gradient(135deg, rgba(124, 196, 255, 0.18), rgba(18, 59, 102, 0.78)),
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.40), transparent 12rem),
    linear-gradient(135deg, #07182f 0%, #123b66 100%);
}

.ngw-home-image-card > div:last-child,
.ngw-home-case-card,
.ngw-home-knowledge-card {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.ngw-home-image-card h3,
.ngw-home-case-card h3,
.ngw-home-knowledge-card h3 {
  margin: 0 0 0.75rem;
  color: #07182f;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.18;
}

.ngw-home-image-card p,
.ngw-home-case-card p,
.ngw-home-knowledge-card p {
  margin: 0;
  color: rgba(7, 24, 47, 0.68);
  line-height: 1.72;
}

.ngw-home-case-card {
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 10%, rgba(124, 196, 255, 0.24), transparent 18rem),
    linear-gradient(135deg, #07182f 0%, #123b66 100%);
  border-color: rgba(255, 255, 255, 0.10);
}

.ngw-home-case-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: auto;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.10);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ngw-home-case-card h3,
.ngw-home-case-card p {
  color: #ffffff;
}

.ngw-home-case-card p {
  color: rgba(255, 255, 255, 0.74);
}

.ngw-home-knowledge__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 1.8rem);
}

.ngw-home-knowledge-card {
  min-height: 15rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.82));
}

.ngw-home-knowledge-card::before {
  content: "";
  display: block;
  width: 3rem;
  height: 0.25rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #7cc4ff, #123b66);
}

@media (max-width: 1080px) {
  .ngw-home-card-grid--industries {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ngw-home-card-grid--cases,
  .ngw-home-knowledge__grid {
    grid-template-columns: 1fr;
  }

  .ngw-home-case-card {
    min-height: 16rem;
  }
}

@media (max-width: 640px) {
  .ngw-home-card-grid--industries {
    grid-template-columns: 1fr;
  }

  .ngw-home-image-card {
    min-height: auto;
  }

  .ngw-home-image-card__media {
    min-height: 8rem;
  }
}
/* END NGW V1 home more sections polish */

/* BEGIN NGW V1 light premium homepage polish */
:root {
  --ngw-ink: #07182f;
  --ngw-ink-soft: #38516d;
  --ngw-blue: #256dff;
  --ngw-cyan: #17b8c8;
  --ngw-surface: #ffffff;
  --ngw-surface-soft: #f5f8fc;
  --ngw-border: rgba(7, 24, 47, 0.10);
  --ngw-shadow-soft: 0 24px 80px rgba(7, 24, 47, 0.10);
  --ngw-shadow-card: 0 18px 55px rgba(7, 24, 47, 0.08);
}

body.ngw-site-design {
  color: var(--ngw-ink);
  background:
    radial-gradient(circle at 78% 4%, rgba(124, 196, 255, 0.20), transparent 28rem),
    radial-gradient(circle at 8% 18%, rgba(37, 109, 255, 0.08), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f6f9fd 46%, #eef3f8 100%);
}

.ngw-site-header {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(7, 24, 47, 0.08);
}

.ngw-site-header__inner {
  min-height: 76px;
}

.ngw-site-header__nav a {
  color: rgba(7, 24, 47, 0.74);
}

.ngw-site-header__nav a:hover,
.ngw-site-header__nav a:focus-visible,
.ngw-site-header__nav a.is-active,
.ngw-site-header__nav a[aria-current="page"] {
  color: var(--ngw-ink);
}

.ngw-site-header__cta {
  background: #ffffff;
  color: var(--ngw-ink);
  border: 1px solid rgba(7, 24, 47, 0.14);
}

.ngw-hero {
  position: relative;
  overflow: hidden;
  color: var(--ngw-ink);
  background:
    radial-gradient(circle at 82% 22%, rgba(124, 196, 255, 0.30), transparent 27rem),
    radial-gradient(circle at 18% 10%, rgba(37, 109, 255, 0.10), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.ngw-hero::before {
  content: "";
  position: absolute;
  inset: auto -12rem -18rem auto;
  width: 44rem;
  height: 44rem;
  border-radius: 999px;
  background: rgba(37, 109, 255, 0.07);
  pointer-events: none;
}

.ngw-hero__inner,
.ngw-hero {
  isolation: isolate;
}

.ngw-hero__content {
  position: relative;
  z-index: 2;
}

.ngw-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  padding: 0.48rem 0.82rem;
  color: #195bd8;
  background: rgba(233, 242, 255, 0.94);
  border: 1px solid rgba(37, 109, 255, 0.16);
  border-radius: 999px;
  letter-spacing: 0.16em;
}

.ngw-hero__title {
  max-width: 11ch;
  color: var(--ngw-ink);
  letter-spacing: -0.075em;
}

.ngw-hero__title span {
  color: var(--ngw-cyan);
}

.ngw-hero__lead {
  max-width: 42rem;
  color: var(--ngw-ink-soft);
}

.ngw-button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #057d8f 0%, #13c8c4 100%);
  box-shadow: 0 18px 44px rgba(19, 200, 196, 0.26);
}

.ngw-button--secondary,
.ngw-button:not(.ngw-button--primary) {
  color: var(--ngw-ink);
  background: #ffffff;
  border: 1px solid rgba(7, 24, 47, 0.14);
}

.ngw-hero__visual {
  filter: drop-shadow(0 34px 80px rgba(7, 24, 47, 0.16));
}

.ngw-hero-card {
  color: var(--ngw-ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 24, 47, 0.10);
  box-shadow: var(--ngw-shadow-card);
}

.ngw-hero-card p {
  color: var(--ngw-ink-soft);
}
/* END NGW V1 light premium homepage polish */

/* BEGIN NGW V1 light home hero real classes */
body.ngw-site-design {
  color: #07182f;
  background:
    radial-gradient(circle at 78% 4%, rgba(124, 196, 255, 0.20), transparent 28rem),
    radial-gradient(circle at 8% 18%, rgba(37, 109, 255, 0.08), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f6f9fd 46%, #eef3f8 100%);
}

.ngw-home-reference {
  background:
    radial-gradient(circle at 78% 4%, rgba(124, 196, 255, 0.20), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f7faff 45%, #eef3f8 100%);
}

.ngw-home-main {
  background: transparent;
}

.ngw-home-hero {
  position: relative;
  overflow: hidden;
  color: #07182f;
  background:
    radial-gradient(circle at 82% 22%, rgba(124, 196, 255, 0.30), transparent 27rem),
    radial-gradient(circle at 18% 10%, rgba(37, 109, 255, 0.10), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.ngw-home-hero__inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.ngw-home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  padding: 0.48rem 0.82rem;
  color: #195bd8;
  background: rgba(233, 242, 255, 0.94);
  border: 1px solid rgba(37, 109, 255, 0.16);
  border-radius: 999px;
  letter-spacing: 0.16em;
}

.ngw-home-title {
  max-width: 11ch;
  color: #07182f;
  letter-spacing: -0.075em;
}

.ngw-home-title span {
  color: #17b8c8;
}

.ngw-home-hero__lead {
  max-width: 42rem;
  color: #38516d;
}

.ngw-home-visual-card,
.ngw-home-floating-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(7, 24, 47, 0.10);
  box-shadow: 0 24px 80px rgba(7, 24, 47, 0.12);
}

.ngw-home-floating-card strong {
  color: #07182f;
}

.ngw-home-floating-card span {
  color: #38516d;
}
/* END NGW V1 light home hero real classes */

/* BEGIN NGW V1 light premium header polish */
body.ngw-site-design .ngw-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(7, 24, 47, 0.08);
  box-shadow: 0 14px 45px rgba(7, 24, 47, 0.07);
  backdrop-filter: blur(18px);
}

body.ngw-site-design .ngw-site-header__inner {
  min-height: 76px;
}

body.ngw-site-design .ngw-site-header__brand {
  filter: none;
}

body.ngw-site-design .ngw-site-header__logo {
  max-height: 28px;
}

body.ngw-site-design .ngw-site-header__nav a {
  color: #263d56;
  font-weight: 650;
}

body.ngw-site-design .ngw-site-header__nav a:hover,
body.ngw-site-design .ngw-site-header__nav a:focus-visible,
body.ngw-site-design .ngw-site-header__nav a.is-active,
body.ngw-site-design .ngw-site-header__nav a[aria-current="page"] {
  color: #07182f;
}

body.ngw-site-design .ngw-site-header__nav a.is-active::after,
body.ngw-site-design .ngw-site-header__nav a[aria-current="page"]::after {
  background: linear-gradient(90deg, #0b7580, #17b8c8);
  box-shadow: 0 0 18px rgba(23, 184, 200, 0.30);
}

body.ngw-site-design .ngw-site-header__cta {
  color: #ffffff;
  background: #0b7580;
  border: 1px solid rgba(11, 117, 128, 0.22);
  box-shadow: 0 14px 36px rgba(11, 117, 128, 0.18);
}

body.ngw-site-design .ngw-site-header__cta:hover,
body.ngw-site-design .ngw-site-header__cta:focus-visible {
  background: #075f68;
  box-shadow: 0 18px 46px rgba(11, 117, 128, 0.24);
}

body.ngw-site-design .ngw-site-header__toggle {
  color: #07182f;
  border-color: rgba(7, 24, 47, 0.12);
  background: rgba(255, 255, 255, 0.86);
}

body.ngw-site-design .ngw-site-header__toggle-icon,
body.ngw-site-design .ngw-site-header__toggle-icon::before,
body.ngw-site-design .ngw-site-header__toggle-icon::after {
  background: #07182f;
}

@media (max-width: 980px) {
  body.ngw-site-design .ngw-site-header__nav {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(7, 24, 47, 0.10);
    box-shadow: 0 24px 70px rgba(7, 24, 47, 0.14);
  }

  body.ngw-site-design .ngw-site-header__nav a {
    color: #07182f;
  }
}
/* END NGW V1 light premium header polish */

/* BEGIN NGW V1 light hero visual polish */
.ngw-home-hero__visual {
  position: relative;
  min-height: clamp(22rem, 42vw, 34rem);
}

.ngw-home-visual-card {
  position: relative;
  width: min(100%, 42rem);
  min-height: clamp(22rem, 38vw, 31rem);
  margin-left: auto;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,248,252,0.94));
  border: 1px solid rgba(7, 24, 47, 0.10);
  box-shadow:
    0 34px 90px rgba(7, 24, 47, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.ngw-home-visual-card__bar {
  height: 3.1rem;
  display: flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0 1.2rem;
  background: rgba(255,255,255,0.84);
  border-bottom: 1px solid rgba(7, 24, 47, 0.08);
}

.ngw-home-visual-card__bar span {
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 999px;
  background: #d7e2ec;
}

.ngw-home-visual-card__bar span:nth-child(1) {
  background: #ff6f7d;
}

.ngw-home-visual-card__bar span:nth-child(2) {
  background: #ffca5c;
}

.ngw-home-visual-card__bar span:nth-child(3) {
  background: #36c995;
}

.ngw-home-visual-card__scene {
  position: relative;
  min-height: calc(clamp(22rem, 38vw, 31rem) - 3.1rem);
  background:
    radial-gradient(circle at 25% 18%, rgba(37, 109, 255, 0.22), transparent 13rem),
    radial-gradient(circle at 78% 30%, rgba(23, 184, 200, 0.24), transparent 14rem),
    linear-gradient(135deg, #f8fbff 0%, #eaf2f8 100%);
}

.ngw-home-visual-card__scene::before {
  content: "";
  position: absolute;
  inset: 2rem 2rem auto;
  height: 12rem;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.88), rgba(255,255,255,0.38)),
    linear-gradient(135deg, rgba(7,24,47,0.06), rgba(23,184,200,0.10));
  border: 1px solid rgba(7, 24, 47, 0.08);
}

.ngw-home-screen {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  height: 10.5rem;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(7, 24, 47, 0.08);
  box-shadow: 0 22px 55px rgba(7, 24, 47, 0.12);
}

.ngw-home-screen span {
  display: block;
  height: 0.78rem;
  margin: 1rem 1.25rem;
  border-radius: 999px;
  background: #dce7f1;
}

.ngw-home-screen span:nth-child(1) {
  width: 42%;
  background: #0b7580;
}

.ngw-home-screen span:nth-child(2) {
  width: 70%;
}

.ngw-home-screen span:nth-child(3) {
  width: 58%;
}

.ngw-home-person {
  position: absolute;
  bottom: 12.1rem;
  width: 4.4rem;
  height: 8.5rem;
  border-radius: 999px 999px 18px 18px;
  background:
    radial-gradient(circle at 50% 1.1rem, #f1c7aa 0 0.85rem, transparent 0.9rem),
    linear-gradient(180deg, #0b7580 0%, #123b66 100%);
  box-shadow: 0 18px 35px rgba(7, 24, 47, 0.14);
}

.ngw-home-person--one {
  left: 5.5rem;
}

.ngw-home-person--two {
  left: 12rem;
  transform: scale(1.08);
}

.ngw-home-person--three {
  left: 18.7rem;
  transform: scale(0.96);
}

.ngw-home-floating-card {
  position: absolute;
  padding: 0.95rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(7, 24, 47, 0.08);
  box-shadow: 0 18px 45px rgba(7, 24, 47, 0.12);
  color: #07182f;
}

.ngw-home-floating-card strong,
.ngw-home-floating-card span {
  display: block;
}

.ngw-home-floating-card strong {
  font-size: 0.88rem;
}

.ngw-home-floating-card span {
  margin-top: 0.22rem;
  color: #607086;
  font-size: 0.82rem;
}

.ngw-home-floating-card--top {
  top: 4.7rem;
  right: -0.6rem;
}

.ngw-home-floating-card--bottom {
  left: -0.8rem;
  bottom: 5.5rem;
}

@media (max-width: 980px) {
  .ngw-home-hero__visual {
    min-height: 24rem;
  }

  .ngw-home-visual-card {
    margin: 0 auto;
  }

  .ngw-home-floating-card--top {
    right: 1rem;
  }

  .ngw-home-floating-card--bottom {
    left: 1rem;
  }
}
/* END NGW V1 light hero visual polish */


/* BEGIN NGW V1 logo footer repair */
body.ngw-site-design .ngw-site-header__brand {
  display: inline-flex;
  align-items: center;
  min-width: 160px;
}

body.ngw-site-design .ngw-site-header__logo {
  display: block;
  width: 164px;
  max-width: 164px;
  height: auto;
  max-height: none;
  object-fit: contain;
}

body.ngw-site-design .ngw-site-footer {
  color: #07182f;
  background:
    radial-gradient(circle at 15% 0%, rgba(124, 196, 255, 0.18), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
  border-top: 1px solid rgba(7, 24, 47, 0.08);
}

body.ngw-site-design .ngw-site-footer::before {
  display: none;
}

body.ngw-site-design .ngw-site-footer__inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

body.ngw-site-design .ngw-site-footer__brand {
  max-width: 24rem;
  padding: 0;
  background: transparent;
}

body.ngw-site-design .ngw-site-footer__logo {
  display: block;
  width: 190px;
  max-width: 190px;
  height: auto;
  margin: 0 0 1.35rem;
  object-fit: contain;
}

body.ngw-site-design .ngw-site-footer__brand p {
  margin: 0;
  color: #52657a;
  line-height: 1.75;
}

body.ngw-site-design .ngw-site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}

body.ngw-site-design .ngw-site-footer nav {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

body.ngw-site-design .ngw-site-footer nav strong {
  margin-bottom: 0.25rem;
  color: #07182f;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.ngw-site-design .ngw-site-footer nav a {
  color: #52657a;
  text-decoration: none;
  line-height: 1.45;
}

body.ngw-site-design .ngw-site-footer nav a:hover,
body.ngw-site-design .ngw-site-footer nav a:focus-visible {
  color: #0b7580;
  text-decoration: none;
}

body.ngw-site-design .ngw-site-footer__bottom {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 1.2rem 0 2rem;
  color: #6c7d8f;
  border-top: 1px solid rgba(7, 24, 47, 0.08);
}

@media (max-width: 900px) {
  body.ngw-site-design .ngw-site-header__logo {
    width: 142px;
    max-width: 142px;
  }

  body.ngw-site-design .ngw-site-footer__inner {
    grid-template-columns: 1fr;
  }

  body.ngw-site-design .ngw-site-footer__columns {
    grid-template-columns: 1fr;
  }
}
/* END NGW V1 logo footer repair */


/* BEGIN NGW V1 reference grid cards polish */
body.ngw-site-design {
  --ngw-ref-ink: #07182f;
  --ngw-ref-muted: #52657a;
  --ngw-ref-cyan: #13b8c5;
  --ngw-ref-teal: #0b7580;
  --ngw-ref-surface: #ffffff;
  --ngw-ref-soft: #f4f8fc;
}

body.ngw-site-design .ngw-page-shell {
  background:
    radial-gradient(circle at 78% 8%, rgba(124, 196, 255, 0.20), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f3f7fb 48%, #eef3f8 100%);
}

body.ngw-site-design .ngw-site-header__inner,
body.ngw-site-design .ngw-home-hero__inner,
body.ngw-site-design .ngw-home-kpis,
body.ngw-site-design .ngw-home-content,
body.ngw-site-design .ngw-cta-band__inner,
body.ngw-site-design .ngw-site-footer__inner,
body.ngw-site-design .ngw-site-footer__bottom {
  width: min(1180px, calc(100% - 48px));
}

body.ngw-site-design .ngw-home-hero {
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(3rem, 6vw, 5.25rem);
}

body.ngw-site-design .ngw-home-hero__inner {
  grid-template-columns: minmax(0, 0.95fr) minmax(28rem, 0.92fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

body.ngw-site-design .ngw-home-title {
  max-width: 36rem;
  letter-spacing: -0.07em;
  line-height: 0.93;
}

body.ngw-site-design .ngw-home-hero__lead {
  max-width: 32rem;
  margin-top: 1.35rem;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.75;
  color: var(--ngw-ref-muted);
}

body.ngw-site-design .ngw-home-kpis {
  margin: 0 auto;
  padding: clamp(1.35rem, 2.5vw, 2rem) 0 clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(7, 24, 47, 0.07);
  border-bottom: 1px solid rgba(7, 24, 47, 0.07);
}

body.ngw-site-design .ngw-home-kpi {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: center;
  padding: 0.7rem clamp(0.8rem, 2vw, 1.4rem);
}

body.ngw-site-design .ngw-home-kpi__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #0b7580, #17c9d5);
  box-shadow: 0 14px 28px rgba(19, 184, 197, 0.26);
}

body.ngw-site-design .ngw-home-kpi strong {
  color: var(--ngw-ref-ink);
  font-size: 1rem;
  font-weight: 800;
}

body.ngw-site-design .ngw-home-kpi span {
  color: #6c7d8f;
  font-size: 0.88rem;
}

body.ngw-site-design .ngw-home-content {
  margin: 0 auto;
  padding-top: clamp(3.5rem, 7vw, 5.8rem);
  padding-bottom: clamp(2.6rem, 5vw, 4.4rem);
}

body.ngw-site-design .ngw-home-section-head {
  max-width: 48rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}

body.ngw-site-design .ngw-home-section-kicker {
  margin: 0 0 0.55rem;
  color: #087982;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.ngw-site-design .ngw-home-section-head h2 {
  margin: 0;
  color: var(--ngw-ref-ink);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

body.ngw-site-design .ngw-home-card-grid {
  gap: clamp(1rem, 2vw, 1.35rem);
}

body.ngw-site-design .ngw-home-card,
body.ngw-site-design .ngw-home-image-card,
body.ngw-site-design .ngw-home-case-card,
body.ngw-site-design .ngw-home-knowledge-card {
  border-radius: 18px;
}

body.ngw-site-design .ngw-home-services .ngw-home-card--dark {
  min-height: 14.5rem;
  padding: clamp(1.35rem, 2.4vw, 1.8rem);
  background:
    radial-gradient(circle at 85% 10%, rgba(23, 184, 200, 0.22), transparent 12rem),
    linear-gradient(135deg, #07182f 0%, #07334a 100%);
  box-shadow: 0 22px 60px rgba(7, 24, 47, 0.14);
}

body.ngw-site-design .ngw-home-card--dark .ngw-home-card__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  background: #13aebc;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
}

body.ngw-site-design .ngw-home-card--light {
  min-height: 11.5rem;
  padding: clamp(1.25rem, 2.4vw, 1.7rem);
  background: #ffffff;
  border: 1px solid rgba(7, 24, 47, 0.09);
  box-shadow: 0 18px 50px rgba(7, 24, 47, 0.07);
}

body.ngw-site-design .ngw-home-card--light h3,
body.ngw-site-design .ngw-home-card--light p {
  color: var(--ngw-ref-ink);
}

body.ngw-site-design .ngw-home-card--light p {
  color: var(--ngw-ref-muted);
}

body.ngw-site-design .ngw-home-industries,
body.ngw-site-design .ngw-home-cases,
body.ngw-site-design .ngw-home-knowledge {
  background: transparent;
}

body.ngw-site-design .ngw-home-card-grid--industries {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.ngw-site-design .ngw-home-image-card {
  min-height: 15rem;
  grid-template-rows: 8rem auto;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(7, 24, 47, 0.08);
}

body.ngw-site-design .ngw-home-image-card__media {
  min-height: 8rem;
  background:
    linear-gradient(135deg, rgba(7,24,47,0.28), rgba(11,117,128,0.28)),
    radial-gradient(circle at 18% 24%, rgba(255,255,255,0.6), transparent 10rem),
    linear-gradient(135deg, #dce9f3 0%, #edf5fb 100%);
}

body.ngw-site-design .ngw-home-case-card {
  min-height: 12.5rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 16%, rgba(23,184,200,0.20), transparent 12rem),
    linear-gradient(135deg, #07182f 0%, #0d3e5a 100%);
  color: #ffffff;
}

body.ngw-site-design .ngw-home-case-card span {
  color: #bdeff3;
  background: rgba(255, 255, 255, 0.10);
}

body.ngw-site-design .ngw-home-knowledge__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.2rem);
}

body.ngw-site-design .ngw-home-knowledge-card {
  min-height: 5.5rem;
  padding: 1.2rem 1.35rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(7, 24, 47, 0.08);
  box-shadow: 0 12px 34px rgba(7, 24, 47, 0.06);
}

body.ngw-site-design .ngw-cta-band {
  background: transparent;
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

body.ngw-site-design .ngw-cta-band__inner {
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 22%, rgba(23,184,200,0.28), transparent 18rem),
    linear-gradient(135deg, #07182f 0%, #174f7b 100%);
  box-shadow: 0 24px 70px rgba(7, 24, 47, 0.16);
}

@media (max-width: 980px) {
  body.ngw-site-design .ngw-home-hero__inner {
    grid-template-columns: 1fr;
  }

  body.ngw-site-design .ngw-home-kpis,
  body.ngw-site-design .ngw-home-card-grid--industries,
  body.ngw-site-design .ngw-home-card-grid--cases,
  body.ngw-site-design .ngw-home-knowledge__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body.ngw-site-design .ngw-site-header__inner,
  body.ngw-site-design .ngw-home-hero__inner,
  body.ngw-site-design .ngw-home-kpis,
  body.ngw-site-design .ngw-home-content,
  body.ngw-site-design .ngw-cta-band__inner,
  body.ngw-site-design .ngw-site-footer__inner,
  body.ngw-site-design .ngw-site-footer__bottom {
    width: min(100% - 28px, 1180px);
  }

  body.ngw-site-design .ngw-home-kpis,
  body.ngw-site-design .ngw-home-card-grid,
  body.ngw-site-design .ngw-home-card-grid--industries,
  body.ngw-site-design .ngw-home-card-grid--cases,
  body.ngw-site-design .ngw-home-knowledge__grid {
    grid-template-columns: 1fr;
  }
}
/* END NGW V1 reference grid cards polish */


/* BEGIN NGW V1 reference final polish */
body.ngw-site-design {
  font-synthesis-weight: none;
  text-rendering: geometricPrecision;
}

body.ngw-site-design .ngw-button,
body.ngw-site-design .ngw-site-header__cta,
body.ngw-site-design .ngw-cta-band .ngw-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.25rem;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

body.ngw-site-design .ngw-button::after,
body.ngw-site-design .ngw-site-header__cta::after {
  content: "→";
  font-weight: 900;
  transform: translateY(-0.02em);
}

body.ngw-site-design .ngw-button--primary {
  color: #ffffff;
  background: #0b7580;
  border: 1px solid rgba(11, 117, 128, 0.18);
  box-shadow: 0 15px 35px rgba(11, 117, 128, 0.18);
}

body.ngw-site-design .ngw-button--primary:hover,
body.ngw-site-design .ngw-button--primary:focus-visible,
body.ngw-site-design .ngw-site-header__cta:hover,
body.ngw-site-design .ngw-site-header__cta:focus-visible {
  transform: translateY(-2px);
  background: #075f68;
  box-shadow: 0 20px 46px rgba(11, 117, 128, 0.25);
}

body.ngw-site-design .ngw-button--secondary,
body.ngw-site-design .ngw-button:not(.ngw-button--primary) {
  color: #0b7580;
  background: #ffffff;
  border: 1px solid rgba(11, 117, 128, 0.22);
  box-shadow: 0 10px 28px rgba(7, 24, 47, 0.07);
}

body.ngw-site-design .ngw-button--secondary:hover,
body.ngw-site-design .ngw-button:not(.ngw-button--primary):hover,
body.ngw-site-design .ngw-button--secondary:focus-visible,
body.ngw-site-design .ngw-button:not(.ngw-button--primary):focus-visible {
  transform: translateY(-2px);
  border-color: rgba(11, 117, 128, 0.38);
  box-shadow: 0 16px 38px rgba(7, 24, 47, 0.10);
}

body.ngw-site-design .ngw-home-card a,
body.ngw-site-design .ngw-home-card--dark a,
body.ngw-site-design .ngw-home-card--light a,
body.ngw-site-design .ngw-home-case-card a,
body.ngw-site-design .ngw-home-knowledge-card a {
  color: inherit;
  font-weight: 850;
  text-decoration: none;
}

body.ngw-site-design .ngw-home-card--dark a::after,
body.ngw-site-design .ngw-home-card--light a::after,
body.ngw-site-design .ngw-home-case-card a::after,
body.ngw-site-design .ngw-home-knowledge-card a::after {
  content: " →";
  font-weight: 900;
}

body.ngw-site-design .ngw-home-services .ngw-home-card--dark,
body.ngw-site-design .ngw-home-card--light,
body.ngw-site-design .ngw-home-image-card,
body.ngw-site-design .ngw-home-case-card,
body.ngw-site-design .ngw-home-knowledge-card {
  transform: translateZ(0);
}

body.ngw-site-design .ngw-home-services .ngw-home-card--dark:hover,
body.ngw-site-design .ngw-home-card--light:hover,
body.ngw-site-design .ngw-home-image-card:hover,
body.ngw-site-design .ngw-home-case-card:hover,
body.ngw-site-design .ngw-home-knowledge-card:hover {
  transform: translateY(-5px);
}

body.ngw-site-design .ngw-home-services .ngw-home-card--dark h3,
body.ngw-site-design .ngw-home-card--light h3,
body.ngw-site-design .ngw-home-image-card h3,
body.ngw-site-design .ngw-home-case-card h3,
body.ngw-site-design .ngw-home-knowledge-card h3 {
  letter-spacing: -0.025em;
}

body.ngw-site-design .ngw-home-services .ngw-home-card--dark p,
body.ngw-site-design .ngw-home-card--light p,
body.ngw-site-design .ngw-home-image-card p,
body.ngw-site-design .ngw-home-case-card p,
body.ngw-site-design .ngw-home-knowledge-card p {
  line-height: 1.68;
}

body.ngw-site-design .ngw-site-footer {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  background: #ffffff;
  border-top: 1px solid rgba(7, 24, 47, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

body.ngw-site-design .ngw-site-footer::before {
  display: none;
}

body.ngw-site-design .ngw-site-footer__inner {
  padding: clamp(2.4rem, 5vw, 4rem) 0 clamp(1.8rem, 3vw, 2.5rem);
  align-items: start;
}

body.ngw-site-design .ngw-site-footer__brand {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: 22px;
  background: #f4f8fc;
  border: 1px solid rgba(7, 24, 47, 0.07);
}

body.ngw-site-design .ngw-site-footer__brand p {
  color: #52657a;
}

body.ngw-site-design .ngw-site-footer nav strong {
  color: #07182f;
  margin-bottom: 0.45rem;
}

body.ngw-site-design .ngw-site-footer nav a {
  color: #52657a;
  padding: 0.16rem 0;
  border-bottom: 0;
}

body.ngw-site-design .ngw-site-footer nav a:hover,
body.ngw-site-design .ngw-site-footer nav a:focus-visible {
  color: #0b7580;
}

body.ngw-site-design .ngw-site-footer__bottom {
  color: #6c7d8f;
  border-top: 1px solid rgba(7, 24, 47, 0.07);
}

@media (max-width: 1180px) {
  body.ngw-site-design .ngw-home-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.85fr);
  }
}

@media (max-width: 980px) {
  body.ngw-site-design .ngw-site-header__inner {
    min-height: 68px;
  }

  body.ngw-site-design .ngw-home-hero {
    padding-top: 3.2rem;
  }

  body.ngw-site-design .ngw-home-hero__visual {
    min-height: 24rem;
  }

  body.ngw-site-design .ngw-home-visual-card {
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  body.ngw-site-design .ngw-home-title {
    font-size: clamp(3.05rem, 15vw, 5rem);
    line-height: 0.96;
  }

  body.ngw-site-design .ngw-home-hero__lead {
    font-size: 1rem;
  }

  body.ngw-site-design .ngw-home-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  body.ngw-site-design .ngw-button,
  body.ngw-site-design .ngw-site-header__cta {
    width: 100%;
  }

  body.ngw-site-design .ngw-home-kpi {
    padding-left: 0;
    padding-right: 0;
  }

  body.ngw-site-design .ngw-home-section-head h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  body.ngw-site-design .ngw-home-visual-card {
    min-height: 20rem;
  }

  body.ngw-site-design .ngw-site-footer__inner {
    grid-template-columns: 1fr;
  }

  body.ngw-site-design .ngw-site-footer__columns {
    grid-template-columns: 1fr;
  }
}
/* END NGW V1 reference final polish */


/* BEGIN NGW V1 reference final normalize */
body.ngw-site-design .ngw-home-hero__inner,
body.ngw-site-design .ngw-home-kpis,
body.ngw-site-design .ngw-home-content > .ngw-home-section-head,
body.ngw-site-design .ngw-home-content > .ngw-home-card-grid,
body.ngw-site-design .ngw-home-knowledge__grid,
body.ngw-site-design .ngw-cta-band__inner,
body.ngw-site-design .ngw-site-footer__inner {
  width: min(1120px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

body.ngw-site-design .ngw-home-content {
  padding-top: clamp(4rem, 7vw, 6.5rem);
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
}

body.ngw-site-design .ngw-home-content + .ngw-home-content {
  padding-top: clamp(3rem, 6vw, 5rem);
}

body.ngw-site-design .ngw-home-section-head {
  margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
}

body.ngw-site-design .ngw-home-section-kicker,
body.ngw-site-design .ngw-section-kicker {
  color: #0b7580;
  font-weight: 900;
  letter-spacing: 0.14em;
}

body.ngw-site-design .ngw-home-card-grid {
  gap: clamp(1rem, 2vw, 1.5rem);
}

body.ngw-site-design .ngw-home-card--dark,
body.ngw-site-design .ngw-home-card--light,
body.ngw-site-design .ngw-home-image-card,
body.ngw-site-design .ngw-home-case-card,
body.ngw-site-design .ngw-home-knowledge-card,
body.ngw-site-design .ngw-content-card,
body.ngw-site-design .ngw-cta-band__inner {
  -webkit-font-smoothing: antialiased;
}

body.ngw-site-design .ngw-content-card {
  box-shadow: 0 24px 80px rgba(7, 24, 47, 0.08);
}

body.ngw-site-design .ngw-home-hero {
  min-height: auto;
}

body.ngw-site-design .ngw-home-reference .ngw-site-header,
body.ngw-site-design .ngw-site-header {
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 760px) {
  body.ngw-site-design .ngw-home-hero__inner,
  body.ngw-site-design .ngw-home-kpis,
  body.ngw-site-design .ngw-home-content > .ngw-home-section-head,
  body.ngw-site-design .ngw-home-content > .ngw-home-card-grid,
  body.ngw-site-design .ngw-home-knowledge__grid,
  body.ngw-site-design .ngw-cta-band__inner,
  body.ngw-site-design .ngw-site-footer__inner {
    width: min(100% - 28px, 1120px);
  }
}
/* END NGW V1 reference final normalize */

/* BEGIN NGW V1 layout kpi alignment repair */
:root {
  --ngw-ref-container-wide: min(1180px, calc(100% - 56px));
  --ngw-ref-container: min(1120px, calc(100% - 56px));
}

/* Header, Hero und Inhaltsbereiche wieder wie im hellen Referenzlayout breit ausrichten. */
body.ngw-site-design .ngw-site-header__inner,
body.ngw-site-design .ngw-home-hero__inner,
body.ngw-site-design .ngw-home-kpis,
body.ngw-site-design .ngw-home-content,
body.ngw-site-design .ngw-cta-band__inner,
body.ngw-site-design .ngw-site-footer__inner {
  width: var(--ngw-ref-container-wide);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

body.ngw-site-design .ngw-site-header__inner {
  padding-left: 0;
  padding-right: 0;
}

/* Hero: Text links, Visual rechts, nicht als schmale Mittelspalte. */
body.ngw-site-design .ngw-home-hero {
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
}

body.ngw-site-design .ngw-home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

body.ngw-site-design .ngw-home-hero__content {
  max-width: 34rem;
  justify-self: start;
}

body.ngw-site-design .ngw-home-title {
  max-width: 10.5em;
}

body.ngw-site-design .ngw-home-visual-card {
  justify-self: end;
  width: min(100%, 31rem);
}

/* KPI-Band: Ueberlappung beseitigen, klare 4 Spalten mit Icon links und Text rechts. */
body.ngw-site-design .ngw-home-kpis {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 2.2vw, 1.8rem) 0 clamp(1.6rem, 3vw, 2.25rem);
  border-top: 1px solid rgba(7, 24, 47, 0.07);
  border-bottom: 1px solid rgba(7, 24, 47, 0.07);
  background: transparent;
}

body.ngw-site-design .ngw-home-kpi {
  box-sizing: border-box;
  min-width: 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 0.95rem;
  row-gap: 0.12rem;
  align-items: center;
  padding: 0.25rem 0.9rem;
  text-align: left;
}

body.ngw-site-design .ngw-home-kpi > :first-child {
  grid-row: 1 / span 2;
  grid-column: 1;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0b7580 0%, #17b8c8 100%);
  box-shadow: 0 14px 35px rgba(11, 117, 128, 0.22);
}

body.ngw-site-design .ngw-home-kpi strong,
body.ngw-site-design .ngw-home-kpi b {
  grid-column: 2;
  min-width: 0;
  display: block;
  color: #07182f;
  font-weight: 800;
  line-height: 1.15;
  white-space: normal;
}

body.ngw-site-design .ngw-home-kpi span:not(:first-child),
body.ngw-site-design .ngw-home-kpi p {
  grid-column: 2;
  min-width: 0;
  margin: 0;
  color: #63748a;
  font-size: 0.92rem;
  line-height: 1.35;
  white-space: normal;
}

/* Falls alte CSS-Regeln absolute/inline Effekte gesetzt haben. */
body.ngw-site-design .ngw-home-kpi * {
  max-width: 100%;
}

/* Desktop etwas naeher an die Referenz: Service-Cards kompakter und gleichmaessig. */
body.ngw-site-design .ngw-home-card-grid {
  width: 100%;
}

body.ngw-site-design .ngw-home-services .ngw-home-card-grid,
body.ngw-site-design .ngw-home-solutions .ngw-home-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  body.ngw-site-design .ngw-home-hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  body.ngw-site-design .ngw-home-visual-card {
    justify-self: start;
    width: min(100%, 34rem);
  }

  body.ngw-site-design .ngw-home-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --ngw-ref-container-wide: min(100% - 32px, 1180px);
    --ngw-ref-container: min(100% - 32px, 1120px);
  }

  body.ngw-site-design .ngw-home-hero {
    padding-top: 3.25rem;
  }

  body.ngw-site-design .ngw-home-kpis,
  body.ngw-site-design .ngw-home-services .ngw-home-card-grid,
  body.ngw-site-design .ngw-home-solutions .ngw-home-card-grid {
    grid-template-columns: 1fr;
  }

  body.ngw-site-design .ngw-home-kpi {
    padding: 0.6rem 0;
  }
}
/* END NGW V1 layout kpi alignment repair */

/* BEGIN NGW V1 KPI band hard repair */
body.ngw-site-design .ngw-home-kpis--clean {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
  padding: clamp(1.4rem, 2.4vw, 1.9rem) 0 clamp(2.3rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  border-top: 1px solid rgba(7, 24, 47, 0.07);
  border-bottom: 1px solid rgba(7, 24, 47, 0.07);
  background: transparent;
}

body.ngw-site-design .ngw-home-kpi--clean {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: 0.18rem;
  align-items: center;
  min-width: 0;
  padding: 0.25rem 0;
  text-align: left;
}

body.ngw-site-design .ngw-home-kpi--clean .ngw-home-kpi__icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  min-width: 42px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, #0b7580 0%, #17b8c8 100%);
  box-shadow: 0 14px 34px rgba(11, 117, 128, 0.22);
}

body.ngw-site-design .ngw-home-kpi--clean strong {
  grid-column: 2;
  grid-row: 1;
  display: block;
  min-width: 0;
  margin: 0;
  color: #07182f;
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.15;
  white-space: normal;
}

body.ngw-site-design .ngw-home-kpi--clean > span:not(.ngw-home-kpi__icon) {
  grid-column: 2;
  grid-row: 2;
  display: block;
  min-width: 0;
  margin: 0;
  color: #64758a;
  font-size: 0.86rem;
  line-height: 1.35;
  white-space: normal;
}

/* Stoppt alte KPI-Regeln, die direkte span/strong-Elemente falsch positionieren. */
body.ngw-site-design .ngw-home-kpis--clean .ngw-home-kpi--clean > * {
  position: static;
  transform: none;
  float: none;
  max-width: 100%;
}

@media (max-width: 980px) {
  body.ngw-site-design .ngw-home-kpis--clean {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body.ngw-site-design .ngw-home-kpis--clean {
    width: min(100% - 32px, 1120px);
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
/* END NGW V1 KPI band hard repair */

/* BEGIN NGW V1 hero proportion final polish */
body.ngw-site-design .ngw-home-hero {
  padding-top: clamp(4.2rem, 6.8vw, 6.6rem);
  padding-bottom: clamp(2.8rem, 5vw, 4.2rem);
  background:
    radial-gradient(circle at 82% 8%, rgba(124, 196, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 12% 12%, rgba(37, 109, 255, 0.08), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

body.ngw-site-design .ngw-home-hero__inner {
  width: min(1120px, calc(100% - 56px));
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.78fr);
  gap: clamp(3rem, 6vw, 6.2rem);
  align-items: center;
}

body.ngw-site-design .ngw-home-hero__content {
  max-width: 31rem;
}

body.ngw-site-design .ngw-home-eyebrow {
  margin-bottom: clamp(1rem, 1.8vw, 1.4rem);
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.20em;
  color: #256dff;
  background: #edf5ff;
  border: 1px solid rgba(37, 109, 255, 0.16);
}

body.ngw-site-design .ngw-home-title {
  max-width: 9.6em;
  margin: 0;
  color: #07182f;
  font-size: clamp(3.35rem, 5.45vw, 5.35rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

body.ngw-site-design .ngw-home-title span {
  color: #17b8c8;
}

body.ngw-site-design .ngw-home-hero__lead {
  max-width: 29.5rem;
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.72;
  color: #53667c;
}

body.ngw-site-design .ngw-home-actions {
  margin-top: 1.65rem;
  gap: 0.8rem;
}

body.ngw-site-design .ngw-home-visual-card {
  width: min(100%, 30rem);
  min-height: clamp(20rem, 33vw, 28rem);
  border-radius: 30px;
  box-shadow:
    0 32px 80px rgba(7, 24, 47, 0.13),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

body.ngw-site-design .ngw-home-visual-card__scene {
  min-height: calc(clamp(20rem, 33vw, 28rem) - 3.1rem);
}

body.ngw-site-design .ngw-home-floating-card {
  box-shadow: 0 22px 55px rgba(7, 24, 47, 0.11);
}

body.ngw-site-design .ngw-home-kpis--clean {
  width: min(1120px, calc(100% - 56px));
  margin-top: 0;
  padding-top: clamp(1.15rem, 2vw, 1.6rem);
  padding-bottom: clamp(1.8rem, 3vw, 2.5rem);
}

body.ngw-site-design .ngw-home-content {
  width: min(1120px, calc(100% - 56px));
  padding-top: clamp(4.6rem, 7vw, 6.4rem);
  padding-bottom: clamp(4.2rem, 6vw, 5.8rem);
}

body.ngw-site-design .ngw-home-section-head {
  margin-bottom: clamp(1.8rem, 3vw, 2.5rem);
}

body.ngw-site-design .ngw-home-section-head h2 {
  max-width: 12.5em;
  font-size: clamp(2.45rem, 3.7vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

body.ngw-site-design .ngw-home-services {
  padding-top: clamp(4rem, 6vw, 5.2rem);
}

@media (max-width: 1100px) {
  body.ngw-site-design .ngw-home-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  body.ngw-site-design .ngw-home-hero__content {
    max-width: 38rem;
  }

  body.ngw-site-design .ngw-home-title {
    font-size: clamp(3.1rem, 9vw, 5rem);
  }

  body.ngw-site-design .ngw-home-visual-card {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  body.ngw-site-design .ngw-home-hero,
  body.ngw-site-design .ngw-home-content {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  body.ngw-site-design .ngw-home-hero__inner,
  body.ngw-site-design .ngw-home-kpis--clean,
  body.ngw-site-design .ngw-home-content {
    width: min(100% - 32px, 1120px);
  }

  body.ngw-site-design .ngw-home-title {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }
}
/* END NGW V1 hero proportion final polish */


/* BEGIN NGW V1 KPI FINAL CLEANUP */
body.ngw-site-design .ngw-home-kpis--clean {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem 0 2.8rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
  border-top: 1px solid rgba(7, 24, 47, 0.08);
  border-bottom: 1px solid rgba(7, 24, 47, 0.08);
}

body.ngw-site-design .ngw-home-kpis--clean .ngw-home-kpi--clean {
  min-width: 0;
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  grid-template-areas:
    "icon title"
    "icon meta";
  column-gap: 1rem;
  row-gap: 0.18rem;
  align-items: center;
  padding: 0.2rem 0;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.ngw-site-design .ngw-home-kpis--clean .ngw-home-kpi--clean::before,
body.ngw-site-design .ngw-home-kpis--clean .ngw-home-kpi--clean::after,
body.ngw-site-design .ngw-home-kpis--clean .ngw-home-kpi__icon::before,
body.ngw-site-design .ngw-home-kpis--clean .ngw-home-kpi__icon::after {
  content: none !important;
  display: none !important;
}

body.ngw-site-design .ngw-home-kpis--clean .ngw-home-kpi__icon {
  grid-area: icon;
  width: 3.2rem;
  height: 3.2rem;
  min-width: 3.2rem;
  min-height: 3.2rem;
  margin: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: start;
  overflow: hidden;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #ffffff;
  background: linear-gradient(135deg, #0b7580 0%, #18bcc9 100%);
  box-shadow: 0 16px 34px rgba(11, 117, 128, 0.18);
}

body.ngw-site-design .ngw-home-kpis--clean .ngw-home-kpi--clean strong {
  grid-area: title;
  display: block;
  margin: 0;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.15;
  color: #07182f;
}

body.ngw-site-design .ngw-home-kpis--clean .ngw-home-kpi--clean > span:not(.ngw-home-kpi__icon) {
  grid-area: meta;
  display: block;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #6c7e93;
}

@media (max-width: 1100px) {
  body.ngw-site-design .ngw-home-kpis--clean {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body.ngw-site-design .ngw-home-kpis--clean {
    grid-template-columns: 1fr;
  }
}
/* END NGW V1 KPI FINAL CLEANUP */



/* BEGIN NGW V1 language switcher polish */
body.ngw-site-design .ngw-language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 55;
}

body.ngw-site-design .ngw-language-switcher__button {
  height: 2.65rem;
  min-width: 4.4rem;
  padding: 0 0.82rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(7, 24, 47, 0.11);
  background: rgba(255, 255, 255, 0.78);
  color: #07182f;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(7, 24, 47, 0.06);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

body.ngw-site-design .ngw-language-switcher__button:hover,
body.ngw-site-design .ngw-language-switcher__button:focus-visible {
  background: #ffffff;
  border-color: rgba(11, 117, 128, 0.26);
  box-shadow: 0 16px 38px rgba(7, 24, 47, 0.10);
  transform: translateY(-1px);
}

body.ngw-site-design .ngw-language-switcher__chevron {
  font-size: 0.78rem;
  color: #0b7580;
  transform: translateY(-1px);
}

body.ngw-site-design .ngw-language-switcher__menu {
  position: absolute;
  top: calc(100% + 0.62rem);
  right: 0;
  min-width: 10.6rem;
  padding: 0.45rem;
  display: grid;
  gap: 0.15rem;
  border-radius: 18px;
  border: 1px solid rgba(7, 24, 47, 0.10);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 70px rgba(7, 24, 47, 0.16);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.35rem);
  pointer-events: none;
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

body.ngw-site-design .ngw-language-switcher.is-open .ngw-language-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

body.ngw-site-design .ngw-language-switcher__menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.35rem;
  padding: 0.48rem 0.72rem;
  border-radius: 12px;
  color: #263d56;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

body.ngw-site-design .ngw-language-switcher__menu a:hover,
body.ngw-site-design .ngw-language-switcher__menu a:focus-visible,
body.ngw-site-design .ngw-language-switcher__menu a.is-active {
  color: #07182f;
  background: #edf7f8;
}

body.ngw-site-design .ngw-language-switcher__menu a.is-active::after {
  content: "✓";
  color: #0b7580;
  font-weight: 900;
}

@media (max-width: 980px) {
  body.ngw-site-design .ngw-language-switcher {
    order: 3;
  }

  body.ngw-site-design .ngw-language-switcher__menu {
    right: auto;
    left: 0;
  }
}
/* END NGW V1 language switcher polish */

/* BEGIN NGW V1 footer premium content polish */
body.ngw-site-design .ngw-site-header__brand {
  min-width: 188px;
}

body.ngw-site-design .ngw-site-header__logo {
  width: 186px;
  max-width: 186px;
  height: auto;
  max-height: none;
  object-fit: contain;
}

body.ngw-site-design .ngw-site-footer {
  margin-top: clamp(4rem, 7vw, 6rem);
  padding: 0;
  background: transparent;
  color: #22364d;
}

body.ngw-site-design .ngw-site-footer__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(1.2rem, 2vw, 1.6rem) 0 2rem;
  border-top: 1px solid rgba(7, 24, 47, 0.08);
}

body.ngw-site-design .ngw-site-footer__top {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: clamp(1.4rem, 2.6vw, 2.3rem);
  align-items: start;
}

body.ngw-site-design .ngw-site-footer__brand-card {
  padding: 2rem 1.9rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 24, 47, 0.06);
  box-shadow: 0 22px 60px rgba(7, 24, 47, 0.08);
  backdrop-filter: blur(10px);
}

body.ngw-site-design .ngw-site-footer__logo {
  display: block;
  width: 220px;
  max-width: min(100%, 220px);
  height: auto;
  margin-bottom: 1.5rem;
}

body.ngw-site-design .ngw-site-footer__brand-card p {
  margin: 0;
  color: #5e7288;
  font-size: 1.04rem;
  line-height: 1.9;
}

body.ngw-site-design .ngw-site-footer__brand-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.35rem;
  color: #0b7580;
  font-weight: 800;
  text-decoration: none;
}

body.ngw-site-design .ngw-site-footer__brand-link:hover,
body.ngw-site-design .ngw-site-footer__brand-link:focus-visible {
  color: #07182f;
}

body.ngw-site-design .ngw-site-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

body.ngw-site-design .ngw-site-footer__column {
  min-width: 0;
}

body.ngw-site-design .ngw-site-footer__column h4 {
  margin: 0 0 0.5rem;
  color: #07182f;
  font-size: 1.02rem;
  font-weight: 800;
}

body.ngw-site-design .ngw-site-footer__column p {
  margin: 0 0 0.8rem;
  color: #6a7d91;
  font-size: 0.95rem;
  line-height: 1.6;
}

body.ngw-site-design .ngw-site-footer__column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.ngw-site-design .ngw-site-footer__column li + li {
  margin-top: 0.42rem;
}

body.ngw-site-design .ngw-site-footer__column a {
  color: #6f866e;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
  line-height: 1.55;
}

body.ngw-site-design .ngw-site-footer__column a:hover,
body.ngw-site-design .ngw-site-footer__column a:focus-visible {
  color: #0b7580;
}

body.ngw-site-design .ngw-site-footer__meta {
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(7, 24, 47, 0.08);
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(260px, 1fr);
  gap: 1rem 1.6rem;
  align-items: center;
}

body.ngw-site-design .ngw-site-footer__company strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #07182f;
  font-size: 1rem;
  font-weight: 800;
}

body.ngw-site-design .ngw-site-footer__company p {
  margin: 0;
  color: #6a7d91;
  line-height: 1.7;
}

body.ngw-site-design .ngw-site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-start;
}

body.ngw-site-design .ngw-site-footer__social a {
  display: inline-flex;
  align-items: center;
  min-height: 2.45rem;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(7, 24, 47, 0.08);
  color: #29415b;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(7, 24, 47, 0.05);
}

body.ngw-site-design .ngw-site-footer__social a:hover,
body.ngw-site-design .ngw-site-footer__social a:focus-visible {
  color: #07182f;
  border-color: rgba(11, 117, 128, 0.22);
  background: #ffffff;
}

body.ngw-site-design .ngw-site-footer__bottom {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(7, 24, 47, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.2rem;
  align-items: center;
  justify-content: flex-start;
}

body.ngw-site-design .ngw-site-footer__bottom span {
  color: #6c7e93;
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 1120px) {
  body.ngw-site-design .ngw-site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  body.ngw-site-design .ngw-site-header__brand {
    min-width: 160px;
  }

  body.ngw-site-design .ngw-site-header__logo {
    width: 168px;
    max-width: 168px;
  }

  body.ngw-site-design .ngw-site-footer__top,
  body.ngw-site-design .ngw-site-footer__meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body.ngw-site-design .ngw-site-footer__inner {
    width: min(100% - 28px, 1180px);
  }

  body.ngw-site-design .ngw-site-footer__columns {
    grid-template-columns: 1fr;
  }

  body.ngw-site-design .ngw-site-footer__brand-card {
    padding: 1.5rem 1.2rem;
  }

  body.ngw-site-design .ngw-site-footer__logo {
    width: 188px;
    max-width: 188px;
  }
}
/* END NGW V1 footer premium content polish */

/* BEGIN NGW V1 footer layout hard repair */
body.ngw-site-design footer.ngw-site-footer {
  margin-top: clamp(4rem, 7vw, 6rem) !important;
  padding: 0 !important;
  color: #22364d !important;
  background: transparent !important;
  border-top: 0 !important;
  overflow: visible !important;
}

body.ngw-site-design footer.ngw-site-footer::before,
body.ngw-site-design footer.ngw-site-footer::after {
  content: none !important;
  display: none !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__inner {
  display: block !important;
  width: min(1180px, calc(100% - 48px)) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: clamp(1.2rem, 2vw, 1.6rem) 0 2rem !important;
  border-top: 1px solid rgba(7, 24, 47, 0.08) !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__top {
  display: grid !important;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr) !important;
  gap: clamp(2rem, 4vw, 3.2rem) !important;
  align-items: start !important;
  width: 100% !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__brand {
  display: block !important;
  max-width: none !important;
  min-width: 0 !important;
  width: 100% !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__brand-card {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 2.1rem 2rem !important;
  border-radius: 28px !important;
  background: rgba(255, 255, 255, 0.76) !important;
  border: 1px solid rgba(7, 24, 47, 0.07) !important;
  box-shadow: 0 22px 60px rgba(7, 24, 47, 0.08) !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__logo {
  display: block !important;
  width: 230px !important;
  max-width: min(100%, 230px) !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 0 1.6rem !important;
  object-fit: contain !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__brand-card p {
  margin: 0 !important;
  color: #5e7288 !important;
  font-size: 1.04rem !important;
  line-height: 1.85 !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__brand-link {
  display: inline-flex !important;
  align-items: center !important;
  margin-top: 1.35rem !important;
  color: #0b7580 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__columns {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(1.2rem, 2.6vw, 2rem) !important;
  align-items: start !important;
  width: 100% !important;
  min-width: 0 !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column {
  display: block !important;
  min-width: 0 !important;
  max-width: none !important;
  width: auto !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column h4 {
  margin: 0 0 0.55rem !important;
  color: #07182f !important;
  font-size: 1.02rem !important;
  font-weight: 850 !important;
  line-height: 1.25 !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column p {
  margin: 0 0 0.85rem !important;
  color: #6a7d91 !important;
  font-size: 0.94rem !important;
  line-height: 1.58 !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column ul {
  display: grid !important;
  gap: 0.42rem !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column li {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.45 !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column a {
  display: inline !important;
  color: #617a63 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 0.16em !important;
  line-height: 1.45 !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column a:hover,
body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column a:focus-visible {
  color: #0b7580 !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__meta {
  margin-top: 2rem !important;
  padding-top: 1.5rem !important;
  border-top: 1px solid rgba(7, 24, 47, 0.08) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr) !important;
  gap: 1rem 2rem !important;
  align-items: center !important;
  width: 100% !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__company strong {
  display: block !important;
  margin: 0 0 0.35rem !important;
  color: #07182f !important;
  font-size: 1rem !important;
  font-weight: 850 !important;
  line-height: 1.3 !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__company p {
  margin: 0 !important;
  color: #6a7d91 !important;
  line-height: 1.7 !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__social {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.7rem !important;
  justify-content: flex-end !important;
  align-items: center !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__social a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 2.45rem !important;
  padding: 0.62rem 0.95rem !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.76) !important;
  border: 1px solid rgba(7, 24, 47, 0.08) !important;
  color: #29415b !important;
  text-decoration: none !important;
  font-weight: 750 !important;
  white-space: nowrap !important;
  box-shadow: 0 8px 24px rgba(7, 24, 47, 0.05) !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__bottom {
  margin-top: 1.45rem !important;
  padding-top: 1.1rem !important;
  border-top: 1px solid rgba(7, 24, 47, 0.08) !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.45rem 1.2rem !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__bottom span {
  color: #6c7e93 !important;
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
}

@media (max-width: 1180px) {
  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__top {
    grid-template-columns: 1fr !important;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__brand-card {
    max-width: 520px !important;
  }
}

@media (max-width: 980px) {
  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__meta {
    grid-template-columns: 1fr !important;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__social {
    justify-content: flex-start !important;
  }
}

@media (max-width: 640px) {
  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__inner {
    width: min(100% - 28px, 1180px) !important;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__columns {
    grid-template-columns: 1fr !important;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__brand-card {
    padding: 1.5rem 1.2rem !important;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__logo {
    width: 190px !important;
    max-width: 190px !important;
  }
}
/* END NGW V1 footer layout hard repair */


/* BEGIN NGW V1 logo and footer final polish */

/* Header logo groesser und praesent */
body.ngw-site-design .ngw-site-header__brand {
  min-width: 220px;
}

body.ngw-site-design .ngw-site-header__logo {
  width: 210px;
  max-width: 210px;
  height: auto;
}

/* Footer insgesamt ruhiger und hochwertiger */
body.ngw-site-design footer.ngw-site-footer {
  padding-top: 3.2rem;
  padding-bottom: 1.4rem;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__inner {
  max-width: 1240px;
  gap: 2.4rem;
}

/* Oberer Footer-Bereich */
body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__top {
  align-items: start;
  gap: 2.4rem;
}

/* Brand Card links */
body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__brand-card {
  min-height: 420px;
  padding: 2.5rem 2.3rem;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__brand-card .ngw-site-footer__logo,
body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__brand-card img {
  width: 210px;
  max-width: 100%;
  height: auto;
  display: block;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__brand-card p {
  max-width: 20rem;
  font-size: 1.08rem;
  line-height: 1.75;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__brand-card a {
  font-weight: 800;
  font-size: 1.02rem;
}

/* Linkspalten sauberer */
body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__columns {
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 2rem 2.2rem;
  align-items: start;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column h4,
body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column strong {
  margin-bottom: 0.9rem;
  font-size: 1.06rem;
  line-height: 1.3;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column li {
  margin: 0 0 0.55rem;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column a {
  font-size: 1rem;
  line-height: 1.6;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

/* Meta-Bereich */
body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__meta {
  grid-template-columns: minmax(0, 1.5fr) auto;
  gap: 1.6rem 2rem;
  align-items: center;
  padding-top: 2rem;
  margin-top: 1.4rem;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__meta strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.22rem;
  line-height: 1.3;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__meta p {
  margin: 0;
  max-width: 48rem;
  font-size: 1rem;
  line-height: 1.75;
}

/* Social / Shortcut Chips */
body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__social a {
  min-height: 44px;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
}

/* Bottom-Zeile */
body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__bottom {
  margin-top: 1.5rem;
  padding-top: 1.15rem;
  gap: 0.75rem 1.6rem;
  border-top: 1px solid rgba(7, 24, 47, 0.08);
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__bottom span {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1180px) {
  body.ngw-site-design .ngw-site-header__brand {
    min-width: 190px;
  }

  body.ngw-site-design .ngw-site-header__logo {
    width: 180px;
    max-width: 180px;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__top {
    grid-template-columns: 1fr;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__meta {
    grid-template-columns: 1fr;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__social {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  body.ngw-site-design .ngw-site-header__brand {
    min-width: 150px;
  }

  body.ngw-site-design .ngw-site-header__logo {
    width: 156px;
    max-width: 156px;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__columns {
    grid-template-columns: 1fr;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__brand-card {
    min-height: auto;
    padding: 2rem 1.5rem;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__brand-card .ngw-site-footer__logo,
  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__brand-card img {
    width: 170px;
  }
}
/* END NGW V1 logo and footer final polish */

/* BEGIN NGW V1 footer legal content polish */
body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__columns {
  grid-template-columns: 1.12fr 1fr 1fr 1fr !important;
  gap: clamp(1.35rem, 2.8vw, 2.35rem) !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column h4 {
  color: #07182f !important;
  letter-spacing: -0.01em !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column p {
  color: #667a90 !important;
  line-height: 1.68 !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column--legal p {
  color: #41566d !important;
  font-weight: 600 !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column ul {
  margin-top: 0.85rem !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column a[href^="mailto:"],
body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column a[href^="tel:"] {
  color: #0b7580 !important;
  font-weight: 750 !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__meta {
  align-items: start !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__company strong {
  color: #07182f !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__social a {
  background: #ffffff !important;
}

@media (max-width: 1180px) {
  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__columns {
    grid-template-columns: 1fr !important;
  }
}
/* END NGW V1 footer legal content polish */


/* BEGIN NGW V1 footer readability polish */

/* Mehr Ruhe und lesbare Spalten */
body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__inner {
  max-width: 1280px !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__top {
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr) !important;
  gap: clamp(2.4rem, 4vw, 4rem) !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__brand-card {
  min-height: 390px !important;
  padding: 2.25rem 2.15rem !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__columns {
  grid-template-columns: repeat(2, minmax(220px, 1fr)) !important;
  gap: 2.2rem 3rem !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column {
  max-width: 23rem !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column h4 {
  margin-bottom: 0.7rem !important;
  font-size: 1.08rem !important;
  line-height: 1.25 !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column p {
  font-size: 1rem !important;
  line-height: 1.72 !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column a {
  font-size: 1rem !important;
  line-height: 1.62 !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__email {
  word-break: normal !important;
  overflow-wrap: normal !important;
  white-space: nowrap !important;
}

/* Auf sehr breiten Monitoren darf es wieder 4-spaltig werden */
@media (min-width: 1560px) {
  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__inner {
    max-width: 1380px !important;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__columns {
    grid-template-columns: 1.15fr 1fr 1.15fr 1fr !important;
    gap: 2rem 2.4rem !important;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column {
    max-width: none !important;
  }
}

@media (max-width: 1180px) {
  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__top {
    grid-template-columns: 1fr !important;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__brand-card {
    max-width: 440px !important;
  }
}

@media (max-width: 760px) {
  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__columns {
    grid-template-columns: 1fr !important;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__email {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
}
/* END NGW V1 footer readability polish */

/* BEGIN NGW V1 footer 2x2 final polish */
body.ngw-site-design footer.ngw-site-footer {
  padding-top: clamp(3.5rem, 6vw, 5.5rem) !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__inner {
  width: min(1280px, calc(100% - 56px)) !important;
  max-width: 1280px !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__top {
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr) !important;
  gap: clamp(2.6rem, 4.5vw, 4.4rem) !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__brand-card {
  min-height: 400px !important;
  padding: 2.3rem 2.15rem !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__brand-card .ngw-site-footer__logo,
body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__brand-card img {
  width: 220px !important;
  max-width: 220px !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__columns {
  grid-template-columns: repeat(2, minmax(260px, 1fr)) !important;
  gap: 2.4rem 4rem !important;
  align-items: start !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column {
  max-width: 28rem !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column h4 {
  margin-bottom: 0.75rem !important;
  font-size: 1.08rem !important;
  line-height: 1.28 !important;
  white-space: normal !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column p {
  max-width: 24rem !important;
  margin-bottom: 0.95rem !important;
  font-size: 0.98rem !important;
  line-height: 1.7 !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column ul {
  gap: 0.38rem !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column a {
  font-size: 0.98rem !important;
  line-height: 1.56 !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__email {
  white-space: nowrap !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__meta {
  margin-top: 2.3rem !important;
  padding-top: 1.7rem !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 1.5rem 2.2rem !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__company p {
  max-width: 58rem !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__social {
  justify-content: flex-end !important;
  align-content: center !important;
  max-width: 34rem !important;
}

body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__bottom {
  margin-top: 1.35rem !important;
  padding-top: 1rem !important;
}

@media (min-width: 1560px) {
  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__columns {
    grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
    gap: 2.5rem 4.5rem !important;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__column {
    max-width: 30rem !important;
  }
}

@media (max-width: 1180px) {
  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__top {
    grid-template-columns: 1fr !important;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__brand-card {
    max-width: 440px !important;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__meta {
    grid-template-columns: 1fr !important;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__social {
    justify-content: flex-start !important;
  }
}

@media (max-width: 780px) {
  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__inner {
    width: min(100% - 28px, 1280px) !important;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__columns {
    grid-template-columns: 1fr !important;
    gap: 1.8rem !important;
  }

  body.ngw-site-design footer.ngw-site-footer .ngw-site-footer__email {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
}
/* END NGW V1 footer 2x2 final polish */

/* BEGIN NGW V1 language aware links polish */
body.ngw-site-design .ngw-site-footer a[data-ngw-i18n-link] {
  overflow-wrap: anywhere;
}

body.ngw-site-design .ngw-language-switcher__menu a[aria-current="true"] {
  font-weight: 800;
}
/* END NGW V1 language aware links polish */

/* STEP51 mobile header, menu and hero final polish */
:root {
  --ngw-page-pad-mobile: clamp(18px, 5vw, 26px);
  --ngw-page-pad-desktop: clamp(40px, 6vw, 96px);
  --ngw-content-max: 1480px;
}

/* Prevent accidental horizontal overflow on phones */
html,
body.ngw-site-design {
  max-width: 100%;
  overflow-x: hidden;
}

/* Full-width sections with controlled readable inner width */
body.ngw-site-design .ngw-site-header,
body.ngw-site-design .ngw-home-hero,
body.ngw-site-design .ngw-home-kpis,
body.ngw-site-design .ngw-home-content,
body.ngw-site-design .ngw-content-head,
body.ngw-site-design .ngw-content-section,
body.ngw-site-design .ngw-site-footer {
  padding-left: var(--ngw-page-pad-desktop);
  padding-right: var(--ngw-page-pad-desktop);
}

body.ngw-site-design .ngw-site-header__inner,
body.ngw-site-design .ngw-home-hero__inner,
body.ngw-site-design .ngw-home-kpis,
body.ngw-site-design .ngw-home-content > *,
body.ngw-site-design .ngw-site-footer > * {
  max-width: var(--ngw-content-max);
  margin-left: auto;
  margin-right: auto;
}

/* Logo: make SYNEDAT visibly larger */
body.ngw-site-design .ngw-site-header__logo {
  width: clamp(185px, 15vw, 270px) !important;
  max-width: 100%;
  height: auto !important;
  object-fit: contain;
}

body.ngw-site-design .ngw-site-header__brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

/* Mobile header layout */
@media (max-width: 760px) {
  body.ngw-site-design .ngw-site-header {
    padding: 22px var(--ngw-page-pad-mobile) 20px;
    background: #ffffff;
  }

  body.ngw-site-design .ngw-site-header__inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand toggle"
      "cta cta"
      "language language";
    align-items: center;
    gap: 12px 14px;
    width: 100%;
    max-width: none;
  }

  body.ngw-site-design .ngw-site-header__brand {
    grid-area: brand;
    justify-self: start;
  }

  body.ngw-site-design .ngw-site-header__logo {
    width: clamp(150px, 43vw, 198px) !important;
    max-height: 48px;
  }

  body.ngw-site-design .ngw-site-header__toggle {
    grid-area: toggle;
    justify-self: end;
    min-width: 48px;
    min-height: 42px;
    border-radius: 999px;
    z-index: 1015;
  }

  body.ngw-site-design .ngw-site-header__cta {
    grid-area: cta;
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    margin-top: 4px;
    border-radius: 12px;
    font-weight: 800;
  }

  body.ngw-site-design .ngw-language-switcher {
    grid-area: language;
    justify-self: start;
    margin-top: 2px;
  }

  body.ngw-site-design .ngw-language-switcher__button {
    min-height: 36px;
    border-radius: 999px;
  }

  /* Real mobile menu drawer */
  body.ngw-site-design [data-ngw-primary-nav],
  body.ngw-site-design .ngw-site-header__nav {
    position: fixed !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 1010;
    display: flex !important;
    flex-direction: column;
    width: min(86vw, 380px);
    height: 100dvh;
    padding: 102px 28px 34px;
    background:
      radial-gradient(circle at 18% 0%, rgba(10, 190, 210, .28), transparent 35%),
      linear-gradient(180deg, #061827 0%, #020b14 100%);
    box-shadow: -24px 0 70px rgba(0, 15, 35, .34);
    transform: translateX(105%);
    transition: transform .28s ease;
    overflow-y: auto;
  }

  body.ngw-site-design.ngw-menu-open [data-ngw-primary-nav],
  body.ngw-site-design.ngw-menu-open .ngw-site-header__nav,
  body.ngw-site-design [data-ngw-primary-nav].is-open,
  body.ngw-site-design .ngw-site-header__nav.is-open {
    transform: translateX(0);
  }

  body.ngw-site-design [data-ngw-primary-nav] a,
  body.ngw-site-design .ngw-site-header__nav a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 14px 0;
    color: #f6fbff !important;
    border-bottom: 1px solid rgba(255,255,255,.14);
    font-size: 1.08rem;
    font-weight: 800;
    text-decoration: none;
  }

  body.ngw-site-design [data-ngw-primary-nav] a:hover,
  body.ngw-site-design .ngw-site-header__nav a:hover {
    color: #20cfe0 !important;
  }

  body.ngw-site-design.ngw-menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(2, 12, 24, .42);
    backdrop-filter: blur(2px);
  }

  body.ngw-site-design.ngw-menu-open .ngw-site-header {
    position: relative;
    z-index: 1016;
  }
}

/* Mobile hero: no clipping, no overlapping visual */
@media (max-width: 760px) {
  body.ngw-site-design .ngw-home-hero {
    padding: 48px var(--ngw-page-pad-mobile) 58px;
    overflow: hidden;
  }

  body.ngw-site-design .ngw-home-hero__inner {
    display: block !important;
    width: 100%;
    max-width: none;
  }

  body.ngw-site-design .ngw-home-hero__content {
    max-width: 100%;
  }

  body.ngw-site-design .ngw-home-eyebrow {
    font-size: .72rem;
    line-height: 1.2;
    letter-spacing: .18em;
    margin-bottom: 18px;
  }

  body.ngw-site-design .ngw-home-title,
  body.ngw-site-design #ngw-home-title {
    max-width: 9.1ch;
    font-size: clamp(2.72rem, 12.2vw, 4.15rem) !important;
    line-height: .94 !important;
    letter-spacing: -.055em !important;
    overflow: visible;
    text-wrap: balance;
  }

  body.ngw-site-design .ngw-home-title span,
  body.ngw-site-design #ngw-home-title span {
    display: block;
  }

  body.ngw-site-design .ngw-home-hero__lead {
    max-width: 32rem;
    margin-top: 22px;
    font-size: clamp(1.02rem, 4vw, 1.18rem);
    line-height: 1.55;
  }

  body.ngw-site-design .ngw-home-hero__visual {
    display: none !important;
  }

  body.ngw-site-design .ngw-home-kpis {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px var(--ngw-page-pad-mobile);
  }

  body.ngw-site-design .ngw-home-content {
    padding: 52px var(--ngw-page-pad-mobile);
  }

  body.ngw-site-design .ngw-home-card-grid,
  body.ngw-site-design .ngw-home-knowledge__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body.ngw-site-design .ngw-home-card,
  body.ngw-site-design .ngw-home-case-card,
  body.ngw-site-design .ngw-home-knowledge-card,
  body.ngw-site-design .ngw-home-image-card {
    border-radius: 22px;
  }
}

/* Very small phones */
@media (max-width: 390px) {
  body.ngw-site-design .ngw-site-header__logo {
    width: clamp(138px, 42vw, 176px) !important;
  }

  body.ngw-site-design .ngw-home-title,
  body.ngw-site-design #ngw-home-title {
    font-size: clamp(2.48rem, 11.7vw, 3.65rem) !important;
    letter-spacing: -.05em !important;
  }
}

/* Desktop: keep broad, not cramped */
@media (min-width: 761px) {
  body.ngw-site-design .ngw-site-header__inner {
    width: 100%;
  }

  body.ngw-site-design .ngw-home-hero__inner {
    width: 100%;
  }
}
/* END STEP51 mobile header, menu and hero final polish */


/* STEP52 mobile header, logo, menu and hero final fix */
:root {
  --ngw-mobile-pad: clamp(16px, 5vw, 22px);
  --ngw-logo-mobile-width: clamp(132px, 42vw, 178px);
  --ngw-logo-desktop-width: clamp(178px, 15vw, 260px);
}

/* Keep full viewport width, but readable inner padding */
html,
body.ngw-site-design {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.ngw-site-design {
  font-family: Inter, Roboto, "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Header: compact and usable on mobile */
body.ngw-site-design .ngw-site-header {
  width: 100%;
  padding: 18px var(--ngw-mobile-pad) 10px;
  background: #ffffff;
}

body.ngw-site-design .ngw-site-header__inner {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  align-items: center;
  gap: 12px;
}

/* Logo: force real visible size */
body.ngw-site-design .ngw-site-header__brand {
  display: flex;
  align-items: center;
  min-width: 0;
  width: auto;
  max-width: none;
}

body.ngw-site-design .ngw-site-header__brand img,
body.ngw-site-design img.ngw-site-header__logo,
body.ngw-site-design .ngw-site-header__logo {
  display: block !important;
  width: var(--ngw-logo-desktop-width) !important;
  min-width: 132px !important;
  max-width: min(48vw, 260px) !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
}

/* Menu button */
body.ngw-site-design .ngw-site-header__toggle,
body.ngw-site-design [data-ngw-menu-toggle] {
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

/* CTA should not glue to viewport edges */
body.ngw-site-design .ngw-site-header__cta {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  min-height: 42px;
  margin: 2px 0 0;
  padding: 11px 16px;
  border-radius: 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
}

/* Language switcher: smaller and closer */
body.ngw-site-design .ngw-language-switcher {
  margin-top: 8px;
}

body.ngw-site-design .ngw-language-switcher__button {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

/* Mobile nav panel */
body.ngw-site-design .ngw-site-header__nav {
  grid-column: 1 / -1;
  width: 100%;
}

@media (max-width: 899px) {
  body.ngw-site-design .ngw-site-header__nav {
    display: none;
    margin-top: 10px;
    padding: 12px;
    border: 1px solid rgba(9, 26, 52, .10);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(9, 26, 52, .12);
  }

  body.ngw-site-design .ngw-site-header__nav.is-open,
  body.ngw-site-design .ngw-site-header__nav[data-ngw-open="1"] {
    display: block;
  }

  body.ngw-site-design .ngw-site-header__nav a {
    display: block;
    padding: 13px 12px;
    border-radius: 12px;
    color: #071a36;
    font-weight: 750;
    text-decoration: none;
  }

  body.ngw-site-design .ngw-site-header__nav a + a {
    margin-top: 4px;
  }

  body.ngw-site-design .ngw-site-header__nav a:hover,
  body.ngw-site-design .ngw-site-header__nav a:focus {
    background: #edf7fa;
  }
}

/* Hero: reduce mobile height pressure */
body.ngw-site-design .ngw-home-hero {
  width: 100%;
  padding: 34px var(--ngw-mobile-pad) 42px;
}

body.ngw-site-design .ngw-home-hero__inner {
  width: 100%;
  max-width: none;
  display: grid;
  gap: 24px;
}

body.ngw-site-design .ngw-home-title {
  max-width: 11ch;
  font-size: clamp(42px, 13vw, 64px);
  line-height: .93;
  letter-spacing: -0.065em;
  margin: 0;
}

body.ngw-site-design .ngw-home-title span,
body.ngw-site-design .ngw-home-title strong {
  line-height: inherit;
}

body.ngw-site-design .ngw-home-hero__lead {
  max-width: 34rem;
  margin-top: 18px;
  font-size: clamp(16px, 4.5vw, 20px);
  line-height: 1.45;
}

body.ngw-site-design .ngw-home-eyebrow {
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: .16em;
}

/* Avoid visual card taking too much first-screen space on small phones */
@media (max-width: 599px) {
  body.ngw-site-design .ngw-site-header {
    padding-top: 16px;
  }

  body.ngw-site-design .ngw-site-header__brand img,
  body.ngw-site-design img.ngw-site-header__logo,
  body.ngw-site-design .ngw-site-header__logo {
    width: var(--ngw-logo-mobile-width) !important;
    min-width: 132px !important;
  }

  body.ngw-site-design .ngw-home-hero {
    padding-top: 30px;
  }

  body.ngw-site-design .ngw-home-title {
    font-size: clamp(40px, 12.2vw, 54px);
    max-width: 10.5ch;
  }

  body.ngw-site-design .ngw-home-hero__visual {
    display: none;
  }
}

/* Desktop keeps premium max-width rhythm */
@media (min-width: 900px) {
  body.ngw-site-design .ngw-site-header {
    padding-left: clamp(32px, 5vw, 80px);
    padding-right: clamp(32px, 5vw, 80px);
  }

  body.ngw-site-design .ngw-site-header__inner,
  body.ngw-site-design .ngw-home-hero__inner,
  body.ngw-site-design .ngw-home-content,
  body.ngw-site-design .ngw-home-kpis,
  body.ngw-site-design .ngw-site-footer__inner {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }

  body.ngw-site-design .ngw-site-header__inner {
    display: flex;
  }

  body.ngw-site-design .ngw-site-header__cta {
    width: auto;
    grid-column: auto;
  }

  body.ngw-site-design .ngw-site-header__nav {
    display: flex;
  }

  body.ngw-site-design .ngw-home-hero {
    padding-left: clamp(32px, 5vw, 80px);
    padding-right: clamp(32px, 5vw, 80px);
  }
}

/* END STEP52 */


/* STEP53 desktop width, spacing and menu polish */
:root {
  --ngw-site-max-wide: 1680px;
  --ngw-site-max-content: 1320px;
  --ngw-site-pad-x: clamp(24px, 4.5vw, 96px);
}

/* Use the viewport better on large screens */
body.ngw-site-design .ngw-site-header__inner,
body.ngw-site-design .ngw-home-hero__inner,
body.ngw-site-design .ngw-home-kpis,
body.ngw-site-design .ngw-home-content,
body.ngw-site-design .ngw-site-footer__inner {
  width: 100%;
  max-width: var(--ngw-site-max-wide);
  margin-left: auto;
  margin-right: auto;
}

/* Header: stronger logo and calmer navigation */
@media (min-width: 900px) {
  body.ngw-site-design .ngw-site-header {
    padding-left: var(--ngw-site-pad-x);
    padding-right: var(--ngw-site-pad-x);
  }

  body.ngw-site-design .ngw-site-header__inner {
    gap: clamp(24px, 2vw, 42px);
  }

  body.ngw-site-design .ngw-site-header__brand img,
  body.ngw-site-design img.ngw-site-header__logo,
  body.ngw-site-design .ngw-site-header__logo {
    width: clamp(190px, 11vw, 270px) !important;
    max-width: 270px !important;
  }

  body.ngw-site-design .ngw-site-header__nav {
    gap: clamp(18px, 1.4vw, 30px);
  }

  body.ngw-site-design .ngw-site-header__nav a {
    font-size: clamp(15px, .82vw, 18px);
    font-weight: 750;
  }
}

/* Hero: fuller desktop composition */
@media (min-width: 1100px) {
  body.ngw-site-design .ngw-home-hero {
    padding-left: var(--ngw-site-pad-x);
    padding-right: var(--ngw-site-pad-x);
    padding-top: clamp(70px, 7vh, 120px);
    padding-bottom: clamp(70px, 7vh, 120px);
  }

  body.ngw-site-design .ngw-home-hero__inner {
    grid-template-columns: minmax(520px, .95fr) minmax(560px, 1.1fr);
    align-items: center;
    gap: clamp(80px, 8vw, 180px);
  }

  body.ngw-site-design .ngw-home-title {
    max-width: 12ch;
    font-size: clamp(64px, 4.9vw, 106px);
    line-height: .94;
    letter-spacing: -0.07em;
  }

  body.ngw-site-design .ngw-home-hero__lead {
    max-width: 680px;
    font-size: clamp(20px, 1.05vw, 24px);
    line-height: 1.5;
  }

  body.ngw-site-design .ngw-home-hero__visual {
    transform: scale(.92);
    transform-origin: center right;
  }
}

/* KPI row should feel connected to the hero */
body.ngw-site-design .ngw-home-kpis {
  padding-top: clamp(28px, 3vw, 52px);
  padding-bottom: clamp(44px, 4vw, 72px);
}

/* Sections: less empty vertical air, more usable width */
body.ngw-site-design .ngw-home-content {
  padding-top: clamp(72px, 7vw, 130px);
  padding-bottom: clamp(72px, 7vw, 130px);
}

body.ngw-site-design .ngw-home-section-head {
  max-width: 960px;
}

body.ngw-site-design .ngw-home-section-head h2 {
  font-size: clamp(46px, 3.6vw, 82px);
  line-height: .98;
  letter-spacing: -0.06em;
}

/* Cards: wider and more consistent */
@media (min-width: 1100px) {
  body.ngw-site-design .ngw-home-card-grid {
    gap: clamp(24px, 1.8vw, 36px);
  }

  body.ngw-site-design .ngw-home-card-grid--services,
  body.ngw-site-design .ngw-home-card-grid--solutions,
  body.ngw-site-design .ngw-home-card-grid--industries {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.ngw-site-design .ngw-home-card-grid--cases,
  body.ngw-site-design .ngw-home-knowledge__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.ngw-site-design .ngw-home-card,
  body.ngw-site-design .ngw-home-image-card,
  body.ngw-site-design .ngw-home-case-card,
  body.ngw-site-design .ngw-home-knowledge-card {
    min-height: 230px;
  }
}

/* CTA band should be a strong full-width visual anchor */
body.ngw-site-design .ngw-home-cta,
body.ngw-site-design .ngw-cta-band {
  max-width: var(--ngw-site-max-wide);
  margin-left: auto;
  margin-right: auto;
}

/* Footer: slightly wider, less cramped */
body.ngw-site-design .ngw-site-footer {
  padding-left: var(--ngw-site-pad-x);
  padding-right: var(--ngw-site-pad-x);
}

/* Mobile: keep logo visible but do not waste height */
@media (max-width: 599px) {
  body.ngw-site-design .ngw-site-header__brand img,
  body.ngw-site-design img.ngw-site-header__logo,
  body.ngw-site-design .ngw-site-header__logo {
    width: clamp(142px, 44vw, 180px) !important;
    min-width: 142px !important;
  }

  body.ngw-site-design .ngw-home-title {
    font-size: clamp(38px, 11.4vw, 52px);
    line-height: .94;
    letter-spacing: -0.06em;
  }
}

/* END STEP53 */

/* STEP54 sticky header, section markers, scroll button */

:root {
  --ngw-header-height: 96px;
  --ngw-marker-size: 14px;
  --ngw-marker-gap: 18px;
  --ngw-marker-right: 28px;
  --ngw-scroll-btn-size: 72px;
  --ngw-scroll-btn-bottom: 34px;
}

/* Sticky / fixed header */
body.ngw-site-design .ngw-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: rgba(248, 250, 252, 0.90);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  transition: box-shadow .25s ease, background .25s ease, transform .25s ease;
}

body.ngw-site-design .ngw-site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.94);
}

/* page offset because header is fixed */
body.ngw-site-design {
  padding-top: var(--ngw-header-height);
}

/* improve anchor scrolling */
body.ngw-site-design section[id],
body.ngw-site-design [data-ngw-marker-section] {
  scroll-margin-top: calc(var(--ngw-header-height) + 24px);
}

/* Right side markers */
body.ngw-site-design .ngw-side-markers {
  position: fixed;
  right: var(--ngw-marker-right);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: var(--ngw-marker-gap);
  align-items: center;
}

body.ngw-site-design .ngw-side-marker {
  width: var(--ngw-marker-size);
  height: var(--ngw-marker-size);
  transform: rotate(45deg);
  border: 1.5px solid rgba(255,255,255,0.9);
  background: #e4c600;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
  opacity: .9;
  cursor: pointer;
}

body.ngw-site-design .ngw-side-marker:hover {
  transform: rotate(45deg) scale(1.14);
}

body.ngw-site-design .ngw-side-marker.is-active {
  background: #129a8e;
  transform: rotate(45deg) scale(1.18);
}

/* optional label tooltip */
body.ngw-site-design .ngw-side-marker[data-label] {
  position: relative;
}

body.ngw-site-design .ngw-side-marker[data-label]::after {
  content: attr(data-label);
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

body.ngw-site-design .ngw-side-marker:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

/* Scroll button */
body.ngw-site-design .ngw-scroll-button {
  position: fixed;
  left: 50%;
  bottom: var(--ngw-scroll-btn-bottom);
  transform: translateX(-50%);
  z-index: 1100;
  width: var(--ngw-scroll-btn-size);
  height: calc(var(--ngw-scroll-btn-size) + 18px);
  border: 0;
  background: transparent;
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}

body.ngw-site-design .ngw-scroll-button__mouse {
  width: 40px;
  height: 58px;
  border: 4px solid rgba(255,255,255,.95);
  border-radius: 24px;
  position: relative;
  box-sizing: border-box;
}

body.ngw-site-design .ngw-scroll-button__mouse::after {
  content: '';
  position: absolute;
  top: 11px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: rgba(255,255,255,.75);
  animation: ngwScrollDot 1.6s infinite;
}

body.ngw-site-design .ngw-scroll-button__text {
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(255,255,255,.95);
}

@keyframes ngwScrollDot {
  0%   { transform: translateY(0); opacity: 0.95; }
  70%  { transform: translateY(18px); opacity: 0.25; }
  100% { transform: translateY(18px); opacity: 0; }
}

/* show on darker hero area, fade later if needed */
body.ngw-site-design .ngw-scroll-button.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

/* desktop only for side markers */
@media (max-width: 1024px) {
  body.ngw-site-design .ngw-side-markers {
    display: none;
  }
}

/* mobile header */
@media (max-width: 767px) {
  :root {
    --ngw-header-height: 84px;
  }

  body.ngw-site-design {
    padding-top: var(--ngw-header-height);
  }

  body.ngw-site-design .ngw-scroll-button {
    bottom: 22px;
    transform: translateX(-50%) scale(.85);
  }

  body.ngw-site-design .ngw-scroll-button__text {
    font-size: 16px;
  }
}

/* END STEP54 */

/* STEP54B BRAND STICKY NAV MARKERS START */

/*
  STEP54B:
  - Sticky header
  - Larger logo
  - Better mobile navigation
  - SYNEDAT legacy brand colors
  - Right-side section markers
  - Hero scroll cue
  - Scroll-to-top button
*/

:root {
  --syn-brand-teal: #118c84;
  --syn-brand-teal-dark: #0c5f62;
  --syn-brand-teal-deep: #064454;
  --syn-brand-blue-deep: #08233f;

  --syn-brand-yellow: #e0c51d;
  --syn-brand-yellow-soft: #cdbb63;

  --syn-brand-sand: #d8d1b6;
  --syn-brand-sand-dark: #9a8f58;

  --syn-brand-ink: #0c1f3a;
  --syn-brand-text: #40516b;
  --syn-brand-muted: #6f7d91;

  --syn-surface-warm: #f6f5ef;
  --syn-surface-soft: #eef3f4;
  --syn-surface-card: #fbfaf6;

  --syn-shadow-soft: 0 18px 46px rgba(8, 35, 63, 0.10);
  --syn-shadow-card: 0 16px 36px rgba(8, 35, 63, 0.12);

  --syn-page-pad: clamp(20px, 4vw, 56px);
  --syn-content-max: 1280px;
  --syn-content-readable: 760px;
  --syn-header-current-height: 112px;
}

html {
  scroll-behavior: smooth;
}

body.ngw-site-design {
  overflow-x: hidden;
  color: var(--syn-brand-text);
  background:
    radial-gradient(circle at 0% 0%, rgba(216, 209, 182, 0.34), transparent 30%),
    radial-gradient(circle at 100% 12%, rgba(17, 140, 132, 0.10), transparent 34%),
    linear-gradient(180deg, var(--syn-surface-warm) 0%, #eef4f7 52%, var(--syn-surface-warm) 100%);
  font-family:
    Inter,
    "Roboto",
    "Helvetica Neue",
    Arial,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

body.ngw-site-design ::selection {
  color: #ffffff;
  background: var(--syn-brand-teal);
}

body.ngw-site-design h1,
body.ngw-site-design h2,
body.ngw-site-design h3,
body.ngw-site-design h4 {
  color: var(--syn-brand-ink);
}

/* Sticky header / Titelzeile */
body.ngw-site-design .ngw-site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1050 !important;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(246, 245, 239, 0.96) 0%, rgba(255, 255, 255, 0.95) 54%, rgba(238, 243, 244, 0.96) 100%) !important;
  border-bottom: 1px solid rgba(12, 95, 98, 0.13) !important;
  box-shadow: 0 1px 0 rgba(8, 35, 63, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    box-shadow 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

body.ngw-site-design .ngw-site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 209, 182, 0.26), transparent 32%),
    radial-gradient(circle at 88% 0%, rgba(17, 140, 132, 0.10), transparent 28%);
}

body.ngw-site-design .ngw-site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow: 0 12px 34px rgba(8, 35, 63, 0.10);
}

body.ngw-site-design .ngw-site-header__inner {
  width: 100%;
  max-width: var(--syn-content-max);
  margin-inline: auto;
  padding-inline: var(--syn-page-pad);
}

/* Logo deutlich groesser */
body.ngw-site-design .ngw-site-header__brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

body.ngw-site-design .ngw-site-header__logo,
body.ngw-site-design .ngw-site-header__brand img,
body.ngw-site-design .ngw-site-header__brand svg {
  width: clamp(178px, 13vw, 268px) !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 58px !important;
  object-fit: contain !important;
}

/* Header navigation */
body.ngw-site-design .ngw-site-header__nav a {
  color: var(--syn-brand-text);
  font-weight: 700;
}

body.ngw-site-design .ngw-site-header__nav a:hover,
body.ngw-site-design .ngw-site-header__nav a:focus-visible,
body.ngw-site-design .ngw-site-header__nav a[aria-current="page"],
body.ngw-site-design .ngw-site-header__nav a.is-active {
  color: var(--syn-brand-teal-dark);
}

body.ngw-site-design .ngw-site-header__nav a::after {
  background: var(--syn-brand-teal) !important;
}

/* Header CTA */
body.ngw-site-design .ngw-site-header__cta,
body.ngw-site-design .ngw-button--primary,
body.ngw-site-design .ngw-primary-cta {
  background: linear-gradient(135deg, var(--syn-brand-teal) 0%, var(--syn-brand-teal-dark) 100%) !important;
  color: #ffffff !important;
  border: 0 !important;
  box-shadow: 0 14px 30px rgba(12, 95, 98, 0.22);
}

body.ngw-site-design .ngw-site-header__cta:hover,
body.ngw-site-design .ngw-button--primary:hover,
body.ngw-site-design .ngw-primary-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(12, 95, 98, 0.28);
}

/* Language switcher */
body.ngw-site-design .ngw-language-switcher__button {
  color: var(--syn-brand-ink) !important;
  background: rgba(255, 255, 255, 0.86) !important;
  border: 1px solid rgba(12, 95, 98, 0.12) !important;
}

body.ngw-site-design .ngw-language-switcher__button:hover {
  border-color: rgba(17, 140, 132, 0.35) !important;
}

/* Menu button */
body.ngw-site-design [data-ngw-menu-toggle],
body.ngw-site-design .ngw-site-header__toggle {
  color: var(--syn-brand-teal-dark) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(12, 95, 98, 0.14) !important;
  box-shadow: 0 10px 24px rgba(8, 35, 63, 0.08);
}

/* Full-width background, readable centered content */
body.ngw-site-design .ngw-page-shell,
body.ngw-site-design .ngw-main,
body.ngw-site-design .ngw-home-main {
  width: 100%;
}

body.ngw-site-design .ngw-home-hero,
body.ngw-site-design .ngw-home-content,
body.ngw-site-design .ngw-content-section,
body.ngw-site-design .ngw-home-kpis,
body.ngw-site-design .ngw-site-footer {
  padding-left: var(--syn-page-pad);
  padding-right: var(--syn-page-pad);
}

body.ngw-site-design .ngw-home-hero__inner,
body.ngw-site-design .ngw-home-content,
body.ngw-site-design .ngw-content-section,
body.ngw-site-design .ngw-home-kpis,
body.ngw-site-design .ngw-home-cta,
body.ngw-site-design .ngw-site-footer__inner {
  max-width: var(--syn-content-max);
  margin-left: auto;
  margin-right: auto;
}

/* Hero: warm + SYNEDAT colors */
body.ngw-site-design .ngw-home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(216, 209, 182, 0.38), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(17, 140, 132, 0.16), transparent 32%),
    linear-gradient(90deg, #f6f5ef 0%, #eef4f4 50%, #eef6f8 100%) !important;
}

body.ngw-site-design .ngw-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.20), transparent 42%),
    repeating-linear-gradient(
      90deg,
      rgba(8, 35, 63, 0.035) 0,
      rgba(8, 35, 63, 0.035) 1px,
      transparent 1px,
      transparent 72px
    );
  opacity: 0.52;
}

body.ngw-site-design .ngw-home-hero__inner {
  position: relative;
  z-index: 1;
}

body.ngw-site-design .ngw-home-eyebrow,
body.ngw-site-design .ngw-home-section-kicker,
body.ngw-site-design .ngw-section-eyebrow {
  color: var(--syn-brand-teal-dark) !important;
  letter-spacing: 0.14em;
  font-weight: 800;
}

body.ngw-site-design .ngw-home-title {
  color: var(--syn-brand-ink) !important;
  letter-spacing: -0.06em;
}

body.ngw-site-design .ngw-home-title span,
body.ngw-site-design .ngw-home-title strong,
body.ngw-site-design .ngw-home-title em,
body.ngw-site-design .ngw-text-accent,
body.ngw-site-design .is-accent {
  color: var(--syn-brand-teal) !important;
  font-style: normal;
}

body.ngw-site-design .ngw-home-hero__lead {
  color: var(--syn-brand-text) !important;
}

body.ngw-site-design .ngw-home-visual-card {
  border-color: rgba(216, 209, 182, 0.72) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.70)),
    radial-gradient(circle at 22% 12%, rgba(224, 197, 29, 0.16), transparent 24%),
    radial-gradient(circle at 80% 72%, rgba(17, 140, 132, 0.18), transparent 28%) !important;
  box-shadow: 0 28px 80px rgba(8, 35, 63, 0.16);
}

/* KPI icons with old SYNEDAT teal */
body.ngw-site-design .ngw-home-kpi__icon {
  background: linear-gradient(135deg, var(--syn-brand-teal) 0%, var(--syn-brand-teal-dark) 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 28px rgba(12, 95, 98, 0.20);
}

/* Service cards: deep petrol */
body.ngw-site-design .ngw-home-card--dark,
body.ngw-site-design .ngw-home-card.ngw-home-card--dark {
  background:
    radial-gradient(circle at 82% 0%, rgba(17, 140, 132, 0.42), transparent 34%),
    linear-gradient(155deg, var(--syn-brand-blue-deep) 0%, var(--syn-brand-teal-deep) 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: var(--syn-shadow-card);
}

body.ngw-site-design .ngw-home-card--dark .ngw-home-card__icon {
  background: var(--syn-brand-teal) !important;
  color: #ffffff !important;
}

body.ngw-site-design .ngw-home-card--dark a,
body.ngw-site-design .ngw-home-case-card a {
  color: #ffffff !important;
}

/* Light cards warmer, less generic blue */
body.ngw-site-design .ngw-home-card:not(.ngw-home-card--dark),
body.ngw-site-design .ngw-home-image-card,
body.ngw-site-design .ngw-home-knowledge-card {
  background: var(--syn-surface-card) !important;
  border: 1px solid rgba(216, 209, 182, 0.58) !important;
  box-shadow: 0 14px 36px rgba(8, 35, 63, 0.08);
}

body.ngw-site-design .ngw-home-image-card__media {
  background:
    radial-gradient(circle at 18% 20%, rgba(224, 197, 29, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(154, 143, 88, 0.42), rgba(17, 140, 132, 0.28)) !important;
}

/* Case cards */
body.ngw-site-design .ngw-home-case-card {
  background:
    radial-gradient(circle at 92% 0%, rgba(17, 140, 132, 0.36), transparent 34%),
    linear-gradient(155deg, #08233f 0%, #0b4967 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow: var(--syn-shadow-card);
}

body.ngw-site-design .ngw-home-case-card .ngw-home-case-card__tag,
body.ngw-site-design .ngw-home-case-card .ngw-case-tag {
  color: #ffffff !important;
  background: rgba(224, 197, 29, 0.20) !important;
}

/* CTA section */
body.ngw-site-design .ngw-home-cta {
  background:
    radial-gradient(circle at 84% 20%, rgba(17, 140, 132, 0.40), transparent 34%),
    linear-gradient(100deg, #071f38 0%, #0b4262 54%, #0f7f8e 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow: 0 24px 64px rgba(8, 35, 63, 0.20);
}

body.ngw-site-design .ngw-home-cta h2,
body.ngw-site-design .ngw-home-cta h3,
body.ngw-site-design .ngw-home-cta p {
  color: #ffffff !important;
}

/* Footer warmer */
body.ngw-site-design .ngw-site-footer {
  background:
    radial-gradient(circle at 10% 10%, rgba(216, 209, 182, 0.26), transparent 30%),
    linear-gradient(180deg, #eef4f7 0%, #f6f5ef 100%) !important;
  border-top: 1px solid rgba(12, 95, 98, 0.12);
}

body.ngw-site-design .ngw-site-footer a {
  color: var(--syn-brand-teal-dark) !important;
}

body.ngw-site-design .ngw-site-footer a:hover {
  color: var(--syn-brand-teal) !important;
}

/* Right-side section markers */
body.ngw-site-design .ngw-side-markers {
  position: fixed;
  top: 50%;
  right: max(18px, calc((100vw - var(--syn-content-max)) / 2 - 58px));
  z-index: 1035;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transform: translateY(-50%);
  pointer-events: auto;
}

body.ngw-site-design .ngw-side-marker {
  position: relative;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}

body.ngw-site-design .ngw-side-marker__dot {
  width: 15px;
  height: 15px;
  background: var(--syn-brand-yellow);
  border: 2px solid #ffffff;
  box-shadow: 0 6px 18px rgba(8, 35, 63, 0.18);
  transform: rotate(45deg);
  transition:
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

body.ngw-site-design .ngw-side-marker:hover .ngw-side-marker__dot,
body.ngw-site-design .ngw-side-marker:focus-visible .ngw-side-marker__dot {
  transform: rotate(45deg) scale(1.18);
  box-shadow: 0 8px 24px rgba(8, 35, 63, 0.22);
}

body.ngw-site-design .ngw-side-marker.is-active .ngw-side-marker__dot {
  background: var(--syn-brand-teal);
}

body.ngw-site-design .ngw-side-marker__label {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  min-width: max-content;
  padding: 6px 9px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  background: rgba(8, 35, 63, 0.92);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(8, 35, 63, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(6px, -50%);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

body.ngw-site-design .ngw-side-marker:hover .ngw-side-marker__label,
body.ngw-site-design .ngw-side-marker:focus-visible .ngw-side-marker__label {
  opacity: 1;
  transform: translate(0, -50%);
}

/* Hero scroll cue */
body.ngw-site-design .ngw-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 4vw, 42px);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--syn-brand-teal-dark);
  font-weight: 800;
  cursor: pointer;
  transform: translateX(-50%);
}

body.ngw-site-design .ngw-scroll-cue__mouse {
  position: relative;
  width: 30px;
  height: 48px;
  border: 3px solid currentColor;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
}

body.ngw-site-design .ngw-scroll-cue__mouse::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  transform: translateX(-50%);
  animation: ngw-step54b-scroll-dot 1.35s ease-in-out infinite;
}

body.ngw-site-design .ngw-scroll-cue__text {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes ngw-step54b-scroll-dot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 17px);
  }
}

/* Scroll-to-top button */
body.ngw-site-design .ngw-scroll-top {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 1036;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #ffffff;
  background:
    radial-gradient(circle at 72% 20%, rgba(224, 197, 29, 0.25), transparent 34%),
    linear-gradient(135deg, var(--syn-brand-teal) 0%, var(--syn-brand-teal-dark) 100%);
  border: 1px solid rgba(255,255,255,0.36);
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(8, 35, 63, 0.20);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 170ms ease,
    transform 170ms ease,
    box-shadow 170ms ease;
}

body.ngw-site-design .ngw-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.ngw-site-design .ngw-scroll-top:hover {
  box-shadow: 0 22px 42px rgba(8, 35, 63, 0.26);
}

body.ngw-site-design .ngw-scroll-top::before {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: translateY(4px) rotate(45deg);
}

/* Anchor offset for sticky header */
body.ngw-site-design .ngw-home-hero,
body.ngw-site-design .ngw-home-content,
body.ngw-site-design .ngw-home-kpis,
body.ngw-site-design .ngw-home-cta,
body.ngw-site-design .ngw-site-footer {
  scroll-margin-top: calc(var(--syn-header-current-height) + 18px);
}

/* Desktop wide tuning */
@media (min-width: 1180px) {
  body.ngw-site-design .ngw-home-card-grid {
    gap: clamp(22px, 2vw, 34px);
  }

  body.ngw-site-design .ngw-home-services .ngw-home-card-grid,
  body.ngw-site-design .ngw-home-solutions .ngw-home-card-grid,
  body.ngw-site-design .ngw-home-industries .ngw-home-card-grid {
    max-width: 1040px;
  }

  body.ngw-site-design .ngw-home-section-head {
    max-width: var(--syn-content-readable);
  }
}

/* Tablet and small desktop */
@media (max-width: 1180px) {
  body.ngw-site-design .ngw-side-markers {
    right: 10px;
  }
}

/* Mobile menu */
@media (max-width: 980px) {
  body.ngw-site-design.ngw-menu-open {
    overflow: hidden;
  }

  body.ngw-site-design .ngw-site-header {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  body.ngw-site-design .ngw-site-header__inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 12px !important;
    padding-left: clamp(14px, 4vw, 22px) !important;
    padding-right: clamp(14px, 4vw, 22px) !important;
  }

  body.ngw-site-design .ngw-site-header__brand {
    grid-column: 1;
    justify-self: start;
  }

  body.ngw-site-design .ngw-site-header__logo,
  body.ngw-site-design .ngw-site-header__brand img,
  body.ngw-site-design .ngw-site-header__brand svg {
    width: clamp(190px, 58vw, 250px) !important;
    max-height: 52px !important;
  }

  body.ngw-site-design [data-ngw-menu-toggle],
  body.ngw-site-design .ngw-site-header__toggle {
    grid-column: 2;
    justify-self: end;
    min-width: 76px;
    min-height: 46px;
    border-radius: 999px !important;
    font-weight: 800;
  }

  body.ngw-site-design .ngw-site-header__cta {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  body.ngw-site-design .ngw-language-switcher {
    grid-column: 1 / -1;
    justify-self: start;
  }

  body.ngw-site-design .ngw-site-header__nav[data-ngw-primary-nav] {
    position: fixed !important;
    top: var(--syn-header-current-height) !important;
    left: 14px !important;
    right: 14px !important;
    z-index: 1052 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    max-height: calc(100vh - var(--syn-header-current-height) - 22px);
    padding: 18px !important;
    overflow: auto;
    background:
      radial-gradient(circle at 100% 0%, rgba(17, 140, 132, 0.13), transparent 34%),
      linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,245,239,0.98)) !important;
    border: 1px solid rgba(12, 95, 98, 0.14) !important;
    border-radius: 24px !important;
    box-shadow: 0 24px 60px rgba(8, 35, 63, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.985);
    transition:
      opacity 170ms ease,
      visibility 170ms ease,
      transform 170ms ease;
  }

  body.ngw-site-design.ngw-menu-open .ngw-site-header__nav[data-ngw-primary-nav] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  body.ngw-site-design .ngw-site-header__nav[data-ngw-primary-nav] a {
    display: flex !important;
    align-items: center;
    min-height: 46px;
    padding: 12px 14px !important;
    color: var(--syn-brand-ink) !important;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(12, 95, 98, 0.08);
    border-radius: 14px;
    text-decoration: none;
  }

  body.ngw-site-design .ngw-site-header__nav[data-ngw-primary-nav] a:hover,
  body.ngw-site-design .ngw-site-header__nav[data-ngw-primary-nav] a:focus-visible {
    color: #ffffff !important;
    background: var(--syn-brand-teal) !important;
  }

  body.ngw-site-design .ngw-side-markers {
    display: none;
  }
}

/* Mobile typography and spacing */
@media (max-width: 680px) {
  :root {
    --syn-page-pad: clamp(16px, 5vw, 24px);
  }

  body.ngw-site-design .ngw-home-hero {
    padding-top: clamp(34px, 9vw, 56px) !important;
    padding-bottom: clamp(84px, 24vw, 126px) !important;
    min-height: auto !important;
  }

  body.ngw-site-design .ngw-home-hero__inner {
    display: block !important;
  }

  body.ngw-site-design .ngw-home-hero__content {
    max-width: 100%;
  }

  body.ngw-site-design .ngw-home-title {
    max-width: 9.2ch;
    font-size: clamp(2.75rem, 12vw, 3.85rem) !important;
    line-height: 0.92 !important;
    letter-spacing: -0.075em;
    overflow-wrap: normal;
    word-break: normal;
  }

  body.ngw-site-design .ngw-home-hero__lead {
    max-width: 34ch;
    font-size: clamp(1rem, 4.2vw, 1.12rem) !important;
    line-height: 1.5 !important;
  }

  body.ngw-site-design .ngw-home-hero__visual {
    display: none !important;
  }

  body.ngw-site-design .ngw-home-kpis {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
  }

  body.ngw-site-design .ngw-home-card-grid,
  body.ngw-site-design .ngw-home-knowledge__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  body.ngw-site-design .ngw-home-card,
  body.ngw-site-design .ngw-home-image-card,
  body.ngw-site-design .ngw-home-case-card,
  body.ngw-site-design .ngw-home-knowledge-card {
    min-height: unset !important;
    border-radius: 20px !important;
  }

  body.ngw-site-design .ngw-home-section-head h2,
  body.ngw-site-design .ngw-home-content h2 {
    font-size: clamp(2rem, 9.2vw, 3.1rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.055em;
  }

  body.ngw-site-design .ngw-home-cta {
    padding: 26px 20px !important;
    border-radius: 24px !important;
  }

  body.ngw-site-design .ngw-scroll-cue {
    bottom: 22px;
  }

  body.ngw-site-design .ngw-scroll-cue__text {
    font-size: 11px;
  }

  body.ngw-site-design .ngw-scroll-top {
    width: 46px;
    height: 46px;
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.ngw-site-design *,
  body.ngw-site-design *::before,
  body.ngw-site-design *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* STEP54B BRAND STICKY NAV MARKERS END */

/* STEP55_DESKTOP_MENU_ISTOCK_WEBP_START */

/*
  Step55:
  - Desktop navigation is visible.
  - Menu/Burger button is visible on desktop too.
  - iStock backgrounds are expected as local licensed WebP files in:
    EXT:synedat_base/Resources/Public/SynedatSite/Images/Backgrounds/
  - CSS paths are relative to SynedatSite/Css/ngw-site-v1.css after TYPO3 asset publishing.
*/

:root {
  --synedat-old-teal: #078f7f;
  --synedat-old-teal-dark: #006f66;
  --synedat-old-teal-soft: rgba(7, 143, 127, .14);
  --synedat-old-yellow: #ffdc00;
  --synedat-old-yellow-soft: rgba(255, 220, 0, .34);
  --synedat-old-ink: #06172e;
  --synedat-old-grey: #6f7279;

  --ngw-bg-hero: url("../Images/Backgrounds/hero-group.webp");
  --ngw-bg-services: none;
  --ngw-bg-solutions: none;
  --ngw-bg-industries: none;
  --ngw-bg-cases: none;
  --ngw-bg-insights: none;
  --ngw-bg-contact: url("../Images/Backgrounds/contact.webp");
  --ngw-bg-footer: url("../Images/Backgrounds/footer.webp");
}

/* keep old company identity more visible */
body.ngw-site-design {
  color: var(--synedat-old-ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 220, 0, .11), transparent 30rem),
    radial-gradient(circle at 92% 12%, rgba(7, 143, 127, .13), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #f5fafb 48%, #edf5f7 100%);
}

/* sticky title/header line */
.ngw-site-header {
  position: sticky !important;
  top: 0;
  z-index: 1200;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.90)),
    linear-gradient(90deg, rgba(255,220,0,.16), rgba(7,143,127,.10));
  border-bottom: 1px solid rgba(7, 143, 127, .14);
  box-shadow: 0 14px 42px rgba(6, 23, 46, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.ngw-site-header__inner {
  width: min(1480px, calc(100vw - clamp(28px, 6vw, 96px)));
  max-width: none !important;
  margin-inline: auto;
}

/* logo larger but controlled */
.ngw-site-header__brand {
  flex: 0 0 auto;
}

.ngw-site-header__logo,
.ngw-site-header__brand img,
.ngw-site-header__brand svg {
  width: clamp(190px, 16vw, 310px) !important;
  max-width: 42vw;
  height: auto !important;
}

/* desktop menu visible */
.ngw-site-header__nav {
  font-weight: 800;
  letter-spacing: -.015em;
}

.ngw-site-header__nav a {
  color: var(--synedat-old-ink);
  text-decoration: none;
}

.ngw-site-header__nav a:hover,
.ngw-site-header__nav a:focus-visible,
.ngw-site-header__nav a[aria-current="page"],
.ngw-site-header__nav .active {
  color: var(--synedat-old-teal);
}

/* keep burger/menu button visible on desktop too */
.ngw-site-header__toggle,
[data-ngw-menu-toggle] {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-width: 54px;
  min-height: 46px;
  padding: .65rem .9rem;
  border: 1px solid rgba(7, 143, 127, .22);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: var(--synedat-old-teal-dark);
  box-shadow: 0 12px 26px rgba(6, 23, 46, .08);
  cursor: pointer;
}

.ngw-site-header__toggle:hover,
[data-ngw-menu-toggle]:hover {
  background: var(--synedat-old-yellow);
  color: var(--synedat-old-ink);
  border-color: rgba(255, 220, 0, .95);
}

.ngw-site-header__toggle-icon,
[data-ngw-menu-toggle] .ngw-site-header__toggle-icon {
  width: 1.15rem;
  height: .8rem;
  display: inline-block;
  position: relative;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.ngw-site-header__toggle-icon::before,
[data-ngw-menu-toggle] .ngw-site-header__toggle-icon::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 3px solid currentColor;
  transform: translateY(-50%);
}

/* desktop inline navigation */
@media (min-width: 1040px) {
  .ngw-site-header__inner {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 36px);
  }

  .ngw-site-header__nav {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    position: static !important;
    inset: auto !important;
    transform: none !important;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 1.45vw, 32px);
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
  }

  .ngw-site-header__nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: .25rem .05rem;
    border-bottom: 3px solid transparent;
  }

  .ngw-site-header__nav a:hover,
  .ngw-site-header__nav a:focus-visible,
  .ngw-site-header__nav a[aria-current="page"],
  .ngw-site-header__nav .active {
    border-bottom-color: var(--synedat-old-yellow);
  }

  .ngw-site-header__toggle {
    order: 20;
  }
}

/* opened menu panel, also works on desktop */
body.ngw-menu-open {
  overflow-x: hidden;
}

body.ngw-menu-open .ngw-site-header__nav {
  position: fixed !important;
  top: calc(var(--ngw-header-height, 84px) + 14px) !important;
  right: clamp(16px, 4vw, 64px) !important;
  left: auto !important;
  z-index: 1300;
  display: grid !important;
  width: min(430px, calc(100vw - 32px)) !important;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  gap: .35rem !important;
  padding: 1.1rem !important;
  border: 1px solid rgba(7, 143, 127, .22) !important;
  border-radius: 28px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(241,249,249,.98)),
    linear-gradient(135deg, rgba(255,220,0,.13), rgba(7,143,127,.12)) !important;
  box-shadow: 0 28px 90px rgba(6, 23, 46, .24) !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
}

body.ngw-menu-open .ngw-site-header__nav a {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 50px;
  padding: .8rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(7,143,127,.08);
  background: rgba(255,255,255,.68);
  color: var(--synedat-old-ink);
}

body.ngw-menu-open .ngw-site-header__nav a::after {
  content: "→";
  color: var(--synedat-old-teal);
}

body.ngw-menu-open .ngw-site-header__nav a:hover {
  background: var(--synedat-old-yellow);
  color: var(--synedat-old-ink);
}

/* mobile menu panel */
@media (max-width: 1039px) {
  .ngw-site-header__inner {
    width: calc(100vw - 28px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .75rem;
    align-items: center;
  }

  .ngw-site-header__brand {
    min-width: 0;
  }

  .ngw-site-header__logo,
  .ngw-site-header__brand img,
  .ngw-site-header__brand svg {
    width: clamp(175px, 52vw, 235px) !important;
    max-width: 58vw;
  }

  .ngw-site-header__nav {
    position: fixed !important;
    top: 86px !important;
    left: 14px !important;
    right: 14px !important;
    z-index: 1300;
    display: grid !important;
    gap: .4rem;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    padding: 1rem !important;
    border: 1px solid rgba(7,143,127,.18);
    border-radius: 24px;
    background: rgba(255,255,255,.98) !important;
    box-shadow: 0 28px 80px rgba(6, 23, 46, .22);
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-8px) scale(.98) !important;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

  body.ngw-menu-open .ngw-site-header__nav {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .ngw-site-header__nav a {
    display: flex !important;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 1rem;
    border-radius: 16px;
    background: rgba(7,143,127,.06);
    color: var(--synedat-old-ink);
  }

  .ngw-site-header__nav a::after {
    content: "→";
    color: var(--synedat-old-teal);
  }
}

/* image-backed sections with readable overlays */
.ngw-home-hero,
.ngw-home-services,
.ngw-home-solutions,
.ngw-home-industries,
.ngw-home-cases,
.ngw-home-knowledge {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.ngw-home-hero::before,
.ngw-home-services::before,
.ngw-home-solutions::before,
.ngw-home-industries::before,
.ngw-home-cases::before,
.ngw-home-knowledge::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: .18;
  filter: saturate(.85) contrast(1.08);
}

.ngw-home-hero::after,
.ngw-home-services::after,
.ngw-home-solutions::after,
.ngw-home-industries::after,
.ngw-home-cases::after,
.ngw-home-knowledge::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.77) 48%, rgba(232,247,247,.60)),
    radial-gradient(circle at 8% 18%, rgba(255,220,0,.16), transparent 28rem),
    radial-gradient(circle at 88% 24%, rgba(7,143,127,.18), transparent 32rem);
}

.ngw-home-hero::before {
  background-image: var(--ngw-bg-hero);
  opacity: .22;
}

.ngw-home-services::before {
  background-image: var(--ngw-bg-services);
}

.ngw-home-solutions::before {
  background-image: var(--ngw-bg-solutions);
}

.ngw-home-industries::before {
  background-image: var(--ngw-bg-industries);
}

.ngw-home-cases::before {
  background-image: var(--ngw-bg-cases);
}

.ngw-home-knowledge::before {
  background-image: var(--ngw-bg-insights);
}

.ngw-home-cta,
.ngw-cta,
.ngw-home-contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.ngw-home-cta::before,
.ngw-cta::before,
.ngw-home-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--ngw-bg-contact);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: .16;
}

.ngw-site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.ngw-site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--ngw-bg-footer);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: .10;
  filter: saturate(.75) contrast(1.1);
}

.ngw-site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(245,250,251,.92), rgba(237,246,247,.96)),
    radial-gradient(circle at 10% 20%, rgba(255,220,0,.12), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(7,143,127,.13), transparent 30rem);
}

/* company color accents */
.ngw-home-eyebrow,
.ngw-home-section-kicker,
.ngw-content-kicker {
  color: var(--synedat-old-teal) !important;
}

.ngw-home-title span,
.ngw-home-title em,
.ngw-accent,
.ngw-home-section-head strong {
  color: #12b6c8 !important;
}

.ngw-site-header__cta,
.ngw-button--primary,
.ngw-primary-cta {
  background: linear-gradient(135deg, var(--synedat-old-teal), #0897a8) !important;
  color: #ffffff !important;
  border-color: rgba(7,143,127,.45) !important;
}

.ngw-site-header__cta:hover,
.ngw-button--primary:hover,
.ngw-primary-cta:hover {
  background: linear-gradient(135deg, var(--synedat-old-yellow), #ffe85a) !important;
  color: var(--synedat-old-ink) !important;
}

/* old-site-like right markers */
.ngw-section-dots {
  position: fixed;
  right: clamp(16px, 2.4vw, 44px);
  top: 50%;
  z-index: 1100;
  display: grid;
  gap: 13px;
  transform: translateY(-50%);
}

.ngw-section-dots__item {
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 4px;
  border: 2px solid #ffffff;
  background: var(--synedat-old-yellow);
  box-shadow: 0 8px 20px rgba(6, 23, 46, .16);
  transform: rotate(45deg);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.ngw-section-dots__item.is-active,
.ngw-section-dots__item:hover {
  background: var(--synedat-old-teal);
  transform: rotate(45deg) scale(1.25);
  box-shadow: 0 10px 24px rgba(7,143,127,.34);
}

@media (max-width: 1039px) {
  .ngw-section-dots {
    display: none;
  }
}

/* scroll-top button */
.ngw-scroll-top {
  position: fixed;
  right: clamp(16px, 2.2vw, 36px);
  bottom: clamp(18px, 3vw, 42px);
  z-index: 1250;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--synedat-old-teal), #0897a8);
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(6,23,46,.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .18s ease, transform .18s ease, background .18s ease;
}

.ngw-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.ngw-scroll-top:hover {
  background: linear-gradient(135deg, var(--synedat-old-yellow), #ffe75c);
  color: var(--synedat-old-ink);
}

/* mobile hero readability */
@media (max-width: 760px) {
  .ngw-home-hero {
    padding-top: clamp(44px, 11vw, 72px) !important;
    padding-bottom: clamp(44px, 12vw, 80px) !important;
  }

  .ngw-home-title {
    max-width: 94vw;
    font-size: clamp(2.45rem, 13.5vw, 4.25rem) !important;
    line-height: .84 !important;
    letter-spacing: -.085em !important;
  }

  .ngw-home-hero__lead {
    max-width: 92vw;
    font-size: clamp(1rem, 4.2vw, 1.18rem) !important;
    line-height: 1.45 !important;
  }

  .ngw-home-hero::before {
    opacity: .13;
  }

  .ngw-home-hero::after {
    background:
      linear-gradient(180deg, rgba(255,255,255,.95), rgba(232,247,247,.82)),
      radial-gradient(circle at 20% 10%, rgba(255,220,0,.16), transparent 20rem),
      radial-gradient(circle at 80% 20%, rgba(7,143,127,.14), transparent 20rem);
  }
}

/* STEP55_DESKTOP_MENU_ISTOCK_WEBP_END */

/* STEP55 image asset hooks: SYNEDAT image structure, hero and section background slots */
body.ngw-site-design {
  --ngw-synedat-petrol: #062c33;
  --ngw-synedat-teal: #0f6f73;
  --ngw-synedat-cyan: #31b7bc;
  --ngw-synedat-yellow: #f2c94c;
  --ngw-synedat-slate: #172b33;

  --ngw-hero-background-image: url("../Images/Hero/hero-group.webp");
  --ngw-services-background-image: none;
  --ngw-solutions-background-image: none;
  --ngw-industries-background-image: none;
  --ngw-cases-background-image: none;
  --ngw-insights-background-image: none;
}

/* Hero: full-width-faehiger Hintergrund, aber mit lesbarer Textflaeche */
body.ngw-site-design .ngw-home-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--ngw-synedat-petrol);
  background-image:
    linear-gradient(115deg, rgba(6, 44, 51, 0.96) 0%, rgba(6, 44, 51, 0.84) 42%, rgba(15, 111, 115, 0.52) 72%, rgba(242, 201, 76, 0.16) 100%),
    var(--ngw-hero-background-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dezente Bildmarkierungen rechts in Inhaltssektionen */
body.ngw-site-design .ngw-home-services,
body.ngw-site-design .ngw-home-solutions,
body.ngw-site-design .ngw-home-industries,
body.ngw-site-design .ngw-home-cases,
body.ngw-site-design .ngw-home-knowledge {
  position: relative;
  overflow: hidden;
}

body.ngw-site-design .ngw-home-services > *,
body.ngw-site-design .ngw-home-solutions > *,
body.ngw-site-design .ngw-home-industries > *,
body.ngw-site-design .ngw-home-cases > *,
body.ngw-site-design .ngw-home-knowledge > * {
  position: relative;
  z-index: 1;
}

body.ngw-site-design .ngw-home-services::after,
body.ngw-site-design .ngw-home-solutions::after,
body.ngw-site-design .ngw-home-industries::after,
body.ngw-site-design .ngw-home-cases::after,
body.ngw-site-design .ngw-home-knowledge::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 8% -8% 8% auto;
  width: min(42vw, 560px);
  opacity: 0.14;
  pointer-events: none;
  border-radius: 999px 0 0 999px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0.95) contrast(1.05);
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
}

body.ngw-site-design .ngw-home-services::after {
  background-image:
    linear-gradient(90deg, rgba(6,44,51,0.1), rgba(6,44,51,0.62)),
    var(--ngw-services-background-image);
}

body.ngw-site-design .ngw-home-solutions::after {
  background-image:
    linear-gradient(90deg, rgba(6,44,51,0.1), rgba(6,44,51,0.62)),
    var(--ngw-solutions-background-image);
}

body.ngw-site-design .ngw-home-industries::after {
  background-image:
    linear-gradient(90deg, rgba(6,44,51,0.1), rgba(6,44,51,0.62)),
    var(--ngw-industries-background-image);
}

body.ngw-site-design .ngw-home-cases::after {
  background-image:
    linear-gradient(90deg, rgba(6,44,51,0.1), rgba(6,44,51,0.62)),
    var(--ngw-cases-background-image);
}

body.ngw-site-design .ngw-home-knowledge::after {
  background-image:
    linear-gradient(90deg, rgba(6,44,51,0.1), rgba(6,44,51,0.62)),
    var(--ngw-insights-background-image);
}

/* Produkt- und Partnerlogos */
body.ngw-site-design .ngw-product-logo,
body.ngw-site-design .ngw-partner-logo {
  display: block;
  max-width: 220px;
  max-height: 86px;
  width: auto;
  height: auto;
  object-fit: contain;
}

body.ngw-site-design .ngw-partner-logo {
  filter: grayscale(1);
  opacity: 0.82;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

body.ngw-site-design .ngw-partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-1px);
}

/* Mobile: Hintergruende ruhiger halten */
@media (max-width: 767.98px) {
  body.ngw-site-design .ngw-home-hero {
    background-position: center top;
  }

  body.ngw-site-design .ngw-home-services::after,
  body.ngw-site-design .ngw-home-solutions::after,
  body.ngw-site-design .ngw-home-industries::after,
  body.ngw-site-design .ngw-home-cases::after,
  body.ngw-site-design .ngw-home-knowledge::after {
    inset: auto -24% 0 auto;
    width: 82vw;
    height: 42%;
    opacity: 0.08;
    border-radius: 999px 0 0 0;
  }
}
/* END STEP55 image asset hooks */
/* BEGIN NGW FIXED SCROLL INDICATOR */
.ngw-scroll-indicator--legacy-hidden,
.ngw-scroll-indicator:not(.ngw-scroll-indicator--fixed),
.ngw-home-scroll,
.ngw-home-scroll-indicator,
.ngw-hero-scroll,
.ngw-hero-scroll-indicator,
.ngw-scroll-hint,
.ngw-scroll-down,
.ngw-scroll-mouse,
.ngw-home-hero__scroll,
.ngw-home-hero-scroll {
  display: none !important;
}

.ngw-scroll-indicator--fixed {
  position: fixed;
  left: 50%;
  bottom: clamp(24px, 5vh, 56px);
  z-index: 80;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #0f7c79;
  pointer-events: none;
  user-select: none;
  opacity: 1;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.ngw-scroll-indicator--fixed.is-on-light {
  color: #0f7c79;
}

.ngw-scroll-indicator--fixed.is-on-dark {
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.ngw-scroll-indicator--fixed.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
}

.ngw-scroll-indicator--fixed .ngw-scroll-indicator__mouse {
  position: relative;
  display: block;
  width: 42px;
  height: 68px;
  border: 3px solid currentColor;
  border-radius: 999px;
}

.ngw-scroll-indicator--fixed .ngw-scroll-indicator__wheel {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  animation: ngw-scroll-wheel 1.55s ease-in-out infinite;
}

.ngw-scroll-indicator--fixed .ngw-scroll-indicator__label {
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes ngw-scroll-wheel {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }

  25% {
    opacity: 1;
  }

  70% {
    opacity: 1;
    transform: translateX(-50%) translateY(20px);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(24px);
  }
}

@media (max-width: 767.98px) {
  .ngw-scroll-indicator--fixed {
    bottom: 18px;
    transform: translateX(-50%) scale(0.82);
    transform-origin: center bottom;
  }

  .ngw-scroll-indicator--fixed.is-hidden {
    transform: translateX(-50%) translateY(8px) scale(0.82);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ngw-scroll-indicator--fixed .ngw-scroll-indicator__wheel {
    animation: none;
  }
}
/* END NGW FIXED SCROLL INDICATOR */

/* BEGIN NGW FIXED HEADER */
body.ngw-site-design,
body#p100,
body[id^="p"] {
  padding-top: 92px;
}

.ngw-site-header__inner {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  width: 100%;
  max-width: none;
  min-height: 92px;

  display: flex;
  align-items: center;

  padding: 18px clamp(24px, 6vw, 120px);

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(15, 124, 121, 0.10);
  box-shadow: 0 10px 34px rgba(12, 36, 60, 0.08);
}

.ngw-site-header__brand {
  flex: 0 0 auto;
}

.ngw-site-header__nav {
  margin-left: auto;
}

.ngw-site-header__cta,
.ngw-language-switcher,
.ngw-site-header__toggle {
  flex: 0 0 auto;
}

.admin-bar,
.typo3-adminPanel-open body.ngw-site-design {
  padding-top: 92px;
}

@media (max-width: 991.98px) {
  body.ngw-site-design,
  body#p100,
  body[id^="p"] {
    padding-top: 78px;
  }

  .ngw-site-header__inner {
    min-height: 78px;
    padding: 14px 20px;
  }
}

@media print {
  body.ngw-site-design,
  body#p100,
  body[id^="p"] {
    padding-top: 0;
  }

  .ngw-site-header__inner {
    position: static !important;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
/* END NGW FIXED HEADER */






/* BEGIN NGW REMOVE HERO DECORATIVE DIAMONDS */
body.ngw-site-design .ngw-home-visual-card > span,
body.ngw-site-design .ngw-home-visual-card > span::before,
body.ngw-site-design .ngw-home-visual-card > span::after,
body.ngw-site-design .ngw-home-visual-card span,
body.ngw-site-design .ngw-home-visual-card span::before,
body.ngw-site-design .ngw-home-visual-card span::after,
body.ngw-site-design .ngw-home-visual-card::before,
body.ngw-site-design .ngw-home-visual-card::after,
body.ngw-site-design .ngw-home-hero__visual::before,
body.ngw-site-design .ngw-home-hero__visual::after {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
/* END NGW REMOVE HERO DECORATIVE DIAMONDS */


/* BEGIN NGW REMOVE HERO VISUAL DECORATION HARD */
body.ngw-site-design .ngw-home-hero__visual,
body.ngw-site-design .ngw-home-hero__visual *,
body.ngw-site-design .ngw-home-hero__visual::before,
body.ngw-site-design .ngw-home-hero__visual::after,
body.ngw-site-design .ngw-home-visual-card,
body.ngw-site-design .ngw-home-visual-card *,
body.ngw-site-design .ngw-home-visual-card::before,
body.ngw-site-design .ngw-home-visual-card::after {
  background-image: none !important;
}

body.ngw-site-design .ngw-home-visual-card > span,
body.ngw-site-design .ngw-home-visual-card span,
body.ngw-site-design .ngw-home-visual-card > span::before,
body.ngw-site-design .ngw-home-visual-card > span::after,
body.ngw-site-design .ngw-home-visual-card span::before,
body.ngw-site-design .ngw-home-visual-card span::after {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
/* END NGW REMOVE HERO VISUAL DECORATION HARD */


/* BEGIN NGW DESIGN POLISH 20260506 */

/* ------------------------------
   Design tokens / base contrast
------------------------------ */
body.ngw-site-design {
  --ngw-color-text: #071f3f;
  --ngw-color-muted: #52677f;
  --ngw-color-muted-strong: #354c66;
  --ngw-color-primary: #0f7c79;
  --ngw-color-primary-dark: #075f62;
  --ngw-color-accent: #f2cf00;
  --ngw-color-surface: #ffffff;
  --ngw-color-surface-soft: #f4f8fa;
  --ngw-color-dark: #06233f;
  --ngw-color-dark-2: #073d59;
  --ngw-color-on-dark: #ffffff;
  --ngw-color-on-dark-muted: rgba(255,255,255,0.84);

  color: var(--ngw-color-text);
}

body.ngw-site-design p,
body.ngw-site-design li,
body.ngw-site-design small {
  color: var(--ngw-color-muted);
}

/* ------------------------------
   Fixed header polish
------------------------------ */
body.ngw-site-design {
  padding-top: 96px;
}

body.ngw-site-design .ngw-site-header,
body.ngw-site-design header.ngw-site-header {
  position: sticky !important;
  top: 0;
  z-index: 1000;
}

body.ngw-site-design .ngw-site-header__inner {
  min-height: 96px;
  padding: 18px clamp(28px, 6vw, 128px);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(7,31,63,0.08);
  box-shadow: 0 10px 32px rgba(7,31,63,0.07);
}

/* Logo deutlich sichtbarer */
body.ngw-site-design .ngw-site-header__brand {
  min-width: 205px;
  display: inline-flex;
  align-items: center;
}

body.ngw-site-design .ngw-site-header__logo,
body.ngw-site-design .ngw-site-header__brand img {
  width: 195px !important;
  max-width: 195px !important;
  height: auto !important;
  max-height: none !important;
  display: block;
}

/* Navigation ruhiger */
body.ngw-site-design .ngw-site-header__nav a {
  color: var(--ngw-color-muted-strong);
  font-weight: 700;
}

body.ngw-site-design .ngw-site-header__nav a:hover,
body.ngw-site-design .ngw-site-header__nav a:focus-visible,
body.ngw-site-design .ngw-site-header__nav a.active,
body.ngw-site-design .ngw-site-header__nav a[aria-current="page"] {
  color: var(--ngw-color-primary-dark);
}

/* Menü-Dublette optisch verhindern */
body.ngw-site-design .ngw-site-header__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

body.ngw-site-design .ngw-site-header__toggle::before,
body.ngw-site-design .ngw-site-header__toggle::after {
  content: none !important;
}

/* ------------------------------
   Language switcher with icon
------------------------------ */
body.ngw-site-design .ngw-language-switcher__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.ngw-site-design .ngw-language-switcher__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

body.ngw-site-design .ngw-language-switcher__icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

/* ------------------------------
   Hero / decorative elements
------------------------------ */

/* Hero-Diamanten und störende Deko hart reduzieren */
body.ngw-site-design .ngw-home-visual-card > span,
body.ngw-site-design .ngw-home-visual-card span,
body.ngw-site-design .ngw-home-visual-card > span::before,
body.ngw-site-design .ngw-home-visual-card > span::after,
body.ngw-site-design .ngw-home-visual-card span::before,
body.ngw-site-design .ngw-home-visual-card span::after {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Wiederholte rechte Diamanten im Content ausblenden */
body.ngw-site-design .ngw-section-diamonds,
body.ngw-site-design .ngw-home-content .ngw-home-visual-card,
body.ngw-site-design .ngw-home-content .ngw-home-visual-card::before,
body.ngw-site-design .ngw-home-content .ngw-home-visual-card::after {
  display: none !important;
  content: none !important;
}

/* ------------------------------
   Scroll indicator
------------------------------ */
body.ngw-site-design .ngw-scroll-indicator:not(.ngw-scroll-indicator--fixed),
body.ngw-site-design .ngw-home-scroll,
body.ngw-site-design .ngw-home-scroll-indicator,
body.ngw-site-design .ngw-hero-scroll,
body.ngw-site-design .ngw-hero-scroll-indicator,
body.ngw-site-design .ngw-scroll-hint,
body.ngw-site-design .ngw-scroll-down,
body.ngw-site-design .ngw-scroll-mouse,
body.ngw-site-design .ngw-home-hero__scroll,
body.ngw-site-design .ngw-home-hero-scroll {
  display: none !important;
}

body.ngw-site-design .ngw-scroll-indicator--fixed {
  position: fixed;
  left: 50%;
  bottom: clamp(22px, 5vh, 54px);
  transform: translateX(-50%);
  z-index: 70;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ngw-color-primary);
  pointer-events: none;
  user-select: none;
  opacity: 1;
  transition: opacity 180ms ease, transform 180ms ease, color 180ms ease;
}

body.ngw-site-design .ngw-scroll-indicator--fixed.is-on-dark {
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.28);
}

body.ngw-site-design .ngw-scroll-indicator--fixed.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
}

/* ------------------------------
   Card contrast
------------------------------ */
body.ngw-site-design .ngw-home-card--dark,
body.ngw-site-design .ngw-home-case-card {
  background: linear-gradient(160deg, #06233f 0%, #075875 100%);
  color: var(--ngw-color-on-dark);
}

body.ngw-site-design .ngw-home-card--dark h3,
body.ngw-site-design .ngw-home-card--dark p,
body.ngw-site-design .ngw-home-card--dark a,
body.ngw-site-design .ngw-home-case-card h3,
body.ngw-site-design .ngw-home-case-card p,
body.ngw-site-design .ngw-home-case-card a {
  color: var(--ngw-color-on-dark) !important;
}

body.ngw-site-design .ngw-home-card--dark p,
body.ngw-site-design .ngw-home-case-card p {
  color: var(--ngw-color-on-dark-muted) !important;
}

body.ngw-site-design .ngw-home-card--dark .ngw-home-card__icon,
body.ngw-site-design .ngw-home-case-card span {
  color: #ffffff !important;
}

/* Helle Karten klarer */
body.ngw-site-design .ngw-home-card:not(.ngw-home-card--dark),
body.ngw-site-design .ngw-home-knowledge-card,
body.ngw-site-design .ngw-home-image-card {
  color: var(--ngw-color-text);
}

body.ngw-site-design .ngw-home-card:not(.ngw-home-card--dark) h3,
body.ngw-site-design .ngw-home-knowledge-card h3,
body.ngw-site-design .ngw-home-image-card h3 {
  color: var(--ngw-color-text) !important;
}

body.ngw-site-design .ngw-home-card:not(.ngw-home-card--dark) p,
body.ngw-site-design .ngw-home-knowledge-card p,
body.ngw-site-design .ngw-home-image-card p {
  color: var(--ngw-color-muted) !important;
}

/* ------------------------------
   CTA band contrast
------------------------------ */
body.ngw-site-design .ngw-cta-band__inner {
  background: linear-gradient(135deg, #06233f 0%, #086b83 100%);
  color: #ffffff;
}

body.ngw-site-design .ngw-cta-band__inner h2,
body.ngw-site-design .ngw-cta-band__inner p,
body.ngw-site-design .ngw-cta-band__inner a {
  color: #ffffff !important;
}

body.ngw-site-design .ngw-cta-band__inner p {
  color: rgba(255,255,255,0.86) !important;
}

body.ngw-site-design .ngw-cta-band__inner .ngw-section-kicker {
  color: #7fe4de !important;
}

/* ------------------------------
   Footer polish + social icons
------------------------------ */
body.ngw-site-design .ngw-site-footer h4,
body.ngw-site-design .ngw-site-footer strong {
  color: var(--ngw-color-text) !important;
}

body.ngw-site-design .ngw-site-footer p,
body.ngw-site-design .ngw-site-footer li,
body.ngw-site-design .ngw-site-footer span {
  color: var(--ngw-color-muted) !important;
}

body.ngw-site-design .ngw-site-footer a {
  color: var(--ngw-color-primary-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

body.ngw-site-design .ngw-site-footer a:hover {
  color: var(--ngw-color-primary);
}

body.ngw-site-design .ngw-site-footer__social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

body.ngw-site-design .ngw-site-footer__social-icons a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(7,31,63,0.10);
  color: var(--ngw-color-primary-dark);
  box-shadow: 0 10px 22px rgba(7,31,63,0.08);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

body.ngw-site-design .ngw-site-footer__social-icons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(7,31,63,0.12);
  color: var(--ngw-color-primary);
}

body.ngw-site-design .ngw-site-footer__social-icons svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

/* ------------------------------
   Responsive
------------------------------ */
@media (max-width: 991.98px) {
  body.ngw-site-design {
    padding-top: 82px;
  }

  body.ngw-site-design .ngw-site-header__inner {
    min-height: 82px;
    padding: 14px 22px;
  }

  body.ngw-site-design .ngw-site-header__brand {
    min-width: 155px;
  }

  body.ngw-site-design .ngw-site-header__logo,
  body.ngw-site-design .ngw-site-header__brand img {
    width: 150px !important;
    max-width: 150px !important;
  }
}

@media (max-width: 575.98px) {
  body.ngw-site-design .ngw-site-header__brand {
    min-width: 128px;
  }

  body.ngw-site-design .ngw-site-header__logo,
  body.ngw-site-design .ngw-site-header__brand img {
    width: 124px !important;
    max-width: 124px !important;
  }

  body.ngw-site-design .ngw-scroll-indicator--fixed {
    display: none !important;
  }
}

@media print {
  body.ngw-site-design {
    padding-top: 0;
  }

  body.ngw-site-design .ngw-site-header,
  body.ngw-site-design .ngw-site-header__inner {
    position: static !important;
    box-shadow: none;
  }
}

/* END NGW DESIGN POLISH 20260506 */




/* BEGIN NGW LOGO FINAL ALIGN */
body.ngw-site-design {
  --ngw-logo-box-width: 220px;
  --ngw-logo-box-height: 38px;
  --ngw-logo-visual-width: 255px;
  --ngw-logo-shift-x: -8px;
  --ngw-logo-shift-y: 0px;
}

body.ngw-site-design .ngw-site-header__inner {
  align-items: center !important;
}

body.ngw-site-design .ngw-site-header__brand {
  width: var(--ngw-logo-box-width) !important;
  min-width: var(--ngw-logo-box-width) !important;
  max-width: var(--ngw-logo-box-width) !important;
  flex: 0 0 var(--ngw-logo-box-width) !important;

  height: var(--ngw-logo-box-height) !important;
  min-height: var(--ngw-logo-box-height) !important;
  max-height: var(--ngw-logo-box-height) !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;

  overflow: hidden !important;
  line-height: 0 !important;

  padding: 0 !important;
  margin: 0 clamp(18px, 2.4vw, 34px) 0 0 !important;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.ngw-site-design .ngw-site-header__logo,
body.ngw-site-design .ngw-site-header__brand img,
body.ngw-site-design .ngw-site-header__brand svg {
  width: var(--ngw-logo-visual-width) !important;
  max-width: none !important;

  height: auto !important;
  max-height: none !important;

  display: block !important;
  flex: 0 0 auto !important;

  margin: 0 !important;
  padding: 0 !important;

  transform: translate(var(--ngw-logo-shift-x), var(--ngw-logo-shift-y)) !important;
  transform-origin: left center !important;
}

@media (max-width: 1199.98px) {
  body.ngw-site-design {
    --ngw-logo-box-width: 190px;
    --ngw-logo-box-height: 34px;
    --ngw-logo-visual-width: 220px;
    --ngw-logo-shift-x: -7px;
  }
}

@media (max-width: 991.98px) {
  body.ngw-site-design {
    --ngw-logo-box-width: 160px;
    --ngw-logo-box-height: 32px;
    --ngw-logo-visual-width: 188px;
    --ngw-logo-shift-x: -6px;
  }
}

@media (max-width: 575.98px) {
  body.ngw-site-design {
    --ngw-logo-box-width: 132px;
    --ngw-logo-box-height: 28px;
    --ngw-logo-visual-width: 158px;
    --ngw-logo-shift-x: -5px;
  }
}
/* END NGW LOGO FINAL ALIGN */


/* BEGIN NGW SUBPAGE STEP 1 FOUNDATION */
:root {
  --ngw-color-ink: #071a36;
  --ngw-color-muted: #58708f;
  --ngw-color-teal: #0f7c79;
  --ngw-color-teal-strong: #07857f;
  --ngw-color-bg: #f5f9fc;
  --ngw-color-card: rgba(255, 255, 255, 0.92);
  --ngw-radius-xl: 32px;
  --ngw-shadow-soft: 0 24px 70px rgba(7, 26, 54, 0.10);
}

/* Hide scroll helper on all subpages. Keep it only on homepage. */
body.ngw-site-design:not(#p100) .ngw-scroll-indicator,
body.ngw-site-design:not(#p100) .ngw-scroll-indicator--fixed,
body.ngw-site-design:not(#p100) .ngw-home-scroll,
body.ngw-site-design:not(#p100) .ngw-home-scroll-indicator,
body.ngw-site-design:not(#p100) .ngw-scroll-hint,
body.ngw-site-design:not(#p100) .ngw-scroll-down {
  display: none !important;
}

/* Remove decorative section dots / diamonds that visually disturb content pages. */
body.ngw-site-design:not(#p100) .ngw-home-visual-card,
body.ngw-site-design:not(#p100) .ngw-home-visual-card *,
body.ngw-site-design:not(#p100) .ngw-home-visual-card::before,
body.ngw-site-design:not(#p100) .ngw-home-visual-card::after,
body.ngw-site-design:not(#p100) [class*="scrollspy"],
body.ngw-site-design:not(#p100) [class*="section-progress"],
body.ngw-site-design:not(#p100) [class*="section-nav"],
body.ngw-site-design:not(#p100) [class*="page-progress"],
body.ngw-site-design:not(#p100) [class*="side-nav"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Avoid duplicate "Menü Menü" rendering. */
body.ngw-site-design .ngw-site-header__toggle {
  font-size: 0 !important;
  gap: 10px;
}

body.ngw-site-design .ngw-site-header__toggle > span:not(.ngw-site-header__toggle-icon):first-child {
  display: inline-flex !important;
  font-size: 14px !important;
  line-height: 1 !important;
}

body.ngw-site-design .ngw-site-header__toggle > span:not(:first-child):not(.ngw-site-header__toggle-icon) {
  display: none !important;
}

body.ngw-site-design .ngw-site-header__toggle .ngw-site-header__toggle-icon {
  font-size: 0 !important;
}

/* Language switcher icon polish. */
body.ngw-site-design .ngw-language-switcher__button::before,
body.ngw-site-design .ngw-language-switcher > button::before {
  content: "◉";
  display: inline-block;
  width: 1em;
  margin-right: 6px;
  color: var(--ngw-color-teal);
  font-size: 0.72em;
  transform: translateY(-1px);
}

/* Global subpage background. */
body#p120.ngw-site-design,
body#p121.ngw-site-design,
body#p123.ngw-site-design,
body#p126.ngw-site-design,
body#p128.ngw-site-design {
  background:
    radial-gradient(circle at 85% 18%, rgba(15, 124, 121, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--ngw-color-bg) 54%, #eef5fa 100%) !important;
  color: var(--ngw-color-ink);
}

/* Subpage hero: make title readable and premium. */
body.ngw-site-design:not(#p100) .ngw-hero,
body.ngw-site-design:not(#p100) .ngw-page-hero,
body.ngw-site-design:not(#p100) .ngw-content-hero,
body.ngw-site-design:not(#p100) .ngw-subpage-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(300px, 36vh, 470px);
  padding: clamp(110px, 12vw, 170px) clamp(24px, 7vw, 128px) clamp(86px, 8vw, 126px) !important;
  background:
    radial-gradient(circle at 88% 34%, rgba(86, 166, 219, 0.38), transparent 28%),
    radial-gradient(circle at 18% 14%, rgba(15, 124, 121, 0.18), transparent 32%),
    linear-gradient(135deg, #06172f 0%, #09284b 52%, #0d4770 100%) !important;
  color: #ffffff !important;
}

body.ngw-site-design:not(#p100) .ngw-hero::after,
body.ngw-site-design:not(#p100) .ngw-page-hero::after,
body.ngw-site-design:not(#p100) .ngw-content-hero::after,
body.ngw-site-design:not(#p100) .ngw-subpage-hero::after {
  content: "";
  position: absolute;
  right: -7vw;
  bottom: -12vw;
  width: min(34vw, 520px);
  aspect-ratio: 1;
  border-radius: 999px 0 0 0;
  background: rgba(255, 255, 255, 0.10);
  pointer-events: none;
}

body.ngw-site-design:not(#p100) .ngw-hero h1,
body.ngw-site-design:not(#p100) .ngw-page-hero h1,
body.ngw-site-design:not(#p100) .ngw-content-hero h1,
body.ngw-site-design:not(#p100) .ngw-subpage-hero h1 {
  max-width: 980px;
  color: #ffffff !important;
  font-size: clamp(48px, 6vw, 92px) !important;
  line-height: 0.94 !important;
  letter-spacing: -0.065em !important;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

body.ngw-site-design:not(#p100) .ngw-hero p,
body.ngw-site-design:not(#p100) .ngw-page-hero p,
body.ngw-site-design:not(#p100) .ngw-content-hero p,
body.ngw-site-design:not(#p100) .ngw-subpage-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.55;
}

body.ngw-site-design:not(#p100) .ngw-hero__eyebrow,
body.ngw-site-design:not(#p100) .ngw-section-kicker,
body.ngw-site-design:not(#p100) .ngw-home-section-kicker {
  color: #35d6cf !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Subpage content width and card rhythm. */
body.ngw-site-design:not(#p100) .ngw-main,
body.ngw-site-design:not(#p100) main.ngw-main {
  background:
    radial-gradient(circle at 82% 14%, rgba(15, 124, 121, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(245,249,252,0.96));
}

body.ngw-site-design:not(#p100) .ngw-content-section,
body.ngw-site-design:not(#p100) .ngw-main > .frame,
body.ngw-site-design:not(#p100) main > .frame {
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(22px, 4vw, 48px) !important;
  padding-right: clamp(22px, 4vw, 48px) !important;
}

body.ngw-site-design:not(#p100) .ngw-content-section {
  padding-top: clamp(56px, 7vw, 104px) !important;
  padding-bottom: clamp(72px, 8vw, 120px) !important;
}

body.ngw-site-design:not(#p100) .ngw-content-section > .frame,
body.ngw-site-design:not(#p100) .ngw-main > .frame,
body.ngw-site-design:not(#p100) main > .frame {
  border-radius: var(--ngw-radius-xl);
}

body.ngw-site-design:not(#p100) .ngw-content-section .frame,
body.ngw-site-design:not(#p100) .ngw-content-section .frame-inner,
body.ngw-site-design:not(#p100) .ngw-content-section .frame-container,
body.ngw-site-design:not(#p100) .ngw-content-section .ce-bodytext {
  color: var(--ngw-color-ink);
}

body.ngw-site-design:not(#p100) .ngw-content-section h1,
body.ngw-site-design:not(#p100) .ngw-content-section h2,
body.ngw-site-design:not(#p100) .ngw-content-section h3 {
  color: var(--ngw-color-ink) !important;
  letter-spacing: -0.045em;
}

body.ngw-site-design:not(#p100) .ngw-content-section h2 {
  font-size: clamp(42px, 5vw, 76px) !important;
  line-height: 0.98 !important;
  max-width: 980px;
}

body.ngw-site-design:not(#p100) .ngw-content-section h3 {
  font-size: clamp(24px, 2.2vw, 36px) !important;
  line-height: 1.08 !important;
}

body.ngw-site-design:not(#p100) .ngw-content-section p,
body.ngw-site-design:not(#p100) .ngw-content-section li {
  color: var(--ngw-color-muted) !important;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.72;
}

/* Make generic TYPO3 content frames look intentional. */
body#p120.ngw-site-design .ngw-content-section > .frame,
body#p121.ngw-site-design .ngw-content-section > .frame,
body#p123.ngw-site-design .ngw-content-section > .frame,
body#p126.ngw-site-design .ngw-content-section > .frame,
body#p128.ngw-site-design .ngw-content-section > .frame {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(246,252,252,0.88)) !important;
  border: 1px solid rgba(7, 26, 54, 0.08) !important;
  box-shadow: var(--ngw-shadow-soft) !important;
  padding: clamp(28px, 4vw, 56px) !important;
  margin-bottom: clamp(24px, 4vw, 48px) !important;
}

/* First content block may overlap hero slightly for landingpage feel. */
body#p120.ngw-site-design .ngw-content-section > .frame:first-child,
body#p121.ngw-site-design .ngw-content-section > .frame:first-child,
body#p123.ngw-site-design .ngw-content-section > .frame:first-child,
body#p126.ngw-site-design .ngw-content-section > .frame:first-child,
body#p128.ngw-site-design .ngw-content-section > .frame:first-child {
  margin-top: clamp(-96px, -7vw, -54px) !important;
  position: relative;
  z-index: 3;
}

/* Dark cards / CTA readability fixes. */
body.ngw-site-design .ngw-home-card--dark,
body.ngw-site-design .ngw-home-case-card,
body.ngw-site-design .ngw-cta-band,
body.ngw-site-design [class*="card--dark"] {
  color: #ffffff !important;
}

body.ngw-site-design .ngw-home-card--dark h1,
body.ngw-site-design .ngw-home-card--dark h2,
body.ngw-site-design .ngw-home-card--dark h3,
body.ngw-site-design .ngw-home-case-card h1,
body.ngw-site-design .ngw-home-case-card h2,
body.ngw-site-design .ngw-home-case-card h3,
body.ngw-site-design .ngw-cta-band h1,
body.ngw-site-design .ngw-cta-band h2,
body.ngw-site-design .ngw-cta-band h3,
body.ngw-site-design [class*="card--dark"] h1,
body.ngw-site-design [class*="card--dark"] h2,
body.ngw-site-design [class*="card--dark"] h3 {
  color: #ffffff !important;
}

body.ngw-site-design .ngw-home-card--dark p,
body.ngw-site-design .ngw-home-case-card p,
body.ngw-site-design .ngw-cta-band p,
body.ngw-site-design [class*="card--dark"] p {
  color: rgba(255, 255, 255, 0.82) !important;
}

/* Better CTA contrast. */
body.ngw-site-design .ngw-cta-band,
body.ngw-site-design .ngw-cta-band__inner {
  background:
    radial-gradient(circle at 86% 24%, rgba(30, 177, 171, 0.32), transparent 30%),
    linear-gradient(135deg, #06172f 0%, #092844 56%, #0a6f7b 100%) !important;
  border-radius: 32px !important;
}

/* Cleaner footer spacing on all pages. */
body.ngw-site-design .ngw-site-footer {
  margin-top: 0 !important;
}

body.ngw-site-design .ngw-site-footer h4,
body.ngw-site-design .ngw-site-footer strong {
  color: var(--ngw-color-ink) !important;
}

body.ngw-site-design .ngw-site-footer p,
body.ngw-site-design .ngw-site-footer li,
body.ngw-site-design .ngw-site-footer span {
  color: var(--ngw-color-muted) !important;
}

/* Responsive: avoid oversized hero and cards on mobile. */
@media (max-width: 767.98px) {
  body.ngw-site-design:not(#p100) .ngw-hero,
  body.ngw-site-design:not(#p100) .ngw-page-hero,
  body.ngw-site-design:not(#p100) .ngw-content-hero,
  body.ngw-site-design:not(#p100) .ngw-subpage-hero {
    min-height: 260px;
    padding-top: 104px !important;
    padding-bottom: 64px !important;
  }

  body.ngw-site-design:not(#p100) .ngw-hero h1,
  body.ngw-site-design:not(#p100) .ngw-page-hero h1,
  body.ngw-site-design:not(#p100) .ngw-content-hero h1,
  body.ngw-site-design:not(#p100) .ngw-subpage-hero h1 {
    font-size: clamp(42px, 14vw, 64px) !important;
  }

  body#p120.ngw-site-design .ngw-content-section > .frame,
  body#p121.ngw-site-design .ngw-content-section > .frame,
  body#p123.ngw-site-design .ngw-content-section > .frame,
  body#p126.ngw-site-design .ngw-content-section > .frame,
  body#p128.ngw-site-design .ngw-content-section > .frame {
    border-radius: 22px !important;
    padding: 24px !important;
  }
}
/* END NGW SUBPAGE STEP 1 FOUNDATION */


/* BEGIN NGW SUBPAGE STEP 1.1 HERO AND CARD REPAIR */

/* Remove the extra artificial language marker. The existing globe is enough. */
body.ngw-site-design .ngw-language-switcher__button::before,
body.ngw-site-design .ngw-language-switcher > button::before {
  content: none !important;
  display: none !important;
}

/* Make subpage hero readable and less empty. */
body#p120.ngw-site-design .ngw-hero,
body#p121.ngw-site-design .ngw-hero,
body#p123.ngw-site-design .ngw-hero,
body#p126.ngw-site-design .ngw-hero,
body#p128.ngw-site-design .ngw-hero,
body#p120.ngw-site-design .ngw-page-hero,
body#p121.ngw-site-design .ngw-page-hero,
body#p123.ngw-site-design .ngw-page-hero,
body#p126.ngw-site-design .ngw-page-hero,
body#p128.ngw-site-design .ngw-page-hero,
body#p120.ngw-site-design .ngw-content-hero,
body#p121.ngw-site-design .ngw-content-hero,
body#p123.ngw-site-design .ngw-content-hero,
body#p126.ngw-site-design .ngw-content-hero,
body#p128.ngw-site-design .ngw-content-hero {
  min-height: clamp(260px, 29vh, 360px) !important;
  padding-top: clamp(112px, 10vw, 150px) !important;
  padding-bottom: clamp(58px, 6vw, 88px) !important;
  display: flex !important;
  align-items: center !important;
}

/* Strong fallback: first visible h1 on subpages must be bright in the dark hero. */
body#p120.ngw-site-design h1:first-of-type,
body#p121.ngw-site-design h1:first-of-type,
body#p123.ngw-site-design h1:first-of-type,
body#p126.ngw-site-design h1:first-of-type,
body#p128.ngw-site-design h1:first-of-type,
body#p120.ngw-site-design .ngw-hero h1,
body#p121.ngw-site-design .ngw-hero h1,
body#p123.ngw-site-design .ngw-hero h1,
body#p126.ngw-site-design .ngw-hero h1,
body#p128.ngw-site-design .ngw-hero h1,
body#p120.ngw-site-design .ngw-page-hero h1,
body#p121.ngw-site-design .ngw-page-hero h1,
body#p123.ngw-site-design .ngw-page-hero h1,
body#p126.ngw-site-design .ngw-page-hero h1,
body#p128.ngw-site-design .ngw-page-hero h1 {
  color: #ffffff !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.26) !important;
  font-size: clamp(54px, 5.6vw, 92px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.06em !important;
}

/* Hero eyebrow stays visible but subtle. */
body#p120.ngw-site-design .ngw-hero__eyebrow,
body#p121.ngw-site-design .ngw-hero__eyebrow,
body#p123.ngw-site-design .ngw-hero__eyebrow,
body#p126.ngw-site-design .ngw-hero__eyebrow,
body#p128.ngw-site-design .ngw-hero__eyebrow,
body#p120.ngw-site-design .ngw-section-kicker,
body#p121.ngw-site-design .ngw-section-kicker,
body#p123.ngw-site-design .ngw-section-kicker,
body#p126.ngw-site-design .ngw-section-kicker,
body#p128.ngw-site-design .ngw-section-kicker {
  color: #38d8d1 !important;
  opacity: 1 !important;
}

/* Content should not become a narrow phone-sized column on desktop. */
body#p120.ngw-site-design .ngw-content-section > .frame:first-child,
body#p121.ngw-site-design .ngw-content-section > .frame:first-child,
body#p123.ngw-site-design .ngw-content-section > .frame:first-child,
body#p126.ngw-site-design .ngw-content-section > .frame:first-child,
body#p128.ngw-site-design .ngw-content-section > .frame:first-child {
  width: min(920px, calc(100vw - 56px)) !important;
  max-width: 920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Reduce over-large card headings on content pages. */
body#p120.ngw-site-design .ngw-content-section h2,
body#p121.ngw-site-design .ngw-content-section h2,
body#p123.ngw-site-design .ngw-content-section h2,
body#p126.ngw-site-design .ngw-content-section h2,
body#p128.ngw-site-design .ngw-content-section h2 {
  font-size: clamp(34px, 3.4vw, 56px) !important;
  line-height: 1.03 !important;
  letter-spacing: -0.055em !important;
  color: #071a36 !important;
}

body#p120.ngw-site-design .ngw-content-section h3,
body#p121.ngw-site-design .ngw-content-section h3,
body#p123.ngw-site-design .ngw-content-section h3,
body#p126.ngw-site-design .ngw-content-section h3,
body#p128.ngw-site-design .ngw-content-section h3 {
  font-size: clamp(24px, 2vw, 34px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.035em !important;
  color: #071a36 !important;
}

/* The intro card should feel intentional, not like a floating narrow block. */
body#p120.ngw-site-design .ngw-content-section > .frame:first-child,
body#p121.ngw-site-design .ngw-content-section > .frame:first-child,
body#p123.ngw-site-design .ngw-content-section > .frame:first-child,
body#p126.ngw-site-design .ngw-content-section > .frame:first-child,
body#p128.ngw-site-design .ngw-content-section > .frame:first-child {
  background:
    radial-gradient(circle at 86% 10%, rgba(31, 218, 207, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(245,252,252,0.92)) !important;
  border: 1px solid rgba(7, 26, 54, 0.08) !important;
  box-shadow: 0 28px 78px rgba(7, 26, 54, 0.12) !important;
}

/* Inner text should have comfortable reading width. */
body#p120.ngw-site-design .ngw-content-section > .frame:first-child .ce-bodytext,
body#p121.ngw-site-design .ngw-content-section > .frame:first-child .ce-bodytext,
body#p123.ngw-site-design .ngw-content-section > .frame:first-child .ce-bodytext,
body#p126.ngw-site-design .ngw-content-section > .frame:first-child .ce-bodytext,
body#p128.ngw-site-design .ngw-content-section > .frame:first-child .ce-bodytext {
  max-width: 680px !important;
}

/* Do not let dark-blue text disappear on dark panels. */
body.ngw-site-design .ngw-cta-band h1,
body.ngw-site-design .ngw-cta-band h2,
body.ngw-site-design .ngw-cta-band h3,
body.ngw-site-design .ngw-cta-band p,
body.ngw-site-design .ngw-cta-band a,
body.ngw-site-design .ngw-home-card--dark h1,
body.ngw-site-design .ngw-home-card--dark h2,
body.ngw-site-design .ngw-home-card--dark h3,
body.ngw-site-design .ngw-home-card--dark p,
body.ngw-site-design .ngw-home-card--dark a,
body.ngw-site-design .ngw-home-case-card h1,
body.ngw-site-design .ngw-home-case-card h2,
body.ngw-site-design .ngw-home-case-card h3,
body.ngw-site-design .ngw-home-case-card p {
  color: #ffffff !important;
}

body.ngw-site-design .ngw-home-card--dark p,
body.ngw-site-design .ngw-home-case-card p,
body.ngw-site-design .ngw-cta-band p {
  color: rgba(255, 255, 255, 0.82) !important;
}

/* Mobile repair. */
@media (max-width: 767.98px) {
  body#p120.ngw-site-design h1:first-of-type,
  body#p121.ngw-site-design h1:first-of-type,
  body#p123.ngw-site-design h1:first-of-type,
  body#p126.ngw-site-design h1:first-of-type,
  body#p128.ngw-site-design h1:first-of-type {
    font-size: clamp(42px, 13vw, 64px) !important;
  }

  body#p120.ngw-site-design .ngw-content-section > .frame:first-child,
  body#p121.ngw-site-design .ngw-content-section > .frame:first-child,
  body#p123.ngw-site-design .ngw-content-section > .frame:first-child,
  body#p126.ngw-site-design .ngw-content-section > .frame:first-child,
  body#p128.ngw-site-design .ngw-content-section > .frame:first-child {
    width: min(100%, calc(100vw - 32px)) !important;
  }
}
/* END NGW SUBPAGE STEP 1.1 HERO AND CARD REPAIR */


/* BEGIN NGW LEISTUNGEN STEP 1.2 INTRO WIDTH REPAIR */

/* Leistungen: reduce empty space below hero and create a proper intro stage */
body#p121.ngw-site-design .ngw-content-section {
  padding-top: clamp(34px, 5vw, 72px) !important;
}

/* First content frame should be a real desktop intro card, not a narrow mobile tile */
body#p121.ngw-site-design .ngw-content-section > .frame:first-child {
  width: min(1120px, calc(100vw - 72px)) !important;
  max-width: 1120px !important;
  margin: clamp(-18px, -2vw, -8px) auto clamp(48px, 6vw, 84px) auto !important;
  padding: clamp(38px, 5vw, 72px) !important;

  display: block !important;

  background:
    radial-gradient(circle at 88% 18%, rgba(27, 216, 205, 0.20), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(244,251,252,0.94)) !important;
  border: 1px solid rgba(7, 26, 54, 0.08) !important;
  border-radius: 36px !important;
  box-shadow: 0 34px 96px rgba(7, 26, 54, 0.13) !important;
}

/* Remove nested Bootstrap/container width limits inside the first card */
body#p121.ngw-site-design .ngw-content-section > .frame:first-child > .container,
body#p121.ngw-site-design .ngw-content-section > .frame:first-child > .container-fluid,
body#p121.ngw-site-design .ngw-content-section > .frame:first-child .frame-group-container,
body#p121.ngw-site-design .ngw-content-section > .frame:first-child .frame-group-inner,
body#p121.ngw-site-design .ngw-content-section > .frame:first-child .frame-container,
body#p121.ngw-site-design .ngw-content-section > .frame:first-child .frame-container-default,
body#p121.ngw-site-design .ngw-content-section > .frame:first-child .frame-inner,
body#p121.ngw-site-design .ngw-content-section > .frame:first-child .ce-bodytext,
body#p121.ngw-site-design .ngw-content-section > .frame:first-child .ce-textpic,
body#p121.ngw-site-design .ngw-content-section > .frame:first-child .ce-textpic-text {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* The intro text itself becomes a composed two-column block */
body#p121.ngw-site-design .ngw-content-section > .frame:first-child .ce-bodytext {
  display: grid !important;
  grid-template-columns: minmax(320px, 0.88fr) minmax(360px, 1.12fr) !important;
  gap: clamp(28px, 5vw, 72px) !important;
  align-items: start !important;
}

/* First heading sits left, paragraphs right */
body#p121.ngw-site-design .ngw-content-section > .frame:first-child .ce-bodytext > h2:first-child,
body#p121.ngw-site-design .ngw-content-section > .frame:first-child .ce-bodytext > h3:first-child {
  grid-row: 1 / span 3 !important;
  max-width: 420px !important;
  margin: 0 !important;

  font-size: clamp(46px, 5.2vw, 78px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.065em !important;
  color: #071a36 !important;
}

/* All intro paragraphs on the right */
body#p121.ngw-site-design .ngw-content-section > .frame:first-child .ce-bodytext > p {
  grid-column: 2 !important;
  max-width: 560px !important;
  margin: 0 0 18px 0 !important;

  font-size: clamp(17px, 1.08vw, 20px) !important;
  line-height: 1.75 !important;
  color: #455f80 !important;
}

/* Highlight important terms subtly */
body#p121.ngw-site-design .ngw-content-section > .frame:first-child strong,
body#p121.ngw-site-design .ngw-content-section > .frame:first-child b {
  color: #071a36 !important;
  font-weight: 800 !important;
}

/* Following content frames should align to the same page rhythm */
body#p121.ngw-site-design .ngw-content-section > .frame:not(:first-child) {
  width: min(1120px, calc(100vw - 72px)) !important;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Mobile: back to single column */
@media (max-width: 899.98px) {
  body#p121.ngw-site-design .ngw-content-section {
    padding-top: 28px !important;
  }

  body#p121.ngw-site-design .ngw-content-section > .frame:first-child,
  body#p121.ngw-site-design .ngw-content-section > .frame:not(:first-child) {
    width: min(100%, calc(100vw - 32px)) !important;
    padding: 28px !important;
    border-radius: 28px !important;
  }

  body#p121.ngw-site-design .ngw-content-section > .frame:first-child .ce-bodytext {
    display: block !important;
  }

  body#p121.ngw-site-design .ngw-content-section > .frame:first-child .ce-bodytext > h2:first-child,
  body#p121.ngw-site-design .ngw-content-section > .frame:first-child .ce-bodytext > h3:first-child {
    max-width: none !important;
    margin-bottom: 22px !important;
    font-size: clamp(38px, 11vw, 54px) !important;
  }

  body#p121.ngw-site-design .ngw-content-section > .frame:first-child .ce-bodytext > p {
    max-width: none !important;
    font-size: 16px !important;
  }
}
/* END NGW LEISTUNGEN STEP 1.2 INTRO WIDTH REPAIR */




/* BEGIN NGW LEISTUNGEN STEP 1.4 CLEAN PAGE */
body#p121.ngw-site-design .ngw-services-original-hidden,
body#p121.ngw-site-design .ngw-services-legacy-hidden {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

body#p121.ngw-site-design .ngw-services-page {
  width: min(1220px, calc(100vw - 72px));
  margin: clamp(58px, 7vw, 104px) auto clamp(72px, 8vw, 120px);
  color: #071a36;
}

body#p121.ngw-site-design .ngw-services-page *,
body#p121.ngw-site-design .ngw-services-page *::before,
body#p121.ngw-site-design .ngw-services-page *::after {
  box-sizing: border-box;
}

body#p121.ngw-site-design .ngw-services-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;

  margin-bottom: clamp(52px, 7vw, 96px);
  padding: clamp(34px, 5vw, 72px);

  background:
    radial-gradient(circle at 100% 0%, rgba(28, 217, 207, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(243,249,252,0.92));
  border: 1px solid rgba(7, 26, 54, 0.08);
  border-radius: 38px;
  box-shadow: 0 30px 86px rgba(7, 26, 54, 0.10);
}

body#p121.ngw-site-design .ngw-services-kicker {
  margin: 0 0 16px;
  color: #0f7c79 !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

body#p121.ngw-site-design .ngw-services-intro h2,
body#p121.ngw-site-design .ngw-services-section-title {
  margin: 0;
  color: #071a36 !important;
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

body#p121.ngw-site-design .ngw-services-intro h2 span {
  color: #0f7c79 !important;
}

body#p121.ngw-site-design .ngw-services-intro p {
  max-width: 720px;
  margin: 24px 0 0;
  color: #526b89 !important;
  font-size: clamp(17px, 1.12vw, 20px);
  line-height: 1.72;
}

body#p121.ngw-site-design .ngw-services-intro__facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

body#p121.ngw-site-design .ngw-services-fact {
  padding: 24px 26px;
  min-height: 116px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(7, 26, 54, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(7, 26, 54, 0.07);
}

body#p121.ngw-site-design .ngw-services-fact strong {
  display: block;
  color: #071a36 !important;
  font-size: 20px;
  line-height: 1.25;
}

body#p121.ngw-site-design .ngw-services-fact span {
  display: block;
  margin-top: 8px;
  color: #5c7390 !important;
  font-size: 15px;
  line-height: 1.55;
}

body#p121.ngw-site-design .ngw-services-showcase-head {
  margin-bottom: clamp(28px, 4vw, 46px);
}

body#p121.ngw-site-design .ngw-services-showcase-head p {
  margin: 22px 0 0;
  max-width: 760px;
  color: #526b89 !important;
  font-size: 18px;
  line-height: 1.72;
}

body#p121.ngw-site-design .ngw-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

body#p121.ngw-site-design .ngw-service-card {
  position: relative;
  min-height: 340px;
  padding: clamp(24px, 2.5vw, 34px);
  overflow: hidden;

  display: flex;
  flex-direction: column;

  background:
    radial-gradient(circle at 88% 0%, rgba(28, 217, 207, 0.20), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(244,249,252,0.94));
  border: 1px solid rgba(7, 26, 54, 0.09);
  border-radius: 30px;
  box-shadow: 0 24px 64px rgba(7, 26, 54, 0.09);
}

body#p121.ngw-site-design .ngw-service-card--dark {
  background:
    radial-gradient(circle at 86% 0%, rgba(28, 217, 207, 0.28), transparent 36%),
    linear-gradient(145deg, #071a36, #064760 70%, #0f7c79);
  border-color: rgba(255,255,255,0.12);
}

body#p121.ngw-site-design .ngw-service-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 28px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;
  background: #0f7c79;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 16px 32px rgba(15, 124, 121, 0.22);
}

body#p121.ngw-site-design .ngw-service-card--dark .ngw-service-card__icon {
  background: rgba(28, 217, 207, 0.20);
  color: #d8fffb !important;
  border: 1px solid rgba(216, 255, 251, 0.24);
}

body#p121.ngw-site-design .ngw-service-card h3 {
  margin: 0 0 16px;
  color: #071a36 !important;
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

body#p121.ngw-site-design .ngw-service-card p {
  margin: 0 0 24px;
  color: #526b89 !important;
  font-size: 16px;
  line-height: 1.72;
}

body#p121.ngw-site-design .ngw-service-card--dark h3 {
  color: #ffffff !important;
}

body#p121.ngw-site-design .ngw-service-card--dark p {
  color: rgba(255,255,255,0.80) !important;
}

body#p121.ngw-site-design .ngw-service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}

body#p121.ngw-site-design .ngw-service-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;

  border-radius: 999px;
  background: rgba(15, 124, 121, 0.08);
  color: #0f7c79 !important;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.1;
}

body#p121.ngw-site-design .ngw-service-card--dark .ngw-service-card__tags span {
  background: rgba(255,255,255,0.12);
  color: #d8fffb !important;
}

body#p121.ngw-site-design .ngw-services-process {
  margin-top: clamp(52px, 7vw, 90px);
  padding: clamp(34px, 4.8vw, 64px);

  background:
    radial-gradient(circle at 100% 0%, rgba(15, 124, 121, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(241,248,251,0.94));
  border: 1px solid rgba(7, 26, 54, 0.08);
  border-radius: 34px;
  box-shadow: 0 26px 76px rgba(7, 26, 54, 0.10);
}

body#p121.ngw-site-design .ngw-services-process h2 {
  max-width: 820px;
  margin: 0;
  color: #071a36 !important;
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

body#p121.ngw-site-design .ngw-services-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

body#p121.ngw-site-design .ngw-services-process__item {
  padding: 24px;
  min-height: 180px;

  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(7, 26, 54, 0.07);
  border-radius: 24px;
}

body#p121.ngw-site-design .ngw-services-process__num {
  display: inline-flex;
  margin-bottom: 22px;
  color: #0f7c79 !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body#p121.ngw-site-design .ngw-services-process__item strong {
  display: block;
  margin-bottom: 10px;
  color: #071a36 !important;
  font-size: 19px;
  line-height: 1.2;
}

body#p121.ngw-site-design .ngw-services-process__item p {
  margin: 0;
  color: #58708f !important;
  font-size: 15px;
  line-height: 1.62;
}

body#p121.ngw-site-design .ngw-services-cta-clean {
  margin-top: clamp(48px, 6vw, 80px);
  padding: clamp(34px, 5vw, 64px);

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;

  background:
    radial-gradient(circle at 92% 0%, rgba(28, 217, 207, 0.28), transparent 32%),
    linear-gradient(135deg, #071a36, #064760 68%, #0f7c79);
  border-radius: 34px;
  box-shadow: 0 32px 86px rgba(7, 26, 54, 0.18);
}

body#p121.ngw-site-design .ngw-services-cta-clean h2 {
  margin: 0;
  max-width: 760px;
  color: #ffffff !important;
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

body#p121.ngw-site-design .ngw-services-cta-clean p {
  margin: 18px 0 0;
  max-width: 700px;
  color: rgba(255,255,255,0.80) !important;
  font-size: 17px;
  line-height: 1.65;
}

body#p121.ngw-site-design .ngw-services-cta-clean a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;

  border-radius: 16px;
  background: #ffffff;
  color: #071a36 !important;
  font-weight: 850;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 20px 46px rgba(0,0,0,0.18);
}

@media (max-width: 1100px) {
  body#p121.ngw-site-design .ngw-services-intro,
  body#p121.ngw-site-design .ngw-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body#p121.ngw-site-design .ngw-services-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  body#p121.ngw-site-design .ngw-services-page {
    width: min(100%, calc(100vw - 32px));
    margin: 44px auto 72px;
  }

  body#p121.ngw-site-design .ngw-services-intro,
  body#p121.ngw-site-design .ngw-services-grid,
  body#p121.ngw-site-design .ngw-services-process__grid,
  body#p121.ngw-site-design .ngw-services-cta-clean {
    grid-template-columns: 1fr;
  }

  body#p121.ngw-site-design .ngw-service-card {
    min-height: auto;
  }

  body#p121.ngw-site-design .ngw-services-cta-clean a {
    width: 100%;
  }
}
/* END NGW LEISTUNGEN STEP 1.4 CLEAN PAGE */


/* BEGIN NGW SCROLL RAIL RESTORE */

/* 1) Nur die zwei störenden Deko-Quadrate am Hero/Visual entfernen */
body.ngw-site-design .ngw-home-visual-card > span,
body.ngw-site-design .ngw-home-visual-card > span::before,
body.ngw-site-design .ngw-home-visual-card > span::after,
body.ngw-site-design .ngw-home-visual-card span,
body.ngw-site-design .ngw-home-visual-card span::before,
body.ngw-site-design .ngw-home-visual-card span::after {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  content: none !important;
  pointer-events: none !important;
}

/* Die Fläche / das Visual selbst darf bleiben */
body.ngw-site-design .ngw-home-visual-card,
body.ngw-site-design .ngw-home-hero__visual {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* 2) Scroll-Indikator wieder erlauben */
body.ngw-site-design .ngw-scroll-indicator,
body.ngw-site-design .ngw-scroll-indicator--fixed {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1;
}

/* Einheitliche Positionierung auf allen Seiten */
body.ngw-site-design .ngw-scroll-indicator--fixed {
  position: fixed !important;
  left: 50%;
  bottom: clamp(22px, 5vh, 54px);
  transform: translateX(-50%);
  z-index: 80;
  pointer-events: none;
}

/* Auf hellen Flächen grün */
body.ngw-site-design .ngw-scroll-indicator--fixed,
body.ngw-site-design .ngw-scroll-indicator--fixed.is-on-light {
  color: #0f7c79 !important;
}

/* Auf dunklen Flächen weiß */
body.ngw-site-design .ngw-scroll-indicator--fixed.is-on-dark {
  color: #ffffff !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

/* 3) Rechte Quadrat-Leiste wieder erlauben */
body.ngw-site-design [class*="scrollspy"],
body.ngw-site-design [class*="section-progress"],
body.ngw-site-design [class*="page-progress"],
body.ngw-site-design [class*="section-nav"],
body.ngw-site-design [class*="side-nav"],
body.ngw-site-design [class*="right-rail"],
body.ngw-site-design [class*="right-nav"],
body.ngw-site-design [class*="rail-nav"],
body.ngw-site-design [class*="progress-rail"],
body.ngw-site-design [class*="scroll-rail"] {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Einheitliche rechte Position */
body.ngw-site-design [class*="scrollspy"],
body.ngw-site-design [class*="section-progress"],
body.ngw-site-design [class*="page-progress"],
body.ngw-site-design [class*="side-nav"],
body.ngw-site-design [class*="right-rail"],
body.ngw-site-design [class*="progress-rail"],
body.ngw-site-design [class*="scroll-rail"] {
  position: fixed !important;
  right: clamp(18px, 2.4vw, 42px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 70;
}

/* Auf mobilen Ansichten ausblenden, damit nichts stört */
@media (max-width: 991.98px) {
  body.ngw-site-design .ngw-scroll-indicator,
  body.ngw-site-design .ngw-scroll-indicator--fixed,
  body.ngw-site-design [class*="scrollspy"],
  body.ngw-site-design [class*="section-progress"],
  body.ngw-site-design [class*="page-progress"],
  body.ngw-site-design [class*="side-nav"],
  body.ngw-site-design [class*="right-rail"],
  body.ngw-site-design [class*="progress-rail"],
  body.ngw-site-design [class*="scroll-rail"] {
    display: none !important;
  }
}

/* END NGW SCROLL RAIL RESTORE */


/* BEGIN NGW LEISTUNGEN STEP 2 CLEANUP */

/*
  Leistungen-Seite:
  - alte/technische Restkarten in der linken Spalte entschärfen
  - abgeschnittene große Texte verhindern
  - linke Inhaltskarten ruhiger und kompakter machen
  - neues Hauptlayout rechts stärker wirken lassen
*/

body#p121.ngw-site-design {
  --ngw-page-max: 1500px;
}

/* Hauptbereich der Leistungsseite breiter und sauberer ausrichten */
body#p121.ngw-site-design .ngw-content-section,
body#p121.ngw-site-design main,
body#p121.ngw-site-design .ngw-main {
  overflow-x: hidden !important;
}

/* Alte linke Kartenspalte: kompakter und nicht dominant */
body#p121.ngw-site-design .ngw-content-section > .frame,
body#p121.ngw-site-design .ngw-content-section .frame {
  max-width: var(--ngw-page-max);
}

/* Alte großformatige Typo in Restkarten begrenzen */
body#p121.ngw-site-design .ngw-content-section h2,
body#p121.ngw-site-design .ngw-content-section h3 {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

/* Sehr große, alte Card-Texte auf der linken Seite entschärfen */
body#p121.ngw-site-design .ngw-content-section .frame h2 {
  font-size: clamp(2.2rem, 3.6vw, 4.8rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.07em;
}

/* Alte interne/SEO-Restblöcke visuell entfernen.
   Diese Texte sind für Besucher nicht sinnvoll und stören das Layout. */
body#p121.ngw-site-design .ngw-content-section .frame:has(h2):has(p) h2,
body#p121.ngw-site-design .ngw-content-section .frame:has(h3):has(p) h3 {
  max-width: 100%;
}

/* gezielt bekannte alte Inhalte ausblenden */
body#p121.ngw-site-design .ngw-content-section .frame:has(h2),
body#p121.ngw-site-design .ngw-content-section .frame:has(h3) {
  overflow: hidden;
}

/* Browser mit :has(): alte störende Blöcke anhand ihrer Überschriften ausblenden */
body#p121.ngw-site-design .ngw-content-section .frame:has(h2:contains("SEO")),
body#p121.ngw-site-design .ngw-content-section .frame:has(h2:contains("Vertrauenslogik")) {
  display: none !important;
}

/* Fallback ohne :contains(): typische alte Karten ab dem unteren linken Bereich kleiner machen */
body#p121.ngw-site-design .ngw-content-section .frame:nth-of-type(n+7) {
  display: none !important;
}

/* Falls die alten Inhalte in Card-ähnlichen Containern liegen */
body#p121.ngw-site-design [class*="card"]:has(h2),
body#p121.ngw-site-design [class*="teaser"]:has(h2) {
  overflow: hidden;
}

/* Rechte neue Leistungsbereiche sauber staffeln */
body#p121.ngw-site-design .ngw-service-grid,
body#p121.ngw-site-design .ngw-services-grid,
body#p121.ngw-site-design .ngw-card-grid,
body#p121.ngw-site-design .ngw-home-card-grid {
  align-items: stretch;
}

/* Dunkle Karten: Text immer lesbar */
body#p121.ngw-site-design .ngw-home-card--dark,
body#p121.ngw-site-design .ngw-service-card--dark,
body#p121.ngw-site-design [class*="card--dark"] {
  color: #ffffff !important;
}

body#p121.ngw-site-design .ngw-home-card--dark *,
body#p121.ngw-site-design .ngw-service-card--dark *,
body#p121.ngw-site-design [class*="card--dark"] * {
  color: inherit !important;
}

body#p121.ngw-site-design .ngw-home-card--dark p,
body#p121.ngw-site-design .ngw-service-card--dark p,
body#p121.ngw-site-design [class*="card--dark"] p {
  color: rgba(255, 255, 255, 0.82) !important;
}

/* Helle Karten: Text konsistent dunkel */
body#p121.ngw-site-design .ngw-home-card:not(.ngw-home-card--dark),
body#p121.ngw-site-design .ngw-service-card:not(.ngw-service-card--dark) {
  color: #071a36 !important;
}

body#p121.ngw-site-design .ngw-home-card:not(.ngw-home-card--dark) p,
body#p121.ngw-site-design .ngw-service-card:not(.ngw-service-card--dark) p {
  color: #58708f !important;
}

/* CTA unten sauberer Abstand */
body#p121.ngw-site-design .ngw-cta-band,
body#p121.ngw-site-design [class*="cta"] {
  margin-top: clamp(48px, 7vw, 110px);
}

/* Mobile: alles einspaltig und ohne seitliche Restspalte */
@media (max-width: 991.98px) {
  body#p121.ngw-site-design .ngw-content-section .frame:nth-of-type(n+6) {
    display: none !important;
  }

  body#p121.ngw-site-design .ngw-content-section h2,
  body#p121.ngw-site-design .ngw-content-section h3 {
    font-size: clamp(2rem, 10vw, 3.4rem) !important;
    letter-spacing: -0.06em;
  }
}

/* END NGW LEISTUNGEN STEP 2 CLEANUP */






/* BEGIN NGW FOOTER SOCIAL LINKS */
body.ngw-site-design .ngw-footer-social-links {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

body.ngw-site-design .ngw-footer-social-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0 !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 124, 121, 0.16);
  color: #0f7c79 !important;
  text-decoration: none !important;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(7, 26, 54, 0.08);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

body.ngw-site-design .ngw-footer-social-link:hover,
body.ngw-site-design .ngw-footer-social-link:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: rgba(15, 124, 121, 0.32);
  color: #07857f !important;
  box-shadow: 0 16px 34px rgba(7, 26, 54, 0.14);
  outline: none;
}

body.ngw-site-design .ngw-footer-social-link > span {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: currentColor !important;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1;
}

body.ngw-site-design .ngw-footer-social-link--facebook > span {
  font-size: 17px;
  font-weight: 900;
}

body.ngw-site-design .ngw-footer-social-link--linkedin > span {
  font-size: 15px;
  font-weight: 900;
}

body.ngw-site-design .ngw-footer-social-link--kununu > span,
body.ngw-site-design .ngw-footer-social-link--youtube > span,
body.ngw-site-design .ngw-footer-social-link--instagram > span {
  font-size: 12px;
  letter-spacing: -0.04em;
}

body.ngw-site-design .ngw-footer-social-link > span + span {
  display: none !important;
}

@media (max-width: 575.98px) {
  body.ngw-site-design .ngw-footer-social-links {
    gap: 10px;
  }

  body.ngw-site-design .ngw-footer-social-link {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
  }
}
/* END NGW FOOTER SOCIAL LINKS */


/* BEGIN NGW FOOTER SOCIAL ICON ONLY HARDENING */
body.ngw-site-design .ngw-footer-social-links {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

body.ngw-site-design .ngw-footer-social-link {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  justify-content: center !important;
  align-items: center !important;
  overflow: hidden !important;
}

body.ngw-site-design .ngw-footer-social-link > span:not(:first-child) {
  display: none !important;
}

body.ngw-site-design .ngw-footer-social-link > span:first-child {
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}
/* END NGW FOOTER SOCIAL ICON ONLY HARDENING */


/* BEGIN NGW LEISTUNGEN SERVICE SUMMARY */
body#p121.ngw-site-design .ngw-content-card--service-summary {
  margin-top: clamp(36px, 6vw, 72px);
  padding: clamp(30px, 5vw, 56px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 0%, rgba(15, 124, 121, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 252, 0.96));
  border: 1px solid rgba(15, 124, 121, 0.14);
  box-shadow: 0 28px 80px rgba(7, 26, 54, 0.10);
}

body#p121.ngw-site-design .ngw-content-card--service-summary > h2 {
  max-width: 860px;
  margin: 0 0 16px;
  color: #071a36;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

body#p121.ngw-site-design .ngw-content-card--service-summary > p:not(.ngw-eyebrow) {
  max-width: 880px;
  color: #4f6684;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.75;
}

body#p121.ngw-site-design .ngw-service-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  margin: clamp(28px, 4vw, 46px) 0;
}

body#p121.ngw-site-design .ngw-service-summary-grid article {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 124, 121, 0.13);
  box-shadow: 0 18px 46px rgba(7, 26, 54, 0.08);
  overflow: hidden;
}

body#p121.ngw-site-design .ngw-service-summary-grid article::after {
  content: "";
  position: absolute;
  inset: auto -30px -42px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(15, 124, 121, 0.09);
}

body#p121.ngw-site-design .ngw-service-summary-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: #0f7c79;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.03em;
}

body#p121.ngw-site-design .ngw-service-summary-grid h3 {
  margin: 0 0 12px;
  color: #071a36;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

body#p121.ngw-site-design .ngw-service-summary-grid p {
  margin: 0;
  color: #58708f;
  line-height: 1.65;
}

@media (max-width: 991.98px) {
  body#p121.ngw-site-design .ngw-service-summary-grid {
    grid-template-columns: 1fr;
  }

  body#p121.ngw-site-design .ngw-service-summary-grid article {
    min-height: 0;
  }
}
/* END NGW LEISTUNGEN SERVICE SUMMARY */


/* BEGIN NGW LOESUNGEN SOLUTION SUMMARY */
body#p120.ngw-site-design .ngw-content-card--solution-summary {
  margin-top: clamp(36px, 6vw, 72px);
  padding: clamp(30px, 5vw, 56px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 0%, rgba(15, 124, 121, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 252, 0.96));
  border: 1px solid rgba(15, 124, 121, 0.14);
  box-shadow: 0 28px 80px rgba(7, 26, 54, 0.10);
}

body#p120.ngw-site-design .ngw-content-card--solution-summary > h2 {
  max-width: 900px;
  margin: 0 0 16px;
  color: #071a36;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

body#p120.ngw-site-design .ngw-content-card--solution-summary > p:not(.ngw-eyebrow) {
  max-width: 900px;
  color: #4f6684;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.75;
}

body#p120.ngw-site-design .ngw-solution-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  margin: clamp(28px, 4vw, 46px) 0;
}

body#p120.ngw-site-design .ngw-solution-summary-grid article {
  position: relative;
  min-height: 270px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 124, 121, 0.13);
  box-shadow: 0 18px 46px rgba(7, 26, 54, 0.08);
  overflow: hidden;
}

body#p120.ngw-site-design .ngw-solution-summary-grid article::after {
  content: "";
  position: absolute;
  inset: auto -30px -42px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(15, 124, 121, 0.09);
}

body#p120.ngw-site-design .ngw-solution-summary-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 17px;
  background: #0f7c79;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.03em;
}

body#p120.ngw-site-design .ngw-solution-summary-grid h3 {
  margin: 0 0 12px;
  color: #071a36;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

body#p120.ngw-site-design .ngw-solution-summary-grid p {
  margin: 0;
  color: #58708f;
  line-height: 1.65;
}

@media (max-width: 991.98px) {
  body#p120.ngw-site-design .ngw-solution-summary-grid {
    grid-template-columns: 1fr;
  }

  body#p120.ngw-site-design .ngw-solution-summary-grid article {
    min-height: 0;
  }
}
/* END NGW LOESUNGEN SOLUTION SUMMARY */


/* BEGIN NGW BRANCHEN INDUSTRY SUMMARY */
body#p123.ngw-site-design .ngw-content-card--industry-summary {
  margin-top: clamp(36px, 6vw, 72px);
  padding: clamp(30px, 5vw, 56px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 0%, rgba(15, 124, 121, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 252, 0.96));
  border: 1px solid rgba(15, 124, 121, 0.14);
  box-shadow: 0 28px 80px rgba(7, 26, 54, 0.10);
}

body#p123.ngw-site-design .ngw-content-card--industry-summary > h2 {
  max-width: 940px;
  margin: 0 0 16px;
  color: #071a36;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

body#p123.ngw-site-design .ngw-content-card--industry-summary > p:not(.ngw-eyebrow) {
  max-width: 920px;
  color: #4f6684;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.75;
}

body#p123.ngw-site-design .ngw-industry-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  margin: clamp(28px, 4vw, 46px) 0;
}

body#p123.ngw-site-design .ngw-industry-summary-grid article {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 124, 121, 0.13);
  box-shadow: 0 18px 46px rgba(7, 26, 54, 0.08);
  overflow: hidden;
}

body#p123.ngw-site-design .ngw-industry-summary-grid article::after {
  content: "";
  position: absolute;
  inset: auto -30px -42px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(15, 124, 121, 0.09);
}

body#p123.ngw-site-design .ngw-industry-summary-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 17px;
  background: #0f7c79;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.03em;
}

body#p123.ngw-site-design .ngw-industry-summary-grid h3 {
  margin: 0 0 12px;
  color: #071a36;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

body#p123.ngw-site-design .ngw-industry-summary-grid p {
  margin: 0;
  color: #58708f;
  line-height: 1.65;
}

@media (max-width: 991.98px) {
  body#p123.ngw-site-design .ngw-industry-summary-grid {
    grid-template-columns: 1fr;
  }

  body#p123.ngw-site-design .ngw-industry-summary-grid article {
    min-height: 0;
  }
}
/* END NGW BRANCHEN INDUSTRY SUMMARY */


/* BEGIN NGW UNTERNEHMEN COMPANY SUMMARY */
body#p126.ngw-site-design .ngw-content-card--company-summary {
  margin-top: clamp(36px, 6vw, 72px);
  padding: clamp(30px, 5vw, 56px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 0%, rgba(15, 124, 121, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 252, 0.96));
  border: 1px solid rgba(15, 124, 121, 0.14);
  box-shadow: 0 28px 80px rgba(7, 26, 54, 0.10);
}

body#p126.ngw-site-design .ngw-content-card--company-summary > h2 {
  max-width: 940px;
  margin: 0 0 16px;
  color: #071a36;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

body#p126.ngw-site-design .ngw-content-card--company-summary > p:not(.ngw-eyebrow) {
  max-width: 920px;
  color: #4f6684;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.75;
}

body#p126.ngw-site-design .ngw-company-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  margin: clamp(28px, 4vw, 46px) 0;
}

body#p126.ngw-site-design .ngw-company-summary-grid article {
  min-height: 250px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 124, 121, 0.13);
  box-shadow: 0 18px 46px rgba(7, 26, 54, 0.08);
}

body#p126.ngw-site-design .ngw-company-summary-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 17px;
  background: #0f7c79;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.03em;
}

body#p126.ngw-site-design .ngw-company-summary-grid h3 {
  margin: 0 0 12px;
  color: #071a36;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

body#p126.ngw-site-design .ngw-company-summary-grid p {
  margin: 0;
  color: #58708f;
  line-height: 1.65;
}

body#p126.ngw-site-design .ngw-company-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 clamp(28px, 4vw, 42px);
}

body#p126.ngw-site-design .ngw-company-facts div {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(7, 26, 54, 0.94);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(7, 26, 54, 0.16);
}

body#p126.ngw-site-design .ngw-company-facts strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1;
  letter-spacing: -0.04em;
}

body#p126.ngw-site-design .ngw-company-facts span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

@media (max-width: 991.98px) {
  body#p126.ngw-site-design .ngw-company-summary-grid,
  body#p126.ngw-site-design .ngw-company-facts {
    grid-template-columns: 1fr;
  }

  body#p126.ngw-site-design .ngw-company-summary-grid article {
    min-height: 0;
  }
}
/* END NGW UNTERNEHMEN COMPANY SUMMARY */


/* BEGIN NGW KONTAKT CONTACT SUMMARY */
body#p128.ngw-site-design .ngw-content-card--contact-summary {
  margin-top: clamp(36px, 6vw, 72px);
  padding: clamp(30px, 5vw, 56px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 0%, rgba(15, 124, 121, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 252, 0.96));
  border: 1px solid rgba(15, 124, 121, 0.14);
  box-shadow: 0 28px 80px rgba(7, 26, 54, 0.10);
}

body#p128.ngw-site-design .ngw-content-card--contact-summary > h2 {
  max-width: 940px;
  margin: 0 0 16px;
  color: #071a36;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

body#p128.ngw-site-design .ngw-content-card--contact-summary > p:not(.ngw-eyebrow) {
  max-width: 920px;
  color: #4f6684;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.75;
}

body#p128.ngw-site-design .ngw-contact-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  margin: clamp(28px, 4vw, 46px) 0;
}

body#p128.ngw-site-design .ngw-contact-summary-grid article {
  min-height: 230px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 124, 121, 0.13);
  box-shadow: 0 18px 46px rgba(7, 26, 54, 0.08);
}

body#p128.ngw-site-design .ngw-contact-summary-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 17px;
  background: #0f7c79;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.03em;
}

body#p128.ngw-site-design .ngw-contact-summary-grid h3 {
  margin: 0 0 12px;
  color: #071a36;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

body#p128.ngw-site-design .ngw-contact-summary-grid p {
  margin: 0;
  color: #58708f;
  line-height: 1.65;
}

body#p128.ngw-site-design .ngw-contact-direct-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 clamp(28px, 4vw, 42px);
}

body#p128.ngw-site-design .ngw-contact-direct-grid a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(7, 26, 54, 0.94);
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 16px 36px rgba(7, 26, 54, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

body#p128.ngw-site-design .ngw-contact-direct-grid a:hover,
body#p128.ngw-site-design .ngw-contact-direct-grid a:focus-visible {
  transform: translateY(-3px);
  background: #0f7c79;
  box-shadow: 0 22px 48px rgba(7, 26, 54, 0.20);
}

body#p128.ngw-site-design .ngw-contact-direct-grid strong {
  color: #ffffff;
  font-size: 16px;
}

body#p128.ngw-site-design .ngw-contact-direct-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

@media (max-width: 991.98px) {
  body#p128.ngw-site-design .ngw-contact-summary-grid,
  body#p128.ngw-site-design .ngw-contact-direct-grid {
    grid-template-columns: 1fr;
  }

  body#p128.ngw-site-design .ngw-contact-summary-grid article {
    min-height: 0;
  }
}
/* END NGW KONTAKT CONTACT SUMMARY */





/* BEGIN JOBSPORTAL VISUAL RESET V2 */

:root {
  --jp-navy: #071d39;
  --jp-ink: #0b1830;
  --jp-text: #334660;
  --jp-muted: #68758a;
  --jp-teal: #008f86;
  --jp-red: #d71920;
  --jp-yellow: #ffd200;
  --jp-bg: #f6f9fc;
  --jp-card: #ffffff;
  --jp-line: rgba(11, 24, 48, 0.11);
  --jp-shadow: 0 28px 90px rgba(7, 29, 57, 0.12);
  --jp-shadow-soft: 0 16px 45px rgba(7, 29, 57, 0.08);
}

/* Seitenkopf wieder hell, lesbar und kompakter */
.ngw-main--content {
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 143, 134, 0.13), transparent 34rem),
    radial-gradient(circle at 10% 26%, rgba(215, 25, 32, 0.045), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--jp-bg) 100%);
}

.ngw-content-head,
.ngw-content-head--compact {
  min-height: 0 !important;
  margin: 0 !important;
  padding: clamp(4.5rem, 8vw, 7.5rem) 1.5rem clamp(5rem, 8vw, 7rem) !important;
  color: var(--jp-ink) !important;
  background:
    radial-gradient(circle at 92% 18%, rgba(0, 143, 134, 0.14), transparent 22rem),
    linear-gradient(135deg, #ffffff 0%, #f0f8fa 100%) !important;
  overflow: hidden;
  position: relative;
}

.ngw-content-head::after,
.ngw-content-head--compact::after {
  content: "";
  position: absolute;
  right: -7rem;
  top: 2rem;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: rgba(0, 143, 134, 0.08);
  pointer-events: none;
}

.ngw-content-head__inner,
.ngw-content-head--compact .ngw-content-head__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ngw-content-head .ngw-section-kicker,
.ngw-content-head--compact .ngw-section-kicker,
.ngw-content-head .ngw-content-head__eyebrow,
.ngw-content-head--compact .ngw-content-head__eyebrow {
  color: var(--jp-teal) !important;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ngw-content-head h1,
.ngw-content-head--compact h1,
#ngw-page-title {
  color: var(--jp-ink) !important;
  opacity: 1 !important;
  text-shadow: none !important;
  font-size: clamp(3rem, 6vw, 5.8rem) !important;
  line-height: 0.94 !important;
  letter-spacing: -0.065em !important;
  max-width: 780px;
}

/* Inhalt als breite, ruhige Fläche statt schmaler Karten */
.ngw-content-section--page {
  padding: 0 1.5rem clamp(4rem, 8vw, 7rem) !important;
  margin-top: clamp(-4.5rem, -5vw, -2.5rem) !important;
  position: relative;
  z-index: 3;
}

.ngw-content-section--page .ngw-content-card {
  width: min(1120px, 100%) !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: clamp(2rem, 4vw, 4rem) !important;
  border: 1px solid var(--jp-line) !important;
  border-radius: 32px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.90)),
    radial-gradient(circle at 100% 0%, rgba(0, 143, 134, 0.08), transparent 30rem) !important;
  box-shadow: var(--jp-shadow) !important;
  overflow: visible !important;
}

/* TYPO3 Frames entrümpeln */
.ngw-content-card > .frame,
.ngw-content-card > div[id^="c"] {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ngw-content-card > .frame + .frame,
.ngw-content-card > div[id^="c"] + div[id^="c"] {
  margin-top: clamp(2rem, 4vw, 3.5rem) !important;
  padding-top: clamp(2rem, 4vw, 3.5rem) !important;
  border-top: 1px solid rgba(11, 24, 48, 0.09);
}

.ngw-content-card .ce-header,
.ngw-content-card header {
  margin-bottom: 1rem;
}

.ngw-content-card h1,
.ngw-content-card h2,
.ngw-content-card h3 {
  color: var(--jp-ink) !important;
  letter-spacing: -0.045em;
}

.ngw-content-card h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.02;
}

.ngw-content-card h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

.ngw-content-card p,
.ngw-content-card li {
  color: var(--jp-text) !important;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.75;
}

.ngw-content-card ul {
  padding-left: 1.2rem;
}

/* Intro-Module */
.jp-ui-panel {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 143, 134, 0.40), transparent 18rem),
    linear-gradient(135deg, var(--jp-navy) 0%, #102f58 100%);
  box-shadow: 0 26px 70px rgba(7, 29, 57, 0.25);
  position: relative;
  overflow: hidden;
}

.jp-ui-panel::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.jp-ui-panel > * {
  position: relative;
  z-index: 1;
}

.jp-ui-panel h2 {
  color: #fff !important;
  max-width: 760px;
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.jp-ui-panel p {
  color: rgba(255,255,255,0.82) !important;
  max-width: 760px;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
}

.jp-ui-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: #65e3dc !important;
  font-size: 0.78rem;
  font-weight: 880;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.jp-ui-kicker::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--jp-yellow);
}

.jp-ui-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.jp-ui-button,
.ngw-content-card input[type="submit"],
.ngw-content-card button[type="submit"],
.ngw-content-card .syn-button,
.ngw-content-card .btn,
.ngw-content-card .button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--jp-red), #aa1016);
  color: #fff !important;
  font-weight: 850;
  padding: 0.95rem 1.45rem;
  text-decoration: none !important;
  box-shadow: 0 16px 38px rgba(215, 25, 32, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease;
  cursor: pointer;
}

.jp-ui-button:hover,
.ngw-content-card input[type="submit"]:hover,
.ngw-content-card button[type="submit"]:hover,
.ngw-content-card .syn-button:hover,
.ngw-content-card .btn:hover,
.ngw-content-card .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 48px rgba(215, 25, 32, 0.34);
}

.jp-ui-button--secondary {
  background: rgba(255,255,255,0.12);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: none;
}

/* Prozesskarten */
.jp-ui-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.jp-ui-process--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jp-ui-step {
  padding: clamp(1.35rem, 2.6vw, 2rem);
  border: 1px solid var(--jp-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--jp-shadow-soft);
}

.jp-ui-step-number {
  display: inline-flex;
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--jp-teal);
  color: #fff;
  font-weight: 880;
}

.jp-ui-step h3 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
}

.jp-ui-step p {
  margin: 0;
  color: var(--jp-muted) !important;
}

/* Formulare/Extension deutlich hochwertiger */
.ngw-content-card form {
  margin-top: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid var(--jp-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--jp-shadow-soft);
}

.ngw-content-card fieldset {
  border: 1px solid rgba(11, 24, 48, 0.10);
  border-radius: 20px;
  padding: 1.4rem;
  margin: 0 0 1.2rem;
}

.ngw-content-card legend {
  padding: 0 0.5rem;
  color: var(--jp-ink);
  font-weight: 850;
}

.ngw-content-card label {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--jp-ink);
  font-weight: 780;
}

.ngw-content-card input[type="text"],
.ngw-content-card input[type="email"],
.ngw-content-card input[type="tel"],
.ngw-content-card input[type="url"],
.ngw-content-card input[type="search"],
.ngw-content-card input[type="password"],
.ngw-content-card input[type="file"],
.ngw-content-card select,
.ngw-content-card textarea {
  width: 100%;
  min-height: 3.15rem;
  border: 1px solid rgba(11, 24, 48, 0.16);
  border-radius: 15px;
  background: #fbfcfe;
  color: var(--jp-ink);
  padding: 0.85rem 1rem;
}

.ngw-content-card textarea {
  min-height: 9.5rem;
}

.ngw-content-card input:focus,
.ngw-content-card select:focus,
.ngw-content-card textarea:focus {
  outline: none;
  border-color: rgba(0, 143, 134, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(0, 143, 134, 0.13);
  background: #fff;
}

.ngw-content-card input[type="checkbox"],
.ngw-content-card input[type="radio"] {
  accent-color: var(--jp-teal);
}

/* Joblisten / Plugin-Ausgaben generisch glätten */
.ngw-content-card .tx-synedatjobsportal,
.ngw-content-card .tx-synedat-jobsportal,
.ngw-content-card [class*="tx_synedatjobsportal"],
.ngw-content-card [class*="synedatjobsportal"] {
  display: grid;
  gap: 1.15rem;
}

.ngw-content-card [class*="job"] article,
.ngw-content-card article[class*="job"],
.ngw-content-card li[class*="job"],
.ngw-content-card div[class*="job-card"],
.ngw-content-card div[class*="job-item"] {
  border: 1px solid var(--jp-line);
  border-radius: 24px;
  background: #fff;
  padding: clamp(1.3rem, 2.5vw, 2rem);
  box-shadow: var(--jp-shadow-soft);
}

/* Tabellen */
.ngw-content-card table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--jp-line);
  border-radius: 22px;
  background: #fff;
}

.ngw-content-card th,
.ngw-content-card td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(11, 24, 48, 0.08);
  text-align: left;
}

.ngw-content-card th {
  color: var(--jp-ink);
  background: #f0f5f8;
  font-weight: 850;
}

.ngw-content-card tr:last-child td {
  border-bottom: 0;
}

/* Homepage-Backend-Content weniger langweilig */
.ngw-home-editable {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.ngw-home-editable .ngw-content-card {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 4rem);
  border-radius: 32px;
  border: 1px solid var(--jp-line);
  background: #fff;
  box-shadow: var(--jp-shadow);
}

.ngw-home-editable .ngw-content-card > .frame + .frame {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(11, 24, 48, 0.08);
}

@media (max-width: 980px) {
  .jp-ui-process,
  .jp-ui-process--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ngw-content-head h1,
  .ngw-content-head--compact h1,
  #ngw-page-title {
    font-size: clamp(2.6rem, 11vw, 4.8rem) !important;
  }
}

@media (max-width: 680px) {
  .ngw-content-head,
  .ngw-content-head--compact {
    padding-top: 3.5rem !important;
  }

  .ngw-content-section--page {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .ngw-content-section--page .ngw-content-card {
    padding: 1.4rem !important;
    border-radius: 24px !important;
  }

  .jp-ui-process,
  .jp-ui-process--four {
    grid-template-columns: 1fr;
  }

  .jp-ui-panel {
    padding: 1.6rem;
    border-radius: 24px;
  }

  .jp-ui-panel h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .jp-ui-actions {
    flex-direction: column;
  }

  .jp-ui-button,
  .ngw-content-card input[type="submit"],
  .ngw-content-card button[type="submit"],
  .ngw-content-card .syn-button,
  .ngw-content-card .btn,
  .ngw-content-card .button {
    width: 100%;
  }
}

/* END JOBSPORTAL VISUAL RESET V2 */

/* BEGIN JOBSPORTAL UI POLISH V7 */
/*
  Ziel:
  - keine schmalen Mockup-/Telefon-Karten mehr
  - volle, ruhige Content-Breite
  - Formulare als saubere Card
  - Jobs/Bewerben/Freelancer/Jobalarm bleiben backend- und extension-pflegbar
*/

.ngw-page-shell .ngw-main--content {
  overflow: hidden;
}

.ngw-page-shell .ngw-content-head.ngw-content-head--compact {
  padding-top: clamp(72px, 8vw, 132px) !important;
  padding-bottom: clamp(36px, 5vw, 72px) !important;
  min-height: 0 !important;
}

.ngw-page-shell .ngw-content-head__inner {
  width: min(1120px, calc(100% - 48px)) !important;
  margin-inline: auto !important;
}

.ngw-page-shell .ngw-content-head #ngw-page-title {
  max-width: 960px !important;
  font-size: clamp(48px, 6vw, 88px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.065em !important;
  color: #071b3a !important;
  margin: 0 !important;
}

.ngw-page-shell .ngw-content-section--page,
.ngw-page-shell [data-ngw-content-area="main"] {
  padding-top: clamp(24px, 4vw, 56px) !important;
  padding-bottom: clamp(64px, 8vw, 120px) !important;
}

.ngw-page-shell .ngw-content-section--page > .ngw-content-card,
.ngw-page-shell [data-ngw-content-area="main"] > .ngw-content-card,
.ngw-page-shell .ngw-content-card {
  width: min(1180px, calc(100% - 48px)) !important;
  max-width: min(1180px, calc(100% - 48px)) !important;
  margin-inline: auto !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.jp-ui-panel {
  position: relative !important;
  display: block !important;
  width: min(1180px, 100%) !important;
  max-width: min(1180px, 100%) !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 auto clamp(28px, 4vw, 56px) !important;
  padding: clamp(34px, 5vw, 64px) !important;
  color: #071b3a !important;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 143, 134, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(238, 250, 249, 0.96), rgba(255,255,255,0.96) 54%, rgba(242, 246, 252, 0.96)) !important;
  border: 1px solid rgba(7, 27, 58, 0.08) !important;
  border-radius: clamp(26px, 3vw, 42px) !important;
  box-shadow: 0 34px 90px rgba(7, 27, 58, 0.11) !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.jp-ui-panel::before,
.jp-ui-panel::after {
  content: none !important;
  display: none !important;
}

.jp-ui-panel > * {
  max-width: 880px !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

.jp-ui-kicker,
.jp-ui-panel > .jp-ui-kicker,
.syn-form__eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 0 0 18px !important;
  padding: 8px 13px !important;
  border-radius: 999px !important;
  color: #4d6680 !important;
  background: rgba(255,255,255,0.72) !important;
  border: 1px solid rgba(0, 143, 134, 0.18) !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
}

.jp-ui-kicker::before,
.syn-form__eyebrow::before {
  content: "" !important;
  width: 8px !important;
  height: 8px !important;
  flex: 0 0 8px !important;
  border-radius: 999px !important;
  background: #ffd200 !important;
  box-shadow: 0 0 0 4px rgba(255, 210, 0, 0.18) !important;
}

.jp-ui-panel h1,
.jp-ui-panel h2 {
  width: min(860px, 100%) !important;
  max-width: min(860px, 100%) !important;
  margin: 0 0 18px !important;
  color: #071b3a !important;
  font-size: clamp(38px, 5.2vw, 74px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.065em !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.jp-ui-panel p,
.jp-ui-panel li {
  color: #35506b !important;
  font-size: clamp(16px, 1.25vw, 19px) !important;
  line-height: 1.72 !important;
}

.jp-ui-panel p {
  max-width: 760px !important;
  margin: 0 0 20px !important;
}

.jp-ui-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  margin-top: 28px !important;
}

.jp-ui-button,
.jp-ui-panel a.jp-ui-button,
.jp-ui-panel .ngw-button,
.syn-button,
.syn-button--primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(0, 128, 120, 0.18) !important;
  background: #008b82 !important;
  color: #fff !important;
  font-weight: 850 !important;
  text-decoration: none !important;
  box-shadow: 0 14px 34px rgba(0, 128, 120, 0.20) !important;
}

.jp-ui-button--secondary,
.jp-ui-panel a.jp-ui-button--secondary {
  background: #fff !important;
  color: #071b3a !important;
  box-shadow: 0 12px 30px rgba(7, 27, 58, 0.08) !important;
}

.jp-ui-process {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(16px, 2vw, 24px) !important;
  width: min(1180px, 100%) !important;
  max-width: min(1180px, 100%) !important;
  margin: clamp(22px, 4vw, 44px) auto clamp(36px, 5vw, 64px) !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.jp-ui-process--four {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.jp-ui-process > * {
  min-width: 0 !important;
  margin: 0 !important;
  padding: clamp(22px, 2.5vw, 32px) !important;
  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(7, 27, 58, 0.08) !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 54px rgba(7, 27, 58, 0.09) !important;
  overflow: visible !important;
}

.jp-ui-process h3 {
  margin: 10px 0 10px !important;
  color: #071b3a !important;
  font-size: clamp(20px, 2vw, 28px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
}

.jp-ui-process p {
  color: #4d6680 !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

.syn-jobsportal {
  width: min(1180px, 100%) !important;
  max-width: min(1180px, 100%) !important;
  margin: clamp(22px, 4vw, 46px) auto 0 !important;
  box-sizing: border-box !important;
}

.syn-jobsportal-list,
.syn-jobsportal.syn-form {
  padding: clamp(28px, 4vw, 54px) !important;
  border-radius: clamp(28px, 3vw, 40px) !important;
  background: rgba(255,255,255,0.94) !important;
  border: 1px solid rgba(7, 27, 58, 0.08) !important;
  box-shadow: 0 30px 82px rgba(7, 27, 58, 0.12) !important;
}

.syn-jobsportal__header,
.syn-form__head {
  margin-bottom: clamp(24px, 3vw, 38px) !important;
}

.syn-jobsportal__header h1,
.syn-form__head h1 {
  margin: 0 0 12px !important;
  color: #071b3a !important;
  font-size: clamp(32px, 4vw, 56px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.06em !important;
}

.syn-jobsportal__header p,
.syn-form__lead {
  max-width: 760px !important;
  color: #4d6680 !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
}

.syn-form__form,
.syn-jobsportal form {
  display: block !important;
  width: 100% !important;
}

.syn-form__grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 20px 22px !important;
  width: 100% !important;
}

.syn-form__field,
.syn-jobsportal form > label:not(.syn-checkbox) {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  min-width: 0 !important;
  margin: 0 !important;
  color: #071b3a !important;
  font-weight: 800 !important;
  font-size: 14px !important;
}

.syn-form__field--wide {
  grid-column: 1 / -1 !important;
}

.syn-form__field span,
.syn-jobsportal form > label > span {
  color: #263f5b !important;
}

.syn-jobsportal input[type="text"],
.syn-jobsportal input[type="email"],
.syn-jobsportal input[type="number"],
.syn-jobsportal textarea,
.syn-jobsportal select {
  width: 100% !important;
  min-height: 52px !important;
  padding: 14px 16px !important;
  color: #071b3a !important;
  background: #f7fbfc !important;
  border: 1px solid rgba(7, 27, 58, 0.12) !important;
  border-radius: 16px !important;
  outline: none !important;
  font: inherit !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8) !important;
  box-sizing: border-box !important;
}

.syn-jobsportal textarea {
  min-height: 150px !important;
  resize: vertical !important;
}

.syn-jobsportal input:focus,
.syn-jobsportal textarea:focus,
.syn-jobsportal select:focus {
  border-color: rgba(0, 143, 134, 0.55) !important;
  box-shadow: 0 0 0 4px rgba(0, 143, 134, 0.12) !important;
}

.syn-checkbox,
.syn-form__checkbox {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-top: 8px !important;
  color: #35506b !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.syn-checkbox input[type="checkbox"],
.syn-form__checkbox input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  margin-top: 3px !important;
  flex: 0 0 18px !important;
}

.syn-form__actions,
.syn-jobsportal form > input[type="submit"],
.syn-jobsportal form .syn-button {
  margin-top: 24px !important;
}

.syn-jobsportal-list ul,
.syn-jobsportal-list ol {
  display: grid !important;
  gap: 16px !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.syn-jobsportal-list li {
  padding: 22px !important;
  border-radius: 22px !important;
  background: #f7fbfc !important;
  border: 1px solid rgba(7, 27, 58, 0.08) !important;
}

@media (max-width: 900px) {
  .ngw-page-shell .ngw-content-head #ngw-page-title {
    font-size: clamp(42px, 12vw, 68px) !important;
  }

  .jp-ui-panel {
    padding: 28px !important;
    border-radius: 28px !important;
  }

  .jp-ui-panel h1,
  .jp-ui-panel h2 {
    font-size: clamp(34px, 10vw, 56px) !important;
  }

  .jp-ui-process,
  .jp-ui-process--four,
  .syn-form__grid {
    grid-template-columns: 1fr !important;
  }

  .syn-jobsportal-list,
  .syn-jobsportal.syn-form {
    padding: 24px !important;
    border-radius: 28px !important;
  }
}

@media (max-width: 560px) {
  .ngw-page-shell .ngw-content-head__inner,
  .ngw-page-shell .ngw-content-card {
    width: min(100% - 28px, 1180px) !important;
    max-width: min(100% - 28px, 1180px) !important;
  }

  .jp-ui-panel {
    padding: 22px !important;
  }
}
/* END JOBSPORTAL UI POLISH V7 */

/* BEGIN JOBSPORTAL UI POLISH V8 */
/* Force Jobsportal content pages out of the old narrow mockup/phone layout. */
:root {
  --jp-v8-page-max: 1280px;
  --jp-v8-content-max: 1160px;
  --jp-v8-gutter: clamp(20px, 4vw, 72px);
  --jp-v8-radius: 34px;
  --jp-v8-ink: #071b3a;
  --jp-v8-muted: #496078;
  --jp-v8-teal: #008f86;
  --jp-v8-border: rgba(7, 27, 58, 0.10);
  --jp-v8-bg: rgba(255, 255, 255, 0.92);
}

/* Widen the TYPO3 content frame used by jobs, application, freelancer and jobalarm pages. */
.ngw-main--content .ngw-content-head__inner,
.ngw-main--content .ngw-content-section--page,
.ngw-main--content .ngw-content-section--page > .ngw-content-card,
.ngw-main--content [data-ngw-content-area="main"],
.ngw-main--content [data-ngw-content-area="main"] > .ngw-content-card {
  width: min(var(--jp-v8-page-max), calc(100vw - (2 * var(--jp-v8-gutter)))) !important;
  max-width: var(--jp-v8-page-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

.ngw-main--content .ngw-content-section--page,
.ngw-main--content [data-ngw-content-area="main"] {
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: visible !important;
}

.ngw-main--content .ngw-content-section--page > .ngw-content-card,
.ngw-main--content [data-ngw-content-area="main"] > .ngw-content-card {
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  overflow: visible !important;
}

/* Kill the narrow phone/mockup behaviour from older polish blocks. */
.jp-ui-panel,
.jp-ui-process,
.syn-jobsportal,
.syn-jobsportal-list,
.syn-form,
.syn-form__form {
  width: min(var(--jp-v8-content-max), 100%) !important;
  max-width: var(--jp-v8-content-max) !important;
  min-width: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
  overflow: visible !important;
  transform: none !important;
}

.jp-ui-panel {
  display: grid !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr) !important;
  gap: clamp(24px, 4vw, 64px) !important;
  align-items: center !important;
  min-height: 0 !important;
  height: auto !important;
  padding: clamp(34px, 5vw, 76px) !important;
  border-radius: var(--jp-v8-radius) !important;
  border: 1px solid var(--jp-v8-border) !important;
  background:
    radial-gradient(circle at 90% 12%, rgba(0, 143, 134, 0.15), transparent 34%),
    linear-gradient(135deg, rgba(236, 251, 250, 0.98), rgba(255, 255, 255, 0.96) 48%, rgba(238, 245, 255, 0.94)) !important;
  box-shadow: 0 28px 80px rgba(7, 27, 58, 0.10) !important;
  color: var(--jp-v8-ink) !important;
}

.jp-ui-panel::before,
.jp-ui-panel::after {
  max-width: none !important;
}

.jp-ui-panel > *,
.jp-ui-panel .jp-ui-panel__content,
.jp-ui-panel .jp-ui-panel__visual,
.jp-ui-panel .jp-ui-panel__body,
.jp-ui-panel .jp-ui-panel__actions {
  min-width: 0 !important;
  max-width: none !important;
  overflow: visible !important;
}

.jp-ui-panel h1,
.jp-ui-panel h2,
.jp-ui-panel h3 {
  max-width: 980px !important;
  margin: 0 0 18px !important;
  color: var(--jp-v8-ink) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.055em !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

.jp-ui-panel h1,
.jp-ui-panel h2 {
  font-size: clamp(44px, 5.2vw, 86px) !important;
}

.jp-ui-panel p,
.jp-ui-panel li {
  max-width: 720px !important;
  color: var(--jp-v8-muted) !important;
  font-size: clamp(17px, 1.15vw, 20px) !important;
  line-height: 1.75 !important;
}

.jp-ui-kicker,
.jp-ui-panel .jp-ui-kicker {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: auto !important;
  max-width: max-content !important;
  margin: 0 0 18px !important;
  padding: 8px 13px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(0, 143, 134, 0.18) !important;
  background: rgba(255,255,255,0.72) !important;
  color: #426076 !important;
  font-size: 13px !important;
  line-height: 1 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

.jp-ui-kicker::before,
.jp-ui-panel .jp-ui-kicker::before {
  content: "" !important;
  width: 8px !important;
  height: 8px !important;
  flex: 0 0 8px !important;
  border-radius: 999px !important;
  background: #ffd200 !important;
}

.jp-ui-panel .jp-ui-actions,
.jp-ui-panel .jp-ui-panel__actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 28px !important;
}

.jp-ui-button,
.jp-ui-panel a.jp-ui-button,
.jp-ui-panel a.ngw-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 50px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.jp-ui-button--primary,
.jp-ui-panel a.jp-ui-button--primary,
.jp-ui-panel a.ngw-button--primary {
  background: var(--jp-v8-teal) !important;
  color: #fff !important;
  box-shadow: 0 18px 34px rgba(0, 143, 134, 0.22) !important;
}

.jp-ui-button--secondary,
.jp-ui-panel a.jp-ui-button--secondary,
.jp-ui-panel a.ngw-button--secondary {
  background: #fff !important;
  color: var(--jp-v8-ink) !important;
  border: 1px solid var(--jp-v8-border) !important;
}

.jp-ui-process {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)) !important;
  gap: 18px !important;
  margin-top: 28px !important;
  margin-bottom: 34px !important;
}

.jp-ui-process > *,
.jp-ui-process article,
.jp-ui-process .jp-ui-step {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 24px !important;
  border-radius: 24px !important;
  border: 1px solid var(--jp-v8-border) !important;
  background: var(--jp-v8-bg) !important;
  box-shadow: 0 18px 48px rgba(7,27,58,0.08) !important;
  overflow: visible !important;
}

.jp-ui-process h2,
.jp-ui-process h3,
.jp-ui-process h4 {
  margin: 10px 0 8px !important;
  color: var(--jp-v8-ink) !important;
  font-size: clamp(22px, 1.8vw, 30px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.03em !important;
  white-space: normal !important;
  overflow: visible !important;
}

.jp-ui-process p,
.jp-ui-process li {
  color: var(--jp-v8-muted) !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

/* Forms and plugin output */
.syn-jobsportal,
.syn-jobsportal-list,
.syn-form {
  margin-top: 28px !important;
  padding: clamp(26px, 4vw, 52px) !important;
  border-radius: 30px !important;
  border: 1px solid var(--jp-v8-border) !important;
  background: rgba(255,255,255,0.96) !important;
  box-shadow: 0 24px 70px rgba(7,27,58,0.10) !important;
}

.syn-form__head,
.syn-jobsportal__header {
  max-width: 860px !important;
  margin: 0 0 28px !important;
}

.syn-form__head h1,
.syn-jobsportal__header h1,
.syn-jobsportal h1 {
  color: var(--jp-v8-ink) !important;
  font-size: clamp(34px, 4vw, 58px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.05em !important;
  margin: 0 0 14px !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow: visible !important;
}

.syn-form__head p,
.syn-jobsportal__header p,
.syn-jobsportal p {
  color: var(--jp-v8-muted) !important;
  font-size: 17px !important;
  line-height: 1.65 !important;
}

.syn-form__form,
.syn-form form {
  width: 100% !important;
  max-width: none !important;
}

.syn-form__grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(250px, 1fr)) !important;
  gap: 18px 20px !important;
  width: 100% !important;
  max-width: none !important;
}

.syn-form label,
.syn-form__field,
.syn-form__grid > * {
  display: grid !important;
  gap: 7px !important;
  min-width: 0 !important;
  max-width: none !important;
  color: var(--jp-v8-ink) !important;
  font-weight: 750 !important;
}

.syn-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.syn-form textarea,
.syn-form select {
  width: 100% !important;
  min-height: 52px !important;
  padding: 13px 15px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(7, 27, 58, 0.16) !important;
  background: #fff !important;
  color: var(--jp-v8-ink) !important;
  font: inherit !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

.syn-form textarea {
  min-height: 150px !important;
  resize: vertical !important;
}

.syn-checkbox,
.syn-form .syn-checkbox {
  grid-column: 1 / -1 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 14px 16px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(7, 27, 58, 0.10) !important;
  background: rgba(245,249,252,.82) !important;
  font-weight: 650 !important;
}

.syn-checkbox input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 20px !important;
  margin-top: 1px !important;
}

.syn-form__actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  margin-top: 24px !important;
  width: 100% !important;
}

.syn-button,
.syn-form input[type="submit"],
.syn-button.syn-button--primary {
  min-height: 54px !important;
  padding: 0 26px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--jp-v8-teal) !important;
  color: #fff !important;
  font-weight: 850 !important;
  cursor: pointer !important;
  box-shadow: 0 18px 34px rgba(0,143,134,.22) !important;
}

.syn-jobsportal-list .syn-jobsportal__items,
.syn-jobsportal-list ul,
.syn-jobsportal-list .job-list,
.syn-jobsportal-list .jobs-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)) !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: none !important;
}

/* Avoid clipped text in every jobsportal UI piece. */
.jp-ui-panel *,
.jp-ui-process *,
.syn-jobsportal *,
.syn-form * {
  text-overflow: clip !important;
}

@media (max-width: 980px) {
  .ngw-main--content .ngw-content-head__inner,
  .ngw-main--content .ngw-content-section--page,
  .ngw-main--content .ngw-content-section--page > .ngw-content-card,
  .ngw-main--content [data-ngw-content-area="main"],
  .ngw-main--content [data-ngw-content-area="main"] > .ngw-content-card {
    width: min(100%, calc(100vw - 32px)) !important;
  }

  .jp-ui-panel {
    grid-template-columns: 1fr !important;
    padding: 30px !important;
  }

  .syn-form__grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .ngw-main--content .ngw-content-head__inner,
  .ngw-main--content .ngw-content-section--page,
  .ngw-main--content .ngw-content-section--page > .ngw-content-card,
  .ngw-main--content [data-ngw-content-area="main"],
  .ngw-main--content [data-ngw-content-area="main"] > .ngw-content-card {
    width: min(100%, calc(100vw - 20px)) !important;
  }

  .jp-ui-panel,
  .syn-jobsportal,
  .syn-form {
    padding: 22px !important;
    border-radius: 22px !important;
  }

  .jp-ui-panel h1,
  .jp-ui-panel h2 {
    font-size: clamp(36px, 13vw, 54px) !important;
  }
}
/* END JOBSPORTAL UI POLISH V8 */
