:root {
	--wb-bg: #fbf7f6;
	--wb-surface: #ffffff;
	--wb-surface-2: #fff0ee;
	--wb-text: #1b1b1d;
	--wb-muted: #66676d;
	--wb-primary: #c8322b;
	--wb-primary-dark: #8f1d18;
	--wb-accent: #2c2c2f;
	--wb-line: rgba(55, 30, 28, 0.12);
	--wb-shadow: 0 18px 46px rgba(60, 24, 20, 0.14);
	--wb-soft-shadow: 0 10px 26px rgba(60, 24, 20, 0.08);
	--wb-radius: 8px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

#contact-form {
	scroll-margin-top: 92px;
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 15px;
	color: var(--wb-text);
	background: var(--wb-bg);
	line-height: 1.55;
}

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

img {
	max-width: 100%;
	height: auto;
}

.screen-reader-text {
	position: absolute;
	left: -9999px;
}

.wb-container {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.wb-header {
	position: sticky;
	top: 0;
	z-index: 300;
	background: rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--wb-line);
}

.wb-nav {
	min-height: 70px;
	display: flex;
	align-items: center;
	gap: 24px;
}

.wb-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 1.2rem;
}

.wb-logo img {
	display: block;
	width: auto;
	height: 46px;
	max-width: 245px;
	object-fit: contain;
}

.wb-mega-list>li>a,
.wb-nav-cta {
	font-family: "Arial Black", "Segoe UI", system-ui, sans-serif;
	letter-spacing: 0;
}

.wb-footer-logo {
	width: fit-content;
	padding: 8px 12px;
	border-radius: 14px;
	background: #fff;
}

.wb-footer-logo img {
	height: 54px;
	max-width: 290px;
	filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .22));
}

.wb-logo-icon {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: var(--wb-radius);
	color: #fff;
	background: linear-gradient(135deg, var(--wb-primary), var(--wb-accent));
	box-shadow: 0 12px 26px rgba(200, 50, 43, 0.25);
}

.wb-menu {
	margin-left: auto;
}

.wb-mobile-menu-head,
.wb-menu-backdrop {
	display: none;
}

.wb-menu-list {
	display: flex;
	align-items: center;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wb-menu-list li {
	position: relative;
}

.wb-menu-list a {
	color: var(--wb-muted);
	font-weight: 600;
	transition: color .2s ease;
}

.wb-menu-list a:hover {
	color: var(--wb-primary);
}

.wb-menu-list .menu-item-has-children>a::after {
	content: "▾";
	display: inline-block;
	margin-left: 6px;
	font-size: .72em;
}

.wb-menu-list .sub-menu {
	position: absolute;
	top: calc(100% + 14px);
	left: 50%;
	display: grid;
	grid-template-columns: repeat(2, minmax(180px, 1fr));
	gap: 4px;
	min-width: 420px;
	max-height: min(70vh, 620px);
	overflow: auto;
	margin: 0;
	padding: 14px;
	list-style: none;
	border: 1px solid var(--wb-line);
	border-radius: 14px;
	background: rgba(255, 255, 255, .98);
	box-shadow: var(--wb-shadow);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 8px);
	transition: opacity .2s ease, transform .2s ease;
}

.wb-menu-list .menu-item-has-children:hover>.sub-menu,
.wb-menu-list .menu-item-has-children:focus-within>.sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.wb-menu-list .sub-menu a {
	display: block;
	padding: 10px 12px;
	border-radius: var(--wb-radius);
	color: var(--wb-text);
	white-space: nowrap;
}

.wb-menu-list .sub-menu a:hover {
	background: #fff0ee;
}

.wb-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 0;
	background: var(--wb-surface-2);
	border-radius: var(--wb-radius);
}

.wb-menu-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	background: var(--wb-text);
}

.wb-btn {
	position: relative;
	isolation: isolate;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px;
	border: 0;
	border-radius: var(--wb-radius);
	font-weight: 800;
	cursor: pointer;
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.wb-btn::after {
	content: "";
	position: absolute;
	inset: auto auto 50% 50%;
	width: 0;
	height: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.28);
	transform: translate(-50%, 50%);
	z-index: -1;
	transition: width .35s ease, height .35s ease;
}

.wb-btn:hover {
	transform: translateY(-2px);
}

.wb-btn:hover::after {
	width: 240px;
	height: 240px;
}

.wb-btn-primary {
	color: #fff;
	background: linear-gradient(135deg, var(--wb-primary), var(--wb-primary-dark));
	box-shadow: 0 16px 34px rgba(200, 50, 43, .28);
}

.wb-btn-secondary {
	background: #fff0ee;
	color: var(--wb-primary-dark);
}

.wb-btn-light {
	background: #fff;
	color: var(--wb-primary-dark);
}

.wb-nav-cta {
	min-height: 42px;
	min-width: 150px;
	justify-content: center;
	padding: 0 38px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--wb-primary), #2c2c2f);
	box-shadow: 0 14px 28px rgba(200, 50, 43, .22);
	white-space: nowrap;
}

.wb-nav-cta:hover {
	box-shadow: 0 18px 36px rgba(44, 44, 47, .22);
}

.wb-hero,
.wb-page-hero {
	position: relative;
	overflow: hidden;
	padding: 72px 0 68px;
	background:
		radial-gradient(circle at 82% 18%, rgba(200, 50, 43, .18), transparent 30%),
		radial-gradient(circle at 8% 85%, rgba(44, 44, 47, .08), transparent 28%),
		linear-gradient(135deg, #ffffff 0%, #fff5f3 52%, #f4eeee 100%);
}

.wb-hero {
	min-height: calc(100vh - 76px);
	display: flex;
	align-items: center;
	padding: clamp(40px, 5vh, 58px) 0;
}

.admin-bar .wb-hero {
	min-height: calc(100vh - 108px);
}

.wb-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(200, 50, 43, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(200, 50, 43, .045) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, .45), transparent 72%);
	pointer-events: none;
}

.wb-hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, .96fr) minmax(390px, .94fr);
	gap: clamp(34px, 5vw, 64px);
	align-items: center;
}

.wb-hero-copy {
	position: relative;
	z-index: 1;
	padding: 10px 0;
}

.wb-kicker {
	margin: 0 0 10px;
	color: var(--wb-primary);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .02em;
	font-size: .72rem;
}

h1,
h2,
h3 {
	line-height: 1.08;
	letter-spacing: 0;
	margin: 0;
}

h1 {
	font-size: clamp(2.35rem, 4.5vw, 4.35rem);
	max-width: 820px;
}

.wb-hero h1 {
	max-width: 800px;
	font-size: clamp(2.75rem, 4.45vw, 4.75rem);
	line-height: 1;
}

h2 {
	font-size: clamp(1.45rem, 2.45vw, 2.45rem);
}

h3 {
	font-size: 1.06rem;
}

.wb-hero p,
.wb-page-hero p {
	max-width: 640px;
	color: var(--wb-muted);
	font-size: 1rem;
}

.wb-hero p {
	max-width: 620px;
	margin: 16px 0 0;
}

.wb-hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.wb-hero-badges span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid rgba(200, 50, 43, .16);
	border-radius: 999px;
	background: rgba(255, 255, 255, .86);
	color: var(--wb-primary-dark);
	box-shadow: 0 14px 34px rgba(93, 33, 29, .08);
	font-size: .82rem;
	font-weight: 900;
}

.wb-hero-badges .wb-svg-icon {
	width: 16px;
	height: 16px;
	color: var(--wb-primary);
}

.wb-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 24px;
}

.wb-hero-trust {
	display: none;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}

.wb-hero-trust span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 11px;
	border: 1px solid rgba(200, 50, 43, .12);
	border-radius: 999px;
	background: rgba(255, 255, 255, .78);
	color: var(--wb-text);
	box-shadow: var(--wb-soft-shadow);
	font-size: .8rem;
	font-weight: 800;
}

.wb-hero-trust .wb-svg-icon {
	width: 18px;
	height: 18px;
	color: var(--wb-primary);
}

.wb-hero-visual {
	position: relative;
	min-height: clamp(360px, 43vh, 460px);
	border-radius: 24px;
	background: linear-gradient(150deg, #1c1c1f, #c8322b 55%, #2c2c2f);
	box-shadow: var(--wb-shadow);
	overflow: hidden;
}

.wb-hero-mini-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	max-width: 560px;
	margin-top: 18px;
}

.wb-hero-mini-grid span {
	display: grid;
	gap: 2px;
	min-height: 72px;
	padding: 14px;
	border: 1px solid rgba(200, 50, 43, .12);
	border-radius: 16px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 246, 244, .82));
	box-shadow: 0 18px 42px rgba(69, 22, 18, .08);
	color: var(--wb-muted);
	font-size: .76rem;
	font-weight: 800;
	text-transform: uppercase;
}

.wb-hero-mini-grid strong {
	color: var(--wb-text);
	font-size: 1.2rem;
	line-height: 1;
}

.wb-hero-visual::before {
	content: "";
	position: absolute;
	inset: 14px;
	z-index: 1;
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 18px;
	pointer-events: none;
}

.wb-photo-hero img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wb-photo-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(28, 28, 31, .25), rgba(200, 50, 43, .28)),
		linear-gradient(0deg, rgba(0, 0, 0, .08), rgba(255, 255, 255, .08));
}

.wb-photo-hero>*:not(img) {
	z-index: 1;
}

.wb-dashboard-card {
	position: absolute;
	left: 28px;
	right: 28px;
	bottom: 28px;
	top: auto;
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, .34);
	border-radius: 18px;
	background: rgba(255, 255, 255, .9);
	backdrop-filter: blur(14px);
	box-shadow: 0 26px 54px rgba(0, 0, 0, .2);
}

.wb-dashboard-card span {
	color: var(--wb-muted);
	font-weight: 700;
}

.wb-dashboard-card strong {
	display: block;
	font-size: clamp(1.65rem, 2.7vw, 2.35rem);
	line-height: 1;
	margin: 9px 0 14px;
}

.wb-progress {
	height: 10px;
	border-radius: 999px;
	overflow: hidden;
	background: #ead8d6;
}

.wb-progress i {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--wb-primary), var(--wb-accent));
}

.wb-float-card {
	position: absolute;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .92);
	font-weight: 800;
	box-shadow: var(--wb-shadow);
	backdrop-filter: blur(12px);
}

.wb-float-card .wb-svg-icon {
	width: 18px;
	height: 18px;
	color: var(--wb-primary);
}

.wb-float-card.one {
	left: 24px;
	top: 24px;
}

.wb-float-card.two {
	right: 24px;
	top: 76px;
}

.wb-hero-proof {
	position: absolute;
	z-index: 2;
	left: 24px;
	top: 88px;
	display: grid;
	gap: 2px;
	padding: 13px 16px;
	border-radius: 16px;
	color: #fff;
	background: rgba(28, 28, 31, .78);
	backdrop-filter: blur(12px);
	box-shadow: 0 18px 34px rgba(0, 0, 0, .24);
}

.wb-hero-proof strong {
	font-size: 1.25rem;
	line-height: 1;
}

.wb-hero-proof span {
	color: rgba(255, 255, 255, .78);
	font-size: .78rem;
	font-weight: 800;
}

.wb-section {
	padding: 52px 0;
}

.wb-soft {
	background: #fff;
}

.wb-split {
	display: grid;
	grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
	gap: 42px;
	align-items: center;
}

.wb-checks {
	display: grid;
	gap: 12px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.wb-checks li {
	position: relative;
	padding-left: 32px;
	font-weight: 700;
}

.wb-checks li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--wb-accent);
}

.wb-stats {
	padding: 22px 0;
	background: #1c1c1f;
}

.wb-stat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.wb-stat-card {
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 10px;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	text-align: center;
}

.wb-stat-card strong {
	display: block;
	font-size: 1.95rem;
	line-height: 1;
}

.wb-stat-card span {
	color: rgba(255, 255, 255, .72);
	font-weight: 700;
}

.wb-outcome-strip .wb-stat-card {
	text-align: left;
}

.wb-outcome-strip .wb-stat-card strong {
	font-size: 1.25rem;
	letter-spacing: 0;
}

.wb-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.wb-section-head>p {
	max-width: 520px;
	font-size: .96rem;
	color: var(--wb-muted);
}

.wb-page-summary {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
	gap: 34px;
	align-items: center;
}

.wb-page-summary p {
	color: var(--wb-muted);
	max-width: 680px;
}

.wb-summary-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.wb-summary-cards span {
	display: grid;
	gap: 10px;
	min-height: 104px;
	padding: 16px;
	border: 1px solid rgba(200, 50, 43, .12);
	border-radius: 14px;
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(135deg, rgba(200, 50, 43, .22), rgba(44, 44, 47, .16)) border-box;
	box-shadow: var(--wb-soft-shadow);
	color: var(--wb-text);
	font-weight: 900;
}

.wb-summary-cards .wb-svg-icon {
	width: 26px;
	height: 26px;
	padding: 5px;
	border-radius: 8px;
	color: #fff;
	background: linear-gradient(135deg, var(--wb-primary), var(--wb-accent));
	box-sizing: content-box;
}

.wb-card-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.wb-service-card,
.wb-sidebar-card,
.wb-page-content,
.webbrix-form,
.wb-testimonials blockquote {
	border: 1px solid var(--wb-line);
	border-radius: 14px;
	background: var(--wb-surface);
	box-shadow: var(--wb-soft-shadow);
}

.wb-service-card {
	position: relative;
	overflow: hidden;
	padding: 22px;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.wb-service-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(200, 50, 43, .06), rgba(44, 44, 47, .05));
	opacity: 0;
	transition: opacity .2s ease;
}

.wb-service-card>* {
	position: relative;
}

.wb-service-card:hover {
	transform: translateY(-4px);
	border-color: rgba(200, 50, 43, .22);
	box-shadow: var(--wb-shadow);
}

.wb-service-card:hover::before {
	opacity: 1;
}

.wb-service-card p,
.wb-sidebar-card p,
.wb-page-content p {
	color: var(--wb-muted);
	font-size: .95rem;
}

.wb-service-card a {
	color: var(--wb-primary);
	font-weight: 800;
}

.wb-icon-pill,
.wb-step {
	display: inline-grid;
	place-items: center;
	min-width: 38px;
	height: 38px;
	margin-bottom: 16px;
	border-radius: 10px;
	background: #fff0ee;
	color: var(--wb-primary);
	font-weight: 900;
}

.wb-testimonials {
	display: grid;
	gap: 16px;
}

.wb-testimonials blockquote {
	margin: 0;
	padding: 24px;
}

.wb-testimonials cite {
	display: block;
	margin-top: 12px;
	color: var(--wb-primary);
	font-style: normal;
	font-weight: 800;
}

.wb-faq {
	display: grid;
	gap: 14px;
}

.wb-faq details {
	border: 1px solid rgba(200, 50, 43, .16);
	border-radius: 14px;
	background: linear-gradient(135deg, #ffffff, #fff8f7);
	padding: 0;
	box-shadow: 0 12px 28px rgba(21, 42, 77, .08);
	overflow: hidden;
}

.wb-faq summary {
	position: relative;
	cursor: pointer;
	font-weight: 900;
	padding: 18px 54px 18px 20px;
	list-style: none;
}

.wb-faq summary::-webkit-details-marker {
	display: none;
}

.wb-faq summary::after {
	content: "+";
	position: absolute;
	right: 18px;
	top: 50%;
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	color: #fff;
	background: linear-gradient(135deg, var(--wb-primary), var(--wb-accent));
	transform: translateY(-50%);
}

.wb-faq details[open] summary::after {
	content: "−";
}

.wb-faq p {
	color: var(--wb-muted);
}

.wb-faq details p {
	padding: 0 20px 20px;
	margin: 0;
}

.wb-cta-band {
	background: linear-gradient(135deg, #1c1c1f, #c8322b);
	color: #fff;
}

.wb-cta-band p {
	color: rgba(255, 255, 255, .78);
}

.webbrix-form {
	position: relative;
	padding: 26px;
	color: var(--wb-text);
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(135deg, rgba(200, 50, 43, .42), rgba(44, 44, 47, .42)) border-box;
	border: 1px solid transparent;
	border-radius: 18px;
	box-shadow: var(--wb-shadow);
}

.webbrix-form::before {
	content: "Get a clear roadmap";
	display: inline-flex;
	margin-bottom: 16px;
	padding: 7px 12px;
	border-radius: 999px;
	color: var(--wb-primary-dark);
	background: #fff0ee;
	font-size: .8rem;
	font-weight: 900;
	text-transform: uppercase;
}

.wb-form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.webbrix-form label {
	display: grid;
	gap: 7px;
	margin-bottom: 14px;
	font-weight: 700;
}

.webbrix-form input,
.webbrix-form textarea,
.webbrix-form select {
	width: 100%;
	border: 1px solid rgba(20, 32, 51, .14);
	border-radius: var(--wb-radius);
	padding: 14px 15px;
	font: inherit;
	background: #fff8f7;
}

.webbrix-form input:focus,
.webbrix-form textarea:focus,
.webbrix-form select:focus {
	outline: 3px solid rgba(200, 50, 43, .18);
	border-color: var(--wb-primary);
}

.wb-hp {
	position: absolute;
	left: -9999px;
}

.wb-form-status {
	margin: 12px 0 0;
	font-weight: 700;
}

.wb-page-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 28px;
	align-items: start;
}

.wb-page-layout-wide {
	grid-template-columns: minmax(0, 1fr);
}

.wb-page-content {
	position: relative;
	width: 100%;
	max-width: none;
	margin: 0 auto;
	padding: clamp(24px, 4vw, 46px);
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(135deg, rgba(200, 50, 43, .18), rgba(44, 44, 47, .16)) border-box;
	border: 1px solid transparent;
}

.wb-sidebar-card {
	padding: 26px;
}

.wb-page-content::before {
	content: "WebBrix Digital Solutions";
	display: inline-flex;
	margin-bottom: 12px;
	padding: 6px 10px;
	border-radius: 999px;
	color: var(--wb-primary-dark);
	background: #fff0ee;
	font-size: .72rem;
	font-weight: 900;
	text-transform: uppercase;
}

.wb-page-content h2 {
	position: relative;
	margin-top: 30px;
	padding-top: 22px;
	border-top: 1px solid rgba(20, 32, 51, .08);
	font-size: clamp(1.28rem, 2vw, 1.85rem);
}

.wb-page-content h2:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.wb-page-content h2::after {
	content: "";
	display: block;
	width: 42px;
	height: 3px;
	margin-top: 10px;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--wb-primary), var(--wb-accent));
}

.wb-page-content h3 {
	margin-top: 18px;
}

.wb-page-content>p:first-of-type {
	padding: 16px 18px;
	border: 1px solid rgba(200, 50, 43, .12);
	border-radius: 14px;
	background: linear-gradient(135deg, #fff8f7, #f8eeee);
	color: var(--wb-text);
	font-weight: 650;
}

.wb-page-content .webbrix-form {
	display: none;
}

.wb-page-content .wp-block-columns {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin: 14px 0 28px;
}

.wb-page-content .wp-block-column {
	min-width: 0;
	padding: 16px;
	border: 1px solid rgba(200, 50, 43, .1);
	border-radius: 14px;
	background: linear-gradient(135deg, #fff8f7, #fff8f7);
	box-shadow: var(--wb-soft-shadow);
}

.wb-page-content .wp-block-column p {
	margin: 0;
}

.wb-editor-overview {
	display: grid;
	gap: 18px;
	margin: 18px 0 30px;
}

.wb-editor-lead {
	position: relative;
	overflow: hidden;
	padding: 22px;
	border: 1px solid rgba(200, 50, 43, .12);
	border-radius: 18px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 240, 238, .86)),
		radial-gradient(circle at 90% 0, rgba(200, 50, 43, .16), transparent 34%);
	box-shadow: var(--wb-soft-shadow);
}

.wb-editor-lead strong {
	display: block;
	margin-bottom: 8px;
	color: var(--wb-text);
	font-size: clamp(1.1rem, 1.8vw, 1.45rem);
	line-height: 1.2;
}

.wb-editor-lead p {
	margin: 0;
	max-width: 860px;
}

.wb-editor-card-grid,
.wb-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.wb-editor-card,
.wb-contact-card {
	position: relative;
	overflow: hidden;
	min-height: 170px;
	padding: 20px;
	border: 1px solid rgba(200, 50, 43, .12);
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--wb-soft-shadow);
}

.wb-editor-card::before,
.wb-contact-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, var(--wb-primary), var(--wb-accent));
}

.wb-editor-card span,
.wb-contact-card span {
	display: inline-flex;
	margin-bottom: 14px;
	padding: 6px 10px;
	border-radius: 999px;
	color: var(--wb-primary-dark);
	background: #fff0ee;
	font-size: .72rem;
	font-weight: 900;
	text-transform: uppercase;
}

.wb-editor-card strong,
.wb-contact-card strong {
	display: block;
	margin-bottom: 8px;
	color: var(--wb-text);
	font-size: 1.05rem;
	line-height: 1.35;
}

.wb-editor-card p,
.wb-contact-card p {
	margin: 0;
}

.wb-contact-card-wide {
	grid-column: span 3;
	min-height: 0;
}

.wb-contact-card-wide strong {
	max-width: 920px;
	font-size: 1rem;
}

.wb-page-content ul,
.wb-page-content ol {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	padding-left: 0;
	list-style: none;
}

.wb-page-content li {
	position: relative;
	padding: 12px 12px 12px 38px;
	border: 1px solid rgba(200, 50, 43, .1);
	border-radius: 12px;
	background: #fff8f7;
	color: var(--wb-muted);
	font-size: .92rem;
}

.wb-page-content li::before {
	content: "✓";
	position: absolute;
	left: 12px;
	top: 12px;
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	color: #fff;
	background: linear-gradient(135deg, var(--wb-primary), var(--wb-accent));
	font-size: .72rem;
	font-weight: 900;
}

.wb-page-content .wp-block-details {
	position: relative;
	margin: 12px 0;
	border: 1px solid rgba(200, 50, 43, .14);
	border-radius: 16px;
	background: linear-gradient(135deg, #fff, #fff8f7);
	box-shadow: var(--wb-soft-shadow);
	overflow: hidden;
}

.wb-page-content .wp-block-details summary {
	position: relative;
	cursor: pointer;
	padding: 18px 58px 18px 20px;
	color: var(--wb-text);
	font-weight: 900;
	list-style: none;
}

.wb-page-content .wp-block-details summary::-webkit-details-marker {
	display: none;
}

.wb-page-content .wp-block-details summary::after {
	content: "+";
	position: absolute;
	right: 18px;
	top: 50%;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	color: #fff;
	background: linear-gradient(135deg, var(--wb-primary), var(--wb-accent));
	transform: translateY(-50%);
}

.wb-page-content .wp-block-details[open] summary::after {
	content: "-";
}

.wb-page-content .wp-block-details p {
	margin: 0;
	padding: 0 20px 20px;
	color: var(--wb-muted);
}

.wb-sidebar-card {
	position: sticky;
	top: 100px;
}

.wb-footer {
	background: #151517;
	color: #fff;
	padding: 64px 0 24px;
}

.wb-footer-top {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, .65fr);
	gap: 34px;
	align-items: stretch;
	margin-bottom: 42px;
}

.wb-footer-brand,
.wb-footer-cta {
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 16px;
	background: rgba(255, 255, 255, .05);
}

.wb-footer-cta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	background:
		linear-gradient(135deg, rgba(200, 50, 43, .2), rgba(44, 44, 47, .08)),
		rgba(255, 255, 255, .05);
}

.wb-footer-cta .wb-btn-light {
	min-width: 210px;
	color: var(--wb-primary-dark);
	background: #fff;
	box-shadow: 0 18px 36px rgba(0, 0, 0, .18);
}

.wb-footer-cta .wb-btn-light:hover {
	color: #fff;
	background: linear-gradient(135deg, var(--wb-primary), var(--wb-accent));
}

.wb-footer-contact {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.wb-footer-contact a {
	display: inline-flex;
	padding: 9px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .08);
}

.wb-footer-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
}

.wb-footer-col {
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.wb-footer p,
.wb-footer a,
.wb-footer-bottom {
	color: rgba(255, 255, 255, .72);
}

.wb-footer .wb-btn {
	color: var(--wb-primary-dark);
}

.wb-footer .wb-btn:hover {
	color: #fff;
}

.wb-footer h2 {
	font-size: 1rem;
	margin-bottom: 18px;
}

.wb-footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.wb-footer-links a:hover,
.wb-footer-contact a:hover {
	color: #fff;
}

.wb-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 38px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.wb-social-links {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.wb-social-links a {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 50%;
	color: #fff;
	background: rgba(255, 255, 255, .06);
	transition: transform .2s ease, background .2s ease;
}

.wb-social-links a:hover {
	transform: translateY(-2px);
	background: linear-gradient(135deg, var(--wb-primary), var(--wb-accent));
}

.wb-social-links .wb-svg-icon {
	width: 18px;
	height: 18px;
}

.wb-door-intro {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	background: #151517;
	pointer-events: none;
}

.wb-door {
	width: 50%;
	height: 100%;
	background: linear-gradient(135deg, #1c1c1f, #c8322b);
	position: relative;
}

.wb-door-left {
	border-right: 1px solid rgba(255, 255, 255, .18);
}

.wb-door-right {
	border-left: 1px solid rgba(255, 255, 255, .18);
}

.wb-door span {
	position: absolute;
	top: 50%;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 7px rgba(255, 255, 255, .15);
}

.wb-door-left span {
	right: 28px;
}

.wb-door-right span {
	left: 28px;
}

.wb-door-mark {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: #fff;
	font-weight: 900;
	font-size: clamp(2rem, 6vw, 5rem);
}

.wb-chat-widget {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 80;
}

.wb-chat-fab {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border: 0;
	border-radius: 50%;
	color: #fff;
	background: linear-gradient(135deg, var(--wb-primary), #8f1d18);
	box-shadow: 0 18px 38px rgba(200, 50, 43, .28);
	font-weight: 900;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease;
}

.wb-chat-fab:hover {
	transform: translateY(-3px);
	box-shadow: 0 22px 46px rgba(200, 50, 43, .36);
}

.wb-chat-fab svg {
	width: 30px;
	height: 30px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.wb-chat-panel {
	display: none;
	width: min(360px, calc(100vw - 28px));
	overflow: hidden;
	border-radius: 14px;
	background: #fff;
	box-shadow: var(--wb-shadow);
}

.wb-chat-widget.is-open .wb-chat-panel {
	display: block;
}

.wb-chat-widget.is-open .wb-chat-fab {
	display: none;
}

body.wb-chat-open .wb-whatsapp-float {
	display: none;
}

.wb-chat-panel header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	color: #fff;
	background: #1c1c1f;
}

.wb-chat-panel header button {
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 1.4rem;
	cursor: pointer;
}

.wb-chat-messages {
	height: 260px;
	overflow: auto;
	padding: 14px;
	background: #fbf2f1;
}

.wb-chat-messages p {
	max-width: 82%;
	margin: 0 0 10px;
	padding: 10px 12px;
	border-radius: var(--wb-radius);
	background: #fff;
}

.wb-chat-messages .visitor {
	margin-left: auto;
	color: #fff;
	background: var(--wb-primary);
}

.wb-chat-panel form {
	display: grid;
	gap: 8px;
	padding: 12px;
}

.wb-chat-panel input,
.wb-chat-panel textarea {
	width: 100%;
	border: 1px solid var(--wb-line);
	border-radius: var(--wb-radius);
	padding: 10px;
	font: inherit;
}

.wb-chat-widget.has-chat .wb-chat-panel input[name="name"],
.wb-chat-widget.has-chat .wb-chat-panel input[name="email"] {
	display: none;
}

.wb-whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 96px;
	z-index: 85;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	color: #fff;
	background: #25d366;
	box-shadow: 0 18px 38px rgba(37, 211, 102, .32);
	transition: transform .2s ease;
}

.wb-whatsapp-float:hover {
	transform: translateY(-3px);
}

.wb-whatsapp-float svg {
	width: 34px;
	height: 34px;
	fill: currentColor;
}

.wb-svg-icon {
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
}

.wb-icon-card .wb-icon-pill {
	color: #fff;
	background: linear-gradient(135deg, var(--wb-primary), var(--wb-accent));
}

.wb-icon-card .wb-icon-pill .wb-svg-icon {
	width: 24px;
	height: 24px;
}

.wb-mega-list {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wb-mega-list>li {
	position: relative;
}

.wb-mega-list>li>a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 42px;
	color: var(--wb-muted);
	font-weight: 800;
	font-size: .94rem;
	transition: color .2s ease;
}

.wb-mega-list>li>a .wb-svg-icon {
	width: 17px;
	height: 17px;
	stroke-width: 1.9;
}

.wb-mega-list>li>a:hover {
	color: var(--wb-primary);
}

.wb-mega-list>li:hover>a,
.wb-mega-list>li:focus-within>a,
.wb-mega-list>li.is-open>a {
	color: var(--wb-primary);
	/* background: #fff0ee; */
	box-shadow: inset 0 -2px 0 var(--wb-primary);
}

.wb-mega-trigger::after {
	content: "▾";
	font-size: .72rem;
	color: currentColor;
}

.wb-mega-panel {
	position: fixed;
	left: 50%;
	top: 70px;
	z-index: 320;
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr);
	gap: 16px;
	width: min(1040px, calc(100vw - 28px));
	max-height: min(610px, calc(100vh - 98px));
	overflow: hidden;
	padding: 14px;
	border: 1px solid rgba(200, 50, 43, .18);
	border-radius: 22px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(255, 248, 247, .96)),
		radial-gradient(circle at 100% 0, rgba(200, 50, 43, .16), transparent 32%);
	box-shadow: 0 30px 80px rgba(28, 28, 31, .22);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 12px);
	transition: opacity .22s ease, transform .22s ease;
}

.wb-mega-panel::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: inherit;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.wb-mega-panel::before {
	content: "";
	position: fixed;
	left: 0;
	right: 0;
	top: 56px;
	height: 30px;
}

.wb-mega-item:hover .wb-mega-panel,
.wb-mega-item:focus-within .wb-mega-panel,
.wb-mega-item.is-open .wb-mega-panel {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.wb-mega-intro {
	position: sticky;
	top: 0;
	min-height: 100%;
	padding: 18px;
	border-radius: 18px;
	color: #fff;
	background:
		radial-gradient(circle at 80% 8%, rgba(255, 255, 255, .18), transparent 28%),
		linear-gradient(155deg, #1c1c1f, #5e201e 55%, var(--wb-primary));
	box-shadow: 0 20px 48px rgba(143, 29, 24, .26);
}

.wb-mega-intro h2 {
	margin: 10px 0;
	font-size: 1.45rem;
	line-height: 1.12;
}

.wb-mega-intro p {
	color: rgba(255, 255, 255, .82);
	font-size: .92rem;
	line-height: 1.55;
}

.wb-mega-intro .wb-btn {
	min-height: 42px;
	padding: 0 18px;
	font-size: .86rem;
}

.wb-menu-label {
	display: inline-flex;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .16);
	font-size: .75rem;
	font-weight: 900;
	text-transform: uppercase;
}

.wb-mega-columns {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	max-height: calc(min(610px, 100vh - 98px) - 28px);
	overflow: auto;
	padding-right: 4px;
}

.wb-mega-columns::-webkit-scrollbar {
	width: 8px;
}

.wb-mega-columns::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: rgba(200, 50, 43, .28);
}

.wb-mega-col {
	display: grid;
	align-content: start;
	gap: 7px;
	padding: 12px;
	border: 1px solid rgba(200, 50, 43, .1);
	border-radius: 16px;
	background: rgba(255, 255, 255, .78);
	box-shadow: 0 14px 32px rgba(60, 24, 20, .06);
}

.wb-mega-col strong {
	position: sticky;
	top: 0;
	z-index: 1;
	padding: 8px 8px 9px;
	border-radius: 12px;
	color: var(--wb-primary-dark);
	background: linear-gradient(135deg, #fff0ee, #fff);
	font-size: .82rem;
	text-transform: uppercase;
}

.wb-mega-col a {
	display: grid;
	gap: 4px;
	padding: 10px 11px;
	border: 1px solid transparent;
	border-radius: 12px;
	background: rgba(255, 255, 255, .65);
	transition: background .2s ease, transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.wb-mega-col a:hover {
	border-color: rgba(200, 50, 43, .2);
	background: #fff;
	transform: translateY(-1px);
	box-shadow: 0 12px 26px rgba(60, 24, 20, .08);
}

.wb-mega-col span {
	color: var(--wb-text);
	font-size: .94rem;
	font-weight: 900;
}

.wb-mega-col small {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--wb-muted);
	font-size: .82rem;
	line-height: 1.35;
}

.wb-page-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
	gap: 42px;
	align-items: center;
}

.wb-page-hero-service {
	background: linear-gradient(135deg, #fff8f7 0%, #fff0ee 55%, #fff8f7 100%);
}

.wb-page-hero-technology {
	background: linear-gradient(135deg, #fff8f7 0%, #fff0ee 52%, #f4eeee 100%);
}

.wb-page-hero-industry {
	background: linear-gradient(135deg, #fff8f7 0%, #f8eeee 48%, #fff8ef 100%);
}

.wb-page-hero-company,
.wb-page-hero-core {
	background: linear-gradient(135deg, #fbfcff 0%, #fff0ee 48%, #f4eeee 100%);
}

.wb-page-hero-contact {
	background: linear-gradient(135deg, #fff8f7 0%, #fff0ee 48%, #fff4f7 100%);
}

.wb-page-hero-blog {
	background: linear-gradient(135deg, #fbfcff 0%, #fff0ee 50%, #f8eeee 100%);
}

.wb-animated-visual {
	position: relative;
	min-height: 330px;
	border-radius: 18px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, 0)),
		linear-gradient(145deg, #1c1c1f, #c8322b 58%, #2c2c2f);
	box-shadow: var(--wb-shadow);
	overflow: hidden;
}

.wb-page-visual {
	isolation: isolate;
	background: #0f2442;
}

.wb-page-visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.04) contrast(1.02);
	transform: scale(1.02);
}

.wb-page-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(135deg, rgba(10, 24, 48, .9), rgba(200, 50, 43, .55) 52%, rgba(44, 44, 47, .62));
}

.wb-page-visual.visual-service::after {
	background: linear-gradient(135deg, rgba(8, 27, 62, .92), rgba(200, 50, 43, .64) 52%, rgba(44, 44, 47, .58));
}

.wb-page-visual.visual-tech::after {
	background: radial-gradient(circle at 80% 18%, rgba(44, 44, 47, .55), transparent 30%), linear-gradient(135deg, rgba(9, 19, 45, .94), rgba(200, 50, 43, .72) 54%, rgba(44, 44, 47, .52));
}

.wb-page-visual.visual-industry::after {
	background: linear-gradient(135deg, rgba(15, 33, 60, .9), rgba(44, 44, 47, .58) 50%, rgba(245, 151, 56, .42));
}

.wb-page-visual.visual-company::after {
	background: linear-gradient(135deg, rgba(13, 26, 48, .92), rgba(200, 50, 43, .62) 54%, rgba(44, 44, 47, .45));
}

.wb-page-visual.visual-contact::after {
	background: linear-gradient(135deg, rgba(12, 34, 65, .9), rgba(200, 50, 43, .58) 52%, rgba(255, 74, 122, .42));
}

.wb-page-visual.visual-blog::after {
	background: linear-gradient(135deg, rgba(14, 28, 58, .92), rgba(200, 50, 43, .58) 48%, rgba(143, 29, 24, .55));
}

.wb-page-visual .wb-visual-ring {
	position: absolute;
	inset: 34px;
	z-index: 2;
	border: 1px solid rgba(255, 255, 255, .3);
	border-radius: 38% 62% 56% 44%;
}

.wb-visual-glass,
.wb-visual-chip {
	position: absolute;
	z-index: 3;
	display: grid;
	gap: 8px;
	border: 1px solid rgba(255, 255, 255, .38);
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
	backdrop-filter: blur(14px);
}

.wb-visual-glass.main {
	left: 36px;
	right: 36px;
	bottom: 36px;
	padding: 20px;
	border-radius: 16px;
}

.wb-visual-glass strong {
	color: var(--wb-text);
	font-size: 1.12rem;
	line-height: 1.16;
}

.wb-visual-glass span {
	color: var(--wb-muted);
	font-weight: 800;
	font-size: .86rem;
}

.wb-visual-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	border-radius: 999px;
	color: var(--wb-text);
	font-size: .82rem;
	font-weight: 900;
}

.wb-visual-chip.one {
	left: 22px;
	top: 22px;
}

.wb-visual-chip.two {
	right: 22px;
	top: 66px;
}

.visual-tech .wb-visual-glass.main {
	left: 44px;
	right: auto;
	width: min(320px, calc(100% - 76px));
	top: 42px;
	bottom: auto;
}

.visual-tech .wb-visual-chip.one {
	left: auto;
	right: 26px;
	bottom: 26px;
	top: auto;
}

.visual-industry .wb-visual-glass.main {
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
}

.visual-industry .wb-visual-chip.two {
	top: auto;
	bottom: 26px;
}

.visual-company .wb-visual-glass.main {
	top: 30px;
	bottom: auto;
	right: 32px;
	left: 32px;
}

.visual-contact .wb-visual-glass.main {
	left: 28px;
	right: auto;
	width: min(340px, calc(100% - 56px));
}

.visual-blog .wb-visual-glass.main {
	top: 38px;
	bottom: auto;
	left: 38px;
	right: 38px;
}

.wb-animated-visual::before {
	content: "";
	position: absolute;
	inset: 42px;
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 50%;
}

.wb-orbit-card {
	position: absolute;
	display: grid;
	gap: 8px;
	padding: 20px;
	border-radius: 18px;
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 24px 50px rgba(0, 0, 0, .22);
}

.wb-orbit-card.main {
	left: 50%;
	top: 50%;
	width: min(270px, calc(100% - 42px));
	transform: translate(-50%, -50%);
}

.wb-orbit-card.main strong {
	font-size: 1.35rem;
	line-height: 1.15;
}

.wb-orbit-card.main span {
	color: var(--wb-muted);
	font-weight: 800;
}

.wb-orbit-card.mini {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 14px;
	font-weight: 900;
}

.wb-orbit-card.one {
	left: 22px;
	bottom: 44px;
}

.wb-orbit-card.two {
	right: 22px;
	top: 42px;
}

.wb-orbit-dot {
	position: absolute;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 12px rgba(255, 255, 255, .16);
}

.wb-orbit-dot.dot-a {
	left: 56px;
	top: 64px;
}

.wb-orbit-dot.dot-b {
	right: 82px;
	bottom: 72px;
}

.wb-motion-board {
	position: relative;
	min-height: 330px;
	border-radius: 24px;
	background: #1c1c1f;
	box-shadow: var(--wb-shadow);
	overflow: hidden;
}

.wb-motion-board span {
	position: absolute;
	left: 34px;
	right: 34px;
	height: 62px;
	border-radius: 14px;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .16);
}

.wb-motion-board span:nth-child(1) {
	top: 42px;
}

.wb-motion-board span:nth-child(2) {
	top: 132px;
	width: 68%;
}

.wb-motion-board span:nth-child(3) {
	bottom: 44px;
	width: 82%;
}

.wb-motion-board i {
	position: absolute;
	right: 44px;
	top: 102px;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--wb-primary), var(--wb-accent));
	box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
}

.wb-photo-panel {
	margin: 0;
	min-height: 290px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--wb-shadow);
	background: #dfe8f5;
}

.wb-photo-panel img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 290px;
	object-fit: cover;
}

.wb-timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	counter-reset: step;
}

.wb-timeline div {
	position: relative;
	padding: 24px;
	border: 1px solid var(--wb-line);
	border-radius: var(--wb-radius);
	background: #fff;
	box-shadow: 0 12px 28px rgba(21, 42, 77, .08);
}

.wb-timeline div::before {
	counter-increment: step;
	content: "0" counter(step);
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 16px;
	border-radius: var(--wb-radius);
	color: #fff;
	background: var(--wb-primary);
	font-weight: 900;
}

.wb-timeline span {
	display: block;
	font-size: 1.1rem;
	font-weight: 900;
}

.wb-timeline p {
	color: var(--wb-muted);
}

.wb-tool-grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: 36px;
	align-items: center;
}

.wb-chip-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.wb-chip-cloud span {
	padding: 12px 16px;
	border-radius: 999px;
	border: 1px solid var(--wb-line);
	background: #fff;
	box-shadow: 0 10px 24px rgba(21, 42, 77, .08);
	font-weight: 900;
}

.wb-tech-stack-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.wb-tech-stack-grid div {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	align-content: start;
	min-height: 190px;
	padding: 18px;
	border: 1px solid rgba(200, 50, 43, .12);
	border-radius: 20px;
	background:
		radial-gradient(circle at 100% 0, rgba(200, 50, 43, .12), transparent 35%),
		#fff;
	box-shadow: var(--wb-soft-shadow);
}

.wb-tech-stack-grid div::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	border-radius: 20px 20px 0 0;
	background: linear-gradient(90deg, var(--wb-primary), var(--wb-accent));
}

.wb-tech-stack-grid strong {
	grid-column: 1 / -1;
	margin-bottom: 6px;
	color: var(--wb-text);
	font-size: 1.02rem;
}

.wb-tech-stack-grid span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0 10px;
	border: 1px solid rgba(200, 50, 43, .12);
	border-radius: 12px;
	color: var(--wb-primary-dark);
	background: #fff8f7;
	font-size: .8rem;
	font-weight: 900;
	text-align: center;
}

.wb-job-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.wb-job-card {
	display: grid;
	gap: 14px;
	padding: 22px;
	border: 1px solid rgba(200, 50, 43, .12);
	border-radius: 20px;
	background:
		radial-gradient(circle at 100% 0, rgba(200, 50, 43, .12), transparent 34%),
		#fff;
	box-shadow: var(--wb-soft-shadow);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.wb-job-card:hover {
	transform: translateY(-4px);
	border-color: rgba(200, 50, 43, .25);
	box-shadow: var(--wb-shadow);
}

.wb-job-card>div {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.wb-job-card span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 10px;
	border-radius: 999px;
	color: var(--wb-primary-dark);
	background: #fff0ee;
	font-size: .75rem;
	font-weight: 900;
	text-transform: uppercase;
}

.wb-job-card h3 {
	margin: 0;
	font-size: 1.25rem;
}

.wb-job-card p {
	margin: 0;
	color: var(--wb-muted);
}

.wb-job-card ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wb-job-card li {
	padding: 10px 12px;
	border: 1px solid rgba(200, 50, 43, .1);
	border-radius: 12px;
	background: #fff8f7;
	color: var(--wb-muted);
	font-weight: 700;
}

.wb-blog-hub {
	display: grid;
	gap: 28px;
}

.wb-blog-featured {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(320px, .85fr);
	gap: 26px;
	align-items: center;
	overflow: hidden;
	padding: clamp(22px, 3vw, 34px);
	border: 1px solid rgba(200, 50, 43, .14);
	border-radius: 24px;
	background:
		radial-gradient(circle at 92% 10%, rgba(200, 50, 43, .18), transparent 28%),
		linear-gradient(135deg, #fff, #fff8f7);
	box-shadow: var(--wb-shadow);
}

.wb-blog-featured h2 {
	max-width: 760px;
	margin: 0 0 12px;
	font-size: clamp(1.8rem, 3vw, 3rem);
	line-height: 1.03;
}

.wb-blog-featured p {
	color: var(--wb-muted);
	font-size: 1rem;
}

.wb-blog-featured-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin: 18px 0;
}

.wb-blog-featured-meta span,
.wb-blog-category-cloud span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid rgba(200, 50, 43, .12);
	border-radius: 999px;
	color: var(--wb-primary-dark);
	background: #fff;
	font-size: .76rem;
	font-weight: 900;
	text-transform: uppercase;
}

.wb-blog-featured figure {
	position: relative;
	min-height: 330px;
	margin: 0;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 22px 50px rgba(60, 24, 20, .18);
}

.wb-blog-featured figure::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(28, 28, 31, .12), rgba(200, 50, 43, .18));
}

.wb-blog-featured img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 330px;
	object-fit: cover;
}

.wb-blog-filter-row {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(320px, 1.2fr);
	gap: 20px;
	align-items: end;
}

.wb-blog-filter-row h2 {
	margin-bottom: 0;
}

.wb-blog-category-cloud {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.wb-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.wb-blog-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(200, 50, 43, .12);
	border-radius: 20px;
	background: #fff;
	box-shadow: var(--wb-soft-shadow);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.wb-blog-card:hover {
	transform: translateY(-5px);
	border-color: rgba(200, 50, 43, .24);
	box-shadow: var(--wb-shadow);
}

.wb-blog-card img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.wb-blog-card-body {
	display: grid;
	gap: 9px;
	padding: 18px;
}

.wb-blog-card span,
.wb-blog-meta,
.wb-related-posts span {
	color: var(--wb-primary);
	font-size: .74rem;
	font-weight: 900;
	text-transform: uppercase;
}

.wb-blog-card h3 {
	margin: 0;
	font-size: 1.18rem;
	line-height: 1.18;
}

.wb-blog-card p {
	margin: 0;
	color: var(--wb-muted);
	font-size: .92rem;
}

.wb-blog-card a {
	display: inline-flex;
	width: fit-content;
	margin-top: 4px;
	color: var(--wb-primary-dark);
	font-weight: 900;
}

.wb-blog-featured-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.wb-share-chip,
.wb-share-dot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(200, 50, 43, .16);
	background: #fff;
	color: var(--wb-primary-dark);
	font: inherit;
	font-weight: 900;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.wb-share-chip {
	gap: 8px;
	min-height: 44px;
	padding: 0 15px;
	border-radius: 999px;
	box-shadow: var(--wb-soft-shadow);
	text-decoration: none;
}

.wb-share-chip:hover,
.wb-share-dot:hover {
	transform: translateY(-2px);
	border-color: rgba(200, 50, 43, .28);
	box-shadow: var(--wb-shadow);
}

.wb-share-chip .wb-svg-icon {
	width: 17px;
	height: 17px;
}

.wb-blog-card-actions {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-top: 4px;
}

.wb-blog-card-actions>a:first-child {
	margin-right: auto;
}

.wb-share-dot {
	width: 38px;
	height: 38px;
	padding: 0;
	border-radius: 50%;
}

.wb-share-dot .wb-svg-icon {
	width: 17px;
	height: 17px;
}

.wb-share-dot span {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.wb-blog-hero-image {
	margin: 0;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: var(--wb-shadow);
}

.wb-blog-hero-image img {
	display: block;
	width: 100%;
	min-height: 340px;
	object-fit: cover;
}

.wb-blog-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 28px;
	align-items: start;
}

.wb-blog-article {
	padding: clamp(26px, 4vw, 52px);
	border: 1px solid rgba(200, 50, 43, .12);
	border-radius: 20px;
	background: #fff;
	box-shadow: var(--wb-soft-shadow);
}

.wb-blog-article h2 {
	margin: 34px 0 12px;
	padding-top: 14px;
	border-top: 1px solid rgba(200, 50, 43, .1);
	font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.wb-blog-article p {
	color: var(--wb-muted);
	font-size: 1rem;
	line-height: 1.8;
}

.wb-blog-share {
	display: grid;
	gap: 12px;
	margin: 18px 0 20px;
	padding: 18px;
	border: 1px solid rgba(200, 50, 43, .12);
	border-radius: 18px;
	background: #fbf7f6;
}

.wb-blog-share-top {
	width: fit-content;
	max-width: 100%;
	margin-top: 16px;
	padding: 12px;
	background: rgba(255, 255, 255, .78);
	backdrop-filter: blur(14px);
	box-shadow: 0 18px 44px rgba(61, 24, 20, .1);
}

.wb-blog-share strong {
	color: var(--wb-text);
}

.wb-blog-share>div {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.wb-blog-share a,
.wb-blog-share button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid rgba(200, 50, 43, .14);
	border-radius: 999px;
	color: var(--wb-primary-dark);
	background: #fff;
	font: inherit;
	font-weight: 900;
	cursor: pointer;
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.wb-blog-share a:hover,
.wb-blog-share button:hover {
	transform: translateY(-2px);
	border-color: rgba(200, 50, 43, .28);
	box-shadow: var(--wb-soft-shadow);
}

.wb-blog-share .wb-svg-icon {
	width: 17px;
	height: 17px;
}

.wb-blog-lead {
	margin: 18px 0 20px;
	padding: 20px;
	border: 1px solid rgba(200, 50, 43, .12);
	border-radius: 18px;
	background: linear-gradient(135deg, #fff8f7, #fff);
	color: var(--wb-text) !important;
	font-weight: 650;
}

.wb-blog-toc {
	margin: 22px 0 28px;
	padding: 20px;
	border: 1px solid rgba(200, 50, 43, .12);
	border-radius: 18px;
	background: #fbf7f6;
}

.wb-blog-toc strong {
	display: block;
	margin-bottom: 12px;
}

.wb-blog-toc ul,
.wb-blog-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wb-blog-toc a,
.wb-blog-list li {
	display: block;
	padding: 12px 14px;
	border: 1px solid rgba(200, 50, 43, .1);
	border-radius: 12px;
	background: #fff;
	color: var(--wb-text);
	font-weight: 800;
}

.wb-blog-list {
	margin: 16px 0 28px;
}

.wb-blog-list li {
	position: relative;
	padding-left: 42px;
	font-weight: 700;
}

.wb-blog-list li::before {
	content: "";
	position: absolute;
	left: 16px;
	top: 17px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--wb-primary);
	box-shadow: 0 0 0 5px rgba(200, 50, 43, .1);
}

.wb-blog-faqs {
	margin-top: 28px;
	padding: 22px;
	border-radius: 18px;
	background: #fbf7f6;
	border: 1px solid rgba(200, 50, 43, .12);
}

.wb-blog-faqs h2 {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.wb-blog-faqs details {
	border: 1px solid rgba(200, 50, 43, .12);
	border-radius: 14px;
	background: #fff;
}

.wb-blog-faqs details+details {
	margin-top: 10px;
}

.wb-blog-faqs summary {
	cursor: pointer;
	padding: 14px 16px;
	color: var(--wb-text);
	font-weight: 900;
}

.wb-blog-faqs details p {
	margin: 0;
	padding: 0 16px 16px;
}

.wb-blog-cta {
	margin-top: 30px;
	padding: 24px;
	border-radius: 18px;
	color: #fff;
	background: linear-gradient(135deg, #1c1c1f, var(--wb-primary));
}

.wb-blog-cta p {
	color: rgba(255, 255, 255, .78);
}

.wb-related-posts {
	position: sticky;
	top: 98px;
	display: grid;
	gap: 12px;
	padding: 18px;
	border: 1px solid rgba(200, 50, 43, .12);
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--wb-soft-shadow);
}

.wb-related-posts h2 {
	font-size: 1.2rem;
}

.wb-related-posts a {
	display: grid;
	gap: 5px;
	padding: 13px;
	border-radius: 12px;
	background: #fff8f7;
}

.wb-related-posts strong {
	line-height: 1.2;
}

.wb-gsap {
	will-change: transform, opacity;
}

@media (max-width: 940px) {
	body.wb-menu-open {
		overflow: hidden;
	}

	body.wb-menu-open .wb-header {
		z-index: 1200;
	}

	.wb-nav-cta {
		display: none;
	}

	.wb-menu-toggle {
		display: block;
		margin-left: auto;
	}

	body.wb-menu-open .wb-menu-toggle {
		visibility: hidden;
	}

	.wb-menu-backdrop {
		position: fixed;
		inset: 0;
		z-index: 1201;
		display: block;
		background: rgba(12, 22, 38, .46);
		opacity: 0;
		pointer-events: none;
		transition: opacity .25s ease;
	}

	body.wb-menu-open .wb-menu-backdrop {
		opacity: 1;
		pointer-events: auto;
	}

	.wb-menu {
		position: fixed;
		inset: 0 auto 0 0;
		z-index: 1202;
		display: block;
		width: min(86vw, 360px);
		height: 100vh;
		height: 100dvh;
		max-height: 100vh;
		max-height: 100dvh;
		overflow-y: auto;
		overflow-x: hidden;
		padding: 12px 12px 86px;
		border-radius: 0 18px 18px 0;
		background: #fff;
		box-shadow: var(--wb-shadow);
		transform: translateX(-105%);
		transition: transform .28s ease;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
	}

	.wb-menu.is-open {
		transform: translateX(0);
	}

	.wb-mobile-menu-head {
		position: sticky;
		top: 0;
		z-index: 2;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		margin: -12px -12px 14px;
		padding: 12px;
		border-bottom: 1px solid var(--wb-line);
		background: rgba(255, 255, 255, .96);
		backdrop-filter: blur(12px);
	}

	.wb-mobile-menu-head .wb-logo {
		font-size: 1rem;
	}

	.wb-mobile-menu-head .wb-logo-icon {
		width: 38px;
		height: 38px;
	}

	.wb-menu-close {
		display: grid;
		place-items: center;
		width: 42px;
		height: 42px;
		border: 0;
		border-radius: 50%;
		color: #fff;
		background: linear-gradient(135deg, var(--wb-primary), var(--wb-accent));
		font-size: 1.45rem;
		line-height: 1;
	}

	.wb-menu-list {
		display: grid;
		gap: 14px;
	}

	.wb-mega-list {
		display: grid;
		align-items: stretch;
		gap: 7px;
		width: 100%;
	}

	.wb-mega-list>li {
		width: 100%;
	}

	.wb-mega-list>li>a {
		display: flex;
		justify-content: space-between;
		width: 100%;
		min-height: 44px;
		padding: 10px 12px;
		border: 1px solid rgba(200, 50, 43, .08);
		border-radius: 12px;
		background: #fff8f7;
		color: var(--wb-text);
		font-size: .98rem;
		line-height: 1.1;
	}

	.wb-mega-list>li>a .wb-svg-icon {
		width: 18px;
		height: 18px;
	}

	.wb-mega-list>li>a span {
		margin-right: auto;
	}

	.wb-mega-list>li>a:hover,
	.wb-mega-item.is-open>.wb-mega-trigger {
		color: var(--wb-primary);
		border-color: rgba(200, 50, 43, .34);
		background: #fff0ee;
	}

	.wb-mega-trigger::after {
		transition: transform .2s ease;
	}

	.wb-mega-item.is-open .wb-mega-trigger::after {
		transform: rotate(180deg);
	}

	.wb-mega-panel {
		position: static;
		display: none !important;
		grid-template-columns: 1fr;
		width: 100%;
		max-height: none;
		overflow: visible;
		margin: 6px 0 10px;
		padding: 8px;
		border-radius: 12px;
		opacity: 1;
		pointer-events: auto;
		transform: none !important;
		box-shadow: none;
		border: 1px solid rgba(200, 50, 43, .1);
		background: #fff8f7;
	}

	.wb-mega-item.is-open .wb-mega-panel {
		display: block !important;
	}

	.wb-mega-columns {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
		max-height: none;
		overflow: visible;
		padding-right: 0;
	}

	.wb-mega-intro {
		display: none;
	}

	.wb-mega-col {
		gap: 4px;
		padding: 8px;
		border-radius: 10px;
		background: #fff0ee;
	}

	.wb-mega-col strong {
		display: block;
		position: static;
		padding: 0 2px 5px;
		color: var(--wb-primary-dark);
		font-size: .68rem;
		letter-spacing: .04em;
	}

	.wb-mega-col a {
		display: block;
		padding: 9px 10px;
		border: 0;
		border-radius: 9px;
		background: #fff;
	}

	.wb-mega-col span {
		display: block;
		font-size: .9rem;
		line-height: 1.15;
	}

	.wb-mega-col small {
		display: none;
	}

	.wb-menu-list .sub-menu {
		position: static;
		grid-template-columns: 1fr;
		min-width: 0;
		max-height: none;
		margin-top: 8px;
		padding: 8px;
		border-radius: var(--wb-radius);
		background: #fbf2f1;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.wb-menu-list .sub-menu a {
		white-space: normal;
	}

	.wb-hero-grid,
	.wb-page-hero-grid,
	.wb-split,
	.wb-page-layout,
	.wb-footer-top,
	.wb-tool-grid,
	.wb-page-summary,
	.wb-blog-detail-layout {
		grid-template-columns: 1fr;
	}

	.wb-blog-featured,
	.wb-blog-filter-row {
		grid-template-columns: 1fr;
	}

	.wb-blog-category-cloud {
		justify-content: flex-start;
	}

	.wb-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wb-card-grid,
	.wb-stat-grid,
	.wb-blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.wb-summary-cards {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

	.wb-sidebar-card {
		position: static;
	}
}

@media (max-width: 640px) {
	body {
		padding-bottom: 64px;
	}

	.wb-container {
		width: min(100% - 24px, 1180px);
	}

	.wb-hero,
	.wb-page-hero {
		padding: 48px 0 42px;
	}

	.wb-hero {
		min-height: auto;
		padding: 38px 0 36px;
	}

	.wb-hero-grid {
		gap: 34px;
	}

	.wb-hero h1 {
		font-size: clamp(2.35rem, 11vw, 3.35rem);
	}

	.wb-hero-badges,
	.wb-hero-mini-grid {
		grid-template-columns: 1fr;
	}

	.wb-hero-badges {
		gap: 8px;
	}

	.wb-hero-badges span {
		min-height: 34px;
		padding: 0 12px;
		font-size: .76rem;
	}

	.wb-hero-mini-grid {
		display: grid;
		gap: 8px;
		margin-top: 14px;
	}

	.wb-hero-mini-grid span {
		min-height: 62px;
		padding: 12px;
	}

	.wb-hero-visual {
		min-height: 320px;
	}

	.wb-dashboard-card {
		left: 18px;
		right: 18px;
		bottom: 18px;
		padding: 16px;
	}

	.wb-dashboard-card strong {
		font-size: 1.6rem;
	}

	.wb-float-card {
		padding: 10px 12px;
		font-size: .82rem;
	}

	.wb-float-card.one {
		left: 16px;
		top: 16px;
	}

	.wb-float-card.two {
		right: 16px;
		top: 62px;
	}

	.wb-hero-proof {
		left: 16px;
		top: 66px;
		padding: 10px 12px;
	}

	.wb-section {
		padding: 42px 0;
	}

	.wb-section-head {
		display: grid;
		align-items: start;
	}

	.wb-blog-featured {
		padding: 20px;
		border-radius: 18px;
	}

	.wb-blog-featured-actions,
	.wb-blog-card-actions,
	.wb-blog-share>div {
		align-items: stretch;
	}

	.wb-blog-featured-actions .wb-btn,
	.wb-share-chip,
	.wb-blog-share a,
	.wb-blog-share button {
		width: 100%;
		justify-content: center;
	}

	.wb-blog-featured figure,
	.wb-blog-featured img {
		min-height: 220px;
	}

	.wb-tech-stack-grid {
		grid-template-columns: 1fr;
	}

	.wb-tech-stack-grid div {
		min-height: 0;
	}

	.wb-job-grid {
		grid-template-columns: 1fr;
	}

	.wb-card-grid,
	.wb-stat-grid,
	.wb-form-grid,
	.wb-timeline,
	.wb-summary-cards,
	.wb-blog-grid,
	.wb-page-content ul,
	.wb-page-content ol,
	.wb-page-content .wp-block-columns {
		grid-template-columns: 1fr;
	}

	.wb-editor-card-grid,
	.wb-contact-grid {
		grid-template-columns: 1fr;
	}

	.wb-contact-card-wide {
		grid-column: auto;
	}

	.wb-page-content {
		padding: 22px;
	}

	.wb-page-content li {
		padding-right: 10px;
	}

	.wb-blog-hero-image img {
		min-height: 240px;
	}

	.wb-blog-toc ul,
	.wb-blog-list {
		grid-template-columns: 1fr;
	}

	.wb-related-posts {
		position: static;
	}

	.wb-footer-grid {
		grid-template-columns: 1fr;
	}

	.wb-footer-bottom {
		display: grid;
	}

	.wb-animated-visual {
		min-height: 310px;
	}

	.wb-visual-glass.main {
		left: 18px;
		right: 18px;
		bottom: 24px;
		padding: 18px;
	}

	.visual-tech .wb-visual-glass.main,
	.visual-contact .wb-visual-glass.main {
		left: 18px;
		right: 18px;
		top: auto;
		bottom: 24px;
		width: auto;
	}

	.visual-company .wb-visual-glass.main,
	.visual-blog .wb-visual-glass.main {
		left: 18px;
		right: 18px;
		top: 24px;
	}

	.wb-visual-chip.one {
		left: 16px;
		top: 16px;
	}

	.wb-visual-chip.two {
		right: 16px;
		top: 66px;
	}

	.visual-tech .wb-visual-chip.one {
		right: 16px;
		bottom: 16px;
	}

	.wb-orbit-card.one {
		left: 14px;
		bottom: 22px;
	}

	.wb-orbit-card.two {
		right: 14px;
		top: 22px;
	}

	.wb-motion-board {
		min-height: 260px;
	}

	.wb-photo-panel,
	.wb-photo-panel img {
		min-height: 240px;
	}

	.wb-chat-widget {
		right: 14px;
		bottom: 74px;
	}

	.wb-chat-fab {
		width: 52px;
		height: 52px;
	}

	.wb-chat-fab svg {
		width: 27px;
		height: 27px;
	}

	.wb-whatsapp-float {
		right: 14px;
		bottom: 140px;
		width: 54px;
		height: 54px;
	}
}

@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}

	.wb-door-intro {
		display: none;
	}
}
