/* heinl-redesign.css – Variante A & B */

/* ===== HEADER ACTIONS: KONTO & WARENKORB (neutral statt orange) ===== */
.header-actions-col .icon {
    color: #798490;
}

.header-cart-total {
    color: #798490;
}

.header-actions-btn:hover .icon {
    color: #f07e00;
}

/* ===== VARIANTE C: STICKY NAV ===== */
/* heinl-nav aus dem Layout nehmen, damit .nav-main direkt im body-Flow
   landet und sticky einen Scroll-Spielraum bekommt. */
heinl-nav {
    display: contents;
}

.nav-main {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: #fff;
}

/* ===== VARIANTE C: NAV CTA LINKS ===== */
.main-navigation-menu {
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap !important;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hr-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 1rem 0.875rem;
    border-radius: 0.25rem;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #f07e00;
    background: rgba(240, 126, 0, 0.08);
    text-decoration: none;
    white-space: nowrap;
    transition:
        background 0.2s,
        color 0.2s;
}

@media (min-width: 768px) {
    .main-navigation-link:last-child span[itemprop="name"] {
        position: static;
        top: auto;
    }
}

.hr-nav-cta:hover {
    background: #f07e00;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .nav-right {
        display: none;
    }
}

/* ===== VARIANTE B: INFO-BAR ===== */
.hr-info-bar {
    background: #1c1c1e;
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1100;
}

.hr-info-bar a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.hr-info-bar a:hover {
    color: #ffffff;
}

.hr-info-bar__left,
.hr-info-bar__right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hr-info-bar__sep {
    opacity: 0.4;
}

.hr-info-bar__verleger {
    color: #f07e00 !important;
    font-weight: 600;
}

.hr-info-bar__verleger:hover {
    color: #ffffff !important;
}

@media (max-width: 767.98px) {
    .hr-info-bar {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.5rem;
        text-align: center;
    }

    .hr-info-bar__left {
        display: none;
    }
}

/* ===== VARIANTE C: MEGA NAV ===== */
.hr-mega-nav {
    background: #ffffff;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1050;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-mega-nav__inner {
    max-width: 87.5rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hr-mega-nav__menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.hr-mega-nav__item {
    position: relative;
}

.hr-mega-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1c1c1e;
    text-decoration: none;
    transition: color 0.15s;
    white-space: nowrap;
}

.hr-mega-nav__link:hover {
    color: #f07e00;
}

.hr-mega-nav__link--highlight {
    color: #f07e00;
}

.hr-mega-nav__link--accent {
    color: #f07e00;
    background: #fff2e5;
    border-radius: 5px;
    margin-left: 0.25rem;
}

.hr-mega-nav__chevron {
    width: 0.625rem;
    height: 0.375rem;
    transition: transform 0.2s;
}

.hr-mega-nav__item--has-dropdown:hover .hr-mega-nav__chevron {
    transform: rotate(180deg);
}

/* CTA Button */
.hr-mega-nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hr-mega-nav__cta {
    display: inline-flex;
    align-items: center;
    background: #f07e00;
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.hr-mega-nav__cta:hover {
    background: #d96e00;
    color: #ffffff;
}

/* Dropdown Base */
.hr-mega-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.2s,
        visibility 0.2s;
    z-index: 1060;
    padding: 1.5rem;
}

.hr-mega-nav__item--has-dropdown:hover > .hr-mega-nav__dropdown,
.hr-mega-nav__item--has-dropdown:focus-within > .hr-mega-nav__dropdown {
    opacity: 1;
    visibility: visible;
}

/* Produkte Mega Dropdown – fullwidth */
.hr-mega-nav__item--has-dropdown[data-mega="produkte"]
    > .hr-mega-nav__dropdown {
    left: 0;
    right: 0;
    transform: none;
    position: fixed;
    top: auto;
    width: 100%;
    max-width: 100%;
    border-radius: 0 0 0.75rem 0.75rem;
    padding: 0;
}

.hr-mega-nav__dropdown-inner {
    max-width: 87.5rem;
    margin: 0 auto;
}

/* Produkte: Sidebar + Panels Layout */
.hr-mega-nav__item--has-dropdown[data-mega="produkte"]
    .hr-mega-nav__dropdown-inner {
    display: grid;
    grid-template-columns: 16rem 1fr;
    min-height: 22rem;
}

/* Sidebar */
.hr-mega-nav__sidebar {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e8e8e8;
    min-width: 13rem;
}

.hr-mega-nav__sidebar-item {
    display: block;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1c1c1e;
    text-decoration: none;
    transition: color 0.15s;
    border-left: 3px solid transparent;
}

.hr-mega-nav__sidebar-item:hover,
.hr-mega-nav__sidebar-item.is-active {
    color: #f07e00;
    font-weight: 600;
    border-left-color: #f07e00;
}

.hr-mega-nav__sidebar-sep {
    height: 1px;
    background: #e8e8e8;
    margin: 0.5rem 1.5rem;
}

/* Panels */
.hr-mega-nav__panels {
    padding: 1.5rem 2rem;
    flex: 1;
}

.hr-mega-nav__panel {
    display: none;
    height: 100%;
}

.hr-mega-nav__panel.is-active {
    display: flex;
    flex-direction: column;
}

/* Sub-Navigation (Bestseller, Dach, Wand...) */
.hr-mega-nav__panel-sub {
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 1.25rem;
}

.hr-mega-nav__panel-sub-item {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #1c1c1e;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition:
        color 0.15s,
        border-color 0.15s;
    white-space: nowrap;
}

.hr-mega-nav__panel-sub-item:hover,
.hr-mega-nav__panel-sub-item.is-active {
    color: #f07e00;
    border-bottom-color: #f07e00;
}

.hr-mega-nav__panel-sub-sep {
    width: 1px;
    height: 1rem;
    background: #e8e8e8;
    margin: 0 0.25rem;
}

/* Produkt-Grid */
.hr-mega-nav__panel-products {
    flex: 1;
}

.hr-mega-nav__subpanel {
    display: none;
}

.hr-mega-nav__subpanel.is-active {
    display: block;
}

.hr-mega-nav__product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 2rem;
}

.hr-mega-nav__product {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: #1c1c1e;
    transition: color 0.15s;
}

.hr-mega-nav__product:hover {
    color: #f07e00;
}

.hr-mega-nav__product-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.125rem;
}

.hr-mega-nav__badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #333333;
    background: #d4edda;
    padding: 0.1875rem 0.625rem;
    border-radius: 3px;
    margin-bottom: 0.375rem;
}

.hr-mega-nav__product img {
    width: 100%;
    height: 6rem;
    object-fit: contain;
    object-position: left bottom;
    display: block;
    margin-top: auto;
}

.hr-mega-nav__panel-all {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1c1c1e;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hr-mega-nav__panel-all:hover {
    color: #f07e00;
}

/* Compact Dropdowns (Service, Über uns) */
.hr-mega-nav__dropdown--compact {
    min-width: 28rem;
    padding: 1.5rem;
}

.hr-mega-nav__dropdown--narrow {
    min-width: 14rem;
}

.hr-mega-nav__dropdown-cols {
    display: flex;
    gap: 3rem;
}

.hr-mega-nav__dropdown-col {
    display: flex;
    flex-direction: column;
}

.hr-mega-nav__dropdown-heading {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888888;
    margin: 0 0 0.75rem;
}

.hr-mega-nav__dropdown-link {
    display: block;
    padding: 0.375rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1c1c1e;
    text-decoration: none;
    transition: color 0.15s;
}

.hr-mega-nav__dropdown-link:hover {
    color: #f07e00;
}

/* Backdrop */
.hr-mega-nav__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s;
    pointer-events: none;
}

/* Mobile: Hide mega nav, keep original off-canvas */
@media (max-width: 767.98px) {
    .hr-mega-nav {
        display: none;
    }
}

/* ===== VARIANTE D: CLEAN HEADER (Logo + Nav + Search) ===== */

/* Remove header-main border when old row is hidden */
.header-main--clean {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

/* Logo in mega nav */
.hr-mega-nav__logo {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.hr-mega-nav__logo img {
    height: 2.5rem;
    width: auto;
}

/* Search toggle icon */
.hr-mega-nav__search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #1c1c1e;
    transition: color 0.15s;
    margin-left: 0.75rem;
    flex-shrink: 0;
}

.hr-mega-nav__search-toggle:hover {
    color: #f07e00;
}

/* Expandable search */
.hr-mega-nav__search-expand {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.2s,
        visibility 0.2s;
    z-index: 10;
}

.hr-mega-nav__search-expand.is-open {
    opacity: 1;
    visibility: visible;
}

.hr-mega-nav__search-form {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0.75rem;
}

.hr-mega-nav__search-input {
    flex: 1;
    border: none;
    border-bottom: 2px solid #e8e8e8;
    padding: 0.5rem 0;
    font-size: 1rem;
    font-family: "Source Sans Pro", sans-serif;
    outline: none;
    background: transparent;
    transition: border-color 0.15s;
}

.hr-mega-nav__search-input:focus {
    border-bottom-color: #f07e00;
}

.hr-mega-nav__search-close {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #888;
    transition: color 0.15s;
}

.hr-mega-nav__search-close:hover {
    color: #1c1c1e;
}

/* ===== VARIANTE B: NAV HIGHLIGHTS ===== */
.hr-nav-highlight {
    background: #fff2e5 !important;
    color: #f07e00 !important;
    font-weight: 700 !important;
    border-radius: 5px;
    margin: 0 0.125rem;
}

.hr-nav-highlight .main-navigation-link-text span {
    color: #f07e00;
}

/* ===== VARIANTE B: ENTRY TILES (PREFA-Stil) ===== */
.hr-entry-section {
    background: #fdf6ef;
    padding: 3.5rem 0;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-entry-section__inner {
    max-width: 87.5rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.hr-entry-section__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #f07e00;
    margin-bottom: 0.375rem;
}

.hr-entry-section__title {
    font-size: 1.75rem;
    color: #1c1c1e;
    font-weight: 700;
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.hr-entry-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hr-entry-tile {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #1c1c1e;
}

.hr-entry-tile__img-wrap {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.hr-entry-tile__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.hr-entry-tile:hover .hr-entry-tile__img {
    transform: scale(1.03);
}

.hr-entry-tile__body {
    padding: 1.25rem 0 0;
}

.hr-entry-tile__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    line-height: 1.3;
    color: #1c1c1e;
}

.hr-entry-tile__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.hr-entry-tile__list li {
    position: relative;
    padding-left: 0.875rem;
    font-size: 0.8125rem;
    color: #4a545b;
    line-height: 1.5;
    margin-bottom: 0.25rem;
}

.hr-entry-tile__list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #798490;
}

.hr-entry-tile__btn {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    border: 2px solid #f07e00;
    background: #f07e00;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 1.875rem;
    text-decoration: none;
    transition:
        background 0.2s,
        border-color 0.2s;
}

.hr-entry-tile:hover .hr-entry-tile__btn {
    background: #d96e00;
    border-color: #d96e00;
}

@media (max-width: 767.98px) {
    .hr-entry-tiles {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== USP-BAR LAYOUT ===== */
.usp-bar .container {
    align-items: center;
}

/* ===== USP-BAR CTA ===== */
.usp-bar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: #f07e00;
    color: #ffffff;
    padding: 0.25rem 0.875rem;
    border-radius: 5px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.usp-bar-cta:hover {
    background: #d96e00;
    color: #ffffff;
}

/* ===== USP-BAR TOGGLE (Privatkunde/Verleger in USP-Bar) ===== */
.usp-bar-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ===== TOP-TOGGLE BAR ===== */
.hr-toggle-bar {
    background: #1c1c1e;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-family: "Source Sans Pro", sans-serif;
    position: relative;
    z-index: 1100;
}

.hr-toggle-buttons {
    display: flex;
    gap: 0.25rem;
}

.hr-toggle-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition:
        background 0.2s,
        color 0.2s;
    line-height: 1;
}

.hr-toggle-btn--active {
    background: #f07e00;
    color: #ffffff;
}

.hr-toggle-btn--inactive {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
}

.hr-toggle-btn--inactive:hover {
    color: #ffffff;
}

.hr-toggle-meta {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.hr-toggle-meta a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.hr-toggle-meta a:hover {
    color: #ffffff;
}

@media (max-width: 575.98px) {
    .hr-toggle-bar {
        flex-direction: column;
        gap: 0.375rem;
        padding: 0.5rem;
    }

    .hr-toggle-meta {
        font-size: 0.625rem;
    }
}

/* ===== PROFI-GESUCHT TEASER ===== */
.hr-profi-teaser {
    background: #f07e00;
    padding: 1.25rem 0;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-profi-teaser__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hr-profi-teaser__label {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.125rem;
}

.hr-profi-teaser__title {
    font-size: 1.125rem;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.hr-profi-teaser__desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0.125rem 0 0 0;
}

.hr-profi-teaser__btn {
    display: inline-block;
    background: #ffffff;
    color: #f07e00;
    padding: 0.625rem 1.25rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.hr-profi-teaser__btn:hover {
    opacity: 0.9;
    color: #f07e00;
}

@media (max-width: 575.98px) {
    .hr-profi-teaser__inner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* ===== VERLEGER PAGE ===== */

/* B2B Navigation */
.hr-b2b-nav {
    background: #ffffff;
    border-bottom: 1px solid #e6e6e6;
    padding: 0.75rem 0;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-b2b-nav__inner {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hr-b2b-nav__logo img {
    height: 2.5rem;
}

.hr-b2b-nav__links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hr-b2b-nav__links a {
    color: #1c1c1e;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
}

.hr-b2b-nav__links a:hover {
    color: #f07e00;
}

.hr-b2b-nav__cta {
    display: inline-block;
    background: #f07e00;
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.hr-b2b-nav__cta:hover {
    opacity: 0.9;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .hr-b2b-nav__links {
        display: none;
    }
}

/* B2B Hero — Split Layout */
.hr-b2b-hero--split {
    font-family: "Source Sans Pro", sans-serif;
    background: #ffffff;
}

.hr-b2b-hero--split > .hr-b2b-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 28rem;
    max-width: 87.5rem;
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
}

.hr-b2b-hero__image {
    background-size: cover;
    background-position: center;
    min-height: 28rem;
    border-radius: 0.5rem;
    margin: 1rem 0 1rem 1rem;
}

.hr-b2b-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 3.5rem;
}

.hr-b2b-hero__label {
    font-size: 0.6875rem;
    color: #f07e00;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.hr-b2b-hero__title {
    font-size: 2rem;
    color: #1c1c1e;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    line-height: 1.25;
}

.hr-b2b-hero__subtitle {
    font-size: 1.0625rem;
    color: #798490;
    margin: 0 0 1.75rem 0;
    line-height: 1.5;
}

.hr-b2b-hero__usps {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.hr-b2b-hero__usp {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #1c1c1e;
    font-weight: 600;
    line-height: 1.4;
}

.hr-b2b-hero__usp-icon {
    flex-shrink: 0;
    width: 1.375rem;
    height: 1.375rem;
}

.hr-b2b-hero__actions {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hr-b2b-hero__badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hr-b2b-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f5f5f5;
    padding: 0.5rem 1rem;
    border-radius: 0.3125rem;
    color: #1c1c1e;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: background 0.2s;
    font-weight: 500;
}

.hr-b2b-hero__badge:hover {
    background: #e6e6e6;
    color: #1c1c1e;
}

@media (max-width: 991.98px) {
    .hr-b2b-hero--split > .hr-b2b-hero__grid {
        grid-template-columns: 1fr;
    }

    .hr-b2b-hero__image {
        min-height: 16rem;
        margin: 1rem;
    }

    .hr-b2b-hero__content {
        padding: 2rem 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .hr-b2b-hero__title {
        font-size: 1.5rem;
    }

    .hr-b2b-hero__image {
        min-height: 12rem;
    }

    .hr-b2b-hero__badges {
        flex-direction: column;
    }
}

/* Sortiment */
.hr-sortiment {
    padding: 3.75rem 1rem;
    background: #ffffff;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-sortiment__inner {
    max-width: 75rem;
    margin: 0 auto;
}

.hr-section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1c1c1e;
    margin-bottom: 2rem;
}

.hr-sortiment__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hr-sortiment__card {
    background: #f9f9f9;
    border-radius: 5px;
    overflow: hidden;
    text-decoration: none;
    color: #1c1c1e;
    transition: box-shadow 0.2s;
    border: 1px solid #e6e6e6;
}

.hr-sortiment__card:hover {
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
    color: #1c1c1e;
}

.hr-sortiment__card-img {
    width: 100%;
    height: 12.5rem;
    object-fit: cover;
    display: block;
}

.hr-sortiment__card-body {
    padding: 1rem;
}

.hr-sortiment__card-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.hr-sortiment__card-desc {
    font-size: 0.8125rem;
    color: #798490;
    margin: 0;
}

@media (max-width: 767.98px) {
    .hr-sortiment__grid {
        grid-template-columns: 1fr;
    }
}

/* Symbiose */
.hr-symbiose {
    padding: 4rem 1rem;
    background: #ffffff;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-symbiose__inner {
    max-width: 75rem;
    margin: 0 auto;
}

.hr-symbiose__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.hr-symbiose__col {
    background: #f1f1f2;
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.06);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
}

.hr-symbiose__col--center {
    background: linear-gradient(160deg, #f5a623 0%, #f07e00 40%, #d86e00 100%);
    color: #ffffff;
    box-shadow: 0 0.5rem 1.5rem rgba(240, 126, 0, 0.3);
}

.hr-symbiose__col--center .hr-symbiose__subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.hr-symbiose__icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.hr-symbiose__col-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.hr-symbiose__subtitle {
    font-size: 1rem;
    color: #798490;
    margin: 0 0 1rem 0;
}

.hr-symbiose__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 0.875rem;
}

.hr-symbiose__list li {
    padding: 0.375rem 0;
}

.hr-symbiose__list li::before {
    content: "→ ";
}

.hr-symbiose__col--center .hr-symbiose__list li::before {
    content: "✓ ";
}

@media (max-width: 767.98px) {
    .hr-symbiose__grid {
        grid-template-columns: 1fr;
    }
}

/* Benefits */
.hr-benefits {
    padding: 3.75rem 1rem;
    background: #ffffff;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-benefits__inner {
    max-width: 75rem;
    margin: 0 auto;
}

.hr-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hr-benefit-card {
    background: #f9f9f9;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    padding: 1.5rem;
}

.hr-benefit-card__icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.hr-benefit-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #1c1c1e;
    margin: 0 0 0.375rem 0;
}

.hr-benefit-card__desc {
    font-size: 0.8125rem;
    color: #4a545b;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 767.98px) {
    .hr-benefits__grid {
        grid-template-columns: 1fr;
    }
}

/* Bestellprozess */
.hr-process {
    padding: 3.75rem 1rem;
    background: #f1f1f2;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-process__inner {
    max-width: 75rem;
    margin: 0 auto;
}

.hr-process__steps {
    display: flex;
    gap: 1rem;
}

.hr-process__step {
    flex: 1;
    background: #ffffff;
    border-radius: 5px;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid #e6e6e6;
}

.hr-process__step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: #f07e00;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.hr-process__step-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    color: #1c1c1e;
    margin: 0 0 0.25rem 0;
}

.hr-process__step-desc {
    font-size: 0.875rem;
    color: #798490;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 767.98px) {
    .hr-process__steps {
        flex-direction: column;
    }
}

/* Testimonials */
.hr-testimonials {
    padding: 3.75rem 1rem;
    background: #ffffff;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-testimonials__inner {
    max-width: 75rem;
    margin: 0 auto;
}

.hr-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hr-testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #f9f9f9;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    padding: 1.5rem;
}

.hr-testimonial-card__stars {
    color: #f07e00;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.hr-testimonial-card__quote {
    font-size: 0.875rem;
    color: #4a545b;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-style: italic;
}

.hr-testimonial-card__name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1c1c1e;
    margin: 0;
}

.hr-testimonial-card__company {
    font-size: 0.75rem;
    color: #798490;
    margin: 0;
}

@media (max-width: 767.98px) {
    .hr-testimonials__grid {
        grid-template-columns: 1fr;
    }
}

/* Referenzprojekte */
.hr-referenzen {
    padding: 3.75rem 1rem;
    background: #f9f9f9;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-referenzen__inner {
    max-width: 75rem;
    margin: 0 auto;
}

.hr-referenzen__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.hr-referenz-card {
    background: #f1f1f2;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    padding: 3rem;
    text-align: center;
    color: #798490;
    font-size: 1.125rem;
}

@media (max-width: 575.98px) {
    .hr-referenzen__grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Bar */
.hr-cta-bar {
    background: #f07e00;
    padding: 2rem 1rem;
    text-align: center;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-cta-bar__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.hr-cta-bar__btn {
    display: inline-block;
    background: #ffffff;
    color: #f07e00;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.hr-cta-bar__btn:hover {
    opacity: 0.9;
}

/* ===== PROFI-GESUCHT PAGE ===== */

/* Green Hero */
.hr-green-hero {
    background: linear-gradient(135deg, #1a5c2a 0%, #2d8a47 100%);
    padding: 3.75rem 1rem;
    text-align: center;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-green-hero__inner {
    max-width: 50rem;
    margin: 0 auto;
}

.hr-green-hero__label {
    font-size: 0.6875rem;
    color: #a5d6a7;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.hr-green-hero__title {
    font-size: 1.75rem;
    color: #ffffff;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.hr-green-hero__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Steps */
.hr-steps {
    padding: 3.75rem 1rem;
    background: #ffffff;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-steps__inner {
    max-width: 50rem;
    margin: 0 auto;
}

.hr-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.hr-step {
    padding: 1rem;
}

.hr-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: #1a5c2a;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.hr-step__title {
    font-size: 1rem;
    font-weight: 700;
    color: #1c1c1e;
    margin: 0 0 0.25rem 0;
}

.hr-step__desc {
    font-size: 0.8125rem;
    color: #798490;
    margin: 0;
}

@media (max-width: 575.98px) {
    .hr-steps__grid {
        grid-template-columns: 1fr;
    }
}

/* Wizard */
.hr-wizard {
    padding: 3.75rem 1rem;
    background: #f1f1f2;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-wizard__inner {
    max-width: 50rem;
    margin: 0 auto;
}

.hr-wizard__options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hr-wizard__option {
    background: #ffffff;
    border: 2px solid #e6e6e6;
    border-radius: 5px;
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.hr-wizard__option:hover {
    border-color: #1a5c2a;
}

.hr-wizard__option-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.hr-wizard__option-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1c1c1e;
}

.hr-wizard__plz {
    display: flex;
    gap: 0.75rem;
    max-width: 25rem;
    margin: 0 auto;
}

.hr-wizard__input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    font-size: 0.875rem;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-wizard__submit {
    background: #1a5c2a;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    font-family: "Source Sans Pro", sans-serif;
}

@media (max-width: 575.98px) {
    .hr-wizard__options {
        grid-template-columns: 1fr;
    }

    .hr-wizard__plz {
        flex-direction: column;
    }
}

/* Leistungen (Profi-gesucht Benefits) */
.hr-leistungen {
    padding: 3.75rem 1rem;
    background: #f5f5f6;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-leistungen__inner {
    max-width: 75rem;
    margin: 0 auto;
}

.hr-leistungen__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.hr-leistung-card {
    text-align: center;
    padding: 1.25rem;
}

.hr-leistung-card__icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.hr-leistung-card__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1c1c1e;
    margin: 0 0 0.25rem 0;
}

.hr-leistung-card__desc {
    font-size: 0.8125rem;
    color: #798490;
    margin: 0;
}

@media (max-width: 767.98px) {
    .hr-leistungen__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .hr-leistungen__grid {
        grid-template-columns: 1fr;
    }
}

/* Ratgeber */
.hr-ratgeber {
    padding: 3.75rem 1rem;
    background: #f9f9f9;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-ratgeber__inner {
    max-width: 75rem;
    margin: 0 auto;
}

.hr-ratgeber__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hr-ratgeber-card {
    background: #f1f1f2;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    padding: 3rem 1.5rem;
    text-align: center;
    color: #798490;
    font-size: 1rem;
}

@media (max-width: 767.98px) {
    .hr-ratgeber__grid {
        grid-template-columns: 1fr;
    }
}

/* Green CTA */
.hr-green-cta {
    background: linear-gradient(135deg, #1a5c2a 0%, #2d8a47 100%);
    padding: 2rem 1rem;
    text-align: center;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-green-cta__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.hr-green-cta__btn {
    display: inline-block;
    background: #ffffff;
    color: #1a5c2a;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
}

/* ===== VARIANTE C: HERO TILES (VELUX-Style) ===== */
.hr-hero-tiles {
    font-family: "Source Sans Pro", sans-serif;
}

.hr-hero-tiles__header {
    background: #f1f1f2;
    padding: 4rem 0;
}

.hr-hero-tiles__header-inner {
    max-width: 87.5rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.hr-hero-tiles__header-inner::before {
    content: "";
    display: block;
    width: 3rem;
    height: 0.1875rem;
    background: #f07e00;
    margin: 0 auto 1.5rem;
    border-radius: 0.0625rem;
}

.hr-hero-tiles__kicker {
    margin: 0 0 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #f07e00;
}

.hr-hero-tiles__title {
    margin: 0 auto 1.25rem;
    font-size: clamp(1.875rem, 2.6vw + 1rem, 2.75rem);
    line-height: 1.1;
    letter-spacing: -0.015em;
    font-weight: 700;
    color: #1c1c1e;
}

.hr-hero-tiles__lead {
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.55;
    color: #555;
}

@media (max-width: 767.98px) {
    .hr-hero-tiles__header {
        padding: 2.5rem 0 2rem;
    }

    .hr-hero-tiles__header-inner {
        padding: 0 1rem;
    }

    .hr-hero-tiles__header-inner::before {
        margin-bottom: 1.25rem;
    }

    .hr-hero-tiles__lead {
        font-size: 1rem;
    }
}

/* ===== SORTIMENT-INTRO (Produkt-Grid Überschrift) ===== */
.hr-sortiment-intro {
    text-align: left;
    padding: 3.5rem 0 1.75rem;
}

.hr-sortiment-intro__kicker {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #f07e00;
}

.hr-sortiment-intro__title {
    margin: 0;
    font-size: clamp(1.5rem, 1.6vw + 1rem, 2rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    font-weight: 700;
    color: #1c1c1e;
}

@media (max-width: 767.98px) {
    .hr-sortiment-intro {
        padding: 2.5rem 0 1.25rem;
    }
}

.hr-hero-tiles__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.5rem;
    max-width: 87.5rem;
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
    height: 80vh;
    min-height: 32rem;
    max-height: 52rem;
}

.hr-hero-tile {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 0.5rem;
}

.hr-hero-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 50%;
    display: block;
    transition: transform 0.5s ease;
}

.hr-hero-tile:hover img {
    transform: scale(1.03);
}

/* Gradient-Overlay auf allen Kacheln */
.hr-hero-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        transparent 70%
    );
    pointer-events: none;
    border-radius: 0.5rem;
}

/* Links: Hochformat, spannt 2 Reihen */
.hr-hero-tile--tall {
    grid-row: 1 / 3;
}

/* Overlay-Text */
.hr-hero-tile__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 1;
    color: #ffffff;
}

.hr-hero-tile__kicker {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: #f07e00;
    color: #ffffff;
    padding: 0.25rem 0.625rem;
    border-radius: 3px;
    margin: 0 0 0.75rem;
}

.hr-hero-tile__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.5rem;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.hr-hero-tile--tall .hr-hero-tile__title {
    font-size: 1.75rem;
}

.hr-hero-tile__desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0 0 1.25rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.hr-hero-tile__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: transparent;
    color: #ffffff;
    padding: 0.5rem 1.375rem;
    border: 2px solid #ffffff;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none;
    transition:
        background 0.2s,
        border-color 0.2s;
}

.hr-hero-tile:hover .hr-hero-tile__btn {
    background: #f07e00;
    border-color: #f07e00;
}

@media (max-width: 767.98px) {
    .hr-hero-tiles__grid {
        grid-template-columns: 1fr;
        grid-template-rows: 24rem 16rem 16rem;
        height: auto;
        min-height: 0;
        max-height: none;
    }

    .hr-hero-tile--tall {
        grid-row: 1;
    }

    .hr-hero-tile--tall .hr-hero-tile__title {
        font-size: 1.375rem;
    }

    .hr-hero-tile__overlay {
        padding: 1.25rem;
    }

    .hr-hero-tile__title {
        font-size: 1.125rem;
    }
}

/* ===== VARIANTE C: TRUST BAR (uses original cms-block-mag-usp styles) ===== */

/* ===== UX UPLIFT: STICKY B2B CONTACT BAR ===== */
.hr-sticky-bar {
    background: #1c1c1e;
    padding: 0.5rem 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    font-family: "Source Sans Pro", sans-serif;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.hr-sticky-bar--visible {
    transform: translateY(0);
}

.hr-sticky-bar__inner {
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hr-sticky-bar__left,
.hr-sticky-bar__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hr-sticky-bar__label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.hr-sticky-bar__link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
}

.hr-sticky-bar__link:hover {
    color: #f07e00;
}

.hr-sticky-bar__link--wa {
    color: #25d366;
}

.hr-sticky-bar__link--wa:hover {
    color: #20c05c;
}

.hr-sticky-bar__link--subtle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 400;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 1rem;
}

.hr-sticky-bar__link--subtle:hover {
    color: #ffffff;
}

.hr-sticky-bar__hours {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.6875rem;
}

.hr-sticky-bar__cta {
    display: inline-block;
    background: #f07e00;
    color: #ffffff;
    padding: 0.375rem 1rem;
    border-radius: 0.3125rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.hr-sticky-bar__cta:hover {
    background: #d96e00;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .hr-sticky-bar__inner {
        justify-content: center;
        gap: 0.75rem;
    }

    .hr-sticky-bar__label,
    .hr-sticky-bar__hours,
    .hr-sticky-bar__link--subtle {
        display: none;
    }

    .hr-sticky-bar__link {
        font-size: 0.8125rem;
    }
}

/* ===== UX UPLIFT: TRUST BADGE BAR ===== */
.hr-trust-bar {
    background: #f5f5f5;
    padding: 1rem 1.5rem;
    font-family: "Source Sans Pro", sans-serif;
    border-bottom: 1px solid #e6e6e6;
}

.hr-trust-bar__inner {
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hr-trust-bar__badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hr-trust-bar__icon {
    font-size: 1.25rem;
}

.hr-trust-bar__badge:first-child .hr-trust-bar__icon {
    color: #f07e00;
}

.hr-trust-bar__title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1c1c1e;
    line-height: 1.2;
}

.hr-trust-bar__sub {
    font-size: 0.6875rem;
    color: #798490;
    line-height: 1.2;
}

.hr-trust-bar__sep {
    width: 1px;
    height: 1.75rem;
    background: #d9d9d9;
}

@media (max-width: 767.98px) {
    .hr-trust-bar__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        justify-items: start;
    }

    .hr-trust-bar__sep {
        display: none;
    }
}

@media (max-width: 374.98px) {
    .hr-trust-bar__inner {
        grid-template-columns: 1fr;
    }
}

/* ===== UX UPLIFT: CTA HIERARCHY ===== */
.hr-cta-bar__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hr-cta-bar__btn--primary {
    background: #ffffff;
    color: #f07e00;
    padding: 0.75rem 1.75rem;
    border-radius: 0.3125rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.hr-cta-bar__btn--primary:hover {
    opacity: 0.9;
}

.hr-cta-bar__btn--secondary {
    background: transparent;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: 2px solid #ffffff;
    border-radius: 0.3125rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.2s;
}

.hr-cta-bar__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.hr-cta-bar__btn--wa {
    border-color: #25d366;
    color: #25d366;
}

.hr-cta-bar__btn--wa:hover {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

@media (max-width: 575.98px) {
    .hr-cta-bar__actions {
        flex-direction: column;
    }

    .hr-cta-bar__btn--primary,
    .hr-cta-bar__btn--secondary {
        width: 100%;
        text-align: center;
    }
}

/* ===== CTA BAR: PERKS (Exklusive Vorteile) ===== */
.hr-cta-bar__subtitle {
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    opacity: 0.95;
}

.hr-cta-bar__perks {
    list-style: none;
    margin: 0 auto 1.75rem auto;
    padding: 0;
    max-width: 60rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.hr-cta-bar__perk {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0.5rem;
    padding: 0.875rem 1rem;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.75rem;
    row-gap: 0.125rem;
    align-items: center;
    text-align: left;
}

.hr-cta-bar__perk-icon {
    grid-row: 1 / span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: #ffffff;
    color: #f07e00;
    flex-shrink: 0;
}

.hr-cta-bar__perk-label {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1.2;
}

.hr-cta-bar__perk-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8125rem;
    line-height: 1.3;
}

.hr-cta-bar__register {
    margin-bottom: 1rem;
}

.hr-cta-bar__or {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    margin-right: 0.25rem;
}

/* ===== DIRECT CONTACT SECTION (Ihr direkter Draht) ===== */
.hr-contact-direct-section {
    background: #f5f5f5;
    padding: 3rem 1.25rem;
}

.hr-contact-direct {
    margin: 0 auto;
    max-width: 64rem;
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
    text-align: left;
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.15);
}

.hr-contact-direct__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.hr-contact-direct__title {
    color: #2d2d2d;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.hr-contact-direct__intro {
    color: #555;
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}

.hr-contact-direct__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hr-contact-direct__item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.hr-contact-direct__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: #fff3e0;
    color: #f07e00;
    flex-shrink: 0;
}

.hr-contact-direct__link {
    color: #2d2d2d;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.hr-contact-direct__link:hover {
    color: #f07e00;
}

.hr-contact-direct__hours {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.8125rem;
    color: #666;
}

.hr-contact-direct__hours-row {
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: 0.5rem;
}

.hr-contact-direct__hours-row dt {
    font-weight: 600;
    color: #2d2d2d;
}

.hr-contact-direct__hours-row dd {
    margin: 0;
}

.hr-contact-direct__cta {
    display: inline-block;
    background: #f07e00;
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    border-radius: 0.375rem;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    text-align: center;
    margin-top: 0.25rem;
    transition: background 0.2s;
    align-self: flex-start;
}

.hr-contact-direct__cta:hover {
    background: #d96f00;
    color: #ffffff;
}

.hr-contact-direct__photo {
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #f5f5f5;
    position: relative;
    margin: 0;
}

.hr-contact-direct__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hr-contact-direct__photo-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.875rem 1rem;
    background: linear-gradient(
        to top,
        rgba(28, 28, 30, 0.92) 0%,
        rgba(28, 28, 30, 0.7) 70%,
        rgba(28, 28, 30, 0) 100%
    );
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.hr-contact-direct__photo-name {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hr-contact-direct__photo-role {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

.hr-contact-direct__trust {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

.hr-contact-direct__trust-card {
    background: #f9f9f9;
    border-radius: 0.625rem;
    padding: 0.875rem 1rem;
    border-left: none;
}

.hr-contact-direct__trust-title {
    color: #2d2d2d;
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    line-height: 1.25;
}

.hr-contact-direct__trust-desc {
    color: #666;
    font-size: 0.8125rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 991.98px) {
    .hr-contact-direct {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .hr-contact-direct__trust {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hr-contact-direct__trust-card {
        flex: 1 1 13rem;
    }
}

@media (max-width: 639.98px) {
    .hr-contact-direct {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }

    .hr-contact-direct__photo {
        aspect-ratio: 4 / 3;
        max-height: 20rem;
    }

    .hr-contact-direct__trust {
        flex-direction: column;
    }
}

.hr-cta-bar__btn--register {
    display: inline-block;
    background: #2d2d2d;
    color: #ffffff;
    padding: 0.9375rem 2rem;
    border-radius: 0.3125rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition:
        background 0.2s,
        transform 0.2s;
}

.hr-cta-bar__btn--register:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 767.98px) {
    .hr-cta-bar__perks {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 479.98px) {
    .hr-cta-bar__perks {
        grid-template-columns: 1fr;
    }

    .hr-cta-bar__btn--register {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* Hero Primary CTA */
.hr-b2b-hero__cta {
    display: inline-block;
    background: #f07e00;
    color: #ffffff;
    padding: 0.875rem 2.25rem;
    border-radius: 0.3125rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hr-b2b-hero__cta:hover {
    background: #d96e00;
    color: #ffffff;
}

.hr-b2b-hero__cta--secondary {
    background: transparent;
    color: #f07e00;
    border: 0.125rem solid #f07e00;
    padding: 0.75rem 2.125rem;
}

.hr-b2b-hero__cta--secondary:hover {
    background: #f07e00;
    color: #ffffff;
}

/* ===== UX UPLIFT: ENHANCED TESTIMONIALS ===== */
.hr-testimonials__subtitle {
    text-align: center;
    font-size: 0.875rem;
    color: #798490;
    margin: -1.5rem 0 2rem 0;
}

.hr-testimonial-card__quote-mark {
    font-size: 2rem;
    line-height: 1;
    color: #f07e00;
    margin-bottom: 0.5rem;
}

.hr-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid #e6e6e6;
    padding-top: 1rem;
    margin-top: 1rem;
}

.hr-testimonial-card__avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #e6e6e6;
    flex-shrink: 0;
    object-fit: cover;
}

/* ===== UX UPLIFT: ENHANCED SYMBIOSE ===== */
.hr-symbiose__header {
    text-align: center;
    margin-bottom: 2rem;
}

.hr-symbiose__kicker {
    display: block;
    font-size: 0.6875rem;
    color: #798490;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.hr-symbiose__header .hr-section-title {
    margin-bottom: 0;
}

.hr-symbiose__col--problem {
    background: #ffffff;
    border: 1px solid #e6e6e6;
}

.hr-symbiose__col--problem .hr-symbiose__list li::before {
    content: "";
}

.hr-symbiose__col--center .hr-symbiose__list li::before {
    content: "";
}

.hr-symbiose__list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1rem;
}

.hr-symbiose__list li > svg {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

.hr-symbiose__list--positive li > svg {
    color: #ffffff;
}

.hr-symbiose__list--negative li > svg {
    color: #a1a1a1;
}

.hr-symbiose__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f07e00;
}

.hr-symbiose__arrow svg {
    width: 3rem;
    height: 3rem;
    stroke-width: 3;
    filter: drop-shadow(0 0 0.125rem rgba(240, 126, 0, 0.25));
}

.hr-symbiose__arrow--flip svg {
    transform: scaleX(-1);
}

.hr-symbiose__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.hr-symbiose__logo svg {
    width: 2.75rem;
    height: 2.75rem;
}

.hr-symbiose__result {
    margin-top: 2.5rem;
    background: #ffffff;
    border-radius: 0.5rem;
    padding: 1.25rem 1.75rem;
    color: #1c1c1e;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.5rem;
}

.hr-symbiose__result-label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1c1c1e;
}

.hr-symbiose__result-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    color: #4a4a4a;
}

.hr-symbiose__result-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4375rem;
}

.hr-symbiose__result-item svg {
    flex-shrink: 0;
}

@media (max-width: 575.98px) {
    .hr-symbiose__result {
        padding: 1.5rem 1.25rem;
    }

    .hr-symbiose__result-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.625rem;
        font-size: 1rem;
    }
}

/* Override grid to 5 columns for arrows */
.hr-symbiose .hr-symbiose__grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0.5rem;
    align-items: stretch;
}

@media (max-width: 767.98px) {
    .hr-symbiose .hr-symbiose__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hr-symbiose__arrow {
        transform: rotate(90deg);
        padding: 0.25rem 0;
    }

    /* Show Heinl first on mobile */
    .hr-symbiose__col--center {
        order: -1;
    }

    .hr-symbiose__arrow:first-of-type {
        order: -1;
        display: none;
    }
}

/* ===== UX UPLIFT: 4-COLUMN BENEFITS GRID ===== */
.hr-benefits__grid--4col {
    grid-template-columns: repeat(4, 1fr);
}

.hr-benefits__grid--4col .hr-benefit-card {
    text-align: center;
}

@media (max-width: 991.98px) {
    .hr-benefits__grid--4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .hr-benefits__grid--4col {
        grid-template-columns: 1fr;
    }
}

/* ===== UX UPLIFT: PROCESS TIMELINE ===== */
.hr-process__header {
    text-align: center;
    margin-bottom: 2rem;
}

.hr-process__kicker {
    display: block;
    font-size: 0.8125rem;
    color: #798490;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.hr-process__header .hr-section-title {
    font-size: 1.75rem;
    margin-bottom: 0;
}

.hr-process__timeline {
    display: flex;
    gap: 1rem;
    position: relative;
}

/* Connecting line — runs through the center of number circles */
.hr-process__timeline::before {
    content: "";
    position: absolute;
    top: 10.9rem;
    left: 2.5rem;
    right: 2.5rem;
    height: 0.125rem;
    background: #f07e00;
    z-index: 0;
}

.hr-process__timeline .hr-process__step {
    position: relative;
    z-index: 1;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hr-process__step-img {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    object-fit: cover;
    border: 0.1875rem solid #f07e00;
    margin-bottom: 0.5rem;
    display: block;
}

.hr-process__timeline .hr-process__step-num {
    position: relative;
    z-index: 2;
}

.hr-process__cta {
    text-align: center;
    margin-top: 2rem;
}

.hr-process__cta-btn {
    display: inline-block;
    background: #f07e00;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 0.3125rem;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: background 0.2s;
}

.hr-process__cta-btn:hover {
    background: #d96e00;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .hr-process__timeline {
        flex-direction: column;
        padding-left: 2rem;
    }

    .hr-process__timeline::before {
        top: 0;
        bottom: 0;
        left: 1rem;
        right: auto;
        width: 2px;
        height: auto;
    }

    .hr-process__timeline .hr-process__step {
        display: grid;
        grid-template-columns: 3.5rem 2rem 1fr;
        align-items: center;
        gap: 0 0.75rem;
        text-align: left;
        padding: 0.5rem 0;
    }

    .hr-process__step-img {
        width: 3.5rem;
        height: 3.5rem;
        grid-row: span 2;
        margin-bottom: 0;
    }

    .hr-process__timeline .hr-process__step-num {
        flex-shrink: 0;
    }

    .hr-process__step-title {
        grid-column: 3;
    }

    .hr-process__step-desc {
        grid-column: 3;
    }
}

/* ===== UX UPLIFT: REFERENCE PROJECTS GALLERY ===== */
.hr-referenzen__header {
    text-align: center;
    margin-bottom: 2rem;
}

.hr-referenzen__kicker {
    display: block;
    font-size: 0.6875rem;
    color: #798490;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.hr-referenzen__header .hr-section-title {
    margin-bottom: 0;
}

.hr-referenzen__gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 12.5rem 12.5rem;
    gap: 0.75rem;
}

.hr-referenz-card {
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
    background: #798490;
    text-align: left;
    padding: 0;
    border: none;
    font-size: inherit;
    color: inherit;
}

.hr-referenz-card--large {
    grid-row: span 2;
}

.hr-referenz-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 30%,
        rgba(0, 0, 0, 0.75) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
}

.hr-referenz-card__tag {
    font-size: 0.625rem;
    color: #f07e00;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.hr-referenz-card__title {
    font-size: 0.9375rem;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.hr-referenz-card--large .hr-referenz-card__title {
    font-size: 1.125rem;
}

.hr-referenz-card__meta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0.25rem 0 0 0;
}

.hr-referenzen__more {
    text-align: center;
    margin-top: 1.25rem;
}

.hr-referenzen__more-link {
    color: #f07e00;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
}

.hr-referenzen__more-link:hover {
    color: #d96e00;
}

@media (max-width: 767.98px) {
    .hr-referenzen__gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 12.5rem 10rem 10rem;
    }

    .hr-referenz-card--large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 575.98px) {
    .hr-referenzen__gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 10rem);
    }

    .hr-referenz-card--large {
        grid-column: span 1;
    }
}

/* ===== RATGEBER & VIDEOS (innerhalb Projekttypen) ===== */
.hr-referenzen__ratgeber {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e0e0e0;
}

.hr-referenzen__ratgeber-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #2d2d2d;
    margin: 0 0 0.5rem;
}

.hr-referenzen__ratgeber-intro {
    font-size: 0.9375rem;
    color: #555;
    margin: 0 0 1.5rem;
    line-height: 1.6;
}

.hr-referenzen__videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hr-video-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.2s ease;
}

.hr-video-card:hover {
    transform: translateY(-0.125rem);
}

.hr-video-card__thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #1a1a1a;
}

.hr-video-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d2d2d 0%, #444 100%);
}

.hr-video-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.2s ease;
}

.hr-video-card:hover .hr-video-card__play {
    background: rgba(0, 0, 0, 0.15);
}

.hr-video-card__duration {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 0.1875rem;
    line-height: 1.4;
}

.hr-video-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0;
    line-height: 1.4;
}

.hr-video-card:hover .hr-video-card__title {
    color: #f07e00;
}

@media (max-width: 48rem) {
    .hr-referenzen__videos {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 48.0625rem) and (max-width: 64rem) {
    .hr-referenzen__videos {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== UX UPLIFT: PROFI-GESUCHT GREEN VARIANTS ===== */

/* Green Sticky Bar */
.hr-sticky-bar--green {
    background: #1a5c2a;
}

.hr-sticky-bar--green .hr-sticky-bar__cta {
    background: #ffffff;
    color: #1a5c2a;
}

.hr-sticky-bar--green .hr-sticky-bar__cta:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #1a5c2a;
}

/* Green Hero CTA + Trust */
.hr-green-hero__cta {
    display: inline-block;
    background: #ffffff;
    color: #1a5c2a;
    padding: 0.75rem 2rem;
    border-radius: 0.3125rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 1.5rem;
}

.hr-green-hero__cta:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #1a5c2a;
}

.hr-green-hero__trust {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.hr-green-hero__trust-badge {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .hr-green-hero__trust {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

/* Green Process Timeline */
.hr-process--green .hr-process__step-num {
    background: #1a5c2a;
}

.hr-process--green .hr-process__timeline::before {
    background: #1a5c2a;
}

.hr-process__cta-btn--green {
    background: #1a5c2a;
    color: #ffffff;
}

.hr-process__cta-btn--green:hover {
    background: #155223;
    color: #ffffff;
}

/* Wizard Enhancements */
.hr-wizard__header {
    text-align: center;
    margin-bottom: 2rem;
}

.hr-wizard__kicker {
    display: block;
    font-size: 0.6875rem;
    color: #798490;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.hr-wizard__header .hr-section-title {
    margin-bottom: 0;
}

.hr-wizard__result {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.8125rem;
    color: #798490;
}

.hr-wizard__plz {
    max-width: 30rem;
}

.hr-wizard__submit {
    white-space: nowrap;
}

/* ===== UX UPLIFT: GREEN CTA HIERARCHY ===== */
.hr-green-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hr-green-cta__btn--secondary {
    background: transparent;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: 2px solid #ffffff;
    border-radius: 0.3125rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.2s;
}

.hr-green-cta__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.hr-green-cta__btn--wa {
    border-color: #25d366;
    color: #25d366;
}

.hr-green-cta__btn--wa:hover {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

@media (max-width: 575.98px) {
    .hr-green-cta__actions {
        flex-direction: column;
    }

    .hr-green-cta__btn,
    .hr-green-cta__btn--secondary {
        width: 100%;
        text-align: center;
    }
}

/* ===== UX UPLIFT: FAQ SECTION ===== */
.hr-faq {
    padding: 3.75rem 1rem;
    background: #f9f9f9;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-faq__inner {
    max-width: 50rem;
    margin: 0 auto;
}

.hr-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hr-faq__item {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 0.3125rem;
    overflow: hidden;
}

.hr-faq__question {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1c1c1e;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hr-faq__question::-webkit-details-marker {
    display: none;
}

.hr-faq__question::after {
    content: "+";
    font-size: 1.25rem;
    color: #798490;
    font-weight: 400;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.2s;
}

.hr-faq__item[open] .hr-faq__question::after {
    content: "−";
    color: #f07e00;
}

.hr-faq__item[open] .hr-faq__question {
    color: #f07e00;
    border-bottom: 1px solid #e6e6e6;
}

.hr-faq__answer {
    padding: 1rem 1.25rem;
}

.hr-faq__answer p {
    margin: 0;
    font-size: 0.875rem;
    color: #4a545b;
    line-height: 1.6;
}

/* ===== VARIANTE E: NAV HIGHLIGHTS ===== */
.hr-nav-highlight {
    color: #f07e00 !important;
    font-weight: 600;
}

.hr-nav-highlight--accent {
    background: #fff3e0;
    border-radius: 0.25rem;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}

@media (max-width: 991.98px) {
    .hr-nav-highlight,
    .hr-nav-highlight--accent {
        display: none;
    }
}

/* ─── Trust Badges (Hero) ─── */
.hr-b2b-hero__trust {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.hr-b2b-hero__trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: #666;
    line-height: 1;
}

.hr-b2b-hero__trust-badge svg {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
}

/* ─── Leistungsspektrum ─── */
.hr-leistungen {
    padding: 3.75rem 1rem;
    background: #f5f5f6;
}

.hr-leistungen__inner {
    max-width: 75rem;
    margin: 0 auto;
    text-align: center;
}

.hr-leistungen__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
    margin-top: 2rem;
}

.hr-leistungen__item {
    text-align: center;
}

.hr-leistungen__icon {
    width: 4.5rem;
    height: 4.5rem;
    margin-bottom: 1rem;
}

.hr-leistungen__title {
    font-size: 1rem;
    font-weight: 700;
    color: #1c1c1e;
    margin-bottom: 0.5rem;
}

.hr-leistungen__desc {
    font-size: 0.875rem;
    color: #798490;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .hr-leistungen__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }
}

@media (max-width: 479.98px) {
    .hr-leistungen__grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Impact Counter ─── */
.hr-impact {
    background: #ffffff;
    padding: 4.5rem 1rem;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}

.hr-impact__inner {
    max-width: 75rem;
    margin: 0 auto;
}

.hr-impact__grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: 2rem;
}

.hr-impact__item {
    flex: 1;
    padding: 0 0.5rem;
}

.hr-impact__number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #f07e00;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hr-impact__label {
    display: block;
    font-size: 0.9375rem;
    color: #4a545b;
    margin-top: 0.75rem;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .hr-impact__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hr-impact__number {
        font-size: 1.75rem;
    }
}

/* =========================================
   B2B HINTS (Produkt-Seite)
   ========================================= */

.product-detail-from-price {
    margin-bottom: 0.25rem;
}

/* Top hint: under price, no box */
.hr-b2b-hint-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0 1.25rem 0;
    font-size: 0.8125rem;
    color: #4a545b;
}

.hr-b2b-hint-top svg {
    flex-shrink: 0;
}

.hr-b2b-hint-top a {
    color: #f07e00;
    font-weight: 500;
    text-decoration: underline;
}

.hr-b2b-hint-top a:hover {
    color: #d96e00;
}

/* =========================================
   CONFIRADO BANNER OVERRIDE
   ========================================= */

.confirado-banner {
    background: #fff !important;
    border: none;
    color: #1c1c1e;
    border-radius: 0.5rem;
}

.confirado-banner .confirado-banner-content .confirado-banner-content-headline {
    color: #1c1c1e;
}

.confirado-banner
    .confirado-banner-content
    .confirado-banner-content-usps
    .confirado-banner-content-usp {
    color: #758ca3;
}

.confirado-banner
    .confirado-banner-content
    .confirado-banner-content-usps
    .confirado-banner-content-usp
    .icon {
    color: #758ca3;
}

.confirado-banner .confirado-banner-cta .btn {
    color: #f07e00;
    background: transparent;
    border: 2px solid #f07e00;
    border-radius: 30px;
    font-weight: 600;
}

.confirado-banner .confirado-banner-cta .btn:hover {
    background: #f07e00;
    color: #fff;
}

/* ===== VERLEGER: SORTIMENT UPGRADE ===== */

.hr-sortiment__header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.hr-sortiment__kicker {
    display: inline-block;
    font-size: 0.6875rem;
    color: #f07e00;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hr-sortiment__grid--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.hr-sortiment__card-stock {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.625rem;
    padding-top: 0.625rem;
    border-top: 1px solid #e6e6e6;
    font-size: 0.75rem;
    font-weight: 600;
    color: #2d8a47;
}

.hr-sortiment__card-stock svg {
    flex-shrink: 0;
    stroke: #2d8a47;
}

@media (max-width: 991.98px) {
    .hr-sortiment__grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .hr-sortiment__grid--4 {
        grid-template-columns: 1fr;
    }
}

/* ===== VERLEGER: REASONS (USP) ===== */

.hr-reasons {
    padding: 5rem 1.5rem 5.5rem;
    background: #ffffff;
    font-family: "Source Sans Pro", sans-serif;
    color: #1c1c1e;
}

.hr-reasons__inner {
    max-width: 78rem;
    margin: 0 auto;
}

.hr-reasons__header {
    margin: 0 0 3.5rem;
}

.hr-reasons__kicker {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #f07e00;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hr-reasons__title {
    font-size: clamp(1.75rem, 3.4vw, 2.75rem);
    line-height: 1.1;
    font-weight: 700;
    color: #1c1c1e;
    margin: 0;
    letter-spacing: -0.01em;
}

.hr-reasons__grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 3rem;
    counter-reset: reason;
}

.hr-reasons__item {
    position: relative;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.hr-reasons__media {
    position: relative;
    margin: 0 0 1.5rem;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #efe9e3;
}

.hr-reasons__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hr-reasons__item:hover .hr-reasons__media img {
    transform: scale(1.04);
}

.hr-reasons__num {
    position: absolute;
    top: 0.875rem;
    left: 0.875rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #ffffff;
    padding: 0.375rem 0.625rem;
    background: #1c1c1e;
    line-height: 1;
}

.hr-reasons__item-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1c1c1e;
    margin: 0 0 0.625rem;
    line-height: 1.25;
    letter-spacing: -0.005em;
}

.hr-reasons__desc {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #5a5a5a;
    margin: 0 0 1.25rem;
}

.hr-reasons__proof {
    margin: auto 0 0;
    padding-top: 1rem;
    border-top: 1px solid #e8e8e8;
    font-size: 0.8125rem;
    color: #5a5a5a;
    letter-spacing: 0.01em;
}

.hr-reasons__proof strong {
    color: #f07e00;
    font-size: 1rem;
    font-weight: 800;
    margin-right: 0.25em;
    letter-spacing: -0.005em;
}

.hr-reasons__note {
    margin: 3rem 0 0;
    font-size: 0.75rem;
    color: #9a9a9a;
    text-align: center;
}

@media (max-width: 991.98px) {
    .hr-reasons {
        padding: 3.5rem 1.25rem 4rem;
    }
    .hr-reasons__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 2rem;
    }
    .hr-reasons__header {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .hr-reasons__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hr-reasons__item {
        padding-top: 1.25rem;
    }
}

/* ===== VERLEGER: LIEFERSERVICE ===== */

.hr-lieferservice {
    padding: 3.75rem 1rem;
    background: #f9f9f9;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-lieferservice__inner {
    max-width: 75rem;
    margin: 0 auto;
}

.hr-lieferservice__header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.hr-lieferservice__kicker {
    display: inline-block;
    font-size: 0.6875rem;
    color: #f07e00;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hr-lieferservice__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hr-lieferservice__item {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 0.3125rem;
    padding: 1.5rem;
    text-align: center;
}

.hr-lieferservice__icon {
    margin-bottom: 1rem;
}

.hr-lieferservice__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1c1c1e;
    margin: 0 0 0.375rem 0;
}

.hr-lieferservice__desc {
    font-size: 0.8125rem;
    color: #798490;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .hr-lieferservice__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .hr-lieferservice__grid {
        grid-template-columns: 1fr;
    }
}

.hr-abholung {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 0.3125rem;
    overflow: hidden;
}

.hr-abholung__info {
    padding: 2rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
}

.hr-abholung__kicker {
    display: inline-block;
    font-size: 0.6875rem;
    color: #f07e00;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hr-abholung__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1c1c1e;
    margin: 0 0 1.25rem 0;
    line-height: 1.3;
}

.hr-abholung__facts {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.hr-abholung__fact {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #1c1c1e;
    line-height: 1.5;
}

.hr-abholung__fact-icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.hr-abholung__fact strong {
    font-weight: 700;
}

.hr-abholung__note {
    font-size: 0.8125rem;
    color: #798490;
    margin: 0 0 1.5rem 0;
    font-style: italic;
}

.hr-abholung__actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.hr-abholung__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #f07e00;
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.25rem;
    transition: background 0.2s ease;
}

.hr-abholung__cta:hover,
.hr-abholung__cta:focus {
    background: #d87000;
    color: #ffffff;
}

.hr-abholung__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1c1c1e;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
}

.hr-abholung__link:hover,
.hr-abholung__link:focus {
    color: #f07e00;
}

.hr-abholung__map {
    position: relative;
    min-height: 22rem;
}

.hr-abholung__map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 767.98px) {
    .hr-abholung {
        grid-template-columns: 1fr;
    }

    .hr-abholung__info {
        padding: 1.5rem;
    }

    .hr-abholung__map {
        min-height: 18rem;
        order: 2;
    }
}

/* ===== VERLEGER: 24H NOTFALLSERVICE ===== */

.hr-notfall {
    background: #1c1c1e;
    padding: 2rem 1rem;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-notfall__inner {
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hr-notfall__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: #f07e00;
    border-radius: 50%;
}

.hr-notfall__content {
    flex: 1;
}

.hr-notfall__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
}

.hr-notfall__desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.hr-notfall__cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f07e00;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.3125rem;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.hr-notfall__cta:hover {
    background: #d96e00;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .hr-notfall__inner {
        flex-direction: column;
        text-align: center;
    }

    .hr-notfall__cta {
        width: 100%;
        justify-content: center;
    }
}

/* ===== VERLEGER: PLANUNGSTOOL ===== */

.hr-planungstool {
    padding: 3.75rem 1rem;
    background: #ffffff;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-planungstool__inner {
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    background: #f9f9f9;
    border: 1px solid #e6e6e6;
    border-radius: 0.3125rem;
    padding: 2.5rem;
}

.hr-planungstool__content {
    flex: 1;
}

.hr-planungstool__kicker {
    display: inline-block;
    font-size: 0.6875rem;
    color: #f07e00;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hr-planungstool__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1c1c1e;
    margin: 0 0 0.5rem 0;
}

.hr-planungstool__desc {
    font-size: 0.9375rem;
    color: #4a545b;
    margin: 0 0 1.25rem 0;
    line-height: 1.6;
}

.hr-planungstool__cta {
    display: inline-block;
    background: #f07e00;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.3125rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.2s;
}

.hr-planungstool__cta:hover {
    background: #d96e00;
    color: #ffffff;
}

.hr-planungstool__visual {
    flex-shrink: 0;
    width: 22rem;
    max-width: 45%;
    background: #ffffff;
    border-radius: 0.375rem;
    border: 1px solid #e6e6e6;
    padding: 0.75rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

.hr-planungstool__screenshot {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.25rem;
}

@media (max-width: 767.98px) {
    .hr-planungstool__inner {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .hr-planungstool__visual {
        order: -1;
        width: 100%;
        max-width: 22rem;
    }
}

/* ===== ZERTIFIKATE / TRUST SECTION (unter Hero) ===== */
.hr-zertifikate {
    padding: 3rem 1.25rem;
    background: #f4f4f4;
    font-family: "Source Sans Pro", sans-serif;
    color: #1c1c1e;
}

.hr-zertifikate__inner {
    max-width: 75rem;
    margin: 0 auto;
}

.hr-zertifikate__badges {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 2.75rem;
}

.hr-zertifikate__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 5rem;
}

.hr-zertifikate__img {
    display: block;
    height: 4rem;
    width: auto;
    object-fit: contain;
}

.hr-zertifikate__img--din {
    height: 4.5rem;
}

.hr-zertifikate__img--pe {
    height: 5rem;
}

.hr-zertifikate__img--german {
    height: 4.5rem;
}

.hr-zertifikate__badge--google {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 0.5rem;
    padding: 0.875rem 1.25rem;
    gap: 0.875rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.hr-zertifikate__google-logo {
    width: 2.25rem;
    height: 2.25rem;
}

.hr-zertifikate__google-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.hr-zertifikate__google-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1c1c1e;
    line-height: 1.2;
}

.hr-zertifikate__google-rating {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: #1c1c1e;
}

.hr-zertifikate__google-rating strong {
    font-weight: 700;
}

.hr-zertifikate__google-stars {
    display: inline-flex;
    gap: 1px;
}

.hr-zertifikate__google-count {
    color: #798490;
}

.hr-zertifikate__copy {
    text-align: center;
    max-width: 50rem;
    margin: 0 auto;
}

.hr-zertifikate__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1c1c1e;
    margin: 0 0 0.75rem 0;
}

.hr-zertifikate__desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

@media (max-width: 767.98px) {
    .hr-zertifikate {
        padding: 2rem 1rem;
    }

    .hr-zertifikate__badges {
        gap: 1.5rem 4rem;
    }

    .hr-zertifikate__title {
        font-size: 1.1875rem;
    }
}

/* ===== VERLEGER: STICKY SUBNAV ===== */
.hr-subnav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-subnav__bar--nav {
    border-bottom: 1px solid #e6e6e6;
}

.hr-subnav__inner {
    max-width: 87.5rem;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.hr-subnav__crumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    font-size: 0.8125rem;
    color: #798490;
    white-space: nowrap;
}

.hr-subnav__crumbs li + li::before {
    content: "/";
    margin-right: 0.5rem;
    color: #c4c9d1;
}

.hr-subnav .hr-subnav__crumb-link {
    color: #798490;
    text-decoration: none;
    transition: color 0.15s ease;
}

.hr-subnav .hr-subnav__crumb-link:hover,
.hr-subnav .hr-subnav__crumb-link:focus {
    color: #1c1c1e;
    text-decoration: none;
}

.hr-subnav .hr-subnav__crumb-current {
    color: #798490;
    font-weight: 600;
}

.hr-subnav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.hr-subnav__list::-webkit-scrollbar {
    display: none;
}

.hr-subnav__link {
    display: inline-block;
    padding: 0.9375rem 2.1875rem 0.9375rem 0;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1c1c1e;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition:
        color 0.15s ease,
        border-color 0.15s ease;
}

.hr-subnav__list li:last-child .hr-subnav__link {
    padding-right: 0;
}

.hr-subnav__link:hover,
.hr-subnav__link:focus {
    color: #f07e00;
    border-bottom-color: #f07e00;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .hr-subnav__crumbs {
        font-size: 0.75rem;
    }

    .hr-subnav__link {
        padding: 0.75rem 1.5rem 0.75rem 0;
        font-size: 1rem;
    }
}

/* ===== VERLEGER: EXKLUSIVE VORTEILE ===== */
.hr-vorteile {
    padding: 4rem 1.25rem;
    background: #1c1c1e;
    color: #ffffff;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-vorteile__inner {
    max-width: 75rem;
    margin: 0 auto;
}

.hr-vorteile__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hr-vorteile__kicker {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f07e00;
    margin-bottom: 0.75rem;
}

.hr-vorteile__header .hr-section-title {
    color: #ffffff;
    margin: 0;
}

.hr-vorteile__grid {
    list-style: none;
    margin: 0 0 2.5rem 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.hr-vorteile__item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.hr-vorteile__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: #f07e00;
    color: #ffffff;
    flex-shrink: 0;
}

.hr-vorteile__label {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.hr-vorteile__desc {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #c4c9d1;
    margin: 0;
}

.hr-vorteile__cta {
    text-align: center;
}

.hr-vorteile__cta-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #f07e00;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: background 0.15s ease;
}

.hr-vorteile__cta-btn:hover,
.hr-vorteile__cta-btn:focus {
    background: #d46e00;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .hr-vorteile__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .hr-vorteile {
        padding: 3rem 1rem;
    }

    .hr-vorteile__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== WIR LÖSEN IHRE PROBLEME (hr-probleme) ===== */
.hr-probleme {
    padding: 3.75rem 1rem;
    background: #ffffff;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-probleme__inner {
    max-width: 75rem;
    margin: 0 auto;
}

.hr-probleme__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hr-probleme__kicker {
    display: inline-block;
    font-size: 0.6875rem;
    color: #f07e00;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hr-probleme__intro {
    font-size: 1rem;
    color: #798490;
    margin: 0.75rem auto 0;
    max-width: 38rem;
}

.hr-probleme__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.hr-probleme__item {
    background: #f9f9f9;
    border: 1px solid #e6e6e6;
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.hr-probleme__item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.625rem);
    justify-self: center;
}

.hr-probleme__quote {
    display: flex;
    gap: 0.625rem;
    align-items: flex-start;
}

.hr-probleme__quote-icon {
    flex-shrink: 0;
    color: #c0c0c0;
    margin-top: 0.1875rem;
}

.hr-probleme__quote-text {
    margin: 0;
    font-style: italic;
    color: #2d2d2d;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.hr-probleme__answer {
    border-top: 1px solid #e6e6e6;
    padding-top: 1rem;
}

.hr-probleme__answer-label {
    display: inline-block;
    font-size: 0.6875rem;
    color: #f07e00;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.hr-probleme__answer-text {
    margin: 0;
    color: #4a545b;
    font-size: 0.9375rem;
    line-height: 1.55;
}

.hr-probleme__softcta {
    margin-top: 2.5rem;
    text-align: center;
}

.hr-probleme__softcta-label {
    display: block;
    color: #2d2d2d;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.hr-probleme__softcta-links {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hr-probleme__softcta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f07e00;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.5rem 0.25rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.hr-probleme__softcta-link:hover {
    color: #d96e00;
    border-bottom-color: #f07e00;
}

.hr-probleme__softcta-sep {
    color: #c0c0c0;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .hr-probleme__list {
        grid-template-columns: 1fr;
    }
    .hr-probleme__item:last-child:nth-child(odd) {
        max-width: none;
    }
}

/* ===== RATGEBER-SEKTION ===== */
.hr-ratgeber {
    background: #ffffff;
    padding: 2.5rem 1.5rem;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-ratgeber__inner {
    max-width: 64rem;
    margin: 0 auto;
}

.hr-ratgeber__header {
    text-align: center;
    margin-bottom: 2rem;
}

.hr-ratgeber__kicker {
    display: block;
    font-size: 0.6875rem;
    color: #798490;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.hr-ratgeber__header .hr-section-title {
    margin-bottom: 0.75rem;
}

.hr-ratgeber__intro {
    font-size: 0.875rem;
    color: #555555;
    line-height: 1.6;
    max-width: 36rem;
    margin: 0 auto;
}

.hr-ratgeber__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.hr-ratgeber-card {
    display: flex;
    flex-direction: column;
    background: #f9f9f9;
    border: 1px solid #ebebeb;
    border-radius: 0.75rem;
    padding: 1.25rem 1rem;
    text-decoration: none;
    color: inherit;
    transition:
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.hr-ratgeber-card:hover {
    border-color: #f07e00;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.hr-ratgeber-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: #fff3e0;
    color: #f07e00;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.hr-ratgeber-card__title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 1.35;
    margin: 0 0 0.375rem;
}

.hr-ratgeber-card:hover .hr-ratgeber-card__title {
    color: #f07e00;
}

.hr-ratgeber-card__teaser {
    font-size: 0.75rem;
    color: #798490;
    line-height: 1.5;
    margin: 0;
}

.hr-ratgeber__more {
    text-align: center;
    margin-top: 1.25rem;
}

.hr-ratgeber__more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #f07e00;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
}

.hr-ratgeber__more-link:hover {
    color: #d96e00;
}

@media (max-width: 767.98px) {
    .hr-ratgeber__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .hr-ratgeber__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MITTLERER CTA-STREIFEN (hr-cta-mid) ===== */
.hr-cta-mid {
    background: #f07e00;
    padding: 1.75rem 1.5rem;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-cta-mid__inner {
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.hr-cta-mid__text {
    flex: 1 1 20rem;
}

.hr-cta-mid__title {
    margin: 0 0 0.25rem 0;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.hr-cta-mid__subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    line-height: 1.4;
}

.hr-cta-mid__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    color: #f07e00;
    padding: 0.75rem 1.5rem;
    border-radius: 0.3125rem;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.hr-cta-mid__btn:hover {
    opacity: 0.9;
    color: #f07e00;
}

@media (max-width: 575.98px) {
    .hr-cta-mid__btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== TEXTLINK-CTAs (Planungstool, Process) ===== */
.hr-process__cta-link,
.hr-planungstool__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f07e00;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.5rem 0.25rem;
    border-bottom: 2px solid transparent;
    transition:
        border-color 0.2s,
        gap 0.2s;
}

.hr-process__cta-link:hover,
.hr-planungstool__link:hover {
    color: #d96e00;
    border-bottom-color: #f07e00;
    gap: 0.75rem;
}

/* ===== KUNDEN-LOGO-STREIFEN (hr-kundenlogos) ===== */
.hr-kundenlogos {
    padding: 2.5rem 1rem;
    background: #ffffff;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-kundenlogos__inner {
    max-width: 75rem;
    margin: 0 auto;
    text-align: center;
}

.hr-kundenlogos__title {
    font-size: 0.75rem;
    color: #798490;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
}

.hr-kundenlogos__track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2.5rem;
}

.hr-kundenlogos__logo {
    width: 7.5rem;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition:
        filter 0.2s,
        opacity 0.2s;
}

.hr-kundenlogos__logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 575.98px) {
    .hr-kundenlogos__track {
        gap: 1rem 1.5rem;
    }
    .hr-kundenlogos__logo {
        width: 6rem;
    }
}

/* ===== ANSPRECHPARTNER (hr-ansprechpartner) ===== */
.hr-ansprechpartner {
    padding: 3.75rem 1rem;
    background: #ffffff;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-ansprechpartner__inner {
    max-width: 75rem;
    margin: 0 auto;
}

.hr-ansprechpartner__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hr-ansprechpartner__kicker {
    display: inline-block;
    font-size: 0.6875rem;
    color: #f07e00;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hr-ansprechpartner__intro {
    font-size: 1rem;
    color: #798490;
    margin: 0.75rem auto 0;
    max-width: 38rem;
}

.hr-ansprechpartner__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hr-ansprechpartner__card {
    background: #f9f9f9;
    border: 1px solid #e6e6e6;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.hr-ansprechpartner__photo {
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
    background: #e6e6e6;
}

.hr-ansprechpartner__name {
    margin: 0 0 0.25rem 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1c1c1e;
}

.hr-ansprechpartner__role {
    display: block;
    font-size: 0.875rem;
    color: #798490;
    margin-bottom: 1rem;
}

.hr-ansprechpartner__contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.hr-ansprechpartner__contact li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f07e00;
    font-size: 0.9375rem;
}

.hr-ansprechpartner__contact a {
    color: #4a545b;
    text-decoration: none;
    font-weight: 600;
}

.hr-ansprechpartner__contact a:hover {
    color: #f07e00;
}

@media (max-width: 991.98px) {
    .hr-ansprechpartner__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .hr-ansprechpartner__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== HEINL GROUP CROSS-SELL (hr-crossell) ===== */
.hr-crossell {
    padding: 3rem 1rem;
    background: #f5f5f5;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-crossell__inner {
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.hr-crossell__image {
    width: 22rem;
    height: auto;
    border-radius: 0.5rem;
    flex-shrink: 0;
    background: #e9edf0;
}

.hr-crossell__content {
    flex: 1;
}

.hr-crossell__kicker {
    display: inline-block;
    font-size: 0.6875rem;
    color: #f07e00;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hr-crossell__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1c1c1e;
    margin: 0 0 0.75rem 0;
}

.hr-crossell__desc {
    font-size: 1rem;
    color: #4a545b;
    margin: 0 0 1.25rem 0;
    line-height: 1.55;
}

.hr-crossell__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f07e00;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.5rem 0.25rem;
    border-bottom: 2px solid transparent;
    transition:
        border-color 0.2s,
        gap 0.2s;
}

.hr-crossell__link:hover {
    color: #d96e00;
    border-bottom-color: #f07e00;
    gap: 0.75rem;
}

@media (max-width: 767.98px) {
    .hr-crossell__inner {
        flex-direction: column;
        text-align: center;
    }
    .hr-crossell__image {
        width: 100%;
        max-width: 22rem;
    }
}

/* ===== INLINE-ANFRAGE (hr-anfrage) ===== */
.hr-anfrage {
    padding: 3.75rem 1rem;
    background: #f07e00;
    font-family: "Source Sans Pro", sans-serif;
    color: #ffffff;
}

.hr-anfrage__inner {
    max-width: 75rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.hr-anfrage__pitch {
    padding-top: 0.5rem;
}

.hr-anfrage__kicker {
    display: inline-block;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hr-anfrage__title {
    margin: 0 0 0.75rem 0;
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.hr-anfrage__lead {
    margin: 0 0 1.5rem 0;
    font-size: 1.0625rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.hr-anfrage__trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hr-anfrage__trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9375rem;
}

.hr-anfrage__form {
    background: #ffffff;
    border-radius: 0.625rem;
    padding: 1.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    color: #1c1c1e;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

.hr-anfrage__field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.hr-anfrage__field:nth-child(1),
.hr-anfrage__field:nth-child(2) {
    grid-column: span 1;
}

.hr-anfrage__field:nth-child(3),
.hr-anfrage__field:nth-child(4) {
    grid-column: span 1;
}

.hr-anfrage__label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #4a545b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hr-anfrage__input {
    padding: 0.75rem 0.875rem;
    border: 1px solid #d6d6d6;
    border-radius: 0.3125rem;
    font-size: 1rem;
    font-family: inherit;
    color: #1c1c1e;
    background: #ffffff;
    transition: border-color 0.2s;
    width: 100%;
}

.hr-anfrage__input:focus {
    outline: none;
    border-color: #f07e00;
    box-shadow: 0 0 0 3px rgba(240, 126, 0, 0.2);
}

.hr-anfrage__submit {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #f07e00;
    color: #ffffff;
    padding: 0.9375rem 1.5rem;
    border: none;
    border-radius: 0.3125rem;
    font-weight: 700;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition:
        background 0.2s,
        gap 0.2s;
}

.hr-anfrage__submit:hover {
    background: #d96e00;
    gap: 0.75rem;
}

.hr-anfrage__alt {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 0.875rem;
    color: #798490;
    text-align: center;
}

.hr-anfrage__alt-link {
    color: #f07e00;
    font-weight: 700;
    text-decoration: none;
    margin-left: 0.25rem;
}

.hr-anfrage__alt-link:hover {
    color: #d96e00;
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .hr-anfrage__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hr-anfrage__form {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }
    .hr-anfrage__title {
        font-size: 1.5rem;
    }
}

/* ===== HERSTELLER-PARTNER-STREIFEN (hr-hersteller) ===== */
.hr-hersteller {
    padding: 2.5rem 1rem;
    background: #ffffff;
    border-top: 1px solid #ededed;
    font-family: "Source Sans Pro", sans-serif;
}

.hr-hersteller__inner {
    max-width: 75rem;
    margin: 0 auto;
    text-align: center;
}

.hr-hersteller__title {
    font-size: 0.875rem;
    color: #798490;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
}

.hr-hersteller__track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2.5rem;
}

.hr-hersteller__logo {
    width: 8rem;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.75;
    transition:
        filter 0.2s,
        opacity 0.2s;
}

.hr-hersteller__logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== ZENTRALER DIREKTER DRAHT (gemergt unter Ansprechpartner) ===== */
.hr-ansprechpartner__draht {
    margin-top: 2.5rem;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 0.5rem;
    text-align: center;
}

.hr-ansprechpartner__draht-label {
    margin: 0 0 1.25rem 0;
    color: #4a545b;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.hr-ansprechpartner__draht-channels {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.hr-ansprechpartner__draht-channel {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.3125rem;
    border: 1px solid #e6e6e6;
    background: #f9f9f9;
    color: #2d2d2d;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition:
        background 0.2s,
        border-color 0.2s;
}

.hr-ansprechpartner__draht-channel:hover {
    background: #ffffff;
    border-color: #f07e00;
    color: #f07e00;
}

.hr-ansprechpartner__draht-channel--primary {
    background: #f07e00;
    border-color: #f07e00;
    color: #ffffff;
}

.hr-ansprechpartner__draht-channel--primary:hover {
    background: #d96e00;
    border-color: #d96e00;
    color: #ffffff;
}

.hr-ansprechpartner__draht-hours {
    margin: 0;
    display: inline-flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.8125rem;
    color: #798490;
}

.hr-ansprechpartner__draht-hours > div {
    display: inline-flex;
    gap: 0.375rem;
}

.hr-ansprechpartner__draht-hours dt {
    font-weight: 700;
    color: #4a545b;
}

.hr-ansprechpartner__draht-hours dd {
    margin: 0;
}

@media (max-width: 575.98px) {
    .hr-ansprechpartner__draht {
        padding: 1.5rem 1rem;
    }
    .hr-ansprechpartner__draht-channel {
        width: 100%;
        justify-content: center;
    }
}

/* Per-Card Kontakt-Liste wird im gemergten Modus nicht mehr benutzt -
   die Regeln bleiben für mögliche Einzelverwendung erhalten, aber schaden nicht. */

/* ===== PROFI-GESUCHT: GREEN HERO VARIANT ===== */

.hr-b2b-hero--green .hr-b2b-hero__label {
    color: #1a5c2a;
}

.hr-b2b-hero--green .hr-b2b-hero__cta--green {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #1a5c2a 0%, #2d8a47 100%);
    color: #ffffff;
    padding: 0.875rem 1.75rem;
    border-radius: 0.3125rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.hr-b2b-hero--green .hr-b2b-hero__cta--green:hover {
    opacity: 0.9;
    color: #ffffff;
}

.hr-b2b-hero--green .hr-b2b-hero__cta--secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #1c1c1e;
    padding: 0.875rem 1.75rem;
    border: 2px solid #d6d6d6;
    border-radius: 0.3125rem;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: border-color 0.2s;
}

.hr-b2b-hero--green .hr-b2b-hero__cta--secondary:hover {
    border-color: #1a5c2a;
    color: #1a5c2a;
}

/* ===== PROFI-GESUCHT: GREEN REASONS VARIANT ===== */

.hr-reasons--green .hr-reasons__kicker {
    color: #1a5c2a;
}

.hr-reasons--green .hr-reasons__num {
    background: linear-gradient(135deg, #1a5c2a 0%, #2d8a47 100%);
}

.hr-reasons--green .hr-reasons__proof strong {
    color: #1a5c2a;
}

/* ===== PROFI-GESUCHT: GREEN REFERENZEN VARIANT ===== */

.hr-referenzen--green .hr-referenzen__kicker {
    color: #1a5c2a;
}

.hr-referenz-card--clickable {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.hr-referenz-card--clickable:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
    color: inherit;
}

/* ===== PROFI-GESUCHT: GREEN CTA-MID VARIANT ===== */

.hr-cta-mid--green {
    background: linear-gradient(135deg, #1a5c2a 0%, #2d8a47 100%);
}

.hr-cta-mid__btn--green {
    background: #ffffff;
    color: #1a5c2a;
}

.hr-cta-mid__btn--green:hover {
    opacity: 0.9;
    color: #1a5c2a;
}

/* ===== PROFI-GESUCHT: GREEN PROCESS CTA LINK ===== */

.hr-process__cta-link--green {
    color: #1a5c2a;
}

.hr-process__cta-link--green:hover {
    color: #155223;
    border-bottom-color: #1a5c2a;
}

/* ===== PROFI-GESUCHT: GREEN ANFRAGE VARIANT ===== */

.hr-anfrage--green {
    background: linear-gradient(135deg, #1a5c2a 0%, #2d8a47 100%);
}

.hr-anfrage__form--extended {
    grid-template-columns: 1fr 1fr;
}

.hr-anfrage__field--full {
    grid-column: 1 / -1;
}

.hr-anfrage__input--textarea {
    resize: vertical;
    min-height: 4.5rem;
}

.hr-anfrage__submit--green {
    background: linear-gradient(135deg, #1a5c2a 0%, #2d8a47 100%);
}

.hr-anfrage__submit--green:hover {
    background: #155223;
}

/* ===== PROFI-GESUCHT: TESTIMONIAL PLACEHOLDER AVATAR ===== */

.hr-testimonial-card__avatar--placeholder {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: #f1f1f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
