@charset "utf-8";

/* ============================================================
   B2B API · 자사 폐쇄몰 소개 페이지 전용 스타일
   - content/b2b.php 에서만 add_stylesheet 로 로드된다
   - 모든 선택자는 .b2b_wrap 하위로 스코프한다
     (예외는 아래 #wrap #contents 컨테이너 해제 1블록 — agency.css 선례)
   - 팔레트는 resource/sf/css/agency.css / css/reset.css 실측값
   ============================================================ */

/* 풀블리드 해제 — layout.css 의 #contents(max-width 1280 / padding 0 50 200) 를 푼다.
   이 파일이 로드되는 페이지에만 적용되므로 전역 오염이 없다. */
#wrap #contents {
	max-width: 100%;
	min-height: auto;
	padding: 0;
	width: 100% !important;
	overflow-x: hidden !important;
}

/* 앵커 스무스 스크롤 — 이 페이지가 열렸을 때만 (JS 0줄) */
html:has(.b2b_wrap) {
	scroll-behavior: smooth;
}

/* ── 토큰 ───────────────────────────────────────────────── */
.b2b_wrap {
	--b2b-orange: #FF2B02;
	--b2b-blue: #51AEE5;
	--b2b-blue-deep: #1C7AB3; /* 흰 글자를 올리는 면(버튼·스텝 번호) 전용. #51AEE5 는 흰 글자 대비 2.5:1 이라 못 쓴다 */
	--b2b-light: #f3f8fb;
	--b2b-dark: #2c363c;
	--b2b-ink: #4e5960;
	--b2b-mute: #9da4a8;
	--b2b-line: #e6ecf0;
	--b2b-white: #ffffff;
	--b2b-radius: 20px;
	--b2b-shadow: 7px 7px 10px rgba(0, 0, 0, .05);
	--b2b-shadow-hover: 0 10px 24px rgba(0, 0, 0, .08);
	--b2b-maxw: 1180px;

	/* 섹션별 강조색. S4(폐쇄몰)에서만 블루로 갈아끼운다 */
	--b2b-accent: var(--b2b-orange);
	--b2b-accent-soft: rgba(255, 43, 2, .08);
	--b2b-accent-strong: var(--b2b-orange); /* 흰 글자를 올리는 면. 블루 섹션은 --b2b-blue-deep */

	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: -0.3px;
	color: var(--b2b-ink);
	background: var(--b2b-white);
	word-break: keep-all;
}

.b2b_wrap * {
	box-sizing: border-box;
}

.b2b_wrap img,
.b2b_wrap svg {
	max-width: 100%;
}

.b2b_wrap a {
	color: inherit;
	text-decoration: none;
}

.b2b_wrap a:hover {
	text-decoration: none;
}

.b2b_wrap :focus-visible {
	outline: 2px solid var(--b2b-accent);
	outline-offset: 3px;
	border-radius: 6px;
}

/* ── 섹션 / 컨테이너 ────────────────────────────────────── */
.b2b_section {
	position: relative;
	width: 100%;
	padding: 96px 0;
	background: var(--b2b-white);
}

.b2b_section--light {
	background: var(--b2b-light);
}

.b2b_section--mall {
	--b2b-accent: var(--b2b-blue);
	--b2b-accent-soft: rgba(81, 174, 229, .1);
	--b2b-accent-strong: var(--b2b-blue-deep);
}

.b2b_section--dark {
	background: var(--b2b-dark);
}

.b2b_anchor {
	scroll-margin-top: 90px;
}

.b2b_inner {
	width: 100%;
	max-width: var(--b2b-maxw);
	margin: 0 auto;
	padding: 0 24px;
}

.b2b_inner--narrow {
	max-width: 900px;
}

/* ── 섹션 헤드 ──────────────────────────────────────────── */
.b2b_head {
	margin-bottom: 44px;
}

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

.b2b_head__title {
	margin: 0;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.8px;
	color: var(--b2b-dark);
}

.b2b_head__title em {
	font-style: normal;
	color: var(--b2b-accent);
}

.b2b_head__lead {
	margin: 14px 0 0;
	font-size: 17px;
	line-height: 1.7;
	color: var(--b2b-ink);
}

.b2b_head--center .b2b_head__lead {
	margin-left: auto;
	margin-right: auto;
	max-width: 720px;
}

/* 소형 텍스트라 흰 글자 on 강조색은 AA(4.5:1) 미달.
   강조색 틴트 배경 + dark 글자 + 앞머리 점으로 색 정체성만 남긴다. */
.b2b_pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	padding: 6px 15px;
	border-radius: 999px;
	background: rgba(255, 43, 2, .12);
	color: var(--b2b-dark);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.6;
}

.b2b_pill::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--b2b-orange);
}

.b2b_pill--blue {
	background: rgba(81, 174, 229, .14);
}

.b2b_pill--blue::before {
	background: var(--b2b-blue);
}

/* ── S1. 히어로 ─────────────────────────────────────────── */
.b2b_hero {
	padding: 92px 0 100px;
}

.b2b_hero__head {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.b2b_eyebrow {
	margin: 0 0 18px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--b2b-mute);
}

.b2b_hero__title {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.28;
	letter-spacing: -1.4px;
	color: var(--b2b-dark);
}

.b2b_hero__title em {
	font-style: normal;
	color: var(--b2b-orange);
}

.b2b_hero__lead {
	margin: 22px auto 0;
	max-width: 700px;
	font-size: 17px;
	line-height: 1.75;
	color: var(--b2b-ink);
}

/* 갈래 카드 */
.b2b_branch {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 52px;
}

.b2b_branch__card {
	display: block;
	padding: 34px 32px 30px;
	border: 1px solid var(--b2b-line);
	border-radius: var(--b2b-radius);
	background: var(--b2b-white);
	box-shadow: var(--b2b-shadow);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.b2b_branch__card--blue {
	--b2b-accent: var(--b2b-blue);
	--b2b-accent-soft: rgba(81, 174, 229, .1);
}

.b2b_branch__card:hover,
.b2b_branch__card:focus-visible {
	transform: translateY(-4px);
	box-shadow: var(--b2b-shadow-hover);
	border-color: var(--b2b-accent);
}

.b2b_branch__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-bottom: 20px;
	border-radius: 16px;
	background: var(--b2b-accent-soft);
	color: var(--b2b-accent);
}

.b2b_branch__title {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.6px;
	line-height: 1.4;
	color: var(--b2b-dark);
}

.b2b_branch__sub {
	margin: 6px 0 0;
	font-size: 15px;
	font-weight: 600;
	color: var(--b2b-accent);
}

.b2b_branch__desc {
	margin: 14px 0 0;
	font-size: 15.5px;
	line-height: 1.7;
	color: var(--b2b-ink);
}

.b2b_branch__more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid var(--b2b-line);
	width: 100%;
	font-size: 15px;
	font-weight: 700;
	color: var(--b2b-dark);
}

.b2b_branch__arrow {
	display: inline-block;
	transition: transform .25s ease;
}

.b2b_branch__card:hover .b2b_branch__arrow {
	transform: translateX(5px);
}

/* ── 버튼 ───────────────────────────────────────────────── */
.b2b_actions {
	margin-top: 48px;
	text-align: center;
}

/* a 태그 기본색(.b2b_wrap a{color:inherit})보다 특정도를 높여야
   버튼 글자가 회색으로 떨어지지 않는다 — a.b2b_btn = (0,2,1) */
.b2b_wrap a.b2b_btn {
	color: var(--b2b-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	padding: 17px 38px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.3px;
	line-height: 1.4;
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.b2b_wrap a.b2b_btn--primary {
	background: var(--b2b-orange);
	color: var(--b2b-white);
	box-shadow: 0 6px 16px rgba(255, 43, 2, .22);
}

.b2b_wrap a.b2b_btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(255, 43, 2, .3);
}

.b2b_wrap a.b2b_btn--blue {
	background: var(--b2b-blue-deep);
	color: var(--b2b-white);
	box-shadow: 0 6px 16px rgba(81, 174, 229, .26);
}

.b2b_wrap a.b2b_btn--blue:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(81, 174, 229, .34);
}

.b2b_wrap a.b2b_btn--ghost {
	background: transparent;
	color: var(--b2b-white);
	border-color: rgba(255, 255, 255, .45);
}

.b2b_wrap a.b2b_btn--ghost:hover {
	background: rgba(255, 255, 255, .1);
	border-color: var(--b2b-white);
}

/* ── S2. 비교 표 ────────────────────────────────────────── */
.b2b_table_scroll {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid var(--b2b-line);
	border-radius: var(--b2b-radius);
	background: var(--b2b-white);
	box-shadow: var(--b2b-shadow);
}

.b2b_table {
	width: 100%;
	min-width: 640px;
	border-collapse: collapse;
	font-size: 15.5px;
	line-height: 1.65;
}

/* 시각적으로만 숨긴다 — display:none 이면 스크린리더에서도 사라진다 */
.b2b_table caption {
	display: table-caption;
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.b2b_table__col--head {
	width: 150px;
}

.b2b_table thead th {
	padding: 20px;
	border-bottom: 1px solid var(--b2b-line);
	font-size: 17px;
	font-weight: 700;
	color: var(--b2b-dark);
	text-align: left;
	vertical-align: middle;
	background: var(--b2b-white);
}

.b2b_table thead th:first-child {
	background: var(--b2b-light);
	font-size: 14px;
	color: var(--b2b-mute);
	border-right: 1px solid var(--b2b-line);
}

.b2b_table__th--api {
	box-shadow: inset 0 -3px 0 var(--b2b-orange);
}

.b2b_table__th--mall {
	box-shadow: inset 0 -3px 0 var(--b2b-blue);
}

.b2b_table tbody th {
	padding: 18px 20px;
	background: var(--b2b-light);
	border-right: 1px solid var(--b2b-line);
	border-bottom: 1px solid var(--b2b-line);
	font-size: 14.5px;
	font-weight: 700;
	color: var(--b2b-dark);
	text-align: left;
	vertical-align: top;
	white-space: nowrap;
}

.b2b_table tbody td {
	padding: 18px 20px;
	border-bottom: 1px solid var(--b2b-line);
	color: var(--b2b-ink);
	vertical-align: top;
}

.b2b_table tbody tr:last-child th,
.b2b_table tbody tr:last-child td {
	border-bottom: 0;
}

/* ── 기능 카드 그리드 ───────────────────────────────────── */
.b2b_cards {
	display: grid;
	gap: 20px;
	margin: 0;
	padding: 0;
}

.b2b_cards--3 {
	grid-template-columns: repeat(3, 1fr);
}

.b2b_card {
	padding: 28px;
	border: 1px solid var(--b2b-line);
	border-radius: var(--b2b-radius);
	background: var(--b2b-white);
	box-shadow: var(--b2b-shadow);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.b2b_card:hover {
	transform: translateY(-4px);
	box-shadow: var(--b2b-shadow-hover);
	border-color: var(--b2b-accent);
}

.b2b_card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
	border-radius: 14px;
	background: var(--b2b-accent-soft);
	color: var(--b2b-accent);
}

.b2b_card__icon svg {
	width: 26px;
	height: 26px;
}

.b2b_card__title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: -0.4px;
	color: var(--b2b-dark);
}

.b2b_card__desc {
	margin: 8px 0 0;
	font-size: 15px;
	line-height: 1.7;
	color: var(--b2b-ink);
}

/* ── 블록(스텝퍼·체크리스트 공용 머리) ──────────────────── */
.b2b_block {
	margin-top: 56px;
}

.b2b_block__title {
	margin: 0 0 24px;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.5px;
	color: var(--b2b-dark);
}

.b2b_block__title::before {
	content: "";
	display: inline-block;
	width: 4px;
	height: 16px;
	margin-right: 10px;
	border-radius: 2px;
	background: var(--b2b-accent);
	vertical-align: -2px;
}

/* ── 스텝퍼 ─────────────────────────────────────────────── */
.b2b_steps {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	counter-reset: none;
}

.b2b_steps--5 {
	grid-template-columns: repeat(5, 1fr);
}

.b2b_steps--4 {
	grid-template-columns: repeat(4, 1fr);
}

.b2b_step {
	position: relative;
	padding: 0 14px;
	text-align: center;
}

/* 연결선 — 마지막 단계 뒤에는 그리지 않는다 */
.b2b_step::before {
	content: "";
	position: absolute;
	top: 22px;
	left: 50%;
	width: 100%;
	height: 2px;
	background: var(--b2b-line);
	z-index: 0;
}

.b2b_step:last-child::before {
	display: none;
}

.b2b_step__num {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--b2b-accent-strong);
	color: var(--b2b-white);
	font-size: 17px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 0 0 6px var(--b2b-light);
}

.b2b_section--mall .b2b_step__num {
	box-shadow: 0 0 0 6px var(--b2b-white);
}

.b2b_step__body {
	display: block;
	margin-top: 14px;
}

.b2b_step__title {
	display: block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: -0.4px;
	color: var(--b2b-dark);
}

.b2b_step__desc {
	display: block;
	margin-top: 6px;
	font-size: 14px;
	line-height: 1.65;
	color: var(--b2b-ink);
}

/* ── 체크리스트 ─────────────────────────────────────────── */
.b2b_check {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px 28px;
	margin: 0;
	padding: 0;
}

.b2b_check__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px 20px;
	border: 1px solid var(--b2b-line);
	border-radius: 14px;
	background: var(--b2b-white);
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--b2b-dark);
	font-weight: 500;
}

.b2b_check__mark {
	flex: 0 0 auto;
	margin-top: 2px;
	color: var(--b2b-accent);
}

/* ── S5. 신뢰 요소 ──────────────────────────────────────── */
.b2b_trust {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.b2b_trust__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: var(--b2b-white);
	color: var(--b2b-orange);
	box-shadow: var(--b2b-shadow);
}

.b2b_trust__title {
	margin: 0;
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -0.4px;
	color: var(--b2b-dark);
}

.b2b_trust__desc {
	margin: 10px auto 0;
	max-width: 300px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--b2b-ink);
}

/* ── S6. FAQ ────────────────────────────────────────────── */
.b2b_faq {
	border-top: 1px solid var(--b2b-line);
}

.b2b_faq__item {
	border-bottom: 1px solid var(--b2b-line);
}

.b2b_faq__q {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 4px;
	list-style: none;
	cursor: pointer;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.55;
	letter-spacing: -0.4px;
	color: var(--b2b-dark);
	transition: color .2s ease;
}

.b2b_faq__q::-webkit-details-marker {
	display: none;
}

.b2b_faq__q::after {
	content: "+";
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	line-height: 24px;
	text-align: center;
	font-size: 20px;
	font-weight: 400;
	color: var(--b2b-mute);
	transition: transform .2s ease, color .2s ease;
}

.b2b_faq__item[open] .b2b_faq__q {
	color: var(--b2b-orange);
}

.b2b_faq__item[open] .b2b_faq__q::after {
	content: "−";
	color: var(--b2b-orange);
}

.b2b_faq__q:hover {
	color: var(--b2b-orange);
}

.b2b_faq__a {
	padding: 0 40px 24px 4px;
	font-size: 15.5px;
	line-height: 1.8;
	color: var(--b2b-ink);
}

/* ── S7. CTA 밴드 ───────────────────────────────────────── */
.b2b_cta {
	text-align: center;
}

.b2b_cta__title {
	margin: 0;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -0.8px;
	color: var(--b2b-white);
}

.b2b_cta__lead {
	margin: 16px auto 0;
	max-width: 640px;
	font-size: 16.5px;
	line-height: 1.75;
	color: rgba(255, 255, 255, .72);
}

.b2b_cta__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 34px;
}

.b2b_cta__tel {
	margin: 22px 0 0;
	font-size: 15px;
	color: rgba(255, 255, 255, .72);
}

.b2b_wrap .b2b_cta__tel a {
	color: var(--b2b-white);
	font-weight: 700;
}

.b2b_cta__note {
	margin: 14px 0 0;
	font-size: 13.5px;
	color: rgba(255, 255, 255, .5);
}

/* ============================================================
   반응형 — 태블릿 768~1023
   ============================================================ */
@media (max-width: 1023px) {
	.b2b_section {
		padding: 76px 0;
	}

	.b2b_hero {
		padding: 72px 0 80px;
	}

	.b2b_hero__title {
		font-size: 36px;
		letter-spacing: -1px;
	}

	.b2b_head__title {
		font-size: 24px;
	}

	.b2b_cta__title {
		font-size: 24px;
	}

	.b2b_branch {
		gap: 16px;
		margin-top: 42px;
	}

	.b2b_branch__card {
		padding: 28px 24px 24px;
	}

	.b2b_branch__title {
		font-size: 21px;
	}

	.b2b_cards--3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.b2b_step {
		padding: 0 8px;
	}

	.b2b_step__num {
		width: 36px;
		height: 36px;
		font-size: 15px;
		box-shadow: 0 0 0 5px var(--b2b-light);
	}

	.b2b_section--mall .b2b_step__num {
		box-shadow: 0 0 0 5px var(--b2b-white);
	}

	.b2b_step::before {
		top: 18px;
	}

	.b2b_step__title {
		font-size: 15px;
	}

	.b2b_step__desc {
		font-size: 13px;
	}

	.b2b_trust {
		gap: 20px;
	}
}

/* ============================================================
   반응형 — 모바일 ≤767
   ============================================================ */
@media (max-width: 767px) {
	.b2b_wrap {
		font-size: 15px;
	}

	.b2b_section {
		padding: 56px 0;
	}

	.b2b_inner {
		padding: 0 20px;
	}

	.b2b_hero {
		padding: 52px 0 60px;
	}

	.b2b_eyebrow {
		margin-bottom: 14px;
		font-size: 13px;
	}

	.b2b_hero__title {
		font-size: 28px;
		letter-spacing: -0.8px;
	}

	.b2b_hero__lead {
		margin-top: 18px;
		font-size: 15px;
	}

	.b2b_head {
		margin-bottom: 32px;
	}

	.b2b_head__title {
		font-size: 20px;
	}

	.b2b_head__lead {
		margin-top: 10px;
		font-size: 15px;
	}

	.b2b_branch {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-top: 34px;
	}

	.b2b_branch__title {
		font-size: 20px;
	}

	.b2b_branch__desc {
		font-size: 15px;
	}

	.b2b_cards--3 {
		grid-template-columns: 1fr;
	}

	.b2b_card {
		padding: 24px;
	}

	.b2b_block {
		margin-top: 44px;
	}

	.b2b_block__title {
		margin-bottom: 18px;
		font-size: 18px;
	}

	/* 스텝퍼 — 세로 배치. 번호 원 좌측, 설명 우측, 연결선은 세로선 */
	.b2b_steps--5,
	.b2b_steps--4 {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.b2b_step {
		display: grid;
		grid-template-columns: 44px 1fr;
		gap: 14px;
		padding: 0 0 20px;
		text-align: left;
	}

	.b2b_step:last-child {
		padding-bottom: 0;
	}

	.b2b_step::before {
		top: 44px;
		left: 21px;
		width: 2px;
		height: calc(100% - 44px);
	}

	.b2b_step__num {
		width: 44px;
		height: 44px;
		font-size: 16px;
		box-shadow: none;
	}

	.b2b_section--mall .b2b_step__num {
		box-shadow: none;
	}

	.b2b_step__body {
		margin-top: 9px;
	}

	.b2b_step__title {
		font-size: 16px;
	}

	.b2b_step__desc {
		font-size: 14px;
	}

	.b2b_check {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.b2b_check__item {
		padding: 14px 16px;
		font-size: 15px;
	}

	.b2b_trust {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.b2b_actions {
		margin-top: 36px;
	}

	.b2b_wrap a.b2b_btn {
		width: 100%;
		min-width: 0;
		padding: 16px 24px;
	}

	.b2b_faq__q {
		padding: 18px 2px;
		font-size: 16px;
	}

	.b2b_faq__a {
		padding: 0 30px 20px 2px;
		font-size: 15px;
	}

	.b2b_cta__title {
		font-size: 21px;
	}

	.b2b_cta__lead {
		margin-top: 12px;
		font-size: 15px;
	}

	.b2b_cta__actions {
		flex-direction: column;
		gap: 10px;
		margin-top: 28px;
	}

	.b2b_wrap .b2b_cta__actions a.b2b_btn {
		width: 100%;
	}
}

/* ============================================================
   모션 민감 사용자 — 애니메이션·전환 제거
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
	html:has(.b2b_wrap) {
		scroll-behavior: auto;
	}

	.b2b_wrap *,
	.b2b_wrap *::before,
	.b2b_wrap *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}

	.b2b_wrap [data-aos] {
		opacity: 1 !important;
		transform: none !important;
	}
}
