:root {
	--primary: #F26522;
	--primary-dark: #C44E12;
	--cyan: #00AEEF;
	--gold: #F5B800;
	--navy: #1B3A5C;
	--dark: #4A4A4A;
	--grey-brand: #808285;
	--gray: #666;
	--light-gray: #F0F0F0;
	--border: #D8D8D8;
	--white: #fff;
	--shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	--radius: 6px;
	--container: 1200px;
	--font-heading: 'Montserrat', sans-serif;
	--font-body: 'Open Sans', sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--dark);
	line-height: 1.6;
	background: var(--white);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s, background 0.2s, opacity 0.2s;
}

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

.section {
	padding: 80px 0;
}

.section--gray,
.section--grey {
	background: var(--light-gray);
}

.section__label {
	color: var(--primary);
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 12px;
}

.section__title {
	font-family: var(--font-heading);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 20px;
}

.section__subtitle {
	color: var(--gray);
	max-width: 720px;
	margin: 0 auto 40px;
}

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

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 4px;
	font-family: var(--font-heading);
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.25s;
}

.btn--primary {
	background: var(--primary);
	color: var(--white);
	border-color: var(--primary);
}

.btn--primary:hover {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
	color: var(--white);
}

.btn--outline {
	background: transparent;
	color: var(--white);
	border-color: var(--white);
}

.btn--outline:hover {
	background: var(--white);
	color: var(--primary);
}

.btn--dark {
	background: var(--dark);
	color: var(--white);
	border-color: var(--dark);
}

.btn--dark:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
}

/* Top bar */
.topbar {
	background: var(--dark);
	color: var(--white);
	font-size: 0.82rem;
	padding: 10px 0;
}

.topbar__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.topbar__contact {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.topbar__contact span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	opacity: 0.9;
}

.topbar__social {
	display: flex;
	gap: 12px;
}

.topbar__social a {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	font-weight: 700;
}

.topbar__social a:hover {
	background: var(--primary);
}

/* Header */
.site-header {
	background: var(--white);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 0;
}

.site-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-heading);
	font-weight: 800;
	text-decoration: none;
}

.site-logo__icon {
	font-size: 1.8rem;
	color: var(--grey-brand);
	letter-spacing: -4px;
}

.site-logo__icon span {
	color: var(--primary);
}

.site-logo__text {
	font-size: 1.15rem;
	color: var(--dark);
	letter-spacing: 0.5px;
}

.site-logo--image {
	display: block;
	line-height: 0;
}

.site-logo__img {
	max-height: 72px;
	width: auto;
	height: auto;
	display: block;
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--dark);
}

.primary-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.primary-nav a {
	display: block;
	padding: 12px 16px;
	font-family: var(--font-heading);
	font-size: 0.88rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
	color: var(--primary);
}

/* Hero */
.hero {
	position: relative;
	overflow: hidden;
	background: var(--dark);
}

.hero__slides {
	position: relative;
	min-height: 85vh;
	min-height: clamp(560px, 85vh, 780px);
}

.hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1s ease;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--dark);
}

.hero__slide-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1);
	transition: transform 8s ease;
}

.hero__slide.is-active .hero__slide-bg {
	animation: heroKenBurns 10s ease forwards;
}

@keyframes heroKenBurns {
	from { transform: scale(1); }
	to { transform: scale(1.1); }
}

.hero__slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.25) 100%);
	z-index: 1;
}

.hero__slide.is-active {
	opacity: 1;
	position: relative;
	z-index: 2;
}

.hero__slide--1:not(:has(.hero__slide-bg)) {
	background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
}

.hero__slide--2:not(:has(.hero__slide-bg)) {
	background: linear-gradient(135deg, #3d1515 0%, #1a1a1a 100%);
}

.hero__slide--3:not(:has(.hero__slide-bg)) {
	background: linear-gradient(135deg, #1a2a3a 0%, #0d1520 100%);
}

.hero__badge {
	display: inline-block;
	background: rgba(196, 30, 36, 0.9);
	color: var(--white);
	font-family: var(--font-heading);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding: 6px 14px;
	border-radius: 3px;
	margin-bottom: 16px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero__content {
	position: relative;
	z-index: 3;
	color: var(--white);
	max-width: 680px;
	padding: 100px 0 120px;
}

.hero__content h1 {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 16px;
}

.hero__content p {
	font-size: 1.1rem;
	opacity: 0.9;
	margin: 0 0 28px;
}

.hero__dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 2;
}

.hero__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid var(--white);
	background: transparent;
	cursor: pointer;
	padding: 0;
}

.hero__dot.is-active {
	background: var(--primary);
	border-color: var(--primary);
}

/* Product finder tabs */
.product-finder {
	background: var(--white);
	padding: 0;
	margin-top: -40px;
	position: relative;
	z-index: 10;
}

.product-finder__box {
	background: var(--white);
	box-shadow: var(--shadow);
	border-radius: var(--radius);
	padding: 30px;
}

.product-finder__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
	border-bottom: 2px solid var(--border);
	padding-bottom: 16px;
}

.product-finder__tab {
	padding: 10px 20px;
	border: none;
	background: transparent;
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	color: var(--gray);
	border-bottom: 3px solid transparent;
	margin-bottom: -18px;
}

.product-finder__tab.is-active {
	color: var(--primary);
	border-bottom-color: var(--primary);
}

.product-finder__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 16px;
}

.product-finder__item {
	text-align: center;
	padding: 16px 8px;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	transition: all 0.25s;
}

.product-finder__item:hover {
	border-color: var(--primary);
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.product-finder__thumb {
	width: 80px;
	height: 80px;
	margin: 0 auto 10px;
	background: linear-gradient(145deg, var(--c1, var(--primary)), var(--c2, var(--primary-dark)));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.65rem;
	color: var(--white);
	text-align: center;
	padding: 4px;
	line-height: 1.2;
	overflow: hidden;
	border: 3px solid var(--white);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.product-finder__thumb--photo {
	background: var(--light-gray);
	padding: 0;
}

.product-finder__thumb--photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-finder__name {
	font-family: var(--font-heading);
	font-size: 0.8rem;
	font-weight: 600;
}

.product-finder__panel {
	display: none;
}

.product-finder__panel.is-active {
	display: block;
}

/* Brands strip */
.brands-strip {
	padding: 40px 0;
	border-bottom: 1px solid var(--border);
}

.brands-strip__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.brands-strip__item {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.1rem;
	color: #ccc;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Features intro */
.features-intro__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.feature-card {
	text-align: center;
	padding: 30px 20px;
}

.feature-card__icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: rgba(196, 30, 36, 0.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 800;
}

.feature-card__icon--red {
	background: var(--primary);
	color: var(--white);
}

.feature-card--bordered {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 36px 24px;
	background: var(--white);
}

.feature-card h3 {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	margin: 0 0 12px;
}

.feature-card p {
	color: var(--gray);
	font-size: 0.95rem;
	margin: 0;
}

.feature-card--image {
	padding: 0;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--white);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--border);
	text-align: left;
}

.feature-card__visual {
	position: relative;
	aspect-ratio: 16/10;
	overflow: hidden;
}

.feature-card__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.feature-card--image:hover .feature-card__visual img {
	transform: scale(1.06);
}

.feature-card__num {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--primary);
	color: var(--white);
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 0.8rem;
	padding: 6px 12px;
	border-radius: 4px;
}

.feature-card__body {
	padding: 24px;
}

/* Benefits grid */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 24px;
}

.benefit-item {
	background: var(--white);
	padding: 24px;
	border-radius: var(--radius);
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.benefit-item__num {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 8px;
	opacity: 0.4;
}

.benefit-item h4 {
	font-family: var(--font-heading);
	font-size: 0.95rem;
	margin: 0;
	line-height: 1.4;
}

/* Product cards */
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 24px;
}

.product-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.product-card__image {
	display: block;
	aspect-ratio: 1;
	overflow: hidden;
	background: var(--light-gray);
}

.product-card__image .product-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-card__placeholder {
	width: 100%;
	height: 100%;
	min-height: 260px;
	background: linear-gradient(145deg, var(--c1, var(--primary)), var(--c2, var(--primary-dark)));
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.product-card__code {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 1.4rem;
	color: var(--white);
	text-align: center;
}

.product-card__body {
	padding: 20px;
}

.product-card__body h3 {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	margin: 0 0 8px;
}

.product-card__body p {
	color: var(--gray);
	font-size: 0.9rem;
	margin: 0 0 16px;
}

.product-card__link {
	color: var(--primary);
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
}

/* About split */
.about-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-split__image {
	aspect-ratio: 4/3;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	padding: 40px;
}

.about-split__image--pattern {
	background:
		linear-gradient(135deg, rgba(196, 30, 36, 0.92), rgba(139, 18, 24, 0.95)),
		repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(255,255,255,0.04) 12px, rgba(255,255,255,0.04) 24px);
}

.about-split__image--photo {
	padding: 0;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.about-split__image--photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Why split with image */
.why-split {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 60px;
	align-items: center;
}

.why-split__visual {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	aspect-ratio: 4/5;
}

.why-split__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.why-split .section__subtitle {
	margin-left: 0;
	margin-bottom: 24px;
}

.about-split__content ul {
	padding-left: 20px;
}

.about-split__content li {
	margin-bottom: 8px;
}

/* Why choose */
.why-list {
	max-width: 800px;
	margin: 0 auto;
}

.why-list li {
	padding: 16px 0;
	border-bottom: 1px solid var(--border);
	list-style: none;
	position: relative;
	padding-left: 28px;
}

.why-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--primary);
	font-weight: 700;
}

.why-list strong {
	color: var(--dark);
}

/* CTA banner */
.cta-banner {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: var(--white);
	text-align: center;
	padding: 60px 20px;
	position: relative;
}

.cta-banner--image {
	background-size: cover;
	background-position: center;
	padding: 100px 20px;
}

.cta-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(139, 18, 24, 0.88), rgba(26, 26, 26, 0.75));
}

.cta-banner__content {
	position: relative;
	z-index: 1;
}

.cta-banner h2 {
	font-family: var(--font-heading);
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	margin: 0 0 16px;
}

/* Projects */
.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
}

.project-card {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 4/3;
}

.project-card__bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, #444, #222);
}

.project-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
	display: flex;
	align-items: flex-end;
	padding: 24px;
}

.project-card h3 {
	color: var(--white);
	font-family: var(--font-heading);
	font-size: 1rem;
	margin: 0;
}

/* FAQ */
.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	margin-bottom: 12px;
	overflow: hidden;
}

.faq-item__question {
	width: 100%;
	padding: 20px 24px;
	background: var(--white);
	border: none;
	text-align: left;
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.faq-item__question:hover {
	color: var(--primary);
}

.faq-item__question::after {
	content: '+';
	font-size: 1.5rem;
	color: var(--primary);
	flex-shrink: 0;
}

.faq-item.is-open .faq-item__question::after {
	content: '−';
}

.faq-item__answer {
	display: none;
	padding: 0 24px 20px;
	color: var(--gray);
}

.faq-item.is-open .faq-item__answer {
	display: block;
}

/* Blog */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
}

.blog-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.blog-card__image {
	aspect-ratio: 16/10;
	background: var(--light-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray);
	font-size: 0.85rem;
}

.blog-card__body {
	padding: 24px;
}

.blog-card__date {
	color: var(--primary);
	font-size: 0.8rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.blog-card h3 {
	font-family: var(--font-heading);
	font-size: 1.05rem;
	margin: 0 0 12px;
	line-height: 1.4;
}

.blog-card p {
	color: var(--gray);
	font-size: 0.9rem;
	margin: 0;
}

/* Footer */
.site-footer {
	position: relative;
	background: #3d3d3d;
	color: rgba(255, 255, 255, 0.82);
	overflow: hidden;
}

.site-footer__stripes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background: repeating-linear-gradient(
		-55deg,
		var(--primary) 0,
		var(--primary) 14px,
		#3d3d3d 14px,
		#3d3d3d 28px
	);
}

.site-footer__main {
	padding: 56px 0 48px;
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 36px 32px;
}

.site-footer__col h4 {
	color: var(--white);
	font-family: var(--font-heading);
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin: 0 0 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--primary);
	display: inline-block;
	min-width: 120px;
}

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

.site-footer li {
	margin-bottom: 9px;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.9rem;
	transition: color 0.2s, padding-left 0.2s;
}

.site-footer a:hover {
	color: var(--primary);
	padding-left: 4px;
}

.site-footer__col--brand {
	padding-right: 20px;
}

.site-footer__logo {
	display: inline-block;
	margin-bottom: 12px;
	background: var(--white);
	padding: 10px 14px;
	border-radius: 4px;
	line-height: 0;
}

.site-footer__logo-img {
	max-height: 64px;
	width: auto;
	display: block;
}

.site-footer__brand {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 8px;
}

.site-footer__tagline {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.65);
	margin: 0 0 24px;
	line-height: 1.5;
}

.site-footer__contact-block {
	margin-bottom: 24px;
}

.site-footer__contact-item {
	margin-bottom: 16px;
}

.site-footer__contact-label {
	display: block;
	font-family: var(--font-heading);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--primary);
	margin-bottom: 6px;
}

.site-footer__contact-item p {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.6;
}

.site-footer__phones a {
	display: inline-block;
	margin-bottom: 2px;
}

.site-footer__social {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.site-footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	padding-left: 0 !important;
}

.site-footer__social-link:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white) !important;
	padding-left: 0 !important;
}

.site-footer__view-all {
	color: var(--primary) !important;
	font-weight: 600;
	font-size: 0.85rem !important;
	margin-top: 4px;
	display: inline-block;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 18px 0;
	background: rgba(0, 0, 0, 0.2);
}

.site-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 0.85rem;
}

.site-footer__bottom-inner p {
	margin: 0;
}

.site-footer__bottom-links {
	display: flex;
	align-items: center;
	gap: 12px;
}

.site-footer__bottom-links span {
	opacity: 0.35;
}

.site-footer__bottom-links a {
	font-size: 0.85rem;
	padding-left: 0 !important;
}

.site-footer__bottom-links a:hover {
	padding-left: 0 !important;
}

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 48px;
	height: 48px;
	background: var(--primary);
	color: var(--white);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.2rem;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	z-index: 999;
	box-shadow: var(--shadow);
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
}

/* Inner pages */
.page-hero {
	background: linear-gradient(135deg, var(--dark) 0%, #333 100%);
	color: var(--white);
	padding: 60px 0;
	text-align: center;
}

.page-hero h1 {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	margin: 0;
}

.page-content {
	padding: 60px 0;
}

.page-content .container {
	max-width: 800px;
}

/* Responsive */
@media (max-width: 992px) {
	.about-split {
		grid-template-columns: 1fr;
	}

	.site-footer__main {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__col--brand {
		grid-column: 1 / -1;
		padding-right: 0;
	}

	.features-intro__grid {
		grid-template-columns: 1fr;
	}

	.why-split {
		grid-template-columns: 1fr;
	}

	.why-split__visual {
		order: -1;
		aspect-ratio: 16/9;
	}
}

@media (max-width: 768px) {
	.nav-toggle {
		display: block;
	}

	.primary-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--white);
		box-shadow: var(--shadow);
		padding: 16px;
	}

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

	.primary-nav ul {
		flex-direction: column;
	}

	.site-header {
		position: relative;
	}

	.site-header__inner {
		position: relative;
	}

	.hero__slides {
		min-height: 420px;
	}

	.site-footer__main {
		grid-template-columns: 1fr;
	}

	.site-footer__bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	.topbar__contact {
		flex-direction: column;
		gap: 6px;
	}

	.header-cta {
		display: none;
	}

	.calculator-box {
		grid-template-columns: 1fr;
	}

	.contact-layout {
		grid-template-columns: 1fr;
	}
}

/* Header CTA */
.header-cta {
	padding: 10px 20px;
	font-size: 0.8rem;
	white-space: nowrap;
}

.site-header__inner {
	flex-wrap: wrap;
}

/* Stats strip */
.stats-strip {
	background: var(--primary);
	color: var(--white);
	padding: 28px 0;
	margin-top: -1px;
}

.stats-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	text-align: center;
}

.stats-strip__item strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 6px;
}

.stats-strip__item span {
	font-size: 0.85rem;
	opacity: 0.9;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Scroll reveal */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Calculator */
.calculator-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 48px;
	border: 1px solid var(--border);
}

.calculator-form .form-group {
	margin-bottom: 16px;
}

.calculator-form label {
	display: block;
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 6px;
}

.calculator-form input,
.calculator-form select,
.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--border);
	border-radius: 4px;
	font-family: var(--font-body);
	font-size: 0.95rem;
}

.calculator-form input:focus,
.calculator-form select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(196, 30, 36, 0.12);
}

.calculator-result {
	margin-top: 20px;
	padding: 16px;
	background: var(--light-gray);
	border-radius: 4px;
	border-left: 4px solid var(--primary);
}

.calculator-result span {
	display: block;
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--primary);
	margin-top: 6px;
}

/* Contact page */
.page-hero--compact {
	padding: 48px 0;
}

.page-hero--compact p {
	opacity: 0.85;
	max-width: 560px;
	margin: 12px auto 0;
}

.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 48px;
	align-items: start;
}

.contact-info__card {
	background: var(--light-gray);
	padding: 24px;
	border-radius: var(--radius);
	margin-bottom: 16px;
}

.contact-info__icon {
	font-size: 1.5rem;
	margin-bottom: 8px;
}

.contact-info__card h3 {
	font-family: var(--font-heading);
	margin: 0 0 8px;
	font-size: 1rem;
}

.contact-info__card p {
	margin: 0;
	color: var(--gray);
}

.contact-info__hours {
	padding: 24px;
	border: 2px solid var(--primary);
	border-radius: var(--radius);
}

.contact-form-wrap {
	background: var(--white);
	padding: 36px;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-group {
	margin-bottom: 16px;
}

.form-group label {
	display: block;
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 6px;
}

.notice {
	padding: 14px 18px;
	border-radius: 4px;
	margin-bottom: 20px;
	font-size: 0.9rem;
}

.notice--success {
	background: #e8f5e9;
	color: #2e7d32;
	border-left: 4px solid #2e7d32;
}

.notice--error {
	background: #fdecea;
	color: #c62828;
	border-left: 4px solid #c62828;
}

.map-placeholder {
	background: linear-gradient(135deg, #2c3e50, #1a252f);
	color: rgba(255,255,255,0.7);
	text-align: center;
	padding: 60px 20px;
}

.map-placeholder__title {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	color: var(--white);
	margin: 0 0 12px;
}

.contact-address {
	font-style: normal;
	line-height: 1.7;
	margin: 0;
}

.contact-address span {
	display: block;
}

.contact-address--footer {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.82);
}

.contact-address--footer span {
	margin-bottom: 3px;
}

.contact-address--map {
	color: rgba(255, 255, 255, 0.85);
}

.contact-address--map span {
	display: block;
}

.topbar__contact a {
	color: inherit;
}

.topbar__contact a:hover {
	color: var(--primary);
}

/* Dealer locator */
.dealer-search {
	display: flex;
	gap: 12px;
	margin-bottom: 32px;
	max-width: 560px;
}

.dealer-search__input {
	flex: 1;
	padding: 14px 18px;
	border: 1px solid var(--border);
	border-radius: 4px;
	font-size: 1rem;
}

.dealer-results {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

.dealer-card {
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: box-shadow 0.25s, border-color 0.25s;
}

.dealer-card:hover {
	border-color: var(--primary);
	box-shadow: var(--shadow);
}

.dealer-card h3 {
	font-family: var(--font-heading);
	font-size: 1.05rem;
	margin: 0 0 8px;
}

.dealer-card__location {
	color: var(--gray);
	margin: 0 0 4px;
	font-size: 0.9rem;
}

.dealer-card__address {
	color: var(--gray);
	margin: 0 0 8px;
	font-size: 0.85rem;
}

.dealer-card__phone a {
	color: var(--primary);
	font-weight: 600;
}

.dealer-empty {
	text-align: center;
	color: var(--gray);
	padding: 40px;
}

/* About page */
.about-page__intro .lead {
	font-size: 1.15rem;
	color: var(--dark);
}

.stats-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 48px;
	padding-top: 48px;
	border-top: 1px solid var(--border);
}

.stats-bar__item {
	text-align: center;
}

.stats-bar__item strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary);
}

.check-list li {
	margin-bottom: 10px;
}

/* Project cards */
.project-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
}

/* Blog placeholder */
.blog-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-card__image--placeholder {
	aspect-ratio: 16/10;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-family: var(--font-heading);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}

/* Product single */
.product-single__hero {
	margin-bottom: 30px;
	border-radius: var(--radius);
	overflow: hidden;
}

.product-single__hero .product-card__placeholder {
	min-height: 320px;
}

/* Tools widget */
.tools-widget {
	position: fixed;
	left: 24px;
	bottom: 100px;
	z-index: 998;
}

.tools-widget__toggle {
	background: var(--dark);
	color: var(--white);
	border: none;
	border-radius: 30px;
	padding: 12px 20px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.85rem;
	cursor: pointer;
	box-shadow: var(--shadow);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.tools-widget__toggle:hover {
	background: var(--primary);
}

.tools-widget__panel {
	position: absolute;
	bottom: calc(100% + 10px);
	left: 0;
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	min-width: 220px;
	overflow: hidden;
	border: 1px solid var(--border);
}

.tools-widget__link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	font-size: 0.9rem;
	font-weight: 500;
	border-bottom: 1px solid var(--border);
}

.tools-widget__link:last-child {
	border-bottom: none;
}

.tools-widget__link:hover {
	background: var(--light-gray);
	color: var(--primary);
}

@media (max-width: 992px) {
	.stats-strip__grid,
	.stats-bar {
		grid-template-columns: repeat(2, 1fr);
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.home-hero__grid,
	.catalog-hero__inner {
		grid-template-columns: 1fr;
	}

	.catalog-details__grid {
		grid-template-columns: 1fr;
	}
}

/* ===== D & D BOND Catalog Design ===== */

.home-hero {
	position: relative;
	background: var(--grey-brand);
	color: var(--white);
	overflow: hidden;
	padding: 80px 0;
}

.home-hero__stripes {
	position: absolute;
	width: 120px;
	height: 100%;
	background: repeating-linear-gradient(
		-55deg,
		var(--primary) 0,
		var(--primary) 12px,
		transparent 12px,
		transparent 24px
	);
	opacity: 0.9;
}

.home-hero__stripes--left {
	left: 0;
	top: 0;
}

.home-hero__stripes--right {
	right: 0;
	top: 0;
	background: repeating-linear-gradient(
		55deg,
		var(--primary) 0,
		var(--primary) 12px,
		transparent 12px,
		transparent 24px
	);
}

.home-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.home-hero__content h1 {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4.5vw, 3.2rem);
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 16px;
}

.home-hero__content p {
	opacity: 0.92;
	font-size: 1.05rem;
	margin-bottom: 28px;
}

.home-hero__visual {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	border: 4px solid rgba(255, 255, 255, 0.15);
}

.home-hero__visual img {
	width: 100%;
	height: auto;
	display: block;
}

.catalog-products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 28px;
}

.catalog-product-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	border-top: 4px solid var(--card-accent, var(--primary));
	transition: transform 0.25s, box-shadow 0.25s;
}

.catalog-product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.catalog-product-card__image {
	display: block;
	aspect-ratio: 4/3;
	overflow: hidden;
	background: var(--light-gray);
}

.catalog-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.catalog-product-card__body {
	padding: 20px;
}

.catalog-product-card__body h3 {
	font-family: var(--font-heading);
	font-size: 1rem;
	margin: 0 0 8px;
	line-height: 1.3;
}

.catalog-product-card__body p {
	color: var(--gray);
	font-size: 0.88rem;
	margin: 0 0 10px;
}

.catalog-product-card__pack {
	display: inline-block;
	background: var(--light-gray);
	padding: 4px 10px;
	border-radius: 3px;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 10px;
}

.brand-showcase {
	text-align: center;
	color: var(--white);
}

.brand-showcase__dd {
	display: block;
	font-size: 4rem;
	font-weight: 800;
	letter-spacing: -8px;
	line-height: 1;
	margin-bottom: 12px;
}

.brand-showcase__dd span {
	color: var(--primary);
}

.brand-showcase strong {
	display: block;
	font-size: 1.5rem;
	margin-bottom: 8px;
}

.check-list {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.check-list li {
	padding: 8px 0 8px 28px;
	position: relative;
}

.check-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--primary);
	font-weight: 700;
}

/* Product single — catalog layout */
.catalog-hero {
	position: relative;
	background: var(--grey-brand);
	color: var(--white);
	padding: 60px 0;
	overflow: hidden;
}

.catalog-hero__stripes {
	position: absolute;
	left: 0;
	top: 0;
	width: 80px;
	height: 100%;
	background: repeating-linear-gradient(
		-55deg,
		var(--product-accent, var(--primary)) 0,
		var(--product-accent, var(--primary)) 10px,
		transparent 10px,
		transparent 20px
	);
}

.catalog-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 40px;
	align-items: center;
}

.catalog-hero__image {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.catalog-hero__image img {
	width: 100%;
	height: auto;
	display: block;
}

.catalog-hero__category {
	color: var(--product-accent, var(--primary));
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 1px;
	margin: 0 0 8px;
}

.catalog-hero__info h1 {
	font-family: var(--font-heading);
	font-size: clamp(1.5rem, 3vw, 2.4rem);
	margin: 0 0 12px;
}

.catalog-hero__tagline {
	opacity: 0.9;
	margin-bottom: 16px;
}

.catalog-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 24px;
	font-size: 0.9rem;
}

.catalog-details__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.catalog-block {
	background: var(--white);
	padding: 28px;
	border-radius: var(--radius);
	border-left: 4px solid var(--primary);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.catalog-block__title {
	font-family: var(--font-heading);
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0 0 12px;
}

.catalog-block p {
	margin: 0;
	color: var(--gray);
	font-size: 0.92rem;
	line-height: 1.65;
}

.spec-table-wrap {
	max-width: 720px;
	margin: 32px auto 0;
}

.spec-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--white);
	box-shadow: var(--shadow);
	border-radius: var(--radius);
	overflow: hidden;
}

.spec-table th,
.spec-table td {
	padding: 14px 20px;
	text-align: left;
	border-bottom: 1px solid var(--border);
}

.spec-table th {
	background: var(--grey-brand);
	color: var(--white);
	font-weight: 600;
	width: 45%;
	font-size: 0.9rem;
}

.spec-table td {
	color: var(--dark);
	font-size: 0.9rem;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
	border-bottom: none;
}

.page-hero--catalog {
	background: var(--grey-brand);
}

.cta-banner--brand {
	background: var(--grey-brand);
}

.cta-banner--brand .cta-banner__overlay {
	background: linear-gradient(135deg, rgba(242, 101, 34, 0.85), rgba(74, 74, 74, 0.9));
}

.topbar {
	background: var(--dark);
}
