/* BLANKSLATE GROUP - DIRECT COLORS (no CSS vars) */
/* ===== HERO - Scalient-style centered + card collage ===== */
.bs-hero {
	position: relative;
	padding: 140px 0 0;
	overflow: hidden;
	background: #0a0a0a;
}

.bs-hero::before {
	content: "";
	position: absolute;
	background: radial-gradient(circle at 15% 20%, rgba(108,190,69,0.12), transparent 500px), radial-gradient(circle at 85% 30%, rgba(108,190,69,0.08), transparent 600px);
	pointer-events: none;
}

.bs-hero::after {
	content: "";
	position: absolute;
	background: radial-gradient(ellipse 600px 400px at 10% 80%, rgba(108,190,69,0.08), transparent 70%), radial-gradient(ellipse 400px 300px at 90% 70%, rgba(108,190,69,0.05), transparent 60%);
	pointer-events: none;
	z-index: 0;
}

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

.bs-hero-text {
	text-align: center;
	max-width: 820px;
	margin: 0 auto;
	padding: 0 24px;
}

.bs-hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 100px;
	padding: 8px 20px 8px 8px;
	margin-bottom: 32px;
	font-size: 14px;
	color: rgba(255,255,255,0.7);
}

.bs-pill-badge {
	background: #6CBE45;
	color: #0a0a0a;
	padding: 4px 12px;
	border-radius: 100px;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .5px;
}

.bs-pill-label {
	color: rgba(255,255,255,0.8);
}

.bs-pill-arrow {
	color: rgba(255,255,255,0.4);
	font-size: 16px;
}

.bs-hero-title {
	font-size: clamp(40px, 5.5vw, 72px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -.03em;
	color: #ffffff;
	margin: 0 0 24px;
}

.bs-hero-subtitle {
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255,255,255,0.5);
	max-width: 600px;
	margin: 0 auto 36px;
}

.bs-hero-btns {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 60px;
}

.bs-hero-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 32px;
	background: #6CBE45;
	color: #0a0a0a;
	font-weight: 700;
	font-size: 15px;
	border-radius: 8px;
	text-decoration: none;
	transition: all .3s;
}

.bs-hero-btn-primary:hover {
	background: #5aa83a;
	transform: translateY(-1px);
}

.bs-btn-icon {
	font-size: 18px;
	transition: transform .3s;
}

.bs-hero-btn-primary:hover .bs-btn-icon {
	transform: translateX(3px);
}

.bs-hero-btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 28px;
	background: transparent;
	color: rgba(255,255,255,0.8);
	font-weight: 600;
	font-size: 15px;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,0.15);
	text-decoration: none;
	transition: all .3s;
}

.bs-hero-btn-ghost:hover {
	background: rgba(255,255,255,0.06);
	border-color: rgba(255,255,255,0.25);
	color: #fff;
}

/* === HERO CARD COLLAGE === */
.bs-hero-cards-wrap {
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	overflow: hidden;
	padding: 0 0 80px;
}

.bs-hero-cards-track {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 0;
	padding: 0;
	max-width: none;
	margin: 0 auto;
	position: relative;
}

.bs-hc {
	border-radius: 16px;
	flex-shrink: 0;
	transition: transform .4s cubic-bezier(0.22,1,0.36,1);
}

.bs-hc:hover {
	transform: translateY(-6px);
}

/* Photo card - tallest, left */
.bs-hc-photo {
	width: 260px;
	height: 380px;
	position: relative;
	margin-bottom: 40px;
	margin-left: -40px;
	margin-right: -12px;
	z-index: 2;
}

.bs-hc-photo-inner {
	width: 100%;
	height: 100%;
	border-radius: 16px;
	background: repeating-linear-gradient(-45deg,
      rgba(108,190,69,0.15),
      rgba(108,190,69,0.15) 2px,
      transparent 2px,
      transparent 12px), linear-gradient(135deg, #1a2a1a, #0d1a0d);
	border: 1px solid rgba(108,190,69,0.2);
}

.bs-hc-float-tag {
	position: absolute;
	bottom: -20px;
	left: -30px;
	background: #ffffff;
	color: #0a0a0a;
	padding: 10px 18px;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.bs-tag-dot {
	color: #6CBE45;
	margin-right: 4px;
}

/* Partners stat card - white */
.bs-hc-partners {
	width: 200px;
	height: 220px;
	background: #ffffff;
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 80px;
	margin-right: -8px;
	z-index: 1;
}

.bs-hc-big-number {
	font-size: 56px;
	font-weight: 800;
	line-height: 1;
	color: #0a0a0a;
	letter-spacing: -.03em;
}

.bs-hc-partners-label {
	font-size: 14px;
	color: rgba(0,0,0,0.5);
	line-height: 1.4;
	margin-top: 8px;
}

/* Trust card - dark with bars */
.bs-hc-trust {
	width: 210px;
	height: 240px;
	background: #141414;
	border: 1px solid rgba(255,255,255,0.08);
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-bottom: 20px;
	margin-right: -10px;
	z-index: 3;
}

.bs-hc-trust-title {
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.3;
}

.bs-hc-bars {
	display: flex;
	align-items: flex-end;
	gap: 6px;
	height: 50px;
}

.bs-bar {
	width: 20px;
	border-radius: 4px;
	background: rgba(255,255,255,0.15);
}

.bs-bar-sm {
	height: 30%;
}

.bs-bar-md {
	height: 50%;
	background: #6CBE45;
}

.bs-bar-lg {
	height: 75%;
	background: #6CBE45;
}

.bs-bar-xl {
	height: 100%;
	background: #6CBE45;
}

/* Chart card - dark with bar chart */
.bs-hc-chart {
	width: 220px;
	height: 280px;
	background: #141414;
	border: 1px solid rgba(255,255,255,0.08);
	padding: 28px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-bottom: 60px;
	margin-right: -10px;
	z-index: 2;
}

.bs-hc-chart-visual {
	display: flex;
	align-items: flex-end;
	gap: 10px;
	height: 100px;
	padding-top: 16px;
}

.bs-chart-bar {
	flex: 1;
	border-radius: 4px 4px 0 0;
	background: rgba(255,255,255,0.12);
	min-height: 10px;
}

.bs-chart-bar.bs-chart-accent {
	background: #6CBE45;
}

/* Locations card - dark with pills */
.bs-hc-locations {
	width: 240px;
	height: 280px;
	background: #141414;
	border: 1px solid rgba(255,255,255,0.08);
	padding: 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 90px;
	margin-right: -12px;
	z-index: 1;
}

.bs-hc-locations .bs-hc-big-number {
	color: #ffffff;
}

.bs-hc-locations .bs-hc-partners-label {
	color: rgba(255,255,255,0.5);
}

.bs-hc-loc-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.bs-loc-pill {
	padding: 8px 14px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 100px;
	font-size: 12px;
	color: rgba(255,255,255,0.7);
	font-weight: 500;
}

/* Wide SDVOSB card */
.bs-hc-wide {
	width: 280px;
	height: 220px;
	background: #ffffff;
	padding: 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 40px;
	margin-right: -60px;
	z-index: 0;
}

.bs-hc-wide-title {
	font-size: 42px;
	font-weight: 900;
	color: #0a0a0a;
	letter-spacing: -.02em;
	line-height: 1;
}

.bs-hc-wide-sub {
	font-size: 14px;
	color: rgba(0,0,0,0.5);
	margin-top: 4px;
	margin-bottom: 16px;
}

.bs-hc-wide-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.bs-wpill {
	padding: 6px 12px;
	border-radius: 100px;
	font-size: 11px;
	font-weight: 700;
}

.bs-wpill-green {
	background: #6CBE45;
	color: #0a0a0a;
}

.bs-wpill-dark {
	background: #1a1a1a;
	color: rgba(255,255,255,0.7);
	font-weight: 500;
	font-size: 10px;
}

/* Hero responsive */
@media (max-width: 1100px) {
	.bs-hero-cards-track {
		gap: 12px;
		padding: 0 20px;
	}
	
	.bs-hc-photo {
		width: 180px;
		height: 280px;
	}
	
	.bs-hc-partners {
		width: 170px;
		height: 190px;
	}
	
	.bs-hc-trust {
		width: 170px;
		height: 170px;
	}
	
	.bs-hc-chart {
		width: 180px;
		height: 220px;
	}
	
	.bs-hc-locations {
		width: 200px;
		height: 240px;
	}
	
	.bs-hc-wide {
		width: 230px;
		height: 190px;
	}
}

@media (max-width: 900px) {
	.bs-hero {
		padding-top: 100px;
	}
	
	.bs-hero-title {
		font-size: 42px;
	}
	
	.bs-hero-cards-track {
		flex-wrap: wrap;
		justify-content: center;
		gap: 14px;
		padding: 0 16px;
	}
	
	.bs-hc {
		margin-bottom: 0 !important;
	}
	
	.bs-hc-photo {
		width: 160px;
		height: 220px;
	}
	
	.bs-hc-partners {
		width: 160px;
		height: 180px;
	}
	
	.bs-hc-trust {
		width: 160px;
		height: 160px;
	}
	
	.bs-hc-chart {
		width: 160px;
		height: 200px;
	}
	
	.bs-hc-locations {
		width: 180px;
		height: 220px;
	}
	
	.bs-hc-wide {
		width: 200px;
		height: 180px;
	}
	
	.bs-hc-float-tag {
		left: -10px;
		bottom: -15px;
		font-size: 12px;
		padding: 8px 14px;
	}
}

@media (max-width: 600px) {
	.bs-hero {
		padding-top: 80px;
	}
	
	.bs-hero-title {
		font-size: 32px;
		letter-spacing: -.02em;
	}
	
	.bs-hero-subtitle {
		font-size: 16px;
	}
	
	.bs-hero-btns {
		flex-direction: column;
		gap: 12px;
	}
	
	.bs-hero-btn-primary, .bs-hero-btn-ghost {
		width: 100%;
		justify-content: center;
		max-width: 300px;
	}
	
	.bs-hero-cards-track {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 12px;
		padding: 0 16px;
	}
	
	.bs-hc {
		width: 100% !important;
		height: auto !important;
		min-height: 160px;
	}
	
	.bs-hc-photo {
		min-height: 200px;
		grid-column: 1 / -1;
	}
	
	.bs-hc-big-number {
		font-size: 36px;
	}
	
	.bs-hc-wide-title {
		font-size: 32px;
	}
}

.bs-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 48px;
}

.bs-btn-primary {
	background: #6CBE45 !important;
	color: #000 !important;
	padding: 16px 36px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: transform 0.2s, box-shadow .3s;
	border: none;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
}

.bs-btn-primary:hover {
	transform: scale(1.03);
	box-shadow: 0 0 30px rgba(108,190,69,0.3);
}

.bs-btn-secondary {
	color: rgba(255,255,255,0.7);
	font-size: 16px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color .2s;
}

.bs-btn-secondary:hover {
	color: #fff;
}

.bs-stat-number {
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -1px;
	color: #fff;
}

.bs-stat-label {
	font-size: 14px;
	color: rgba(255,255,255,0.4);
	margin-top: 4px;
}

.bs-logos {
	padding: 60px 0;
	border-top: 1px solid rgba(255,255,255,0.08);
	border-bottom: 1px solid rgba(255,255,255,0.08);
	overflow: hidden;
}

.bs-logos-label {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: rgba(255,255,255,0.4);
	text-align: center;
	margin-bottom: 40px;
	font-weight: 600;
}

.bs-logos-track {
	display: flex;
	align-items: center;
	gap: 80px;
	animation: bsLogoScroll 30s linear infinite;
}

.bs-logos-track span {
	font-size: 20px;
	font-weight: 700;
	color: rgba(255,255,255,0.12);
	white-space: nowrap;
}

@keyframes bsLogoScroll {
	0% {
		transform: translateX(0);
	}
	
	100% {
		transform: translateX(-50%);
	}
}

.bs-eyebrow {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #6CBE45;
	font-weight: 600;
	margin-bottom: 20px;
}

.bs-section-title {
	font-size: clamp(30px,3.5vw,48px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -1.5px;
	margin-bottom: 24px;
	color: #fff;
}

.bs-section-desc {
	font-size: 17px;
	color: rgba(255,255,255,0.7);
	line-height: 1.7;
}

.bs-btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 50px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	transition: all .2s;
}

.bs-btn-outline:hover {
	border-color: #6CBE45;
	color: #6CBE45;
}

.bs-about {
	padding: 140px 0;
}

.bs-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.bs-about-image {
	aspect-ratio: 4/5;
	background: #1a1a1a;
	border-radius: 20px;
	border: 1px solid rgba(255,255,255,0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.4);
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.bs-works {
	padding: 140px 0;
	border-top: 1px solid rgba(255,255,255,0.08);
}

.bs-works-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 60px;
	flex-wrap: wrap;
	gap: 20px;
}

.bs-works-header .bs-section-title {
	margin-bottom: 0;
}

.bs-works-grid {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 24px;
}

.bs-work-card {
	background: #141414;
	border-radius: 20px;
	border: 1px solid rgba(255,255,255,0.08);
	overflow: hidden;
	transition: border-color 0.3s, transform .3s;
	cursor: pointer;
}

.bs-work-card:hover {
	border-color: #6CBE45;
	transform: translateY(-4px);
}

.bs-work-card.featured {
	grid-column: 1/-1;
}

.bs-work-image {
	width: 100%;
	aspect-ratio: 16/9;
	background: #1a1a1a;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.4);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.bs-work-card.featured .bs-work-image {
	aspect-ratio: 21/9;
}

.bs-work-info {
	padding: 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bs-work-title {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}

.bs-work-cat {
	font-size: 13px;
	color: rgba(255,255,255,0.4);
	margin-top: 4px;
}

.bs-work-arrow {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, border-color .2s;
	flex-shrink: 0;
}

.bs-work-card:hover .bs-work-arrow {
	background: #6CBE45;
	border-color: #6CBE45;
}

.bs-work-arrow svg {
	width: 16px;
	height: 16px;
	stroke: rgba(255,255,255,0.7);
	fill: none;
}

.bs-work-card:hover .bs-work-arrow svg {
	stroke: #000;
}

.bs-services {
	padding: 140px 0;
	background: #111111;
}

.bs-services-header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 72px;
}

.bs-services-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 24px;
}

.bs-service-card {
	background: #141414;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 20px;
	padding: 36px 28px;
	transition: border-color 0.3s, transform .3s;
}

.bs-service-card:hover {
	border-color: #6CBE45;
	transform: translateY(-4px);
}

.bs-service-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(108,190,69,0.1);
	border: 1px solid rgba(108,190,69,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.bs-service-icon svg {
	width: 24px;
	height: 24px;
	stroke: #6CBE45;
	fill: none;
}

.bs-service-card h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #fff;
}

.bs-service-card p {
	font-size: 14px;
	color: rgba(255,255,255,0.4);
	line-height: 1.6;
}

.bs-pricing {
	padding: 140px 0;
}

.bs-pricing-header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 72px;
}

.bs-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 24px;
	max-width: 1000px;
	margin: 0 auto;
	align-items: start;
}

.bs-price-card {
	background: #141414;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 20px;
	padding: 40px 32px;
	position: relative;
	transition: border-color .3s;
}

.bs-price-card:hover {
	border-color: rgba(255,255,255,0.15);
}

.bs-price-card.featured {
	border-color: #6CBE45;
	transform: scale(1.03);
}

.bs-price-badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: #6CBE45;
	color: #000;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 16px;
	border-radius: 50px;
}

.bs-price-card h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #fff;
}

.bs-price-amount {
	font-size: 48px;
	font-weight: 800;
	letter-spacing: -2px;
	margin-bottom: 4px;
	color: #fff;
}

.bs-price-amount span {
	font-size: 18px;
	font-weight: 400;
	color: rgba(255,255,255,0.4);
}

.bs-price-desc {
	font-size: 14px;
	color: rgba(255,255,255,0.4);
	margin-bottom: 28px;
}

.bs-price-card .bs-btn-primary {
	width: 100%;
	justify-content: center;
	margin-bottom: 28px;
}

.bs-price-features li {
	font-size: 14px;
	color: rgba(255,255,255,0.7);
	padding: 10px 0 10px 28px;
	position: relative;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bs-price-features li:last-child {
	border-bottom: none;
}

.bs-price-features li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	color: #6CBE45;
	font-weight: 700;
}

.bs-stats {
	padding: 100px 0;
	background: #111111;
	border-top: 1px solid rgba(255,255,255,0.08);
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.bs-stats-number {
	font-size: 52px;
	font-weight: 800;
	letter-spacing: -2px;
	margin-bottom: 8px;
	color: #fff;
}

.bs-stats-label {
	font-size: 14px;
	color: rgba(255,255,255,0.4);
	font-weight: 500;
}

.bs-testimonials {
	padding: 140px 0;
}

.bs-testimonials-header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 72px;
}

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

.bs-testimonial-card {
	background: #141414;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 20px;
	padding: 36px 28px;
	transition: border-color .3s;
}

.bs-testimonial-card:hover {
	border-color: rgba(255,255,255,0.15);
}

.bs-testimonial-stars {
	display: flex;
	gap: 4px;
	margin-bottom: 20px;
}

.bs-testimonial-stars svg {
	width: 16px;
	height: 16px;
	fill: #6CBE45;
}

.bs-testimonial-text {
	font-size: 15px;
	color: rgba(255,255,255,0.7);
	line-height: 1.7;
	margin-bottom: 28px;
}

.bs-testimonial-author {
	display: flex;
	align-items: center;
	gap: 14px;
}

.bs-testimonial-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(108,190,69,0.1);
	border: 1px solid rgba(108,190,69,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
	color: #6CBE45;
	flex-shrink: 0;
}

.bs-testimonial-name {
	font-size: 15px;
	font-weight: 600;
	color: #fff;
}

.bs-testimonial-role {
	font-size: 13px;
	color: rgba(255,255,255,0.4);
}

.bs-blog {
	padding: 140px 0;
	background: #111111;
}

.bs-blog-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 60px;
	flex-wrap: wrap;
	gap: 20px;
}

.bs-blog-header .bs-section-title {
	margin-bottom: 0;
}

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

.bs-blog-card {
	background: #141414;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 20px;
	overflow: hidden;
	transition: border-color 0.3s, transform .3s;
}

.bs-blog-card:hover {
	border-color: #6CBE45;
	transform: translateY(-4px);
}

.bs-blog-image {
	width: 100%;
	aspect-ratio: 16/10;
	background: #1a1a1a;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.4);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.bs-blog-content {
	padding: 28px;
}

.bs-blog-tag {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #6CBE45;
	margin-bottom: 12px;
}

.bs-blog-card h3 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 12px;
	color: #fff;
}

.bs-blog-excerpt {
	font-size: 14px;
	color: rgba(255,255,255,0.4);
	line-height: 1.6;
	margin-bottom: 20px;
}

.bs-blog-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 13px;
	color: rgba(255,255,255,0.4);
}

.bs-cta {
	padding: 140px 0;
	text-align: center;
}

.bs-cta-inner {
	max-width: 640px;
	margin: 0 auto;
}

.bs-cta-desc {
	font-size: 18px;
	color: rgba(255,255,255,0.7);
	line-height: 1.7;
	margin-bottom: 40px;
}

.bs-footer {
	padding: 80px 0 40px;
	border-top: 1px solid rgba(255,255,255,0.08);
}

.bs-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.bs-footer-brand p {
	font-size: 14px;
	color: rgba(255,255,255,0.4);
	line-height: 1.7;
	margin-top: 16px;
	max-width: 280px;
}

.bs-footer-logo {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -.5px;
	color: #fff;
}

.bs-footer-logo span {
	opacity: .4;
	font-weight: 400;
}

.bs-footer-col h4 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
	color: rgba(255,255,255,0.7);
}

.bs-footer-col li {
	margin-bottom: 12px;
}

.bs-footer-col a {
	font-size: 14px;
	color: rgba(255,255,255,0.4);
	transition: color .2s;
}

.bs-footer-col a:hover {
	color: #6CBE45;
}

.bs-footer-social {
	display: flex;
	gap: 16px;
	margin-top: 24px;
}

.bs-footer-social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s;
}

.bs-footer-social a:hover {
	border-color: #6CBE45;
	background: #6CBE45;
}

.bs-footer-social a:hover svg {
	stroke: #000;
}

.bs-footer-social svg {
	width: 16px;
	height: 16px;
	stroke: rgba(255,255,255,0.4);
	fill: none;
}

.bs-footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 32px;
	border-top: 1px solid rgba(255,255,255,0.08);
	flex-wrap: wrap;
	gap: 16px;
}

.bs-footer-bottom p {
	font-size: 13px;
	color: rgba(255,255,255,0.4);
}

.bs-footer-legal {
	display: flex;
	gap: 24px;
}

.bs-footer-legal a {
	font-size: 13px;
	color: rgba(255,255,255,0.4);
	transition: color .2s;
}

.bs-footer-legal a:hover {
	color: #6CBE45;
}

@keyframes bsFadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.bs-animate {
	animation: bsFadeUp .6s ease forwards;
}

@media(max-width:1024px) {
	.bs-container {
		padding: 0 32px;
	}
	
	.bs-services-grid {
		grid-template-columns: repeat(2,1fr);
	}
	
	.bs-pricing-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
	}
	
	.bs-price-card.featured {
		transform: none;
	}
	
	.bs-stats-grid {
		grid-template-columns: repeat(2,1fr);
		gap: 40px;
	}
	
	.bs-testimonials-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.bs-blog-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.bs-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
	
	.bs-about-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	
	.bs-works-grid {
		grid-template-columns: 1fr;
	}
	
	.bs-work-card.featured {
		grid-column: auto;
	}
}

@media(max-width:768px) {
	.bs-container {
		padding: 0 24px;
	}
	
	.bs-about,.bs-works,.bs-services,.bs-pricing,.bs-testimonials,.bs-blog,.bs-cta {
		padding: 80px 0;
	}
	
	.bs-section-title {
		font-size: 28px;
	}
	
	.bs-services-grid {
		grid-template-columns: 1fr;
	}
	
	.bs-stats-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.bs-footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.bs-footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

body.page-id-12 header.wp-block-template-part {
	display: none !important;
}

body.page-id-12 footer.wp-block-template-part {
	display: none !important;
}

body.page-id-12 .entry-title {
	display: none !important;
}

body.page-id-12 .entry-header {
	display: none !important;
}

body.page-id-12 {
	background: #0a0a0a !important;
}

body.page-id-12 .wp-block-post-content {
	max-width: 100% !important;
	padding: 0 !important;
}

body.page-id-12 .is-layout-constrained>:where(:not(.alignleft):not(.alignright):not(.alignfull)) {
	max-width: 100% !important;
}

body.page-id-12 .wp-site-blocks {
	padding-top: 0 !important;
}

/* Green Marquee Tape */
.bs-marquee-tape {
	overflow: hidden;
	background: #6CBE45;
	padding: 18px 0;
	white-space: nowrap;
}

.bs-marquee-track {
	display: inline-flex;
	gap: 0;
	animation: bsMarqueeTape 20s linear infinite;
}

.bs-marquee-track span {
	display: inline-block;
	padding: 0 40px;
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #0a0a0a;
	position: relative;
}

.bs-marquee-track span::after {
	content: "\2666";
	margin-left: 40px;
	opacity: .5;
}

@keyframes bsMarqueeTape {
	0% {
		transform: translateX(0);
	}
	
	100% {
		transform: translateX(-50%);
	}
}

/* Updated CTA section */
.bs-cta .bs-eyebrow {
	color: #6CBE45 !important;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 16px;
}

.bs-cta h2 {
	font-size: clamp(36px, 5vw, 56px) !important;
	margin-bottom: 16px !important;
}

.bs-cta-desc {
	color: rgba(255,255,255,0.6);
	font-size: 18px;
	max-width: 600px;
	margin: 0 auto 32px;
	line-height: 1.6;
}

.bs-cta-form {
	display: flex;
	justify-content: center;
	gap: 12px;
}

/* ===== ABOUT V2 - Scalient-inspired ===== */
/* === ABOUT V2 === */
.bs-about-v2 {
	background: #f5f5f0;
	padding: 120px 0 80px;
}

.bs-about-statement {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 40px;
	margin-bottom: 80px;
	align-items: start;
}

.bs-about-label {
	font-size: 14px;
	color: rgba(0,0,0,0.4);
	letter-spacing: 1px;
	padding-top: 12px;
}

.bs-about-text {
	font-size: clamp(28px, 3.5vw, 42px);
	line-height: 1.4;
	font-weight: 500;
	color: rgba(0,0,0,0.18);
}

.bs-about-text strong {
	font-weight: 700;
}

.bs-aline {
	margin-bottom: 0;
	color: rgba(0,0,0,0.18);
}

.bs-aline strong {
	color: rgba(0,0,0,0.92);
	font-weight: 700;
}

.bs-about-row {
	display: grid;
	grid-template-columns: 1fr 1fr 320px;
	gap: 20px;
	align-items: end;
}

.bs-about-img {
	height: 400px;
	border-radius: 16px;
	background: linear-gradient(135deg, #d0d0cc, #b8b8b4);
	border: 1px solid rgba(0,0,0,0.06);
	overflow: hidden;
}

.bs-about-img:first-child {
	margin-left: -40px;
}

.bs-about-cta-card {
	padding: 40px 32px 40px 0;
	border-top: 1px solid rgba(0,0,0,0.12);
}

.bs-about-cta-card h3 {
	font-size: 24px;
	margin-bottom: 24px;
	color: #0a0a0a;
	line-height: 1.3;
	font-weight: 700;
}

.bs-about-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: #0a0a0a;
	color: #ffffff;
	border-radius: 100px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: background .3s ease;
}

.bs-about-cta-btn:hover {
	background: #6CBE45;
	color: #0a0a0a;
}

.bs-works-v2 {
	background: #f4f5ef;
	padding: 120px 0 80px;
	color: #080c0d;
}

.bs-giant-title {
	font-size: clamp(80px, 12vw, 180px);
	font-weight: 900;
	line-height: .9;
	text-align: center;
	color: rgba(8,12,13,0.12);
	letter-spacing: -4px;
	margin-bottom: 80px;
	position: relative;
}

.bs-title-tile {
	display: inline-block;
	width: clamp(60px, 8vw, 140px);
	height: clamp(50px, 6vw, 110px);
	background: #6CBE45;
	border-radius: 12px;
	vertical-align: middle;
	margin: 0 -4px;
	position: relative;
}

.bs-title-tile::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 28px;
	height: 28px;
	background: #080c0d;
	border-radius: 4px;
}

.bs-title-tile::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 2px;
	z-index: 1;
}

.bs-case-studies {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.bs-case-card {
	margin-bottom: 48px;
}

.bs-case-image {
	width: 100%;
	height: clamp(300px, 40vw, 520px);
	border-radius: 16px;
	background: linear-gradient(135deg, #e8e9e3, #d0d1cb);
	margin-bottom: 20px;
	overflow: hidden;
	transition: transform .4s ease;
}

.bs-case-card:hover .bs-case-image {
	transform: scale(1.01);
}

.bs-case-img-2 {
	background: linear-gradient(135deg, #1a1a1a, #333) !important;
}

.bs-case-img-3 {
	background: linear-gradient(135deg, #d4d8c8, #b8bcac) !important;
}

.bs-case-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 4px;
}

.bs-case-info strong {
	font-size: 18px;
	font-weight: 700;
	margin-right: 16px;
}

.bs-case-info span {
	font-size: 14px;
	color: rgba(8,12,13,0.5);
}

.bs-case-link {
	font-size: 15px;
	font-weight: 600;
	text-decoration: underline !important;
	text-underline-offset: 4px;
	color: #080c0d !important;
	transition: color .2s;
}

.bs-case-link:hover {
	color: #6CBE45 !important;
}

/* ===== TRUST SECTION ===== */
.bs-trust {
	background: #0d1214;
	padding: 80px 0;
	text-align: center;
}

.bs-trust-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: rgba(255,255,255,0.5);
	letter-spacing: 1px;
	margin-bottom: 40px;
}

.bs-trust-dot {
	width: 10px;
	height: 10px;
	background: #6CBE45;
	border-radius: 2px;
	display: inline-block;
}

.bs-trust-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 48px;
	flex-wrap: wrap;
	padding: 0 40px;
}

.bs-trust-logos span {
	font-size: 16px;
	font-weight: 600;
	color: rgba(255,255,255,0.4);
	letter-spacing: .5px;
}

/* ===== SERVICES SPLIT HEADER ===== */
.bs-services-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: end;
	margin-bottom: 60px;
}

.bs-services-title {
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.1;
	font-weight: 700;
	color: rgba(255,255,255,0.7);
	font-style: italic;
}

.bs-services-desc {
	color: rgba(255,255,255,0.5);
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
	.bs-about-statement {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.bs-about-row {
		grid-template-columns: 1fr;
	}
	
	.bs-about-img {
		height: 240px;
	}
	
	.bs-services-split {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.bs-trust-logos {
		gap: 24px;
	}
}
/* === ABOUT SCROLL REVEAL === */
.bs-aline {
  transition: color 0.8s ease;
}
.bs-aline.bs-revealed {
  color: rgba(0,0,0,0.88);
}
.bs-aline.bs-revealed strong {
  color: rgba(0,0,0,1);
}