:root {
	--bg-main: #030407;
	--bg-secondary: #08090d;
	--bg-card: rgba(10, 12, 17, .78);
	--bg-card-hover: rgba(17, 20, 28, .92);
	--accent-red: #ef1116;
	--accent-red-hover: #ff1b21;
	--accent-red-dark: #8c090d;
	--accent-glow: rgba(239, 17, 22, .35);
	--text-primary: #f5f5f6;
	--text-secondary: #a9acb3;
	--border-soft: rgba(255, 255, 255, .17);
	--border-red: rgba(239, 17, 22, .82);
	--radius: 12px;
	--container: 1180px;
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	background: radial-gradient(circle at 50% 0, rgba(80, 0, 0, .2), transparent 38%), var(--bg-main);
	color: var(--text-primary);
	font-family: Inter, Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.55;
	overflow-x: hidden
}

a {
	color: inherit;
	text-decoration: none
}

.container {
	width: min(var(--container), calc(100% - 48px));
	margin-inline: auto
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(0, 0, 0, .82);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.header-inner {
	height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px
}

.hn-logo {
	width: 285px;
	height: 47px;
	border: 1px solid #fff;
	border-radius: 4px;
	display: flex;
	align-items: center;
	background: #050505;
	box-shadow: 0 0 0 2px rgba(239, 17, 22, .45) inset;
	padding: 4px 8px
}

.hn-logo span {
	font-weight: 950;
	font-size: 32px;
	line-height: 1;
	letter-spacing: -2px;
	color: #080808;
	background: var(--accent-red);
	padding: 2px 8px 0
}

.hn-logo small {
	font-size: 12px;
	line-height: 1.05;
	margin-left: auto;
	text-align: right;
	color: #fff
}

.brand-wrap img,
.custom-logo {
	max-width: 285px;
	height: auto;
	display: block
}

.brand-wrap .custom-logo-link {
	display: block;
	line-height: 0
}

.main-nav ul {
	display: flex;
	gap: 33px;
	margin: 0;
	padding: 0;
	list-style: none
}

.main-nav a {
	font-size: 14px;
	color: #fff;
	position: relative;
	padding: 31px 0
}

.main-nav a:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 18px;
	height: 2px;
	background: var(--accent-red);
	transform: scaleX(0);
	transition: .25s
}

.main-nav a:hover:after,
.current-menu-item>a:after {
	transform: scaleX(1)
}

.whatsapp-btn,
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border-radius: 7px;
	font-weight: 800;
	font-size: 13px;
	letter-spacing: .02em;
	min-height: 46px;
	padding: 0 24px;
	transition: .28s
}

.whatsapp-btn {
	border: 1px solid var(--accent-red);
	padding: 0 22px
}

.whatsapp-btn svg {
	width: 18px;
	fill: var(--accent-red)
}

.whatsapp-btn:hover,
.btn-ghost:hover {
	border-color: var(--accent-red);
	box-shadow: none;
	transform: translateY(-1px)
}

.btn-red {
	background: var(--accent-red);
	border: 1px solid var(--accent-red);
	color: #fff;
	box-shadow: none;
}

.btn-red:hover {
	background: var(--accent-red-hover);
	transform: translateY(-2px)
}

.btn-ghost {
	border: 1px solid var(--border-soft);
	background: rgba(8, 10, 14, .5)
}

.hero {
	position: relative;
	min-height: 520px;
	padding: 70px 0 48px;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
	background: #030407;
}

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center top;
	display: block;
	filter: saturate(1.05) brightness(.92);
}

.hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			#030407 0%,
			rgba(3,4,7,.88) 24%,
			rgba(3,4,7,.18) 52%,
			rgba(3,4,7,.70) 100%
		),
		linear-gradient(
			to bottom,
			rgba(3,4,7,0) 68%,
			#030407 100%
		);
	z-index: 1;
}

.hero:after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 190px;
	background: linear-gradient(transparent, var(--bg-main));
	z-index: -1
}

.hero-layout {
	position: relative;
	z-index: 2;
}

.hero-copy {
	grid-column: 1
}

.hero-info {
	grid-column: 3;
	display: flex;
	flex-direction: column;
	gap: 20px
}

.hero h1 {
	font-size: 59px;
	line-height: .94;
	margin: 0 0 22px;
	font-weight: 950;
	letter-spacing: -2px
}

.hero h1 span {
	color: var(--accent-red)
}

.hero-kicker {
	font-weight: 800;
	color: #fff;
	letter-spacing: .02em
}

.hero-text {
	max-width: 470px;
	color: #d0d2d8;
	margin-bottom: 24px
}

.hero-actions {
	display: flex;
	gap: 14px;
	margin: 24px 0
}

.rating-line {
	display: flex;
	align-items: center;
	gap: 13px;
	color: #c8cbd2;
	font-size: 13px;
	white-space: nowrap
}

.g-icon {
	font-size: 26px;
	font-weight: 900;
	background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
	-webkit-background-clip: text;
	color: transparent
}

.rating-line strong,
.branch-rating span,
.rating-big b {
	color: #ffcf21;
	letter-spacing: 2px
}

.info-card {
	min-height: 112px;
	border: 1px solid var(--border-soft);
	border-left-color: var(--border-red);
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(15, 17, 24, .8), rgba(6, 7, 10, .7));
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 22px;
	box-shadow: inset 0 0 0 1px rgba(239, 17, 22, .08)
}

.info-card svg,
.feature svg {
	width: 48px;
	min-width: 48px;
	fill: none;
	stroke: var(--accent-red);
	stroke-width: 1.7
}

.info-card h3,
.feature h3 {
	margin: 0 0 5px;
	font-size: 14px
}

.info-card p,
.feature p {
	margin: 0;
	color: var(--text-secondary);
	font-size: 12px
}

.feature-strip {
	min-height: 96px;
	margin-top: -20px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: rgba(8, 10, 14, .76);
	border: 1px solid var(--border-soft);
	border-radius: 11px;
	overflow: hidden;
	box-shadow: 0 0 35px rgba(0, 0, 0, .5)
}

.feature {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px 32px;
	border-right: 1px solid rgba(255, 255, 255, .12)
}

.feature:last-child {
	border-right: 0
}

.branches,
.products {
	padding: 34px 0 0
}

.section-title {
	text-align: center;
	margin: 0 0 22px
}

.section-title span {
	color: var(--accent-red);
	font-weight: 900;
	letter-spacing: .11em
}

.section-title h2 {
	font-size: 29px;
	font-weight: 600;
	letter-spacing: .06em;
	margin: 4px 0
}

.section-title p {
	color: #b4b5bc;
	font-weight: 800;
	letter-spacing: .08em
}

.branch-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px
}

.branch-card {
	background: linear-gradient(135deg, rgba(15, 17, 24, .78), rgba(5, 6, 9, .86));
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 12px;
	padding: 14px;
	display: grid;
	grid-template-columns: 47% 1fr;
	gap: 24px;
	transition: .3s
}

.branch-card:hover,
.product-card:hover,
.google-card:hover,
.trust-strip:hover {
	border-color: var(--border-red);
	box-shadow: none;
	transform: translateY(-3px)
}

.branch-photo {
	min-height: 285px;
	border-radius: 9px;
	background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(0, 0, 0, .58)), linear-gradient(90deg, #14161d, #060608);
	position: relative;
	overflow: hidden
}

.branch-photo:before {
	content: "";
	position: absolute;
	inset: 70px 26px 0;
	border: 2px solid rgba(255, 255, 255, .09);
	background: linear-gradient(90deg, rgba(239, 17, 22, .14), rgba(255, 255, 255, .04));
	box-shadow: inset 0 0 40px rgba(0, 0, 0, .8)
}

.shop-sign {
	position: absolute;
	top: 26px;
	left: 22px;
	right: 22px;
	height: 45px;
	border: 1px solid #fff;
	border-radius: 3px;
	background: #050505;
	display: flex;
	align-items: center;
	padding: 4px 8px;
	color: #080808;
	font-size: 25px;
	font-weight: 950;
	letter-spacing: -1px
}

.shop-sign:before {
	content: "";
	position: absolute;
	left: 6px;
	top: 7px;
	bottom: 7px;
	width: 120px;
	background: var(--accent-red);
	z-index: 0
}

.shop-sign {
	z-index: 2
}

.shop-sign small {
	margin-left: auto;
	color: #fff;
	font-size: 10px;
	line-height: 1.05;
	text-align: right;
	font-weight: 500
}

.shop-sign::after {
	content: "HALBNEU";
	position: absolute;
	left: 13px;
	color: #050505;
	z-index: 1
}

.branch-content span {
	color: var(--accent-red);
	font-weight: 900
}

.branch-content h3 {
	font-size: 24px;
	margin: 4px 0 20px
}

.line {
	color: #f0f0f2;
	margin: 11px 0
}

.line em {
	font-style: normal;
	color: #d4d5d9;
	margin-left: 20px
}

.branch-rating {
	display: flex;
	align-items: center;
	gap: 7px
}

.branch-rating .g-icon {
	font-size: 22px
}

.card-actions {
	display: flex;
	gap: 10px;
	margin-top: 14px
}

.card-actions .btn {
	padding: 0 16px;
	min-height: 40px
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 18px
}

.product-card {
	height: 225px;
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 9px;
	background: linear-gradient(180deg, rgba(16, 18, 25, .75), rgba(5, 6, 9, .86));
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	transition: .3s
}

.prod-visual {
	height: 125px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	overflow: hidden;
}

.prod-visual img {
	width: auto;
	height: auto;
	max-width: 130px;
	max-height: 115px;
	object-fit: contain;
	display: block;
	filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .55));
	transition: transform .35s ease, filter .35s ease;
}

.product-card h3 {
	font-size: 14px;
	margin: 0 0 5px
}

.product-card p {
	margin: 0;
	color: #d6d7da
}

.product-card p span {
	float: right
}

.center {
	text-align: center;
	margin-top: 24px
}

.trust {
	display: grid;
	grid-template-columns: 370px 1fr;
	gap: 0;
	padding: 54px 0 36px
}

.google-card,
.trust-strip {
	border: 1px solid rgba(255, 255, 255, .14);
	background: linear-gradient(135deg, rgba(14, 16, 22, .84), rgba(5, 6, 9, .86));
	transition: .3s
}

.google-card {
	border-radius: 10px;
	padding: 28px
}

.google-card>span {
	color: var(--accent-red);
	font-weight: 950
}

.rating-big {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 20px 0
}

.rating-big strong {
	font-size: 38px
}

.rating-big small {
	display: block;
	color: #aaa
}

.rating-big i {
	margin-left: auto;
	font-size: 54px;
	font-weight: 950;
	background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
	-webkit-background-clip: text;
	color: transparent;
	font-style: normal
}

.trust-strip {
	border-left: 0;
	border-radius: 0 10px 10px 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: center
}

.trust-strip div {
	text-align: center;
	padding: 24px 18px;
	border-right: 1px solid rgba(255, 255, 255, .1)
}

.trust-strip div:last-child {
	border-right: 0
}

.trust-strip b {
	font-size: 39px;
	color: var(--accent-red)
}

.trust-strip h3 {
	font-size: 13px
}

.trust-strip p {
	color: #bbb
}

.site-footer {
	padding: 10px 0 32px;
	background: #030407
}

.footer-grid {
	display: grid;
	grid-template-columns: 290px repeat(4, 1fr);
	gap: 40px;
	align-items: start
}

.site-footer h4 {
	margin: 0 0 12px
}

.site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.site-footer a,
.site-footer p,
.copyright {
	color: #b2b4ba;
	margin: 0;
	line-height: 1.4
}

.socials {
	display: flex;
	gap: 14px
}

.socials a {
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: var(--accent-red)
}

.copyright {
	margin-top: 28px;
	text-align: center
}

.content-page {
	padding: 80px 0;
	min-height: 55vh
}

.section-reveal {
	opacity: 0;
	transform: translateY(25px);
	transition: opacity .7s ease, transform .7s ease
}

.section-reveal.is-visible {
	opacity: 1;
	transform: none
}

.mobile-toggle {
	display: none;
	background: transparent;
	border: 0;
	width: 42px;
	height: 42px
}

.mobile-toggle span {
	display: block;
	height: 2px;
	background: #fff;
	margin: 8px
}

@media (max-width:1050px) {
	.hero-layout {
		grid-template-columns: 1fr
	}

	.hero-info {
		grid-column: 1;
		flex-direction: row
	}

	.feature-strip,
	.product-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.branch-grid,
	.trust {
		grid-template-columns: 1fr
	}

	.trust-strip {
		border-left: 1px solid rgba(255, 255, 255, .14);
		border-radius: 10px;
		margin-top: 16px
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr
	}

	.main-nav {
		position: fixed;
		top: 82px;
		left: 0;
		right: 0;
		background: #050505;
		border-bottom: 1px solid var(--border-red);
		padding: 22px;
		display: none
	}

	.main-nav.is-open {
		display: block
	}

	.main-nav ul {
		flex-direction: column;
		gap: 12px
	}

	.mobile-toggle {
		display: block
	}

	.whatsapp-btn {
		display: none
	}
}

@media (max-width:720px) {
	.container {
		width: min(100% - 28px, var(--container))
	}

	.header-inner {
		height: 72px
	}

	.hn-logo {
		width: 215px
	}

	.hn-logo span {
		font-size: 25px
	}

	.hero {
		padding-top: 52px
	}

	.hero h1 {
		font-size: 44px
	}

	.hero-actions,
	.hero-info {
		flex-direction: column
	}

	.rating-line {
		white-space: normal;
		flex-wrap: wrap
	}

	.feature-strip,
	.product-grid,
	.branch-card,
	.trust-strip,
	.footer-grid {
		grid-template-columns: 1fr
	}

	.feature {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .12)
	}

	.branch-photo {
		min-height: 220px
	}

	.section-title h2 {
		font-size: 22px
	}

	.trust {
		padding-top: 32px
	}
}


/* =========================
   Sticky Footer + Inner Pages
========================= */
html,
body {
	min-height: 100%;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-main {
	flex: 1 0 auto;
	display: block;
	width: 100%;
}

.site-footer {
	flex-shrink: 0;
}

.page-container {
	width: min(var(--container), calc(100% - 48px));
}

.content-page h1 {
	font-size: clamp(34px, 5vw, 58px);
	line-height: 1;
	letter-spacing: -1.5px;
	margin: 0 0 28px;
}

.entry-content {
	color: var(--text-secondary);
	font-size: 16px;
	max-width: 900px;
}

.entry-content p,
.entry-content li {
	color: var(--text-secondary);
}

.entry-content h2,
.entry-content h3 {
	color: var(--text-primary);
	margin-top: 34px;
}

.entry-content a {
	color: var(--accent-red);
}

/* =========================
   Product Grid — Final Screenshot Match
========================= */

.products,
.product-grid-section {
	padding: 34px 0 0;
}

.products .product-grid,
.product-grid-section .product-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 18px;
	margin-top: 22px;
}

.products .product-card,
.product-grid-section .product-card {
	position: relative;
	height: 225px;
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 9px;
	background: linear-gradient(180deg, rgba(16, 18, 25, .75), rgba(5, 6, 9, .86));
	padding: 18px 20px 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.products .product-card:hover,
.product-grid-section .product-card:hover {
	border-color: var(--border-red);
	box-shadow: none;
transform: translateY(-3px);
}

.products .prod-visual,
.product-grid-section .prod-visual,
.products .product-image-wrap,
.product-grid-section .product-image-wrap {
	height: 128px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 10px;
	padding: 0;
	overflow: hidden;
	flex: 0 0 128px;
}

.products .prod-visual img,
.product-grid-section .prod-visual img,
.products .product-image-wrap img,
.product-grid-section .product-image-wrap img {
	width: auto !important;
	height: auto !important;
	max-width: 148px !important;
	max-height: 118px !important;
	object-fit: contain !important;
	object-position: center !important;
	display: block !important;
	position: static !important;
	inset: auto !important;
	margin: 0 auto !important;
	transform: none;
	filter: drop-shadow(0 14px 26px rgba(0, 0, 0, .6));
	transition: transform .35s ease, filter .35s ease;
}

.products .product-card:hover .prod-visual img,
.product-grid-section .product-card:hover .prod-visual img,
.products .product-card:hover .product-image-wrap img,
.product-grid-section .product-card:hover .product-image-wrap img {
	transform: scale(1.03) translateY(-2px);
	filter: drop-shadow(0 14px 26px rgba(0, 0, 0, .6));
}

.products .product-card.smartphones img,
.product-grid-section .product-card.smartphones img {
	max-width: 138px !important;
	max-height: 118px !important;
}

.products .product-card.laptops img,
.product-grid-section .product-card.laptops img {
	max-width: 150px !important;
	max-height: 105px !important;
}

.products .product-card.konsolen img,
.product-grid-section .product-card.konsolen img {
	max-width: 150px !important;
	max-height: 118px !important;
}

.products .product-card.grafikkarten img,
.product-grid-section .product-card.grafikkarten img {
	max-width: 154px !important;
	max-height: 105px !important;
}

.products .product-card.apple-produkte img,
.product-grid-section .product-card.apple-produkte img {
	max-width: 138px !important;
	max-height: 112px !important;
}

.products .product-card.zubehoer img,
.product-grid-section .product-card.zubehoer img {
	max-width: 140px !important;
	max-height: 112px !important;
}

.products .product-card-content,
.product-grid-section .product-card-content {
	padding: 0;
}

.products .product-card h3,
.product-grid-section .product-card h3,
.products .product-card-content h3,
.product-grid-section .product-card-content h3 {
	font-size: 14px;
	margin: 0 0 5px;
	font-weight: 900;
	letter-spacing: .01em;
	color: #fff;
}

.products .product-card p,
.product-grid-section .product-card p,
.products .product-card-content span,
.product-grid-section .product-card-content span {
	margin: 0;
	color: #d6d7da;
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.products .product-card p span,
.product-grid-section .product-card p span {
	margin-left: auto;
}

.products .center,
.product-grid-section .center,
.products .products-button-wrap,
.product-grid-section .products-button-wrap {
	text-align: center;
	margin-top: 24px;
	display: flex;
	justify-content: center;
}

/* Filial cards prepared for upcoming portrait photos */
.branch-photo {
	position: relative;
	min-height: 285px;
	aspect-ratio: 3 / 4;
	border-radius: 9px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(0, 0, 0, .58)), linear-gradient(90deg, #14161d, #060608);
}

.branch-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: relative;
	z-index: 1;
}

.branch-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.08));
	pointer-events: none;
	z-index: 2;
}

.branch-photo .shop-sign {
	z-index: 5;
}

@media (max-width:1050px) {
	.products .product-grid,
	.product-grid-section .product-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width:720px) {
	.products .product-grid,
	.product-grid-section .product-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.products .product-card,
	.product-grid-section .product-card {
		height: 215px;
	}

	.products .prod-visual,
	.product-grid-section .prod-visual,
	.products .product-image-wrap,
	.product-grid-section .product-image-wrap {
		height: 112px;
		flex-basis: 112px;
	}

	.products .prod-visual img,
	.product-grid-section .prod-visual img,
	.products .product-image-wrap img,
	.product-grid-section .product-image-wrap img {
		max-width: 132px !important;
		max-height: 106px !important;
	}
}

@media (max-width:440px) {
	.products .product-grid,
	.product-grid-section .product-grid {
		grid-template-columns: 1fr;
	}
}

/* =========================
   Product Hover Glow Removed
========================= */

.product-card:hover,
.products .product-card:hover,
.product-grid-section .product-card:hover {
	box-shadow: none !important;
}

.product-card:hover .prod-visual img,
.products .product-card:hover .prod-visual img,
.product-grid-section .product-card:hover .prod-visual img,
.products .product-card:hover .product-image-wrap img,
.product-grid-section .product-card:hover .product-image-wrap img {
	transform: scale(1.03) translateY(-2px) !important;
	filter: drop-shadow(0 14px 26px rgba(0, 0, 0, .6)) !important;
}


/* =========================
   Global Hover Glow Removal
========================= */

*:hover {
	box-shadow: none !important;
}

.product-card:hover,
.branch-card:hover,
.google-card:hover,
.trust-strip:hover,
.info-card:hover,
.feature:hover,
.btn:hover,
.whatsapp-btn:hover {
	box-shadow: none !important;
	filter: none !important;
}

.product-card:hover .prod-visual img,
.product-card:hover .product-image-wrap img {
	filter: drop-shadow(0 14px 26px rgba(0,0,0,.55)) !important;
}

.btn:hover,
.whatsapp-btn:hover {
	transform: translateY(-2px);
}

/* =========================
   Trust Section Final
   Matches the screenshot: left Google card + right 4-item panel
========================= */

.trust {
	display: grid;
	grid-template-columns: 370px 1fr;
	gap: 0;
	align-items: stretch;
	padding: 54px 0 36px;
}

.google-card {
	position: relative;
	min-height: 155px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 10px;
	background:
		linear-gradient(135deg, rgba(16, 18, 25, .92), rgba(5, 6, 9, .96));
	padding: 26px 28px;
	z-index: 2;
	transition: border-color .25s ease, transform .25s ease;
}

.google-card:hover {
	box-shadow: none !important;
	border-color: rgba(255, 255, 255, .22);
	transform: translateY(-2px);
}

.google-card > span {
	display: block;
	color: var(--accent-red);
	font-weight: 950;
	font-size: 14px;
	letter-spacing: .04em;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.google-card > p {
	color: #fff;
	font-size: 13px;
	margin: 0;
}

.rating-big {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	column-gap: 14px;
	margin: 18px 0 18px;
}

.rating-big strong {
	font-size: 38px;
	line-height: 1;
	font-weight: 800;
	color: #fff;
}

.rating-big b {
	display: block;
	color: #ffcf21;
	font-size: 18px;
	line-height: 1;
	letter-spacing: 1px;
	white-space: nowrap;
}

.rating-big small {
	display: block;
	color: #a9acb3;
	font-size: 11px;
	margin-top: 4px;
	letter-spacing: 0;
}

.rating-big i {
	font-size: 55px;
	font-weight: 950;
	font-style: normal;
	line-height: 1;
	background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.google-card .btn {
	min-height: 39px;
	padding: 0 18px;
	font-size: 12px;
	border-radius: 6px;
}

.trust-strip {
	min-height: 155px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-left: 0;
	border-radius: 0 10px 10px 0;
	background:
		linear-gradient(135deg, rgba(13, 15, 21, .88), rgba(5, 6, 9, .94));
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: stretch;
	overflow: hidden;
	transition: border-color .25s ease, transform .25s ease;
}

.trust-strip:hover {
	box-shadow: none !important;
	border-color: rgba(255, 255, 255, .22);
	transform: translateY(-2px);
}

.trust-strip div {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 22px 20px;
	border-right: 1px solid rgba(255, 255, 255, .10);
}

.trust-strip div:last-child {
	border-right: 0;
}

.trust-strip b {
	display: block;
	height: 42px;
	margin-bottom: 13px;
	color: var(--accent-red);
	font-size: 0;
	line-height: 1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 42px 42px;
	filter: none !important;
}

/* Red line icons as inline SVG backgrounds */
.trust-strip div:nth-child(1) b {
	width: 54px;
	background-image: url("data:image/svg+xml,%3Csvg width='54' height='42' viewBox='0 0 54 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 21L24.5 25.5C26.3 27.3 29.2 27.3 31 25.5L36 20.5' stroke='%23ef1116' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 13L18 9H10L3 16L16 29C18.2 31.2 21.8 31.2 24 29L27 26' stroke='%23ef1116' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M32 13L36 9H44L51 16L38 29C35.8 31.2 32.2 31.2 30 29L27 26' stroke='%23ef1116' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21 13H32' stroke='%23ef1116' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.trust-strip div:nth-child(2) b {
	width: 50px;
	background-image: url("data:image/svg+xml,%3Csvg width='50' height='42' viewBox='0 0 50 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='19' cy='12' r='6' stroke='%23ef1116' stroke-width='2.6'/%3E%3Cpath d='M7 34V31C7 25.5 11.5 22 19 22C26.5 22 31 25.5 31 31V34' stroke='%23ef1116' stroke-width='2.6' stroke-linecap='round'/%3E%3Ccircle cx='34' cy='15' r='5' stroke='%23ef1116' stroke-width='2.6'/%3E%3Cpath d='M31 25C38 25 43 28 43 34' stroke='%23ef1116' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.trust-strip div:nth-child(3) b {
	width: 50px;
	background-image: url("data:image/svg+xml,%3Csvg width='50' height='42' viewBox='0 0 50 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M35 10C31.8 7.5 27.6 6.5 23.5 7.3C16.9 8.6 12 14.4 12 21' stroke='%23ef1116' stroke-width='2.6' stroke-linecap='round'/%3E%3Cpath d='M31 8H36V3' stroke='%23ef1116' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15 32C18.2 34.5 22.4 35.5 26.5 34.7C33.1 33.4 38 27.6 38 21' stroke='%23ef1116' stroke-width='2.6' stroke-linecap='round'/%3E%3Cpath d='M19 34H14V39' stroke='%23ef1116' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.trust-strip div:nth-child(4) b {
	width: 42px;
	background-image: url("data:image/svg+xml,%3Csvg width='42' height='42' viewBox='0 0 42 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='8' y='18' width='26' height='18' rx='3' stroke='%23ef1116' stroke-width='2.6'/%3E%3Cpath d='M14 18V13C14 9.1 17.1 6 21 6C24.9 6 28 9.1 28 13V18' stroke='%23ef1116' stroke-width='2.6' stroke-linecap='round'/%3E%3Cpath d='M21 25V29' stroke='%23ef1116' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.trust-strip h3 {
	font-size: 13px;
	line-height: 1.2;
	font-weight: 900;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 7px;
	letter-spacing: .01em;
}

.trust-strip p {
	color: #a9acb3;
	font-size: 13px;
	line-height: 1.35;
	margin: 0;
}

@media (max-width: 1050px) {
	.trust {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.trust-strip {
		border-left: 1px solid rgba(255, 255, 255, .14);
		border-radius: 10px;
	}
}

@media (max-width: 720px) {
	.trust {
		padding: 36px 0 28px;
	}

	.trust-strip {
		grid-template-columns: 1fr;
	}

	.trust-strip div {
		border-right: 0;
		border-bottom: 1px solid rgba(255,255,255,.10);
	}

	.trust-strip div:last-child {
		border-bottom: 0;
	}
}

/* =========================
   Branch Section Final
   Screenshot-matched two location cards
========================= */

.branches {
	padding: 34px 0 0;
}

.branches .section-title {
	text-align: center;
	margin: 0 0 22px;
}

.branches .section-title span {
	color: var(--accent-red);
	font-weight: 950;
	font-size: 13px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.branches .section-title h2 {
	font-size: 29px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: .055em;
	margin: 7px 0 10px;
	color: #fff;
}

.branches .section-title p {
	color: #b4b5bc;
	font-weight: 900;
	font-size: 13px;
	letter-spacing: .10em;
	text-transform: uppercase;
	margin: 0;
}

.branch-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	align-items: stretch;
}

.branch-card {
	min-height: 305px;
	background:
		linear-gradient(135deg, rgba(15, 17, 24, .84), rgba(5, 6, 9, .92));
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 12px;
	padding: 14px;
	display: grid;
	grid-template-columns: 47% 1fr;
	gap: 24px;
	transition: border-color .3s ease, transform .3s ease;
	overflow: hidden;
}

.branch-card:hover {
	border-color: rgba(255, 255, 255, .22);
	box-shadow: none !important;
	transform: translateY(-3px);
}

.branch-photo {
	position: relative;
	width: 100%;
	min-height: 275px;
	height: 100%;
	aspect-ratio: auto;
	border-radius: 9px;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(0, 0, 0, .48)),
		linear-gradient(90deg, #14161d, #060608);
}

.branch-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	position: absolute;
	inset: 0;
	z-index: 1;
}

.branch-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top, rgba(0,0,0,.30), rgba(0,0,0,0) 55%);
	pointer-events: none;
	z-index: 2;
}

.branch-photo:before {
	content: none !important;
}

.branch-photo .shop-sign {
	position: absolute;
	top: 18px;
	left: 18px;
	right: 18px;
	height: 45px;
	border: 1px solid #fff;
	border-radius: 3px;
	background: #050505;
	display: flex;
	align-items: center;
	padding: 4px 8px;
	color: #080808;
	font-size: 25px;
	font-weight: 950;
	letter-spacing: -1px;
	z-index: 5;
}

.branch-photo .shop-sign:before {
	content: "";
	position: absolute;
	left: 6px;
	top: 7px;
	bottom: 7px;
	width: 120px;
	background: var(--accent-red);
	z-index: 0;
}

.branch-photo .shop-sign::after {
	content: "HALBNEU";
	position: absolute;
	left: 13px;
	color: #050505;
	z-index: 1;
}

.branch-photo .shop-sign small {
	margin-left: auto;
	color: #fff;
	font-size: 10px;
	line-height: 1.05;
	text-align: right;
	font-weight: 500;
	position: relative;
	z-index: 2;
}

.branch-content {
	padding: 9px 0 4px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-width: 0;
}

.branch-content > span {
	color: var(--accent-red);
	font-weight: 950;
	font-size: 13px;
	letter-spacing: .05em;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.branch-content h3 {
	font-size: 24px;
	line-height: 1.08;
	font-weight: 900;
	letter-spacing: .015em;
	margin: 0 0 18px;
	color: #fff;
	text-transform: uppercase;
}

.branch-content .line {
	position: relative;
	color: #f0f0f2;
	font-size: 13px;
	line-height: 1.45;
	margin: 8px 0;
	padding-left: 25px;
}

.branch-content .line::before {
	position: absolute;
	left: 0;
	top: 0;
	color: #fff;
	opacity: .95;
	font-size: 14px;
}

.branch-content .line:nth-of-type(1)::before {
	content: "⌖";
}

.branch-content .line:nth-of-type(2)::before {
	content: "◷";
}

.branch-content .line:nth-of-type(3)::before {
	content: "☎";
}

.branch-content .line em {
	display: block;
	font-style: normal;
	color: #fff;
	margin-left: 0;
}

.branch-rating {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 13px 0 0;
	font-size: 13px;
	color: #fff;
}

.branch-rating .g-icon {
	font-size: 23px;
	font-weight: 950;
	line-height: 1;
	background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.branch-rating strong {
	color: #fff;
	font-weight: 800;
}

.branch-rating span {
	color: #ffcf21;
	font-size: 14px;
	letter-spacing: 1px;
	white-space: nowrap;
}

.branch-rating small {
	color: #c7c9cf;
	font-size: 11px;
	white-space: nowrap;
}

.card-actions {
	display: flex;
	gap: 10px;
	margin-top: 18px;
	flex-wrap: wrap;
}

.card-actions .btn {
	min-height: 40px;
	padding: 0 16px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .02em;
}

.card-actions .btn:hover {
	box-shadow: none !important;
}

@media (max-width: 1050px) {
	.branch-grid {
		grid-template-columns: 1fr;
	}

	.branch-card {
		grid-template-columns: 42% 1fr;
	}
}

@media (max-width: 720px) {
	.branches .section-title h2 {
		font-size: 22px;
		line-height: 1.15;
	}

	.branch-card {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.branch-photo {
		min-height: 260px;
		aspect-ratio: 4 / 3;
	}

	.branch-content h3 {
		font-size: 22px;
	}

	.card-actions {
		flex-direction: column;
	}

	.card-actions .btn {
		width: 100%;
	}
}

/* =========================
   Branch Image Visibility Fix
========================= */

/* Hide/remove old generated logo sign inside branch image cards */
.branch-photo .shop-sign {
	display: none !important;
}

/* Make sure the real branch photos are visible above all overlays */
.branch-photo {
	position: relative;
	background: #090b10 !important;
	overflow: hidden;
}

.branch-photo img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
	z-index: 1 !important;
}

/* Remove the dark fake placeholder and keep only a subtle image overlay */
.branch-photo::before {
	content: none !important;
	display: none !important;
}

.branch-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(to top, rgba(0,0,0,.28), rgba(0,0,0,0) 60%) !important;
}

/* District names slightly smaller so they fit cleanly */
.branch-content h3 {
	font-size: 21px !important;
	line-height: 1.1 !important;
	letter-spacing: .01em !important;
	white-space: normal !important;
	word-break: normal !important;
	overflow-wrap: normal !important;
}

@media (max-width: 1200px) {
	.branch-content h3 {
		font-size: 19px !important;
	}
}

@media (max-width: 720px) {
	.branch-content h3 {
		font-size: 21px !important;
	}
}

/* =========================
   Header Hero Screenshot Match
   Final responsive hero/header fix
========================= */

/* Header proportions like screenshot */
.site-header {
	position: sticky;
	top: 0;
	z-index: 80;
	background: rgba(0,0,0,.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255,255,255,.06);
}

.header-inner {
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 34px;
}

.brand-wrap img,
.custom-logo {
	max-width: 260px;
	height: auto;
	display: block;
}

.hn-logo {
	width: 260px;
	height: 43px;
}

.hn-logo span {
	font-size: 29px;
}

.hn-logo small {
	font-size: 11px;
}

.main-nav ul {
	display: flex;
	align-items: center;
	gap: 31px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-nav a {
	display: inline-flex;
	align-items: center;
	height: 76px;
	padding: 0;
	font-size: 14px;
	color: #fff;
	position: relative;
}

.main-nav a:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 17px;
	height: 2px;
	background: var(--accent-red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s ease;
}

.main-nav a:hover:after,
.current-menu-item > a:after {
	transform: scaleX(1);
}

.whatsapp-btn {
	min-height: 44px;
	border-radius: 7px;
	border: 1px solid var(--accent-red);
	background: rgba(0,0,0,.22);
	padding: 0 22px;
	font-size: 13px;
	box-shadow: none !important;
}

/* Hero like the provided target screenshot */
.hero {
	position: relative;
	min-height: 520px;
	padding: 62px 0 42px;
	overflow: hidden;
	background: #030407;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(
			90deg,
			#030407 0%,
			rgba(3,4,7,.82) 25%,
			rgba(3,4,7,.16) 52%,
			rgba(3,4,7,.66) 100%
		),
		url('../img/header.jpg');
	background-size: 1920px auto;
	background-position: center top;
	background-repeat: no-repeat;
	filter: saturate(1.06) brightness(.98);
	z-index: -2;
}

.hero:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 150px;
	background: linear-gradient(transparent, var(--bg-main));
	z-index: -1;
	pointer-events: none;
}

.hero-layout {
	display: grid;
	grid-template-columns: 465px 1fr 230px;
	align-items: center;
	gap: 35px;
	position: relative;
	z-index: 2;
	min-height: 405px;
}

.hero-copy {
	grid-column: 1;
	max-width: 465px;
}

.hero h1 {
	font-size: 57px;
	line-height: .94;
	margin: 0 0 20px;
	font-weight: 950;
	letter-spacing: -2px;
	color: #fff;
}

.hero h1 span {
	color: var(--accent-red);
}

.hero-kicker {
	margin: 0 0 12px;
	color: #fff;
	font-weight: 900;
	font-size: 14px;
	line-height: 1.35;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.hero-text {
	max-width: 470px;
	margin: 0 0 22px;
	color: #d9dbe0;
	font-size: 14px;
	line-height: 1.55;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 24px 0 28px;
}

.hero-actions .btn {
	min-height: 46px;
	padding: 0 24px;
	border-radius: 7px;
	font-size: 13px;
	font-weight: 900;
}

.rating-line {
	display: flex;
	align-items: center;
	gap: 13px;
	color: #d6d8dd;
	font-size: 13px;
	white-space: nowrap;
}

.rating-line .g-icon,
.g-icon {
	font-size: 26px;
	font-weight: 950;
	line-height: 1;
	background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.rating-line strong {
	color: #ffcf21;
	letter-spacing: 2px;
	font-weight: 950;
}

.hero-info {
	grid-column: 3;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.info-card {
	min-height: 112px;
	border: 1px solid rgba(255,255,255,.20);
	border-left-color: var(--border-red);
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(18,20,27,.78), rgba(7,8,12,.72));
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 22px;
	box-shadow: none !important;
}

.info-card svg {
	width: 48px;
	min-width: 48px;
	fill: none;
	stroke: var(--accent-red);
	stroke-width: 1.8;
}

.info-card h3 {
	margin: 0 0 6px;
	font-size: 14px;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
}

.info-card p {
	margin: 0;
	color: #c2c5cc;
	font-size: 12px;
	line-height: 1.45;
	text-transform: uppercase;
}

/* Feature strip overlapping lower hero like screenshot */
.feature-strip {
	position: relative;
	z-index: 5;
	min-height: 96px;
	margin-top: -18px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: rgba(8,10,14,.82);
	border: 1px solid rgba(255,255,255,.17);
	border-radius: 11px;
	overflow: hidden;
	box-shadow: none !important;
}

.feature {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px 32px;
	border-right: 1px solid rgba(255,255,255,.12);
	box-shadow: none !important;
}

.feature:last-child {
	border-right: 0;
}

.feature svg {
	width: 48px;
	min-width: 48px;
	fill: none;
	stroke: var(--accent-red);
	stroke-width: 1.7;
}

.feature h3 {
	margin: 0 0 5px;
	font-size: 14px;
	font-weight: 900;
	color: #fff;
}

.feature p {
	margin: 0;
	color: var(--text-secondary);
	font-size: 12px;
}

@media (min-width: 1921px) {
	.hero-bg {
		background-size: 100vw auto;
	}
}

@media (max-width: 1280px) {
	.hero-bg {
		background-size: 1780px auto;
		background-position: center top;
	}
}

@media (max-width: 1050px) {
	.header-inner {
		height: 72px;
	}

	.main-nav {
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		background: #050505;
		border-bottom: 1px solid var(--border-red);
		padding: 22px;
		display: none;
	}

	.main-nav.is-open {
		display: block;
	}

	.main-nav ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.main-nav a {
		height: auto;
		padding: 8px 0;
	}

	.mobile-toggle {
		display: block;
	}

	.whatsapp-btn {
		display: none;
	}

	.hero {
		min-height: auto;
		padding: 58px 0 42px;
	}

	.hero-bg {
		background-size: cover;
		background-position: center center;
		opacity: .65;
	}

	.hero-layout {
		grid-template-columns: 1fr;
		min-height: auto;
		gap: 30px;
	}

	.hero-copy,
	.hero-info {
		grid-column: 1;
	}

	.hero-info {
		flex-direction: row;
	}

	.feature-strip {
		grid-template-columns: repeat(2, 1fr);
		margin-top: 0;
	}
}

@media (max-width: 720px) {
	.brand-wrap img,
	.custom-logo {
		max-width: 215px;
	}

	.hn-logo {
		width: 215px;
		height: 40px;
	}

	.hn-logo span {
		font-size: 25px;
	}

	.hero {
		padding: 48px 0 36px;
	}

	.hero-bg {
		background-size: cover;
		background-position: center top;
		opacity: .52;
	}

	.hero h1 {
		font-size: 44px;
	}

	.hero-actions,
	.hero-info {
		flex-direction: column;
		align-items: stretch;
	}

	.rating-line {
		white-space: normal;
		flex-wrap: wrap;
	}

	.feature-strip {
		grid-template-columns: 1fr;
	}

	.feature {
		border-right: 0;
		border-bottom: 1px solid rgba(255,255,255,.12);
	}

	.feature:last-child {
		border-bottom: 0;
	}
}

/* =========================
   Hero Background Visibility Fix
   Prevents the header image from flashing and disappearing
========================= */

.hero {
	position: relative !important;
	isolation: isolate !important;
	background: #030407 !important;
	overflow: hidden !important;
}

.hero-bg {
	position: absolute !important;
	inset: 0 !important;
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: none !important;

	background-image:
		linear-gradient(
			90deg,
			#030407 0%,
			rgba(3,4,7,.88) 24%,
			rgba(3,4,7,.20) 52%,
			rgba(3,4,7,.68) 100%
		),
		url('../img/header.jpg') !important;

	background-size: 1920px auto !important;
	background-position: center top !important;
	background-repeat: no-repeat !important;

	filter: saturate(1.05) brightness(.98) !important;

	/* IMPORTANT: no negative z-index, otherwise it can vanish behind the page */
	z-index: 0 !important;
}

.hero::after {
	z-index: 1 !important;
	pointer-events: none !important;
}

.hero-layout {
	position: relative !important;
	z-index: 3 !important;
}

@media (min-width: 1921px) {
	.hero-bg {
		background-size: 100vw auto !important;
	}
}

@media (max-width: 1280px) {
	.hero-bg {
		background-size: 1780px auto !important;
	}
}

@media (max-width: 1050px) {
	.hero-bg {
		background-size: cover !important;
		background-position: center center !important;
		opacity: .68 !important;
	}
}

@media (max-width: 720px) {
	.hero-bg {
		background-size: cover !important;
		background-position: center top !important;
		opacity: .55 !important;
	}
}
