/**
 * About Us — page composition.
 *
 * The page itself stays in Elementor: every heading, paragraph, button and
 * image is a real widget the client can click and edit. What Elementor cannot
 * express cleanly — overlapping cards, asymmetric grids, a promoted card in a
 * four-card set, scroll reveals — lives here instead, keyed off stable classes
 * set on the containers in the builder.
 *
 * Loaded on page 2162 only.
 *
 * Specificity note: Elementor emits `.elementor-element-<id>` (0,1,0) rules for
 * every setting, and the Bevesi theme ships compound selectors that beat a lone
 * class. Layout-critical rules here are written at (0,2,0) by doubling the
 * class, or (0,3,0) by prefixing with `.tb-sec`. Nothing uses !important, so a
 * later restyle can still win.
 */

/* ------------------------------------------------------------------ *
 * Tokens
 * ------------------------------------------------------------------ */

.tb-sec {
	--tb-blue: #0071dc;
	--tb-blue-dark: #005ab0;
	--tb-blue-ink: #0a2540;
	--tb-blue-deep: #06213f;
	--tb-yellow: #facc15;
	--tb-yellow-dark: #e0b400;

	--tb-ink: #101a2c;
	--tb-body: #4a5a70;
	--tb-mute: #6b7c93;

	--tb-white: #ffffff;
	--tb-wash: #f1f6fc;
	--tb-wash-2: #e6effb;
	--tb-line: #dce7f4;
	--tb-line-soft: #eaf1fa;

	--tb-max: 1240px;
	--tb-gutter: clamp(16px, 4vw, 40px);
	--tb-section-y: clamp(56px, 2.5rem + 4.2vw, 112px);

	--tb-h1: clamp(2.375rem, 1.25rem + 3.9vw, 4.375rem);
	--tb-h2: clamp(1.75rem, 1.2rem + 2.1vw, 3rem);
	--tb-h3: clamp(1.1875rem, 1rem + 0.7vw, 1.625rem);
	--tb-h4: clamp(1.0625rem, 1rem + 0.28vw, 1.1875rem);
	--tb-text: clamp(0.9375rem, 0.9rem + 0.18vw, 1.0625rem);
	--tb-small: 0.875rem;

	--tb-r: 20px;
	--tb-r-lg: 28px;
	--tb-r-sm: 12px;
	--tb-r-pill: 999px;

	--tb-shadow: 0 26px 60px -30px rgba(10, 37, 64, 0.32);
	--tb-shadow-sm: 0 14px 34px -20px rgba(10, 37, 64, 0.28);
	--tb-shadow-lift: 0 30px 64px -28px rgba(10, 37, 64, 0.36);

	--tb-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ------------------------------------------------------------------ *
 * Section + container scaffolding
 *
 * Every top-level container is set to full width in the builder, so there is
 * no `.e-con-inner` to fight. Width and rhythm are decided here.
 * ------------------------------------------------------------------ */

.tb-sec.tb-sec {
	--width: 100%;
	--content-width: 100%;
	display: block;
	width: 100%;
	max-width: none;
	padding: var(--tb-section-y) 0;
	color: var(--tb-body);
	font-size: var(--tb-text);
	line-height: 1.65;
}

.tb-in.tb-in {
	--width: 100%;
	--content-width: 100%;
	display: block;
	width: 100%;
	max-width: var(--tb-max);
	margin-inline: auto;
	padding: 0 var(--tb-gutter);
}

/* Containers used purely as layout boxes: strip Elementor's flex defaults. */
.tb-sec .tb-box.tb-box {
	--width: 100%;
	display: block;
	width: 100%;
	max-width: none;
	padding: 0;
	gap: 0;
}

/* ------------------------------------------------------------------ *
 * Typography primitives
 * ------------------------------------------------------------------ */

.tb-sec .tb-eyebrow .elementor-heading-title,
.tb-sec .tb-eyebrow p {
	margin: 0;
	color: var(--tb-blue);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.tb-sec .tb-h1 .elementor-heading-title {
	margin: 0;
	color: var(--tb-ink);
	font-size: var(--tb-h1);
	font-weight: 700;
	line-height: 1.06;
	letter-spacing: -0.028em;
	text-wrap: balance;
}

.tb-sec .tb-h2 .elementor-heading-title {
	margin: 0;
	color: var(--tb-ink);
	font-size: var(--tb-h2);
	font-weight: 700;
	line-height: 1.14;
	letter-spacing: -0.022em;
	text-wrap: balance;
}

.tb-sec .tb-h3 .elementor-heading-title {
	margin: 0;
	color: var(--tb-ink);
	font-size: var(--tb-h3);
	font-weight: 650;
	line-height: 1.24;
	letter-spacing: -0.014em;
}

.tb-sec .tb-h4 .elementor-heading-title {
	margin: 0;
	color: var(--tb-ink);
	font-size: var(--tb-h4);
	font-weight: 650;
	line-height: 1.35;
	letter-spacing: -0.008em;
}

.tb-sec .tb-lead .elementor-widget-container,
.tb-sec .tb-body .elementor-widget-container {
	color: inherit;
}

.tb-sec .tb-lead p {
	margin: 0 0 0.85em;
	color: var(--tb-body);
	font-size: clamp(1rem, 0.94rem + 0.3vw, 1.1875rem);
	line-height: 1.6;
}

.tb-sec .tb-body p {
	margin: 0 0 0.9em;
	color: var(--tb-body);
	font-size: var(--tb-text);
	line-height: 1.7;
}

.tb-sec .tb-lead p:last-child,
.tb-sec .tb-body p:last-child {
	margin-bottom: 0;
}

/* The blue phrase inside the hero headline. */
.tb-sec .tb-mark {
	color: var(--tb-blue);
}

/* ------------------------------------------------------------------ *
 * Buttons
 *
 * Elementor's button markup is `a.elementor-button > span > span`. Written at
 * (0,3,0) so the theme's `button:not(.unset)` family cannot repaint it.
 * ------------------------------------------------------------------ */

.tb-sec .tb-btn .elementor-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 28px;
	border: 1px solid transparent;
	border-radius: var(--tb-r-pill);
	background: var(--tb-blue);
	box-shadow: 0 14px 30px -16px rgba(0, 113, 220, 0.7);
	color: var(--tb-white);
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.005em;
	text-decoration: none;
	transition: background-color 0.3s var(--tb-ease), border-color 0.3s var(--tb-ease),
		color 0.3s var(--tb-ease), box-shadow 0.3s var(--tb-ease), transform 0.3s var(--tb-ease);
}

.tb-sec .tb-btn .elementor-button:hover,
.tb-sec .tb-btn .elementor-button:focus-visible {
	background: var(--tb-blue-dark);
	box-shadow: 0 18px 36px -16px rgba(0, 113, 220, 0.75);
	color: var(--tb-white);
	transform: translateY(-2px);
}

.tb-sec .tb-btn .elementor-button-content-wrapper {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.tb-sec .tb-btn .elementor-button-text {
	flex-grow: 0;
}

/* Outline variant */
.tb-sec .tb-btn--ghost .elementor-button {
	border-color: var(--tb-line);
	background: var(--tb-white);
	box-shadow: none;
	color: var(--tb-ink);
}

.tb-sec .tb-btn--ghost .elementor-button:hover,
.tb-sec .tb-btn--ghost .elementor-button:focus-visible {
	border-color: var(--tb-blue);
	background: var(--tb-white);
	box-shadow: 0 14px 30px -20px rgba(10, 37, 64, 0.5);
	color: var(--tb-blue);
}

/* Yellow variant, used once — on the seller CTA card. */
.tb-sec .tb-btn--gold .elementor-button {
	background: var(--tb-yellow);
	box-shadow: 0 14px 30px -16px rgba(250, 204, 21, 0.55);
	color: var(--tb-blue-deep);
}

.tb-sec .tb-btn--gold .elementor-button:hover,
.tb-sec .tb-btn--gold .elementor-button:focus-visible {
	background: var(--tb-yellow-dark);
	color: var(--tb-blue-deep);
}

.tb-sec .tb-btn .elementor-button:focus-visible {
	outline: 3px solid rgba(0, 113, 220, 0.35);
	outline-offset: 3px;
}

/* ------------------------------------------------------------------ *
 * Shared pieces: icon chips, tags, cards
 * ------------------------------------------------------------------ */

.tb-ico {
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: var(--tb-wash-2);
	color: var(--tb-blue);
}

.tb-ico svg {
	display: block;
	width: 22px;
	height: 22px;
	stroke-width: 1.6;
}

.tb-ico--md {
	width: 48px;
	height: 48px;
}

.tb-ico--lg {
	width: 60px;
	height: 60px;
	border-radius: 18px;
}

.tb-ico--lg svg {
	width: 28px;
	height: 28px;
}

.tb-ico--round {
	border-radius: var(--tb-r-pill);
}

.tb-tag {
	display: flex;
	width: fit-content;
	align-items: center;
	gap: 8px;
	padding: 7px 14px;
	border-radius: var(--tb-r-pill);
	background: var(--tb-wash-2);
	color: var(--tb-blue);
	font-size: 0.6875rem;
	font-weight: 650;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
}

.tb-tag svg {
	width: 14px;
	height: 14px;
	stroke-width: 2;
}

/* ------------------------------------------------------------------ *
 * 1. Hero — split editorial
 * ------------------------------------------------------------------ */

.tb-sec--hero.tb-sec--hero {
	position: relative;
	padding-top: clamp(40px, 1.5rem + 3.4vw, 84px);
	padding-bottom: clamp(56px, 2.5rem + 4.2vw, 108px);
	background: linear-gradient(180deg, var(--tb-wash) 0%, var(--tb-white) 62%);
	overflow: hidden;
}

.tb-sec--hero .tb-hero__grid.tb-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
	align-items: center;
	gap: clamp(36px, 4vw, 72px);
	width: 100%;
	max-width: var(--tb-max);
	margin-inline: auto;
	padding: 0 var(--tb-gutter);
}

.tb-sec--hero .tb-hero__copy.tb-hero__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	width: 100%;
	max-width: 620px;
	padding: 0;
}

.tb-sec--hero .tb-hero__copy > .elementor-element {
	width: 100%;
}

.tb-sec--hero .tb-hero__copy .tb-eyebrow {
	margin-bottom: 18px;
}

.tb-sec--hero .tb-hero__copy .tb-h1 {
	margin-bottom: 22px;
}

.tb-sec--hero .tb-hero__copy .tb-lead {
	margin-bottom: 30px;
	max-width: 34em;
}

/* Buttons row */
.tb-sec--hero .tb-hero__actions.tb-hero__actions {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	width: auto;
	max-width: none;
	margin-bottom: 26px;
	padding: 0;
}

.tb-sec--hero .tb-hero__actions > .elementor-element {
	width: auto;
}

/* Trust statement under the buttons */
.tb-hero__note {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--tb-mute);
	font-size: var(--tb-small);
	line-height: 1.5;
}

.tb-hero__note svg {
	flex: none;
	width: 18px;
	height: 18px;
	color: var(--tb-blue);
	stroke-width: 2;
}

/* --- media composition --- */

.tb-sec--hero .tb-hero__media.tb-hero__media {
	position: relative;
	display: block;
	width: 100%;
	max-width: none;
	padding: 0;
}

/* dot grid, behind and above-right of the photo */
.tb-sec--hero .tb-hero__media::before {
	content: "";
	position: absolute;
	z-index: 0;
	top: -26px;
	right: -18px;
	width: 168px;
	height: 168px;
	background-image: radial-gradient(rgba(0, 113, 220, 0.34) 1.6px, transparent 1.6px);
	background-size: 14px 14px;
	border-radius: 6px;
}

/* soft yellow wash, behind and below-left */
.tb-sec--hero .tb-hero__media::after {
	content: "";
	position: absolute;
	z-index: 0;
	bottom: -34px;
	left: -30px;
	width: 210px;
	height: 210px;
	background: radial-gradient(circle at 50% 50%, rgba(250, 204, 21, 0.36), rgba(250, 204, 21, 0) 68%);
}

.tb-sec--hero .tb-hero__img.tb-hero__img {
	position: relative;
	z-index: 1;
	width: 100%;
	margin: 0;
	padding: 0;
}

.tb-sec--hero .tb-hero__img .elementor-widget-container,
.tb-sec--hero .tb-hero__img figure {
	margin: 0;
	overflow: hidden;
	border-radius: var(--tb-r-lg);
}

.tb-sec--hero .tb-hero__img img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 4.7;
	object-fit: cover;
	object-position: 48% 50%;
	border-radius: var(--tb-r-lg);
	box-shadow: var(--tb-shadow);
}

/* floating pill, top-left of the photo */
.tb-hero__badge {
	position: absolute;
	z-index: 3;
	top: 26px;
	left: -22px;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 11px 18px 11px 13px;
	border-radius: var(--tb-r-pill);
	background: var(--tb-white);
	box-shadow: var(--tb-shadow-sm);
	color: var(--tb-ink);
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}

.tb-hero__badge span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: var(--tb-r-pill);
	background: rgba(0, 113, 220, 0.12);
	color: var(--tb-blue);
}

.tb-hero__badge svg {
	width: 15px;
	height: 15px;
	stroke-width: 2.2;
}

/* white card overlapping the bottom-left corner of the photo */
.tb-sec--hero .tb-hero__card.tb-hero__card {
	position: absolute;
	z-index: 3;
	bottom: 26px;
	left: -34px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	width: min(280px, 78%);
	max-width: none;
	padding: 20px 22px;
	border-radius: var(--tb-r);
	background: var(--tb-white);
	box-shadow: var(--tb-shadow);
}

.tb-sec--hero .tb-hero__card .tb-h4 .elementor-heading-title {
	font-size: 1rem;
	line-height: 1.3;
}

.tb-sec--hero .tb-hero__card .tb-body p {
	font-size: 0.8125rem;
	line-height: 1.55;
	color: var(--tb-mute);
}

/* ------------------------------------------------------------------ *
 * 2. Why we started
 * ------------------------------------------------------------------ */

.tb-sec--why .tb-why__head.tb-why__head {
	display: block;
	max-width: 760px;
	margin-bottom: clamp(32px, 2rem + 1.6vw, 56px);
	padding: 0;
}

.tb-sec--why .tb-why__head .tb-eyebrow {
	margin-bottom: 14px;
}

.tb-sec--why .tb-why__grid.tb-why__grid {
	display: grid;
	grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
	align-items: start;
	gap: clamp(28px, 3vw, 56px);
	padding: 0;
}

.tb-sec--why .tb-why__media.tb-why__media {
	position: relative;
	z-index: 1;
	display: block;
	padding: 0;
}

.tb-sec--why .tb-why__img .elementor-widget-container,
.tb-sec--why .tb-why__img figure {
	margin: 0;
	overflow: hidden;
	border-radius: var(--tb-r-lg);
}

.tb-sec--why .tb-why__img img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 4.3;
	object-fit: cover;
	object-position: 50% 45%;
	border-radius: var(--tb-r-lg);
	transition: transform 0.6s var(--tb-ease);
}

.tb-sec--why .tb-why__media:hover img {
	transform: scale(1.035);
}

.tb-sec--why .tb-why__body.tb-why__body {
	display: block;
	padding: 0;
}

/* The pull-quote breaks left, over the photo. */
.tb-sec--why .tb-quote.tb-quote {
	position: relative;
	z-index: 2;
	display: block;
	margin: 26px 0 26px clamp(-96px, -6vw, -40px);
	padding: 30px 32px 30px 34px;
	border-radius: var(--tb-r);
	background: var(--tb-white);
	box-shadow: var(--tb-shadow);
}

.tb-sec--why .tb-quote::before {
	content: "";
	position: absolute;
	top: 26px;
	left: 0;
	width: 4px;
	height: calc(100% - 52px);
	border-radius: 0 4px 4px 0;
	background: var(--tb-yellow);
}

.tb-sec--why .tb-quote .elementor-heading-title {
	margin: 0;
	color: var(--tb-ink);
	font-size: clamp(1.125rem, 1rem + 0.85vw, 1.5rem);
	font-weight: 600;
	line-height: 1.42;
	letter-spacing: -0.012em;
}

.tb-sec--why .tb-why__text {
	margin-bottom: 26px;
}

/* Three supporting points — a stack of rows, not three matching boxes. */
.tb-sec--why .tb-points.tb-points {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0;
	border-radius: var(--tb-r);
	overflow: hidden;
	background: var(--tb-wash);
}

.tb-sec--why .tb-point.tb-point {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 16px;
	width: 100%;
	max-width: none;
	padding: 18px 20px;
	border-bottom: 1px solid var(--tb-line-soft);
	transition: background-color 0.3s var(--tb-ease);
}

.tb-sec--why .tb-point:last-child {
	border-bottom: 0;
}

.tb-sec--why .tb-point:hover {
	background: var(--tb-wash-2);
}

.tb-sec--why .tb-point .tb-h4 .elementor-heading-title {
	font-size: 0.9375rem;
	font-weight: 650;
	line-height: 1.35;
}

.tb-sec--why .tb-point .tb-ico {
	background: var(--tb-white);
	box-shadow: 0 6px 16px -10px rgba(10, 37, 64, 0.4);
}

/* ------------------------------------------------------------------ *
 * 3. Our story
 * ------------------------------------------------------------------ */

.tb-sec--story.tb-sec--story {
	background: var(--tb-wash);
}

.tb-sec--story .tb-story__grid.tb-story__grid {
	display: grid;
	grid-template-columns: minmax(0, 41fr) minmax(0, 59fr);
	align-items: center;
	gap: clamp(30px, 3.4vw, 64px);
	padding: 0;
}

.tb-sec--story .tb-story__media.tb-story__media {
	position: relative;
	display: block;
	padding: 0;
}

.tb-sec--story .tb-story__img .elementor-widget-container,
.tb-sec--story .tb-story__img figure {
	margin: 0;
	overflow: hidden;
	border-radius: var(--tb-r-lg);
}

.tb-sec--story .tb-story__img img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 4.8;
	object-fit: cover;
	object-position: 4% 50%;
	border-radius: var(--tb-r-lg);
	box-shadow: var(--tb-shadow);
	transition: transform 0.6s var(--tb-ease);
}

.tb-sec--story .tb-story__media:hover img {
	transform: scale(1.03);
}

/* floating verification badge on the image */
.tb-story__badge {
	position: absolute;
	z-index: 2;
	right: -20px;
	bottom: 30px;
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 13px 20px 13px 15px;
	border-radius: var(--tb-r-pill);
	background: var(--tb-white);
	box-shadow: var(--tb-shadow);
	color: var(--tb-ink);
	font-size: 0.8125rem;
	font-weight: 650;
	line-height: 1.25;
	white-space: nowrap;
}

.tb-story__badge span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: var(--tb-r-pill);
	background: var(--tb-blue);
	color: var(--tb-white);
}

.tb-story__badge svg {
	width: 17px;
	height: 17px;
	stroke-width: 2.2;
}

.tb-sec--story .tb-story__body.tb-story__body {
	display: block;
	padding: 0;
}

.tb-sec--story .tb-story__body .tb-eyebrow {
	margin-bottom: 14px;
}

.tb-sec--story .tb-story__body .tb-h2 {
	margin-bottom: 22px;
}

.tb-sec--story .tb-story__body .tb-body {
	margin-bottom: 16px;
}

.tb-sec--story .tb-story__body .tb-body:last-of-type {
	margin-bottom: 0;
}

/* --- timeline --- */

.tb-sec--story .tb-timeline.tb-timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin-top: clamp(40px, 2.5rem + 2vw, 72px);
	padding: 0;
}

/* the rail */
.tb-sec--story .tb-timeline::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, var(--tb-blue) 0%, rgba(0, 113, 220, 0.22) 100%);
}

.tb-sec--story .tb-tl.tb-tl {
	position: relative;
	display: block;
	max-width: none;
	padding: 34px 20px 0 0;
}

.tb-sec--story .tb-tl::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 16px;
	height: 16px;
	border: 3px solid var(--tb-blue);
	border-radius: var(--tb-r-pill);
	background: var(--tb-wash);
}

.tb-sec--story .tb-tl--last::before {
	background: var(--tb-blue);
}

.tb-sec--story .tb-tl .tb-h4 .elementor-heading-title {
	margin-bottom: 6px;
	font-size: 1rem;
}

.tb-sec--story .tb-tl .tb-body p {
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--tb-mute);
}

/* ------------------------------------------------------------------ *
 * 4. Mission — one wide slab
 * ------------------------------------------------------------------ */

.tb-sec--mission .tb-mission.tb-mission {
	display: grid;
	grid-template-columns: auto minmax(0, 1.3fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(24px, 3vw, 52px);
	max-width: none;
	padding: clamp(32px, 2rem + 2.4vw, 64px);
	border-radius: var(--tb-r-lg);
	background: linear-gradient(135deg, var(--tb-wash-2) 0%, var(--tb-wash) 100%);
}

.tb-sec--mission .tb-mission__icon.tb-mission__icon {
	display: block;
	width: auto;
	max-width: none;
	padding: 0;
}

.tb-mission__disc {
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(76px, 6vw, 104px);
	height: clamp(76px, 6vw, 104px);
	border-radius: var(--tb-r-pill);
	background: var(--tb-white);
	box-shadow: var(--tb-shadow-sm);
	color: var(--tb-blue);
}

.tb-mission__disc svg {
	width: 46%;
	height: 46%;
	stroke-width: 1.5;
}

.tb-sec--mission .tb-mission__mid.tb-mission__mid {
	display: block;
	padding: 0;
	border-right: 1px solid rgba(10, 37, 64, 0.1);
	padding-right: clamp(20px, 2.4vw, 44px);
}

.tb-sec--mission .tb-mission__mid .tb-eyebrow {
	margin-bottom: 12px;
}

.tb-sec--mission .tb-mission__side.tb-mission__side {
	display: block;
	padding: 0;
}

.tb-sec--mission .tb-mission__side .tb-body {
	margin-bottom: 18px;
}

.tb-mission__flag {
	display: block;
	padding-left: 16px;
	border-left: 3px solid var(--tb-blue);
	color: var(--tb-blue);
	font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
	font-weight: 600;
	line-height: 1.5;
}

/* ------------------------------------------------------------------ *
 * 5. What we stand for
 * ------------------------------------------------------------------ */

.tb-sec--values .tb-values__head.tb-values__head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
	align-items: end;
	gap: clamp(20px, 3vw, 56px);
	max-width: none;
	margin-bottom: clamp(30px, 2rem + 1.4vw, 52px);
	padding: 0;
}

.tb-sec--values .tb-values__head .tb-eyebrow {
	margin-bottom: 14px;
}

.tb-sec--values .tb-values__intro p {
	color: var(--tb-mute);
}

.tb-sec--values .tb-values__grid.tb-values__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 1.6vw, 24px);
	max-width: none;
	padding: 0;
}

.tb-sec--values .tb-card.tb-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	max-width: none;
	padding: clamp(24px, 1.6rem + 0.9vw, 34px);
	border: 1px solid var(--tb-line);
	border-radius: var(--tb-r);
	background: var(--tb-white);
	transition: transform 0.35s var(--tb-ease), box-shadow 0.35s var(--tb-ease),
		border-color 0.35s var(--tb-ease);
}

.tb-sec--values .tb-card:hover {
	border-color: transparent;
	box-shadow: var(--tb-shadow-lift);
	transform: translateY(-5px);
}

.tb-sec--values .tb-card .tb-ico {
	margin-bottom: 20px;
}

.tb-sec--values .tb-card .tb-h3 {
	margin-bottom: 10px;
}

/* the ordinal, set quietly in the corner */
.tb-card__no {
	position: absolute;
	top: clamp(22px, 1.6rem + 0.9vw, 32px);
	right: clamp(22px, 1.6rem + 0.9vw, 32px);
	color: var(--tb-line);
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	font-variant-numeric: tabular-nums;
}

/* promoted card: taller, filled, first column */
.tb-sec--values .tb-card--feature.tb-card--feature {
	grid-column: 1;
	grid-row: 1 / span 2;
	justify-content: flex-end;
	border-color: transparent;
	background: linear-gradient(158deg, var(--tb-blue-ink) 0%, var(--tb-blue-deep) 100%);
}

.tb-sec--values .tb-card--feature::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 158px;
	height: 158px;
	background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.5px, transparent 1.5px);
	background-size: 13px 13px;
	border-radius: 0 var(--tb-r) 0 0;
	pointer-events: none;
}

.tb-sec--values .tb-card--feature .tb-ico {
	background: rgba(255, 255, 255, 0.12);
	color: var(--tb-white);
}

.tb-sec--values .tb-card--feature .tb-h3 .elementor-heading-title {
	color: var(--tb-white);
}

.tb-sec--values .tb-card--feature .tb-body p {
	color: rgba(255, 255, 255, 0.74);
}

.tb-sec--values .tb-card--feature .tb-card__no {
	color: rgba(255, 255, 255, 0.32);
}

/* the fourth card runs wide under the middle pair */
.tb-sec--values .tb-card--wide.tb-card--wide {
	grid-column: 2 / span 2;
	grid-row: 2;
	flex-direction: row;
	align-items: center;
	gap: 22px;
	background: var(--tb-wash);
	border-color: transparent;
}

.tb-sec--values .tb-card--wide .tb-ico {
	margin-bottom: 0;
	background: var(--tb-white);
}

.tb-sec--values .tb-card--wide .tb-card__body.tb-card__body {
	display: block;
	max-width: none;
	padding: 0;
}

/* ------------------------------------------------------------------ *
 * 6. How it works
 * ------------------------------------------------------------------ */

.tb-sec--how .tb-how__head.tb-how__head {
	display: block;
	max-width: 720px;
	margin-bottom: clamp(34px, 2rem + 1.8vw, 60px);
	padding: 0;
}

.tb-sec--how .tb-how__head .tb-eyebrow {
	margin-bottom: 14px;
}

.tb-sec--how .tb-steps.tb-steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 2vw, 32px);
	max-width: none;
	padding: 0;
}

/* rail behind the number discs */
.tb-sec--how .tb-steps::before {
	content: "";
	position: absolute;
	top: 27px;
	left: 8%;
	width: 84%;
	height: 2px;
	background-image: linear-gradient(90deg, var(--tb-blue) 50%, transparent 0);
	background-size: 10px 2px;
	background-repeat: repeat-x;
	opacity: 0.45;
}

.tb-sec--how .tb-step.tb-step {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	max-width: none;
	padding: 0;
}

.tb-step__no {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 22px;
	border: 2px solid var(--tb-line);
	border-radius: var(--tb-r-pill);
	background: var(--tb-white);
	color: var(--tb-ink);
	font-size: 1.0625rem;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.02em;
	transition: transform 0.35s var(--tb-ease), box-shadow 0.35s var(--tb-ease);
}

/* the middle step carries the fill, so the three do not read as identical */
.tb-sec--how .tb-step--mid .tb-step__no {
	border-color: transparent;
	background: var(--tb-blue);
	box-shadow: 0 14px 28px -14px rgba(0, 113, 220, 0.8);
	color: var(--tb-white);
}

.tb-sec--how .tb-step--last .tb-step__no {
	border-color: var(--tb-blue);
	color: var(--tb-blue);
}

.tb-sec--how .tb-step:hover .tb-step__no {
	transform: translateY(-3px);
}

.tb-sec--how .tb-step .tb-h3 {
	margin-bottom: 10px;
}

.tb-sec--how .tb-step .tb-body {
	max-width: 34em;
}

/* ------------------------------------------------------------------ *
 * 7. The promise panel — full-bleed navy
 * ------------------------------------------------------------------ */

.tb-sec--promise.tb-sec--promise {
	position: relative;
	background: linear-gradient(152deg, var(--tb-blue-ink) 0%, var(--tb-blue-deep) 62%, #04182f 100%);
	color: rgba(255, 255, 255, 0.76);
	overflow: hidden;
}

.tb-sec--promise::before {
	content: "";
	position: absolute;
	top: -120px;
	right: -80px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle at 50% 50%, rgba(0, 113, 220, 0.4), rgba(0, 113, 220, 0) 68%);
	pointer-events: none;
}

.tb-sec--promise::after {
	content: "";
	position: absolute;
	bottom: -160px;
	left: -100px;
	width: 380px;
	height: 380px;
	background: radial-gradient(circle at 50% 50%, rgba(250, 204, 21, 0.16), rgba(250, 204, 21, 0) 70%);
	pointer-events: none;
}

.tb-sec--promise .tb-in.tb-in {
	position: relative;
	z-index: 1;
}

.tb-sec--promise .tb-eyebrow .elementor-heading-title {
	color: var(--tb-yellow);
}

.tb-sec--promise .tb-h2 .elementor-heading-title {
	color: var(--tb-white);
	max-width: 18em;
}

.tb-sec--promise .tb-promise__head.tb-promise__head {
	display: block;
	max-width: none;
	margin-bottom: clamp(36px, 2rem + 2vw, 64px);
	padding: 0;
}

.tb-sec--promise .tb-promise__head .tb-eyebrow {
	margin-bottom: 14px;
}

.tb-sec--promise .tb-promise__grid.tb-promise__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	max-width: none;
	padding: 0;
}

.tb-sec--promise .tb-promise.tb-promise {
	display: block;
	max-width: none;
	padding: 4px clamp(18px, 2vw, 34px) 4px 0;
	border-left: 1px solid rgba(255, 255, 255, 0.14);
	padding-left: clamp(18px, 2vw, 34px);
}

.tb-sec--promise .tb-promise:first-child {
	border-left: 0;
	padding-left: 0;
}

.tb-sec--promise .tb-promise__big .elementor-heading-title {
	margin-bottom: 10px;
	color: var(--tb-white);
	font-size: clamp(1.5rem, 1.05rem + 1.6vw, 2.25rem);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.024em;
	text-wrap: balance;
}

.tb-sec--promise .tb-promise .tb-body p {
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.9375rem;
	line-height: 1.6;
}

/* ------------------------------------------------------------------ *
 * 8. Split CTA
 * ------------------------------------------------------------------ */

.tb-sec--cta .tb-cta__grid.tb-cta__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(18px, 1.8vw, 28px);
	max-width: none;
	padding: 0;
}

.tb-sec--cta .tb-cta__card.tb-cta__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	max-width: none;
	padding: clamp(30px, 2rem + 1.6vw, 52px);
	border-radius: var(--tb-r-lg);
	overflow: hidden;
	transition: transform 0.35s var(--tb-ease), box-shadow 0.35s var(--tb-ease);
}

.tb-sec--cta .tb-cta__card:hover {
	box-shadow: var(--tb-shadow-lift);
	transform: translateY(-4px);
}

.tb-sec--cta .tb-cta__card .tb-tag {
	margin-bottom: 20px;
}

.tb-sec--cta .tb-cta__card .tb-h3 {
	margin-bottom: 12px;
}

.tb-sec--cta .tb-cta__card .tb-body {
	margin-bottom: 26px;
	max-width: 30em;
}

/* seller card — navy, yellow action */
.tb-sec--cta .tb-cta__card--seller.tb-cta__card--seller {
	background: linear-gradient(150deg, var(--tb-blue-ink) 0%, var(--tb-blue-deep) 100%);
}

.tb-sec--cta .tb-cta__card--seller::after {
	content: "";
	position: absolute;
	right: -50px;
	bottom: -50px;
	width: 220px;
	height: 220px;
	background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1.5px, transparent 1.5px);
	background-size: 14px 14px;
	pointer-events: none;
}

.tb-sec--cta .tb-cta__card--seller .tb-tag {
	background: rgba(250, 204, 21, 0.16);
	color: var(--tb-yellow);
}

.tb-sec--cta .tb-cta__card--seller .tb-h3 .elementor-heading-title {
	color: var(--tb-white);
}

.tb-sec--cta .tb-cta__card--seller .tb-body p {
	color: rgba(255, 255, 255, 0.72);
}

/* buyer card — light, blue action */
.tb-sec--cta .tb-cta__card--buyer.tb-cta__card--buyer {
	border: 1px solid var(--tb-line);
	background: var(--tb-wash);
}

.tb-sec--cta .tb-cta__card--buyer::after {
	content: "";
	position: absolute;
	right: -70px;
	bottom: -90px;
	width: 260px;
	height: 260px;
	background: radial-gradient(circle at 50% 50%, rgba(0, 113, 220, 0.16), rgba(0, 113, 220, 0) 66%);
	pointer-events: none;
}

.tb-sec--cta .tb-cta__card > .elementor-element {
	position: relative;
	z-index: 1;
}

/* ------------------------------------------------------------------ *
 * 9. Closing statement
 * ------------------------------------------------------------------ */

.tb-sec--close.tb-sec--close {
	padding-bottom: clamp(64px, 3rem + 5vw, 130px);
	text-align: center;
}

.tb-sec--close .tb-in.tb-in {
	max-width: 900px;
}

.tb-close__rule {
	display: block;
	width: 54px;
	height: 4px;
	margin: 0 auto 30px;
	border-radius: var(--tb-r-pill);
	background: var(--tb-yellow);
}

.tb-sec--close .tb-close__title .elementor-heading-title {
	margin: 0 auto 18px;
	max-width: 16em;
	color: var(--tb-ink);
	font-size: clamp(1.75rem, 1.1rem + 2.6vw, 3.25rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.026em;
	text-wrap: balance;
}

.tb-sec--close .tb-close__note p {
	margin: 0;
	color: var(--tb-mute);
	font-size: clamp(1rem, 0.94rem + 0.3vw, 1.1875rem);
}

/* ------------------------------------------------------------------ *
 * Motion
 *
 * The hidden state is gated behind `.tb-js`, which the script sets on <html>
 * before paint. Without JS nothing is ever hidden, so a script failure costs
 * the animation and not the content.
 * ------------------------------------------------------------------ */

@media (prefers-reduced-motion: no-preference) {
	.tb-js .tb-rise {
		opacity: 0;
		transform: translateY(20px);
		transition: opacity 0.55s var(--tb-ease), transform 0.55s var(--tb-ease);
		transition-delay: calc(var(--tb-d, 0) * 70ms);
		will-change: opacity, transform;
	}

	.tb-js .tb-rise.is-in {
		opacity: 1;
		transform: none;
	}

	.tb-js .tb-hero__img img {
		transform: scale(1.05);
		transition: transform 0.9s var(--tb-ease);
	}

	.tb-js .tb-hero__img.is-in img {
		transform: none;
	}

	.tb-hero__badge,
	.tb-story__badge {
		animation: tb-float 6.5s var(--tb-ease) infinite alternate;
	}

	.tb-sec--hero .tb-hero__card.tb-hero__card {
		animation: tb-float 7.5s var(--tb-ease) 0.6s infinite alternate;
	}
}

@keyframes tb-float {
	from {
		translate: 0 0;
	}
	to {
		translate: 0 -9px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tb-sec *,
	.tb-sec *::before,
	.tb-sec *::after {
		animation-duration: 0.001ms;
		animation-iteration-count: 1;
		transition-duration: 0.001ms;
	}
}

/* ------------------------------------------------------------------ *
 * Responsive
 *
 * Each breakpoint undoes exactly the overlaps that stop fitting, in the order
 * they stop fitting. Nothing is left positioned outside its parent below the
 * width where the parent can still hold it.
 * ------------------------------------------------------------------ */

/* --- 1200px: pull the breakouts in --- */
@media (max-width: 1200px) {
	.tb-sec--hero .tb-hero__card.tb-hero__card {
		left: -18px;
		width: min(258px, 82%);
	}

	.tb-hero__badge {
		left: -10px;
	}

	.tb-story__badge {
		right: -8px;
	}

	.tb-sec--why .tb-quote.tb-quote {
		margin-left: -34px;
	}
}

/* --- 1024px: mission and values reflow --- */
@media (max-width: 1024px) {
	.tb-sec--mission .tb-mission.tb-mission {
		grid-template-columns: auto minmax(0, 1fr);
		row-gap: 28px;
	}

	.tb-sec--mission .tb-mission__mid.tb-mission__mid {
		border-right: 0;
		padding-right: 0;
	}

	.tb-sec--mission .tb-mission__side.tb-mission__side {
		grid-column: 1 / -1;
		padding-top: 24px;
		border-top: 1px solid rgba(10, 37, 64, 0.1);
	}

	.tb-sec--values .tb-values__grid.tb-values__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tb-sec--values .tb-card--feature.tb-card--feature {
		grid-column: 1 / -1;
		grid-row: auto;
		min-height: 0;
	}

	.tb-sec--values .tb-card--wide.tb-card--wide {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.tb-sec--promise .tb-promise__grid.tb-promise__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 34px;
	}

	.tb-sec--promise .tb-promise:nth-child(odd) {
		border-left: 0;
		padding-left: 0;
	}
}

/* --- 900px: hero and story stack, timeline turns --- */
@media (max-width: 900px) {
	.tb-sec--hero .tb-hero__grid.tb-hero__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 44px;
	}

	/* Copy first, image after — a phone should read the promise before the photo. */
	.tb-sec--hero .tb-hero__copy.tb-hero__copy {
		order: 1;
		max-width: none;
	}

	.tb-sec--hero .tb-hero__media.tb-hero__media {
		order: 2;
	}

	.tb-sec--hero .tb-hero__img img {
		aspect-ratio: 4 / 3.4;
		object-position: 48% 50%;
	}

	.tb-sec--hero .tb-hero__media::before {
		top: -16px;
		right: -8px;
		width: 116px;
		height: 116px;
	}

	.tb-sec--hero .tb-hero__media::after {
		bottom: -20px;
		left: -16px;
		width: 150px;
		height: 150px;
	}

	.tb-sec--why .tb-why__grid.tb-why__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 30px;
	}

	.tb-sec--why .tb-why__img img {
		aspect-ratio: 4 / 3;
		object-position: 50% 34%;
	}

	.tb-sec--why .tb-quote.tb-quote {
		margin: 0 0 24px;
	}

	.tb-sec--story .tb-story__grid.tb-story__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 32px;
	}

	.tb-sec--story .tb-story__img img {
		aspect-ratio: 4 / 2.9;
		object-position: 8% 50%;
	}

	/* Timeline goes vertical: rail down the left, items stacked. */
	.tb-sec--story .tb-timeline.tb-timeline {
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
	}

	.tb-sec--story .tb-timeline::before {
		top: 8px;
		left: 7px;
		width: 2px;
		height: calc(100% - 40px);
		background: linear-gradient(180deg, var(--tb-blue) 0%, rgba(0, 113, 220, 0.22) 100%);
	}

	.tb-sec--story .tb-tl.tb-tl {
		padding: 0 0 26px 34px;
	}

	.tb-sec--story .tb-tl:last-child {
		padding-bottom: 0;
	}

	.tb-sec--story .tb-tl::before {
		top: 1px;
	}

	.tb-sec--how .tb-steps.tb-steps {
		grid-template-columns: minmax(0, 1fr);
		gap: 30px;
	}

	/* A vertical rail would have to thread three cards of different heights; the
	   numbered discs carry the sequence on their own here. */
	.tb-sec--how .tb-steps::before {
		display: none;
	}

	.tb-sec--how .tb-step.tb-step {
		display: grid;
		grid-template-columns: 56px minmax(0, 1fr);
		align-items: start;
		column-gap: 20px;
	}

	.tb-step__no {
		grid-row: 1 / span 3;
		margin-bottom: 0;
	}

	.tb-sec--cta .tb-cta__grid.tb-cta__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* --- 768px: the last of the overlaps come in --- */
@media (max-width: 768px) {
	.tb-sec--values .tb-values__head.tb-values__head {
		grid-template-columns: minmax(0, 1fr);
		align-items: start;
		gap: 16px;
	}

	.tb-sec--mission .tb-mission.tb-mission {
		grid-template-columns: minmax(0, 1fr);
	}

	.tb-sec--mission .tb-mission__side.tb-mission__side {
		grid-column: auto;
	}
}

/* --- 640px: single column throughout --- */
@media (max-width: 640px) {
	.tb-sec--values .tb-values__grid.tb-values__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.tb-sec--values .tb-card--wide.tb-card--wide {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}

	.tb-sec--promise .tb-promise__grid.tb-promise__grid {
		grid-template-columns: minmax(0, 1fr);
		row-gap: 0;
	}

	.tb-sec--promise .tb-promise.tb-promise {
		padding: 22px 0;
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.14);
		padding-left: 0;
	}

	.tb-sec--promise .tb-promise:first-child {
		border-top: 0;
		padding-top: 0;
	}

	/* The floating pieces stop floating and sit in the flow. */
	.tb-sec--hero .tb-hero__card.tb-hero__card {
		position: static;
		width: 100%;
		margin-top: 14px;
		animation: none;
	}

	.tb-hero__badge {
		top: 14px;
		left: 14px;
	}

	.tb-story__badge {
		right: 14px;
		bottom: 14px;
		padding: 10px 16px 10px 12px;
		font-size: 0.75rem;
	}

	.tb-sec--hero .tb-hero__actions.tb-hero__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		gap: 10px;
	}

	.tb-sec--hero .tb-hero__actions > .elementor-element {
		width: 100%;
	}

	.tb-sec .tb-btn .elementor-button {
		justify-content: center;
		width: 100%;
	}
}

/* --- 460px: tighten type and padding --- */
@media (max-width: 460px) {
	.tb-sec--hero .tb-hero__img img {
		aspect-ratio: 4 / 4;
	}

	.tb-sec--why .tb-quote.tb-quote {
		padding: 24px 22px 24px 24px;
	}

	.tb-sec--why .tb-point.tb-point {
		align-items: flex-start;
		gap: 14px;
		padding: 16px;
	}

	.tb-story__badge span {
		width: 26px;
		height: 26px;
	}

	.tb-story__badge svg {
		width: 14px;
		height: 14px;
	}
}

/* ------------------------------------------------------------------ *
 * Text columns that sit beside an icon
 *
 * Both the supporting points and the wide value card put an icon and a text
 * block side by side. min-width:0 is what stops a long word forcing the flex
 * item wider than its track and pushing the card out of the grid.
 * ------------------------------------------------------------------ */

.tb-sec .tb-point__body.tb-point__body,
.tb-sec .tb-card__body.tb-card__body {
	display: block;
	flex: 1 1 auto;
	min-width: 0;
	max-width: none;
	padding: 0;
	gap: 0;
}

.tb-sec--why .tb-point .tb-h4 {
	margin-bottom: 3px;
}

.tb-sec--why .tb-point .tb-body p {
	color: var(--tb-mute);
	font-size: 0.875rem;
	line-height: 1.55;
}

.tb-sec--values .tb-card--wide .tb-h3 {
	margin-bottom: 8px;
}

/* ------------------------------------------------------------------ *
 * HTML widget wrappers
 *
 * Elementor gives every widget wrapper `position: relative`, which quietly
 * makes it the containing block for anything absolute inside it — a floating
 * badge then anchors to its own empty wrapper instead of the image it is meant
 * to sit on, and lands wherever that wrapper happens to be in the flow. Taking
 * the wrapper out of the positioning chain hands that job back to the section.
 * ------------------------------------------------------------------ */

.tb-sec .tb-raw.tb-raw,
.tb-sec .tb-raw .elementor-widget-container {
	position: static;
}
