@charset "UTF-8";
/* CSS Document */ :root {
	--black: #111111;
	--dark: #1c1c1c;
	--charcoal: #2e2e2e;
	--red: #cc1a1a;
	--red-dk: #a31212;
	--red-lt: #e03333;
	--blue: #e03333;
	--gray1: #f5f5f5;
	--gray2: #e4e4e4;
	--gray3: #b0b0b0;
	--gray4: #6b6b6b;
	--white: #ffffff;
	--font: 'Montserrat', sans-serif;
}
*, body {
	font-family: var(--font);
}
/* TOPBAR */
#topbar {
	background: var(--white);
	font-size: 14px;
	color: rgba(0, 0, 0, 1);
	padding: 20px 0;
	letter-spacing: .04em;
	border-bottom: 1px solid #222;
}
#topbar a {
	color: var(--red-lt);
	text-decoration: none;
	transition: color .2s;
}
#topbar a:hover {
	color: #fff;
}
/* NAVBAR */
#mainNav {
	background: var(--white);
	border-bottom: 3px solid var(--red);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 16px rgba(0, 0, 0, .13);
}
#mainNav .nav-link {
	font-size: 14px;
	font-weight: 600;
	color: var(--black) !important;
	letter-spacing: .06em;
	padding: 8px 13px !important;
	transition: color .18s;
	text-transform: uppercase;
}
#mainNav .nav-link:hover, #mainNav .nav-link.active {
	color: var(--red) !important;
}
#mainNav .dropdown-menu {
	border: none;
	border-top: 3px solid var(--red);
	border-radius: 0 0 8px 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .14);
	min-width: 210px;
}
#mainNav .dropdown-item {
	font-size: 12px;
	font-weight: 600;
	color: var(--black);
	padding: 9px 20px;
	letter-spacing: .03em;
	text-transform: uppercase;
	transition: background .15s, color .15s;
}

#mainNav .dropdown-item:hover {
	background: var(--gray1);
	color: var(--red);
}
#mainNav .dropdown-item.active,
#mainNav .dropdown-item:active {
  background-color: var(--gray1) !important;
  color: var(--red) !important;
  font-weight: 800;
}
.nav-cta {
	background: var(--red) !important;
	color: var(--white) !important;
	border-radius: 6px;
	font-weight: 700 !important;
	padding: 8px 18px !important;
	margin-left: 8px;
	transition: background .2s !important;
}
.nav-cta:hover {
	background: var(--red-dk) !important;
	color: var(--white) !important;
}
.navbar-brand {
	padding: 0;
}
#mainNav .nav-link.nav-cta {
	color: var(--white) !important;
}
.nav-cta-demo {
    background: transparent !important;
    color: var(--red) !important;
    border: 2px solid var(--red-lt) !important;
    border-radius: 6px;
    font-weight: 700 !important;
    padding: 8px 18px !important;
    margin-left: 8px;
    transition: background .2s, color .2s !important;
}
.nav-cta-demo:hover {
    background: var(--gray2) !important;
    color: var(--white) !important;
}
#mainNav .nav-link.nav-cta-demo {
    color: var(--red) !important;
}
/* HERO */
#heroCarousel {
	background: var(--black);
}
.hero-slide {
	min-height: 580px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.hero-slide::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, rgba(10, 10, 10, .7) 38%, rgba(10, 10, 10, .3) 100%);
	z-index: 1;
}
.hero-slide::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: var(--red);
	z-index: 3;
}
.hero-slide img.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	z-index: 0;
}
.hero-content {
	position: relative;
	z-index: 2;
	color: var(--white);
	padding: 80px 0;
}
.hero-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--red-lt);
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.hero-eyebrow::before {
	content: '';
	display: inline-block;
	width: 26px;
	height: 2px;
	background: var(--red);
}
.hero-content h1 {
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 1.08;
	margin-bottom: 20px;
	letter-spacing: -.02em;
}
.hero-content h1 span {
	color: var(--red-lt);
}
.hero-content p {
	font-size: 1.05rem;
	font-weight: 300;
	opacity: .83;
	max-width: 500px;
	margin-bottom: 36px;
	line-height: 1.75;
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(204, 26, 26, .16);
	border: 1px solid rgba(204, 26, 26, .38);
	border-radius: 50px;
	padding: 7px 16px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .8);
	margin-bottom: 22px;
}
.btn-hp {
	background: var(--red);
	color: var(--white);
	font-weight: 800;
	font-size: 12px;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 14px 34px;
	border-radius: 6px;
	border: none;
	text-decoration: none;
	display: inline-block;
	transition: background .2s, transform .15s;
}
.btn-hp:hover {
	background: var(--red-dk);
	color: #fff;
	transform: translateY(-2px);
}
.btn-hs {
	background: transparent;
	color: var(--white);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 13px 28px;
	border-radius: 6px;
	border: 1.5px solid rgba(255, 255, 255, .35);
	text-decoration: none;
	display: inline-block;
	margin-left: 12px;
	transition: border-color .2s, background .2s;
}
.btn-hs:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .08);
	color: #fff;
}
.sl-content .btn-outline-red,
.btn-outline-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent !important;
  color: var(--red) !important;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 28px;
	margin-bottom: 20px;
  border-radius: 6px;
  border: 2px solid var(--red) !important;
  text-decoration: none !important;
  transition: background .2s, color .2s;
}

.sl-content .btn-outline-red:hover,
.btn-outline-red:hover {
  background: var(--red) !important;
  color: var(--white) !important;
}
.hero-stats {
	display: flex;
	gap: 36px;
	margin-top: 44px;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, .12);
}
.hero-stat-num {
	font-size: 2rem;
	font-weight: 900;
	color: var(--red-lt);
}
.hero-stat-label {
	font-size: 11px;
	font-weight: 600;
	opacity: .5;
	letter-spacing: .08em;
	text-transform: uppercase;
}
#heroCarousel .carousel-control-prev, #heroCarousel .carousel-control-next {
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, .08);
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, .2);
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
	opacity: 1;
}
#heroCarousel .carousel-control-prev {
	left: 24px;
}
#heroCarousel .carousel-control-next {
	right: 24px;
}
#heroCarousel .carousel-indicators button {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, .28);
	transition: background .2s;
}
#heroCarousel .carousel-indicators button.active {
	background: var(--red);
}
/* SEARCH BAND */
#searchBand {
	background: var(--dark);
	padding: 22px 0;
	border-bottom: 1px solid #282828;
}
.search-wrap {
	display: flex;
	gap: 10px;
	background: var(--white);
	border-radius: 8px;
	padding: 6px 6px 6px 18px;
	align-items: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .28);
}
.search-wrap input {
	border: none;
	outline: none;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 500;
	color: var(--black);
	flex: 1;
	background: transparent;
}
.search-wrap input::placeholder {
	color: var(--gray3);
	font-weight: 400;
}
.search-wrap .sdiv {
	width: 1px;
	height: 22px;
	background: var(--gray2);
	margin: 0 4px;
}
.search-wrap select {
	border: none;
	outline: none;
	font-family: var(--font);
	font-size: 13px;
	font-weight: 700;
	color: var(--black);
	background: transparent;
	cursor: pointer;
}
.btn-search {
	background: var(--red);
	color: var(--white);
	font-weight: 800;
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
	border: none;
	border-radius: 6px;
	padding: 10px 24px;
	cursor: pointer;
	transition: background .2s;
	white-space: nowrap;
}
.btn-search:hover {
	background: var(--red-dk);
}
/* frequency band badge on search result cards */
.cgx-badge-band {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 3px;
  background-color: #cc1a1a;
  color: #fff;
  text-transform: uppercase;
}
/* Search band — UHF/VHF radio button labels */
#searchBand .search-band-filters .form-check-label {
  color: #ccc;
  font-size: .875rem;
  cursor: pointer;
}

#searchBand .search-band-filters .form-check-input:checked + .form-check-label {
  color: #fff;
  font-weight: 600;
}

#searchBand .search-band-filters {
  padding-bottom: 10px;
}

/* ============================================================
   UNIVERSAL SEARCH — append these rules to main.css
   Prefix: sl-  (search layer)
   ============================================================ */

/* ── Type tabs ─────────────────────────────────────────── */
.sl-type-tabs {
  border-bottom: 1px solid var(--gray2);
  padding-bottom: 8px;
}
.sl-tab-btn {
  background: none;
  border: 1px solid var(--gray2);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray4);
  cursor: pointer;
  transition: all .18s;
  font-family: inherit;
}
.sl-tab-btn:hover,
.sl-tab-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ── Shared result badge ───────────────────────────────── */
.sl-result-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}

/* ── Shared result description ─────────────────────────── */
.sl-result-desc {
  font-size: .8rem;
  color: var(--gray4);
  line-height: 1.5;
  margin-top: 4px;

  /* Clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Product card: no-image placeholder ────────────────── */
.sl-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray1);
  min-height: 160px;
  border-radius: 8px;
  color: var(--gray3);
  font-size: 2rem;
}

/* ── Help card (FAQ / Guide / Video) ───────────────────── */
.sl-help-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--gray2);
  border-radius: 10px;
  padding: 18px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .18s, border-color .18s;
  height: 100%;
  position: relative;
}
.sl-help-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border-color: var(--red);
  color: inherit;
}
.sl-help-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gray1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--red);
}
.sl-help-body {
  flex: 1;
  min-width: 0;
}
.sl-help-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
  margin-bottom: 4px;
}
.sl-play-icon {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-size: 1.25rem;
  color: var(--red);
  opacity: .7;
}

/* ── Manual / Spec card ────────────────────────────────── */
.sl-manual-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--gray2);
  border-radius: 10px;
  padding: 18px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .18s, border-color .18s;
  height: 100%;
  position: relative;
}
.sl-manual-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border-color: var(--red);
  color: inherit;
}
.sl-manual-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #fff0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--red);
}
.sl-dl-icon {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-size: 1rem;
  color: var(--gray3);
}

/* ── Industry card inside search results ───────────────── */
#slSearchResults .ind-card {
  /* Inherit the existing .ind-card styles; just allow desc to show */
  height: auto;
}
#slSearchResults .ind-card .sl-result-desc {
  display: block;
  margin-top: 6px;
}
/* ── Related content row — top spacing ────────────────── */
#slResultGrid .col-12.col-md-6.sl-result-col {
  margin-bottom: 8px;
}
#slSearchResults {
  padding-bottom: 48px;
}
 
/* ── Search results section divider ───────────────────── */
.sl-section-divider {
  padding: 8px 0 4px;
}
.sl-section-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray3);
  border-top: 1px solid var(--gray2);
  padding-top: 20px;
  margin-top: 8px;
}





/* SECTION TITLES */
.s-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.s-eyebrow::before {
	content: '';
	display: inline-block;
	width: 22px;
	height: 2px;
	background: var(--red);
}
.s-title {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	color: var(--black);
	line-height: 1.12;
	margin-bottom: 14px;
	letter-spacing: -.02em;
}
.s-sub {
	font-size: .95rem;
	color: var(--gray4);
	font-weight: 400;
	line-height: 1.75;
	max-width: 520px;
}
/* PRODUCTS */
#products {
	background: var(--gray1);
	padding: 80px 0;
}
.filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 36px;
}
.filter-btn {
	border: 1.5px solid var(--gray2);
	background: var(--white);
	color: var(--black);
	font-family: var(--font);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 7px 18px;
	border-radius: 50px;
	cursor: pointer;
	transition: all .18s;
}
.filter-btn:hover {
	border-color: var(--red);
	color: var(--red);
}
.filter-btn.active {
	background: var(--red);
	border-color: var(--red);
	color: var(--white);
}
.product-card {
	background: var(--white);
	border-radius: 12px;
	border: 1.5px solid var(--gray2);
	overflow: hidden;
	transition: box-shadow .22s, transform .22s, border-color .22s;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.product-card:hover {
	box-shadow: 0 14px 40px rgba(0, 0, 0, .12);
	transform: translateY(-4px);
	border-color: var(--red);
}
.product-img-wrap {
	background: #f9f9f9;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px 24px;
	min-height: 200px;
	position: relative;
	border-bottom: 1px solid var(--gray2);
}
.product-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--red);
	color: var(--white);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 50px;
}
.product-badge.dk {
	background: var(--black);
}
.product-img-wrap img {
	max-height: 250px;
	max-width: 100%;
	object-fit: contain;
	transition: transform .3s;
}
.product-card:hover .product-img-wrap img {
	transform: scale(1.05);
}
.product-body {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.product-model {
	font-size: 16px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 4px;
}
.product-name {
	font-size: 16px;
	font-weight: 400;
	color: var(--black);
	margin-bottom: 6px;
}
.product-desc {
	font-size: 12px;
	color: var(--gray4);
	line-height: 1.65;
	margin-bottom: 14px;
	flex: 1;
}
.product-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 16px;
}
.product-tag {
	background: var(--gray1);
	color: var(--black);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 50px;
	border: 1px solid var(--gray2);
}
.btn-product {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: var(--black);
	color: var(--white);
	font-family: var(--font);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	border: none;
	border-radius: 6px;
	padding: 11px 0;
	margin: 10px 0;
	width: 100%;
	cursor: pointer;
	text-decoration: none;
	transition: background .18s;
}
.btn-product:hover {
	background: var(--red);
	color: var(--white);
}
.product-img-wrap.no-image::after {
  content: '';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray1);
}

.product-img-wrap.no-image::before {
  content: '\F4C3';
  font-family: 'Bootstrap Icons';
  font-size: 3rem;
  color: var(--gray2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#noResults {
	display: none;
	text-align: center;
	padding: 60px 20px;
	color: var(--gray4);
	font-size: 14px;
}
/* STATS */
#stats {
	background: var(--black);
	padding: 60px 0;
	border-top: 4px solid var(--red);
}
.stat-num {
	font-size: 3rem;
	font-weight: 900;
	color: var(--red-lt);
	line-height: 1;
}
.stat-lbl {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .4);
	margin-top: 8px;
}
/* ABOUT */
#about {
	background: var(--white);
	padding: 90px 0;
}
.about-img-wrap {
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}
.about-img-wrap img {
	width: 100%;
	border-radius: 12px;
}
.about-badge {
	position: absolute;
	bottom: 24px;
	left: 24px;
	background: var(--black);
	color: var(--white);
	border-radius: 10px;
	padding: 16px 22px;
	border-left: 4px solid var(--red);
	box-shadow: 0 8px 28px rgba(0, 0, 0, .3);
}
.about-badge .num {
	font-size: 2rem;
	font-weight: 900;
	color: var(--red-lt);
}
.about-badge .lbl {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	opacity: .6;
}
.feat {
	display: flex;
	gap: 16px;
	margin-bottom: 24px;
	align-items: flex-start;
}
.feat-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	background: rgba(204, 26, 26, .08);
	border: 1.5px solid rgba(204, 26, 26, .2);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 19px;
	color: var(--red);
}
.feat-title {
	font-size: 14px;
	font-weight: 800;
	color: var(--black);
	margin-bottom: 3px;
}
.feat-desc {
	font-size: 12px;
	color: var(--gray4);
	line-height: 1.65;
}
.btn-blk {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--black);
	color: var(--white);
	font-family: var(--font);
	font-weight: 800;
	font-size: 11px;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 13px 28px;
	border-radius: 6px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: background .18s;
}
.btn-blk:hover {
	background: var(--red);
	color: var(--white);
}
/* VIDEO */
#videoSection {
	background: var(--dark);
	padding: 80px 0;
	border-top: 1px solid #2a2a2a;
}
.video-wrap {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
	aspect-ratio: 16/9;
	border: 2px solid #333;
}
.video-wrap iframe {
	width: 100%;
	height: 100%;
	display: block;
	border: none;
}
/* INDUSTRIES */
#industries {
	background: var(--gray1);
	padding: 80px 0;
}
.ind-card {
	background: var(--white);
	border-radius: 10px;
	border: 1.5px solid var(--gray2);
	padding: 26px 16px 20px;
	text-align: center;
	transition: all .2s;
	cursor: pointer;
	text-decoration: none;
	display: block;
}
.ind-card:hover {
	background: var(--red);
	border-color: var(--red);
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(204, 26, 26, .2);
}
.ind-icon {
	font-size: 2.1rem;
	margin-bottom: 12px;
	display: block;
	color: var(--red);
	transition: color .2s;
}
.ind-card:hover .ind-icon {
	color: rgba(255, 255, 255, .9);
}
.ind-label {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--black);
	transition: color .2s;
}
.ind-card:hover .ind-label {
	color: var(--white);
}
/* FOOTER */
#footer {
	background: var(--black);
	color: rgba(255, 255, 255, .55);
	padding: 70px 0 30px;
	border-top: 4px solid var(--red);
}
#footer .fh {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 16px;
}
#footer a {
	color: rgba(255, 255, 255, .5);
	text-decoration: none;
	font-size: 12px;
	font-weight: 500;
	line-height: 2.3;
	transition: color .18s;
}
#footer a:hover {
	color: var(--red-lt);
}
#footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.fdiv {
	border-color: rgba(255, 255, 255, .08);
	margin: 40px 0 24px;
}
.fbot {
	font-size: 11px;
	color: rgba(255, 255, 255, .28);
}
.fsoc a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .14);
	color: rgba(255, 255, 255, .5);
	margin-right: 8px;
	font-size: 15px;
	transition: all .18s;
}
.fsoc a:hover {
	background: var(--red);
	border-color: var(--red);
	color: var(--white);
}
/* UTILS */
.hidden {
	display: none !important;
}


/* ============================================================
   LANDING PAGES (lp-)
   ============================================================ */

.lp-hero {
  position: relative;
  padding: 120px 0 80px;
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.lp-hero-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.lp-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
  line-height: 1.6;
}
.lp-prose {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--gray4);
}
.lp-prose h2 { font-size: 1.4rem; font-weight: 800; color: var(--black); margin: 1.5em 0 .5em; }
.lp-prose h3 { font-size: 1.15rem; font-weight: 700; color: var(--black); margin: 1.2em 0 .4em; }
.lp-prose ul, .lp-prose ol { padding-left: 1.4em; margin-bottom: 1em; }
.lp-prose li  { margin-bottom: .4em; }
.lp-prose a   { color: var(--red); }
.lp-prose a:hover { text-decoration: underline; }




@media(max-width:767px) {
	.hero-slide {
		min-height: 440px;
	}
	.hero-stats {
		flex-wrap: wrap;
		gap: 20px;
	}
	.search-wrap {
		flex-wrap: wrap;
	}
	.btn-search {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	.btn-hs {
		margin-left: 0;
		margin-top: 12px;
	}
	  .product-img-wrap {
    padding: 18px 14px;
    min-height: 150px;
  }
  .product-img-wrap img {
    max-height: 130px;
  }

  .product-body {
    padding: 14px 14px 16px;
  }

  .product-model {
    font-size: 14px;
    /*letter-spacing: .04em;    was .14em — too wide for narrow cards */
    margin-bottom: 3px;
    line-height: 1.25;
  }

  .product-name {
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .cgx-badge-band {
    font-size: .62rem;
    padding: 2px 8px;
    margin-bottom: 8px;
  }

  .btn-product {
    font-size: 10px;
    letter-spacing: .06em;
    padding: 9px 0;
    margin: 8px 0 0;
  }

  .product-badge {
    font-size: 8px;
    padding: 3px 8px;
    top: 8px;
    left: 8px;
  }

  /* Filter bar — tighten so buttons don't wrap awkwardly */
  .filter-bar {
    gap: 6px;
    margin-bottom: 24px;
  }
  .filter-btn {
    font-size: 10px;
    padding: 6px 12px;
  }
}
/* ═══════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ═══════════════════════════════════════════════════════════════ */
/* ── Page Hero / Breadcrumb ─────────────────────────────────── */
#pageHero {
	background: var(--black, #0e0e0e);
	border-bottom: 1px solid rgba(255, 255, 255, .07);
	padding: 22px 0 18px;
}
.breadcrumb-nav {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .38);
}
.breadcrumb-nav a {
	color: rgba(255, 255, 255, .45);
	text-decoration: none;
}
.breadcrumb-nav a:hover {
	color: var(--red, #cc1a1a);
}
.breadcrumb-nav .sep {
	opacity: .3;
	font-size: 10px;
}
.breadcrumb-nav .current {
	color: rgba(255, 255, 255, .75);
}
.page-hero-title {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 600;
	color: #fff;
	letter-spacing: -.02em;
	margin: 10px 0 0;
	line-height: 1.15;
}
.page-hero-sub {
	font-size: .85rem;
	color: rgba(255, 255, 255, .42);
	margin: 6px 0 0;
	font-weight: 500;
}
/* ── Product Detail Layout ──────────────────────────────────── */
#productDetail {
	padding: 60px 0 70px;
	background: var(--white, #fff);
}
/* Product image panel — 20% larger than original */
.pd-img-wrap {
	position: relative;
	background: #f4f4f4;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 504px;
	overflow: hidden;
	cursor: zoom-in;
}
.pd-img-wrap img {
	max-height: 456px;
	max-width: 100%;
	object-fit: contain;
	position: relative;
	z-index: 1;
	padding: 30px;
	transition: transform .3s ease, opacity .25s ease;
}
.pd-img-wrap:hover img {
	transform: scale(1.04);
	opacity: .92;
}
/* Zoom hint overlay */
.pd-zoom-hint {
	position: absolute;
	top: 18px;
	right: 18px;
	background: rgba(0, 0, 0, .45);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .05em;
	padding: 6px 12px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	gap: 6px;
	z-index: 3;
	pointer-events: none;
	opacity: 0;
	transition: opacity .2s;
}
.pd-img-wrap:hover .pd-zoom-hint {
	opacity: 1;
}
.pd-badge {
	position: absolute;
	top: 18px;
	left: 18px;
	background: var(--red, #cc1a1a);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 4px;
	z-index: 2;
}
.pd-img-actions {
	position: absolute;
	bottom: 18px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 10px;
	z-index: 2;
}
.pd-img-actions a {
	background: rgba(0, 0, 0, .07);
	border: 1px solid rgba(0, 0, 0, .1);
	color: #555;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	padding: 7px 15px;
	border-radius: 6px;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: background .2s, color .2s;
}
.pd-img-actions a:hover {
	background: var(--red, #cc1a1a);
	color: #fff;
	border-color: var(--red, #cc1a1a);
}
/* ── Lightbox ───────────────────────────────────────────────── */
#imgLightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, .88);
	align-items: center;
	justify-content: center;
	padding: 24px;
	cursor: zoom-out;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
#imgLightbox.open {
	display: flex;
}
#imgLightbox .lb-inner {
	position: relative;
	max-width: 700px;
	width: 100%;
	animation: lbIn .22s ease;
}
@keyframes lbIn {
	from {
		opacity: 0;
		transform: scale(.93);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
#imgLightbox .lb-inner img {
	width: 100%;
	max-height: 82vh;
	object-fit: contain;
	border-radius: 12px;
	background: #f4f4f4;
	padding: 28px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}
#imgLightbox .lb-close {
	position: absolute;
	top: -14px;
	right: -14px;
	width: 36px;
	height: 36px;
	background: var(--red, #cc1a1a);
	color: #fff;
	border: none;
	border-radius: 50%;
	font-size: 17px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
	transition: background .2s, transform .15s;
}
#imgLightbox .lb-close:hover {
	background: #a81515;
	transform: scale(1.1);
}
#imgLightbox .lb-caption {
	text-align: center;
	margin-top: 14px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .45);
}
/* Right column info */
.pd-eyebrow {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--red, #cc1a1a);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.pd-eyebrow::before {
	content: '';
	display: inline-block;
	width: 22px;
	height: 2px;
	background: var(--red, #cc1a1a);
	border-radius: 2px;
}
.pd-model {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
	letter-spacing: -.03em;
	color: #0e0e0e;
	line-height: 1;
	margin-bottom: 6px;
}
.pd-tagline {
	font-size: .95rem;
	color: #555;
	font-weight: 500;
	margin-bottom: 22px;
	line-height: 1.55;
}
/* Spec pills */
.pd-specs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
}
.pd-spec {
	background: #f0f0f0;
	border-radius: 6px;
	padding: 7px 14px;
	font-size: 12px;
	font-weight: 700;
	color: #333;
	display: flex;
	align-items: center;
	gap: 6px;
}
.pd-spec i {
	color: var(--red, #cc1a1a);
	font-size: 13px;
}
/* CTA buttons */
.pd-cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 32px;
}
.btn-pd-primary {
	background: var(--red, #cc1a1a);
	color: #fff;
	font-size: .8rem;
	font-weight: 800;
	letter-spacing: .07em;
	text-transform: uppercase;
	padding: 14px 28px;
	border-radius: 7px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background .2s, transform .15s;
}
.btn-pd-primary:hover {
	background: #a81515;
	color: #fff;
	transform: translateY(-1px);
}
.btn-pd-secondary {
	background: transparent;
	color: #0e0e0e;
	border: 2px solid #ddd;
	font-size: .8rem;
	font-weight: 800;
	letter-spacing: .07em;
	text-transform: uppercase;
	padding: 13px 22px;
	border-radius: 7px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: border-color .2s, color .2s, transform .15s;
}
.btn-pd-secondary:hover {
	border-color: var(--red, #cc1a1a);
	color: var(--red, #cc1a1a);
	transform: translateY(-1px);
}
/* Warranty / trust strip */
.pd-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding: 20px 22px;
	background: #f9f9f9;
	border-radius: 10px;
	border: 1px solid #eee;
}
.pd-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 700;
	color: #333;
}
.pd-trust-item i {
	font-size: 18px;
	color: var(--red, #cc1a1a);
}
/* ── Tabs section ───────────────────────────────────────────── */
#productTabs {
	background: #f7f7f7;
	padding: 60px 0 70px;
	border-top: 1px solid #ebebeb;
}
.tab-nav {
	display: flex;
	gap: 0;
	border-bottom: 2px solid #e0e0e0;
	margin-bottom: 40px;
	overflow-x: auto;
}
.tab-btn {
	background: none;
	border: none;
	padding: 14px 26px;
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #888;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	white-space: nowrap;
	transition: color .2s, border-color .2s;
}
.tab-btn.active {
	color: var(--red, #cc1a1a);
	border-bottom-color: var(--red, #cc1a1a);
}
.tab-btn:hover {
	color: #333;
}
.tab-panel {
	display: none;
}
.tab-panel.active {
	display: block;
}
/* Description tab */
.desc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}
.desc-card {
	background: #fff;
	border-radius: 12px;
	padding: 28px 26px;
	border: 1px solid #eee;
}
.desc-card-icon {
	width: 44px;
	height: 44px;
	background: #ffe8e8;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.desc-card-icon i {
	font-size: 20px;
	color: var(--red, #cc1a1a);
}
.desc-card h5 {
	font-size: .85rem;
	font-weight: 800;
	letter-spacing: .03em;
	margin-bottom: 8px;
	color: #0e0e0e;
}
.desc-card p {
	font-size: .82rem;
	color: #666;
	line-height: 1.7;
	margin: 0;
}
/* Features tab */
.feat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 14px;
}
.feat-item {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 10px;
	padding: 16px 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: .82rem;
	font-weight: 600;
	color: #333;
}
.feat-item i {
	color: var(--red, #cc1a1a);
	font-size: 15px;
	flex-shrink: 0;
}
/* ── Accessories ────────────────────────────────────────────── */
#accessories {
	padding: 60px 0 70px;
	background: #fff;
	border-top: 1px solid #ebebeb;
}
.acc-card {
	background: #f5f5f5;
	border-radius: 12px;
	border: 1px solid #eee;
	padding: 28px 20px 22px;
	text-align: center;
	text-decoration: none;
	display: block;
	transition: border-color .2s, box-shadow .2s, transform .2s;
}
.acc-card:hover {
	border-color: var(--red, #cc1a1a);
	box-shadow: 0 8px 28px rgba(204, 26, 26, .1);
	transform: translateY(-3px);
}
.acc-card img {
	height: 150px;
	object-fit: contain;
	margin-bottom: 16px;
}
.acc-model {
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--red, #cc1a1a);
	margin-bottom: 4px;
}
.acc-name {
	font-size: .85rem;
	font-weight: 700;
	color: #0e0e0e;
	margin-bottom: 8px;
}
.acc-link {
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #888;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	transition: color .2s;
}
.acc-card:hover .acc-link {
	color: var(--red, #cc1a1a);
}
/* ── Video section ──────────────────────────────────────────── */
#productVideo {
	background: var(--black, #0e0e0e);
	padding: 60px 0 70px;
}
.video-wrap {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	border-radius: 14px;
	overflow: hidden;
}
.video-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
/* ── CTA Band ───────────────────────────────────────────────── */
#ctaBand {
	background: var(--red, #cc1a1a);
	padding: 52px 0;
}
.cta-band-title {
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	font-weight: 900;
	letter-spacing: -.02em;
	color: #fff;
	margin-bottom: 8px;
}
.cta-band-sub {
	font-size: .88rem;
	color: rgba(255, 255, 255, .7);
	margin: 0;
}
.btn-cta-white {
	background: #fff;
	color: var(--red, #cc1a1a);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 15px 30px;
	border-radius: 7px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: opacity .2s, transform .15s;
	white-space: nowrap;
}
.btn-cta-white:hover {
	opacity: .9;
	color: var(--red, #cc1a1a);
	transform: translateY(-1px);
}
.btn-cta-outline {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, .55);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 13px 26px;
	border-radius: 7px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: border-color .2s, background .2s, transform .15s;
	white-space: nowrap;
}
.btn-cta-outline:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .1);
	color: #fff;
	transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION LANDING PAGES
   Shared styles for About, Industries, Products, Help, Dealers
   landing pages. Uses sl- prefix to avoid collisions.
   ═══════════════════════════════════════════════════════════════ */

/* ── Page wrapper ───────────────────────────────────────────── */
.sl-page {
	overflow-x: hidden;
}

/* ── Section Hero ───────────────────────────────────────────── */
.sl-hero {
	position: relative;
	min-height: 400px;
	display: flex;
	align-items: center;
	background: var(--black);
	overflow: hidden;
}
.sl-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	opacity: .6;
	filter: grayscale(25%);
}
/* diagonal red slice — right side atmosphere */
.sl-hero-accent {
	position: absolute;
	right: -60px;
	top: 0;
	bottom: 0;
	width: 50%;
	background: linear-gradient(135deg, transparent 50%, rgba(204,26,26,.07) 50%);
	pointer-events: none;
}
/* left red border stripe — matches hero-slide::after in main */
.sl-hero::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: var(--red);
	z-index: 3;
}
.sl-hero-inner {
	position: relative;
	z-index: 2;
	padding: 72px 0 64px;
}

/* ── Breadcrumb (dark variant) ──────────────────────────────── */
.sl-breadcrumb {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255,255,255,.3);
	margin-bottom: 20px;
}
.sl-breadcrumb a {
	color: rgba(255,255,255,.3);
	text-decoration: none;
	transition: color .2s;
}
.sl-breadcrumb a:hover {
	color: var(--red-lt);
}
.sl-breadcrumb .sep {
	font-size: 1rem;
	opacity: 1;
}
.sl-breadcrumb .crumb-active {
	color: var(--red-lt);
}

/* ── Hero heading & copy — extends existing hero-content patterns */
.sl-hero h1 {
	font-size: clamp(2rem, 4.2vw, 3.2rem);
	font-weight: 600;
	line-height: 1.08;
	color: var(--white);
	letter-spacing: -.02em;
	margin: 0 0 18px;
}
.sl-hero h1 span {
	color: var(--red-lt);
}
.sl-hero-sub {
	font-size: clamp(.9rem, 1.6vw, 1.5rem);
	font-weight: 500;
	color: rgba(255,255,255,.9);
	line-height: 1;
	max-width: 560px;
	margin-bottom: 32px;
}
.sl-hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* ── Optional stats strip inside hero ──────────────────────── */
.sl-hero-stats {
	display: flex;
	gap: 36px;
	margin-top: 44px;
	padding-top: 32px;
	border-top: 1px solid rgba(255,255,255,.1);
	flex-wrap: wrap;
}
.sl-hero-stat-num {
	font-size: 2rem;
	font-weight: 900;
	color: var(--red-lt);
	line-height: 1;
}
.sl-hero-stat-lbl {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255,255,255,.38);
	margin-top: 5px;
}

/* ── Section spacing helpers ────────────────────────────────── */
.sl-section      { padding: 80px 0; background: var(--white); }
.sl-section-dark { padding: 80px 0; background: var(--dark); border-top: 1px solid #2a2a2a; }
.sl-section-alt  { padding: 80px 0; background: var(--gray1); }

/* ── Section label / title / sub (mirrors .s-eyebrow etc.) ─── */
/* Note: use .sl-s-* to avoid collision with homepage .s-* rules */
.sl-s-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.sl-s-eyebrow::before {
	content: '';
	display: inline-block;
	width: 22px;
	height: 2px;
	background: var(--red);
}
.sl-s-title {
	font-size: clamp(1.5rem, 2.8vw, 2.2rem);
	font-weight: 600;
	letter-spacing: -.02em;
	line-height: 1.12;
	color: var(--black);
	margin: 0 0 14px;
}
.sl-s-title.light { color: var(--white); }
.sl-s-title span  { color: var(--red); }
.sl-s-sub {
	font-size: .95rem;
	color: var(--gray4);
	line-height: 1.75;
	max-width: 520px;
}
.sl-s-sub.light { color: rgba(255,255,255,.45); }

/* ── Search band (section-landing variant) ──────────────────── */
/* Reuses #searchBand / .search-wrap / .btn-search from main.
   .sl-search-band is a lighter, inline version for interior pages. */
.sl-search-band {
	background: var(--black);
	padding: 20px 0;
	border-bottom: 1px solid #282828;
	border-top: 1px solid #1e1e1e;
}
.sl-search-band .search-wrap {
	max-width: 680px;
}

/* ── Icon card grid — industries / product categories ───────── */
/* Extends the homepage .ind-card pattern with a lighter default */
.sl-card-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}
.sl-icon-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 28px 14px 22px;
	background: var(--white);
	border: 1.5px solid var(--gray2);
	border-radius: 10px;
	text-decoration: none;
	color: var(--black);
	transition: border-color .22s, box-shadow .22s, transform .22s, background .22s;
}
.sl-icon-card:hover {
	background: var(--red);
	border-color: var(--red);
	box-shadow: 0 12px 32px rgba(204,26,26,.2);
	transform: translateY(-4px);
	color: var(--white);
}
.sl-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(204,26,26,.08);
	border: 1.5px solid rgba(204,26,26,.18);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	color: var(--red);
	margin-bottom: 13px;
	transition: background .22s, border-color .22s, color .22s;
}
.sl-icon-card:hover .sl-icon {
	background: rgba(255,255,255,.18);
	border-color: rgba(255,255,255,.3);
	color: var(--white);
}
.sl-card-label {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .05em;
	text-transform: uppercase;
	transition: color .22s;
}
.sl-icon-card:hover .sl-card-label { color: var(--white); }

/* ── Feature row (text + image, 2-col) ──────────────────────── */
/* Mirrors the homepage #about layout pattern */
.sl-feature-img {
	border-radius: 12px;
	overflow: hidden;
}
.sl-feature-img img {
	width: 100%;
	display: block;
	border-radius: 12px;
}
.sl-feat-list {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.sl-feat-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.sl-feat-check {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--red);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	margin-top: 2px;
}
.sl-feat-text {
	font-size: .9rem;
	line-height: 1.65;
	color: var(--gray4);
}
.sl-feat-text strong { color: var(--black); }

/* ── Resource / link list ────────────────────────────────────── */
.sl-resource-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.sl-resource-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 15px 18px;
	background: var(--white);
	border: 1.5px solid var(--gray2);
	border-radius: 8px;
	text-decoration: none;
	color: var(--black);
	font-size: .88rem;
	font-weight: 700;
	transition: border-color .2s, box-shadow .2s, transform .15s;
}
.sl-resource-item:hover {
	border-color: var(--red);
	box-shadow: 0 6px 20px rgba(204,26,26,.1);
	transform: translateX(3px);
	color: var(--black);
}
.sl-resource-icon {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background: rgba(204,26,26,.07);
	border: 1.5px solid rgba(204,26,26,.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--red);
	font-size: 1rem;
	transition: background .2s, color .2s;
}
.sl-resource-item:hover .sl-resource-icon {
	background: var(--red);
	color: var(--white);
	border-color: var(--red);
}
.sl-resource-meta {
	margin-left: auto;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--gray3);
}

/* ── General content area ────────────────────────────────────── */
/* Use .sl-content for prose-heavy sections: about copy, help text,
   dealer info, policy pages, etc.                                 */
.sl-content {
	max-width: 760px;
}
.sl-content p {
	font-size: .95rem;
	color: var(--gray4);
	line-height: 1.85;
	margin-bottom: 1.25rem;
}
.sl-content h3 {
	font-size: 1.15rem;
	font-weight: 900;
	color: var(--black);
	letter-spacing: -.01em;
	margin: 2rem 0 .6rem;
}
.sl-content h3:first-child { margin-top: 0; }
.sl-content ul,
.sl-content ol {
	padding-left: 1.4rem;
	margin-bottom: 1.25rem;
}
.sl-content li {
	font-size: .92rem;
	color: var(--gray4);
	line-height: 1.8;
	margin-bottom: .35rem;
}
.sl-content strong { color: var(--black); }
.sl-content a {
	color: var(--red);
	font-weight: 600;
	text-decoration: none;
}
.sl-content a:hover { color: var(--red-dk); text-decoration: underline; }

/* Callout box inside content area */
.sl-callout {
	background: rgba(204,26,26,.05);
	border-left: 4px solid var(--red);
	border-radius: 0 8px 8px 0;
	padding: 18px 22px;
	margin: 1.5rem 0;
}
.sl-callout p {
	margin: 0;
	font-size: .9rem;
	font-weight: 600;
	color: var(--black);
}

/* ── CTA area (inline, within a section) ────────────────────── */
/* Use .sl-cta-area for in-page CTA groups below content blocks.
   For the full-width band, use #ctaBand from main.css instead.   */
.sl-cta-area {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	padding: 32px 36px;
	background: var(--black);
	border-radius: 12px;
	border-left: 5px solid var(--red);
	margin-top: 40px;
}
.sl-cta-area-copy { flex: 1; min-width: 220px; }
.sl-cta-area-copy strong {
	display: block;
	font-size: 1rem;
	font-weight: 900;
	color: var(--white);
	letter-spacing: -.01em;
	margin-bottom: 4px;
}
.sl-cta-area-copy span {
	font-size: .82rem;
	color: rgba(255,255,255,.45);
	line-height: 1.6;
}
.sl-cta-area-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	flex-shrink: 0;
}

/* ── Full-width CTA band (section landing version) ──────────── */
/* Distinct from #ctaBand (product detail). Use .sl-cta-band for
   section landing pages so both can coexist without conflict.     */
.sl-cta-band {
	background: var(--red);
	padding: 56px 0;
	text-align: center;
}
.sl-cta-band h2 {
	font-size: clamp(1.5rem, 2.8vw, 2.1rem);
	font-weight: 900;
	color: var(--white);
	letter-spacing: -.02em;
	margin-bottom: 10px;
}
.sl-cta-band p {
	font-size: .92rem;
	color: rgba(255,255,255,.7);
	margin-bottom: 28px;
}
.sl-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    padding: 10px 14px;
    background: var(--white);
    border: 1.5px solid var(--gray2);
    border-radius: 7px;
    transition: border-color .2s, color .2s;
}
.sl-sidebar-link:hover {
    border-color: var(--red);
    color: var(--red);
}
.sl-sidebar-link.active {
  border-color: var(--red) !important;
  color: var(--red) !important;
  font-weight: 800;
  background: rgba(204,26,26,.04);
}

.sl-sidebar-link.active i {
  color: var(--red) !important;
}
/* ─── TIMELINE v2 ────────────────────────────────────── */

.sl-section-timeline {
  background-color: var(--gray1);
  background-image: url('../upload/timeline_bg2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.sl-section-timeline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 245, 245, .85);
  z-index: 0;
}

.sl-section-timeline .container {
  position: relative;
  z-index: 1;
}
/* Outer track: the left border IS the spine */
.sl-tl-track {
  max-width: 860px;
  margin: 0 auto;
  row-gap: 0;  /* ADD THIS */
}


/* Each row is a 3-col grid: card | dot-column | card */
.sl-tl-row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: start;
  margin-bottom: 0;
}

/* The dot column draws the continuous spine via border */
.sl-tl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 100%;  /* ADD THIS */
}

.sl-tl-node::before {
  content: '';
  position: absolute;
  top: -32px;        /* CHANGE — extend upward into previous row's padding */
  bottom: -32px;     /* CHANGE — extend downward into next row's padding */
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--red);
  opacity: .2;
}

/* First row — spine starts at the dot, not above it */
.sl-tl-row:first-child .sl-tl-node::before {
  top: 24px;
}

/* Last row — spine stops at the dot */
.sl-tl-row-final .sl-tl-node::before {
  bottom: auto;
  height: 28px;
  top: 0;
}

.sl-tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--red);
  margin-top: 24px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.sl-tl-dot-current {
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(204,26,26,.15);
}

/* Card slots */
/* Force 3-column layout on desktop regardless of Bootstrap */
.sl-tl-track .sl-tl-row {
  display: grid !important;
  grid-template-columns: 1fr 48px 1fr !important;
  align-items: start;
  margin-bottom: 0;
}

.sl-tl-track .sl-tl-slot-left {
  grid-column: 1 !important;
  grid-row: 1 !important;
  padding-right: 28px !important;
  padding-left: 0 !important;
}

.sl-tl-track .sl-tl-node {
  grid-column: 2 !important;
  grid-row: 1 !important;
}

.sl-tl-track .sl-tl-slot-right {
  grid-column: 3 !important;
  grid-row: 1 !important;
  padding-left: 28px !important;
  padding-right: 0 !important;
}

.sl-tl-empty { min-height: 1px; }

/* Cards */
.sl-tl-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 10px;
  padding: 22px 24px;
  transition: box-shadow .2s, border-color .2s;
  height: 100%;
}

.sl-tl-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  border-color: rgba(204,26,26,.2);
}

.sl-tl-card-current {
  border-color: rgba(204,26,26,.25);
  box-shadow: 0 4px 20px rgba(204,26,26,.07);
}

.sl-tl-year {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.sl-tl-title {
  font-size: .95rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.35;
  margin: 0 0 8px;
  letter-spacing: -.01em;
}

.sl-tl-body {
  font-size: .85rem;
  color: var(--gray4);
  line-height: 1.7;
  margin: 0;
}

.sl-tl-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--red);
  background: rgba(204,26,26,.06);
  border: 1px solid rgba(204,26,26,.18);
  border-radius: 4px;
  padding: 4px 10px;
}

.sl-tl-track .sl-tl-slot-left,
.sl-tl-track .sl-tl-slot-right {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .sl-tl-track .sl-tl-row {
    grid-template-columns: 32px 1fr !important;
  }
  .sl-tl-track .sl-tl-slot-left  { 
    grid-column: 2 !important; 
    grid-row: 1 !important; 
    padding-left: 16px !important; 
    padding-bottom: 8px !important;
  }
  .sl-tl-track .sl-tl-slot-right { 
    grid-column: 2 !important; 
    grid-row: 2 !important; 
    padding-left: 16px !important;
  }
  .sl-tl-track .sl-tl-node       { grid-column: 1 !important; grid-row: 1 / 3 !important; }
  .sl-tl-empty                   { display: none !important; }
  .sl-tl-row-final .sl-tl-slot-right { grid-row: 1 !important; }
}

/* ─── GALLERY ────────────────────────────────────────── */

.sl-gallery {
  columns: 4 220px;
  column-gap: 12px;
}

.sl-gallery-item {
  break-inside: avoid;
  margin: 0 0 12px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #eee;
}

.sl-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.sl-gallery-tall  img { aspect-ratio: 2/3; }
.sl-gallery-wide  img { aspect-ratio: 16/7; }
.sl-gallery-item:not(.sl-gallery-tall):not(.sl-gallery-wide) img { aspect-ratio: 4/3; }

.sl-gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(.88);
}

.sl-gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.62));
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .03em;
  opacity: 0;
  transition: opacity .25s;
}

.sl-gallery-item:hover figcaption { opacity: 1; }

/* Placeholder when image is missing */
.sl-gallery-missing img { opacity: 0; }
.sl-gallery-missing::after {
  content: attr(data-caption);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  color: #999;
  font-size: .8rem;
  padding: 16px;
  text-align: center;
}


/* ─── LIGHTBOX ───────────────────────────────────────── */

.sl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: sl-lb-in .2s ease;
}

@keyframes sl-lb-in { from { opacity: 0; } to { opacity: 1; } }

.sl-lb-inner {
  max-width: 960px;
  width: 100%;
  text-align: center;
}

.sl-lb-img {
  max-height: 80vh;
  max-width: 100%;
  border-radius: 6px;
  display: block;
  margin: 0 auto 14px;
}

.sl-lb-caption {
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  line-height: 1.5;
  max-width: 620px;
  margin: 0 auto;
}

.sl-lb-close,
.sl-lb-prev,
.sl-lb-next {
  position: fixed;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  font-size: 1rem;
}

.sl-lb-close:hover,
.sl-lb-prev:hover,
.sl-lb-next:hover { background: rgba(200,16,46,.7); }

.sl-lb-close { top: 20px; right: 20px; }
.sl-lb-prev  { top: 50%; left: 16px;  transform: translateY(-50%); }
.sl-lb-next  { top: 50%; right: 16px; transform: translateY(-50%); }
/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991px) {
	.sl-card-grid {
		grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
	}
}
@media (max-width: 767px) {
	.sl-hero-inner { padding: 52px 0 48px; }
	.sl-section,
	.sl-section-dark,
	.sl-section-alt { padding: 56px 0; }
	.sl-hero-stats  { gap: 22px; }
	.sl-card-grid   { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
	.sl-cta-area    { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
	.sl-cta-area-btns { width: 100%; }
	.sl-cta-area-btns .btn-hp,
	.sl-cta-area-btns .btn-blk { width: 100%; justify-content: center; }
}
/* ── Mobile hero fixes ─────────────────────────── */
@media (max-width: 767.98px) {

  .sl-hero-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sl-hero h1 {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .sl-hero-sub {
    font-size: .9rem;
    line-height: 1.7;
  }

  /* Breadcrumb — smaller text but still tappable */
  .sl-breadcrumb {
    font-size: .72rem;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 14px;
  }
  .sl-breadcrumb a,
  .sl-breadcrumb .crumb-active {
    padding: 6px 2px;        /* tappable hit area */
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }
  .sl-breadcrumb .sep {
    font-size: .6rem;
    opacity: .5;
  }

  /* CTA buttons stack on very small screens */
  .sl-hero-ctas {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .sl-hero-ctas .btn-hp,
  .sl-hero-ctas .btn-hs {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Stats strip — tighten spacing */
  .sl-hero-stats {
    gap: 16px;
    margin-top: 20px;
  }
  .sl-hero-stat-num {
    font-size: 1.6rem;
  }
  .sl-hero-stat-lbl {
    font-size: .65rem;
  }

}
/* ── Promo Banner — shared ────────────────────────────── */
/*
  Unified layout for every homepage promo, whether or not it has
  an image. The section itself carries the bg_color (edge to edge),
  and .promo-inner is a single flex row: text column + optional
  image column. No separate "with image" card/box treatment —
  same padding, same row, image is just a column when present.
*/
.promoBanner {
  padding: 48px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/*.promoBanner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,10,10,.5) 45%, rgba(10,10,10,.3) 100%);
  z-index: 0;
}*/
.promoBanner .container {
  position: relative;
  z-index: 1;
}
.promo-copy {
  max-width: 640px;
}

/* Image-backed promos — the photo fills the whole section (same
   idea as the homepage hero-slide) with a dark scrim behind the
   text so it stays legible regardless of the photo's own colors. */
.promoBanner.has-image {
  min-height: 380px;
  display: flex;
  align-items: center;
}
.promoBanner.has-image::before {
  content: '';
  position: absolute;
  inset: 0;
  /*background: linear-gradient(100deg, rgba(10,10,10,.75) 45%, rgba(10,10,10,.3) 100%);*/
  z-index: 0;
}
.promo-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(255,255,255,.18);
  color: #fff;
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 10px;
}
.promo-title {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 10px;
}
.promo-sub {
  font-size: .92rem;
  opacity: .85;
  margin: 0 0 10px;
  line-height: 1.6;
}
.promo-expires {
  font-size: .8rem;
  font-weight: 600;
  opacity: .75;
  letter-spacing: .04em;
  margin-bottom: 20px;
}
.promo-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-promo-cta {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  padding: 12px 26px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .15s;
}
.btn-promo-cta:hover { opacity: .88; }
.promo-all-link {
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  opacity: .75;
  transition: opacity .15s;
}
.promo-all-link:hover { opacity: 1; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
  .promo-copy         { max-width: none; }
  .btn-promo-cta      { width: 100%; justify-content: center; }

  /* Drop the image on mobile — falls back to the plain bg_color
     band, same as a promo with no image at all. Inline style="
     background-image:..." on the section needs !important to
     be overridden here. */
  .promoBanner.has-image {
    min-height: 0;
    background-image: none !important;
  }
  .promoBanner.has-image::before {
    display: none;
  }
}
@media (min-width: 992px) {
  .promo-title { font-size: 2.6rem; }
}

/* ═══════════════════════════════════════════════════════════
   GEO LANDING PAGES  (geo- prefix)
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────────── */
.geo-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    background-color: var(--black);
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}
.geo-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.78) 0%, rgba(0,0,0,.45) 60%, rgba(0,0,0,.15) 100%);
}
.geo-hero__inner {
    position: relative;
    z-index: 2;
}
.geo-hero__eyebrow {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .3rem .75rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}
.geo-hero__heading {
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: .75rem;
}
.geo-hero__sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.85);
    max-width: 560px;
    margin-bottom: 1.75rem;
}

/* ── Intro band ─────────────────────────────────────────── */
.geo-intro-band {
    background: var(--red);
    color: var(--white);
    padding: 1.1rem 0;
}
.geo-intro-band p {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
}
.geo-intro-band a {
    color: var(--white);
    text-decoration: underline;
}

/* ── Section wrappers ───────────────────────────────────── */
.geo-section     { padding: 3.5rem 0; }
.geo-section-alt { padding: 3.5rem 0; background: var(--gray1); }

/* ── Section labels & headings ──────────────────────────── */
.geo-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: .5rem;
}
.geo-heading {
    font-weight: 800;
    font-size: clamp(1.3rem, 2.5vw, 1.85rem);
    color: var(--black);
    margin-bottom: 1rem;
}

/* ── Feature cards ──────────────────────────────────────── */
.geo-feature-card {
    background: var(--white);
    border-radius: 4px;
    border-top: 3px solid var(--red);
    padding: 1.75rem 1.5rem;
    height: 100%;
    transition: box-shadow .2s;
}
.geo-feature-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.1);
}
.geo-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.geo-feature-icon i {
    font-size: 1.3rem;
    color: var(--white);
}
.geo-feature-card h4 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--black);
    margin-bottom: .5rem;
}
.geo-feature-card p {
    font-size: .9rem;
    color: var(--gray4);
    margin: 0;
    line-height: 1.6;
}

/* ── Checklist ──────────────────────────────────────────── */
.geo-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: .65rem 1.25rem;
}
.geo-check-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 600;
    font-size: .95rem;
    color: var(--charcoal);
}
.geo-check-list li i {
    color: var(--red);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── CTA band ───────────────────────────────────────────── */
.geo-cta {
    background: var(--black);
    padding: 4rem 0;
    text-align: center;
}
.geo-cta h2 {
    font-weight: 800;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    color: var(--white);
    margin-bottom: .75rem;
}
.geo-cta p {
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    margin-bottom: 1.75rem;
}
.geo-cta .geo-phone {
    color: var(--red-lt);
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: color .2s;
}
.geo-cta .geo-phone:hover { color: var(--white); }

/* ── Buttons (reuse site patterns, geo-scoped aliases) ──── */
.geo-btn-primary {
    background: var(--red);
    border: 2px solid var(--red);
    color: var(--white);
    font-weight: 700;
    padding: .65rem 1.5rem;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .9rem;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, border-color .2s;
}
.geo-btn-primary:hover {
    background: var(--red-dk);
    border-color: var(--red-dk);
    color: var(--white);
}
.geo-btn-outline {
    border: 2px solid rgba(255,255,255,.6);
    color: var(--white);
    font-weight: 600;
    padding: .6rem 1.4rem;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .9rem;
    background: transparent;
    text-decoration: none;
    display: inline-block;
    transition: border-color .2s, background .2s;
}
.geo-btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.1);
    color: var(--white);
}
/* ── Related pages (same city, different radio series) ──── */
.geo-related-pages {
    padding-top: 2rem;
	padding-bottom: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--gray2);
}
.geo-related-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gray4);
    margin-bottom: .75rem;
}
.geo-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}
.geo-related-list a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--black);
    background: var(--white);
    border: 1.5px solid var(--gray2);
    border-radius: 50px;
    padding: .45rem 1.1rem;
    text-decoration: none;
    transition: border-color .2s, color .2s;
}
.geo-related-list a:hover {
    border-color: var(--red);
    color: var(--red);
}
/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 767px) {
    .geo-hero      { min-height: 360px; }
    .geo-section,
    .geo-section-alt { padding: 2.5rem 0; }
    .geo-cta       { padding: 2.5rem 0; }
    .geo-check-list { grid-template-columns: 1fr 1fr; }
				.geo-related-pages { padding-top: 1.5rem; margin-top: 1.5rem; }
}
/* ── Global link underline reset ────────────────────────────── */
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
