/* ─── 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(--font-weight-regular);
	color: var(--text-white);
	letter-spacing: -0.02em;
	line-height: 1;
}

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

.bs-services .section-title,
.bs-work .section-title,
.bs-clients .section-title,
.bs-brands .section-title {
	font-size: 35px;
}

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

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

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

.bs-about__desc {
	font-size: 30px;
	font-weight: var(--font-weight-bold);
	color: var(--text-muted);
	line-height: 1.6;
	max-width: 900px;
}

.bs-about__highlight {
	color: var(--text-muted);
	transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.bs-about.is-visible .bs-about__highlight {
	color: var(--primary-red);
}

/* ─── 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);
	position: relative;
}

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

.bs-service-item__header {
	display: flex;
	gap: 24px;
	align-items: center;
	width: 100%;
	padding: 36px 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__title {
	font-size: 40px;
	font-weight: var(--font-weight-regular);
	line-height: 1;
	flex: 1;
	padding-right: 400px;
}

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

.bs-services__footer {
	display: flex;
	width: 100%;
	justify-content: flex-end;
	padding-top: 32px;
}

.bs-work__footer {
	display: flex;
	justify-content: flex-end;
	padding: 24px var(--section-padding) 0;
}

.bs-service-item__toggle svg {
	transition: transform 0.3s ease;
}

.bs-service-item--active .bs-service-item__toggle svg {
	transform: rotate(180deg);
}

.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 420px 30px 76px;
	opacity: 1;
}

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

/* Floating image — absolutely positioned on .bs-service-item, same as homepage */
.bs-service-item__img-float {
	position: absolute;
	right: -40px;
	top: 50%;
	width: 360px;
	height: 280px;
	transform: translateY(-50%) rotate(var(--rotate, -5deg)) scale(0.9);
	border-radius: var(--radius);
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 2;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.bs-service-item--active .bs-service-item__img-float {
	opacity: 1;
	transform: translateY(-50%) rotate(var(--rotate, -5deg)) scale(1);
}

.bs-service-item__img-float img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

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

/* Strip: flex row, overflow hidden clips cards */
.bs-work__strip {
	display: flex;
	gap: 10px;
	overflow: hidden;
	padding: 0 var(--section-padding);
}

/* ── Card base ── */
.bs-work-card {
	position: relative;
	flex: 0 0 110px;          /* inactive narrow width */
	height: 640px;
	border-radius: 6px;
	overflow: hidden;
	cursor: pointer;
	background: none;
	/* flex-grow transition drives the expand — eased out, no overshoot */
	transition: flex-grow 1.1s cubic-bezier(0.4, 0, 0.2, 1),
	            flex-basis 1.1s cubic-bezier(0.4, 0, 0.2, 1),
	            border-radius 1.1s cubic-bezier(0.4, 0, 0.2, 1);
	flex-grow: 0;
}

/* Active card: grow to fill remaining space */
.bs-work-card--active {
	flex-grow: 1;
	flex-basis: 240px;
	border-radius: 20px;
}

/* ── Placeholder behind image ── */
.bs-work-card__placeholder {
	position: absolute;
	inset: 0;
	background: #1a1a1a;
	z-index: 0;
}

/* ── Image: fills card fully, object-position drives the parallax ── */
.bs-work-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	z-index: 1;
	will-change: object-position;
	/* shift which part of the image shows — inactive sees the left edge, active sees centre */
	object-position: 30% center;
	transition: object-position 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active card: show the centre of the image */
.bs-work-card--active .bs-work-card__img {
	object-position: 50% center;
}

/* ── Grain noise overlay (z-index above image, below text) ── */
.bs-work-card::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
	border-radius: inherit;
	opacity: 0.18;
	pointer-events: none;
	/* SVG-based grain: tiny turbulence tile */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
	background-size: 180px 180px;
	animation: grain-shift 0.8s steps(2) infinite;
}

@keyframes grain-shift {
	0%   { background-position: 0 0; }
	25%  { background-position: -30px 15px; }
	50%  { background-position: 20px -10px; }
	75%  { background-position: -15px -25px; }
	100% { background-position: 0 0; }
}

/* ── Dim scrim on inactive cards (above image, below grain) ── */
.bs-work-card:not(.bs-work-card--active) .bs-work-card__img {
	filter: brightness(0.55);
}

/* Hover hint on inactive: slightly brighten */
.bs-work-card:not(.bs-work-card--active):hover .bs-work-card__img {
	filter: brightness(0.7);
	object-position: 40% center;
}

/* ── Gradient scrim on active card bottom ── */
.bs-work-card--active::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(
		to bottom,
		transparent 35%,
		rgba(0, 0, 0, 0.72) 100%
	);
	pointer-events: none;
	z-index: 3;
}

/* ── Overlay info — hidden by default ── */
.bs-work-card__info {
	position: absolute;
	z-index: 4;
	color: #fff;
	opacity: 0;
	transition: opacity 0.25s ease 0s;
	pointer-events: none;
}

.bs-work-card--active .bs-work-card__info {
	opacity: 1;
	pointer-events: auto;
	transition: opacity 0.35s ease 0.6s; /* delay until expand finishes */
}

/* Info positions */
.bs-work-card__info--top-left {
	top: 24px;
	left: 24px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.12em;
}

.bs-work-card__info--bottom {
	bottom: 28px;
	left: 28px;
	right: 28px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
}

.bs-work-card__title {
	font-size: 26px;
	font-weight: var(--font-weight-regular);
	line-height: 1.2;
	color: #fff;
}

.bs-work-card__btn {
	display: inline-flex;
	align-items: center;
	border: 1.5px solid rgba(255,255,255,0.85);
	color: #fff;
	border-radius: 40px;
	padding: 10px 24px;
	font-size: 15px;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.bs-work-card__btn:hover {
	background: #fff;
	color: #000;
}

/* ─── 5. Problems Section ────────────────────────────── */
/* Replicated from Figma node 2395-10758. Pin-scroll pattern: the outer
   section is a tall wrapper; the `.bs-problems__pin` child is sticky-pinned
   to the viewport, so visually the section freezes in place while the user
   page-scrolls. JS maps that page-scroll progress onto the inner card track's
   scrollTop, so the cards scroll internally until they're exhausted — only
   then does the page unpin and the next section come into view. */
.bs-problems {
	background: #171717;
	/* total height = one viewport + the inner track's scroll range. JS sizes
	   this dynamically once it knows the track's scrollHeight; this is the
	   fallback before JS runs. */
	height: 230vh;
	position: relative;
}

/* The pin frame is one-viewport tall and gets JS-driven `position: fixed`
   while the user is mid-section. Before/after the pin window it falls back
   to absolute positioning at the top/bottom of the wrapper, so layout is
   stable even with no JS. We can't use CSS `position: sticky` here because
   the site sets `overflow-x: hidden` on html/body, which kills sticky. */
.bs-problems__pin {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #171717;
}

.bs-problems__pin.is-pinned {
	position: fixed;
	top: 0;
}

.bs-problems__pin.is-at-end {
	position: absolute;
	top: auto;
	bottom: 0;
}

.bs-problems__inner {
	display: grid;
	grid-template-columns: minmax(280px, 444px) minmax(0, 1fr);
	gap: 112px;
	padding: 0 100px;
	align-items: start;
	max-width: 1920px;
	margin: 0 auto;
	width: 100%;
}

.bs-problems__heading-wrap {
	display: flex;
	align-items: flex-start;
	min-height: 730px;
}

.bs-problems__heading {
	font-family: var(--font-family);
	font-size: 48px;
	font-weight: var(--font-weight-bold);
	color: var(--text-white);
	line-height: 1.214; /* matches Figma 58.272 / 48 */
	letter-spacing: 0;
	max-width: 444px;
}

/* Fixed 730px-tall viewport. Cards inside overflow vertically; their scrollTop
   is driven by page-scroll progress (see the JS). Scrollbar hidden because
   the user is driving it via the page wheel, not by interacting with the
   inner element. */
.bs-problems__track {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 41px;
	row-gap: 0;
	align-items: start;
	height: 730px;
	overflow: hidden;
	pointer-events: auto;
}

.bs-problem-card {
	max-width: 542px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 25px;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
	margin-bottom: 160px;
}

.bs-problem-card:last-child {
	margin-bottom: 0;
}

.bs-problem-card.is-revealed {
	opacity: 1;
	transform: translateY(0);
}

/* Cards on the left column start at column 1; right cards at column 2. */
.bs-problem-card--left  { grid-column: 1; }
.bs-problem-card--right { grid-column: 2; }

/* Right-column cards land lower than their left-column siblings, matching
   the Figma rhythm where right cards are pulled down ~280px. */
.bs-problem-card--right {
	margin-top: 280px;
}

.bs-problem-card__heading {
	font-family: var(--font-family);
	font-size: 36px;
	font-weight: var(--font-weight-bold);
	color: var(--text-white);
	line-height: 1.214;
	letter-spacing: 0;
}

.bs-problem-card__sub {
	font-family: var(--font-family);
	font-size: 20px;
	font-weight: var(--font-weight-regular);
	color: var(--text-white);
	line-height: 1.214;
	letter-spacing: 0;
}

.bs-problem-card__btn {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 24px;
	min-width: 176px;
	min-height: 44px;
	border: 2px solid var(--text-white);
	color: var(--text-white);
	background: transparent;
	font-family: var(--font-family);
	font-size: 20px;
	font-weight: var(--font-weight-regular);
	line-height: 1.214;
	letter-spacing: 0;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.bs-problem-card__btn:hover {
	background: var(--text-white);
	color: #171717;
}

/* ─── 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: 40px;
}

.bs-clients__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.bs-clients__counter {
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	color: var(--text-muted);
	letter-spacing: 0.05em;
}

.bs-clients__stage {
	position: relative;
	height: 560px;
	overflow: hidden;
	border-radius: var(--radius);
}

.bs-clients .bs-client-card {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	background: #1e1e1e;
	border-radius: var(--radius);
	overflow: hidden;
	width: 100%;
	/* resting state: below, invisible, slightly scaled down */
	opacity: 0;
	transform: translateY(80px) scale(0.96);
	filter: blur(4px);
	transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
	            filter 0.65s cubic-bezier(0.16, 1, 0.3, 1);
	pointer-events: none;
	z-index: 1;
}

.bs-clients .bs-client-card.bs-client-card--active {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: blur(0);
	pointer-events: auto;
	z-index: 2;
}

/* exit: fly up and out */
.bs-clients .bs-client-card.bs-client-card--exit {
	opacity: 0;
	transform: translateY(-80px) scale(0.96);
	filter: blur(4px);
	transition: opacity 0.5s cubic-bezier(0.4, 0, 1, 1),
	            transform 0.5s cubic-bezier(0.4, 0, 1, 1),
	            filter 0.5s cubic-bezier(0.4, 0, 1, 1);
	z-index: 1;
	pointer-events: none;
}

.bs-client-card__left {
	width: 500px;
	flex-shrink: 0;
	padding: 72px 60px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
}

.bs-client-card__company {
	font-size: 32px;
	font-weight: var(--font-weight-bold);
	color: var(--text-white);
	line-height: 1.1;
}

.bs-client-card__desc {
	font-size: 15px;
	font-weight: var(--font-weight-light);
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.6;
}

.bs-client-card__image {
	flex: 1;
	overflow: hidden;
}

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

.bs-client-card__placeholder {
	width: 100%;
	height: 100%;
	background: #2a2a2a;
}

.bs-client-card__right {
	width: 400px;
	flex-shrink: 0;
	padding: 72px 52px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	gap: 40px;
}

.bs-client-card__right .btn-underline {
	margin-top: auto;
	color: var(--text-white);
	border-bottom-color: var(--text-white);
	align-self: flex-start;
	padding: 0 0 4px 0;
}

.bs-client-card__meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 28px;
}

.bs-client-card__meta:last-of-type {
	margin-bottom: 0;
}

.bs-client-card__meta-label {
	font-size: 11px;
	font-weight: var(--font-weight-regular);
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 6px;
}

.bs-client-card__meta-value {
	font-size: 15px;
	font-weight: var(--font-weight-regular);
	color: var(--text-white);
	line-height: 1.5;
}

/* ─── 8. FAQs ────────────────────────────────────────── */
.bs-faqs {
	padding: var(--section-padding-y) var(--section-padding);
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 0 80px;
	align-items: start;
}

.bs-faqs__label {
	font-size: 35px;
	font-weight: var(--font-weight-regular);
	color: var(--text-dark);
	padding-top: 28px;
}

.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: 28px 0;
	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(--font-weight-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;
}

.bs-faq-item__toggle svg,
.bs-faq-item__toggle img {
	transition: transform 0.3s ease;
}

.bs-faq-item--active .bs-faq-item__toggle svg,
.bs-faq-item--active .bs-faq-item__toggle img {
	transform: rotate(180deg);
}

.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;
	opacity: 0;
}

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

.bs-faq-item__answer {
	font-size: 18px;
	font-weight: var(--font-weight-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(--font-weight-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(--font-weight-light);
	line-height: 1.5;
}

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

/* 1440px — shrink problems heading + padding so 2-col card track fits */
@media (max-width: 1440px) {
	.bs-problems__inner {
		grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
		gap: 80px;
		padding: 0 70px;
	}
	.bs-problems__heading {
		font-size: 40px;
		max-width: 360px;
	}
	.bs-problems__track {
		column-gap: 32px;
	}
	.bs-problem-card__heading {
		font-size: 30px;
	}
	.bs-problem-card__sub {
		font-size: 18px;
	}
	.bs-problem-card--right {
		margin-top: 220px;
	}
	.bs-problem-card {
		margin-bottom: 120px;
	}
}

/* 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__company {
		font-size: 26px;
	}
	.bs-work-card {
		height: 500px;
	}
}

/* 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-service-item__body {
		padding: 0 8px 0 48px;
	}
	.bs-service-item--active .bs-service-item__body {
		padding: 0 8px 30px 48px;
	}
	.bs-service-item__img-float {
		display: none;
	}
	.bs-work-card {
		height: 440px;
	}
	.bs-problems {
		height: 220vh;
	}
	.bs-problems__inner {
		grid-template-columns: 320px 1fr;
		column-gap: 60px;
		padding: 0 60px;
	}
	.bs-problems__heading-wrap {
		min-height: 620px;
	}
	.bs-problems__heading {
		font-size: 36px;
	}
	.bs-problems__track {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		column-gap: 24px;
		height: 620px;
	}
	.bs-problem-card {
		width: 100%;
		margin-bottom: 100px;
	}
	.bs-problem-card--right {
		margin-top: 200px;
	}
	.bs-problem-card__heading {
		font-size: 28px;
	}
	.bs-problem-card__sub {
		font-size: 18px;
	}
}

/* 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: 24px;
	}
	.bs-work__header {
		padding: 0 20px;
	}
	.bs-work__strip {
		padding: 0 20px;
		gap: 6px;
	}
	.bs-work-card {
		flex: 0 0 50px;
		height: 380px;
		border-radius: 14px;
	}
	.bs-work-card--active {
		flex: 1 0 180px;
	}
	.bs-work-card__info--bottom {
		bottom: 16px;
		left: 16px;
		right: 16px;
		gap: 10px;
	}
	.bs-work-card__info--top-left {
		top: 16px;
		left: 16px;
		font-size: 11px;
	}
	.bs-work-card__info--top-right {
		top: 16px;
		right: 16px;
		font-size: 11px;
	}
	.bs-work-card__title {
		font-size: 18px;
	}
	.bs-work-card__btn {
		font-size: 13px;
		padding: 7px 16px;
	}
	/* Mobile: drop the pin entirely — cards stack naturally and the page
	   scrolls through them. Pinning on a small viewport is disorienting. */
	.bs-problems {
		height: auto;
		padding: 60px 0 120px;
	}
	.bs-problems__pin {
		position: static;
		height: auto;
		overflow: visible;
		display: block;
	}
	.bs-problems__inner {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 0 20px;
	}
	.bs-problems__heading-wrap {
		min-height: 0;
	}
	.bs-problems__heading {
		font-size: 28px;
		max-width: none;
	}
	.bs-problems__track {
		grid-template-columns: 1fr;
		row-gap: 40px;
		height: auto;
		overflow: visible;
	}
	.bs-problem-card {
		width: 100%;
		grid-column: 1 !important;
		margin-top: 0 !important;
		margin-bottom: 40px;
	}
	.bs-problem-card__heading {
		font-size: 22px;
	}
	.bs-problem-card__sub {
		font-size: 16px;
	}
	.bs-problem-card__btn {
		font-size: 16px;
		min-width: 0;
		padding: 8px 18px;
	}
	.bs-clients {
		padding: 60px 20px;
		gap: 24px;
	}
	.bs-clients__stage {
		height: auto;
		min-height: 480px;
	}
	.bs-clients .bs-client-card {
		flex-direction: column;
	}
	.bs-client-card__right {
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		flex-direction: row;
		flex-wrap: wrap;
		gap: 20px;
		padding: 24px;
		width: 100%;
	}
	.bs-client-card__left {
		padding: 28px;
		gap: 16px;
		width: 100%;
	}
	.bs-client-card__company {
		font-size: 22px;
	}
	.bs-client-card__desc {
		font-size: 14px;
	}
	.bs-faqs {
		padding: 60px 20px;
		grid-template-columns: 1fr;
		gap: 24px 0;
	}
	.bs-faq-item__header {
		gap: 16px;
		padding: 20px 0;
	}
	.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;
	}
}

/* ─── Responsive: 1680px+ ────────────────────────── */
@media (min-width: 1680px) {
	.bs-hero__content {
		max-width: 1100px;
		gap: 48px;
	}
	.bs-hero__desc {
		font-size: 34px;
		max-width: 820px;
	}
	.bs-about__inner {
		max-width: 1440px;
	}
	.bs-services .section-title,
	.bs-work .section-title,
	.bs-clients .section-title,
	.bs-brands .section-title {
		font-size: 42px;
	}
}

/* ─── Responsive: 1920px+ ────────────────────────── */
@media (min-width: 1920px) {
	.bs-hero__content {
		max-width: 1280px;
	}
	.bs-hero__desc {
		font-size: 38px;
		max-width: 940px;
	}
	.bs-about__inner {
		max-width: 1640px;
	}
	.bs-services .section-title,
	.bs-work .section-title,
	.bs-clients .section-title,
	.bs-brands .section-title {
		font-size: 48px;
	}
}

/* ─── Responsive: 2400px+ ────────────────────────── */
@media (min-width: 2400px) {
	.bs-hero__content {
		max-width: 1440px;
	}
	.bs-hero__desc {
		font-size: 44px;
		max-width: 1080px;
	}
	.bs-about,
	.bs-services,
	.bs-work,
	.bs-clients,
	.bs-brands {
		max-width: var(--max-width, 2160px);
		margin-inline: auto;
	}
	.bs-about__inner {
		max-width: 1840px;
	}
	.bs-services .section-title,
	.bs-work .section-title,
	.bs-clients .section-title,
	.bs-brands .section-title {
		font-size: 54px;
	}
}
