/* Singhuber Edelstahl — global stylesheet. Colors/typography/layout tokens live in custom-properties.php. */

@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree-extrabold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Graebenbach';
    src: url('../fonts/graebenbach-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Figtree';
    src: url('../fonts/figtree-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --sh-font-heading: 'Figtree', sans-serif;
    --sh-font-body: 'Graebenbach', sans-serif;
    --sh-font-special: 'Figtree', sans-serif;
    --sh-radius-lg: 20px;
    --sh-radius-pill: 50px;
    --sh-swiper-h: 140px;
    --sh-swiper-h-mobile: 152px;
    --sh-topbar-h: 0px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--sh-font-body);
    font-size: var(--sh-body);
    font-weight: var(--sh-body-weight);
    line-height: var(--sh-body-lh);
    color: var(--sh-text);
    background: var(--sh-bg-alt);
    margin: 0 !important;
    padding: 0 !important;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
}
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

body.sh-nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--sh-font-heading);
    color: var(--sh-text);
}
h1 { font-size: var(--sh-h1); font-weight: var(--sh-h1-weight); line-height: var(--sh-h1-lh); }
h2 { font-size: var(--sh-h2); font-weight: var(--sh-h2-weight); line-height: var(--sh-h2-lh); }
h3 { font-size: var(--sh-h3); font-weight: var(--sh-h3-weight); line-height: var(--sh-h3-lh); }
h4 { font-size: var(--sh-h4); font-weight: var(--sh-h4-weight); line-height: var(--sh-h4-lh); }
h5 { font-size: var(--sh-h5); font-weight: var(--sh-h5-weight); line-height: var(--sh-h5-lh); }
h6 { font-size: var(--sh-h6); font-weight: var(--sh-h6-weight); line-height: var(--sh-h6-lh); }

.sh-container {
    max-width: var(--sh-container);
    margin: 0 auto;
    padding: 0 var(--sh-container-px, 24px);
}

.sh-section-wrap {
}
.sh-layout--full {
    width: 100%;
}
.sh-layout--container {
}

.sh-section {
    padding: var(--sh-section-py) 0;
}
.sh-section--dark {
    background: var(--sh-bg-dark);
    color: var(--sh-text-light);
}
.sh-section--dark h2,
.sh-section--dark h3 { color: var(--sh-text-light); }

.sh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: var(--sh-cta-padding-v) var(--sh-cta-padding-h);
    border-radius: var(--sh-radius-pill);
    font-family: var(--sh-font-heading);
    font-weight: var(--sh-btn-weight);
    font-size: var(--sh-btn-size);
    letter-spacing: var(--sh-btn-spacing);
    text-transform: var(--sh-btn-transform);
    line-height: 1;
    transition: opacity 0.2s;
    cursor: pointer;
}
.sh-btn:hover { opacity: 0.85; }
.sh-btn--yellow { background: var(--sh-cta); color: var(--sh-bg-dark); }
.sh-btn--dark { background: var(--sh-text); color: var(--sh-text-light); }

.sh-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--sh-radius-pill);
    font-family: var(--sh-font-special);
    font-size: var(--sh-badge-size);
    font-weight: 500;
    line-height: var(--sh-badge-lh);
}
.sh-pill--yellow { background: var(--sh-cta); color: var(--sh-bg-dark); }
.sh-pill--glass {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--sh-text);
    border: 1px solid rgba(255,255,255,0.3);
}

.sh-subline {
    color: var(--sh-text);
    margin-top: 8px;
    font-size: var(--sh-body);
}

.sh-page {
    padding: var(--sh-section-py) 0;
}
.sh-page__content {
    max-width: 800px;
    line-height: 1.7;
}
.sh-page__content p { margin-bottom: 16px; }
.sh-page__content h2,
.sh-page__content h3 { margin-top: 32px; margin-bottom: 12px; }

/* Topbar */
.sh-topbar {
    background: var(--sh-topbar-bg);
    color: #000;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--sh-font-body);
    position: relative;
    width: 100%;
}
.sh-topbar__inner {
    padding: 10px 2vw;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    min-height: 42px;
}
.sh-topbar__inner a {
    color: inherit;
    text-decoration: underline;
}

/* reset l7-aktionen plugin styles inside topbar */
.sh-topbar .l7b {
    position: static !important;
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    z-index: auto !important;
    font-size: inherit !important;
    color: inherit !important;
}
.sh-topbar .l7b-in {
    padding: 0 !important;
}
.sh-topbar .l7n,
.sh-topbar .l7n-name,
.sh-topbar .l7n-time,
.sh-topbar .l7b-name,
.sh-topbar .l7b-time {
    font-weight: 400 !important;
}

/* Header / navigation */
.sh-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.sh-header__inner {
    width: 100%;
    padding: 0 2vw;
    display: flex;
    align-items: center;
    gap: 32px;
    height: var(--sh-nav-h);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.3s, backdrop-filter 0.3s;
}

.sh-header__logo { flex-shrink: 0; }
.sh-header__logo img,
.sh-header__logo svg { height: 36px; width: auto; }

.sh-header__nav,
.sh-header__nav-right { display: flex; align-items: center; }

.sh-header__nav ul,
.sh-header__nav-right ul {
    display: flex;
    align-items: center;
    gap: 4px;
}
.sh-header__nav li { position: relative; }

.sh-header__nav a,
.sh-header__nav-right a {
    font-family: var(--sh-font-body);
    font-size: var(--sh-nav-font-size);
    font-weight: var(--sh-nav-font-weight);
    line-height: 1;
    padding: 8px 16px;
    border-radius: 50px;
    transition: background 0.2s;
    white-space: nowrap;
}
.sh-header__nav a:hover,
.sh-header__nav-right a:hover {
    background: var(--sh-bg-alt);
}

.sh-nav__item--active > a {
    background: var(--sh-bg-alt);
}

.sh-nav__item--has-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    margin-bottom: 2px;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.sh-nav__item--has-dropdown:hover > a::after {
    opacity: 1;
}
.sh-nav__item--has-dropdown > a[aria-expanded="true"]::after {
    opacity: 1;
    transform: rotate(225deg);
    margin-bottom: -2px;
}

.sh-header__right { display: flex; align-items: center; gap: 16px; margin-left: auto; }

.sh-header__nav-right a:has(.l7-business-hours-nav-icon) {
    display: flex;
    align-items: center;
    padding: 0.5em 1em;
}
.l7-business-hours-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.l7-business-hours-nav-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--sh-text);
}
.l7-business-hours-nav-icon::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(255, 0, 0);
    position: absolute;
    bottom: -1px;
    right: -6px;
}
.l7-business-hours-nav-icon.open::before {
    background: rgb(0, 128, 0);
}

.l7-business-hours-popover {
    width: auto !important;
    max-width: none !important;
    padding: 6px 10px !important;
    white-space: nowrap;
}
.l7-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sh-header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    position: relative;
    z-index: 10000;
}
.sh-header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sh-text);
    transition: transform 0.3s ease, opacity 0.2s ease, background 0.3s ease;
    transform-origin: center;
}
.sh-header__toggle--active span {
    background: var(--sh-text-light, #fff);
}
.sh-header__toggle--active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.sh-header__toggle--active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.sh-header__toggle--active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1199px) {
    .sh-header__nav { display: none; }
    .sh-header__nav-right li:not(:has(.l7-business-hours-nav-icon)) { display: none; }
    .sh-header__toggle { display: flex; }
}

/* Navigation panel */
.sh-panel {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    visibility: hidden;
}
.sh-panel--open {
    pointer-events: auto;
    visibility: visible;
}

.sh-panel__overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    backdrop-filter: blur(var(--sh-panel-overlay-blur, 20px));
    -webkit-backdrop-filter: blur(var(--sh-panel-overlay-blur, 20px));
    opacity: 0;
    transition: opacity 0.35s ease;
}
.sh-panel--open .sh-panel__overlay {
    opacity: 1;
}

.sh-panel__drawer {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--sh-panel-width, 50vw);
    height: 100vh;
    background: var(--sh-panel-bg, var(--sh-bg-light, #fff));
    color: var(--sh-panel-text, var(--sh-text, #1A1A1A));
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
}
.sh-panel--open .sh-panel__drawer {
    transform: translateX(0);
}

/* desktop: panel opens below the nav bar, which stays visible */
@media (min-width: 1200px) {
    .sh-header {
        z-index: 10001;   /* above the panel (9998) so the nav stays clickable */
    }
    .sh-panel__overlay,
    .sh-panel__drawer {
        top: calc(var(--sh-topbar-h, 0px) + var(--sh-nav-h));
    }
    .sh-panel__drawer {
        height: calc(100vh - var(--sh-topbar-h, 0px) - var(--sh-nav-h));
    }
    /* real header replaces the drawer head; extra specificity beats the later base rule */
    .sh-panel .sh-panel__header {
        display: none;
    }
}

.sh-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    flex-shrink: 0;
    position: relative;
}
.sh-panel__logo img,
.sh-panel__logo svg {
    height: 32px;
    width: auto;
}
.sh-panel__close {
    color: var(--sh-panel-text, #1A1A1A);
    font-size: 28px;
    line-height: 1;
    padding: 8px;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.sh-panel__close:hover {
    opacity: 1;
}

.sh-panel__nav {
    flex: 1;
    padding: 24px 40px 32px;
    overflow-y: auto;
}
.sh-panel__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sh-panel__item {
    border-bottom: 1px solid color-mix(in srgb, var(--sh-panel-text, #1A1A1A) 8%, transparent);
}
.sh-panel__item:last-child {
    border-bottom: none;
}
.sh-panel__link {
    display: block;
    padding: 14px 0;
    font-family: var(--sh-font-heading);
    font-size: var(--sh-panel-font-size, 22px);
    font-weight: 800;
    color: var(--sh-panel-text, #1A1A1A);
    transition: color 0.2s;
}
.sh-panel__link:hover {
    color: var(--sh-panel-hover, var(--sh-cta));
}

.sh-panel__link--parent {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.sh-panel__toggle-icon {
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    opacity: 0.4;
    transition: transform 0.3s ease, opacity 0.2s;
    flex-shrink: 0;
}
.sh-panel__link--parent:hover .sh-panel__toggle-icon {
    opacity: 1;
}
.sh-panel__link--parent[aria-expanded="true"] .sh-panel__toggle-icon {
    transform: rotate(45deg);
}

/* top-level parent hidden here; surfaced as a badge in the header instead */
.sh-panel__menu > .sh-panel__item--parent > .sh-panel__link--parent {
    display: none;
}

.sh-panel__menu > .sh-panel__item--parent > .sh-panel__sub {
    max-height: none !important;
    overflow: visible;
    padding: 0;
}
.sh-panel__menu > .sh-panel__item--parent {
    border-bottom: none;
}
.sh-panel__menu > .sh-panel__item--parent > .sh-panel__sub > .sh-panel__item > .sh-panel__link,
.sh-panel__menu > .sh-panel__item--parent > .sh-panel__sub > .sh-panel__item > .sh-panel__link--parent {
    font-size: var(--sh-panel-font-size, 22px);
    font-weight: 800;
    padding: 14px 0;
    color: var(--sh-panel-text, #1A1A1A);
}
.sh-panel__menu > .sh-panel__item--parent > .sh-panel__sub > .sh-panel__item {
    border-bottom: 1px solid color-mix(in srgb, var(--sh-panel-text, #1A1A1A) 8%, transparent);
}
.sh-panel__menu > .sh-panel__item--parent > .sh-panel__sub > .sh-panel__item:last-child {
    border-bottom: none;
}

.sh-panel__sub {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.sh-panel__item--parent[aria-expanded="true"] > .sh-panel__sub {
    max-height: 600px;
    padding: 0 0 8px;
}
.sh-panel__sub .sh-panel__sub .sh-panel__link {
    font-size: var(--sh-panel-font-size-sub, 17px);
    font-weight: 500;
    padding: 10px 0 10px 20px;
    color: color-mix(in srgb, var(--sh-panel-text, #1A1A1A) 60%, transparent);
}
.sh-panel__sub .sh-panel__sub .sh-panel__sub .sh-panel__link {
    font-size: var(--sh-panel-font-size-sub2, 15px);
    padding-left: 40px;
    color: color-mix(in srgb, var(--sh-panel-text, #1A1A1A) 45%, transparent);
}
.sh-panel__sub .sh-panel__link:hover {
    color: var(--sh-panel-hover, var(--sh-cta));
}
.sh-panel__sub .sh-panel__sub .sh-panel__item {
    border-bottom: none;
}

.sh-panel__footer-nav {
    padding: 16px 40px 24px;
    flex-shrink: 0;
    border-top: 1px solid color-mix(in srgb, var(--sh-panel-text, #1A1A1A) 8%, transparent);
}
.sh-panel__footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
}
.sh-panel__footer-menu li a {
    font-family: var(--sh-font-body);
    font-size: 13px;
    font-weight: 400;
    color: color-mix(in srgb, var(--sh-panel-text, #1A1A1A) 40%, transparent);
    padding: 6px 0;
    display: block;
    transition: color 0.2s;
}
.sh-panel__footer-menu li a:hover {
    color: var(--sh-panel-hover, var(--sh-cta));
}

.sh-panel--open .sh-panel__item {
    opacity: 0;
    transform: translateY(-8px);
    animation: sh-panel-item-in 0.3s ease forwards;
}
@keyframes sh-panel-item-in {
    to { opacity: 1; transform: translateY(0); }
}
.sh-panel--open .sh-panel__item:nth-child(1) { animation-delay: 0.05s; }
.sh-panel--open .sh-panel__item:nth-child(2) { animation-delay: 0.08s; }
.sh-panel--open .sh-panel__item:nth-child(3) { animation-delay: 0.11s; }
.sh-panel--open .sh-panel__item:nth-child(4) { animation-delay: 0.14s; }
.sh-panel--open .sh-panel__item:nth-child(5) { animation-delay: 0.17s; }
.sh-panel--open .sh-panel__item:nth-child(6) { animation-delay: 0.20s; }
.sh-panel--open .sh-panel__item:nth-child(7) { animation-delay: 0.23s; }
.sh-panel--open .sh-panel__item:nth-child(8) { animation-delay: 0.26s; }
.sh-panel--open .sh-panel__item:nth-child(9) { animation-delay: 0.29s; }
.sh-panel--open .sh-panel__item:nth-child(10) { animation-delay: 0.32s; }

@media (max-width: 767px) {
    .sh-panel__drawer {
        width: 100vw;
        height: 100vh;
        top: 0;
    }
    .sh-panel__nav {
        padding: 16px 20px 24px;
    }
    .sh-panel__footer-nav {
        padding: 12px 20px 20px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .sh-panel__drawer {
        width: 65vw;
    }
}

.sh-header--scrolled .sh-header__inner {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

/* Hero */
.sh-hero {
    min-height: calc(100vh - var(--sh-nav-h) - var(--sh-topbar-h, 0px));
    display: flex;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center bottom;
}
/* gradient is CSS-only; hero images ship without a baked-in gradient */
.sh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgb(243,243,243) 0%,
        rgba(243,243,243,0.99) 28%,
        rgba(243,243,243,0.85) 42%,
        rgba(243,243,243,0) 62%);
    z-index: 1;
}

.sh-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 2vw;
    padding-top: clamp(42px, 9.3vw, 146px);
    display: flex;
    flex-direction: column;
}

.sh-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: var(--sh-body);
    align-self: flex-start;
    color: var(--sh-text);
    text-decoration: none;
    transition: background 0.2s;
}
a.sh-hero__badge:hover {
    background: rgba(255,255,255,0.95);
}
/* l7-gps-rating: CSS half-star rendering via fg clip over bg */
.l7-rating-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--sh-font-body);
    font-size: inherit;
    line-height: 1;
}
.l7-stars-wrap {
    position: relative;
    display: inline-block;
    font-size: inherit;
    line-height: 1;
    vertical-align: middle;
}
.l7-stars-bg {
    color: var(--sh-cta);
    opacity: 0.3;
}
.l7-stars-fg {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    white-space: nowrap;
    color: var(--sh-cta);
}
.l7-rating-text { color: inherit; }

.sh-hero h1 {
    max-width: 920px;
    margin-top: 20px;
    margin-bottom: 7px;
}

.sh-hero__subline {
    max-width: 800px;
    font-size: var(--sh-hero-subline);
    color: var(--sh-text);
    margin-bottom: 0;
}

.sh-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--sh-cta);
    border-radius: 50px;
    padding: 6px;
    margin-top: 11px;
    margin-bottom: 0;
    text-decoration: none;
    color: var(--sh-text);
    align-self: flex-start;
}
.sh-hero__cta img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sh-bg-light);
    flex-shrink: 0;
}
.sh-hero__cta-text { display: flex; flex-direction: column; padding-right: 18px; }
.sh-hero__cta-text strong { display: block; font-family: var(--sh-font-heading); font-size: var(--sh-hero-cta); font-weight: 800; line-height: 1.2; }
.sh-hero__cta-text span { font-size: var(--sh-hero-cta-sub); color: rgba(0, 0, 0, 0.7); line-height: 1.2; }

.sh-hero__aktionen {
    margin-top: 20px;
    max-width: fit-content;
}
.sh-hero__aktionen .l7h {
    max-width: 347px;
}

.sh-hero__trust-wrap {
    margin-top: auto;
    padding-bottom: 21px;
}

.sh-hero__trust-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.sh-hero__trust-logo {
    height: 30px;
    width: auto;
    flex-shrink: 0;
}
.sh-hero__trust-break { display: none; }

@media (max-width: 767px) {
    .sh-hero { min-height: calc(100vh - var(--sh-nav-h-mobile) - var(--sh-topbar-h, 0px)); }
    .sh-topbar { font-size: 12px; }
    .sh-topbar__inner { padding: 6px 12px; min-height: 0; gap: 4px 6px; line-height: 1.35; }
    /* single knob for mobile content width; every container inherits --sh-container-px */
    :root { --sh-container-px: 16px; }
    .sh-hero__content { padding: 0 var(--sh-container-px); padding-top: 20px; }
    .sh-hero h1 { max-width: 100%; }
    .sh-hero__subline { max-width: 100%; font-size: 16px; line-height: 1.28; }
    .sh-hero__badge { font-size: 12px; padding: 6px 12px; gap: 6px; }
    .sh-hero__aktionen { max-width: fit-content; }
    /* full opacity for legibility; the aktionen plugin defaults to 0.4/0.5 (the red "verfügbar" keeps its inline style) */
    .sh-hero__aktionen .l7h-label,
    .sh-hero__aktionen .l7h-info { color: var(--sh-text); opacity: 1; }
    .sh-hero__trust-wrap { padding-bottom: 16px; }
    .sh-hero__trust-bar { gap: 12px 5px; }
    .sh-hero__trust-logo { height: 18px; }
    .sh-hero__trust-bar .sh-pill { font-size: 12px; padding: 3px 8px; }
    /* forced wrap after the logos so all three pills share the row below */
    .sh-hero__trust-break { display: block; flex-basis: 100%; height: 0; }

    .sh-hero {
        /* bottom-anchored, background-size (not cover) to zoom out ~20% and show more of the subject */
        background-size: auto var(--sh-hero-mobile-size, 80%);
        background-position: var(--sh-hero-pos-x, 65%) bottom;
        background-repeat: no-repeat;
        background-color: rgb(243,243,243);
    }
    .sh-hero::before {
        background: linear-gradient(180deg,
            rgb(243,243,243) 0%,
            rgb(243,243,243) 48%,
            rgba(243,243,243,0.6) 68%,
            rgba(243,243,243,0) 86%,
            rgb(243,243,243) 100%);
    }
}

/* Portfolio */
.sh-portfolio {
    padding: var(--sh-section-py) 0;
    width: 100%;
}
.sh-portfolio__header {
    padding: 0 max(2vw, 24px);
    margin-bottom: var(--sh-gap);
}
.sh-portfolio__fallback {
    padding: 0 max(2vw, 24px);
}
.sh-portfolio h2 {
    color: var(--sh-text);
    margin: 0 0 8px;
}
.sh-portfolio .sh-subline {
    color: var(--sh-text);
    font-size: var(--sh-body);
    line-height: var(--sh-body-lh);
    margin: 0;
}
.sh-portfolio .l7pfw-wrap {
    padding: 0 max(2vw, 24px);
}

.sh-portfolio .l7pfw-card-title {
    font-family: var(--sh-font-heading);
    font-size: var(--sh-h5);
    font-weight: var(--sh-h5-weight);
    line-height: var(--sh-h5-lh);
}
.sh-portfolio .l7pfw-card-desc {
    font-family: var(--sh-font-body);
    font-size: var(--sh-h6);
    line-height: 1.5;
}
.sh-portfolio .l7pfw-load-btn {
    font-family: var(--sh-font-heading);
    background: var(--sh-cta);
    color: var(--sh-text);
}
.sh-portfolio .l7pfw-load-btn:hover {
    filter: brightness(0.92);
}
.sh-portfolio .l7pfw-badge {
    font-family: var(--sh-font-body);
    font-size: var(--sh-badge-size);
    background: var(--sh-badge-bg);
    color: var(--sh-badge-text);
}
.sh-portfolio .l7pfw-global-section {
    font-family: var(--sh-font-body);
}

/* CTA is relocated into .l7pfw-footer by JS */
.sh-portfolio__cta {
    padding: 0 2vw;
    margin-top: 30px;
}
.l7pfw-footer .sh-portfolio__cta {
    padding: 0;
    margin-top: 0;
    flex: 1;
}

.sh-bilder-senden,
.sh-support,
.sh-anrufen {
    display: flex;
    align-items: center;
    gap: 16px;
}
.sh-bilder-senden__avatars,
.sh-support__avatars,
.sh-anrufen__avatars {
    display: flex;
    flex-shrink: 0;
}
.sh-bilder-senden__avatars img,
.sh-support__avatars img,
.sh-anrufen__avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sh-bg-light);
}
.sh-bilder-senden__avatars img + img,
.sh-support__avatars img + img,
.sh-anrufen__avatars img + img {
    margin-left: -12px;
}
.sh-bilder-senden__content,
.sh-anrufen__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sh-bilder-senden__content br,
.sh-anrufen__text br {
    display: none;
}
.sh-bilder-senden__content strong,
.sh-bilder-senden__headline,
.sh-support strong,
.sh-anrufen__text strong {
    font-family: var(--sh-font-heading);
    font-size: var(--sh-body);
    font-weight: 600;
    color: var(--sh-text);
}
.sh-bilder-senden__text,
.sh-anrufen__text span,
.sh-anrufen__hours,
.sh-anrufen__hours * {
    font-size: var(--sh-body);
    color: var(--sh-text);
}
.sh-bilder-senden__text a {
    color: var(--sh-text);
    text-decoration: none;
}
.sh-bilder-senden__text a:hover {
    text-decoration: underline;
}
.sh-bilder-senden {
    margin-top: 0;
}

/* Options */
.sh-moeg {
    background: var(--sh-bg-alt);
    padding: var(--sh-section-py) 0;
}
.sh-moeg h2 { margin-bottom: 8px; }
.sh-moeg__subline { margin-bottom: 40px; }

.sh-moeg__row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: var(--sh-bg-light);
    border-radius: var(--sh-radius);
    overflow: hidden;
    margin-bottom: 12px;
    padding: 32px;
    gap: 32px;
    align-items: start;
}
.sh-moeg__label {
    font-family: var(--sh-font-heading);
    font-weight: var(--sh-h3-weight);
    font-size: var(--sh-h3);
}
.sh-moeg__detail {
    border-left: 3px solid var(--sh-bg-dark);
    padding-left: 24px;
}

.sh-moeg__swatches {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.sh-moeg__swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    width: 72px;
    flex-shrink: 0;
}
.sh-moeg__swatch-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--sh-border, #e0e0e0);
    flex-shrink: 0;
}
.sh-moeg__swatch-name {
    font-size: 11px;
    text-align: center;
    color: var(--sh-text);
    width: 100%;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}
.sh-moeg__swatch--popular .sh-moeg__swatch-circle,
.sh-moeg__swatch--popular .sh-opt__bef-box {
    position: relative;
}
.sh-moeg__swatch--popular .sh-moeg__swatch-circle::after,
.sh-moeg__swatch--popular .sh-opt__bef-box::after {
    content: '★';
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--sh-text);
    color: var(--sh-text-light);
    font-size: 9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.sh-moeg__swatch .sh-opt__bef-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--sh-border, #e0e0e0);
    overflow: hidden;
}
/* scale mount diagram internals from 64px down to 48px */
.sh-moeg__swatch .sh-opt__bef--aufgesetzt .b-post { bottom: 10px; height: 20px; }
.sh-moeg__swatch .sh-opt__bef--aufgesetzt .b-post:nth-child(1) { left: 12px; }
.sh-moeg__swatch .sh-opt__bef--aufgesetzt .b-post:nth-child(2) { right: 12px; }
.sh-moeg__swatch .sh-opt__bef--aufgesetzt .b-rail { top: 9px; left: 12px; right: 12px; }
.sh-moeg__swatch .sh-opt__bef--aufgesetzt .b-plate { bottom: 7px; left: 7px; right: 7px; }
.sh-moeg__swatch .sh-opt__bef--seitlich .b-post { bottom: 6px; height: 22px; }
.sh-moeg__swatch .sh-opt__bef--seitlich .b-post:nth-child(1) { left: 6px; }
.sh-moeg__swatch .sh-opt__bef--seitlich .b-post:nth-child(2) { right: 6px; }
.sh-moeg__swatch .sh-opt__bef--seitlich .b-rail { top: 9px; left: 6px; right: 6px; }
.sh-moeg__swatch .sh-opt__bef--seitlich .b-plate { bottom: 12px; left: 10px; right: 10px; }
.sh-moeg__swatch .sh-opt__bef--eingelassen .b-post { bottom: 6px; height: 22px; }
.sh-moeg__swatch .sh-opt__bef--eingelassen .b-post:nth-child(1) { left: 12px; }
.sh-moeg__swatch .sh-opt__bef--eingelassen .b-post:nth-child(2) { right: 12px; }
.sh-moeg__swatch .sh-opt__bef--eingelassen .b-rail { top: 9px; left: 12px; right: 12px; }
.sh-moeg__swatch .sh-opt__bef--eingelassen .b-plate { bottom: 7px; left: 7px; right: 7px; }

.sh-moeg__text {
    font-size: var(--sh-body);
    color: var(--sh-text);
}

@media (max-width: 767px) {
    .sh-moeg__row {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px;
    }
    .sh-moeg__swatch {
        width: 64px;
    }
    .sh-moeg__swatch-circle {
        width: 40px;
        height: 40px;
    }
    .sh-moeg__swatch .sh-opt__bef-box {
        width: 40px;
        height: 40px;
    }
}

/* Swatch fills */
.sh-opt-fill--edelstahl {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='64'%3E%3Crect width='1' height='64' x='0' fill='%23aaa' opacity='0.1'/%3E%3Crect width='1' height='64' x='2' fill='%23bbb' opacity='0.07'/%3E%3C/svg%3E") repeat,
        linear-gradient(165deg, #b0b8c0 0%, #c8ced4 15%, #d8dce0 25%, #c0c8ce 35%, #d2d8dc 50%, #bcc4ca 65%, #cdd3d8 80%, #b8c0c8 90%, #c4ccd2 100%);
}
.sh-opt-fill--alu {
    background: linear-gradient(150deg, #6a7580 0%, #7d8a95 20%, #8a95a0 35%, #7a8590 50%, #8d98a3 65%, #6e7b86 80%, #808d98 100%);
}
.sh-opt-fill--glas {
    background: linear-gradient(155deg, #c2dae8 0%, #d6e8f2 10%, #e4f0f7 25%, #d0e4f0 40%, #e8f2f8 55%, #c8dced 70%, #daeaf4 85%, #cde0ee 100%);
}
.sh-opt-fill--stahl {
    background: linear-gradient(150deg, #3a3a3a 0%, #505050 15%, #5a5a5a 25%, #444 40%, #585858 55%, #3e3e3e 70%, #525252 85%, #484848 100%);
}

.sh-opt-fill--anthrazit {
    background: radial-gradient(ellipse at 30% 20%, rgba(80,90,98,1) 0%, rgba(56,62,66,1) 60%, rgba(42,48,52,1) 100%);
}
.sh-opt-fill--schwarz {
    background: radial-gradient(ellipse at 30% 25%, rgba(30,30,32,1) 0%, rgba(10,10,13,1) 60%, rgba(5,5,8,1) 100%);
}
.sh-opt-fill--weiss {
    background: radial-gradient(ellipse at 35% 25%, #fefefe 0%, #f5f4f0 40%, #eeedea 80%, #e8e7e4 100%);
    border: 1px solid rgba(0,0,0,0.08) !important;
}
.sh-opt-fill--db703 {
    background: radial-gradient(ellipse at 35% 30%, #7a7c65 0%, #6c6e58 50%, #5e604a 100%);
}
.sh-opt-fill--rainbow {
    background: conic-gradient(from 0deg, #e84040, #e87040, #e8d040, #a0e840, #40e8a0, #40d0e8, #4090e8, #a040e8, #e84040);
    position: relative;
}
.sh-opt-fill--rainbow::after {
    content: '+';
    position: absolute;
    inset: 5px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #888;
}

.sh-opt-fill--geburstet {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='64'%3E%3Crect width='1' height='64' x='0' fill='%23aaa' opacity='0.12'/%3E%3Crect width='1' height='64' x='2' fill='%23bbb' opacity='0.08'/%3E%3C/svg%3E") repeat,
        linear-gradient(170deg, #c0c0c0 0%, #d6d6d6 20%, #e0e0e0 35%, #cacaca 50%, #d8d8d8 65%, #c4c4c4 80%, #d2d2d2 100%);
}
.sh-opt-fill--satiniert {
    background: radial-gradient(ellipse at 40% 30%, #e4e4e4 0%, #d6d6d6 40%, #cccccc 80%);
}
.sh-opt-fill--poliert {
    background: linear-gradient(155deg, #e0e0e0 0%, #f8f8f8 30%, #ffffff 45%, #eaeaea 70%, #e6e6e6 100%);
}
.sh-opt-fill--pulver {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Ccircle cx='3' cy='3' r='1' fill='rgba(0,0,0,0.04)'/%3E%3C/svg%3E") repeat,
        radial-gradient(ellipse at 35% 30%, #c8c8c8 0%, #b8b8b8 40%, #aaa 80%);
}

.sh-opt-fill--klarglas {
    background: linear-gradient(155deg, #c6dce9, #e4f2fa 30%, #dcecf6 50%, #eaf5fb 65%, #daeef7 100%);
}
.sh-opt-fill--mattglas {
    background: radial-gradient(ellipse at 40% 35%, #d6dee3, #c8d2d8 40%, #bcc8d0 80%);
}
.sh-opt-fill--stabe {
    background: repeating-linear-gradient(90deg, #b0b0b0 0px, #b8b8b8 2px, #c8c8c8 3px, #e8e8e8 6px, #c8c8c8 8px, #b0b0b0 10px, #e8e8e8 13px);
}
.sh-opt-fill--seile {
    background: repeating-linear-gradient(0deg, #b0b0b0 0px, #ccc 1.5px, #f2f2f2 6px, #ccc 10.5px, #b0b0b0 12px, #f2f2f2 16px);
}
.sh-opt-fill--lochblech {
    background-color: #bbb;
    background-image: radial-gradient(circle, #d8d8d8 3px, transparent 3px);
    background-size: 10px 10px;
}
.sh-opt-fill--lamellen {
    background: repeating-linear-gradient(0deg, #6a6a6a 0px, #858585 3px, #6a6a6a 6px, #aaa 7px, #b5b5b5 8px, #9a9a9a 10px);
}

.sh-opt-fill--glas-rahmenlos {
    background: linear-gradient(155deg, #daedf8 0%, #eaf5fc 20%, #f2f9fe 40%, #e4f1fa 60%, #d6eaf6 80%, #eaf5fc 100%);
    border: 1px solid rgba(0,0,0,0.06) !important;
}
.sh-opt-fill--stahl-pulver {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Ccircle cx='3' cy='3' r='1' fill='rgba(0,0,0,0.05)'/%3E%3C/svg%3E") repeat,
        linear-gradient(150deg, #4a4a4a 0%, #5a5a5a 20%, #666 40%, #555 60%, #5e5e5e 80%, #4e4e4e 100%);
}
.sh-opt-fill--ornamentglas {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M0 4 Q2 0 4 4 Q6 8 8 4' fill='none' stroke='rgba(180,200,215,0.4)' stroke-width='1'/%3E%3C/svg%3E") repeat,
        linear-gradient(155deg, #c8dce9 0%, #dce8f0 30%, #e8f0f5 50%, #d4e4ee 70%, #cce0ec 100%);
}

.sh-opt-fill--bef-laibung {
    background: radial-gradient(ellipse at 35% 30%, #8a9eaf 0%, #6d8599 50%, #5a7488 100%);
}
.sh-opt-fill--bef-fassade {
    background: radial-gradient(ellipse at 35% 30%, #9aabb8 0%, #7d96a8 50%, #6a8698 100%);
}
.sh-opt-fill--bef-mauerwerk {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Crect x='0' y='0' width='5' height='3' fill='rgba(0,0,0,0.06)' rx='0.5'/%3E%3Crect x='6' y='0' width='5' height='3' fill='rgba(0,0,0,0.04)' rx='0.5'/%3E%3Crect x='3' y='4' width='5' height='3' fill='rgba(0,0,0,0.05)' rx='0.5'/%3E%3C/svg%3E") repeat,
        radial-gradient(ellipse at 35% 30%, #a0a89a 0%, #8a9480 50%, #7a8672 100%);
}

.sh-opt-fill--holz-edelstahl {
    background: linear-gradient(150deg, #b0b8c0 0%, #c0c6cc 25%, #8b6e52 50%, #a0845e 75%, #c0c8ce 100%);
}
.sh-opt-fill--edst-rund {
    background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.3) 0%, transparent 60%),
        linear-gradient(165deg, #b0b8c0 0%, #c8ced4 25%, #d8dce0 50%, #c0c8ce 75%, #b8c0c8 100%);
}
.sh-opt-fill--edst-eckig {
    background: linear-gradient(165deg, #a8b0b8 0%, #bcc4cc 20%, #d0d6dc 40%, #b8c0c8 60%, #c4ccd4 80%, #b0b8c0 100%);
}
.sh-opt-fill--holz {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='64'%3E%3Crect width='1' height='64' x='1' fill='%23704020' opacity='0.08'/%3E%3Crect width='1' height='64' x='3' fill='%23604018' opacity='0.06'/%3E%3C/svg%3E") repeat,
        linear-gradient(170deg, #a0845e 0%, #b8986a 15%, #c4a876 30%, #b0926a 45%, #c0a478 60%, #a88c64 75%, #bca070 90%, #a48860 100%);
}
.sh-opt-fill--leder {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Ccircle cx='3' cy='3' r='0.8' fill='rgba(0,0,0,0.06)'/%3E%3C/svg%3E") repeat,
        radial-gradient(ellipse at 35% 25%, #6a4a30 0%, #5a3a22 50%, #4a2e18 100%);
}
.sh-opt-fill--bef-treppenwange {
    background: radial-gradient(ellipse at 35% 30%, #7a8e9e 0%, #627a8c 50%, #506a7c 100%);
}
.sh-opt-fill--bef-wand {
    background: radial-gradient(ellipse at 35% 30%, #8a96a2 0%, #717e8c 50%, #5e6c7a 100%);
}

.sh-opt-fill--konstr-wandgebunden {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Crect x='0' y='4' width='4' height='24' rx='1' fill='rgba(255,255,255,0.35)'/%3E%3Crect x='4' y='4' width='24' height='4' rx='1' fill='rgba(255,255,255,0.25)'/%3E%3Crect x='12' y='8' width='3' height='16' rx='0.5' fill='rgba(255,255,255,0.15)'/%3E%3C/svg%3E") no-repeat center,
        linear-gradient(135deg, #4a7a6a 0%, #5a9078 40%, #68a488 100%);
}
.sh-opt-fill--konstr-freistehend {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Crect x='4' y='4' width='20' height='4' rx='1' fill='rgba(255,255,255,0.3)'/%3E%3Crect x='5' y='8' width='3' height='16' rx='0.5' fill='rgba(255,255,255,0.2)'/%3E%3Crect x='20' y='8' width='3' height='16' rx='0.5' fill='rgba(255,255,255,0.2)'/%3E%3C/svg%3E") no-repeat center,
        linear-gradient(135deg, #5a748a 0%, #6a88a0 40%, #7a9ab4 100%);
}
.sh-opt-fill--konstr-eck {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Cpath d='M4 4 L24 4 L24 14 L14 14 L14 24 L4 24 Z' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2.5' rx='1'/%3E%3C/svg%3E") no-repeat center,
        linear-gradient(135deg, #7a6a5a 0%, #8e7e6e 40%, #a29282 100%);
}
.sh-opt-fill--konstr-seitenwaende {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Crect x='4' y='4' width='20' height='4' rx='1' fill='rgba(255,255,255,0.25)'/%3E%3Crect x='4' y='8' width='3' height='16' rx='0.5' fill='rgba(255,255,255,0.3)'/%3E%3Crect x='21' y='8' width='3' height='16' rx='0.5' fill='rgba(255,255,255,0.3)'/%3E%3Crect x='4' y='22' width='20' height='2' fill='rgba(255,255,255,0.15)'/%3E%3C/svg%3E") no-repeat center,
        linear-gradient(135deg, #6a5a7a 0%, #7e6e90 40%, #9282a6 100%);
}
.sh-opt-fill--konstr-angebaut {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Crect x='0' y='2' width='4' height='24' rx='1' fill='rgba(255,255,255,0.35)'/%3E%3Crect x='4' y='4' width='18' height='4' rx='1' fill='rgba(255,255,255,0.25)'/%3E%3Crect x='19' y='8' width='3' height='16' rx='0.5' fill='rgba(255,255,255,0.2)'/%3E%3C/svg%3E") no-repeat center,
        linear-gradient(135deg, #5a7080 0%, #6a8496 40%, #7a96aa 100%);
}
.sh-opt-fill--konstr-doppel {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Crect x='2' y='4' width='24' height='4' rx='1' fill='rgba(255,255,255,0.3)'/%3E%3Crect x='3' y='8' width='3' height='16' rx='0.5' fill='rgba(255,255,255,0.2)'/%3E%3Crect x='13' y='8' width='2' height='16' rx='0.5' fill='rgba(255,255,255,0.15)'/%3E%3Crect x='22' y='8' width='3' height='16' rx='0.5' fill='rgba(255,255,255,0.2)'/%3E%3C/svg%3E") no-repeat center,
        linear-gradient(135deg, #4a6070 0%, #5a7486 40%, #6a889e 100%);
}
.sh-opt-fill--konstr-abstellraum {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Crect x='2' y='4' width='24' height='4' rx='1' fill='rgba(255,255,255,0.25)'/%3E%3Crect x='3' y='8' width='3' height='16' rx='0.5' fill='rgba(255,255,255,0.2)'/%3E%3Crect x='22' y='8' width='3' height='16' rx='0.5' fill='rgba(255,255,255,0.2)'/%3E%3Crect x='14' y='8' width='8' height='16' rx='1' fill='rgba(255,255,255,0.12)' stroke='rgba(255,255,255,0.2)' stroke-width='1'/%3E%3C/svg%3E") no-repeat center,
        linear-gradient(135deg, #5a6a60 0%, #6e7e74 40%, #829288 100%);
}

.sh-opt-fill--polycarbonat {
    background: linear-gradient(155deg, #e0e8ec 0%, #eaf0f4 20%, #f4f8fa 40%, #e8eef2 60%, #dce6ec 80%, #eef4f6 100%);
    border: 1px solid rgba(0,0,0,0.06) !important;
}
.sh-opt-fill--lamellendach {
    background: repeating-linear-gradient(0deg, #8a8a8a 0px, #a0a0a0 3px, #8a8a8a 5px, #c0c0c0 6px, #d0d0d0 7px, #b0b0b0 9px);
}
.sh-opt-fill--trapezblech {
    background: repeating-linear-gradient(90deg, #a0a0a0 0px, #c8c8c8 4px, #e0e0e0 6px, #c8c8c8 8px, #a0a0a0 12px);
}
.sh-opt-fill--gruendach {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Ccircle cx='2' cy='6' r='1.5' fill='rgba(80,140,60,0.2)'/%3E%3Ccircle cx='6' cy='3' r='1.2' fill='rgba(60,120,40,0.15)'/%3E%3C/svg%3E") repeat,
        linear-gradient(150deg, #6aa050 0%, #7ab860 20%, #88c468 40%, #76b058 60%, #6aa050 80%, #80bc62 100%);
}

.sh-opt-fill--seitenwaende {
    background: linear-gradient(155deg, #c2d8e6 0%, #d6e8f2 25%, #e4f0f7 50%, #d0e4f0 75%, #c2d8e6 100%);
}
.sh-opt-fill--led {
    background: radial-gradient(circle at 50% 40%, #ffe066 0%, #ffcc00 30%, #e6b800 60%, #cc9e00 100%);
}
.sh-opt-fill--regenrinne {
    background: linear-gradient(150deg, #7aaec8 0%, #8abcd6 25%, #9acae2 50%, #88bcd4 75%, #7aaec8 100%);
}
.sh-opt-fill--markise {
    background: repeating-linear-gradient(135deg, #d4a070 0px, #d4a070 4px, #f0e0cc 4px, #f0e0cc 8px);
}

.sh-opt-fill--rinne-kasten {
    background: linear-gradient(150deg, #6a90a8 0%, #7aa0b8 30%, #8ab0c6 50%, #7aa0b8 70%, #6a90a8 100%);
}
.sh-opt-fill--rinne-vorgehaengt {
    background: linear-gradient(150deg, #5a82a0 0%, #6a94b4 30%, #7aa4c2 50%, #6a94b4 70%, #5a82a0 100%);
}
.sh-opt-fill--rinne-innen {
    background: linear-gradient(150deg, #5a7a98 0%, #6a8eaa 30%, #7a9eba 50%, #6a8eaa 70%, #5a7a98 100%);
}

.sh-opt-fill--stahl-verzinkt {
    background: linear-gradient(165deg, #b8c0c8 0%, #ccd4dc 15%, #dce2e8 30%, #c8d0d8 45%, #d4dce4 60%, #bcc4cc 75%, #d0d8e0 90%, #c0c8d0 100%);
}

.sh-opt-fill--fahrradstaender {
    background: radial-gradient(ellipse at 35% 30%, #8a9aaa 0%, #6e8296 50%, #5a7086 100%);
}
.sh-opt-fill--wallbox {
    background: radial-gradient(circle at 50% 40%, #60d060 0%, #48b848 30%, #38a038 60%, #2a882a 100%);
}
.sh-opt-fill--solar {
    background: linear-gradient(150deg, #2a4a80 0%, #3a5a90 20%, #4a6aa0 35%, #3a5a90 50%, #5a7aaa 65%, #2a4a80 80%, #4a6aa0 100%);
}

.sh-opt-fill--ral9007 {
    background: radial-gradient(ellipse at 35% 28%, #9a9a96 0%, #8f8f8b 45%, #7e7e7a 100%);
}
.sh-opt-fill--ral6005 {
    background: radial-gradient(ellipse at 35% 28%, #1a4a34 0%, #114232 50%, #0c352a 100%);
}
.sh-opt-fill--matt-glatt {
    background: radial-gradient(ellipse at 40% 32%, #b4b4b2 0%, #a8a8a6 50%, #9c9c9a 100%);
}
.sh-opt-fill--feinstruktur {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='5'%3E%3Ccircle cx='1' cy='1' r='0.7' fill='rgba(0,0,0,0.10)'/%3E%3Ccircle cx='3.5' cy='3.5' r='0.7' fill='rgba(255,255,255,0.14)'/%3E%3C/svg%3E") repeat,
        radial-gradient(ellipse at 35% 30%, #8e8e8c 0%, #7c7c7a 50%, #6e6e6c 100%);
}
.sh-opt-fill--antik {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9'%3E%3Ccircle cx='2' cy='3' r='1' fill='rgba(120,90,40,0.25)'/%3E%3Ccircle cx='6' cy='7' r='0.8' fill='rgba(40,30,20,0.3)'/%3E%3C/svg%3E") repeat,
        radial-gradient(ellipse at 35% 30%, #4e4438 0%, #3c342a 50%, #2e2820 100%);
}
.sh-opt-fill--farbglas {
    background: conic-gradient(from 210deg, #b08d57 0deg 120deg, #9aa4ac 120deg 240deg, #f0f0ec 240deg 360deg);
    border: 1px solid rgba(0,0,0,0.08) !important;
}
.sh-opt-fill--weissglas {
    background: linear-gradient(155deg, #eef4f6 0%, #f8fbfc 30%, #ffffff 50%, #f2f7f9 70%, #eaf1f4 100%);
    border: 1px solid rgba(0,0,0,0.08) !important;
}
.sh-opt-fill--emailierung {
    background: linear-gradient(180deg, #dcecf6 0%, #dcecf6 45%, #ffffff 45%, #f4f4f2 100%);
    border: 1px solid rgba(0,0,0,0.08) !important;
}

.sh-opt-fill--pv-mono {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath d='M6 0 V12 M0 6 H12' stroke='rgba(255,255,255,0.16)' stroke-width='1'/%3E%3C/svg%3E") repeat,
        linear-gradient(150deg, #101a30 0%, #1a2844 40%, #16223c 70%, #0e1830 100%);
}
.sh-opt-fill--pv-poly {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath d='M6 0 V12 M0 6 H12' stroke='rgba(255,255,255,0.16)' stroke-width='1'/%3E%3C/svg%3E") repeat,
        linear-gradient(150deg, #1c3a6e 0%, #2c4e86 30%, #24427a 55%, #34568e 80%, #1e3c70 100%);
}
.sh-opt-fill--pv-duenn {
    background: repeating-linear-gradient(90deg, #1a1e26 0px, #262c38 3px, #1a1e26 6px);
}
.sh-opt-fill--solar-klarglas {
    background: linear-gradient(180deg, #2a4a80 0%, #3a5a90 48%, #daedf8 52%, #eaf5fc 100%);
}
.sh-opt-fill--solar-mattglas {
    background: linear-gradient(180deg, #2a4a80 0%, #3a5a90 48%, #c8d2d8 52%, #bcc8d0 100%);
}

.sh-opt-fill--getoentes-glas {
    background: linear-gradient(135deg, #4a90b0 0%, #6aafcf 50%, #3a7a9a 100%);
}
.sh-opt-fill--bedrucktes-glas {
    background: linear-gradient(135deg, #b8d4e3 0%, #fff 25%, #b8d4e3 50%, #e8e8e8 75%, #b8d4e3 100%);
}
.sh-opt-fill--teilgerahmt {
    background: linear-gradient(135deg, #c0c8d0 0%, #d8e0e8 30%, #e8f0f8 70%, #c0c8d0 100%);
}
.sh-opt-fill--pfosten-riegel {
    background: linear-gradient(135deg, #c8c8c8 0%, #a0a0a0 35%, #d8d8d8 70%, #b0b0b0 100%);
}
.sh-opt-fill--glas-10mm { background: linear-gradient(135deg, #d4eef7 0%, #e8f5fa 50%, #c0e2f0 100%); }
.sh-opt-fill--glas-12mm { background: linear-gradient(135deg, #b8dff0 0%, #d0ecf5 50%, #a0d0e8 100%); }
.sh-opt-fill--glas-16mm { background: linear-gradient(135deg, #90c8e0 0%, #b0ddef 50%, #78b8d5 100%); }
.sh-opt-fill--glas-20mm { background: linear-gradient(135deg, #6ab0d0 0%, #90c8e0 50%, #5498b8 100%); }
.sh-opt-fill--bodenschuh {
    background: linear-gradient(180deg, #e0e4e8 0%, #b0b8c0 60%, #888e96 100%);
}
.sh-opt-fill--punkthalter {
    background: radial-gradient(circle at 50% 50%, #c0c0c0 30%, #e0e0e0 60%, #a0a0a0 100%);
}
.sh-opt-fill--ohne-handlauf {
    background: linear-gradient(135deg, #e8f0f8 0%, #d0e8f5 50%, #e8f0f8 100%);
}
.sh-opt-fill--edst-flach {
    background: linear-gradient(90deg, #c0c0c0 0%, #e8e8e8 30%, #d0d0d0 60%, #b8b8b8 100%);
}

.sh-opt-fill--treppe-gerade { background: linear-gradient(135deg, #8a9aa8 0%, #a0b0c0 50%, #7a8a98 100%); }
.sh-opt-fill--treppe-podest { background: linear-gradient(135deg, #7a8a98 0%, #98a8b8 30%, #6a7a88 60%, #8a9aa8 100%); }
.sh-opt-fill--treppe-spindel { background: conic-gradient(#8a9aa8, #b0c0d0, #7a8a98, #a0b0c0, #8a9aa8); }
.sh-opt-fill--treppe-lu { background: linear-gradient(90deg, #8a9aa8 0%, #a0b0c0 50%, #8a9aa8 50%, #7a8a98 100%); }
.sh-opt-fill--gitterrost {
    background: repeating-linear-gradient(0deg, #a0a8b0 0px, #a0a8b0 2px, #c8d0d8 2px, #c8d0d8 6px);
}
.sh-opt-fill--riffelblech {
    background: repeating-linear-gradient(135deg, #b0b8c0 0px, #b0b8c0 2px, #d0d8e0 2px, #d0d8e0 5px);
}
.sh-opt-fill--holz-auf-stahl {
    background: linear-gradient(180deg, #a67c52 0%, #8b6340 50%, #b0b8c0 50%, #8a9098 100%);
}
.sh-opt-fill--stein-auf-stahl {
    background: linear-gradient(180deg, #c8beb0 0%, #b0a898 50%, #b0b8c0 50%, #8a9098 100%);
}
.sh-opt-fill--edst-mit-staeben {
    background: linear-gradient(135deg, #c0c0c0 0%, #e0e0e0 25%, #c8c8c8 50%, #d8d8d8 75%, #c0c0c0 100%);
}
.sh-opt-fill--edst-mit-glas {
    background: linear-gradient(135deg, #c0c0c0 0%, #d8e8f0 30%, #c0e0f0 70%, #c0c0c0 100%);
}
.sh-opt-fill--einsatz-aussen { background: linear-gradient(135deg, #7aaa88 0%, #90c0a0 50%, #68986a 100%); }
.sh-opt-fill--einsatz-innen { background: linear-gradient(135deg, #c8a878 0%, #e0c898 50%, #b89868 100%); }
.sh-opt-fill--einsatz-flucht { background: linear-gradient(135deg, #d04040 0%, #e06060 50%, #c03030 100%); }
.sh-opt-fill--einsatz-industrie { background: linear-gradient(135deg, #606870 0%, #808890 50%, #505860 100%); }

.sh-opt-fill--treppe-wendel { background: conic-gradient(#7a8a98, #a0b0c0, #6a7a88, #90a0b0, #7a8a98); }
.sh-opt-fill--treppe-halbgewendelt {
    background: linear-gradient(180deg, #8a9aa8 0%, #a0b0c0 45%, #6a7a88 55%, #8a9aa8 100%);
}
.sh-opt-fill--stein { background: linear-gradient(135deg, #c8beb0 0%, #d8d0c0 40%, #b0a898 70%, #c8beb0 100%); }

.sh-opt-fill--aluminiumblech {
    background: linear-gradient(135deg, #c8d0d8 0%, #e0e8f0 30%, #b8c0c8 60%, #d0d8e0 100%);
}
.sh-opt-fill--bef-zugstangen {
    background: linear-gradient(135deg, #b0b8c0 0%, #c8d0d8 40%, #a0a8b0 80%, #c0c8d0 100%);
}
.sh-opt-fill--bef-konsolen {
    background: linear-gradient(135deg, #a0a8b0 0%, #b8c0c8 50%, #909098 100%);
}
.sh-opt-fill--seitenwindschutz {
    background: linear-gradient(90deg, #a8c8e0 0%, #d0e8f5 50%, #a8c8e0 100%);
}
.sh-opt-fill--klingel {
    background: radial-gradient(circle at 50% 40%, #f0c860 25%, #d0a840 50%, #e0b850 100%);
}
.sh-opt-fill--hausnummer {
    background: linear-gradient(135deg, #404040 0%, #606060 50%, #303030 100%);
}

.sh-opt-fill--verglasung-fix { background: linear-gradient(135deg, #c0dce8 0%, #d8ecf5 50%, #b0d0e0 100%); }
.sh-opt-fill--verglasung-schiebe { background: linear-gradient(90deg, #c0dce8 0%, #e8f5fa 40%, #c0dce8 60%, #d8ecf5 100%); }
.sh-opt-fill--verglasung-falt {
    background: repeating-linear-gradient(90deg, #c0dce8 0px, #d8ecf5 8px, #b0ccd8 8px, #c8dde8 16px);
}
.sh-opt-fill--verglasung-dreh { background: conic-gradient(from 45deg, #c0dce8, #e8f5fa, #b0ccd8, #c0dce8); }
.sh-opt-fill--waermeschutzglas {
    background: linear-gradient(135deg, #c8e0b0 0%, #d8ecc0 50%, #b0d098 100%);
}
.sh-opt-fill--insektenschutz {
    background: repeating-linear-gradient(45deg, #d0d8e0 0px, #d0d8e0 1px, #e8eff5 1px, #e8eff5 4px);
}
.sh-opt-fill--sonnenschutzfolie {
    background: linear-gradient(135deg, #e0c870 0%, #f0d880 40%, #c8b060 70%, #e0c870 100%);
}
.sh-opt-fill--schliesssystem {
    background: radial-gradient(circle at 50% 50%, #b0b0b0 20%, #808080 50%, #a0a0a0 100%);
}
.sh-opt-fill--lueftungsklappe {
    background: linear-gradient(180deg, #a0c8e0 0%, #d0e8f5 50%, #e8f5fa 100%);
}

.sh-opt-fill--balkon-vorstell { background: linear-gradient(180deg, #8a9aa8 0%, #a0b0c0 40%, #707880 60%, #8a9aa8 100%); }
.sh-opt-fill--balkon-anbau { background: linear-gradient(90deg, #a0a8b0 0%, #c0c8d0 50%, #8a9098 100%); }
.sh-opt-fill--balkon-freitragend { background: linear-gradient(135deg, #98a0a8 0%, #b8c0c8 50%, #808890 100%); }
.sh-opt-fill--balkon-haenge { background: linear-gradient(180deg, #b8c0c8 0%, #d0d8e0 30%, #90989e 70%, #a0a8b0 100%); }
.sh-opt-fill--wpc-dielen {
    background: repeating-linear-gradient(0deg, #8b6b4a 0px, #9a7a58 3px, #8b6b4a 3px, #7a5c3e 6px);
}
.sh-opt-fill--alu-dielen {
    background: repeating-linear-gradient(0deg, #c0c8d0 0px, #d0d8e0 3px, #b8c0c8 3px, #c8d0d8 6px);
}
.sh-opt-fill--alu-mit-glas {
    background: linear-gradient(135deg, #b0b8c0 0%, #d0e8f0 30%, #c0e0f0 70%, #b0b8c0 100%);
}
.sh-opt-fill--extra-treppe { background: linear-gradient(135deg, #7a8a98 0%, #98a8b8 50%, #6a7a88 100%); }
.sh-opt-fill--extra-ueberdachung { background: linear-gradient(135deg, #a0b0c0 0%, #c0d0e0 50%, #90a0b0 100%); }
.sh-opt-fill--extra-verglasung { background: linear-gradient(135deg, #b8d8e8 0%, #d8ecf5 50%, #a8c8d8 100%); }
.sh-opt-fill--sichtschutz { background: linear-gradient(135deg, #b0a090 0%, #c8b8a0 50%, #a09080 100%); }

.sh-opt-fill--konstr-aufsatz {
    background: linear-gradient(180deg, #a0b0c0 0%, #b8c8d8 30%, #c8d0d8 70%, #a0b0c0 100%);
}
.sh-opt-fill--lamellen-dreh {
    background: repeating-linear-gradient(0deg, #888 0px, #bbb 2px, #888 4px, #bbb 6px);
}
.sh-opt-fill--lamellen-fest {
    background: repeating-linear-gradient(0deg, #999 0px, #999 3px, #ccc 3px, #ccc 6px);
}
.sh-opt-fill--stoffbespannung {
    background: linear-gradient(135deg, #e8dcd0 0%, #f0e8d8 50%, #d8ccc0 100%);
}
.sh-opt-fill--heizstrahler {
    background: radial-gradient(circle at 50% 30%, #ff8040 0%, #e06020 40%, #c04010 80%, #a03010 100%);
}
.sh-opt-fill--senkrechtmarkise {
    background: linear-gradient(180deg, #c8b890 0%, #d8c8a0 50%, #b8a880 100%);
}
.sh-opt-fill--app-steuerung {
    background: linear-gradient(135deg, #4080c0 0%, #60a0e0 50%, #3070b0 100%);
}

.sh-opt-fill--wintergarten-kalt {
    background: linear-gradient(135deg, #a0d0e8 0%, #c0e8f5 50%, #88c0d8 100%);
}
.sh-opt-fill--wintergarten-warm {
    background: linear-gradient(135deg, #e0a060 0%, #f0b870 40%, #d09050 70%, #c08040 100%);
}
.sh-opt-fill--stahl-glas {
    background: linear-gradient(135deg, #b0b8c0 0%, #d0e8f0 40%, #a8b0b8 70%, #c0d8e8 100%);
}
.sh-opt-fill--holz-alu {
    background: linear-gradient(135deg, #a67c52 0%, #b8904a 40%, #c0c8d0 60%, #a8b0b8 100%);
}
.sh-opt-fill--sonnenschutzglas {
    background: linear-gradient(135deg, #b0c8a0 0%, #c8e0b0 40%, #90b080 70%, #a8c098 100%);
}
.sh-opt-fill--alu-lamellen {
    background: repeating-linear-gradient(0deg, #c0c8d0 0px, #d8e0e8 3px, #b8c0c8 3px, #c8d0d8 6px);
}
.sh-opt-fill--schiebetueren { background: linear-gradient(90deg, #c0dce8 0%, #e8f5fa 50%, #c0dce8 100%); }
.sh-opt-fill--faltwaende {
    background: repeating-linear-gradient(90deg, #c8dce8 0px, #d8ecf5 10px, #b8ccd8 10px, #c8dce8 20px);
}
.sh-opt-fill--drehkipp { background: conic-gradient(from 90deg, #c0dce8, #e8f5fa, #c0dce8, #d0e8f0); }

.sh-opt-fill--zaun-stab {
    background: repeating-linear-gradient(90deg, #606060 0px, #606060 2px, transparent 2px, transparent 6px);
}
.sh-opt-fill--zaun-lamelle {
    background: repeating-linear-gradient(0deg, #707070 0px, #707070 4px, #989898 4px, #989898 6px);
}
.sh-opt-fill--zaun-doppelstab {
    background: repeating-linear-gradient(90deg, #707070 0px, #707070 1px, transparent 1px, transparent 3px);
}
.sh-opt-fill--zaun-schmiedeeisen {
    background: linear-gradient(135deg, #404040 0%, #606060 30%, #505050 60%, #3a3a3a 100%);
}
.sh-opt-fill--tor-dreh { background: linear-gradient(135deg, #788090 0%, #98a0b0 50%, #687080 100%); }
.sh-opt-fill--tor-schiebe { background: linear-gradient(90deg, #788090 0%, #98a0b0 50%, #687080 100%); }
.sh-opt-fill--tor-drehfluegel {
    background: linear-gradient(90deg, #788090 0%, #98a0b0 25%, #687080 50%, #98a0b0 75%, #788090 100%);
}
.sh-opt-fill--tor-pforte { background: linear-gradient(135deg, #90a0a8 0%, #b0c0c8 50%, #80909a 100%); }
.sh-opt-fill--motorantrieb {
    background: radial-gradient(circle at 50% 50%, #e0c040 20%, #d0a020 50%, #c09010 100%);
}
.sh-opt-fill--gegensprechanlage {
    background: linear-gradient(135deg, #505860 0%, #707880 50%, #404850 100%);
}
.sh-opt-fill--briefkasten {
    background: linear-gradient(135deg, #4080a0 0%, #5898b8 50%, #306888 100%);
}

.sh-opt__bef-box {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--sh-bg-alt);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: border-color 0.15s;
}
.sh-opt__bef-box .b-plate {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 4px;
    background: #ccc;
    border-radius: 2px;
}
.sh-opt__bef-box .b-post {
    position: absolute;
    width: 3px;
    background: #666;
    border-radius: 1px;
}
.sh-opt__bef-box .b-rail {
    position: absolute;
    height: 2px;
    background: #666;
    border-radius: 1px;
}

.sh-opt__bef--aufgesetzt .b-post { bottom: 14px; height: 26px; }
.sh-opt__bef--aufgesetzt .b-post:nth-child(1) { left: 16px; }
.sh-opt__bef--aufgesetzt .b-post:nth-child(2) { right: 16px; }
.sh-opt__bef--aufgesetzt .b-rail { top: 12px; left: 16px; right: 16px; }

.sh-opt__bef--seitlich .b-post { bottom: 8px; height: 30px; }
.sh-opt__bef--seitlich .b-post:nth-child(1) { left: 8px; }
.sh-opt__bef--seitlich .b-post:nth-child(2) { right: 8px; }
.sh-opt__bef--seitlich .b-rail { top: 12px; left: 8px; right: 8px; }
.sh-opt__bef--seitlich .b-plate { bottom: 16px; left: 14px; right: 14px; }

.sh-opt__bef--eingelassen .b-post { bottom: 8px; height: 30px; }
.sh-opt__bef--eingelassen .b-post:nth-child(1) { left: 16px; }
.sh-opt__bef--eingelassen .b-post:nth-child(2) { right: 16px; }
.sh-opt__bef--eingelassen .b-rail { top: 12px; left: 16px; right: 16px; }

/* Process */
.sh-prozess {
    background: var(--sh-bg-alt);
    padding: var(--sh-section-py) 0;
    width: 100%;
}
.sh-prozess__header { padding: 0 max(2vw, 24px); margin-bottom: var(--sh-gap); }
.sh-prozess h2 { margin-bottom: 8px; }
.sh-prozess__subline { margin: 0; }

.sh-prozess__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sh-gap);
    padding: 0 max(2vw, 24px);
}
.sh-prozess__card {
    background: var(--sh-bg-light);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--sh-radius);
    padding: 28px;
    position: relative;
}
/* connector line between step badges */
.sh-prozess__card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: calc(-1 * var(--sh-gap));
    width: var(--sh-gap);
    height: 2px;
    background: var(--sh-text);
    z-index: 1;
}
.sh-prozess__step {
    display: inline-block;
    background: var(--sh-text);
    color: var(--sh-text-light);
    font-family: var(--sh-font-special);
    font-size: var(--sh-badge-size);
    padding: 5px 14px;
    border-radius: var(--sh-radius-pill);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.sh-prozess__card h3 { margin-bottom: 12px; }
.sh-prozess__card p { font-size: var(--sh-body); color: var(--sh-text); }

.sh-prozess__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: var(--sh-h6);
    border-bottom: 1px solid var(--sh-text);
}
.sh-prozess__link::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #38a169;
    border-radius: 50%;
    animation: sh-pulse 2s ease-in-out infinite;
}
@keyframes sh-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}
.sh-prozess__cta { padding: 0 max(2vw, 24px); margin-top: 32px; }

@media (max-width: 991px) {
    .sh-prozess__grid { grid-template-columns: repeat(2, 1fr); }
    .sh-prozess__card:nth-child(2)::after { display: none; }
}
@media (max-width: 575px) {
    .sh-prozess__grid { grid-template-columns: 1fr; }
    .sh-prozess__card:not(:last-child)::after { display: none; }
    .sh-prozess__card {
        border-left: 2px solid var(--sh-text);
        border-radius: 0 var(--sh-radius) var(--sh-radius) 0;
    }
    .sh-prozess__card:first-child {
        border-top-left-radius: var(--sh-radius);
    }
    .sh-prozess__card:last-child {
        border-bottom-left-radius: var(--sh-radius);
    }
}

/* About */
.sh-about {
    background: var(--sh-bg-alt);
    padding: var(--sh-section-py) 0;
}
.sh-about__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--sh-bg-light);
    border-radius: var(--sh-radius);
    overflow: hidden;
}
.sh-about__image {
    min-height: 400px;
    background-size: cover;
    background-position: center top;
}
.sh-about__content {
    padding: 48px;
}
.sh-about__content h2 { margin-bottom: 20px; }
.sh-about__content p { margin-bottom: 16px; }
.sh-about__statement {
    font-family: var(--sh-font-heading);
    font-weight: 800;
    font-size: var(--sh-body);
    margin: 24px 0;
}
.sh-support {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--sh-bg-alt);
}

@media (max-width: 767px) {
    .sh-about__card { grid-template-columns: 1fr; }
    .sh-about__image { min-height: 260px; }
    .sh-about__content { padding: 28px; }
}

.sh-reviews {
    background: var(--sh-bg-alt);
    padding: var(--sh-section-py) 0;
}
.sh-reviews h2 { margin-bottom: 8px; }
.sh-reviews__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0 32px;
    font-size: var(--sh-body);
}
.sh-reviews__item {
    margin-bottom: 20px;
}
.sh-reviews__stars { margin-bottom: 12px; }
.sh-reviews__text {
    border-left: 3px solid var(--sh-bg-dark);
    padding-left: 14px;
    margin-bottom: 8px;
    font-size: var(--sh-body);
    line-height: 1.5;
}
.sh-reviews__author {
    font-family: var(--sh-font-heading);
    font-weight: 800;
    padding-left: 20px;
    font-size: var(--sh-body);
}
.sh-reviews__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-family: var(--sh-font-heading);
    font-weight: 800;
}

/* CTA */
.sh-cta {
    background: var(--sh-bg-dark);
    padding: var(--sh-section-py) 0;
}
.sh-cta__header {
    text-align: center;
    margin-bottom: 48px;
}
.sh-cta__header h2 { color: var(--sh-text-light); margin-bottom: 12px; }
.sh-cta__header p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 28px; }

.sh-cta__badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.sh-cta__badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(49, 49, 52, 0.7);
    padding: 4px 10px 4px 4px;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}
.sh-cta__badge-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--sh-cta);
    color: #000;
    border-radius: 50%;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.sh-cta__form-wrap {
    max-width: 680px;
    margin: 0 auto;
}
.sh-cta__form-card {
    background: var(--sh-bg-light);
    border-radius: var(--sh-radius);
    padding: 40px;
}
.sh-cta__form-intro {
    font-size: var(--sh-btn-size);
    margin-bottom: 28px;
    color: var(--sh-text);
}

.cf7-field p,
.cf7-field-row p { margin: 0; padding: 0; }
.cf7-field label,
.cf7-field-row label {
    display: block;
    font-family: var(--sh-font-heading);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--sh-text);
}
.cf7-field br,
.cf7-field-row br { display: none; }
.cf7-field { margin-bottom: 14px; }
.cf7-field input,
.cf7-field textarea,
.cf7-field-row input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-family: var(--sh-font-body);
    font-size: 15px;
    box-sizing: border-box;
    margin: 0;
    transition: border-color 0.2s;
}
.cf7-field input:focus,
.cf7-field textarea:focus {
    outline: none;
    border-color: var(--sh-cta);
}
.cf7-field textarea { min-height: 70px; height: 70px; resize: vertical; }

.cf7-field-row {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
}
.cf7-field-row .cf7-field.half { flex: 1; margin-bottom: 0; }

.sh-cta__form-card .wpcf7-form-control-wrap { display: block; }

.cf7-upload { margin-bottom: 14px; }
.cf7-upload__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 11px 14px;
    background: none;
    border: 2px dashed #d5d5d5;
    border-radius: 8px;
    font-family: var(--sh-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--sh-text-muted, #666);
    cursor: pointer;
    transition: border-color .2s, color .2s;
}
.cf7-upload__toggle:hover { border-color: var(--sh-cta); color: var(--sh-text); }
.cf7-upload__toggle.is-open { border-style: solid; border-color: var(--sh-cta); color: var(--sh-text); }
.cf7-upload__icon { flex: 0 0 auto; }
.cf7-upload__opt { font-weight: 400; opacity: .7; }
.cf7-upload__panel { padding-top: 10px; }
.cf7-upload__panel input[type="file"] {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    background: #fafafa;
    font-size: 14px;
    box-sizing: border-box;
    cursor: pointer;
}
.cf7-upload__hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--sh-text-muted, #888);
}
.cf7-upload__hint.is-selected { color: #1a7f37; font-weight: 600; }

.cf7-checkbox { margin: 14px 0; }
.cf7-checkbox p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}
.cf7-checkbox .wpcf7-form-control-wrap { display: inline-flex; }
.cf7-checkbox .wpcf7-list-item { margin: 0; }
.cf7-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--sh-cta);
}
.cf7-checkbox a { color: var(--sh-text); text-decoration: underline; }

.sh-cta__form-card .l7b { margin: 14px 0; }

.cf7-submit-wrap { margin-top: 16px; }
.cf7-submit-btn,
.sh-cta__form-card .wpcf7-submit {
    background: var(--sh-cta);
    color: var(--sh-bg-dark);
    font-family: 'Figtree', var(--sh-font-heading);
    font-weight: 800;
    font-size: var(--sh-cta-font-size);
    padding: var(--sh-cta-padding-v) var(--sh-cta-padding-h);
    border: none;
    border-radius: var(--sh-radius-pill);
    cursor: pointer;
    transition: opacity 0.2s;
    width: auto;
}
.cf7-submit-btn:hover,
.sh-cta__form-card .wpcf7-submit:hover { opacity: 0.85; }
@media (max-width: 767px) {
    .cf7-submit-btn,
    .sh-cta__form-card .wpcf7-submit { width: 100%; }
}

.sh-cta__checks {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 20px;
}
.sh-cta__check {
    font-size: var(--sh-body);
    color: var(--sh-text);
    white-space: nowrap;
}

.sh-anrufen {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e2e2;
}
.sh-anrufen__phone {
    font-family: var(--sh-font-heading);
    font-weight: 600;
    text-decoration: none;
}
.sh-anrufen__phone:hover {
    text-decoration: underline;
}

@media (max-width: 575px) {
    .cf7-field-row { flex-direction: column; }
    .sh-cta__form-card { padding: 24px; }
    .sh-anrufen { flex-direction: column; text-align: center; }
    .sh-cta__checks { flex-direction: column; align-items: center; gap: 4px; }
}

.sh-pas {
    padding: var(--sh-section-py) 0;
}

.sh-pas__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sh-gap);
    align-items: start;
}

.sh-pas__text h2 {
    margin-bottom: 24px;
}
.sh-pas__text p {
    margin-bottom: 20px;
}
.sh-pas__closing {
    margin-top: 8px;
    margin-bottom: 0 !important;
}

/* aspect-ratio reserves height before the lazy image loads to avoid CLS */
.sh-pas__image-wrap {
    border-radius: var(--sh-radius);
    overflow: hidden;
    aspect-ratio: 3 / 2;
    max-height: 420px;
}
.sh-pas__image {
    width: 100%;
    height: 100%;
    max-height: 420px;
    border-radius: var(--sh-radius);
    object-fit: cover;
}
.sh-pas__image-placeholder {
    height: 280px;
    background: var(--sh-bg-alt);
    border: 2px dashed var(--sh-border, #e0e0e0);
    border-radius: var(--sh-radius);
}

.sh-pas__quote {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: color-mix(in srgb, var(--sh-cta) 15%, white);
    border-left: 4px solid var(--sh-cta);
    border-radius: 0 var(--sh-radius) var(--sh-radius) 0;
    padding: 28px 32px;
    margin-top: var(--sh-gap);
}
.sh-pas__quote-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--sh-cta);
}
.sh-pas__quote-body p {
    font-style: italic;
    margin-bottom: 12px !important;
}
.sh-pas__quote-author {
    display: block;
    font-family: var(--sh-font-heading);
    font-weight: 800;
}
.sh-pas__quote-role {
    display: block;
    font-size: 14px;
    color: rgba(0,0,0,0.5);
    margin-top: 2px;
}

.sh-pas__cta {
    margin-top: 32px;
}

@media (max-width: 991px) {
    .sh-pas__grid {
        grid-template-columns: 1fr;
    }
    .sh-pas__image-wrap {
        max-width: 600px;
    }
}
@media (max-width: 575px) {
    .sh-pas__quote {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
        gap: 16px;
    }
}

.sh-kaufberatung {
    padding: calc(var(--sh-section-py) * 0.8) 0;
}
.sh-kaufberatung h2 { margin-bottom: 8px; }
.sh-kaufberatung__subline { margin-bottom: 40px; }

.sh-kaufberatung__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sh-gap);
}
.sh-kaufberatung__card {
    background: var(--sh-bg-light);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--sh-radius);
    padding: 28px;
}
.sh-kaufberatung__num {
    display: inline-block;
    background: var(--sh-text);
    color: var(--sh-text-light);
    font-family: var(--sh-font-special);
    font-size: var(--sh-badge-size);
    padding: 5px 14px;
    border-radius: var(--sh-radius-pill);
    margin-bottom: 20px;
}
.sh-kaufberatung__card h3 { margin-bottom: 12px; }
.sh-kaufberatung__card p { margin-bottom: 12px; }

@media (max-width: 767px) {
    .sh-kaufberatung__grid { grid-template-columns: 1fr; }
}

/* FAQ */
.sh-faq {
    background: var(--sh-bg-alt);
    padding: calc(var(--sh-section-py) * 0.66) 0;
}
.sh-faq h2 { margin-bottom: 8px; }
.sh-faq__subline { margin-bottom: 40px; }

.sh-faq__list {
    max-width: 800px;
}
.sh-faq__item {
    border-bottom: 1px solid var(--sh-border, rgba(0,0,0,0.08));
}
.sh-faq__item:first-child {
    border-top: 1px solid var(--sh-border, rgba(0,0,0,0.08));
}
.sh-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-family: var(--sh-font-heading);
    font-weight: var(--sh-h4-weight, 800);
    font-size: var(--sh-h4);
    cursor: pointer;
    list-style: none;
}
.sh-faq__question::-webkit-details-marker { display: none; }
.sh-faq__question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--sh-text);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.2s ease;
}
.sh-faq__item[open] .sh-faq__question::after {
    content: '−';
}
.sh-faq__answer {
    padding: 0 0 20px;
}
.sh-faq__answer p {
    margin: 0;
}

.sh-seo {
    background: var(--sh-bg-alt);
    padding: calc(var(--sh-section-py) * 0.66) 0;
}
.sh-seo h2 {
    margin-bottom: 12px;
}
.sh-seo p {
    color: rgba(0,0,0,0.6);
    margin-bottom: 12px;
    font-size: 15px;
}

.sh-seo__leistungen {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}
.sh-seo__leistungen li {
    margin-bottom: 6px;
    font-size: 15px;
    color: rgba(0,0,0,0.5);
}
.sh-seo__leistungen a {
    color: var(--sh-text);
    text-decoration: underline;
    text-decoration-color: rgba(0,0,0,0.2);
    text-underline-offset: 2px;
    font-weight: 600;
}
.sh-seo__leistungen a:hover {
    text-decoration-color: var(--sh-text);
}
.sh-seo__leistungen strong {
    font-weight: 600;
    color: var(--sh-text);
}
.sh-seo__leistungen span {
    color: rgba(0,0,0,0.45);
    margin-left: 4px;
}

/* freie Inhalte im SEO-Text (z.B. Laserseiten: Specs, Zitat, Arbeitsfotos) */
.sh-seo h3 {
    margin: 26px 0 10px;
    font-size: 18px;
    color: var(--sh-text);
}
.sh-seo ul:not(.sh-seo__leistungen) {
    margin: 0 0 14px;
    padding-left: 20px;
}
.sh-seo ul:not(.sh-seo__leistungen) li {
    margin-bottom: 6px;
    font-size: 15px;
    color: rgba(0,0,0,0.6);
}
.sh-seo em {
    font-style: italic;
    color: var(--sh-text);
}

.sh-varianten {
    background: var(--sh-bg-alt, #f5f5f5);
    padding: var(--sh-section-py) 0;
}
.sh-varianten h2 { margin-bottom: 8px; }
.sh-varianten__subline { margin-bottom: 40px; }

.sh-varianten__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sh-gap);
}
.sh-varianten__card {
    background: var(--sh-bg-light, #fff);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--sh-radius);
    padding: 32px 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.sh-varianten__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.sh-varianten__card h3 { margin-bottom: 12px; }
.sh-varianten__card p {
    font-size: 15px;
    color: var(--sh-text);
    margin-bottom: 16px;
}
.sh-varianten__badge {
    display: inline-block;
    margin-top: auto;
    font-size: var(--sh-badge-size);
}

@media (max-width: 991px) {
    .sh-varianten__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .sh-varianten__grid { grid-template-columns: 1fr; }
}

.sh-diff {
    background: var(--sh-bg-alt, #f5f5f5);
    color: var(--sh-text);
    padding: var(--sh-section-py) 0;
}
.sh-diff h2 { color: var(--sh-text); margin-bottom: 8px; }
.sh-diff__subline { margin-bottom: 40px; }

.sh-diff__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sh-gap);
}
.sh-diff__card {
    background: var(--sh-bg-light, #fff);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--sh-radius);
    padding: 28px;
}
.sh-diff__num {
    display: inline-block;
    background: var(--sh-text);
    color: var(--sh-text-light);
    font-family: var(--sh-font-special);
    font-size: var(--sh-badge-size);
    padding: 5px 14px;
    border-radius: var(--sh-radius-pill);
    margin-bottom: 20px;
}
.sh-diff__card h3 {
    margin-bottom: 12px;
}
.sh-diff__card p {
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .sh-diff__grid { grid-template-columns: 1fr; }
}

.sh-team {
    padding: var(--sh-section-py) 0;
    background: var(--sh-bg-alt, #f5f5f5);
}
.sh-team h2 { margin-bottom: 8px; }
.sh-team__subline { margin-bottom: 40px; color: var(--sh-text-muted); }

.sh-team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sh-gap);
    align-items: stretch;
}
.sh-team__card {
    background: var(--sh-bg-light, #fff);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--sh-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.sh-team__img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--sh-bg-alt);
}
.sh-team__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sh-team__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.sh-team__title {
    font-size: var(--sh-h4);
    margin: 0 0 10px;
}
.sh-team__desc {
    color: var(--sh-text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 0 12px;
}
.sh-team__names {
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .sh-team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .sh-team__grid { grid-template-columns: 1fr; }
}

.sh-story {
    padding: calc(var(--sh-section-py) * 1.2) 24px;
    background: var(--sh-bg-light, #fff);
}
.sh-story__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}
.sh-story__eyebrow {
    font-family: var(--sh-font-special);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--sh-text-muted);
    margin: 0 0 24px;
    position: relative;
    padding-left: 36px;
}
.sh-story__eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--sh-text-muted);
}
.sh-story__headline {
    font-family: var(--sh-font-heading);
    font-size: clamp(1.75rem, 1.4rem + 1.6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--sh-text);
    margin: 0 0 32px;
}
.sh-story__lead {
    font-family: var(--sh-font-heading);
    font-size: clamp(1.15rem, 1rem + 0.4vw, 1.4rem);
    line-height: 1.55;
    font-weight: 500;
    color: var(--sh-text);
    margin: 0 0 32px;
}
.sh-story__body {
    font-size: var(--sh-body, 1rem);
    line-height: 1.75;
    color: var(--sh-text);
}
.sh-story__body p {
    margin: 0 0 1.2em;
}
.sh-story__body p:last-child {
    margin-bottom: 0;
}
.sh-story__pullquote {
    font-family: var(--sh-font-heading);
    font-style: italic;
    font-size: clamp(1.2rem, 1rem + 0.5vw, 1.5rem);
    line-height: 1.45;
    color: var(--sh-text);
    margin: 48px 0;
    padding: 0 0 0 24px;
    border: 0;
    border-left: 3px solid var(--sh-cta, #ffe228);
}
.sh-story__signature {
    font-size: 0.95rem;
    color: var(--sh-text-muted);
    margin: 32px 0 0;
    text-align: right;
}

.sh-gruender {
    padding: var(--sh-section-py) 0;
    background: var(--sh-bg-alt, #f5f5f5);
    position: relative;
    overflow: hidden;
}
.sh-gruender--has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--sh-gruender-bg) center/cover no-repeat;
    opacity: 0.06;
    z-index: 0;
}
.sh-gruender .sh-container {
    position: relative;
    z-index: 1;
}

.sh-gruender__grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: center;
}
.sh-gruender__portrait {
    aspect-ratio: 4/5;
    border-radius: var(--sh-radius);
    overflow: hidden;
    background: var(--sh-bg-light, #fff);
    border: 1px solid rgba(0,0,0,0.06);
}
.sh-gruender__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sh-gruender__headline {
    font-family: var(--sh-font-heading);
    font-size: clamp(1.3rem, 1.1rem + 0.7vw, 1.7rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--sh-text);
    margin: 0 0 20px;
}
.sh-gruender__quote {
    margin: 0 0 24px;
    padding: 0;
    border: 0;
}
.sh-gruender__quote p {
    font-family: var(--sh-font-heading);
    font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--sh-text);
    margin: 0;
}
.sh-gruender__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sh-gruender__name {
    font-weight: 800;
    font-size: 1.1rem;
}
.sh-gruender__role {
    color: var(--sh-text-muted);
    font-size: 0.95rem;
}

.sh-gruender__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sh-gap);
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.sh-gruender__stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.sh-gruender__stat-num {
    font-family: var(--sh-font-heading);
    font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.5rem);
    font-weight: 800;
    line-height: 1;
    color: var(--sh-text);
}
.sh-gruender__stat-label {
    font-size: 0.95rem;
    color: var(--sh-text-muted);
}

@media (max-width: 991px) {
    .sh-gruender__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .sh-gruender__portrait {
        max-width: 280px;
        aspect-ratio: 1/1;
    }
    .sh-gruender__stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
    }
}

.sh-usp-bar {
    background: var(--sh-cta);
    padding: 48px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sh-gap);
}
.sh-usp-bar__item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.sh-usp-bar__icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sh-bg-dark, #111);
}
.sh-usp-bar__icon img,
.sh-usp-bar__icon svg {
    width: 64px;
    height: 64px;
    display: block;
    stroke: currentColor;
}
@media (max-width: 991px) {
    .sh-usp-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .sh-usp-bar { grid-template-columns: repeat(2, 1fr); }
}

.sh-footer-cards {
    background: var(--sh-bg-dark, #1a1a1a);
    padding: var(--sh-section-py) 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sh-gap);
}
.sh-footer-cards--2col { grid-template-columns: repeat(2, 1fr); }
.sh-footer-cards__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 32px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--sh-radius-lg);
    color: var(--sh-text-light);
    text-decoration: none;
}
.sh-footer-cards__label {
    font-family: var(--sh-font-heading);
    font-weight: 800;
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--sh-text-light);
}
.sh-footer-cards__text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    flex: 1;
}
.sh-footer-cards__btn {
    display: inline-block;
    margin-top: auto;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--sh-radius);
    color: var(--sh-text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s;
    align-self: flex-start;
}
.sh-footer-cards__btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

@media (max-width: 767px) {
    .sh-footer-cards { grid-template-columns: 1fr; }
}

/* Footer */
.sh-footer {
    background: var(--sh-cta);
    padding: 48px 0 24px;
}
.sh-footer__products {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
}
.sh-footer__product-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.sh-footer__product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.sh-footer__product-list li { list-style: none; }
.sh-footer__logo {
    justify-self: end;
    flex-shrink: 0;
}
.sh-footer__logo img,
.sh-footer__logo svg { height: 60px; width: auto; }

.sh-footer__contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--sh-gap);
    margin-bottom: 40px;
}
.sh-footer__contact-item strong {
    display: block;
    font-family: var(--sh-font-heading);
    font-weight: 800;
    margin-bottom: 4px;
}
.sh-footer__contact-item a { color: inherit; }

.sh-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}
.sh-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.07);
    color: inherit;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.sh-footer__social-link svg { width: 18px; height: 18px; display: block; }
.sh-footer__social-link:hover {
    background: var(--sh-text, #111);
    color: var(--sh-cta);
    transform: translateY(-2px);
}

.sh-footer__legal {
    margin-bottom: 24px;
}
.sh-footer__legal-list {
    display: flex;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.sh-footer__legal-list li { list-style: none; }
.sh-footer__legal a { text-decoration: underline; }

.sh-footer__copy {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--sh-text);
}
.sh-footer__copy a { color: var(--sh-text); text-decoration: none; }
.sh-footer__made-by {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 13px;
    color: var(--sh-text-muted);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.sh-footer__made-by:hover { opacity: 1; }
.sh-footer__made-by-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
}
.sh-footer__made-by-logo {
    width: 24px;
    height: 12px;
    color: currentColor;
}

@media (max-width: 767px) {
    .sh-footer__products { grid-template-columns: 1fr; gap: 24px; }
    .sh-footer__logo { justify-self: start; }
    .sh-footer__contact { grid-template-columns: 1fr; }
    .sh-footer__copy { flex-direction: column; gap: 8px; }
}

/* Legal pages */
.sh-impr {
    background: var(--sh-bg-alt);
    padding: var(--sh-section-py) 0;
}

.sh-impr__headline {
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 32px;
}

.sh-impr__card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 48px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.sh-impr__card--zusatz {
    margin-top: 24px;
}

.sh-impr__block {
    padding: 24px 0;
    border-bottom: 1px solid var(--sh-bg-alt);
}
.sh-impr__block:first-child {
    padding-top: 0;
}
.sh-impr__block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sh-impr__label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sh-text-muted, #888);
    margin: 0 0 8px 0;
}

.sh-impr__firma {
    font-family: var(--sh-font-heading);
    font-weight: 800;
    font-size: clamp(20px, 2vw, 26px);
    margin: 0;
}

.sh-impr__block p {
    margin: 0;
    line-height: 1.7;
}
.sh-impr__block a {
    color: var(--sh-primary);
    text-decoration: none;
}
.sh-impr__block a:hover {
    text-decoration: underline;
}

.sh-impr__dl {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sh-impr__dl-row {
    display: flex;
    gap: 12px;
    align-items: baseline;
}
.sh-impr__dl-row dt {
    color: var(--sh-text-muted, #888);
    font-size: 14px;
    min-width: 160px;
    flex-shrink: 0;
}
.sh-impr__dl-row dd {
    margin: 0;
    font-weight: 500;
}

.sh-impr__text {
    line-height: 1.7;
}
.sh-impr__text p:first-child { margin-top: 0; }
.sh-impr__text p:last-child { margin-bottom: 0; }

.sh-impr__prose {
    line-height: 1.75;
}
.sh-impr__prose h2 {
    font-size: clamp(18px, 2vw, 22px);
    margin: 32px 0 12px 0;
}
.sh-impr__prose h2:first-child {
    margin-top: 0;
}
.sh-impr__prose h3 {
    font-size: clamp(16px, 1.5vw, 18px);
    margin: 24px 0 8px 0;
}
.sh-impr__prose p {
    margin: 0 0 12px 0;
}
.sh-impr__prose ul,
.sh-impr__prose ol {
    margin: 0 0 16px 0;
    padding-left: 24px;
}
.sh-impr__prose li {
    margin-bottom: 6px;
}
.sh-impr__prose a {
    color: var(--sh-primary);
    text-decoration: underline;
}
.sh-impr__prose strong {
    font-weight: 600;
}

@media (max-width: 767px) {
    .sh-impr__card {
        padding: 28px 24px;
    }
    .sh-impr__dl-row {
        flex-direction: column;
        gap: 2px;
    }
    .sh-impr__dl-row dt {
        min-width: 0;
    }
}

/* Contact */
.sh-kontakt {
    padding: clamp(60px, 10vw, 120px) 0;
    background: var(--sh-bg-section, #f7f7f5);
}

.sh-kontakt__header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 64px);
}
.sh-kontakt__header h1 {
    font-family: var(--sh-font-heading);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--sh-text, #1a1a1a);
    margin: 0 0 12px;
}
.sh-kontakt__header p {
    font-family: var(--sh-font-body);
    font-size: clamp(16px, 2.5vw, 19px);
    color: var(--sh-text-muted, #555);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.sh-kontakt__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
    max-width: 640px;
    margin: 0 auto;
}

.sh-kontakt__info {
    width: 100%;
}

.sh-kontakt__card {
    background: #fff;
    border-radius: 16px;
    padding: clamp(24px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sh-kontakt__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-family: var(--sh-font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--sh-text, #1a1a1a);
}
.sh-kontakt__item strong {
    font-weight: 700;
}
.sh-kontakt__item .l7bh-weekday-list ul { list-style: none; margin: 0; padding: 0; }
.sh-kontakt__item .l7bh-weekday-list li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    font-size: 14px;
    line-height: 1.7;
}
.sh-kontakt__item .l7bh-weekday-list .day-name { color: var(--sh-text-muted, #666); font-weight: 500; }
.sh-kontakt__item .l7bh-weekday-note {
    margin: 12px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--sh-text-muted, #666);
    font-style: italic;
}
.sh-kontakt__item a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s;
}
.sh-kontakt__item a:hover {
    color: var(--sh-cta);
}

.sh-kontakt__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    color: #1a1a1a;
}

/* Leistungen swiper */
.sh-leistungen {
    padding: var(--sh-section-py) 0;
    width: 100%;
    background: var(--sh-bg-alt, #f5f5f5);
}

/* when hero is followed by leistungen, the two share exactly 100vh */
[data-section="hero"]:has(+ [data-section="leistungen"]) .sh-hero {
    min-height: calc(
        100vh
        - var(--sh-nav-h)
        - var(--sh-topbar-h)
        - var(--sh-swiper-h)
    );
}
[data-section="hero"] + [data-section="leistungen"] .sh-leistungen {
    padding: 16px 0;
    height: var(--sh-swiper-h);
}
[data-section="hero"] + [data-section="leistungen"] .sh-leistungen__subline {
    display: none;
}

@media (min-width: 1200px) {
    [data-section="hero"] + [data-section="leistungen"] .sh-leistungen {
        display: flex;
        align-items: center;
        gap: 20px;
        padding-left: max(2vw, 24px);
    }
    [data-section="hero"] + [data-section="leistungen"] .sh-leistungen__header {
        flex: 0 0 132px;
        padding: 0;
        margin: 0;
    }
    [data-section="hero"] + [data-section="leistungen"] .sh-leistungen__headline {
        font-size: clamp(0.85rem, 0.8rem + 0.2vw, 1rem);
        line-height: 1.3;
        margin: 0;
    }
    [data-section="hero"] + [data-section="leistungen"] .sh-leistungen__track {
        flex: 1;
        min-width: 0;
        padding-left: 0;
        padding-right: max(2vw, 24px);
        scroll-padding-left: 0;
    }
}

@media (max-width: 1199px) {
    [data-section="hero"]:has(+ [data-section="leistungen"]) .sh-hero {
        min-height: calc(
            100vh
            - var(--sh-nav-h-mobile)
            - var(--sh-topbar-h)
            - var(--sh-swiper-h-mobile)
        );
    }
    [data-section="hero"] + [data-section="leistungen"] .sh-leistungen {
        height: var(--sh-swiper-h-mobile);
    }
    [data-section="hero"] + [data-section="leistungen"] .sh-leistungen__header {
        padding: 0 max(2vw, 24px);
        margin-bottom: 8px;
    }
    [data-section="hero"] + [data-section="leistungen"] .sh-leistungen__headline {
        font-size: 0.85rem;
        margin: 0;
    }
}
.sh-leistungen__header {
    padding: 0 max(2vw, 24px);
    margin-bottom: var(--sh-gap, 24px);
}
.sh-leistungen__headline {
    font-size: var(--sh-h2);
    font-weight: var(--sh-h2-weight);
    line-height: var(--sh-h2-lh);
    color: var(--sh-text);
    margin: 0 0 6px;
}
.sh-leistungen__subline {
    color: var(--sh-text-muted);
    font-size: var(--sh-body);
    margin: 0;
}

.sh-leistungen__track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 max(2vw, 24px) 8px;
    scroll-padding-left: max(2vw, 24px);
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.sh-leistungen__track::-webkit-scrollbar {
    display: none;
}

.sh-leistungen__card {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 8px 28px 8px 8px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--sh-radius);
    text-decoration: none;
    color: var(--sh-text, #1d1d1d);
    scroll-snap-align: start;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.sh-leistungen__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
    border-color: rgba(0,0,0,0.08);
}
.sh-leistungen__card:focus-visible {
    outline: 2px solid var(--sh-text);
    outline-offset: 3px;
    transform: translateY(-3px);
}

.sh-leistungen__progress {
    position: relative;
    height: 3px;
    background: rgba(0,0,0,0.06);
    border-radius: 3px;
    margin: 10px max(2vw, 24px) 0;
    overflow: hidden;
}
.sh-leistungen__progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: var(--sh-text);
    border-radius: 3px;
    transition: transform 0.1s linear;
    transform: translateX(0);
}

/* hidden in the combined hero layout — not enough room */
[data-section="hero"] + [data-section="leistungen"] .sh-leistungen__progress {
    display: none;
}

.sh-leistungen__card-img {
    flex: 0 0 88px;
    width: 88px;
    height: 88px;
    border-radius: calc(var(--sh-radius) - 4px);
    overflow: hidden;
}
.sh-leistungen__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sh-leistungen__card-title {
    flex: 1;
    font-family: 'Figtree', sans-serif;
    font-weight: 800;
    font-size: clamp(0.8rem, 0.72rem + 0.2vw, 0.95rem);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.sh-leistungen__badge {
    display: inline-block;
    padding: 2px 9px;
    background: var(--sh-cta, #ffe228);
    color: var(--sh-bg-dark, #111);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.02em;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 6px;
    white-space: nowrap;
}

.sh-leistungen__card-arrow {
    flex: 0 0 16px;
    opacity: 0.2;
    transition: opacity 0.2s, transform 0.2s;
}
.sh-leistungen__card:hover .sh-leistungen__card-arrow {
    opacity: 0.6;
    transform: translateX(3px);
}

@media (max-width: 767px) {
    .sh-leistungen__card {
        padding: 6px 20px 6px 6px;
        gap: 12px;
    }
    .sh-leistungen__card-img {
        flex: 0 0 60px;
        width: 60px;
        height: 60px;
    }
    .sh-leistungen__track {
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .sh-kontakt__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}


/* ========================================================================
   LEISTUNGEN BIG (Bento-Grid) — portiert & an Singhuber angepasst
   ======================================================================== */
.sh-leistungen-big {
    background: var(--sh-bg-alt, #f5f5f5);
    padding: var(--sh-section-py) 0;
}
.sh-leistungen-big__container { max-width: var(--sh-container); margin: 0 auto; padding: 0 var(--sh-container-px, 24px); }
.sh-leistungen-big__head { text-align: left; margin: 0 0 clamp(36px, 6vh, 56px); }
.sh-leistungen-big__head h2 { color: var(--sh-text); margin: 0 0 8px; }
.sh-leistungen-big__eyebrow {
    display: inline-block;
    background: var(--sh-cta);
    color: var(--sh-bg-dark, #1a1a1a);
    padding: 6px 14px;
    border-radius: var(--sh-radius-pill, 50px);
    font-family: var(--sh-font-body);
    font-weight: 700; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 20px;
}
.sh-leistungen-big__subline { margin: 0; }
.sh-leistungen-big__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.sh-leistung-block {
    position: relative; aspect-ratio: 16/10;
    border-radius: var(--sh-radius); overflow: hidden;
    text-decoration: none; color: #fff; cursor: pointer;
    isolation: isolate; display: block;
    transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1);
}
.sh-leistung-block:hover { transform: translateY(-4px); }
.sh-leistung-block__bg {
    position: absolute; inset: 0; z-index: -2;
    background-size: cover; background-position: center;
    transition: transform 0.7s cubic-bezier(0.2,0.8,0.2,1); overflow: hidden;
}
.sh-leistung-block__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.sh-leistung-block:hover .sh-leistung-block__bg { transform: scale(1.06); }
.sh-leistung-block__overlay {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.78) 100%);
    transition: background 0.4s;
}
.sh-leistung-block:hover .sh-leistung-block__overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.9) 100%);
}
.sh-leistung-block__bg--placeholder { background: linear-gradient(135deg, #3a3a3a 0%, #111 100%); }
.sh-leistung-block__num {
    position: absolute; top: 24px; left: 28px;
    font-family: var(--sh-font-body); font-size: 12px; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.9); z-index: 1;
}
.sh-leistung-block__content {
    position: relative; z-index: 1;
    padding: 40px 28px 26px; height: 100%;
    display: flex; flex-direction: column; justify-content: flex-end; gap: 12px;
}
.sh-leistung-block__title {
    font-family: var(--sh-font-heading); font-weight: 800;
    font-size: clamp(20px, 1.9vw, 28px); line-height: 1.1; letter-spacing: -0.01em;
    color: #fff; max-width: 16ch; margin: 0;
}
.sh-leistung-block__text {
    font-family: var(--sh-font-body); font-size: 15px; line-height: 1.45;
    color: rgba(255,255,255,0.9); max-width: 34ch; margin: 0;
}
.sh-leistung-block__arrow {
    position: absolute; bottom: 24px; right: 24px;
    width: 46px; height: 46px; background: #fff; color: var(--sh-text, #1a1a1a);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.25s cubic-bezier(0.2,0.8,0.2,1); z-index: 1;
}
.sh-leistung-block:hover .sh-leistung-block__arrow {
    background: var(--sh-cta); color: var(--sh-bg-dark, #1a1a1a); transform: rotate(-45deg);
}@media (max-width: 900px) {
    .sh-leistungen-big__grid { grid-template-columns: 1fr; }
    .sh-leistung-block { aspect-ratio: 4/3; }
}
