:root {
  color-scheme: light;
  --ink: #263651;
  --ink-soft: #52627d;
  --muted: #66758b;
  --line: #d8e0ea;
  --paper: #e4e8ec;
  --paper-warm: #f8fafc;
  --white: #fff;
  --blue: #2d468c;
  --blue-dark: #22366f;
  --blue-deep: #18295d;
  --aqua: #00a9d6;
  --signal: #c6325b;
  --danger: #a8274b;
  --shadow: 0 18px 48px rgba(38, 54, 81, .12);
  --cta-glow: rgba(198, 50, 91, .68);
  --cta-glow-soft: rgba(198, 50, 91, .34);
  --radius: 8px;
  --header-height: 82px;
  --wrap: min(1320px, calc(100vw - 40px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.nav-open { overflow: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-warm);
  font-size: 18px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

.ai-generated-image,
.ai-generated-gallery figure {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.ai-generated-image::after,
.ai-generated-gallery figure::after {
  content: "KI-generiert";
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: rgba(255, 255, 255, .9);
  background: rgba(24, 41, 93, .58);
  box-shadow: 0 6px 16px rgba(24, 41, 93, .12);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}
.ai-generated-image:hover::after,
.ai-generated-image:focus-within::after,
.services .service-card:focus-within .ai-generated-image::after,
.ai-generated-gallery figure:hover::after,
.ai-generated-gallery figure:focus-within::after {
  opacity: .78;
  transform: translateY(0);
}
html.ai-lightbox-open #colorbox #cboxContent::after {
  content: "KI-generiert";
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 5;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: rgba(255, 255, 255, .9);
  background: rgba(24, 41, 93, .58);
  box-shadow: 0 6px 16px rgba(24, 41, 93, .18);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
  pointer-events: none;
}

.invisible {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--white);
  color: var(--blue-dark);
  border-radius: var(--radius);
}
.skip-link:focus { transform: translateY(0); }

#wrapper { min-height: 100vh; background: var(--paper-warm); }
#container { padding: 0; }
#main .inside { padding: 0; }

/* Inner pages use the existing visual system, but need a stable header and
   a deliberate start edge instead of the overlay treatment of the home hero. */
body.schulz-inner-page #main { padding-top: var(--header-height); }
body.schulz-inner-page .site-header {
  background: rgba(45, 70, 140, .98);
  box-shadow: 0 12px 34px rgba(34, 54, 111, .2);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px max(20px, calc((100vw - 1320px) / 2));
  color: var(--white);
  background: linear-gradient(180deg, rgba(24, 41, 93, .9), rgba(24, 41, 93, .28));
  transition: background-color .18s ease, box-shadow .18s ease, min-height .18s ease;
}
.site-header.is-scrolled,
.site-header.is-open {
  min-height: 70px;
  background: rgba(45, 70, 140, .97);
  box-shadow: 0 12px 34px rgba(34, 54, 111, .2);
  backdrop-filter: blur(16px);
}
.site-brand {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 10px 28px rgba(34, 54, 111, .14);
}
.site-brand img { width: 230px; max-height: 54px; object-fit: contain; }
.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}
.primary-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  font-size: .95rem;
}
.primary-nav a:hover { background: rgba(255, 255, 255, .12); color: var(--white); }
.nav-services { position: relative; }
.nav-services summary {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, .88);
  cursor: pointer;
  font-size: .95rem;
  list-style: none;
}
.nav-services summary::-webkit-details-marker { display: none; }
.nav-services summary::marker { content: ""; }
.nav-services summary:hover,
.nav-services[open] summary { color: var(--white); background: rgba(255, 255, 255, .12); }
.nav-services__indicator {
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .18s ease;
}
.nav-services[open] .nav-services__indicator { margin-top: 4px; transform: rotate(225deg); }
.nav-services__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: -12px;
  z-index: 56;
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 2px;
  width: min(610px, calc(100vw - 40px));
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(34, 54, 111, .99);
  box-shadow: 0 18px 42px rgba(24, 41, 93, .32);
}
.primary-nav .nav-services__panel a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 10px;
  border-radius: 5px;
  color: rgba(255, 255, 255, .86);
  font-size: .88rem;
  line-height: 1.25;
}
.primary-nav .nav-services__panel a:hover { color: var(--white); background: rgba(255, 255, 255, .12); }
.primary-nav .nav-services__panel .nav-services__overview {
  grid-column: 1 / -1;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  border-radius: 0;
  color: var(--aqua);
  font-weight: 800;
}
.primary-nav a.is-active,
.primary-nav .nav-services__panel a.is-active,
body.schulz-company-page .primary-nav > a[href="/unternehmen"],
body.schulz-contact-page .primary-nav > a[href="/kontakt"],
body.schulz-services-page .primary-nav > .nav-services summary,
body.schulz-service-detail-page .primary-nav > .nav-services summary {
  color: var(--white);
  background: var(--signal);
  box-shadow: 0 8px 18px rgba(198, 50, 91, .25);
}
.primary-nav .nav-services__panel a.is-active { font-weight: 800; }
.nav-services summary.is-active .nav-services__indicator { border-color: currentColor; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}
.phone-link::before {
  content: "";
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300A9D6' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7.8 3.75h2.05l1.02 4.08-1.62 1.63a15.06 15.06 0 0 0 5.25 5.25l1.63-1.62 4.08 1.02v2.05a1.95 1.95 0 0 1-2.08 1.94C10.72 17.6 6.4 13.28 5.86 5.83A1.95 1.95 0 0 1 7.8 3.75Z'/%3E%3C/svg%3E");
}
.nav-toggle { display: none; }

.button,
.ce_hyperlink a,
.content-hyperlink a,
.submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--signal);
  font: inherit;
  font-weight: 780;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.button:hover,
.ce_hyperlink a:hover,
.content-hyperlink a:hover,
.submit:hover {
  background: var(--danger);
  transform: translateY(-1px);
}
.button-secondary a,
.ce_hyperlink.button-secondary a,
.content-hyperlink.button-secondary a {
  color: var(--white);
  border-color: rgba(255, 255, 255, .46);
  background: rgba(255, 255, 255, .1);
}
.button-secondary a:hover,
.ce_hyperlink.button-secondary a:hover,
.content-hyperlink.button-secondary a:hover {
  border-color: rgba(255, 255, 255, .68);
  background: rgba(255, 255, 255, .16);
}
.button-small { min-height: 42px; padding: 11px 14px; }

.hero .hero-cta:not(.button-secondary) a,
.quick-help-cta a,
.contact-form .submit,
.cta-pulse a,
a.cta-pulse,
button.cta-pulse {
  box-shadow:
    0 0 0 3px rgba(198, 50, 91, .22),
    0 18px 40px var(--cta-glow-soft);
  animation: cta-glow-pulse 1.55s cubic-bezier(.4, 0, .2, 1) infinite;
}

.hero .hero-cta:not(.button-secondary) a:hover,
.quick-help-cta a:hover,
.contact-form .submit:hover,
.cta-pulse a:hover,
a.cta-pulse:hover,
button.cta-pulse:hover {
  box-shadow:
    0 0 0 10px rgba(198, 50, 91, .24),
    0 22px 52px rgba(198, 50, 91, .42);
}

@keyframes cta-glow-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 2px rgba(198, 50, 91, .5),
      0 16px 36px rgba(198, 50, 91, .3);
  }
  48% {
    box-shadow:
      0 0 0 18px rgba(198, 50, 91, .03),
      0 22px 54px rgba(198, 50, 91, .46);
  }
  72% {
    box-shadow:
      0 0 0 26px rgba(198, 50, 91, 0),
      0 18px 42px rgba(198, 50, 91, .34);
  }
}

.mod_article {
  position: relative;
  width: var(--wrap);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 124px) 0;
  background: var(--article-bg, transparent);
  box-shadow: 0 0 0 100vmax var(--article-bg, transparent);
  clip-path: inset(0 -100vmax);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

/* Contao spacing utilities: use in the class field of articles, elements or form fields. */
.m-t-1 { margin-top: clamp(16px, 2vw, 24px) !important; }
.m-t-2 { margin-top: clamp(32px, 4vw, 48px) !important; }
.m-t-3 { margin-top: clamp(48px, 6vw, 72px) !important; }
.m-b-1 { margin-bottom: clamp(16px, 2vw, 24px) !important; }
.m-b-2 { margin-bottom: clamp(32px, 4vw, 48px) !important; }
.m-b-3 { margin-bottom: clamp(48px, 6vw, 72px) !important; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--aqua);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.content-text > h1 + .rte .eyebrow,
.content-text > h2 + .rte .eyebrow,
.content-text > h3 + .rte .eyebrow {
  margin-top: 18px;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  overflow-wrap: break-word;
  hyphens: manual;
}
h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 6.8rem);
  line-height: .96;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}
h3 { margin-bottom: 10px; font-size: 1.16rem; line-height: 1.2; }
.section-intro p:not(.eyebrow),
.lead p { color: var(--ink-soft); font-size: 1.125rem; }

.hero {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: flex-start;
  column-gap: 4px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
  box-shadow: none;
  clip-path: none;
  padding: calc(var(--header-height) + clamp(48px, 7vh, 90px)) max(20px, calc((100vw - 1320px) / 2)) clamp(40px, 7vh, 72px);
}
.hero .hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0;
}
.hero .hero-media figure,
.hero .hero-media picture,
.hero .hero-media img,
.hero .hero-media video {
  width: 100%;
  height: 100%;
}
.hero .hero-media img,
.hero .hero-media video {
  object-fit: cover;
  filter: saturate(.9) contrast(1.04);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 41, 93, .94) 0%, rgba(34, 54, 111, .82) 42%, rgba(34, 54, 111, .26) 76%),
    linear-gradient(180deg, rgba(24, 41, 93, .2) 0%, rgba(24, 41, 93, .72) 100%);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: relative;
  z-index: 1;
  order: 3;
  flex: 0 0 100%;
  height: 0;
}
.hero .hero-logo,
.hero .hero-copy,
.hero .hero-cta,
.hero .hero-fact { position: relative; z-index: 1; }
.hero .hero-logo {
  order: 1;
  flex: 0 0 100%;
  margin: 0 0 clamp(28px, 4.5vw, 48px);
}
.hero .hero-logo figure {
  display: inline-flex;
  margin: 0;
}
.hero .hero-logo img {
  width: min(720px, 94vw);
  max-height: 145px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, .96))
    drop-shadow(0 0 7px rgba(255, 255, 255, .5))
    drop-shadow(0 16px 34px rgba(24, 41, 93, .5));
}
@media (min-width: 1200px) {
  .hero .hero-logo img {
    width: min(840px, calc(100vw - 100px));
    max-height: 165px;
  }
}
.hero .hero-copy {
  order: 1;
  flex: 0 0 100%;
  max-width: 100%;
}
.hero .hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
}
.hero .hero-cta {
  order: 4;
  display: inline-flex;
  margin: 24px 12px 28px 0;
}
.hero .hero-fact {
  order: 2;
  display: grid;
  align-self: stretch;
  flex: 0 1 238px;
  min-width: 230px;
  min-height: 112px;
  margin-top: 30px;
  margin-right: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(45, 70, 140, .46);
}
.hero .hero-fact h3 {
  margin: 0;
  color: var(--aqua);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}
.hero .hero-fact p { margin: 4px 0 0; color: rgba(255, 255, 255, .86); }

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, .58fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
  margin-bottom: 42px;
}
.section-intro.compact { display: block; max-width: 800px; }

.quick-help,
.services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.quick-help { --article-bg: var(--paper-warm); }
.quick-help .section-intro,
.services .section-intro {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0 0 12px;
  background: transparent;
}
.services:not(.services-overview) .section-intro { padding-bottom: 32px; }
.services { --article-bg: var(--paper); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.services {
  background: var(--article-bg);
}
.quick-help .promise-card,
.services .service-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
}
.quick-help .promise-card { background: transparent; }
.quick-help .promise-card p,
.services .service-card p { color: var(--ink-soft); }
.services .service-card {
  min-height: 410px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 16px 38px rgba(38, 54, 81, .08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.services .service-card:hover,
.services .service-card:focus-within {
  border-color: rgba(0, 169, 214, .5);
  box-shadow: 0 24px 52px rgba(38, 54, 81, .16);
  transform: translateY(-5px);
}
.services .service-card .rte {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card__media {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--line);
}
.service-card__content,
.service-card__link {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card__link {
  color: inherit;
  text-decoration: none;
}
.service-card__media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.service-card__link:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: -3px;
}
.service-card__media-link:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: -3px;
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.03);
  transition: transform .5s cubic-bezier(.2, .7, .2, 1), filter .5s ease;
}
.services .service-card:hover .service-card__media img,
.services .service-card:focus-within .service-card__media img {
  filter: saturate(1) contrast(1.06);
  transform: scale(1.045);
}
.service-card__body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 24px;
}
.service-card__body::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--aqua), var(--blue) 72%, rgba(45, 70, 140, 0));
}
.services .service-card .service-card__index {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 850;
  line-height: 1;
}
.services .service-card .service-card__index::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(45, 70, 140, .16);
}
.services .service-card h3 {
  margin: 0 0 10px;
  color: var(--blue-deep);
  font-size: clamp(1.08rem, 1.42vw, 1.17rem);
  line-height: 1.18;
  letter-spacing: -.025em;
}
.services .service-card .service-card__body > p:last-of-type {
  margin-bottom: 0;
}
.service-card__more {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  padding: 18px 0 6px;
  color: var(--blue);
  font-size: .92rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
}
.service-card__more::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--aqua), rgba(0, 169, 214, 0));
  transform: scaleX(.36);
  transform-origin: left center;
  transition: transform .22s ease;
}
.service-card__more span {
  color: var(--aqua);
  transform: translateX(0);
  transition: transform .22s ease;
}
.service-card__more:hover,
.service-card__more:focus-visible {
  color: var(--blue-deep);
}
.service-card__more:hover::after,
.service-card__more:focus-visible::after {
  transform: scaleX(1);
}
.service-card__more:hover span,
.service-card__more:focus-visible span {
  transform: translateX(4px);
}
.service-card__more:focus-visible {
  outline: 3px solid rgba(0, 169, 214, .36);
  outline-offset: 5px;
  border-radius: 2px;
}

.services-overview .section-intro { margin-bottom: 6px; }
.service-detail-hero {
  --article-bg: var(--blue-deep);
  color: var(--white);
}
.service-detail-hero .section-intro { margin-bottom: 34px; }
.service-detail-hero .section-intro.compact,
.service-detail-hero h1,
.service-detail-hero .section-intro p:not(.eyebrow) { max-width: none; }
.service-detail-hero .section-intro h1 { font-size: clamp(2.8rem, 5.8vw, 6rem); }
.service-detail-hero .section-intro h1,
.service-detail-hero .section-intro p:not(.eyebrow) { color: var(--white); }
.service-detail-hero .eyebrow { color: var(--aqua); }
.service-detail-hero .eyebrow a { color: inherit; }
.service-detail-hero .service-detail-back,
.service-detail-hero .service-detail-home {
  display: inline-block;
  margin: 0 8px 0 0;
  vertical-align: top;
}
.service-detail-media {
  --article-bg: var(--paper);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .86fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
}
.service-detail-image figure { margin: 0; }
.service-detail-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(38, 54, 81, .12);
  transition: transform .5s cubic-bezier(.2, .7, .2, 1), filter .5s ease;
}
.service-detail-image:hover img { filter: saturate(1.04); transform: scale(1.025); }
.service-detail-copy { max-width: 560px; }
.service-detail-copy p:not(.eyebrow) { color: var(--ink-soft); }
.service-detail-content,
.company-intro { --article-bg: var(--paper-warm); }
.service-detail-content .section-intro,
.company-intro .section-intro { margin-bottom: 0; }
.company-hero {
  --article-bg: var(--blue-deep);
  min-height: min(690px, calc(100svh - var(--header-height)));
  display: grid;
  align-content: center;
  color: var(--white);
  isolation: isolate;
}
.company-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background: linear-gradient(90deg, rgba(16, 31, 70, .94) 0%, rgba(20, 38, 83, .88) 42%, rgba(20, 38, 83, .48) 72%, rgba(20, 38, 83, .18) 100%);
  transform: translateX(-50%);
}
.company-hero__media {
  position: absolute;
  z-index: -2;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin: 0;
  transform: translateX(-50%);
}
.company-hero__media figure,
.company-hero__media img {
  width: 100%;
  height: 100%;
  margin: 0;
}
.company-hero__media img { object-fit: cover; }
.company-hero__content {
  width: min(820px, 68%);
  margin: 0 !important;
}
.company-hero__content h1,
.company-hero__content p:not(.eyebrow) { color: var(--white); }
.company-hero__content h1 { max-width: 880px; }
.company-hero__content p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, .9);
}
.company-hero__content .eyebrow { color: var(--aqua); }
.service-detail-content ul,
.company-approach ul {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin: 28px 0 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}
.service-detail-contact {
  --article-bg: var(--paper);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}
.service-detail-contact .section-intro { margin: 0; }
.service-detail-cta { margin-bottom: 4px; }
.company-approach {
  --article-bg: var(--paper);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  column-gap: clamp(32px, 6vw, 96px);
  row-gap: 28px;
  align-items: stretch;
}
.company-approach .section-intro { grid-column: 1; grid-row: 1; margin: 0; }
.company-cta { grid-column: 1; grid-row: 2; align-self: start; margin: 4px 0 0; }
.company-approach-logo { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
.company-approach-logo figure { margin: 0; }
.company-approach-logo img { width: 100%; height: auto; }
.company-gallery {
  --article-bg: var(--paper-warm);
}
.company-gallery .section-intro {
  max-width: 680px;
  margin-bottom: 40px;
}
.company-gallery .content-gallery ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.company-gallery .content-gallery li { min-width: 0; }
.company-gallery .content-gallery figure {
  height: 100%;
  margin: 0;
  border-radius: var(--radius);
  background: var(--paper);
}
.company-gallery .content-gallery a { display: block; height: 100%; }
.company-gallery .content-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .32s ease;
}
.company-gallery .content-gallery a:hover img,
.company-gallery .content-gallery a:focus-visible img { transform: scale(1.035); }
.quick-help .metric {
  display: none;
}
.quick-help .promise-card {
  position: relative;
  padding-top: 82px;
  overflow: visible;
}
.quick-help .promise-card h3 { position: static; }
.quick-help .promise-card h3::before {
  position: absolute;
  top: 24px;
  left: 26px;
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: .78rem;
  font-weight: 850;
  line-height: 1;
}
.quick-help .promise-card:nth-child(2) h3::before { content: "01"; }
.quick-help .promise-card:nth-child(3) h3::before { content: "02"; }
.quick-help .promise-card:nth-child(4) h3::before { content: "03"; }
.quick-help .promise-card:nth-child(5) h3::before { content: "04"; }
.quick-help-cta {
  grid-column: 1 / -1;
  margin-top: 32px;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .62s ease, transform .62s cubic-bezier(.2, .7, .2, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }
  .reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
}

.process { --article-bg: var(--paper-warm); }
.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.process .section-intro { grid-column: 1 / -1; }
.process-step {
  position: relative;
  min-height: 230px;
  padding: 72px 0 0;
  border-top: 2px solid var(--line);
}
.process-step h3::before {
  content: attr(data-step);
  position: absolute;
  top: -23px;
  left: 0;
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: .86rem;
  font-weight: 850;
}
.process-step:nth-child(2) h3::before { content: "01"; }
.process-step:nth-child(3) h3::before { content: "02"; }
.process-step:nth-child(4) h3::before { content: "03"; }
.process-step:nth-child(5) h3::before { content: "04"; }
.process-step p { color: var(--ink-soft); }

.why {
  --article-bg: var(--blue);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 18px;
  align-items: stretch;
  color: var(--white);
}
.why-panel,
.signal-box {
  border-radius: var(--radius);
  color: var(--white);
}
.why-panel { padding: 0; background: transparent; }
.why-panel p { max-width: 760px; color: rgba(255, 255, 255, .8); }
.why-panel ul { display: grid; gap: 12px; max-width: 760px; padding: 0; margin: 30px 0 0; list-style: none; }
.why-panel li { position: relative; padding-left: 28px; }
.why-panel li::before {
  content: "";
  position: absolute;
  top: .6em;
  left: 0;
  width: 12px;
  height: 8px;
  border-left: 3px solid var(--aqua);
  border-bottom: 3px solid var(--aqua);
  transform: rotate(-45deg);
}
.signal-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  text-align: center;
}
.signal-box h3 {
  width: 100%;
  color: var(--white);
  font-size: clamp(2.35rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.signal-box h3::before {
  content: "";
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  background: url("/files/schulz-bautrocknung/assets/phone-signal-icon.svg") center / contain no-repeat;
  transform-origin: center;
  animation: signal-icon-pulse 1.8s cubic-bezier(.4, 0, .2, 1) infinite;
  will-change: transform, filter;
}
.signal-box p {
  max-width: 280px;
  margin-inline: auto;
  color: rgba(255, 255, 255, .78);
}

@keyframes signal-icon-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 8px 16px rgba(0, 169, 214, .2));
  }
  48% {
    transform: scale(1.065);
    filter: drop-shadow(0 10px 24px rgba(0, 169, 214, .62));
  }
  72% {
    transform: scale(1.02);
    filter: drop-shadow(0 9px 32px rgba(0, 169, 214, .16));
  }
}

.region {
  --article-bg: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.region { display: flex; flex-wrap: wrap; gap: 10px; }
.region .section-intro {
  width: 100%;
  align-items: start;
}
.region .section-intro h2 { margin-top: 30px; }
.region .region-claim {
  margin: 24px 0 0;
  color: var(--blue-dark);
  line-height: 1.4;
}
.region-chip {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, .72);
  font-weight: 720;
}
.region-chip p { margin: 0; }
.region-team-photo {
  flex: 0 0 100%;
  width: 100%;
  margin-top: clamp(26px, 4vw, 48px);
}
.region-team-photo figure { margin: 0; }
.region-team-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.region-membership-title {
  flex: 0 0 100%;
  margin: clamp(18px, 3vw, 30px) 0 0;
  color: var(--blue-dark);
  font-size: .84rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.region-membership-title h3 { margin: 0; font: inherit; }
.membership-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 150px;
  min-height: 96px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
}
.membership-logo figure { margin: 0; }
.membership-logo img { display: block; max-width: 100%; height: 72px; width: auto; object-fit: contain; }
.membership-logo--dhbv img { height: 88px; }

.faq {
  --article-bg: var(--paper-warm);
  counter-reset: faq;
  display: grid;
  grid-template-columns: minmax(0, .42fr) minmax(0, .78fr);
  column-gap: clamp(34px, 7vw, 96px);
  row-gap: 12px;
  align-items: start;
}
.faq-sticky {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  grid-column: 1;
  grid-row: 1 / span 8;
  max-width: 430px;
  align-self: start;
}
.faq-sticky .section-intro.compact {
  max-width: none;
  margin: 0;
  padding-top: 10px;
}
.faq-sticky .section-intro.compact::after {
  content: none;
}
.faq-sticky .faq-cta {
  display: inline-block;
  margin: 26px 0 0;
}
.faq .ce_accordionSingle.accordion {
  position: relative;
  grid-column: 2;
  counter-increment: faq;
  overflow: clip;
  margin: 0;
  border: 1px solid rgba(45, 70, 140, .16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .82)),
    linear-gradient(90deg, rgba(0, 169, 214, .12), transparent 52%);
  box-shadow: 0 14px 34px rgba(38, 54, 81, .07);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background-color .18s ease;
}
.faq .ce_accordionSingle.accordion::before {
  content: counter(faq, decimal-leading-zero);
  position: absolute;
  top: 23px;
  left: 22px;
  z-index: 1;
  color: var(--aqua);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
}
.faq .ce_accordionSingle.accordion::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--aqua), var(--blue));
  opacity: .72;
}
.faq .ce_accordionSingle.accordion:hover,
.faq .ce_accordionSingle.accordion:has(.toggler button[aria-expanded="true"]) {
  border-color: rgba(0, 169, 214, .46);
  box-shadow: 0 20px 54px rgba(38, 54, 81, .12);
  transform: translateY(-1px);
}
.faq .toggler {
  color: var(--blue-dark);
  font-weight: 850;
  cursor: pointer;
}
.faq .toggler button {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 22px 22px 22px 74px;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  line-height: 1.2;
  text-align: left;
}
.faq .toggler button::before,
.faq .toggler button::after {
  content: "";
  grid-column: 2;
  grid-row: 1;
  place-self: center;
  display: block;
  border-radius: 999px;
}
.faq .toggler button::before {
  width: 34px;
  aspect-ratio: 1;
  border: 1px solid rgba(45, 70, 140, .18);
  background: rgba(255, 255, 255, .78);
}
.faq .toggler button::after {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  border-radius: 0;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease, border-color .18s ease;
}
.faq .toggler button[aria-expanded="true"]::before {
  background: var(--blue);
  border-color: var(--blue);
}
.faq .toggler button[aria-expanded="true"]::after {
  border-color: var(--white);
  transform: translateY(2px) rotate(225deg);
}
.faq .ce_accordionSingle > .accordion {
  margin: 0;
  padding: 0 24px 24px 74px;
  color: var(--ink-soft);
  background: transparent;
}
.faq .ce_accordionSingle > .accordion > div {
  max-width: 720px;
  padding: 0 52px 2px 0;
}
.faq .ce_accordionSingle > .accordion p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.contact-cta {
  --article-bg: var(--paper);
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(320px, .58fr);
  column-gap: clamp(28px, 7vw, 92px);
  row-gap: 30px;
  align-items: start;
}
.contact-copy p:not(.eyebrow) { max-width: 620px; color: var(--ink-soft); }
.contact-copy-column,
.contact-form-column {
  grid-row: 1;
}
.contact-copy-column {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-form-column {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-logo {
  margin-top: 0;
  margin-bottom: 0;
}
.contact-logo figure { margin: 0; }
.contact-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.contact-address {
  margin-top: 0;
}
.contact-address address {
  max-width: 620px;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-style: normal;
  line-height: 1.7;
}
.contact-address address strong { color: var(--blue-dark); }
.contact-address address a {
  color: var(--blue);
  overflow-wrap: anywhere;
}
.home-contact-cta {
  grid-template-areas: "copy form" "logo form";
  grid-template-rows: auto auto;
  row-gap: 14px;
  align-items: start;
}
.home-contact-copy {
  grid-area: copy;
}
.home-contact-logo {
  grid-area: logo;
  margin-top: 0;
}
.home-contact-logo figure { margin: 0; }
.home-contact-logo img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.home-contact-form {
  grid-column: 2;
  grid-row: 1 / span 3;
}
.home-contact-cta > .home-contact-form {
  grid-area: form;
  align-self: start;
}
.home-contact-cta > .contact-form.home-contact-form {
  grid-area: form;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
}
.contact-form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  box-shadow: none;
}
.contact-form .widget { margin-bottom: 14px; }
.contact-form .widget-altcha { margin-top: 20px; margin-bottom: 26px; }
.home-contact-form .widget-submit { margin-top: 32px; margin-bottom: 0; }
.contact-form label { display: block; margin-bottom: 7px; color: var(--blue-dark); font-size: .9rem; font-weight: 780; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #b8c8d2;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}
.contact-form textarea { min-height: 132px; resize: vertical; }

.mod_article.legal-content {
  --article-bg: var(--paper-warm);
  width: min(880px, calc(100vw - 40px));
}
.legal-copy h1 {
  font-size: clamp(2.65rem, 4.4vw, 4rem);
  line-height: 1.04;
}
.legal-copy h2 {
  margin-top: clamp(38px, 5vw, 56px);
  font-size: clamp(1.75rem, 2.7vw, 2.45rem);
  line-height: 1.16;
}
.legal-copy h3 {
  margin-top: 28px;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.25;
}
.legal-copy h4 { margin-top: 22px; font-size: 1rem; }
.legal-copy p,
.legal-copy li { color: var(--ink-soft); }
.legal-copy ul { padding-left: 1.25rem; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(130px, 180px) minmax(280px, 1fr);
  gap: clamp(24px, 3vw, 48px);
  padding: 44px max(20px, calc((100vw - 1320px) / 2));
  color: rgba(255, 255, 255, .78);
  background: var(--blue-deep);
}
.site-footer strong { color: var(--white); }
.site-footer p { max-width: 420px; margin: 8px 0 0; }
.site-footer__copyright {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, .62);
  font-size: .82rem;
}
.site-footer nav { display: grid; gap: 8px; }
.site-footer a { color: var(--white); }
.site-footer address { font-style: normal; }

@media (max-width: 980px) {
  :root { --header-height: 76px; --wrap: min(100vw - 32px, 1320px); }
  body::before {
    content: "";
    position: fixed;
    z-index: 49;
    inset: 0;
    background: rgba(12, 23, 52, .62);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s step-end;
  }
  html.nav-open body::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .2s ease;
  }
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .site-brand img { width: 184px; }
  .nav-toggle {
    position: relative;
    z-index: 60;
    display: grid;
    place-items: center;
    width: 48px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: var(--radius);
    color: var(--white);
    background: transparent;
  }
  .nav-toggle-lines,
  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: transform .2s ease, top .2s ease, background-color .2s ease;
  }
  .nav-toggle-lines { position: relative; }
  .nav-toggle-lines::before,
  .nav-toggle-lines::after { content: ""; position: absolute; left: 0; }
  .nav-toggle-lines::before { top: -7px; }
  .nav-toggle-lines::after { top: 7px; }
  .site-header.is-open .nav-toggle-lines { background: transparent; }
  .site-header.is-open .nav-toggle-lines::before { top: 0; transform: rotate(45deg); }
  .site-header.is-open .nav-toggle-lines::after { top: 0; transform: rotate(-45deg); }
  .primary-nav,
  .header-actions {
    position: fixed;
    left: 16px;
    right: 16px;
    display: none;
    color: var(--white);
    background: rgba(45, 70, 140, .99);
  }
  .primary-nav {
    top: 86px;
    z-index: 54;
    justify-self: stretch;
    align-self: stretch;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius) var(--radius) 0 0;
    max-height: calc(100dvh - 172px);
    overflow-y: auto;
  }
  .primary-nav a {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
  .nav-services { width: 100%; }
  .nav-services summary { width: 100%; min-height: 48px; justify-content: flex-start; text-align: left; }
  .nav-services__panel {
    position: static;
    grid-template-columns: 1fr;
    width: auto;
    margin: 4px 0 8px;
    padding: 8px;
    border-color: rgba(255, 255, 255, .12);
    box-shadow: none;
  }
  .primary-nav .nav-services__panel a { min-height: 44px; }
  .header-actions {
    top: 306px;
    z-index: 54;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
  }
  .header-actions .button {
    align-self: flex-start;
    min-height: 42px;
    padding: 10px 14px;
  }
  .site-header.is-open .primary-nav,
  .site-header.is-open .header-actions { display: flex; }
  .site-header.is-open .primary-nav:has(.nav-services[open]) ~ .header-actions { display: none; }
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
  }
  .hero { padding-bottom: 34px; }
  .section-intro,
  .quick-help,
  .services,
  .process,
  .why,
  .contact-cta,
  .service-detail-contact,
  .service-detail-media,
  .company-approach,
  .site-footer { grid-template-columns: 1fr; }
  .contact-logo,
  .contact-address,
  .contact-cta > .contact-form {
    grid-column: 1;
    grid-row: auto;
  }
  .contact-copy-column {
    grid-column: 1;
    grid-row: auto;
    gap: 24px;
  }
  .contact-form-column {
    grid-column: 1;
    grid-row: auto;
    gap: 24px;
  }
  .company-hero { min-height: 590px; }
  .faq {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }
  .faq-sticky {
    position: static;
    grid-column: 1;
    grid-row: auto;
    max-width: 760px;
  }
  .faq-sticky .section-intro.compact {
    margin-bottom: 22px;
  }
  .faq-sticky .faq-cta {
    margin: -8px 0 18px;
  }
  .faq .ce_accordionSingle.accordion { grid-column: 1; }
  .quick-help { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-help .section-intro { grid-column: 1 / -1; }
  .home-contact-cta {
    grid-template-areas: "copy" "logo" "form";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .home-contact-copy,
  .home-contact-logo,
  .home-contact-cta > .home-contact-form {
    grid-area: auto;
    grid-column: 1;
    grid-row: auto;
  }
  .home-contact-cta > .contact-form.home-contact-form {
    grid-area: form;
    grid-column: 1;
    grid-row: auto;
  }
  .company-approach .section-intro,
  .company-cta,
  .company-approach-logo { grid-column: auto; grid-row: auto; }
  .company-gallery .content-gallery ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { gap: 24px; }
  .process-step {
    min-height: auto;
    padding: 38px 0 0 70px;
    border-top: 0;
    border-left: 2px solid var(--blue);
  }
  .process-step h3::before { top: 0; left: -24px; }
  .site-footer nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .company-gallery .content-gallery ul { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 17px; }
  .site-header { padding-inline: 16px; }
  .site-brand { padding: 5px 8px; }
  .site-brand img { width: 154px; }
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: calc(var(--header-height) + 46px);
  }
  h1 { font-size: clamp(2.25rem, 10.5vw, 3.25rem); }
  h1, h2, h3 { hyphens: auto; }
  .hero .hero-cta,
  .hero .hero-cta a { width: 100%; }
  .hero .hero-fact { width: 100%; margin-top: 16px; }
  .quick-help,
  .services { grid-template-columns: 1fr; }
  .quick-help .promise-card {
    min-height: auto;
    padding: 80px 22px 22px;
  }
  .quick-help .promise-card h3::before {
    top: 22px;
    left: 22px;
  }
  .services .service-card { min-height: auto; }
  .service-card__body { padding: 20px; }
  .service-card__body::before { inset-inline: 20px; }
  .faq .ce_accordionSingle.accordion::before {
    top: 20px;
    left: 18px;
  }
  .faq .toggler button {
    grid-template-columns: minmax(0, 1fr) 30px;
    min-height: 72px;
    padding: 19px 16px 19px 60px;
  }
  .faq .toggler button::before {
    width: 30px;
  }
  .faq .ce_accordionSingle > .accordion {
    padding: 0 18px 20px 60px;
  }
  .faq .ce_accordionSingle > .accordion > div {
    padding-right: 0;
  }
  .mod_article { padding-block: 62px; }
  .company-hero {
    min-height: 620px;
    align-content: end;
  }
  .company-hero::after {
    background: linear-gradient(180deg, rgba(16, 31, 70, .94) 0%, rgba(20, 38, 83, .82) 52%, rgba(20, 38, 83, .4) 100%);
  }
  .company-hero__content { width: 100%; }
  .company-hero__media img { object-position: 68% center; }
  .contact-form { padding: 18px; }
}

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

  .hero .hero-cta:not(.button-secondary) a,
  .quick-help-cta a,
  .contact-form .submit,
  .cta-pulse a,
  a.cta-pulse,
  button.cta-pulse {
    animation: none !important;
    box-shadow: 0 18px 40px rgba(198, 50, 91, .32);
  }

  .signal-box h3::before {
    animation: none !important;
    filter: drop-shadow(0 8px 16px rgba(0, 169, 214, .2));
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

