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

/* ===== 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 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 */
.hr-b2b-hero {
	background: #1c1c1e;
	padding: 3.75rem 1rem;
	text-align: center;
	font-family: 'Source Sans Pro', sans-serif;
}

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

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

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

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

.hr-b2b-hero__badges {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.hr-b2b-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	padding: 0.625rem 1rem;
	border-radius: 5px;
	color: #ffffff;
	font-size: 0.8125rem;
	text-decoration: none;
	transition: background 0.2s;
}

.hr-b2b-hero__badge:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
}

/* 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: 3.75rem 1rem;
	background: #f9f9f9;
	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: 5px;
	padding: 1.5rem;
	text-align: center;
}

.hr-symbiose__col--center {
	background: #f07e00;
	color: #ffffff;
}

.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: 0.8125rem;
	color: #798490;
	margin: 0 0 1rem 0;
}

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

.hr-symbiose__list li {
	padding: 0.25rem 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: 2rem;
	height: 2rem;
	background: #f07e00;
	color: #ffffff;
	border-radius: 50%;
	font-weight: 700;
	font-size: 0.875rem;
	margin-bottom: 0.75rem;
}

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

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

@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 {
	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: #ffffff;
	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__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;
	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, 0.65) 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;
}

.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;
}

.hr-hero-tile--tall .hr-hero-tile__desc {
	display: none;
}

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

.hr-hero-tile:hover .hr-hero-tile__btn {
	background: #d96e00;
}

@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) ===== */
