/* === Rumler GmbH – Main CSS === */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);   /* 16px */
    font-weight: 400;
    color: var(--color-dark);
    background: var(--color-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1 {
    font-family: var(--font-display);  /* Lato */
    font-size: var(--fs-hero);         /* 60px */
    font-weight: 700;
    line-height: 1.05;
}
h2 {
    font-family: var(--font-heading);  /* Space Grotesk */
    font-size: var(--fs-h2);           /* 40px */
    font-weight: 700;
    line-height: 1.15;
}
h3 {
    font-family: var(--font-heading);  /* Space Grotesk */
    font-size: var(--fs-h3);           /* 26px */
    font-weight: 700;
    line-height: 1.2;
}
h4 {
    font-family: var(--font-heading);  /* Space Grotesk */
    font-size: var(--fs-h4);           /* 18px */
    font-weight: 600;
    line-height: 1.3;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ── Layout-Hilfsmittel ── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px);
}

/* ── TOOLBAR ── */
.toolbar {
    background: var(--color-blue);
    color: var(--color-white);
}
.toolbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
    padding: 0 var(--px);
}
.toolbar__left, .toolbar__right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.toolbar a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.toolbar a:hover { color: var(--color-orange); }
.toolbar svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Sprachschalter */
.lang-switcher {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 4px;
}
.lang-switcher .sep { opacity: 0.5; }
.lang-switcher a { color: var(--color-white); transition: var(--transition); }
.lang-switcher a:hover { color: var(--color-orange); }
.lang-switcher .active { color: var(--color-orange); }

/* ── HAUPTHEADER ── */
.site-header {
    background: var(--color-bg);
    position: relative;
}
.header__main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 140px;
    padding: 0 var(--px);
}

/* Navigation – absolut zentriert */
.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0;
}
.main-nav a,
.main-nav .nav-dropdown-btn {
    font-family: var(--font-nav);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--color-dark);
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.main-nav a:hover,
.main-nav .nav-dropdown-btn:hover,
.main-nav a.active,
.main-nav .nav-dropdown-btn.active { color: var(--color-orange); }

/* Produkte: Link + Chevron getrennt */
.nav-dropdown-wrap {
    display: flex;
    align-items: center;
}
.nav-dropdown-link {
    font-family: var(--font-nav);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--color-dark);
    padding: 8px 4px 8px 20px;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.nav-dropdown-link:hover,
.nav-dropdown-link.active { color: var(--color-orange); }

.nav-dropdown-chevron {
    display: flex;
    align-items: center;
    padding: 8px 16px 8px 4px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-dark);
    transition: var(--transition);
}
.nav-dropdown-chevron:hover,
.nav-dropdown-chevron.active { color: var(--color-orange); }

.nav-chevron {
    width: 14px; height: 14px;
    transition: transform 0.2s ease;
}
.nav-dropdown-chevron.open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown-btn.open .nav-chevron { transform: rotate(180deg); }

/* Logo */
.header-logo img {
    height: 120px;
    width: auto;
    display: block;
}

/* ── MEGA-DROPDOWN ── */
.mega-dropdown {
    position: fixed;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    z-index: 200;
    padding: 2.5rem 0;
    display: none;
    animation: dropFadeIn 0.18s ease forwards;
}
.mega-dropdown.open { display: block; }

@keyframes dropFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mega-dropdown__inner {
    display: flex;
    justify-content: center;
}
.mega-dropdown__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 6rem;
}
.mega-dropdown a {
    font-family: var(--font-nav);
    font-size: 19px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-dark);
    display: block;
    padding: 10px 0;
    transition: var(--transition);
}
.mega-dropdown a:hover,
.mega-dropdown a.active { color: var(--color-orange); }

/* ── STICKY HEADER ── */
.sticky-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    z-index: 300;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}
.sticky-header.visible { transform: translateY(0); }
.sticky-header .header__main { height: 80px; }
.sticky-header .header-logo img { height: 70px; }

/* ── MOBILE BURGER ── */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}
.burger-btn span {
    display: block;
    width: 24px; height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

/* ── MOBILE NAV – Fullscreen Overlay von links ── */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 600;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }

/* Backdrop */
.mobile-nav__backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 590;
    background: rgba(0,0,0,0.45);
}
body.nav-open .mobile-nav__backdrop { display: block; }
body.nav-open { overflow: hidden; }

/* Logo + Close */
.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 20px;
    border-bottom: 1px solid var(--color-gray-100);
    flex-shrink: 0;
}
.mobile-nav__logo img {
    height: 70px;
    width: auto;
    display: block;
}
.mobile-nav__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-nav__close:hover { color: var(--color-orange); }

/* Links */
.mobile-nav__links {
    flex: 1;
    padding: 8px 0;
}
.mobile-nav__links a {
    display: block;
    padding: 14px 28px;
    font-family: var(--font-nav);
    font-size: 17px;
    font-weight: 500;
    color: var(--color-dark);
    border-bottom: 1px solid var(--color-gray-100);
    text-decoration: none;
    transition: color 0.15s;
}
.mobile-nav__links a:hover,
.mobile-nav__links a.active { color: var(--color-orange); }
.mobile-nav__links .sub-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-gray-400);
    text-transform: uppercase;
    padding: 16px 28px 6px;
    border-bottom: none;
    pointer-events: none;
}
.mobile-nav__links .sub-link {
    padding: 10px 28px 10px 44px;
    font-size: 15px;
    color: var(--color-gray-700);
    border-bottom: 1px solid var(--color-gray-100);
}
.mobile-nav__links .sub-link:hover { color: var(--color-orange); }

/* Kontakt-Footer */
.mobile-nav__footer {
    padding: 20px 28px 32px;
    border-top: 2px solid var(--color-gray-100);
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}
.mobile-nav__contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-dark);
    text-decoration: none;
}
.mobile-nav__contact svg {
    flex-shrink: 0;
    color: var(--color-orange);
}
.mobile-nav__contact:hover { color: var(--color-orange); }

/* Sprachumschalter im Mobile-Menü */
.mobile-nav__lang {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-nav);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-gray-400);
    padding-top: 4px;
}
.mobile-nav__lang .active {
    color: var(--color-blue);
}
.mobile-nav__lang .sep {
    color: var(--color-gray-300);
    font-weight: 400;
}
.mobile-nav__lang a {
    color: var(--color-gray-400);
    text-decoration: none;
}
.mobile-nav__lang a:hover { color: var(--color-dark); }

/* ── HERO ── */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--color-dark);
    height: 710px;
}
.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 1;
}
/* Dunkler Gradient links → transparent rechts: erhält Lesbarkeit der Text-Spalte */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(21,20,28,0.78) 0%, rgba(21,20,28,0.55) 35%, rgba(21,20,28,0.15) 70%, rgba(21,20,28,0) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero__inner { z-index: 3; }
.hero__sparkles {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: screen;
}
.hero__inner {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0;
}
.hero__text {
    flex: 1;
    position: relative;
    z-index: 1;
    padding-right: 2rem;
}
.hero__subtitle {
    font-family: var(--font-display);   /* Lato */
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 1.25rem;
}
.hero__title {
    font-family: var(--font-heading);   /* Space Grotesk */
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid rgba(16,44,114,0.3);
    color: var(--color-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
    transition: border-color 0.2s ease;
}
.hero__cta:hover { border-color: var(--color-orange); }
.hero__cta svg { width: 16px; height: 16px; }

.hero__media {
    flex: 1;
    position: relative;
    height: 100%;
}
.hero__man {
    position: absolute;
    bottom: auto;
    left: -168px;
    top: 67px;
    transform: none;
    height: 550px;
    width: auto;
    max-width: none;
}
.hero__video {
    position: absolute;
    pointer-events: none;
    left: 170px;
    top: 102px;
    width: 365px;
    mix-blend-mode: screen;
    opacity: 0.9;
}

/* ============================================================
   LOCKED SECTION: hero-teasers
   Status: visuell abgenommen, Referenz-Diff bestanden
   Locked: 2026-04-15
   Klassen: .hero-teasers, .hero-teasers__inner, .hero-teasers__header,
            .hero-teasers__kicker, .hero-teasers__headline,
            .hero-teasers__grid, .teaser-card, .teaser-card__bg-wrapper,
            .teaser-card__bg, .teaser-card__content, .teaser-card__title
   NICHT VERÄNDERN ohne explizite Freigabe.
   ============================================================ */
.hero-teasers {
    margin-top: 150px;
    margin-bottom: 150px;
    padding: 0 20px;
}
.hero-teasers__inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.hero-teasers__header {
    margin-bottom: 40px;
}
.hero-teasers__header--secondary {
    margin-top: 80px;
}
.hero-teasers__header--secondary + .hero-teasers__grid--wide {
    margin-top: 0;
}
.hero-teasers__kicker {
    font-family: var(--font-display);   /* Lato */
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-orange);
    margin: 0 0 0.25rem;
    line-height: 1.2;
}
.hero-teasers__headline {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-dark);
    margin: 0;
    line-height: 1.1;
}
.hero-teasers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.teaser-card {
    display: block;
    text-decoration: none;
    background: var(--color-white);
}
.teaser-card__bg-wrapper {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.teaser-card__bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 3s ease;
}
.teaser-card:hover .teaser-card__bg {
    transform: scale(1.05);
}
.teaser-card__content {
    padding: 20px 0 0 0;
    background: var(--color-white);
}
.teaser-card__title {
    font-family: var(--font-nav);
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-dark);
    margin: 0 0 20px;
    line-height: 1.2;
}

/* ── Wide Teaser Cards (2 horizontale Kacheln, Bild|Text) ─── */
.hero-teasers__grid--wide {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
}
.teaser-card--wide {
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: stretch;
    background: var(--color-white);
}
.teaser-card--wide .teaser-card__bg-wrapper {
    aspect-ratio: 1 / 1;
}
.teaser-card--wide .teaser-card__content {
    padding: 24px 28px;
    background: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.teaser-card--wide .teaser-card__title {
    margin: 0;
    font-size: 24px;
}
.teaser-card__text {
    font-size: 15px;
    line-height: 1.55;
    color: #555;
    margin: 0;
}
.teaser-card__cta {
    align-self: flex-start;
    margin-top: 14px;
    cursor: pointer;
}
.teaser-card--wide:hover .teaser-card__cta { border-color: var(--color-orange); }
.teaser-card--wide:hover .teaser-card__cta .btn-primary__arrow { background: var(--color-orange); border-color: var(--color-orange); }
.teaser-card--wide:hover .teaser-card__cta .btn-primary__arrow svg { stroke: #fff; }
.teaser-card--wide:hover .teaser-card__cta .btn-primary__arrow svg path,
.teaser-card--wide:hover .teaser-card__cta .btn-primary__arrow svg line,
.teaser-card--wide:hover .teaser-card__cta .btn-primary__arrow svg polyline { stroke: #fff; }
.teaser-card--wide:hover .teaser-card__cta .btn-primary__text { color: var(--color-orange); }

/* ── HERO-CATEGORY-CARDS (3 Kategorie-Kacheln) ── */
.cat-cards {
    width: 100%;
    max-width: none;
    margin: 20px 0;
    padding: 0;
    background: var(--color-white);
}
.cat-cards__inner {
    width: 100%;
}
.cat-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.cat-card {
    position: relative;
    height: 300px;
    background: #ffffff;
    text-decoration: none;
}
.cat-card__freisteller {
    position: absolute;
    object-fit: fill;
    pointer-events: none;
    transform: scale(var(--fe-scale, 1)) translate(var(--tx, 0px), var(--ty, 0px));
    transform-origin: right top;
    transition: transform 0.08s linear;
}
.cat-card__content {
    position: absolute;
    bottom: 16px;
    left: 20px;
    z-index: 3;
    background: none;
    padding: 0;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cat-card__heading {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: #15141C;
    line-height: 1.25;
    margin: 0;
}
.cat-card__subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 34px;
    font-weight: 700;
    color: #E30713;
    line-height: 1.1;
}
.cat-card__link {
    /* Basis wird von btn-primary übernommen */
}
/* Kleine btn-primary Variante für cat-cards */
.btn-primary--sm .btn-primary__arrow {
    width: 38px;
    padding: 4px;
}
.btn-primary--sm .btn-primary__arrow svg {
    width: 14px;
    height: 14px;
}
.btn-primary--sm .btn-primary__text {
    font-size: 13px;
    padding: 9px 14px;
}
.cat-card:hover .cat-card__link { border-color: var(--color-orange); }
.cat-card:hover .cat-card__link .btn-primary__arrow { background: var(--color-orange); border-color: var(--color-orange); }
.cat-card:hover .cat-card__link .btn-primary__arrow svg { stroke: #fff; animation: btn-arrow-slide 0.45s cubic-bezier(0.4,0,0.2,1) forwards; }
.cat-card:hover .cat-card__link .btn-primary__arrow svg path,
.cat-card:hover .cat-card__link .btn-primary__arrow svg line,
.cat-card:hover .cat-card__link .btn-primary__arrow svg polyline { stroke: #fff; }
.cat-card:hover .cat-card__link .btn-primary__text { color: var(--color-orange); }

/* ── PRODUKT-KACHELN ── */
.products { padding: 4rem 0; background: var(--color-white); }
.products__header {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px) 2rem;
}
.products__headline {
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
}
.products__grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.product-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-gray-100);
}
.product-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover img { transform: scale(1.05); }
.product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16,44,114,0.75) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
}
.product-card__title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}
.product-card__link {
    font-size: 13px;
    color: var(--color-orange);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── 50 JAHRE SEKTION ── */
.years-section {
    padding: 150px 0 60px;
    background: var(--color-bg);
}
.years-section__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--px);
}

/* Tagline "50 JAHRE ERFAHRUNG" */
.years-section__tagline {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 400;
    color: var(--color-dark);
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 30px;
}
.tagline-nowrap {
    white-space: nowrap;
    display: inline-block;
}
.tagline-highlight {
    position: relative;
    display: inline-block;
    padding-bottom: 14px; /* Platz für die SVG-Unterstriche */
}
.tagline-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 16px;
    overflow: visible;
}
/* Stroke-Animation: Linien starten unsichtbar */
.tagline-underline path {
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
}
/* Erste Linie: zieht sich bei 2.5%–13% durch, bleibt bis 85%, blendet aus – alle 6s */
.years-section__tagline.is-visible .tagline-underline path:nth-child(1) {
    animation: draw-stroke-1 6s linear infinite;
}
/* Zweite Linie: startet bei 13%, wenn erste fertig */
.years-section__tagline.is-visible .tagline-underline path:nth-child(2) {
    animation: draw-stroke-2 6s linear infinite;
}
@keyframes draw-stroke-1 {
    0%      { stroke-dashoffset: 220; }
    14%     { stroke-dashoffset: 0;   }
    78%     { stroke-dashoffset: 0;   }
    78.01%  { stroke-dashoffset: 220; } /* sofortiger Reset – kein Rückwärtszeichnen */
    100%    { stroke-dashoffset: 220; }
}
@keyframes draw-stroke-2 {
    0%      { stroke-dashoffset: 220; }
    14%     { stroke-dashoffset: 220; } /* wartet bis Linie 1 fertig */
    28%     { stroke-dashoffset: 0;   }
    78%     { stroke-dashoffset: 0;   }
    78.01%  { stroke-dashoffset: 220; } /* sofortiger Reset */
    100%    { stroke-dashoffset: 220; }
}

/* Headline "IHR STRAHLMITTEL-SPEZIALIST AUS HILDEN" */
.years-section__headline {
    font-family: var(--font-display);   /* Lato */
    font-size: 30px;
    font-weight: 400;
    color: var(--color-orange);
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 2.5rem;
}

/* Fließtext */
.years-section__text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-gray-600);
    margin-bottom: 1rem;
}
.years-section__list {
    list-style: none;
    margin: 0.25rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.years-section__list li {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}
.years-section__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-orange);
    font-weight: 700;
}

/* CTA-Button (Outline-Stil wie Referenz) */
.years-section__cta-wrap {
    text-align: center;
    margin-top: 1rem;
}
.years-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 400;
    color: var(--color-dark);
    border: 1px solid #ADADB9;
    padding: 20px 24px;
    border-radius: 0;
    transition: color 0.2s, border-color 0.2s;
}
.years-section__cta:hover {
    color: var(--color-orange);
    border-color: var(--color-orange);
}
.years-section__cta svg { flex-shrink: 0; fill: currentColor; }

/* ── CTA-KARTEN ── */
.cta-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: var(--max-width);
    margin: 20px auto 80px;
    padding: 0 var(--px);
}
.cta-card {
    display: flex;
    flex-direction: column;
    background: var(--color-dark);
    border: 1px solid rgba(255,255,255,0.08);
    padding-top: 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}
.cta-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.cta-card:hover { box-shadow: 0 10px 28px rgba(0,0,0,0.35); }
.cta-card__label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-red);
    padding: 0 24px;
    margin-bottom: 6px;
}
.cta-card__title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    padding: 0 24px;
    line-height: 1.2;
    margin-bottom: 16px;
}
.cta-card__desc {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    padding: 0 24px;
    flex: 1;
    margin-bottom: 24px;
}
.cta-card__desc strong { color: #fff; font-weight: 600; }
.cta-card__link {
    display: inline-flex;
    align-items: stretch;
    margin: 0 24px 28px;
    border: 1.5px solid rgba(255,255,255,0.25);
    background: transparent;
    text-decoration: none;
    overflow: hidden;
    transition: border-color 0.2s, background 0.2s;
    align-self: flex-start;
}
.cta-card__link:hover { border-color: var(--color-red); background: var(--color-red); }
.cta-card__link:hover .cta-card__link-icon { background: var(--color-red); border-color: var(--color-red); }
.cta-card__link:hover .cta-card__link-icon svg { stroke: #fff; animation: btn-arrow-slide 0.45s cubic-bezier(0.4,0,0.2,1) forwards; }
.cta-card__link:hover .cta-card__link-text { color: #fff; }
.cta-card__link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    flex-shrink: 0;
    border-right: 1.5px solid rgba(255,255,255,0.25);
    transition: background 0.2s, border-color 0.2s;
}
.cta-card__link-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-red);
    fill: none;
    stroke-width: 2.5;
    transition: stroke 0.2s;
}
.cta-card__link-text {
    padding: 12px 18px;
    font-family: var(--font-nav);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    transition: color 0.2s;
}
.cta-card__img {
    width: 100%;
    display: block;
    margin-top: auto;
    opacity: 0.85;
}

/* ── KONTAKTFORMULAR ── */
.contact-section {
    padding: 150px 0;
    background: var(--color-white);
}
.contact-section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px);
}
.contact-section__heading {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-dark);
    margin-bottom: 50px;
    line-height: 1;
}
.contact-section__body {
    display: flex;
    flex-direction: row;
    min-height: 420px;
}
.contact-section__image {
    flex: 1;
    background: url('/assets/images/rumler-kontaktformular.webp') center center / cover no-repeat;
}
.contact-section__form-wrap {
    flex: 1;
    padding: 50px;
    background: var(--color-bg);
}

/* Formular */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    margin-bottom: 15px;
}
.cf-row--full {
    grid-template-columns: 1fr;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-dark);
    border-radius: 0;
    padding: 10px 0;
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--color-dark);
    outline: none;
    transition: border-color 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-dark);
    opacity: 1;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--color-orange);
}
.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}
/* Honeypot: off-screen statt display:none, damit Bots das Feld zwar
   sehen+ausfüllen können (Trap funktioniert), aber kein Sehender/Screenreader
   davon weiss. WCAG-konform - keine aria-hidden-Falle. */
.hp-field {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

/* Skip-Link: für Tastatur-User, erscheint beim ersten Tab oben links. */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 10000;
    padding: 12px 20px;
    background: var(--color-red);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-body);
    transition: top 0.15s ease;
}
.skip-link:focus {
    top: 0;
    outline: 2px solid #000;
    outline-offset: 0;
}
/* main-Landmark soll fokussierbar sein, aber kein sichtbarer Focus-Ring. */
#main-content:focus { outline: none; }
.btn-submit {
    width: 100%;
    margin-top: 24px;
}
.form-message {
    padding: 12px 0;
    margin-top: 1rem;
    font-size: 14px;
    display: none;
}
.form-message.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.form-message.error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── PHONE CTA (Footer) ── */
.footer-phonecta {
    max-width: var(--max-width);
    margin: 0 auto 150px;
    padding: 0 var(--px);
}
.footer-phonecta__inner {
    display: flex;
    flex-direction: row;
    border: 1px solid #ADADB9;
    min-height: 160px;
    overflow: hidden;
}
.footer-phonecta__text {
    flex: 0 0 40%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}
.footer-phonecta__heading {
    font-family: var(--font-heading);    /* Space Grotesk */
    font-size: var(--fs-h3);             /* 26px */
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-dark);
    line-height: 1.2;
}
.footer-phonecta__tel {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-orange);
    transition: color 0.2s;
}
.footer-phonecta__tel:hover { color: #e55f00; }
.footer-phonecta__img {
    flex: 1;
    overflow: hidden;
    clip-path: polygon(140px 0, 100% 0, 100% 100%, 0 100%);
}
.footer-phonecta__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--color-dark);
    padding: 130px 0 0;
}
.site-footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px) 130px;
}
.site-footer__headline {
    font-family: var(--font-display);    /* Lato */
    font-size: var(--fs-hero);           /* 60px */
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    margin-bottom: 50px;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.footer-col__title {
    font-family: var(--font-nav);
    font-size: 19px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}
.footer-col__title--orange {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-orange);
}
.footer-col a {
    display: block;
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 400;
    color: #ADADB9;
    padding: 5px 0;
    transition: color 0.2s;
    line-height: 1.4;
}
.footer-col a:hover { color: var(--color-orange); }
.footer-col--contact { display: flex; flex-direction: column; gap: 0; }
.footer-contact-group { margin-bottom: 30px; }
.footer-contact-group:last-child { margin-bottom: 0; }
.footer-col__label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ADADB9;
    margin-bottom: 4px;
}
.footer-col__label--orange { color: var(--color-orange); }
.footer-col__label--blue   { color: var(--color-blue); }
.footer-contact-group a {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 400;
    color: #ADADB9;
    line-height: 1.6;
    transition: color 0.2s;
}
.footer-contact-group a:hover { color: var(--color-orange); }

/* Footer Bottom */
.footer-bottom {
    background: var(--color-dark);
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem var(--px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: var(--font-heading);
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.footer-bottom__links { display: flex; gap: 1.5rem; }
.footer-bottom__inner a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom__inner a:hover { color: var(--color-orange); }
.footer-bottom__credit { font-size: 11px; opacity: 0.6; }

/* ── PAGE-HERO ── */
.page-hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45); /* Default; wird per inline style überschrieben */
}
.page-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px);
}
.page-hero__subtitle {
    font-family: var(--font-display);    /* Lato */
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-orange);
    margin-bottom: 10px;
}
.page-hero__title {
    font-family: var(--font-heading);    /* Space Grotesk */
    font-size: var(--fs-hero);           /* 60px */
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    line-height: 1.05;
    max-width: 860px;
}


/* ── PRODUKT-INTRO (SEO-Texte) ── */
.product-intro {
    padding: 4rem 0 3.5rem;
    background: var(--color-bg);
}
.product-intro--zub {
    padding: 3rem 0 3rem;
}
.product-intro .container {
    max-width: 900px;
}
.product-intro--split .container {
    max-width: 1180px;
}
.product-intro__split { display: block; }
.product-intro__split-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: stretch;
    margin-top: 1.5rem;
}
.product-intro__split-row .product-intro__text { margin: 0; }
.product-intro__split-img {
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
}
.product-intro__split-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 767px) {
    .product-intro__split-row { grid-template-columns: 1fr; gap: 28px; }
    .product-intro__split-img img { height: auto; }
}

/* ── Strassenmarkierung — Partner-Block (SWARCO + SISTRA) ── */
.rm-partners {
    padding: 3rem 0 4rem;
    background: var(--color-bg);
}
.rm-partners__headline {
    font-family: var(--font-heading);
    font-size: var(--fs-h3);
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 2.5rem;
}
.rm-partners__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.rm-partners__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    background: #fff;
    border: 1px solid #ececec;
}
.rm-partners__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
}
.rm-partners__logo {
    max-height: 44px;
    max-width: 170px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.rm-partners__text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}
@media (max-width: 767px) {
    .rm-partners__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.product-intro__headline {
    font-family: var(--font-heading);
    font-size: var(--fs-h3);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.25rem;
    padding-left: 1.25rem;
    border-left: 4px solid var(--color-orange);
}
.product-intro__text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-gray-600);
}

/* ── PRODUKT-LISTE + ACCORDION ── */
.product-list-section {
    padding: 100px 0;
    background: var(--color-white);
}
.product-list__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--px);
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Einzelnes Produkt-Element */
.product-item {}

/* Immer sichtbarer Header */
.product-item__head {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 50px;
}
.product-item__img-wrap {
    width: 300px;
    flex-shrink: 0;
}
.product-item__img-wrap img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    display: block;
}
.product-item__info {
    flex: 1;
    background: #F9F9F9;
    padding: 25px 25px 0 25px;
    display: flex;
    flex-direction: column;
}
.product-item__label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--color-orange);
    margin-bottom: 12px;
}
.product-item__name {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.product-item__grain {
    font-size: 14px;
    color: #888;
    margin-bottom: 14px;
}
.product-item__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
}
.product-item.open .product-item__desc,
.product-item--no-body .product-item__desc {
    -webkit-line-clamp: unset;
    overflow: visible;
    display: block;
}
.product-item__actions {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

/* Toggle-Button */
.btn-more, .btn-less {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border: 1px solid #ADADB9;
    background: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--color-dark);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.btn-more:hover, .btn-less:hover {
    border-color: var(--color-dark);
}
.toggle-icon {
    transition: transform 0.3s ease;
}
.product-item.open .btn-more .toggle-icon,
.product-item.open .btn-primary .toggle-icon,
.sa-item.open .btn-primary .toggle-icon {
    transform: rotate(180deg);
}
.btn-primary:hover .btn-primary__arrow .toggle-icon { animation: none; }

/* Ausklappbarer Bereich */
.product-item__body {
    margin-left: 350px;
    padding: 40px;
    background: #F9F9F9;
    animation: accordionOpen 0.3s ease;
}
@keyframes accordionOpen {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Tabellen-Grid */
.product-item__tables {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px 32px;
    margin-bottom: 28px;
    padding-top: 12px;
}
/* Robustheit: Grid-Items dürfen ihre Spur nicht sprengen (kein Überlappen
   benachbarter Tabellen, egal wie lang ein Wert/Wort ist). */
.product-item__tables > .data-table-wrap {
    min-width: 0;
}
.data-table {
    table-layout: fixed;
}
.data-table th,
.data-table td {
    overflow-wrap: anywhere;
    word-break: break-word;
}
/* Breite Tabellen (4-Spalten) immer über volle Breite */
.product-item__tables .data-table-wrap:has(.data-table--4col),
.product-item__tables .data-table-wrap:has(.data-table--matrix),
.product-item__tables .data-table-wrap:has(.data-table-split),
.product-item__tables .table-group {
    grid-column: 1 / -1;
}
/* Spaltengruppe: mehrere Tabellen nebeneinander, Zeilen darunter
   spalten-parallel; responsiv (1 Spalte auf schmalen Displays). */
.table-group {
    display: grid;
    grid-template-columns: repeat(var(--tg-cols, 2), minmax(0, 1fr));
    gap: 24px 32px;
    align-items: start;
}
.table-group > .data-table-wrap { min-width: 0; }
@media (max-width: 760px) {
    .table-group { grid-template-columns: 1fr; }
}
/* „Bei Hälfte umbrechen": zwei Tabellenhälften nebeneinander,
   auf schmalen Displays automatisch untereinander. */
.data-table-split {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    align-items: flex-start;
}
.data-table-split > table {
    flex: 1 1 240px;
    min-width: 0;
}
/* Breite Matrix-Tabellen: horizontal scrollbar statt Überlauf, nicht gequetscht */
.data-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.data-table--matrix {
    table-layout: auto;
    width: auto;
    min-width: 100%;
    white-space: nowrap;
    font-size: 13px;
}
.data-table--matrix th,
.data-table--matrix td {
    overflow-wrap: normal;
    word-break: normal;
    padding: 6px 10px;
    text-align: right;
}
.data-table--matrix th:first-child,
.data-table--matrix td:first-child {
    text-align: left;
    font-weight: 600;
}
.data-table-note {
    font-size: 11px;
    color: #777;
    margin-top: 6px;
    line-height: 1.4;
}

/* Verpackungen / Downloads */
.product-item__packaging {
    margin-bottom: 24px;
}
.product-item__packaging-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-dark);
    max-width: 760px;
}
.product-item__downloads {
    margin-bottom: 24px;
}
.product-item__close-wrap {
    display: flex;
    justify-content: flex-end;
}

/* Tabellen-Styles */
.data-table-wrap {}
.data-table-title {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-orange);
    margin-bottom: 8px;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    border: 1px solid #E0E0E0;
}
.data-table thead th {
    padding: 7px 12px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: left;
    color: var(--color-dark);
    background: #EFEFEF;
    border-bottom: 1px solid #E0E0E0;
}
.data-table thead th:first-child {
    border-right: 1px solid #E0E0E0;
}
.data-table td {
    padding: 7px 12px;
    border-bottom: 1px solid #EEEEEE;
    line-height: 1.4;
    vertical-align: top;
    color: var(--color-dark);
}
.data-table td:first-child {
    font-weight: 400;
    border-right: 1px solid #EEEEEE;
}
.data-table tr:last-child td { border-bottom: none; }

/* 4-Spalten FEPA-Tabelle */
.data-table--4col td:nth-child(1) { width: 12%; border-right: 1px solid #EEEEEE; }
.data-table--4col td:nth-child(2) { width: 38%; }
.data-table--4col td.data-table__divider { border-left: 2px solid #D0D0D0; border-right: 1px solid #EEEEEE; }
.data-table--4col thead th:nth-child(1) { border-right: 1px solid #E0E0E0; }
.data-table--4col thead th:nth-child(2) { border-right: none; }
.data-table--4col thead th:nth-child(3) { border-left: 2px solid #D0D0D0; border-right: 1px solid #E0E0E0; }

/* Korngrößen als Tags */
.korngroessen-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 4px;
}
.korngroesse-tag {
    display: inline-block;
    padding: 3px 9px;
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-dark);
    font-family: var(--font-nav);
}

/* Downloads */
.download-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}
.download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #F8F8F8;
    border: 1px solid #DEDEDE;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark);
    transition: background 0.2s, border-color 0.2s;
}
.download-link:hover {
    background: #EFEFEF;
    border-color: #ADADB9;
}
.download-link svg {
    width: 16px; height: 16px;
    flex-shrink: 0;
    color: var(--color-orange);
}

/* Produktseite – einfache Seiten (Template B) */
.product-simple-section {
    padding: 5rem 0;
    background: var(--color-white);
}
.product-simple__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 4rem;
    align-items: flex-start;
}
.product-simple__text h2 {
    font-family: var(--font-body);
    font-size: 34px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.25rem;
}
.product-simple__text p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-gray-600);
    margin-bottom: 1rem;
}
.product-simple__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

/* ── TEAM-GRID (Unternehmen) ── */
.team-section {
    background: var(--color-bg);
    padding: 50px var(--px) 150px;
}
.team-section__inner {
    max-width: 1024px;
    margin: 0 auto;
}
.team-section__headline {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-orange);
    text-align: center;
    margin: 50px 0 0;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.team-card {
    background: var(--color-white);
    border: 1px solid var(--color-dark);
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.team-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 127px;
    padding: 40px;
}
.team-card__icon svg {
    width: 150px;
    height: 150px;
    color: #adadb9;
}
.team-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.team-card__name {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-dark);
    border-top: 2px solid var(--color-orange);
    padding-top: 10px;
    margin: 0;
    line-height: 1.2;
    min-height: calc(10px + 2 * 1.2em);
}
.team-card__role {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-orange);
    margin: 0;
    letter-spacing: 0.04em;
    line-height: 1.3;
    min-height: 1.3em;
}
.team-card__contacts {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.team-card__contacts li a {
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: var(--fs-body);
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-word;
}
.team-card__contacts li a:hover { color: var(--color-orange); }
.team-card__contacts li a svg {
    color: var(--color-orange);
    width: 18px;
    height: 18px;
    justify-self: center;
}

/* ── STATS-BAR (Unternehmen) ── */
.stats-section {
    background: var(--color-white);
    border-top: 1px solid #e0e0e6;
    border-bottom: 1px solid #e0e0e6;
}
.stats-section__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 1px;
    background: var(--color-dark); /* zeigt durch 1px-Gap als Spaltenteiler */
}
.stat-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: var(--color-white);
}
.stat-item__number {
    font-family: var(--font-heading); /* Space Grotesk */
    font-size: 80px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
    min-height: 250px;
    text-align: right;
}
.stat-item__pre {
    font-size: 0.32em;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    vertical-align: baseline;
}
.stat-item__sep {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-orange);
    margin: 10px 0;
    flex-shrink: 0;
}
.stat-item__label {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-dark);
    line-height: 1.3;
}

/* Unternehmenstext */
.about-section {
    background: var(--color-bg);
    padding: 150px var(--px) 0;
}
.about-section__inner {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
/* Kleiner Prefix-Text über der Tagline */
.about-section__tagline-pre {
    font-family: var(--font-display); /* Lato */
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gray-400, #999);
    text-align: center;
    margin: 0 0 8px;
}
/* Animierte Tagline */
.about-section__tagline {
    font-family: var(--font-display); /* Lato */
    font-size: 50px;
    font-weight: 400;
    color: var(--color-dark);
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    line-height: 1.2;
}
/* SVG-Doppelstrich – gleiche Animation wie years-section */
.about-section__tagline.is-visible .tagline-underline path:nth-child(1) {
    animation: draw-stroke-1 6s linear infinite;
}
.about-section__tagline.is-visible .tagline-underline path:nth-child(2) {
    animation: draw-stroke-2 6s linear infinite;
}
/* Orange Subheading */
.about-section__kicker {
    font-family: var(--font-display); /* Lato */
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-orange);
    text-align: center;
    margin: 0;
}
/* Fließtext-Container */
.about-section__text {
    width: 100%;
}
.about-section__text p {
    font-family: var(--font-display); /* Lato */
    font-size: 19px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

/* ── PARTNER-CTA-BANNER (Unternehmen) ── */
.partner-cta-banner {
    background: var(--color-dark);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px var(--px);
}
.partner-cta-banner__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 900px;
    width: 100%;
}
.partner-cta-banner__kicker {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-orange);
    margin: 0;
    letter-spacing: 0.04em;
}
.partner-cta-banner__title {
    font-family: var(--font-heading);    /* Space Grotesk */
    font-size: 60px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
}
.partner-cta-banner__btn {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 400;
    color: var(--color-white);
    text-decoration: none;
    border: 1px solid #adadb9;
    padding: 20px;
    transition: color 0.2s, border-color 0.2s;
}
.partner-cta-banner__btn:hover {
    color: var(--color-orange);
    border-color: var(--color-orange);
}
@media (max-width: 1024px) {
    .partner-cta-banner { padding-top: 100px; padding-bottom: 100px; }
    .partner-cta-banner__title { font-size: 40px; }
    .partner-cta-banner__kicker { font-size: 20px; }
}
@media (max-width: 767px) {
    .partner-cta-banner { padding-top: 50px; padding-bottom: 50px; min-height: auto; }
    .partner-cta-banner__title { font-size: 30px; }
    .partner-cta-banner__kicker { font-size: 16px; }
    .partner-cta-banner__btn { font-size: 16px; padding: 14px 18px; }
}

/* ── SECTION-HEADLINE (Unternehmen / Team) ── */
.section-headline {
    font-family: var(--font-heading);    /* Space Grotesk */
    font-size: var(--fs-h2);             /* 40px */
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 0;
}

/* ── PHONE-CTA ── */
.phone-cta {
    background: var(--color-dark);
    overflow: hidden;
}
.phone-cta__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 460px;
    align-items: stretch;
    min-height: 340px;
}
.phone-cta__content {
    padding: 60px var(--px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}
.phone-cta__label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-orange);
}
.phone-cta__title {
    font-family: var(--font-display);    /* Lato */
    font-size: var(--fs-h2);             /* 40px */
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-white);
    line-height: 1.1;
    margin: 0;
}
.phone-cta__text {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    max-width: 480px;
}
.phone-cta__number {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-orange);
    transition: color 0.2s;
    margin-top: 4px;
}
.phone-cta__number:hover { color: var(--color-white); }
.phone-cta__form-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
    margin-top: -4px;
}
.phone-cta__form-link:hover { color: var(--color-white); }
.phone-cta__img-wrap {
    overflow: hidden;
    clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%);
}
.phone-cta__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 900px) {
    .phone-cta__inner { grid-template-columns: 1fr; }
    .phone-cta__img-wrap { height: 240px; clip-path: none; }
    .phone-cta__title { font-size: 28px; }
    .phone-cta__number { font-size: 22px; }
}
@media (max-width: 768px) {
    .section-headline { font-size: 32px; }
}

/* ══ KONTAKT-SEITE ══════════════════════════════════════════════════ */
.kont-section {
    padding: 72px 0 80px;
    background: var(--color-white);
}
.kont-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 64px;
    align-items: flex-start;
}
.kont-info__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 36px;
}

/* Kontaktdaten */
.kont-info {
    margin-bottom: 48px;
}
.kont-info__kicker {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-orange);
    margin-bottom: 10px;
}
.kont-info__title {
    font-family: var(--font-body);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.15;
    margin-bottom: 10px;
}
.kont-info__sub {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}
.kont-info__entries {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.kont-info__entry {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.kont-info__icon {
    width: 40px;
    height: 40px;
    background: var(--color-bg);
    border: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.kont-info__icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-blue);
}
.kont-info__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 4px;
}
.kont-info__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
}
.kont-info__value {
    font-size: 15px;
    color: var(--color-dark);
    line-height: 1.55;
    text-decoration: none;
}
a.kont-info__value:hover { color: var(--color-orange); }

/* Formular */
.kont-form-wrap {
    border-top: 2px solid var(--color-orange);
    padding-top: 28px;
}
.kont-form__title {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 6px;
}
.kont-form__sub {
    font-size: 14px;
    color: #888;
    margin-bottom: 28px;
}
.kont-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.kont-form__field {
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}
.kont-form__field:nth-child(even) {
    border-right: none;
}
.kont-form__field--full {
    grid-column: 1 / -1;
    border-right: none;
}
.kont-form__field input,
.kont-form__field textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 16px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--color-dark);
    resize: none;
}
.kont-form__field input::placeholder,
.kont-form__field textarea::placeholder {
    color: #aaa;
}
.kont-form__field input:focus,
.kont-form__field textarea:focus {
    background: #fafafa;
}
.kont-form__grid {
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    margin-bottom: 24px;
}
.kont-form__submit {
    display: inline-flex;
    align-items: stretch;
    border: 1.5px solid #c8c8c8;
    background: var(--color-white);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    transition: border-color 0.2s;
}
.kont-form__submit:hover { border-color: var(--color-orange); }
.kont-form__submit:hover .btn-primary__text { color: var(--color-orange); }
.kont-form__submit:hover .btn-primary__arrow { background: var(--color-orange); border-color: var(--color-orange); }
.kont-form__submit:hover .btn-primary__arrow svg { stroke: #fff; animation: btn-arrow-slide 0.45s cubic-bezier(0.4,0,0.2,1) forwards; }
.kont-form__submit .btn-primary__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    flex-shrink: 0;
    border-right: 1.5px solid #c8c8c8;
    overflow: hidden;
    transition: background 0.2s, border-color 0.2s;
}
.kont-form__submit .btn-primary__arrow svg { stroke: var(--color-orange); display: block; }
.kont-form__submit .btn-primary__text {
    padding: 13px 22px;
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    transition: color 0.2s;
}
.kont-form__message {
    margin-top: 14px;
    font-size: 14px;
    display: none;
}
.kont-form__message.success { color: #1a7a4a; display: block; }
.kont-form__message.error   { color: #c0392b; display: block; }

/* Google Maps */
.kont-map {
    position: static;
}
.kont-map__embed {
    width: 100%;
    height: 520px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}
.kont-map__embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: saturate(0) contrast(1.05);
}
.kont-map__link {
    margin-top: 12px;
    text-align: right;
}
.kont-map__link a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-blue);
    text-decoration: none;
    transition: color 0.2s;
}
.kont-map__link a:hover { color: var(--color-orange); }

/* ── FAQ SECTION ── */
.faq-section {
    padding: 5rem 0;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}
.faq-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--color-orange);
    opacity: 0.04;
    pointer-events: none;
}
.faq-section .container { max-width: 900px; }
.faq-section__kicker {
    font-family: var(--font-heading);
    font-size: var(--fs-small);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-orange);
    text-align: center;
    margin-bottom: 0.75rem;
}
.faq-section__title {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 3rem;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid transparent;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.faq-item:hover,
.faq-item[open] {
    border-left-color: var(--color-orange);
    background: rgba(255,255,255,0.09);
}

.faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    list-style: none;
    transition: color 0.2s ease;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { content: ''; }
.faq-item__q:hover { color: var(--color-orange); }
.faq-item[open] .faq-item__q { color: var(--color-orange); }

.faq-item__icon {
    flex-shrink: 0;
    stroke: rgba(255,255,255,0.4);
    transition: transform 0.3s ease, stroke 0.25s ease;
}
.faq-item__q:hover .faq-item__icon,
.faq-item[open] .faq-item__icon { stroke: var(--color-orange); }
.faq-item[open] .faq-item__icon { transform: rotate(45deg); }

.faq-item__a {
    padding: 0 1.5rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
}

/* ── SCROLL-REVEAL SYSTEM ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}
/* Prefers-reduced-motion: keine Animation */
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1366px) {
    .page-hero__title    { font-size: 50px; }
    .page-hero__subtitle { font-size: 25px; }
}

@media (max-width: 1024px) {
    .page-hero__title    { font-size: 40px; }
    .page-hero__subtitle { font-size: 20px; }
    .cta-cards { grid-template-columns: 1fr; }
    .cat-cards__grid { grid-template-columns: 1fr; }
    .cat-cards { padding: 0 20px; margin: 30px 0; }
    .cat-card { height: 260px; }
    .hero-teasers__kicker { font-size: 25px; }
    .hero-teasers__headline { font-size: 50px; }
    .teaser-card__bg-wrapper { aspect-ratio: 1 / 1; }
    .teaser-card__bg { height: 100%; }
    .products__grid { grid-template-columns: repeat(2, 1fr); }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .site-footer__headline { font-size: 44px; }
    .main-nav { display: none; }
    .burger-btn { display: flex; order: -1; }
    .header__main { justify-content: space-between; height: 90px; }
    .header-logo img { height: 72px; }
    .page-hero { height: 450px; }
    .hero__title { font-size: 42px; }
    .hero__subtitle { font-size: 22px; }
    .mega-dropdown__cols { gap: 3rem; }
    .product-item__img-wrap { width: 240px; }
    .product-item__img-wrap img { width: 240px; height: 240px; }
    .product-item__body { margin-left: 240px; padding: 30px; }
    .product-simple__inner { grid-template-columns: 1fr; }
    .about-section { padding-top: 100px; }
    .about-section__tagline { font-size: 36px; }
    .team-section { padding-bottom: 100px; }
    .kont-inner { grid-template-columns: 1fr; }
    .kont-map { position: static; }
    .stats-section__inner { grid-template-columns: repeat(2, 1fr); gap: 1px; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .team-card__icon svg { width: 120px; height: 120px; }
    .footer-phonecta__inner { flex-direction: column; border: none; }
    .footer-phonecta__img { height: 200px; flex: none; order: -1; clip-path: polygon(120px 0, 100% 0, 100% 100%, 0 100%); }
    .footer-phonecta__img img { object-position: left center; }
}

@media (max-width: 900px) {
    .product-item__head { flex-direction: column; gap: 0; }
    .product-item__img-wrap { width: 100%; height: 240px; }
    .product-item__img-wrap img { width: 220px; height: 220px; }
    .product-item__info { padding: 28px 24px; }
    .product-item__body { margin-left: 0; padding: 28px 24px; }
    .product-item__name { font-size: 26px; }
    .product-item__actions { margin-top: 20px; }
}

/* ── Freisteller: Positionen + Scale per Breakpoint ───────────────────────
   Selector-Schema: .cat-cards__grid > .cat-card:nth-child(K) > .cat-card__freisteller:nth-child(I)
   K = Kartennummer (1–3), I = Bildnummer innerhalb der Karte (1–3)
   Scale wird als CSS-Variable --fe-scale auf .cat-cards gesetzt.
   ───────────────────────────────────────────────────────────────────────── */

/* Laptop 1440–1919px | scale: 0.90 */
@media (max-width: 1919px) {
    .cat-cards { --fe-scale: 0.90; }
    .cat-cards__grid > .cat-card:nth-child(1) > .cat-card__freisteller:nth-child(1) { right:52px!important;  top:33px!important;  }
    .cat-cards__grid > .cat-card:nth-child(1) > .cat-card__freisteller:nth-child(2) { right:8px!important;   top:111px!important; }
    .cat-cards__grid > .cat-card:nth-child(1) > .cat-card__freisteller:nth-child(3) { right:13px!important;  top:175px!important; }
    .cat-cards__grid > .cat-card:nth-child(2) > .cat-card__freisteller:nth-child(1) { right:88px!important;  top:39px!important;  }
    .cat-cards__grid > .cat-card:nth-child(2) > .cat-card__freisteller:nth-child(2) { right:36px!important;  top:135px!important; }
    .cat-cards__grid > .cat-card:nth-child(3) > .cat-card__freisteller:nth-child(1) { right:55px!important;  top:38px!important;  }
    .cat-cards__grid > .cat-card:nth-child(3) > .cat-card__freisteller:nth-child(2) { right:122px!important; top:34px!important;  }
    .cat-cards__grid > .cat-card:nth-child(3) > .cat-card__freisteller:nth-child(3) { right:124px!important; top:182px!important; }
}

/* Tablet quer 1180–1439px | scale: 0.85 */
@media (max-width: 1439px) {
    .cat-cards { --fe-scale: 0.85; }
    .cat-cards__grid > .cat-card:nth-child(1) > .cat-card__freisteller:nth-child(1) { right:80px!important;  top:21px!important;  }
    .cat-cards__grid > .cat-card:nth-child(1) > .cat-card__freisteller:nth-child(2) { right:17px!important;  top:90px!important;  }
    .cat-cards__grid > .cat-card:nth-child(1) > .cat-card__freisteller:nth-child(3) { right:0px!important;   top:144px!important; }
    .cat-cards__grid > .cat-card:nth-child(2) > .cat-card__freisteller:nth-child(1) { right:57px!important;  top:59px!important;  }
    .cat-cards__grid > .cat-card:nth-child(2) > .cat-card__freisteller:nth-child(2) { right:3px!important;   top:148px!important; }
    .cat-cards__grid > .cat-card:nth-child(3) > .cat-card__freisteller:nth-child(1) { right:24px!important;  top:47px!important;  }
    .cat-cards__grid > .cat-card:nth-child(3) > .cat-card__freisteller:nth-child(2) { right:98px!important;  top:32px!important;  }
    .cat-cards__grid > .cat-card:nth-child(3) > .cat-card__freisteller:nth-child(3) { right:94px!important;  top:186px!important; }
}

/* Tablet hoch 768–1179px | scale: 0.90 */
@media (max-width: 1179px) {
    .cta-card__title { font-size: 24px; }
    .cat-cards { --fe-scale: 0.90; }
    .cat-cards__grid > .cat-card:nth-child(1) > .cat-card__freisteller:nth-child(1) { right:146px!important; top:15px!important;  }
    .cat-cards__grid > .cat-card:nth-child(1) > .cat-card__freisteller:nth-child(2) { right:68px!important;  top:92px!important;  }
    .cat-cards__grid > .cat-card:nth-child(1) > .cat-card__freisteller:nth-child(3) { right:52px!important;  top:160px!important; }
    .cat-cards__grid > .cat-card:nth-child(2) > .cat-card__freisteller:nth-child(1) { right:100px!important; top:30px!important;  }
    .cat-cards__grid > .cat-card:nth-child(2) > .cat-card__freisteller:nth-child(2) { right:50px!important;  top:108px!important; }
    .cat-cards__grid > .cat-card:nth-child(3) > .cat-card__freisteller:nth-child(1) { right:31px!important;  top:7px!important;   }
    .cat-cards__grid > .cat-card:nth-child(3) > .cat-card__freisteller:nth-child(2) { right:125px!important; top:12px!important;  }
    .cat-cards__grid > .cat-card:nth-child(3) > .cat-card__freisteller:nth-child(3) { right:110px!important; top:172px!important; }
}

/* Mobil ≤ 767px | scale: 0.55 */
@media (max-width: 767px) {
    .cat-card { height: 240px; }
    .cat-cards { --fe-scale: 0.55; }
    .cat-cards__grid > .cat-card:nth-child(1) > .cat-card__freisteller:nth-child(1) { right:50px!important;  top:52px!important;  }
    .cat-cards__grid > .cat-card:nth-child(1) > .cat-card__freisteller:nth-child(2) { right:24px!important;  top:102px!important; }
    .cat-cards__grid > .cat-card:nth-child(1) > .cat-card__freisteller:nth-child(3) { right:14px!important;  top:146px!important; }
    .cat-cards__grid > .cat-card:nth-child(2) > .cat-card__freisteller:nth-child(1) { right:65px!important;  top:41px!important;  }
    .cat-cards__grid > .cat-card:nth-child(2) > .cat-card__freisteller:nth-child(2) { right:27px!important;  top:88px!important;  }
    .cat-cards__grid > .cat-card:nth-child(3) > .cat-card__freisteller:nth-child(1) { right:36px!important;  top:0px!important;   }
    .cat-cards__grid > .cat-card:nth-child(3) > .cat-card__freisteller:nth-child(2) { right:85px!important;  top:11px!important;  }
    .cat-cards__grid > .cat-card:nth-child(3) > .cat-card__freisteller:nth-child(3) { right:59px!important;  top:172px!important; }
}

/* ── Wide Teaser-Cards: Mobile-Stacking ──────────────────── */
@media (max-width: 991px) {
    .hero-teasers__grid--wide { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .teaser-card--wide { grid-template-columns: 140px 1fr; }
    .teaser-card--wide .teaser-card__content { padding: 16px 18px; }
    .teaser-card--wide .teaser-card__title { font-size: 20px; word-break: break-word; hyphens: auto; }
}
@media (max-width: 599px) {
    .teaser-card--wide { grid-template-columns: 1fr; }
    .teaser-card--wide .teaser-card__bg-wrapper { aspect-ratio: 16 / 9; }
    .teaser-card--wide .teaser-card__content { padding: 20px 22px; }
}

/* ── Hero: Position + Größe per Breakpoint ─────────────────────────────────
   Werte per visuellem Editor ermittelt. Relativ zu .hero__media.
   ────────────────────────────────────────────────────────────────────────── */

/* Laptop 1440–1919px */
@media (max-width: 1919px) {
    .hero__man   { left:-161px!important; top:94px!important;  height:485px!important; }
    .hero__video { left:137px!important;  top:114px!important; }
}
/* Tablet quer 1180–1439px */
@media (max-width: 1439px) {
    .hero__man   { left:-159px!important; top:125px!important; height:425px!important; }
    .hero__video { left:102px!important;  top:130px!important; }
}
/* Tablet hoch 768–1179px */
@media (max-width: 1179px) {
    .hero__man   { left:-151px!important; top:176px!important; height:330px!important; }
    .hero__video { left:51px!important;   top:187px!important; width:260px!important;  }
    .hero-teasers__grid { grid-template-columns: repeat(2, 1fr); }
}
/* Mobil ≤767px */
@media (max-width: 767px) {
    .hero__man   { left:8px!important;   top:3px!important;  height:210px!important; }
    .hero__video { left:136px!important; top:11px!important; width:165px!important;  }
}

@media (max-width: 768px) {
    .hero { height: auto; min-height: 500px; }
    .hero__inner { flex-direction: column; padding-top: 2rem; padding-bottom: 2rem; align-items: flex-start; }
    .hero__media { width: 100%; height: 300px; }
    .hero__man { height: 280px; }
    .hero-teasers__grid { grid-template-columns: repeat(1, 1fr); }
    .teaser-card__bg-wrapper { aspect-ratio: 1 / 1; }
    .teaser-card__bg { height: 100%; }
    .hero-teasers__kicker { font-size: 20px; }
    .hero-teasers__headline { font-size: 40px; }
    .cta-cards { grid-template-columns: 1fr; }
    .product-item__head { flex-direction: column; }
    .product-item__img-wrap { width: 100%; height: 220px; }
    .product-item__img-wrap img { width: 180px; height: 180px; }
    .product-item__info { padding: 24px 20px; }
    .product-item__body { margin-left: 0; padding: 24px 20px; }
    .product-item__name { font-size: 22px; }
    .cta-card__title { font-size: 20px; }
    .cta-card__desc { font-size: 16px; }
    .cta-card__link { font-size: 16px; }
    .contact-section__body { flex-direction: column; }
    .contact-section__image { min-height: 220px; flex: none; }
    .contact-section__form-wrap { padding: 30px 20px; }
    .cf-row { grid-template-columns: 1fr; gap: 10px; margin-bottom: 10px; }
    .contact-section__heading { font-size: 36px; margin-bottom: 30px; }
    .contact-form input,
    .contact-form textarea {
        background: #f7f7f7;
        border: 1px solid #e0e0e0;
        padding: 12px 14px;
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
        border-color: var(--color-orange);
        background: #fff;
    }
    .contact-form input::placeholder,
    .contact-form textarea::placeholder { color: #888; }
    .products__grid { grid-template-columns: 1fr 1fr; }
    .footer-links { grid-template-columns: 1fr; gap: 2rem; }
    .footer-phonecta__text { padding: 24px 20px; }
    .footer-phonecta__heading { font-size: 20px; }
    .footer-phonecta__tel { font-size: 20px; }
    .site-footer__headline { font-size: 36px; }
    .footer-phonecta { margin-bottom: 80px; }
    .toolbar__left { display: none; }
    .page-hero { height: 340px; }
    .page-hero__title    { font-size: 28px; }
    .page-hero__subtitle { font-size: 16px; }
    .header__main { height: 80px; }
    .header-logo img { height: 60px; }
    .team-grid { grid-template-columns: 1fr; }
    .about-section { padding-top: 50px; }
    .team-section { padding-bottom: 50px; }
    .about-section__tagline { font-size: 28px; }
    .kont-inner { grid-template-columns: 1fr; gap: 40px; }
    .kont-map { position: static; }
    .kont-map__embed { height: 300px; }
    .kont-form__grid { grid-template-columns: 1fr; }
    .faq-section { padding: 3.5rem 0; }
    .faq-item__q { padding: 1rem 1.25rem; font-size: 0.95rem; }
    .faq-item__a { padding: 0 1.25rem 1.25rem; font-size: 0.9rem; }
    .kont-form__field { border-right: none; }
    .kont-info__title { font-size: 28px; }
    .about-section__kicker { font-size: 18px; }
    .about-section__tagline-pre { font-size: 17px; }
    .about-section__text p { font-size: 15px; }
    .team-card__name { font-size: 22px; }
    .stats-section__inner { grid-template-columns: 1fr 1fr; gap: 1px; }
    .stat-item__number { font-size: 44px; min-height: auto; }
    .stat-item__label { font-size: 18px; }
    .footer-phonecta__img { height: 160px; }
    .tagline-nowrap { white-space: normal; }
    .sa-pdf-btn { white-space: normal; }
    .download-link { white-space: normal; }
}

@media (max-width: 560px) {
    .stats-section__inner { grid-template-columns: 1fr; }
    .stat-item__number { font-size: 56px; }
    .stat-item__label { font-size: 22px; }
    .about-section__tagline { font-size: 22px; }
    .about-section__kicker { font-size: 15px; }
}

/* ══════════════════════════════════════════════════
   PRODUKTE-ÜBERSICHTSSEITE
══════════════════════════════════════════════════ */

/* ── Produkte Custom-Hero ── */
.produkte-hero {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.produkte-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.50);
}
.produkte-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--px);
}
.produkte-hero__label {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-orange);
    margin-bottom: 12px;
}
.produkte-hero__title {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-white);
    line-height: 1.05;
    max-width: 700px;
    margin-bottom: 32px;
}
.produkte-hero__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.produkte-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-white);
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 10px 20px;
    transition: background 0.2s, border-color 0.2s;
}
.produkte-hero__btn:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
}

@media (max-width: 768px) {
    .produkte-hero { height: 460px; }
    .produkte-hero__title { font-size: 36px; margin-bottom: 24px; }
    .produkte-hero__label { font-size: 15px; }
}
@media (max-width: 480px) {
    .produkte-hero__title { font-size: 30px; }
}

/* ── Strahlmittel-Kategorien ── */
.prod-cats {
    padding: 80px var(--px) 60px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.prod-cats__head {
    margin-bottom: 40px;
}
.prod-cats__label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 8px;
}
.prod-cats__title {
    font-size: 44px;
}
.prod-cats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Karte */
.prod-cat-card {
    position: relative;
    display: block;
    height: 340px;
    background-color: var(--color-blue);
    background-size: cover;
    background-position: center;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.prod-cat-card:hover {
    transform: translateY(-4px);
}
.prod-cat-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16,44,114,0.88) 0%, rgba(16,44,114,0.45) 60%, rgba(16,44,114,0.20) 100%);
    transition: background 0.3s ease;
}
.prod-cat-card:hover .prod-cat-card__overlay {
    background: linear-gradient(to top, rgba(16,44,114,0.95) 0%, rgba(16,44,114,0.60) 60%, rgba(16,44,114,0.30) 100%);
}
.prod-cat-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.prod-cat-card__title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-white);
    line-height: 1.2;
    margin: 0;
}
.prod-cat-card__link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-white);
    transition: color 0.2s;
}
.prod-cat-card:hover .prod-cat-card__link {
    color: var(--color-orange);
}

/* ── Split-Blöcke (Strahlanlagen + Zubehör) ── */
.prod-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 500px;
}
.prod-split__text {
    background: var(--color-dark);
    padding: 60px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.prod-split__label {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-orange);
}
.prod-split__title {
    font-family: var(--font-heading);   /* Space Grotesk */
    font-size: 54px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-white);
    line-height: 1.0;
    margin: 0;
}
.prod-split__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-white);
    transition: color 0.2s;
    align-self: flex-start;
}
.prod-split__cta:hover { color: var(--color-orange); }
/* btn-primary im prod-split-Kontext: nie full-width */
.prod-split__text .btn-primary { align-self: flex-start; }
.prod-split__images {
    background-color: #e8e8e8;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    overflow: hidden;
}
.prod-split__img-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    overflow: hidden;
}
.prod-split__img-cell img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform: translate(var(--tx, 0px), var(--ty, 0px));
    transition: transform 0.08s linear;
    will-change: transform;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .prod-cats__grid { grid-template-columns: repeat(2, 1fr); }
    .prod-cats { padding: 60px var(--px) 40px; }
    .prod-split__title { font-size: 34px; }
}
@media (max-width: 768px) {
    .prod-cats__grid { grid-template-columns: 1fr 1fr; }
    .prod-cat-card { height: 260px; }
    .prod-cats__title { font-size: 32px; }
    .prod-split { grid-template-columns: 1fr; height: auto; }
    .prod-split--reverse .prod-split__images { order: -1; }
    .prod-split__images { height: 300px; }
    .prod-split__text { padding: 40px var(--px); }
    .prod-split__title { font-size: 28px; }
}
@media (max-width: 480px) {
    .prod-cats__grid { grid-template-columns: 1fr; }
    .prod-cat-card { height: 240px; }
}

/* ═══════════════════════════════════════════════════════════════════
   STRAHLANLAGEN – Showcase-Layout
   ═══════════════════════════════════════════════════════════════════ */

/* ── Filter-Leiste (Strahlanlagen) ── */
.sa-filter {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-200);
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: top 0.25s ease;
}
.sa-filter__inner {
    display: flex;
    flex-wrap: nowrap;
    border-left: 1px solid var(--color-gray-200);
}
.sa-filter__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 10px;
    border: none;
    border-right: 1px solid var(--color-gray-200);
    border-top: 3px solid transparent;
    background: none;
    color: var(--color-gray-600);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.sa-filter__btn:hover {
    background: var(--color-gray-100);
    color: var(--color-dark);
}
.sa-filter__btn.is-active {
    color: var(--color-orange);
    border-top-color: var(--color-orange);
    font-weight: 700;
}
.sa-filter__count {
    background: var(--color-gray-200);
    color: var(--color-gray-600);
    font-size: 11px;
    padding: 1px 6px;
    font-weight: 700;
    line-height: 1.5;
    flex-shrink: 0;
}
.sa-filter__btn.is-active .sa-filter__count {
    background: rgba(227,7,19,0.12);
    color: var(--color-orange);
}

/* ── Typ-Tag (Badge auf jeder Anlage) ── */
.sa-type-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 10px;
    border: 1px solid;
}
.sa-type-tag--injektor {
    color: var(--color-blue);
    border-color: var(--color-blue);
    background: rgba(16,44,114,0.06);
}
.sa-type-tag--druck {
    color: var(--color-orange);
    border-color: var(--color-orange);
    background: rgba(227,7,19,0.06);
}
.sa-type-tag--beide {
    color: var(--color-gray-600);
    border-color: var(--color-gray-400);
    background: rgba(156,163,175,0.06);
}

/* ── Intro-Sektion ── */
.sa-intro {
    padding: 72px 0 56px;
    background: var(--color-white);
}
.sa-intro__inner {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}
.sa-intro__text { flex: 1; }
.sa-intro__tags {
    flex: 0 0 260px;
    padding-top: 0.5rem;
    border-left: 3px solid var(--color-orange);
    padding-left: 24px;
}
.sa-intro__kicker {
    font-family: var(--font-nav);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 12px;
}
.sa-intro__headline {
    font-size: clamp(1.75rem, 3vw, 2.625rem);
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: 20px;
}
.sa-intro__lead {
    font-size: var(--fs-body);
    color: var(--color-gray-600);
    max-width: 600px;
    line-height: 1.75;
}

/* Tag-Liste (Intro rechts) */
.sa-tag-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sa-tag-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--color-gray-200);
}
.sa-tag-item:first-child { border-top: 1px solid var(--color-gray-200); }
.sa-tag-marker {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    background: var(--color-orange);
}
.sa-tag-label {
    font-family: var(--font-nav);
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: 0.02em;
}

/* ── Showcase-Items ── */
.sa-showcase { background: var(--color-white); }

.sa-item {
    padding: 64px 0;
    border-top: 1px solid var(--color-gray-200);
    position: relative;
    overflow: hidden;
}
.sa-item:nth-child(even) {
    background: var(--color-bg);
}
.sa-item > .container { position: relative; z-index: 1; }

.sa-item__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.sa-item--flip .sa-item__inner {
    direction: rtl;
}
.sa-item--flip .sa-item__content-col,
.sa-item--flip .sa-item__img-col {
    direction: ltr;
}

/* Bild-Spalte */
.sa-item__img-col {
    display: flex;
    align-items: center;
    justify-content: center;
}
.sa-item__img-wrap {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4 / 3;
    background: #fff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
}
.sa-item__img-wrap:hover { box-shadow: var(--shadow-md); }
.sa-item__img-wrap img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Inhalt-Spalte */
.sa-item__content { max-width: 540px; }

.sa-item__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.sa-item__num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: var(--color-dark);
    opacity: 0.12;
    letter-spacing: -0.02em;
    user-select: none;
}
.sa-item__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--color-orange);
    color: var(--color-white);
    font-family: var(--font-nav);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 0;
}
.sa-item__badge::before { content: '★'; font-size: 10px; }

.sa-item__name {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.sa-item__desc {
    font-size: var(--fs-body);
    color: var(--color-gray-600);
    line-height: 1.75;
    margin-bottom: 24px;
}

.sa-item__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}
.sa-spec-tag {
    display: inline-block;
    background: var(--color-gray-100);
    border: 1px solid var(--color-gray-200);
    color: var(--color-dark);
    font-family: var(--font-nav);
    font-size: var(--fs-small);
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 0;
}

.sa-item__cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--color-orange);
    color: var(--color-white);
    font-family: var(--font-nav);
    font-size: var(--fs-small);
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 13px 24px;
    border-radius: 0;
    transition: background 0.2s ease, transform 0.15s ease;
    text-decoration: none;
}
.sa-item__cta svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}
.sa-item__cta:hover {
    background: #e05a00;
    transform: translateY(-1px);
}

/* ── Kontakt-CTA ── */
.sa-contact-cta {
    padding: 80px 0;
    background: var(--color-dark);
    color: var(--color-white);
}
.sa-contact-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.sa-contact-cta__text h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}
.sa-contact-cta__text p {
    font-size: var(--fs-body);
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
}
.sa-contact-cta__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

/* ── Split-Button (Icon-Quadrat | Text) ── */
@keyframes btn-arrow-slide {
    0%   { transform: translateX(0);     opacity: 1; }
    40%  { transform: translateX(140%);  opacity: 0; }
    41%  { transform: translateX(-140%); opacity: 0; }
    100% { transform: translateX(0);     opacity: 1; }
}
@keyframes btn-arrow-slide-down {
    0%   { transform: translateY(0);     opacity: 1; }
    40%  { transform: translateY(140%);  opacity: 0; }
    41%  { transform: translateY(-140%); opacity: 0; }
    100% { transform: translateY(0);     opacity: 1; }
}
.btn-primary {
    display: inline-flex;
    align-items: stretch;
    border: 1.5px solid #c8c8c8;
    text-decoration: none;
    background: var(--color-white);
    white-space: nowrap;
    overflow: hidden;
    transition: border-color 0.2s;
}
.btn-primary__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    flex-shrink: 0;
    border-right: 1.5px solid #c8c8c8;
    overflow: hidden;
    padding: 6px;
    transition: background 0.2s, border-color 0.2s;
}
.btn-primary__arrow svg {
    display: block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--color-orange);
    transition: stroke 0.2s;
    overflow: visible;
}
.btn-primary__arrow svg path,
.btn-primary__arrow svg line,
.btn-primary__arrow svg polyline { stroke: var(--color-orange); transition: stroke 0.2s; }
.btn-primary__text {
    padding: 13px 22px;
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.01em;
    transition: color 0.2s;
}
.btn-primary:hover { border-color: var(--color-orange); }
.btn-primary:hover .btn-primary__arrow { background: var(--color-orange); border-color: var(--color-orange); }
.btn-primary:hover .btn-primary__arrow svg { stroke: #fff; animation: btn-arrow-slide 0.45s cubic-bezier(0.4,0,0.2,1) forwards; }
.btn-primary:hover .btn-primary__arrow svg path,
.btn-primary:hover .btn-primary__arrow svg line,
.btn-primary:hover .btn-primary__arrow svg polyline { stroke: #fff; }
.btn-primary:hover .btn-primary__text { color: var(--color-orange); }
/* Down-Pfeil überschreibt die horizontale Animation */
.btn-primary--down:hover .btn-primary__arrow svg {
    animation: btn-arrow-slide-down 0.45s cubic-bezier(0.4,0,0.2,1) forwards;
}
/* Dark-Hintergrund-Variante (z.B. partner-cta-banner) */
.btn-primary--dark {
    background: transparent;
    border-color: rgba(255,255,255,0.3);
}
.btn-primary--dark .btn-primary__arrow {
    border-right-color: rgba(255,255,255,0.3);
}
.btn-primary--dark .btn-primary__text { color: var(--color-white); }
.btn-primary--dark:hover { border-color: var(--color-orange); }
.btn-primary--dark:hover .btn-primary__arrow { background: var(--color-orange); border-color: var(--color-orange); }
.btn-primary--dark:hover .btn-primary__text { color: var(--color-orange); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.5);
    font-family: var(--font-nav);
    font-size: var(--fs-small);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 0;
    transition: border-color 0.2s ease, background 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn-outline svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-outline:hover { border-color: var(--color-white); background: rgba(255,255,255,0.08); color: var(--color-white); }

/* ── Anwendungs-Pills (direkt unter Beschreibung) ── */
.sa-item__app-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 20px;
}
.sa-app-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--color-dark);
    border: 1px solid var(--color-gray-300, #ccc);
    font-family: var(--font-nav);
    font-size: var(--fs-xs);
    font-weight: 500;
    padding: 5px 12px;
    letter-spacing: 0.02em;
}
.sa-app-pill::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--color-orange);
    flex-shrink: 0;
}

.sa-item__actions { margin-top: 24px; }

.sa-item__body {
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid var(--color-gray-200);
}

/* ── Features + Specs nebeneinander ── */
.sa-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

/* ── Detailbereich (Feature + Specs) ── */
.sa-item__detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-200);
}
.sa-detail-block {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 0;
    padding: 20px 22px;
}
.sa-item:nth-child(even) .sa-detail-block {
    background: var(--color-white);
}
/* .sa-detail-block--features jetzt im sa-detail-grid, kein span nötig */
.sa-detail-block__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-nav);
    font-size: var(--fs-small);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-orange);
}
.sa-detail-block__title svg {
    width: 16px; height: 16px; flex-shrink: 0;
    overflow: visible;
}

/* Feature-Liste */
.sa-feature-list {
    columns: 2;
    column-gap: 2rem;
    padding: 0;
}
.sa-feature-list li {
    font-size: var(--fs-small);
    color: var(--color-dark);
    line-height: 1.6;
    padding: 4px 0 4px 18px;
    position: relative;
    break-inside: avoid;
}
.sa-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 0;
    background: var(--color-orange);
    flex-shrink: 0;
}

/* Specs-Tabelle */
.sa-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-small);
}
.sa-specs-table th,
.sa-specs-table td {
    padding: 6px 10px;
    text-align: left;
    border-bottom: 1px solid var(--color-gray-100);
    line-height: 1.5;
}
.sa-specs-table th {
    font-weight: 600;
    color: var(--color-gray-600);
    white-space: nowrap;
    width: 38%;
}
.sa-specs-table td { color: var(--color-dark); }
.sa-specs-table tr:last-child th,
.sa-specs-table tr:last-child td { border-bottom: none; }

/* Modell-Tabelle */
.sa-models-wrap { overflow-x: hidden; }
.sa-models-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-small);
    table-layout: fixed;
}
.sa-models-table th {
    background: var(--color-dark);
    color: var(--color-white);
    font-family: var(--font-nav);
    font-weight: 600;
    font-size: var(--fs-xs);
    letter-spacing: 0.05em;
    padding: 8px 10px;
    text-align: left;
    white-space: normal;
    word-break: break-word;
}
.sa-models-table td {
    padding: 7px 10px;
    border-bottom: 1px solid var(--color-gray-100);
    color: var(--color-dark);
    word-break: break-word;
}
.sa-models-table tr:last-child td { border-bottom: none; }
.sa-models-table tr:nth-child(even) td { background: var(--color-gray-100); }
.sa-models-table__model { font-weight: 700; color: var(--color-dark); }

/* ── Galerie ── */
.sa-gallery {
    width: 100%;
}
.sa-gallery__main {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sa-gallery__active-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.2s ease;
    padding: 1.5rem;
}
.sa-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-dark);
    color: var(--color-white);
    border: none;
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 2;
    transition: opacity 0.15s ease;
}
.sa-gallery__arrow:hover { opacity: 1; }
.sa-gallery__arrow--prev { left: 0; }
.sa-gallery__arrow--next { right: 0; }
.sa-gallery__thumbs {
    display: flex;
    gap: 4px;
    margin-top: 4px;
    flex-wrap: wrap;
}
.sa-gallery__thumb {
    border: 2px solid transparent;
    background: var(--color-gray-100);
    padding: 0;
    cursor: pointer;
    width: 60px;
    height: 48px;
    overflow: hidden;
    flex-shrink: 0;
    transition: border-color 0.15s ease;
}
.sa-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sa-gallery__thumb.active { border-color: var(--color-orange); }
.sa-gallery__thumb:hover { border-color: var(--color-blue); }
.sa-models-note {
    font-size: var(--fs-xs);
    color: var(--color-gray-600);
    margin-top: 10px;
    font-style: italic;
}

/* Optional-Liste */
.sa-optional-list { padding: 0; }
.sa-optional-list li {
    font-size: var(--fs-small);
    color: var(--color-dark);
    line-height: 1.6;
    padding: 3px 0 3px 18px;
    position: relative;
}
.sa-optional-list li::before {
    content: '+';
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--color-orange);
    font-weight: 700;
    font-size: 13px;
}

/* PDF-Row */
.sa-item__pdf-row {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-200);
}
.sa-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gray-600);
    border: 1px solid var(--color-gray-200);
    background: var(--color-white);
    font-family: var(--font-nav);
    font-size: var(--fs-small);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 0;
    transition: var(--transition);
    text-decoration: none;
}
.sa-pdf-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.sa-pdf-btn:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
    background: rgba(227,7,19,0.04);
}

/* ── Responsive – Strahlanlagen ── */
@media (max-width: 1100px) {
    .sa-intro__inner { flex-direction: column; gap: 2rem; }
    .sa-intro__tags { flex: none; width: 100%; border-left: none; border-top: 3px solid var(--color-orange); padding-left: 0; padding-top: 20px; }
    .sa-tag-list { flex-direction: row; flex-wrap: wrap; gap: 0; }
    .sa-tag-item { flex: 1 1 160px; border-bottom: 1px solid var(--color-gray-200); }
    .sa-item__inner { gap: 2.5rem; }
    .sa-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
    .sa-filter__inner { overflow-x: auto; scrollbar-width: none; }
    .sa-filter__inner::-webkit-scrollbar { display: none; }
    .sa-filter__btn { flex: 0 0 auto; font-size: 12px; padding: 12px 16px; }
    .sa-item__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .sa-item--flip .sa-item__inner { direction: ltr; }
    .sa-item__img-col { justify-content: flex-start; }
    .sa-item__img-wrap,
    .sa-gallery__main {
        max-width: 100%;
        aspect-ratio: 4 / 3;
        max-height: 55vh;
        min-height: 0;
        overflow: hidden;
    }
    .sa-item__img-wrap img,
    .sa-gallery__active-img {
        display: block;
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    .sa-item { padding: 48px 0; }
    .sa-item__content-col { max-width: 100%; }
    .sa-item__detail { grid-template-columns: 1fr; }
    .sa-detail-block--features { grid-column: span 1; }
    .sa-feature-list { columns: 1; }
    .sa-contact-cta__inner { flex-direction: column; text-align: center; }
    .sa-contact-cta__actions { justify-content: center; }
    .sa-models-table { font-size: 0.75rem; }
    .sa-models-table th, .sa-models-table td { padding: 6px 7px; }
}
@media (max-width: 560px) {
    .sa-intro { padding: 48px 0 40px; }
    .sa-item { padding: 36px 0; }
    .sa-item__num { font-size: 2.25rem; }
    .sa-item__img-wrap,
    .sa-gallery__main { aspect-ratio: 4 / 3; max-height: 50vh; padding: 1rem; }
    .sa-gallery__active-img { padding: 0.5rem; }
    .sa-contact-cta { padding: 56px 0; }
    .sa-contact-cta__actions { flex-direction: column; align-items: center; gap: 12px; }
}

/* ═══════════════════════════════════════════════════════════════════
   ZUBEHÖR-SEITE
═══════════════════════════════════════════════════════════════════ */

/* ── Kategorie-Navigation ─────────────────────────────────────── */
.zub-nav {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-200);
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: top 0.25s ease;
}
.zub-nav__inner {
    display: flex;
    flex-wrap: nowrap;
    border-left: 1px solid var(--color-gray-200);
}

.zub-nav__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 10px;
    border-right: 1px solid var(--color-gray-200);
    border-top: 3px solid transparent;
    border-bottom: none;
    color: var(--color-gray-600);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
    letter-spacing: 0.01em;
    overflow: hidden;
}
.zub-nav__btn:hover {
    background: var(--color-gray-100);
    color: var(--color-dark);
}
.zub-nav__btn.is-active {
    background: var(--color-white);
    color: var(--color-orange);
    border-top-color: var(--color-orange);
    font-weight: 700;
}
.zub-nav__count {
    background: var(--color-gray-200);
    color: var(--color-gray-600);
    font-size: 10px;
    padding: 1px 5px;
    font-weight: 700;
    line-height: 1.5;
    flex-shrink: 0;
}
.zub-nav__btn.is-active .zub-nav__count {
    background: rgba(227,7,19,0.12);
    color: var(--color-orange);
}
@media (max-width: 1200px) {
    .zub-nav__inner {
        overflow-x: auto;
        scrollbar-width: none;
    }
    .zub-nav__inner::-webkit-scrollbar { display: none; }
    .zub-nav__btn { flex: 0 0 auto; padding: 11px 16px; }
    .zub-nav::after {
        content: '';
        position: absolute;
        right: 0; top: 0; bottom: 0;
        width: 64px;
        background: linear-gradient(to right, transparent, #fff 85%);
        pointer-events: none;
        z-index: 2;
    }
}

.zub-section {
    padding: 64px 0 80px;
    background: var(--color-white);
}

.zub-empty {
    text-align: center;
    padding: 4rem;
    color: var(--color-gray-600);
}

/* ── Gruppen ─────────────────────────────────────────────────────── */
.zub-group {
    scroll-margin-top: 150px;
    margin-bottom: 64px;
}
.zub-group:last-child {
    margin-bottom: 0;
}
.zub-group__title {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-orange);
    display: inline-block;
}

/* ── Grid ─────────────────────────────────────────────────────────── */
.zub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ── Karte ─────────────────────────────────────────────────────────── */
.zub-card {
    background: var(--color-bg);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.zub-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    transform: translateY(-2px);
}

/* Bild-Bereich */
.zub-card__img {
    aspect-ratio: 4 / 3;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.zub-card__img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    padding: 1.5rem;
}
.zub-card__placeholder {
    width: 64px;
    height: 64px;
    color: var(--color-gray-400);
}
.zub-card__placeholder svg {
    width: 100%;
    height: 100%;
}

/* Text-Bereich */
.zub-card__body {
    padding: 20px 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.zub-card__name {
    font-family: var(--font-display);
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--color-orange);
    line-height: 1.3;
    margin: 0;
}
.zub-card__desc {
    font-size: var(--fs-small);
    color: var(--color-gray-700);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Kontakt-CTA ─────────────────────────────────────────────────── */
.zub-cta {
    background: var(--color-dark);
    padding: 64px 0;
}
.zub-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.zub-cta__text h2 {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}
.zub-cta__text p {
    color: rgba(255,255,255,0.7);
    font-size: var(--fs-base);
    max-width: 560px;
    line-height: 1.6;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .zub-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .zub-cta__inner { flex-direction: column; text-align: center; }
    .zub-cta__text p { max-width: 100%; }
}
@media (max-width: 540px) {
    .zub-grid { grid-template-columns: 1fr; gap: 12px; }
    .zub-section { padding: 40px 0 56px; }
    .zub-group { margin-bottom: 40px; }
}
