@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-var.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --navy: #073b67;
  --navy-deep: #052e50;
  --navy-darker: #03233d;
  --blue: #0d7fc4;
  --cyan: #16a6d8;
  --green: #24a866;
  --yellow: #f2cf00;
  --pink: #ef496b;
  --ink: #102334;
  --muted: #5d6b78;
  --line: #dfe7ed;
  --surface: #f3f7fa;
  --white: #fff;
  --shadow-sm: 0 10px 30px rgba(7, 59, 103, .08);
  --shadow-lg: 0 25px 70px rgba(3, 35, 61, .18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-pad { padding: 110px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; left: 16px; top: 16px; transform: translateY(-150%); background: var(--white); color: var(--navy); padding: 10px 16px; border-radius: 8px; box-shadow: var(--shadow-lg); }
.skip-link:focus { transform: translateY(0); }

.demo-banner { background: var(--pink); color: var(--white); min-height: 32px; display: flex; align-items: center; justify-content: center; gap: 18px; padding: 4px 20px; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.demo-close { border: 0; background: transparent; color: inherit; font-size: 1.25rem; line-height: 1; opacity: .8; }
.demo-banner.hidden { display: none; }

.topbar { background: var(--navy-darker); color: rgba(255, 255, 255, .82); font-size: .84rem; }
.topbar-inner { min-height: 42px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.topbar p { margin: 0; }
.topbar-links { display: flex; align-items: center; gap: 13px; }
.topbar a { transition: color .2s ease; }
.topbar a:hover { color: var(--white); }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .96); border-bottom: 1px solid rgba(223, 231, 237, .8); backdrop-filter: blur(18px); transition: box-shadow .25s ease; }
.site-header.scrolled { box-shadow: 0 8px 30px rgba(3, 35, 61, .09); }
.header-inner { min-height: 88px; display: grid; grid-template-columns: 170px 1fr auto; align-items: center; gap: 35px; }
.brand { display: flex; align-items: center; width: 150px; height: 70px; overflow: hidden; }
.brand img { width: 145px; transform: scale(1.35); transform-origin: center; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 28px; }
.site-nav a { position: relative; font-size: .93rem; font-weight: 700; color: #31485a; }
.site-nav a::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: -8px; background: var(--blue); transition: right .25s ease; }
.site-nav a:hover { color: var(--navy); }
.site-nav a:hover::after { right: 0; }
.menu-button { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; }
.menu-button span:not(.sr-only) { display: block; height: 2px; background: var(--navy); margin: 5px 0; transition: transform .25s ease, opacity .25s ease; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 23px; border: 1px solid transparent; border-radius: 999px; font-size: .92rem; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: var(--white); box-shadow: 0 9px 20px rgba(7, 59, 103, .2); }
.button-primary:hover { background: var(--blue); box-shadow: 0 12px 28px rgba(13, 127, 196, .25); }
.button-secondary { color: var(--navy); border-color: #b9c9d5; background: rgba(255, 255, 255, .7); }
.button-secondary:hover { background: var(--white); border-color: var(--navy); }
.button-light { background: var(--white); color: var(--navy); box-shadow: 0 10px 30px rgba(0, 0, 0, .12); }
.button-large { min-height: 56px; padding-inline: 29px; }

.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #f7fbfe 0%, #eef6fa 60%, #fff 100%); padding-top: 80px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 82px; }
.hero-copy { padding: 25px 0 45px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 18px; color: var(--blue); font-size: .76rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 32px; height: 3px; border-radius: 99px; background: linear-gradient(90deg, var(--pink), var(--yellow), var(--green), var(--cyan)); }
.eyebrow-light { color: rgba(255, 255, 255, .78); }
.hero h1 { margin: 0; max-width: 700px; font-size: clamp(3.1rem, 5.7vw, 5.35rem); line-height: .98; letter-spacing: -.06em; color: var(--navy-deep); }
.hero h1 em { font-style: normal; color: var(--blue); position: relative; white-space: nowrap; }
.hero h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 7px; border-radius: 999px; background: linear-gradient(90deg, var(--pink), var(--yellow), var(--green), var(--cyan)); opacity: .8; }
.hero-lead { max-width: 630px; margin: 30px 0 0; color: var(--muted); font-size: 1.16rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-form-note { max-width: 560px; margin: 14px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.hero-benefits { display: flex; flex-wrap: wrap; gap: 15px 24px; margin: 34px 0 0; padding: 0; list-style: none; font-size: .88rem; font-weight: 700; color: #3f5261; }
.hero-benefits li { display: flex; align-items: center; gap: 8px; }
.hero-benefits svg { width: 20px; height: 20px; padding: 3px; border-radius: 50%; color: var(--green); background: rgba(36, 168, 102, .11); stroke-width: 2.5; }
.hero-visual { position: relative; min-height: 610px; }
.hero-image-wrap { position: absolute; inset: 5px 0 20px 45px; overflow: hidden; border-radius: 170px 24px 170px 24px; box-shadow: var(--shadow-lg); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(3, 35, 61, .65), transparent 47%); }
.hero-label { position: absolute; left: 34px; right: 34px; bottom: 30px; color: var(--white); display: flex; align-items: center; gap: 14px; }
.hero-label-icon { flex: 0 0 auto; display: grid; place-items: center; width: 50px; height: 50px; border: 1px solid rgba(255, 255, 255, .35); border-radius: 50%; background: rgba(255, 255, 255, .14); backdrop-filter: blur(10px); }
.hero-label-icon svg { width: 28px; height: 28px; }
.hero-label span:last-child { display: grid; font-size: .82rem; color: rgba(255, 255, 255, .82); }
.hero-label strong { color: var(--white); font-size: 1rem; }
.floating-card { position: absolute; z-index: 3; background: rgba(255, 255, 255, .96); box-shadow: 0 20px 50px rgba(3, 35, 61, .16); border-radius: 18px; border: 1px solid rgba(255, 255, 255, .8); backdrop-filter: blur(10px); }
.floating-card-top { top: 50px; left: -8px; display: flex; align-items: center; gap: 13px; padding: 17px 20px; }
.floating-card-top strong { font-size: 2.1rem; line-height: 1; color: var(--blue); }
.floating-card-top span { font-size: .75rem; color: var(--muted); line-height: 1.35; font-weight: 700; }
.floating-card-bottom { right: -22px; bottom: 70px; display: flex; align-items: center; gap: 11px; padding: 17px 20px; }
.floating-card-bottom > span:last-child { display: grid; color: var(--muted); font-size: .75rem; line-height: 1.35; }
.floating-card-bottom strong { color: var(--ink); font-size: .85rem; }
.status-dot { width: 11px; height: 11px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(36, 168, 102, .13); }
.hero-decoration { position: absolute; border-radius: 50%; filter: blur(1px); }
.hero-decoration-one { width: 460px; height: 460px; right: -210px; top: -150px; border: 90px solid rgba(22, 166, 216, .05); }
.hero-decoration-two { width: 180px; height: 180px; left: 45%; bottom: -100px; background: rgba(242, 207, 0, .08); }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 28px 28px; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: 0; }
.trust-item strong { display: block; color: var(--navy); font-size: 1.25rem; }
.trust-item span { color: var(--muted); font-size: .82rem; }

.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 80px; margin-bottom: 52px; }
.section-heading h2, .industries h2, .why h2, .contact h2 { margin: 0; color: var(--navy-deep); font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.08; letter-spacing: -.045em; }
.section-heading > p { margin: 0; color: var(--muted); font-size: 1.04rem; }
.section-heading.centered { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered > p { max-width: 600px; }

.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 330px; display: flex; flex-direction: column; overflow: hidden; padding: 29px; background: var(--surface); border: 1px solid transparent; border-radius: var(--radius-md); transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--pink), var(--yellow), var(--green), var(--cyan)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.service-card:hover { transform: translateY(-7px); background: var(--white); border-color: var(--line); box-shadow: var(--shadow-sm); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-featured { grid-row: span 2; min-height: 678px; color: var(--white); background: linear-gradient(170deg, rgba(7, 59, 103, .3), rgba(3, 35, 61, .95)), url("assets/cereni-glasreinigung.webp") center / cover; justify-content: flex-end; }
.service-card-featured::before { transform: scaleX(1); }
.service-card-featured:hover { background: linear-gradient(170deg, rgba(7, 59, 103, .2), rgba(3, 35, 61, .95)), url("assets/cereni-glasreinigung.webp") center / cover; border-color: transparent; }
.service-number { position: absolute; top: 23px; right: 25px; color: #a7b4be; font-size: .8rem; font-weight: 800; letter-spacing: .1em; }
.service-card-featured .service-number { color: rgba(255, 255, 255, .58); }
.service-icon { display: grid; place-items: center; width: 53px; height: 53px; margin-bottom: 45px; border-radius: 14px; background: var(--white); color: var(--blue); box-shadow: 0 7px 17px rgba(7, 59, 103, .07); }
.service-icon svg { width: 27px; height: 27px; }
.service-card-featured .service-icon { background: rgba(255, 255, 255, .15); color: var(--white); backdrop-filter: blur(10px); }
.service-card h3 { margin: 0 0 12px; color: var(--navy-deep); font-size: 1.35rem; line-height: 1.2; }
.service-card-featured h3 { color: var(--white); font-size: 2rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .91rem; }
.service-card-featured p { color: rgba(255, 255, 255, .77); font-size: 1rem; }
.service-card a { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: auto; padding-top: 25px; color: var(--navy); font-size: .86rem; font-weight: 800; }
.service-card-featured a { color: var(--white); }
.service-card a span { font-size: 1.35rem; transition: transform .2s ease; }
.service-card:hover a span { transform: translateX(5px); }
.extra-services { margin-top: 25px; padding: 22px 26px; display: flex; align-items: center; gap: 25px; border-radius: 14px; border: 1px solid var(--line); }
.extra-services > span { flex: 0 0 auto; font-size: .82rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; color: var(--navy); }
.extra-services > div { display: flex; flex-wrap: wrap; gap: 9px; }
.extra-services > div span { padding: 6px 12px; border-radius: 999px; background: var(--surface); color: var(--muted); font-size: .79rem; }

.industries { background: var(--navy-deep); color: var(--white); position: relative; overflow: hidden; }
.industries::after { content: ""; position: absolute; right: -170px; bottom: -250px; width: 620px; height: 620px; border-radius: 50%; border: 90px solid rgba(255, 255, 255, .03); }
.industries-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: center; }
.industries h2 { color: var(--white); }
.industries-copy > p:not(.eyebrow) { margin: 25px 0 32px; color: rgba(255, 255, 255, .68); max-width: 470px; }
.industry-list { border-top: 1px solid rgba(255, 255, 255, .15); }
.industry-item { width: 100%; display: grid; grid-template-columns: 46px 1fr 30px; align-items: center; gap: 16px; padding: 24px 4px; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .15); background: transparent; color: var(--white); text-align: left; transition: padding .25s ease, background .25s ease; }
.industry-item:hover, .industry-item:focus-visible { padding-left: 18px; padding-right: 18px; background: rgba(255, 255, 255, .07); }
.industry-index { color: var(--cyan); font-size: .75rem; font-weight: 900; }
.industry-item > span:nth-child(2) { display: grid; color: rgba(255, 255, 255, .6); font-size: .81rem; }
.industry-item strong { color: var(--white); font-size: 1.06rem; }
.industry-arrow { text-align: right; font-size: 1.3rem; color: var(--yellow); }

.why { background: #f7fafc; }
.why-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
.why-image { position: relative; min-height: 650px; }
.why-image img { width: calc(100% - 45px); height: 100%; min-height: 650px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow-lg); }
.why-image::before { content: ""; position: absolute; right: 0; top: 45px; bottom: -35px; width: 78%; border: 2px solid var(--cyan); border-radius: 24px; z-index: 0; }
.why-image img, .why-image-caption { position: relative; z-index: 1; }
.why-image-caption { position: absolute; right: 0; bottom: 50px; width: 270px; padding: 22px; border-radius: 16px; background: var(--white); box-shadow: var(--shadow-lg); }
.why-image-caption span { display: block; color: var(--blue); font-size: .72rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.why-image-caption strong { display: block; margin-top: 7px; font-size: .95rem; line-height: 1.45; }
.why-intro { margin: 25px 0 34px; color: var(--muted); font-size: 1.03rem; }
.feature-list { display: grid; gap: 22px; }
.feature-list article { display: grid; grid-template-columns: 55px 1fr; gap: 17px; }
.feature-icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; color: var(--blue); background: rgba(13, 127, 196, .09); }
.feature-icon svg { width: 25px; height: 25px; }
.feature-list h3 { margin: 0 0 4px; font-size: 1.04rem; color: var(--navy-deep); }
.feature-list p { margin: 0; color: var(--muted); font-size: .87rem; }
.certification { display: flex; align-items: center; gap: 18px; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.certification img { width: 130px; flex: 0 0 auto; }
.certification p { display: grid; margin: 0; }
.certification strong { color: var(--navy); font-size: .92rem; }
.certification span { color: var(--muted); font-size: .77rem; }

.process { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.process-grid::before { content: ""; position: absolute; left: 12.5%; right: 12.5%; top: 63px; border-top: 1px dashed #aec3d2; }
.process-step { position: relative; z-index: 1; padding: 0 25px; text-align: center; }
.step-number { display: block; margin-bottom: 13px; color: var(--blue); font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.step-icon { display: grid; place-items: center; width: 74px; height: 74px; margin: 0 auto 22px; border-radius: 50%; background: var(--white); color: var(--navy); border: 1px solid #cbd9e3; box-shadow: 0 0 0 10px var(--white); transition: background .2s ease, color .2s ease, transform .2s ease; }
.process-step:hover .step-icon { transform: translateY(-5px); background: var(--navy); color: var(--white); }
.step-icon svg { width: 30px; height: 30px; }
.process-step h3 { margin: 0 0 8px; color: var(--navy-deep); font-size: 1.05rem; }
.process-step p { margin: 0; color: var(--muted); font-size: .84rem; }

.contact { color: var(--white); background: linear-gradient(135deg, var(--navy-darker), var(--navy) 65%, #075b8e); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: center; }
.contact h2 { color: var(--white); }
.contact-copy > p:not(.eyebrow) { color: rgba(255, 255, 255, .7); margin: 24px 0 30px; }
.contact-options { display: grid; gap: 12px; }
.contact-options a { display: flex; align-items: center; gap: 14px; width: fit-content; }
.contact-option-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; color: var(--white); background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .16); }
.contact-option-icon svg { width: 21px; height: 21px; }
.contact-options a > span:last-child { display: grid; }
.contact-options small { color: rgba(255, 255, 255, .55); }
.contact-options strong { font-size: .94rem; }
.contact address { margin-top: 32px; color: rgba(255, 255, 255, .62); font-style: normal; font-size: .87rem; }
.contact-form-card { padding: 38px; color: var(--ink); background: var(--white); border-radius: 24px; box-shadow: 0 30px 70px rgba(0, 0, 0, .22); }
.form-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 26px; }
.form-head h3 { margin: 0; color: var(--navy-deep); font-size: 1.45rem; }
.form-head p { margin: 0; color: var(--muted); font-size: .73rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid label, .privacy-check { display: grid; gap: 7px; }
.form-grid label > span { color: #405464; font-size: .76rem; font-weight: 800; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; border: 1px solid #d4dfe6; border-radius: 10px; background: #fbfcfd; color: var(--ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.form-grid input, .form-grid select { min-height: 49px; padding: 0 13px; }
.form-grid textarea { resize: vertical; padding: 13px; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(13, 127, 196, .09); }
.form-grid input.invalid, .form-grid select.invalid { border-color: #dc3f4e; box-shadow: 0 0 0 4px rgba(220, 63, 78, .08); }
.form-full { grid-column: 1 / -1; }
.privacy-check { grid-template-columns: auto 1fr; align-items: start; gap: 9px; margin: 17px 0; color: var(--muted); font-size: .73rem; }
.privacy-check input { margin-top: 3px; accent-color: var(--navy); }
.form-submit { width: 100%; border: 0; }
.form-note { margin: 10px 0 0; text-align: center; color: #85919b; font-size: .69rem; }

.site-footer { padding: 75px 0 25px; color: rgba(255, 255, 255, .65); background: #021b2e; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 65px; }
.footer-brand img { width: 175px; margin-bottom: 15px; }
.footer-brand p { max-width: 330px; margin: 0; font-size: .85rem; }
.site-footer h3 { margin: 0 0 17px; color: var(--white); font-size: .86rem; }
.site-footer a { display: block; width: fit-content; margin: 8px 0; font-size: .82rem; transition: color .2s ease; }
.site-footer a:hover { color: var(--white); }
.site-footer div > p { font-size: .82rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .74rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 25px; }
.footer-bottom a { display: inline-block; margin: 0; }

.mobile-contact-bar { display: none; }
.toast { position: fixed; z-index: 500; right: 25px; bottom: 25px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; width: min(430px, calc(100% - 30px)); padding: 17px 18px; color: var(--ink); background: var(--white); border-radius: 15px; box-shadow: 0 22px 60px rgba(3, 35, 61, .25); transform: translateY(140%); opacity: 0; transition: transform .3s ease, opacity .3s ease; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: var(--white); background: var(--green); font-weight: 900; }
.toast > span:nth-child(2) { display: grid; color: var(--muted); font-size: .78rem; }
.toast strong { color: var(--ink); font-size: .86rem; }
.toast button { border: 0; background: transparent; color: #7d8992; font-size: 1.3rem; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.js .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: 150px 1fr auto; gap: 18px; }
  .site-nav { gap: 18px; }
  .site-nav a { font-size: .85rem; }
  .hero-grid { gap: 45px; }
  .hero-visual { min-height: 550px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-featured { grid-row: span 2; }
  .why-grid, .contact-grid { gap: 55px; }
  .industries-grid { gap: 60px; }
}

@media (max-width: 900px) {
  .section-pad { padding: 82px 0; }
  .topbar p { display: none; }
  .topbar-inner { justify-content: center; }
  .header-inner { min-height: 76px; grid-template-columns: 140px 1fr 46px; }
  .brand { height: 62px; }
  .brand img { width: 130px; }
  .menu-button { display: block; grid-column: 3; }
  .header-cta { justify-self: end; grid-column: 2; grid-row: 1; }
  .site-nav { position: fixed; inset: 109px 0 auto; height: calc(100vh - 109px); padding: 36px 25px; display: flex; flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 0; background: var(--white); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s ease, visibility .25s ease; }
  body.banner-closed .site-nav { top: 76px; height: calc(100vh - 76px); }
  .site-nav.open { opacity: 1; visibility: visible; pointer-events: auto; }
  .site-nav a { padding: 16px 6px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .menu-button.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button.active span:nth-child(2) { opacity: 0; }
  .menu-button.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 45px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; padding-bottom: 0; }
  .eyebrow, .hero-actions, .hero-benefits { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-form-note { margin-inline: auto; }
  .hero-visual { width: min(680px, 100%); margin-inline: auto; min-height: 540px; }
  .hero-image-wrap { inset: 5px 30px 20px; }
  .floating-card-top { left: 5px; }
  .floating-card-bottom { right: 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .industries-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .industries-copy { text-align: center; }
  .industries-copy .eyebrow { justify-content: center; }
  .industries-copy > p:not(.eyebrow) { margin-inline: auto; }
  .why-image { width: min(650px, 100%); margin-inline: auto; }
  .why-copy { max-width: 700px; margin-inline: auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 45px 0; }
  .process-grid::before { display: none; }
  .contact-copy { text-align: center; }
  .contact-copy .eyebrow { justify-content: center; }
  .contact-options a { margin-inline: auto; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 68px 0; }
  .demo-banner { font-size: .63rem; }
  .topbar { display: none; }
  .header-inner { grid-template-columns: 118px 1fr 42px; min-height: 70px; }
  .brand { width: 115px; height: 56px; }
  .brand img { width: 112px; }
  .header-cta { display: none; }
  .site-nav { inset: 102px 0 auto; height: calc(100vh - 102px); }
  body.banner-closed .site-nav { inset: 70px 0 auto; height: calc(100vh - 70px); }
  .hero { padding-top: 38px; padding-bottom: 55px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-lead { font-size: 1rem; line-height: 1.65; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-form-note { max-width: 310px; text-align: center; }
  .hero-benefits { display: grid; text-align: left; width: fit-content; margin-inline: auto; }
  .hero-visual { min-height: 440px; }
  .hero-image-wrap { inset: 15px 10px 20px; border-radius: 90px 18px 90px 18px; }
  .hero-label { left: 20px; right: 20px; bottom: 20px; }
  .floating-card-top { top: 0; left: -3px; padding: 12px 15px; }
  .floating-card-bottom { right: -3px; bottom: 15px; padding: 12px 14px; }
  .floating-card-bottom > span:last-child { display: none; }
  .trust-item { padding: 22px 16px; text-align: center; }
  .trust-item strong { font-size: 1.05rem; }
  .trust-item span { font-size: .73rem; }
  .section-heading h2, .industries h2, .why h2, .contact h2 { font-size: 2.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-featured { min-height: 510px; grid-row: auto; }
  .service-card { min-height: 300px; }
  .extra-services { align-items: flex-start; flex-direction: column; gap: 12px; }
  .industries-grid { gap: 45px; }
  .industry-item { grid-template-columns: 34px 1fr 20px; padding-block: 20px; }
  .why-image { min-height: 490px; }
  .why-image img { width: calc(100% - 20px); min-height: 490px; }
  .why-image::before { top: 20px; bottom: -20px; }
  .why-image-caption { right: 0; bottom: 25px; width: 230px; padding: 17px; }
  .certification { align-items: flex-start; }
  .certification img { width: 100px; }
  .process-grid { grid-template-columns: 1fr; gap: 38px; }
  .process-step { max-width: 360px; margin-inline: auto; }
  .contact-grid { gap: 45px; }
  .contact-form-card { padding: 25px 19px; border-radius: 18px; }
  .form-head { align-items: flex-start; flex-direction: column; gap: 5px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .mobile-contact-bar { position: fixed; z-index: 150; left: 10px; right: 10px; bottom: 10px; display: grid; grid-template-columns: repeat(3, 1fr); min-height: 62px; color: var(--white); background: rgba(3, 35, 61, .96); border: 1px solid rgba(255, 255, 255, .12); border-radius: 16px; box-shadow: 0 15px 45px rgba(3, 35, 61, .38); backdrop-filter: blur(16px); }
  .mobile-contact-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; border-left: 1px solid rgba(255, 255, 255, .1); font-size: .65rem; font-weight: 700; }
  .mobile-contact-bar a:first-child { border-left: 0; }
  .mobile-contact-bar svg { width: 20px; height: 20px; }
  .site-footer { padding-bottom: 105px; }
  .toast { right: 15px; bottom: 86px; }
}

/* ===== Kontaktformular: klare Abstände, Statusmeldungen und Spam-Falle ===== */
.form-submit {
  margin-top: 20px;
}

.contact-form-card .form-submit,
.contact-form-card .form-submit .form-submit-label,
.contact-form-card .form-submit > span {
  color: #fff !important;
}

.form-submit:disabled {
  cursor: wait;
  opacity: .72;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  margin: 16px 0 0;
  padding: 13px 15px;
  border: 1px solid #b9dcc8;
  border-radius: 11px;
  color: #174b2d !important;
  background: #eef8f2;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}

.form-status.is-error {
  border-color: #e0b6b6;
  color: #741818 !important;
  background: #fff1f1;
}

.form-status.is-preview {
  border-color: #d8c786;
  color: #574600 !important;
  background: #fff9df;
}

.form-status[hidden] {
  display: none;
}

body:has(.contact:target) .whatsapp-float {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 650px) {
  .form-submit {
    margin-top: 18px;
  }
}

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


/* ===== Version 2: größere Marke, klickbare Leistungen und Farbvergleich ===== */
html[data-theme="fresh"] {
  --navy: #0b5c56;
  --navy-deep: #073f3b;
  --navy-darker: #032d2a;
  --blue: #109b92;
  --cyan: #42c7bd;
  --green: #78ad3e;
  --yellow: #f0c44b;
  --pink: #e96d5e;
  --ink: #15312f;
  --muted: #5c706e;
  --line: #dbe8e5;
  --surface: #f0f7f5;
  --shadow-sm: 0 10px 30px rgba(11, 92, 86, .09);
  --shadow-lg: 0 25px 70px rgba(3, 45, 42, .18);
}
html[data-theme="fresh"] .hero { background: linear-gradient(135deg, #f6fbf9 0%, #eaf5f1 62%, #fff 100%); }
html[data-theme="fresh"] .contact { background: linear-gradient(135deg, var(--navy-darker), var(--navy) 65%, #0b756d); }
html[data-theme="fresh"] .site-footer { background: #022522; }
html[data-theme="fresh"] .mobile-contact-bar { background: rgba(3, 45, 42, .96); }
html[data-theme="fresh"] .service-card-featured {
  background: linear-gradient(170deg, rgba(11, 92, 86, .28), rgba(3, 45, 42, .96)), url("assets/cereni-glasreinigung.webp") center / cover;
}
html[data-theme="fresh"] .service-card-featured:hover {
  background: linear-gradient(170deg, rgba(11, 92, 86, .18), rgba(3, 45, 42, .96)), url("assets/cereni-glasreinigung.webp") center / cover;
}

.demo-banner { flex-wrap: wrap; }
.theme-switcher { display: inline-flex; align-items: center; gap: 6px; padding: 3px; border-radius: 999px; background: rgba(255,255,255,.16); }
.theme-switcher > span { margin: 0 4px 0 7px; font-size: .66rem; letter-spacing: .05em; }
.theme-switcher button { display: inline-flex; align-items: center; gap: 6px; min-height: 25px; padding: 0 10px; border: 0; border-radius: 999px; color: rgba(255,255,255,.82); background: transparent; font-size: .68rem; font-weight: 850; text-transform: none; letter-spacing: 0; transition: background .2s ease, color .2s ease; }
.theme-switcher button[aria-pressed="true"] { color: var(--navy-deep); background: var(--white); }
.swatch { width: 10px; height: 10px; border-radius: 50%; box-shadow: 0 0 0 1px rgba(255,255,255,.6); }
.swatch-blue { background: #0d7fc4; }
.swatch-fresh { background: #109b92; }

.header-inner { min-height: 108px; grid-template-columns: 230px 1fr auto; }
.brand { width: 220px; height: 96px; overflow: visible; }
.brand img { width: 218px; height: auto; max-height: none; object-fit: contain; transform: none; transform-origin: center; }

.service-card { cursor: pointer; }
.service-card-link { position: static; z-index: 2; }
.service-card-link::after { content: ""; position: absolute; z-index: 5; inset: 0; }
.service-card:focus-within { background: var(--white); border-color: var(--blue); box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue) 14%, transparent), var(--shadow-sm); transform: translateY(-5px); }
.service-card-link:focus-visible { outline: none; }
.site-nav a.active { color: var(--navy); }
.site-nav a.active::after { right: 0; }

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: 195px 1fr auto; }
  .brand { width: 190px; }
  .brand img { width: 188px; }
}
@media (max-width: 900px) {
  .header-inner { min-height: 88px; grid-template-columns: 185px 1fr 46px; }
  .brand { width: 180px; height: 78px; }
  .brand img { width: 178px; height: auto; max-height: none; }
  .site-nav { inset: 121px 0 auto; height: calc(100vh - 121px); }
  body.banner-closed .site-nav { top: 88px; height: calc(100vh - 88px); }
}
@media (max-width: 650px) {
  .demo-banner { gap: 8px 12px; padding-block: 7px; }
  .demo-banner > span { display: none; }
  .theme-switcher > span { display: none; }
  .header-inner { grid-template-columns: 154px 1fr 42px; min-height: 78px; }
  .brand { width: 150px; height: 68px; }
  .brand img { width: 148px; height: auto; max-height: none; }
  .site-nav { inset: 117px 0 auto; height: calc(100vh - 117px); }
  body.banner-closed .site-nav { inset: 78px 0 auto; height: calc(100vh - 78px); }
}

/* ===== Version 3: Schwarz-Variante im Stil der ursprünglichen Marke ===== */
html[data-theme="black"] {
  --navy: #151515;
  --navy-deep: #080808;
  --navy-darker: #000000;
  --blue: #151515;
  --cyan: #11a4d7;
  --green: #55a640;
  --yellow: #f1cf00;
  --pink: #ef4b69;
  --ink: #151515;
  --muted: #686868;
  --line: #ddddda;
  --surface: #f2f2ef;
  --white: #ffffff;
  --shadow-sm: 0 12px 34px rgba(0, 0, 0, .09);
  --shadow-lg: 0 28px 75px rgba(0, 0, 0, .22);
}

html[data-theme="black"] .demo-banner { background: #1b1b1b; }
html[data-theme="black"] .topbar { background: #000; }
html[data-theme="black"] .site-header {
  color: #fff;
  background: rgba(8, 8, 8, .96);
  border-bottom-color: rgba(255, 255, 255, .11);
}
html[data-theme="black"] .site-header.scrolled { box-shadow: 0 12px 38px rgba(0, 0, 0, .28); }
.brand-logo-dark { display: none; }
html[data-theme="black"] .brand-logo-light { display: none; }
html[data-theme="black"] .brand-logo-dark { display: block; }
html[data-theme="black"] .site-nav a { color: rgba(255, 255, 255, .76); }
html[data-theme="black"] .site-nav a:hover,
html[data-theme="black"] .site-nav a.active { color: #fff; }
html[data-theme="black"] .site-nav a::after { background: linear-gradient(90deg, var(--pink), var(--yellow), var(--green), var(--cyan)); }
html[data-theme="black"] .menu-button span:not(.sr-only) { background: #fff; }
html[data-theme="black"] .header-cta { background: #fff; color: #080808; box-shadow: none; }
html[data-theme="black"] .header-cta:hover { color: #080808; background: var(--yellow); }

html[data-theme="black"] .hero {
  color: #fff;
  background:
    radial-gradient(circle at 17% 18%, rgba(255,255,255,.07), transparent 29%),
    linear-gradient(135deg, #050505 0%, #111 58%, #1a1a1a 100%);
}
html[data-theme="black"] .hero h1 { color: #fff; }
html[data-theme="black"] .hero h1 em { color: #fff; }
html[data-theme="black"] .hero-lead { color: rgba(255, 255, 255, .68); }
html[data-theme="black"] .hero-form-note { color: rgba(255, 255, 255, .64); }
html[data-theme="black"] .hero .eyebrow { color: rgba(255, 255, 255, .76); }
html[data-theme="black"] .hero-benefits { color: rgba(255, 255, 255, .76); }
html[data-theme="black"] .hero-benefits svg { color: #0a0a0a; background: var(--yellow); }
html[data-theme="black"] .hero .button-primary { color: #090909; background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.24); }
html[data-theme="black"] .hero .button-primary:hover { background: var(--yellow); }
html[data-theme="black"] .hero .button-secondary { color: #fff; border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.04); }
html[data-theme="black"] .hero .button-secondary:hover { border-color: #fff; background: rgba(255,255,255,.1); }
html[data-theme="black"] .hero-image-wrap { border: 1px solid rgba(255,255,255,.13); box-shadow: 0 30px 90px rgba(0,0,0,.48); }
html[data-theme="black"] .hero-image-wrap img { filter: saturate(.78) contrast(1.05); }
html[data-theme="black"] .hero-overlay { background: linear-gradient(to top, rgba(0,0,0,.82), transparent 58%); }
html[data-theme="black"] .hero-decoration-one { border-color: rgba(255,255,255,.035); }
html[data-theme="black"] .hero-decoration-two { background: rgba(242,207,0,.11); }
html[data-theme="black"] .floating-card { border-color: rgba(255,255,255,.15); box-shadow: 0 22px 60px rgba(0,0,0,.34); }
html[data-theme="black"] .floating-card-top strong { color: #111; }

html[data-theme="black"] .trust-strip { color: #fff; background: #0a0a0a; border-color: rgba(255,255,255,.1); }
html[data-theme="black"] .trust-item { border-color: rgba(255,255,255,.1); }
html[data-theme="black"] .trust-item strong { color: #fff; }
html[data-theme="black"] .trust-item span { color: rgba(255,255,255,.55); }

html[data-theme="black"] .button-primary { background: #111; color: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.18); }
html[data-theme="black"] .button-primary:hover { background: #2a2a2a; box-shadow: 0 13px 30px rgba(0,0,0,.22); }
html[data-theme="black"] .button-secondary { color: #111; border-color: #a9a9a5; }
html[data-theme="black"] .eyebrow { color: #1d1d1d; }
html[data-theme="black"] .service-icon { color: #111; }
html[data-theme="black"] .service-card-featured {
  background: linear-gradient(170deg, rgba(0,0,0,.16), rgba(0,0,0,.94)), url("assets/cereni-glasreinigung.webp") center / cover;
}
html[data-theme="black"] .service-card-featured:hover {
  background: linear-gradient(170deg, rgba(0,0,0,.08), rgba(0,0,0,.94)), url("assets/cereni-glasreinigung.webp") center / cover;
}
html[data-theme="black"] .service-card:focus-within { border-color: #111; box-shadow: 0 0 0 4px rgba(0,0,0,.08), var(--shadow-sm); }
html[data-theme="black"] .industries { background: #080808; }
html[data-theme="black"] .industry-item:hover,
html[data-theme="black"] .industry-item:focus-visible { background: rgba(255,255,255,.085); }
html[data-theme="black"] .why { background: #f5f5f2; }
html[data-theme="black"] .why-image::before { border-color: #151515; }
html[data-theme="black"] .why-image-caption span { color: #151515; }
html[data-theme="black"] .step-icon { color: #111; }
html[data-theme="black"] .process-step:hover .step-icon { background: #111; }
html[data-theme="black"] .contact { background: linear-gradient(135deg, #000, #111 65%, #242424); }
html[data-theme="black"] .contact-form-card::before,
html[data-theme="black"] .detail-summary::before { background: linear-gradient(90deg, var(--pink), var(--yellow), var(--green), var(--cyan)); }
html[data-theme="black"] .site-footer { background: #000; }
html[data-theme="black"] .mobile-contact-bar { background: rgba(0,0,0,.96); }
html[data-theme="black"] .toast-icon { background: #111; }
html[data-theme="black"] .theme-switcher button[aria-pressed="true"] { color: #090909; }
.swatch-black { background: #090909; }

@media (max-width: 900px) {
  html[data-theme="black"] .site-nav { background: #090909; }
  html[data-theme="black"] .site-nav a { border-bottom-color: rgba(255,255,255,.12); }
}

/* ===== Version 4: optimiertes Logo, Premium-Header und Leistungsmenü ===== */
[id] { scroll-margin-top: 125px; }

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--yellow), var(--green), var(--cyan), #1677bb);
  opacity: .8;
  pointer-events: none;
}

.header-inner {
  min-height: 116px;
  grid-template-columns: 225px 1fr auto;
  gap: 30px;
  transition: min-height .25s ease;
}

.brand {
  display: flex;
  width: 212px;
  height: auto;
  padding: 7px 0 5px;
  overflow: visible;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.brand-mark {
  position: relative;
  display: block;
  width: 205px;
  height: 97px;
  flex: 0 0 auto;
  transition: width .25s ease, height .25s ease;
}

.brand-mark .brand-logo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-height: none;
  object-fit: contain;
  object-position: left center;
  transform: none !important;
}

.brand-subline {
  margin: -8px 0 0 3px;
  color: #495863;
  font-size: .57rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .19em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity .2s ease;
}

html[data-theme="black"] .brand-subline { color: rgba(255,255,255,.58); }

.site-header.scrolled .header-inner { min-height: 88px; }
.site-header.scrolled .brand { padding-block: 4px; }
.site-header.scrolled .brand-mark { width: 170px; height: 80px; }
.site-header.scrolled .brand-subline { opacity: 0; height: 0; margin: -10px 0 0; overflow: hidden; }

.site-nav { overflow: visible; }
.site-nav > a,
.nav-dropdown > summary {
  min-height: 42px;
  display: flex;
  align-items: center;
}

.nav-dropdown {
  position: relative;
  color: inherit;
}

.nav-dropdown > summary {
  position: relative;
  gap: 6px;
  color: #31485a;
  font-size: .93rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown > summary::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transition: right .25s ease;
}
.nav-dropdown[open] > summary::after,
.nav-dropdown > summary:hover::after { right: 0; }
.nav-dropdown > summary:hover,
.nav-dropdown[open] > summary { color: var(--navy); }

.nav-chevron {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  margin-top: -2px;
  font-size: .9rem;
  line-height: 1;
  transition: transform .2s ease;
}
.nav-dropdown[open] .nav-chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  z-index: 120;
  top: calc(100% + 15px);
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, minmax(235px, 1fr));
  gap: 5px;
  width: min(660px, 80vw);
  padding: 12px;
  color: var(--ink);
  background: rgba(255,255,255,.985);
  border: 1px solid rgba(20,20,20,.1);
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0,0,0,.22);
  transform: translateX(-42%);
  overflow: hidden;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--yellow), var(--green), var(--cyan));
}

.site-nav .nav-dropdown-menu a {
  display: grid;
  gap: 1px;
  min-height: 62px;
  margin: 0;
  padding: 11px 13px;
  color: #222;
  border-radius: 11px;
  transition: background .18s ease, transform .18s ease;
}
.site-nav .nav-dropdown-menu a::after { display: none; }
.site-nav .nav-dropdown-menu a:hover {
  color: #0b0b0b;
  background: #f1f1ee;
  transform: translateX(2px);
}
.nav-dropdown-menu strong { font-size: .84rem; line-height: 1.3; }
.nav-dropdown-menu small { color: #767b7d; font-size: .67rem; line-height: 1.35; }
.nav-dropdown-menu .nav-overview {
  color: #fff !important;
  background: #101010;
}
.nav-dropdown-menu .nav-overview:hover { color: #fff; background: #242424; }
.nav-dropdown-menu .nav-overview small { color: rgba(255,255,255,.62); }

html[data-theme="black"] .nav-dropdown > summary { color: rgba(255,255,255,.76); }
html[data-theme="black"] .nav-dropdown > summary:hover,
html[data-theme="black"] .nav-dropdown[open] > summary { color: #fff; }
html[data-theme="black"] .nav-dropdown > summary::after {
  background: linear-gradient(90deg, var(--pink), var(--yellow), var(--green), var(--cyan));
}

.header-cta::after {
  content: "→";
  font-size: 1rem;
  transition: transform .2s ease;
}
.header-cta:hover::after { transform: translateX(3px); }

/* Refined black presentation: calmer surfaces and clearer card hierarchy. */
html[data-theme="black"] .services { background: #f4f4f1; }
html[data-theme="black"] .service-card:not(.service-card-featured) {
  background: #fff;
  border-color: #e4e4df;
  box-shadow: 0 8px 24px rgba(0,0,0,.035);
}
html[data-theme="black"] .service-card:not(.service-card-featured)::before {
  opacity: .38;
  transform: scaleX(1);
}
html[data-theme="black"] .service-card:not(.service-card-featured):hover::before { opacity: 1; }
html[data-theme="black"] .service-card:not(.service-card-featured):hover {
  border-color: #cdcdc7;
  box-shadow: 0 20px 46px rgba(0,0,0,.10);
}
html[data-theme="black"] .service-card a span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #111;
  font-size: 1.05rem;
}
html[data-theme="black"] .service-card-featured a span {
  color: #111;
  background: #fff;
}
html[data-theme="black"] .service-card:hover a span { transform: translateX(4px); }

.contact-form-card { position: relative; overflow: hidden; }
.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--pink), var(--yellow), var(--green), var(--cyan));
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid color-mix(in srgb, var(--cyan) 72%, white);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: 192px 1fr auto; gap: 20px; }
  .brand { width: 184px; }
  .brand-mark { width: 178px; height: 84px; }
  .site-nav { gap: 17px; }
  .site-nav > a, .nav-dropdown > summary { font-size: .83rem; }
  .nav-dropdown-menu { transform: translateX(-34%); }
}

@media (max-width: 900px) {
  [id] { scroll-margin-top: 96px; }
  .header-inner {
    min-height: 92px;
    grid-template-columns: 174px 1fr 46px;
  }
  .brand { width: 168px; padding-block: 4px; }
  .brand-mark { width: 164px; height: 77px; }
  .brand-subline { display: none; }
  .site-header.scrolled .header-inner { min-height: 78px; }
  .site-header.scrolled .brand-mark { width: 145px; height: 68px; }

  .site-nav { inset: 125px 0 auto; height: calc(100vh - 125px); overflow-y: auto; }
  body.banner-closed .site-nav { top: 92px; height: calc(100vh - 92px); }
  .site-nav > a,
  .nav-dropdown > summary {
    min-height: 0;
    width: 100%;
    padding: 16px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .nav-dropdown { width: 100%; }
  .nav-dropdown > summary { justify-content: space-between; }
  .nav-dropdown > summary::after { display: none; }
  .nav-dropdown-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 8px 0 13px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    background: transparent;
  }
  .nav-dropdown-menu::before { display: none; }
  .site-nav .nav-dropdown-menu a {
    min-height: 52px;
    padding: 10px 14px;
    border-bottom: 0;
    background: rgba(10,10,10,.035);
  }
  html[data-theme="black"] .site-nav .nav-dropdown-menu a {
    color: rgba(255,255,255,.86);
    background: rgba(255,255,255,.055);
  }
  html[data-theme="black"] .site-nav .nav-dropdown-menu a:hover { color: #fff; background: rgba(255,255,255,.10); }
  html[data-theme="black"] .site-nav .nav-dropdown-menu small { color: rgba(255,255,255,.5); }
  html[data-theme="black"] .site-nav .nav-dropdown-menu .nav-overview { background: #fff; color: #111 !important; }
  html[data-theme="black"] .site-nav .nav-dropdown-menu .nav-overview small { color: #747474; }
}

@media (max-width: 650px) {
  [id] { scroll-margin-top: 80px; }
  .header-inner {
    min-height: 76px;
    grid-template-columns: 142px 1fr 42px;
  }
  .brand { width: 138px; }
  .brand-mark { width: 136px; height: 64px; }
  .site-header.scrolled .header-inner { min-height: 70px; }
  .site-header.scrolled .brand-mark { width: 126px; height: 59px; }
  .site-nav { inset: 111px 0 auto; height: calc(100vh - 111px); }
  body.banner-closed .site-nav { inset: 76px 0 auto; height: calc(100vh - 76px); }
  .theme-switcher button { padding-inline: 8px; }
}

/* Explicit logo visibility after the version-4 sizing overrides. */
.brand-mark .brand-logo-light { display: block; }
.brand-mark .brand-logo-dark { display: none; }
html[data-theme="black"] .brand-mark .brand-logo-light { display: none; }
html[data-theme="black"] .brand-mark .brand-logo-dark { display: block; }

/* Final optical alignment of the wordmark and hero typography. */
.header-inner { min-height: 121px; }
.brand { gap: 2px; }
.brand-subline {
  margin: 0 0 0 3px;
  font-size: .52rem;
  letter-spacing: .14em;
}
.hero-grid { grid-template-columns: 1.12fr .88fr; gap: 62px; }
.hero h1 { max-width: 720px; font-size: clamp(3rem, 5.25vw, 5.1rem); }
.hero-line { display: block; }

@media (max-width: 1100px) {
  .header-inner { min-height: 104px; }
  .hero-grid { grid-template-columns: 1.06fr .94fr; gap: 42px; }
  .brand-subline { font-size: .47rem; }
}
@media (max-width: 900px) {
  .header-inner { min-height: 92px; }
  .hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 650px) {
  .header-inner { min-height: 76px; }
  .hero h1 { font-size: clamp(2.45rem, 12.2vw, 3.7rem); }
}

html[data-theme="black"] .site-nav .nav-dropdown-menu a { color: #222; }
html[data-theme="black"] .site-nav .nav-dropdown-menu a:hover { color: #090909; }
html[data-theme="black"] .site-nav .nav-dropdown-menu small { color: #74797b; }
html[data-theme="black"] .site-nav .nav-dropdown-menu .nav-overview { color: #fff !important; }
html[data-theme="black"] .site-nav .nav-dropdown-menu .nav-overview small { color: rgba(255,255,255,.64); }

@media (max-width: 900px) {
  html[data-theme="black"] .site-nav .nav-dropdown-menu a { color: rgba(255,255,255,.86); }
  html[data-theme="black"] .site-nav .nav-dropdown-menu small { color: rgba(255,255,255,.5); }
  html[data-theme="black"] .site-nav .nav-dropdown-menu .nav-overview { color: #111 !important; }
  html[data-theme="black"] .site-nav .nav-dropdown-menu .nav-overview small { color: #747474; }
}


/* ===== Version 5: optimierter Footer-Markenauftritt ===== */
.footer-brand {
  align-self: start;
}
.footer-logo-lockup {
  position: relative;
  display: inline-flex !important;
  flex-direction: column;
  align-items: flex-start;
  width: min(250px, 100%);
  margin: 0 0 22px !important;
  padding: 0 0 17px;
  color: var(--white) !important;
}
.footer-logo-lockup::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ef4969 0 20%, #efcb00 20% 40%, #55a640 40% 60%, #13a4d7 60% 80%, #1679bf 80% 100%);
}
.footer-logo-image {
  display: block;
  width: 242px !important;
  max-width: 100%;
  height: auto;
  margin: 0 !important;
  object-fit: contain;
  object-position: left center;
}
.footer-logo-subline {
  display: block;
  margin-top: 4px;
  padding-left: 2px;
  color: rgba(255, 255, 255, .72);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.25;
  text-transform: uppercase;
}
.footer-brand > p {
  max-width: 350px;
  margin: 0;
  color: rgba(255, 255, 255, .62);
  line-height: 1.75;
}

@media (max-width: 650px) {
  .footer-logo-lockup { width: min(225px, 100%); }
  .footer-logo-image { width: 218px !important; }
  .footer-logo-subline { font-size: .61rem; letter-spacing: .15em; }
}


/* ===== Version 6: stabiler Footer-Logo-Fix ===== */
.footer-grid {
  align-items: start;
}
.footer-brand {
  min-width: 0;
}
.footer-logo-lockup {
  width: min(220px, 100%) !important;
  max-width: 220px;
  min-height: 0;
}
.footer-logo-image,
.footer-brand .footer-logo-image,
.site-footer .footer-logo-image {
  display: block !important;
  width: 220px !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 104px !important;
  aspect-ratio: 985 / 464;
  object-fit: contain !important;
  object-position: left center !important;
  flex: 0 0 auto;
}
@media (max-width: 650px) {
  .footer-logo-lockup {
    width: min(195px, 100%) !important;
    max-width: 195px;
  }
  .footer-logo-image,
  .footer-brand .footer-logo-image,
  .site-footer .footer-logo-image {
    width: 195px !important;
    max-height: 92px !important;
  }
}

/* ===== Version 7: Kontrast-, Anker- und Lesbarkeits-Audit ===== */
:root {
  --dark-heading: #ffffff;
  --dark-body: rgba(255, 255, 255, .78);
  --dark-muted: rgba(255, 255, 255, .68);
  --dark-label: rgba(255, 255, 255, .88);
  --dark-line: rgba(255, 255, 255, .16);
}

/* Die Sprungmarke bleibt sichtbar, ohne einen großen leeren Streifen zu erzeugen. */
[id] { scroll-margin-top: 22px; }

/* Labels auf dunklen Flächen: der allgemeine Schwarzmodus darf sie nicht abdunkeln. */
html[data-theme="black"] .eyebrow.eyebrow-light,
html[data-theme="black"] .industries .eyebrow,
html[data-theme="black"] .contact .eyebrow,
html[data-theme="black"] .detail-benefits .eyebrow,
html[data-theme="black"] .detail-cta .eyebrow {
  color: var(--dark-label);
}

/* Dunkle Bereiche der Startseite. */
html[data-theme="black"] .industries h2,
html[data-theme="black"] .contact h2 {
  color: var(--dark-heading);
}
html[data-theme="black"] .industries-copy > p:not(.eyebrow),
html[data-theme="black"] .contact-copy > p:not(.eyebrow) {
  color: var(--dark-body);
}
html[data-theme="black"] .industry-item {
  border-bottom-color: var(--dark-line);
}
html[data-theme="black"] .industry-item > span:nth-child(2) {
  color: var(--dark-muted);
}
html[data-theme="black"] .industry-item strong {
  color: var(--dark-heading);
}
html[data-theme="black"] .industry-index {
  color: #28b8ec;
}
html[data-theme="black"] .contact-options small,
html[data-theme="black"] .contact address {
  color: var(--dark-muted);
}
html[data-theme="black"] .contact-options strong {
  color: var(--dark-heading);
}

/* Dunkle Bereiche der Leistungsseiten. */
html[data-theme="black"] .detail-benefits .section-heading h2,
html[data-theme="black"] .detail-cta h2 {
  color: var(--dark-heading);
}
html[data-theme="black"] .benefit-grid p,
html[data-theme="black"] .detail-cta p:not(.eyebrow) {
  color: var(--dark-body);
}
html[data-theme="black"] .benefit-grid article {
  border-color: var(--dark-line);
  background: rgba(255, 255, 255, .075);
}

/* Footer: lesbarer, aber weiterhin dezent. */
html[data-theme="black"] .site-footer {
  color: var(--dark-muted);
}
html[data-theme="black"] .site-footer h3,
html[data-theme="black"] .site-footer strong {
  color: var(--dark-heading);
}
html[data-theme="black"] .site-footer a,
html[data-theme="black"] .footer-brand > p,
html[data-theme="black"] .site-footer div > p {
  color: var(--dark-muted);
}
html[data-theme="black"] .site-footer a:hover,
html[data-theme="black"] .site-footer a:focus-visible {
  color: var(--dark-heading);
}
html[data-theme="black"] .footer-bottom {
  border-top-color: var(--dark-line);
}

/* Aktive Branchenkarte deutlicher und zugleich ruhig markieren. */
html[data-theme="black"] .industry-item:hover,
html[data-theme="black"] .industry-item:focus-visible {
  background: rgba(255, 255, 255, .10);
}

/* Textbreite und Zeilenhöhe verbessern die Lesbarkeit auf großen Monitoren. */
.industries-copy > p:not(.eyebrow) {
  max-width: 510px;
  line-height: 1.75;
}
.industry-item > span:nth-child(2) {
  line-height: 1.5;
}

/* Größere Klickfläche und klarer Tastaturfokus. */
.industry-item { border-radius: 10px; }
.industry-item:focus-visible {
  outline: 3px solid #20aee2;
  outline-offset: 4px;
}

/* Auf kleineren Geräten soll beim Anspringen kein unnötiger Leerraum entstehen. */
@media (max-width: 900px) {
  [id] { scroll-margin-top: 14px; }
}


/* Final publication version: fixed black brand style, no theme switcher or tracking UI. */
.demo-banner, .theme-switcher { display: none !important; }
.brand-subline, .footer-logo-subline { letter-spacing: .14em; }
.quality-note { display:flex; align-items:center; gap:16px; margin-top:34px; padding-top:28px; border-top:1px solid var(--line); }
.quality-note-icon { display:grid; place-items:center; flex:0 0 auto; width:46px; height:46px; border-radius:50%; color:#050505; background:linear-gradient(135deg,var(--yellow),var(--green)); font-weight:950; }
.quality-note p { display:grid; margin:0; }
.quality-note strong { color:var(--navy); font-size:.92rem; }
.quality-note span:last-child { color:var(--muted); font-size:.79rem; }
html[data-theme="black"] .quality-note { border-top-color:rgba(255,255,255,.13); }
html[data-theme="black"] .quality-note strong { color:#fff; }
html[data-theme="black"] .quality-note span:last-child { color:rgba(255,255,255,.68); }

.region-section { background:#f5f5f3; }
.region-grid { display:grid; grid-template-columns:1fr .9fr; gap:80px; align-items:center; }
.region-copy h2, .home-faq h2 { margin:0; color:#101010; font-size:clamp(2.3rem,4vw,4rem); line-height:1.08; letter-spacing:-.045em; }
.region-copy > p:not(.eyebrow), .home-faq .faq-grid > div:first-child > p:not(.eyebrow) { max-width:650px; margin:24px 0 30px; color:#626262; }
.region-card { padding:38px; border:1px solid #dededb; border-radius:22px; background:#fff; box-shadow:0 22px 55px rgba(0,0,0,.08); }
.region-card-kicker { display:block; margin-bottom:20px; color:#5e5e5e; font-size:.75rem; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.region-cities { display:flex; flex-wrap:wrap; gap:10px; }
.region-cities span { padding:9px 14px; border:1px solid #dededb; border-radius:999px; color:#161616; background:#fafafa; font-size:.84rem; font-weight:800; }
.region-card p { margin:22px 0 0; color:#6b6b6b; font-size:.82rem; }

.home-faq { background:#fff; }
.home-faq .faq-grid {
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:100px;
  align-items:start;
}
.faq-list { display:grid; gap:12px; min-width:0; }
.faq-list details { border:1px solid var(--line); border-radius:14px; background:var(--white); }
.faq-list summary {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  padding:20px 22px;
  color:var(--navy-deep);
  font-weight:800;
  cursor:pointer;
  list-style:none;
}
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::marker { content:""; }
.faq-list summary span { flex:0 0 auto; color:var(--blue); font-size:1.35rem; line-height:1; }
.faq-list details[open] summary span { transform:rotate(45deg); }
.faq-list details p { margin:0; padding:0 22px 22px; color:var(--muted); }
.form-privacy-note { margin:17px 0 9px; color:#66727b; font-size:.74rem; line-height:1.55; }
.form-privacy-note a { color:#101010; font-weight:850; text-decoration:underline; text-underline-offset:3px; }
.form-note { margin-top:6px; }

.industry-item { text-decoration:none; }
.industry-item:focus-visible { outline:3px solid #fff; outline-offset:4px; }

@media (max-width:900px) {
  .region-grid { grid-template-columns:1fr; gap:35px; }
  .home-faq .faq-grid { grid-template-columns:1fr; gap:35px; }
  .region-copy { text-align:center; }
  .region-copy .eyebrow { justify-content:center; }
  .region-copy > p:not(.eyebrow) { margin-inline:auto; }
}
@media (max-width:650px) {
  .region-card { padding:26px; }
  .faq-list summary { padding:18px; font-size:.9rem; }
  .faq-list details p { padding:0 18px 19px; font-size:.9rem; }
}


/* Dezenter direkter WhatsApp-Kontakt. Der externe Dienst wird erst nach einem Klick geöffnet. */
.whatsapp-float {
  position: fixed;
  z-index: 420;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 8px 17px 8px 8px;
  color: #fff;
  background: #111;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  box-shadow: 0 16px 45px rgba(0,0,0,.28);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.whatsapp-float:hover {
  color: #fff;
  background: #171717;
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0,0,0,.36);
}
.whatsapp-float:focus-visible {
  outline: 3px solid #25d366;
  outline-offset: 4px;
}
.whatsapp-float-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
}
.whatsapp-float-icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.9;
}
.whatsapp-float-copy {
  display: grid;
  line-height: 1.15;
}
.whatsapp-float-copy strong {
  color: #fff;
  font-size: .84rem;
}
.whatsapp-float-copy small {
  margin-top: 3px;
  color: rgba(255,255,255,.66);
  font-size: .67rem;
}
.contact-option-whatsapp .contact-option-icon {
  color: #fff;
  background: rgba(37,211,102,.17);
  border-color: rgba(37,211,102,.38);
}
.contact-option-whatsapp:hover .contact-option-icon {
  background: #25d366;
}
@media (min-width: 651px) {
  .toast { bottom: 98px; }
}
@media (max-width: 650px) {
  .whatsapp-float { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float { transition: none; }
}

/* ===== Mobile-Optimierung 2026 ===== */
@media (max-width: 900px) {
  html { scroll-padding-top: 96px; }
  [id] { scroll-margin-top: 96px; }

  .site-nav {
    z-index: 120;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .section-heading { margin-bottom: 40px; }
}

@media (max-width: 650px) {
  html { scroll-padding-top: 78px; }
  [id] { scroll-margin-top: 78px; }

  body { font-size: 1rem; }
  .container { width: calc(100% - 32px); }
  .section-pad { padding: 56px 0; }

  /* Kompakter, klarer Header */
  .header-inner {
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 10px;
  }
  .brand {
    grid-column: 1;
    width: 132px;
    min-width: 0;
    padding: 3px 0;
  }
  .brand-mark,
  .site-header.scrolled .brand-mark {
    width: 130px;
    height: 61px;
  }
  .menu-button {
    grid-column: 2;
    justify-self: end;
    width: 48px;
    height: 48px;
    padding: 11px;
    border-radius: 50%;
  }
  .menu-button:active { background: rgba(255, 255, 255, .08); }

  /* Das Menü beginnt direkt unter dem echten Header – ohne leeren Streifen. */
  .site-nav,
  body.banner-closed .site-nav {
    inset: 76px 0 0;
    height: auto;
    padding: 18px 18px calc(30px + env(safe-area-inset-bottom));
  }
  .site-nav > a,
  .nav-dropdown > summary {
    padding: 15px 8px;
    font-size: 1rem;
  }
  .site-nav .nav-dropdown-menu a {
    min-height: 50px;
    padding: 9px 12px;
  }
  .nav-dropdown-menu strong { font-size: .86rem; }
  .nav-dropdown-menu small { font-size: .7rem; }

  /* Im geöffneten Menü und beim Ausfüllen eines Formulars stört die Kontaktleiste nicht. */
  body.menu-open .mobile-contact-bar,
  body.form-focused .mobile-contact-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
  }

  /* Erster Bildschirm: etwas kompakter, ohne gequetscht zu wirken. */
  .hero { padding: 30px 0 44px; }
  .hero-copy { padding: 0; }
  .eyebrow {
    gap: 9px;
    margin-bottom: 15px;
    font-size: .68rem;
    letter-spacing: .11em;
  }
  .eyebrow span { width: 28px; }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11.4vw, 3.25rem);
    line-height: .98;
    letter-spacing: -.052em;
  }
  .hero h1 em::after { height: 5px; bottom: -4px; }
  .hero-lead {
    margin-top: 24px;
    font-size: .98rem;
    line-height: 1.6;
  }
  .hero-actions {
    gap: 11px;
    margin-top: 27px;
  }
  .button-large { min-height: 52px; padding-inline: 21px; }
  .hero-benefits {
    gap: 11px;
    margin-top: 27px;
    font-size: .82rem;
  }
  .hero-benefits li { gap: 7px; }
  .hero-benefits svg { width: 19px; height: 19px; }
  .hero-visual {
    min-height: 390px;
    margin-top: 18px;
  }
  .hero-image-wrap { inset: 12px 5px 15px; }
  .floating-card-top { left: 0; }
  .floating-card-bottom { right: 0; }

  /* Kompaktere Inhaltsblöcke und Karten */
  .section-heading { gap: 13px; margin-bottom: 34px; }
  .section-heading h2,
  .industries h2,
  .why h2,
  .contact h2,
  .region-copy h2,
  .home-faq h2 {
    font-size: clamp(2rem, 9.6vw, 2.45rem);
    line-height: 1.06;
  }
  .section-heading > p { font-size: .96rem; }

  .service-card { min-height: 260px; padding: 24px; }
  .service-card-featured { min-height: 420px; }
  .service-card h3 { font-size: 1.28rem; }
  .service-card p { font-size: .9rem; }

  .trust-item { padding: 20px 12px; }
  .trust-item strong { font-size: 1rem; }

  .industries-grid { gap: 34px; }
  .industry-item {
    grid-template-columns: 30px minmax(0, 1fr) 20px;
    gap: 10px;
    padding: 18px 8px;
  }
  .industry-item strong { font-size: .96rem; }
  .industry-item > span:nth-child(2) { font-size: .78rem; }

  .why-image,
  .why-image img {
    min-height: 390px;
  }
  .why-image img { width: calc(100% - 14px); }
  .why-image-caption { width: min(220px, 75%); }
  .why-list { gap: 15px; }

  .process-grid { gap: 30px; }
  .step-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 17px;
  }

  .region-card { padding: 24px 20px; }
  .region-cities { gap: 8px; }
  .region-cities span { padding: 8px 11px; font-size: .78rem; }

  .contact-grid { gap: 34px; }
  .contact-copy > p:not(.eyebrow) { margin: 18px 0 24px; }
  .contact-form-card { padding: 24px 18px; }
  .form-grid { gap: 15px; }
  .form-grid input,
  .form-grid select { min-height: 52px; }
  .form-grid textarea { min-height: 132px; }

  /* Footer auf kleinen Displays besser lesbar. */
  .site-footer {
    padding-top: 56px;
    padding-bottom: calc(108px + env(safe-area-inset-bottom));
  }
  .footer-grid { gap: 34px 22px; }
  .site-footer h3 { margin-bottom: 13px; font-size: .9rem; }
  .site-footer a,
  .site-footer div > p { font-size: .84rem; line-height: 1.55; }
  .footer-bottom { margin-top: 38px; gap: 14px; }
  .footer-bottom div { flex-wrap: wrap; gap: 13px 20px; }

  /* Schnellkontakt: größere Beschriftung, Safe Area und weiche Übergänge. */
  .mobile-contact-bar {
    left: 8px;
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    min-height: 60px;
    border-radius: 14px;
    transition: opacity .2s ease, transform .25s ease;
  }
  .mobile-contact-bar a {
    min-height: 60px;
    gap: 3px;
    font-size: .7rem;
  }
  .mobile-contact-bar svg { width: 21px; height: 21px; }
  .toast { bottom: calc(82px + env(safe-area-inset-bottom)); }
}

@media (max-width: 370px) {
  .container { width: calc(100% - 26px); }
  .brand { width: 123px; }
  .brand-mark,
  .site-header.scrolled .brand-mark { width: 121px; height: 57px; }
  .hero h1 { font-size: clamp(2.15rem, 11vw, 2.65rem); }
  .hero-lead { font-size: .93rem; }
  .mobile-contact-bar a { font-size: .65rem; }
}

/* Mobile-Menü: wegen des Backdrop-Filters im Header ist eine explizite Viewport-Höhe nötig. */
@media (max-width: 650px) {
  .site-nav,
  body.banner-closed .site-nav {
    inset: 76px 0 auto;
    height: calc(100vh - 76px);
    height: calc(100dvh - 76px);
  }
}

.mobile-menu-cta { display: none !important; }
@media (max-width: 650px) {
  .site-nav .mobile-menu-cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 22px;
    padding: 0 20px;
    color: #111 !important;
    background: #fff;
    border: 0;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
  }
  .site-nav .mobile-menu-cta::after { display: none; }
}


/* ===== WhatsApp-Markenlogo: lokal, unverzerrt und ohne selbst gezeichnete Ersatzgrafik ===== */
.whatsapp-brand-icon {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  flex: 0 0 auto;
}
.whatsapp-float-icon {
  padding: 7px;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(37, 211, 102, .28);
}
.whatsapp-float-icon .whatsapp-brand-icon--float {
  width: 25px;
  height: 29px;
}
.contact-option-whatsapp .contact-option-icon {
  padding: 11px;
  color: inherit;
  background: rgba(255,255,255,.96);
  border-color: rgba(37,211,102,.34);
}
.contact-option-whatsapp:hover .contact-option-icon {
  background: #fff;
  border-color: #25d366;
}
.contact-option-whatsapp .whatsapp-brand-icon--contact {
  width: 23px;
  height: 27px;
}
.mobile-contact-bar .whatsapp-brand-icon--mobile {
  width: 20px;
  height: 23px;
}
@media (max-width: 650px) {
  .mobile-contact-bar .whatsapp-brand-icon--mobile {
    width: 21px;
    height: 24px;
  }
}

/* ===== Desktop-Feinschliff WhatsApp: exakt ausgerichtet, stabil und unverzerrt ===== */
@media (min-width: 651px) {
  .whatsapp-float {
    right: clamp(18px, 2vw, 30px);
    bottom: clamp(18px, 2vw, 30px);
    justify-content: flex-start;
    min-width: 174px;
    min-height: 58px;
    padding: 8px 18px 8px 8px;
    gap: 11px;
    white-space: nowrap;
    transform: none;
  }
  .whatsapp-float:hover {
    transform: none;
    border-color: rgba(37, 211, 102, .42);
    box-shadow: 0 19px 48px rgba(0, 0, 0, .34);
  }
  .whatsapp-float-icon {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    padding: 8px;
    line-height: 0;
  }
  .whatsapp-float-icon .whatsapp-brand-icon--float {
    display: block;
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
    margin: 0;
    object-fit: contain;
    object-position: center;
    transform: none;
  }
  .whatsapp-float-copy {
    min-width: 0;
    align-content: center;
    text-align: left;
  }
}

/* Rechtliche Seiten bleiben bewusst ruhig und ohne schwebende Kontaktflächen. */
.legal-page .site-footer,
.error-page .site-footer {
  padding-bottom: 32px;
}

.form-error-summary {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  padding: 12px 14px;
  color: #7a1010;
  background: #fff1f1;
  border: 1px solid #e7b7b7;
  border-radius: 12px;
  font-size: .82rem;
  font-weight: 800;
}
.form-error-summary[hidden] { display: none; }

/* ===== WhatsApp-Fix v3: optische Zentrierung und kein Überdecken des Footers ===== */
.whatsapp-brand-icon {
  object-position: 50% 50%;
  transform: translateY(-1px);
}
.whatsapp-float-icon .whatsapp-brand-icon--float,
.contact-option-whatsapp .whatsapp-brand-icon--contact,
.mobile-contact-bar .whatsapp-brand-icon--mobile {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

@media (min-width: 651px) {
  .whatsapp-float {
    transition: opacity .18s ease, visibility .18s ease, box-shadow .2s ease, background-color .2s ease;
  }
  .whatsapp-float.is-footer-visible {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  /* Zusätzlicher Freiraum, falls JavaScript deaktiviert ist. */
  .site-footer {
    padding-bottom: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float { transition: none; }
}

/* ===== Version 4: Sichtbarkeits- und Kontrast-Härtung ===== */
/* Helle Inhaltsflächen behalten immer dunkle Schrift – auch im schwarzen Markendesign. */
html[data-theme="black"] .why,
html[data-theme="black"] .services,
html[data-theme="black"] .process,
html[data-theme="black"] .region-section,
html[data-theme="black"] .home-faq,
html[data-theme="black"] .scope-section,
html[data-theme="black"] .faq-section,
html[data-theme="black"] .legal-content {
  color: #151515;
}

/* Qualitätsnotiz liegt in einem hellen Bereich und darf deshalb nicht weiß eingefärbt werden. */
html[data-theme="black"] .why .quality-note {
  border-top-color: #d7d7d2;
}
html[data-theme="black"] .why .quality-note strong {
  color: #151515;
}
html[data-theme="black"] .why .quality-note span:last-child {
  color: #5f6568;
}

/* Kleine Texte und dekorative Nummern erhalten mehr Kontrast. */
.nav-dropdown-menu small,
html[data-theme="black"] .site-nav .nav-dropdown-menu small {
  color: #62686a;
}
.service-card:not(.service-card-featured) .service-number {
  color: #66717a;
}
.service-card-featured .service-number {
  color: rgba(255, 255, 255, .82);
}
.form-note {
  color: #5f6c75;
}
.toast button {
  color: #59636b;
}
.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #66717a;
  opacity: 1;
}

/* Die Häkchen im weißen Leistungs-Kasten bleiben farbig, sind aber klar lesbar. */
html[data-theme="black"] .detail-summary li span {
  color: #1b6f3a;
  background: #eaf6ef;
}

/* Mobile Breiten absichern: kein seitliches Scrollen durch Grid-Inhalte oder lange Wörter. */
.why-grid,
.why-grid > *,
.why-copy,
.why-image,
.feature-list,
.feature-list article,
.feature-list article > div:last-child,
.quality-note,
.quality-note p {
  min-width: 0;
}
.why-image,
.why-copy {
  width: 100%;
  max-width: 100%;
}
.why-copy h2,
.why-copy p,
.feature-list h3,
.feature-list p,
.quality-note strong,
.quality-note span:last-child {
  overflow-wrap: anywhere;
}

/* Explizite Farbzuweisung für alle dunklen Flächen verhindert spätere Weiß-auf-Weiß-Fehler. */
html[data-theme="black"] :is(.hero, .industries, .contact, .detail-hero, .detail-benefits, .detail-cta, .legal-hero, .not-found) :is(h1, h2, h3, strong) {
  color: #ffffff;
}
html[data-theme="black"] :is(.industries, .contact, .detail-benefits, .detail-cta, .legal-hero, .not-found) :is(p, small, address) {
  color: rgba(255, 255, 255, .76);
}
/* Ausnahmen: weiße Karten innerhalb dunkler Bereiche brauchen dunkle Schrift. */
html[data-theme="black"] .contact-form-card,
html[data-theme="black"] .contact-form-card :is(h1, h2, h3, strong, p, small, label, span),
html[data-theme="black"] .detail-summary,
html[data-theme="black"] .detail-summary :is(h1, h2, h3, strong, p, small, li, a) {
  color: #151515;
}
html[data-theme="black"] .contact-form-card .form-head p,
html[data-theme="black"] .contact-form-card .form-privacy-note,
html[data-theme="black"] .contact-form-card .form-note {
  color: #5f6c75;
}

@media (max-width: 650px) {
  .why-image-caption {
    right: 0;
    max-width: calc(100% - 12px);
  }
  .feature-list article {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
  }
  .quality-note {
    align-items: flex-start;
  }
}

/* --- V5 overlap and visibility audit fixes --- */
.hero-visual { overflow: visible; }
.hero-label {
  align-items: flex-start;
}
.hero-label span:last-child {
  line-height: 1.42;
}
.floating-card-bottom {
  max-width: 272px;
}
.floating-card-bottom > span:last-child {
  line-height: 1.4;
}

@media (min-width: 1100px) {
  .hero-label {
    left: 34px;
    right: auto;
    bottom: 28px;
    max-width: 315px;
  }
  .floating-card-top {
    top: 42px;
    left: -6px;
  }
  .floating-card-bottom {
    right: -10px;
    bottom: 26px;
    max-width: 286px;
  }
}

@media (min-width: 900px) and (max-width: 1099px) {
  .hero-label {
    left: 28px;
    right: auto;
    bottom: 24px;
    max-width: 285px;
  }
  .floating-card-bottom {
    right: 8px;
    bottom: 20px;
    max-width: 246px;
  }
}

@media (max-width: 899px) {
  .hero-label {
    right: 20px;
    max-width: none;
  }
  .floating-card-bottom {
    max-width: 220px;
  }
}

/* Safety spacing for all anchored sections and footer overlays */
section[id], footer[id] { scroll-margin-top: 104px; }
.footer-meta, .footer-bottom { position: relative; z-index: 2; }


/* ===== FINAL RELEASE: ruhiger Hero und robuste Abstände ===== */
/* Die zweite schwebende Hero-Karte wurde entfernt, damit Bildbeschriftung und
   Statushinweis auf keiner Desktop- oder Mobilbreite kollidieren. */
.hero-label {
  max-width: min(330px, calc(100% - 48px));
}
.hero-label span:last-child {
  min-width: 0;
  line-height: 1.42;
}

/* Rechtliche Links bleiben am unteren Rand oberhalb der mobilen Kontaktleiste. */
@media (max-width: 650px) {
  .site-footer {
    padding-bottom: calc(124px + env(safe-area-inset-bottom));
  }
  .footer-bottom {
    padding-bottom: 4px;
  }
}

/* ===== KUNDENFASSUNG 2026: verbindliche Typografie und statische Darstellung ===== */
body,
button,
input,
select,
textarea {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3,
.brand-subline,
.footer-logo-subline,
.button,
.site-nav,
.nav-dropdown,
.eyebrow,
.trust-item strong,
.region-card-kicker {
  font-family: "Poppins", "Inter", ui-sans-serif, system-ui, sans-serif;
}

h1,
h2,
h3 {
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

p,
li,
address,
small,
.form-note,
.form-privacy-note {
  text-wrap: pretty;
}

.topbar-links,
.contact-options,
.site-footer,
.legal-article {
  overflow-wrap: anywhere;
}

.region-grid,
.region-grid > *,
.contact-grid,
.contact-grid > *,
.section-heading,
.section-heading > * {
  min-width: 0;
}

.brand-logo,
.footer-logo,
.whatsapp-brand-icon {
  height: auto;
  object-fit: contain;
}

/* Der Kundenwunsch ist eine vollständig ruhige Seite ohne Motion. */
*,
*::before,
*::after {
  animation: none !important;
  transition: none !important;
}

.reveal,
.js .reveal,
.js .reveal.visible {
  opacity: 1;
  transform: none;
}

.button:hover,
.service-card:hover,
.service-card:focus-within,
.service-card:hover a span,
.process-step:hover .step-icon,
.related-links a:hover,
.related-links a:hover b,
.site-nav .nav-dropdown-menu a:hover,
.header-cta:hover::after,
.whatsapp-float:hover {
  transform: none;
}

@media (max-width: 650px) {
  .hero-decoration {
    display: none;
  }
  .region-copy h2,
  .legal-hero h1,
  .detail-copy h1 {
    max-width: 100%;
    text-wrap: wrap;
    overflow-wrap: anywhere;
  }
  .hero-line {
    display: inline;
  }
  .hero-line + .hero-line::before {
    content: " ";
  }
  .hero h1 em {
    white-space: normal;
  }
}

/* Hero-Sicherheitskorrektur: verschachtelte helle Karte und Akzentlinie separat behandeln. */
.hero-line-accent {
  padding-bottom: .06em;
}

.hero h1 em::after {
  bottom: .18em;
  height: .075em;
}

html[data-theme="black"] .hero .floating-card-top strong {
  color: #161616;
}

html[data-theme="black"] .hero .floating-card-top span {
  color: #555f66;
}

@media (max-width: 650px) {
  .hero-line-accent {
    padding-bottom: 0;
  }
  .hero h1 em {
    display: inline-block;
    padding-bottom: .1em;
  }
  .hero h1 em::after {
    bottom: 0;
  }
}

/* ===== KUNDENKORREKTUR 22.07.2026: freie Sicht und saubere Sprungposition ===== */
/* Der dauerhaft schwebende WhatsApp-Knopf wurde aus dem HTML entfernt.
   Diese Regel verhindert zusätzlich, dass er aus einer alten Cache-Fassung erscheint. */
.whatsapp-float {
  display: none !important;
}

/* Auch die frühere feste mobile Schnellkontaktleiste entfällt, damit auf
   kleinen Displays kein Formular- oder Footerinhalt überdeckt wird. */
.mobile-contact-bar {
  display: none !important;
}

/* Rechtliche Seiten: im Footer klar lesbar und auf Mobilgeräten zusätzlich
   direkt über das Menü erreichbar. */
.mobile-legal-link {
  display: none !important;
}

.footer-bottom a {
  color: #ffffff;
  font-size: .82rem;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .48);
  text-underline-offset: 4px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #ffffff;
  text-decoration-color: #ffffff;
}

/* Verhindert, dass unsichtbare Status- oder Dekorationsebenen die
   Rechtlinks im Desktop-Footer abfangen. */
.site-footer {
  position: relative;
  isolation: isolate;
}

.footer-bottom,
.footer-bottom > div,
.footer-bottom a {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.toast:not(.show) {
  pointer-events: none;
}

.toast.show {
  pointer-events: auto;
}

@media (max-width: 900px) {
  .site-nav .mobile-legal-link {
    display: block !important;
    color: var(--navy-deep);
    font-size: .92rem;
    font-weight: 700;
  }
}

@media (max-width: 650px) {
  .site-footer {
    padding-bottom: calc(48px + env(safe-area-inset-bottom));
  }

  .footer-bottom {
    width: min(100% - 32px, var(--container));
    padding-bottom: 0;
  }

  .footer-bottom > div {
    width: 100%;
    gap: 10px;
  }

  .footer-bottom a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 10px;
    text-decoration: none;
  }
}

/* Beim Sprung zum Kontakt beginnt der schwarze Abschnitt direkt unter dem
   verkleinerten Sticky-Header; dadurch bleibt kein Streifen der FAQ sichtbar. */
#kontakt {
  scroll-margin-top: 88px;
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 78px;
  }
  #kontakt {
    scroll-margin-top: 0;
  }
}

@media (max-width: 650px) {
  html {
    scroll-padding-top: 70px;
  }
  #kontakt {
    scroll-margin-top: 0;
  }
}

/* Optische Zentrierung des WhatsApp-Zeichens im weißen Kontaktkreis. */
.contact-option-whatsapp .contact-option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.contact-option-whatsapp .whatsapp-brand-icon--contact {
  display: block;
  width: 23px;
  height: 23px;
  max-width: 23px;
  max-height: 23px;
  object-fit: contain;
  object-position: center;
  transform: translate(1px, -1px);
}

/* Der frühere Desktop-Freiraum für den schwebenden Knopf wird nicht mehr benötigt. */
@media (min-width: 651px) {
  .site-footer {
    padding-bottom: 25px;
  }
}

@media (max-width: 650px) {
  .site-footer {
    padding-bottom: 25px;
  }
}

/* ===== KUNDENKORREKTUR 26.07.2026: reduziertes gemeinsames Kartenraster ===== */
/* Alle Leistungen bleiben wie in der bevorzugten ersten Fassung in einem
   Raster. Weniger Dekoration und kürzere Inhalte schaffen die nötige Ruhe. */
.services > .container {
  width: min(calc(100% - 48px), 1400px);
}

.services .section-heading h2 {
  letter-spacing: -.038em;
}

.service-number {
  font-variant-numeric: tabular-nums;
}

@media (min-width: 1280px) {
  .services .section-heading {
    grid-template-columns: minmax(0, 760px) minmax(320px, 1fr);
    gap: clamp(48px, 6vw, 96px);
  }

  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 16px;
  }

  .services-grid > .service-card {
    min-height: 224px;
    padding: 22px 24px 20px;
    border-radius: 14px;
  }

  .services-grid > .service-card-featured {
    grid-row: span 3;
    min-height: 704px;
    padding: 28px;
  }

  .services-grid > .service-card-featured h3 {
    font-size: 1.58rem;
    line-height: 1.18;
    letter-spacing: -.025em;
  }

  .services-grid > .service-card:not(.service-card-featured) h3 {
    margin: 32px 0 7px;
    font-size: 1.08rem;
    line-height: 1.22;
  }

  .services-grid > .service-card:not(.service-card-featured) p {
    font-size: .81rem;
    line-height: 1.48;
  }

  .services-grid > .service-card:not(.service-card-featured) a {
    padding-top: 12px;
    font-size: .76rem;
  }
}

.services-grid > .service-card:not(.service-card-featured) {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e4e4df;
  box-shadow: none;
}

.services-grid > .service-card:not(.service-card-featured)::before {
  display: none;
}

.services-grid > .service-card:not(.service-card-featured):hover,
.services-grid > .service-card:not(.service-card-featured):focus-within,
html[data-theme="black"] .services-grid > .service-card:not(.service-card-featured):hover {
  transform: none;
  border-color: #cacac5;
  background: #fff;
  box-shadow: none;
}

.services-grid > .service-card:not(.service-card-featured) .service-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #66717a;
}

.services-grid > .service-card:not(.service-card-featured) .service-icon {
  display: none;
}

.services-grid > .service-card:not(.service-card-featured) h3 {
  color: #151515;
  text-wrap: balance;
}

.services-grid > .service-card:not(.service-card-featured) p {
  color: #5d656a;
}

.services-grid > .service-card:not(.service-card-featured) a {
  color: #151515;
}

html[data-theme="black"] .services-grid > .service-card:not(.service-card-featured) {
  background: #fff;
  border-color: #e4e4df;
  box-shadow: none;
}

html[data-theme="black"] .services-grid > .service-card:not(.service-card-featured) a span {
  width: 31px;
  height: 31px;
  font-size: .94rem;
}

.services-grid > .service-card-direct {
  background: #f8f8f5;
}

@media (min-width: 651px) and (max-width: 1279px) {
  .services > .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid > .service-card:not(.service-card-featured) {
    min-height: 290px;
    padding: 24px;
  }

  .services-grid > .service-card-featured {
    min-height: 598px;
    grid-row: span 2;
  }

  .services-grid > .service-card-featured h3 {
    font-size: 1.65rem;
    line-height: 1.18;
    letter-spacing: -.025em;
  }

  .services-grid > .service-card:not(.service-card-featured) h3 {
    margin-top: 30px;
  }
}

@media (max-width: 650px) {
  .services > .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .services .section-heading {
    margin-bottom: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services-grid > .service-card-featured {
    min-height: 420px;
    grid-row: auto;
    padding: 24px;
  }

  .services-grid > .service-card:not(.service-card-featured) {
    min-height: 178px;
    padding: 20px;
    border-radius: 13px;
  }

  .services-grid > .service-card:not(.service-card-featured) h3 {
    margin: 28px 0 5px;
    font-size: 1.05rem;
  }

  .services-grid > .service-card:not(.service-card-featured) p {
    font-size: .8rem;
  }

  .services-grid > .service-card:not(.service-card-featured) a {
    padding-top: 11px;
    font-size: .74rem;
  }
}

/* ===== 27.07.2026: ruhiger Leistungsnavigator statt Kartenwand ===== */
.service-overview {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
}

/* Aktuelle Leistungsseite im Menü eindeutig kennzeichnen. */
.nav-dropdown-menu a[aria-current="page"] {
  background: #f1f1ee;
  box-shadow: inset 3px 0 0 #111;
}

.nav-dropdown-menu a[aria-current="page"] strong {
  color: #111;
}

.service-feature {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 3vw, 42px);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, .04) 18%, rgba(9, 9, 9, .9) 84%),
    url("assets/cereni-glasreinigung.webp") center 48% / cover no-repeat;
  border-radius: 20px;
}

.service-feature::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--yellow), var(--green), var(--cyan));
}

.service-feature-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(255, 255, 255, .74);
  font: 800 .78rem/1 "Poppins", "Inter", sans-serif;
  letter-spacing: .1em;
}

.service-feature-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
}

.service-feature-kicker {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .72);
  font: 700 .7rem/1.3 "Poppins", "Inter", sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-feature h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.service-feature-copy > p:not(.service-feature-kicker) {
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, .78);
  font-size: .98rem;
  line-height: 1.68;
}

.service-feature a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  font: 800 .84rem/1.3 "Poppins", "Inter", sans-serif;
}

.service-feature a span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #111;
  background: #fff;
  border-radius: 50%;
}

.service-directory {
  overflow: hidden;
  background: #fff;
  border: 1px solid #deded9;
  border-radius: 20px;
}

.service-group {
  display: grid;
  grid-template-columns: minmax(185px, .42fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 44px);
  padding: clamp(26px, 3vw, 38px);
}

.service-group + .service-group {
  border-top: 1px solid #deded9;
}

.service-group-head > span {
  display: block;
  margin-bottom: 10px;
  color: #68736f;
  font: 800 .66rem/1.35 "Poppins", "Inter", sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-group-head h3 {
  margin: 0;
  color: #151515;
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.3;
  letter-spacing: -.025em;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  min-width: 0;
  border-top: 1px solid #e4e4df;
}

.service-list li:first-child {
  border-top: 0;
}

.service-list a {
  min-height: 68px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 4px;
  color: #151515;
}

.service-list-number {
  color: #7b8581;
  font: 800 .68rem/1 "Poppins", "Inter", sans-serif;
  letter-spacing: .08em;
}

.service-list a > span:nth-child(2) {
  min-width: 0;
}

.service-list strong,
.service-list small {
  display: block;
}

.service-list strong {
  color: #151515;
  font: 750 .92rem/1.34 "Poppins", "Inter", sans-serif;
  overflow-wrap: normal;
  word-break: normal;
}

.service-list small {
  margin-top: 3px;
  color: #606965;
  font-size: .72rem;
  line-height: 1.48;
}

.service-list b {
  align-self: start;
  color: #151515;
  font-size: 1rem;
  line-height: 1.2;
}

.service-list a:focus-visible {
  outline: 3px solid #151515;
  outline-offset: -3px;
}

.special-services {
  display: grid;
  grid-template-columns: minmax(185px, .42fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 44px);
  padding: clamp(26px, 3vw, 38px);
  border-top: 1px solid #deded9;
  background: #f3f6f4;
}

.special-services-kicker {
  display: block;
  margin-bottom: 10px;
  color: #68736f;
  font: 800 .66rem/1.35 "Poppins", "Inter", sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.special-services h3 {
  margin: 0;
  color: #151515;
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.3;
  letter-spacing: -.025em;
}

.special-services p {
  margin: 10px 0 0;
  color: #606965;
  font-size: .78rem;
  line-height: 1.55;
}

.special-services-links {
  display: grid;
  gap: 0;
}

.special-services-links a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 4px;
  color: #174c41;
  border-top: 1px solid #d7dfda;
  font: 750 .84rem/1.4 "Poppins", "Inter", sans-serif;
}

.special-services-links a:first-child {
  border-top: 0;
}

.special-services-links a:focus-visible {
  outline: 3px solid #174c41;
  outline-offset: -3px;
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
  padding: 22px 24px 22px 28px;
  color: #fff;
  background: #111;
  border-radius: 14px;
}

.services-cta p {
  max-width: 780px;
  margin: 0;
  color: #c9cecb;
  font-size: .9rem;
}

.services-cta strong {
  color: #fff;
}

.services-cta .button {
  flex: 0 0 auto;
  background: #fff;
  color: #111;
}

@media (max-width: 1199px) {
  .service-overview {
    grid-template-columns: 1fr;
  }

  .service-feature {
    min-height: 520px;
    background-position: center 42%;
  }
}

@media (max-width: 820px) {
  .service-group,
  .special-services {
    grid-template-columns: 1fr;
  }

  .service-group-head {
    max-width: 520px;
  }

  .special-services > div:first-child {
    max-width: 520px;
  }
}

@media (max-width: 650px) {
  .service-overview {
    gap: 12px;
  }

  .service-feature {
    min-height: 430px;
    padding: 24px;
    border-radius: 16px;
  }

  .service-feature-number {
    top: 22px;
    right: 22px;
  }

  .service-feature h3 {
    font-size: 1.85rem;
  }

  .service-directory {
    border-radius: 16px;
  }

  .service-group {
    gap: 22px;
    padding: 26px 20px 16px;
  }

  .special-services {
    gap: 18px;
    padding: 26px 20px 20px;
  }

  .special-services-links a {
    min-height: 50px;
    padding: 14px 0;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-list a {
    min-height: 0;
    gap: 13px;
    align-items: center;
    padding: 17px 0;
  }

  .service-list-number {
    grid-column: auto;
    padding-top: 3px;
  }

  .service-list small {
    font-size: .74rem;
  }

  .services-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 20px;
  }
}

@media (max-width: 360px) {
  .service-feature h3 {
    font-size: 1.68rem;
    letter-spacing: -.045em;
  }
}
