/* ─── 1. Hero ────────────────────────────────────────── */
.bs-hero {
	position: relative;
	height: 100vh;
	max-height: 1082px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-color: #000;
}

.bs-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.bs-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bs-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: rgba(0, 0, 0, 0.55);
}

.bs-hero__content {
	position: relative;
	z-index: 3;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	max-width: 900px;
	padding: 0 var(--section-padding);
}

.bs-hero__title {
	font-size: clamp(60px, 10vw, 120px);
	font-weight: var(--fw-regular);
	color: var(--text-white);
	letter-spacing: -0.02em;
	line-height: 1;
}

.bs-hero__desc {
	font-size: 24px;
	font-weight: var(--fw-light);
	color: var(--text-white);
	line-height: 1.5;
	max-width: 700px;
}

/* ─── 2. About Brand Solutions ───────────────────────── */
.bs-about {
	padding: var(--section-padding-y) var(--section-padding);
	display: flex;
	justify-content: center;
}

.bs-about__inner {
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.bs-about__title {
	font-size: 48px;
	font-weight: var(--fw-regular);
	color: var(--text-dark);
	line-height: 1.1;
}

.bs-about__desc {
	font-size: 20px;
	font-weight: var(--fw-light);
	color: var(--text-body-gray);
	line-height: 1.6;
	max-width: 900px;
}

/* ─── 3. Services Accordion ──────────────────────────── */
.bs-services {
	background: var(--bg-light);
	padding: var(--section-padding-y) var(--section-padding);
	display: flex;
	flex-direction: column;
	gap: 50px;
	align-items: center;
}

.bs-services__header {
	width: 100%;
}

.bs-services__accordion {
	width: 100%;
}

.bs-service-item {
	border-top: 1px solid var(--text-dark);
}

.bs-service-item:last-child {
	border-bottom: 1px solid var(--text-dark);
}

.bs-service-item__header {
	display: flex;
	gap: 40px;
	align-items: center;
	width: 100%;
	padding: 20px 8px;
	text-align: left;
	cursor: pointer;
	color: var(--text-dark);
	transition: opacity 0.2s;
}

.bs-service-item__header:hover {
	opacity: 0.7;
}

.bs-service-item__number {
	font-size: 16px;
	font-weight: var(--fw-extra-light);
	color: var(--primary-red);
	flex-shrink: 0;
	min-width: 28px;
}

.bs-service-item__title {
	font-size: clamp(36px, 5vw, 70px);
	font-weight: var(--fw-light);
	line-height: 1;
	flex: 1;
}

.bs-service-item__toggle {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: var(--text-dark);
}

.bs-toggle-v {
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.bs-service-item--active .bs-toggle-v {
	transform: scaleY(0);
	opacity: 0;
}

.bs-service-item__body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
	            padding 0.5s cubic-bezier(0.16, 1, 0.3, 1),
	            opacity 0.4s ease;
	padding: 0 8px 0 76px;
	opacity: 0;
}

.bs-service-item--active .bs-service-item__body {
	max-height: 200px;
	padding: 0 8px 30px 76px;
	opacity: 1;
}

.bs-service-item__desc {
	font-size: 16px;
	font-weight: var(--fw-regular);
	max-width: 600px;
	line-height: 1.5;
	color: var(--text-body-gray);
}

/* ─── 4. Featured Work ───────────────────────────────── */
.bs-work {
	padding: var(--section-padding-y) 0;
	display: flex;
	flex-direction: column;
	gap: 49px;
}

.bs-work__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 var(--section-padding);
}

.bs-work__scroll {
	display: flex;
	gap: 22px;
	padding: 0 var(--section-padding);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.bs-work__scroll::-webkit-scrollbar {
	display: none;
}

.bs-work-card {
	flex-shrink: 0;
	width: 580px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	scroll-snap-align: start;
}

.bs-work-card__image {
	height: 400px;
	border-radius: var(--radius);
	overflow: hidden;
}

.bs-work-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bs-work-card__placeholder {
	width: 100%;
	height: 100%;
	background: var(--bg-light);
	border-radius: var(--radius);
}

.bs-work-card__client {
	font-size: 20px;
	font-weight: var(--fw-regular);
}

/* ─── 5. Problems Section ────────────────────────────── */
.bs-problems {
	background: var(--primary-red);
	padding: var(--section-padding-y) 0;
	display: flex;
	flex-direction: column;
	gap: 60px;
	overflow: hidden;
}

.bs-problems__heading {
	font-size: clamp(36px, 5vw, 64px);
	font-weight: var(--fw-light);
	color: var(--text-white);
	line-height: 1.1;
	padding: 0 var(--section-padding);
	max-width: 800px;
}

.bs-problems__scroll {
	display: flex;
	gap: 20px;
	padding: 0 var(--section-padding);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.bs-problems__scroll::-webkit-scrollbar {
	display: none;
}

.bs-problem-card {
	flex-shrink: 0;
	width: 320px;
	background: var(--text-white);
	border-radius: var(--radius);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	scroll-snap-align: start;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
	            box-shadow 0.4s ease;
}

.bs-problem-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.bs-problem-card__icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}

.bs-problem-card__text {
	font-size: 18px;
	font-weight: var(--fw-regular);
	color: var(--text-dark);
	line-height: 1.5;
}

/* ─── 6. CTA — uses shared cta-section partial ──────── */
/* Inherits .cta-section styles from base.css */

/* ─── 7. Client Work ────────────────────────────────── */
.bs-clients {
	padding: var(--section-padding-y) var(--section-padding);
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.bs-clients__list {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.bs-client-card {
	display: flex;
	gap: 40px;
	align-items: stretch;
	background: var(--bg-light);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
	            box-shadow 0.4s ease;
}

.bs-client-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.bs-client-card__content {
	flex: 1;
	padding: 48px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: center;
}

.bs-client-card__company {
	font-size: 36px;
	font-weight: var(--fw-medium);
	color: var(--text-dark);
}

.bs-client-card__desc {
	font-size: 18px;
	font-weight: var(--fw-regular);
	color: var(--text-body-gray);
	line-height: 1.6;
}

.bs-client-card__services {
	font-size: 14px;
	font-weight: var(--fw-medium);
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.bs-client-card__image {
	width: 480px;
	flex-shrink: 0;
	overflow: hidden;
}

.bs-client-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bs-client-card__placeholder {
	width: 100%;
	height: 100%;
	min-height: 300px;
	background: #e0e0e0;
}

/* ─── 8. FAQs ────────────────────────────────────────── */
.bs-faqs {
	padding: var(--section-padding-y) var(--section-padding);
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.bs-faqs__header {
	display: flex;
	align-items: center;
}

.bs-faqs__label {
	font-size: 16px;
	font-weight: var(--fw-medium);
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.bs-faqs__accordion {
	width: 100%;
}

.bs-faq-item {
	border-top: 1px solid #e0e0e0;
}

.bs-faq-item:last-child {
	border-bottom: 1px solid #e0e0e0;
}

.bs-faq-item__header {
	display: flex;
	gap: 24px;
	align-items: center;
	width: 100%;
	padding: 24px 8px;
	text-align: left;
	cursor: pointer;
	color: var(--text-dark);
	transition: opacity 0.2s;
}

.bs-faq-item__header:hover {
	opacity: 0.7;
}

.bs-faq-item__question {
	font-size: 24px;
	font-weight: var(--fw-regular);
	line-height: 1.3;
	flex: 1;
}

.bs-faq-item__toggle {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: var(--text-dark);
}

.bs-faq-toggle-v {
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.bs-faq-item--active .bs-faq-toggle-v {
	transform: scaleY(0);
	opacity: 0;
}

.bs-faq-item__body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
	            padding 0.5s cubic-bezier(0.16, 1, 0.3, 1),
	            opacity 0.4s ease;
	padding: 0 8px 0 8px;
	opacity: 0;
}

.bs-faq-item--active .bs-faq-item__body {
	max-height: 300px;
	padding: 0 8px 30px 8px;
	opacity: 1;
}

.bs-faq-item__answer {
	font-size: 18px;
	font-weight: var(--fw-light);
	color: var(--text-body-gray);
	line-height: 1.6;
	max-width: 800px;
}

/* ─── 9. Also from ID8NXT ───────────────────────────── */
.bs-brands {
	padding: var(--section-padding-y) 0;
	display: flex;
	flex-direction: column;
	gap: 49px;
}

.bs-brands__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 var(--section-padding);
}

.bs-brands__scroll {
	display: flex;
	gap: 80px;
	padding: 0 var(--section-padding);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.bs-brands__scroll::-webkit-scrollbar {
	display: none;
}

/* Reuse .brand-card, .brand-image, etc from home.css — imported via base or home */
/* Local overrides for brand cards used on this page */
.bs-brands .brand-card {
	display: flex;
	gap: 20px;
	align-items: center;
	flex-shrink: 0;
	scroll-snap-align: start;
}

.bs-brands .brand-image {
	width: 703px;
	height: 703px;
	border-radius: var(--radius);
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
	display: flex;
	align-items: flex-start;
	padding: 289px 223px;
}

.bs-brands .brand-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bs-brands .brand-overlay {
	position: absolute;
	inset: 0;
	background: var(--overlay, rgba(220, 31, 62, 0.7));
	border-radius: var(--radius);
}

.bs-brands .brand-logo {
	position: relative;
	z-index: 1;
	max-height: 125px;
	width: auto;
}

.bs-brands .brand-logo-text {
	position: relative;
	z-index: 1;
	font-size: 48px;
	font-weight: var(--fw-bold);
	color: var(--text-white);
}

.bs-brands .brand-content {
	width: 503px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 332px;
}

.bs-brands .brand-description {
	font-size: 20px;
	font-weight: var(--fw-light);
	line-height: 1.5;
}

/* ─── Responsive ─────────────────────────────────────── */

/* 1200px */
@media (max-width: 1200px) {
	.bs-about__title {
		font-size: 40px;
	}
	.bs-about__desc {
		font-size: 18px;
	}
	.bs-brands .brand-image {
		width: 500px;
		height: 500px;
		padding: 200px 120px;
	}
	.bs-brands .brand-content {
		width: 350px;
		gap: 150px;
	}
	.bs-client-card__image {
		width: 360px;
	}
	.bs-client-card__company {
		font-size: 28px;
	}
	.bs-work-card {
		width: 480px;
	}
	.bs-work-card__image {
		height: 340px;
	}
}

/* 1024px */
@media (max-width: 1024px) {
	.bs-hero {
		height: 80vh;
	}
	.bs-brands .brand-card {
		flex-direction: column;
	}
	.bs-brands .brand-image {
		width: 100%;
		max-width: 500px;
		height: 400px;
		padding: 150px 80px;
	}
	.bs-brands .brand-content {
		width: 100%;
		max-width: 500px;
		gap: 40px;
	}
	.bs-brands__scroll {
		gap: 40px;
	}
	.bs-client-card {
		flex-direction: column;
	}
	.bs-client-card__image {
		width: 100%;
		height: 300px;
	}
	.bs-client-card__content {
		padding: 32px;
	}
	.bs-service-item__body {
		padding: 0 8px 0 48px;
	}
	.bs-service-item--active .bs-service-item__body {
		padding: 0 8px 30px 48px;
	}
	.bs-work-card {
		width: 400px;
	}
	.bs-work-card__image {
		height: 280px;
	}
	.bs-problems__heading {
		font-size: 32px;
	}
}

/* 768px */
@media (max-width: 768px) {
	.bs-hero {
		height: 500px;
	}
	.bs-hero__title {
		font-size: 40px;
	}
	.bs-hero__desc {
		font-size: 16px;
	}
	.bs-about {
		padding: 60px 20px;
	}
	.bs-about__title {
		font-size: 28px;
	}
	.bs-about__desc {
		font-size: 16px;
	}
	.bs-services {
		padding: 60px 20px;
		gap: 30px;
	}
	.bs-service-item__header {
		gap: 16px;
		padding: 16px 4px;
	}
	.bs-service-item__title {
		font-size: 24px;
	}
	.bs-service-item__body {
		padding: 0 4px 0 32px;
	}
	.bs-service-item--active .bs-service-item__body {
		padding: 0 4px 20px 32px;
	}
	.bs-service-item__desc {
		font-size: 14px;
	}
	.bs-work {
		padding: 60px 0;
		gap: 30px;
	}
	.bs-work__header {
		flex-direction: column;
		gap: 20px;
		align-items: flex-start;
		padding: 0 20px;
	}
	.bs-work__scroll {
		padding: 0 20px;
	}
	.bs-work-card {
		width: 280px;
	}
	.bs-work-card__image {
		height: 200px;
	}
	.bs-work-card__client {
		font-size: 16px;
	}
	.bs-problems {
		padding: 60px 0;
		gap: 30px;
	}
	.bs-problems__heading {
		font-size: 24px;
		padding: 0 20px;
	}
	.bs-problems__scroll {
		padding: 0 20px;
	}
	.bs-problem-card {
		width: 260px;
		padding: 24px;
	}
	.bs-problem-card__text {
		font-size: 16px;
	}
	.bs-clients {
		padding: 60px 20px;
		gap: 30px;
	}
	.bs-client-card {
		gap: 0;
	}
	.bs-client-card__company {
		font-size: 22px;
	}
	.bs-client-card__desc {
		font-size: 14px;
	}
	.bs-client-card__content {
		padding: 24px;
		gap: 12px;
	}
	.bs-client-card__image {
		height: 220px;
	}
	.bs-faqs {
		padding: 60px 20px;
		gap: 30px;
	}
	.bs-faq-item__header {
		gap: 16px;
		padding: 16px 4px;
	}
	.bs-faq-item__question {
		font-size: 18px;
	}
	.bs-faq-item__answer {
		font-size: 16px;
	}
	.bs-brands {
		padding: 60px 0;
		gap: 30px;
	}
	.bs-brands__header {
		flex-direction: column;
		gap: 20px;
		align-items: flex-start;
		padding: 0 20px;
	}
	.bs-brands__scroll {
		gap: 24px;
		padding: 0 20px;
	}
	.bs-brands .brand-image {
		height: 300px;
		padding: 100px 60px;
	}
	.bs-brands .brand-logo-text {
		font-size: 32px;
	}
	.bs-brands .brand-description {
		font-size: 16px;
	}
}
