:root {
	--targito-red: #c8102e;
	--targito-red-light: #fff0f2;
	--targito-dark: #232935;
	--targito-grey: #545e72;
	--targito-grey-light: #78849a;
	--targito-border: #e6e8ed;
}

/* Data types — Figma node 1029:14536, dark CTA remains a separate VC element. */
.targito-data-types {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	background: #fff;
	font-family: Outfit, sans-serif;
}

.targito-data-types__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: min(var(--wd-container-w, 1248px), 100%);
	margin: 0 auto;
	padding: 80px 15px 16px;
	box-sizing: border-box;
}

.targito-data-types__title {
	width: 100%;
	margin: 0;
	color: var(--targito-dark);
	font-size: 32px;
	line-height: 38px;
	font-weight: 700;
	text-align: center;
}

.targito-data-types__subtitle {
	width: min(640px, 100%);
	color: var(--targito-grey);
	font-size: 17px;
	line-height: 28px;
	font-weight: 400;
	text-align: center;
}

.targito-data-types__subtitle p {
	margin: 0;
}

.targito-data-types__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
	width: 100%;
	padding: 24px 0;
	box-sizing: border-box;
}

.targito-data-types__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	height: 224px;
	min-width: 0;
	padding: 25px;
	border: 1px solid var(--targito-border);
	border-radius: 6px;
	background: #fff;
	box-sizing: border-box;
}

.targito-data-types__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 6px;
	background: var(--targito-red-light);
}

.targito-data-types__icon img {
	display: block;
	width: 20px;
	height: 20.5px;
	object-fit: contain;
	transform: scaleY(-1);
}

.targito-data-types__card h3 {
	width: 100%;
	margin: 0;
	padding-top: 12px;
	color: var(--targito-dark);
	font-size: 15px;
	line-height: 24px;
	font-weight: 600;
}

.targito-data-types__card p {
	width: 100%;
	margin: 0;
	color: var(--targito-grey);
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
}

@media (max-width: 1024px) {
	.targito-data-types__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.targito-data-types__inner {
		padding: 64px 15px 16px;
	}

	.targito-data-types__title {
		font-size: 28px;
		line-height: 34px;
	}

	.targito-data-types__subtitle {
		font-size: 16px;
		line-height: 26px;
	}

	.targito-data-types__grid {
		grid-template-columns: 1fr;
	}

	.targito-data-types__card {
		height: auto;
		min-height: 200px;
	}
}

/* Benefit box (Vyhody projektu) - use as el_class on woodmart_info_box */
.targito-benefit-box.wd-info-box {
	background: #fff;
	border-color: var(--targito-border) !important;
	border-radius: 6px;
	padding: 25px 25px 43px;
}

.targito-benefit-box .info-box-icon {
	background-color: var(--targito-red-light) !important;
	border-radius: 6px !important;
	width: 40px !important;
	height: 40px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.targito-benefit-box .info-box-icon i,
.targito-benefit-box .info-box-icon svg {
	color: var(--targito-red) !important;
	fill: var(--targito-red) !important;
	font-size: 20px !important;
}

.targito-benefit-box .info-box-icon .info-svg-wrapper,
.targito-benefit-box .info-box-icon img {
	width: 20px !important;
	height: 20px !important;
	max-width: 20px !important;
	flex-shrink: 0 !important;
	display: block !important;
}

.targito-benefit-box .info-box-title {
	font-size: 15px;
	font-weight: 600;
	color: var(--targito-dark);
	margin-top: 12px;
}

.targito-benefit-box .info-box-inner,
.targito-benefit-box .info-box-content {
	font-size: 14px;
	line-height: 18px;
	color: var(--targito-grey);
}

/* Hero */
.targito-hero {
	display: flex;
	align-items: center;
	gap: 64px;
	width: 100%;
}

.targito-hero__col {
	flex: 1 1 0;
	min-width: 0;
}

.targito-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--targito-red-light);
	color: var(--targito-red);
	padding: 4px 12px;
	border-radius: 100px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.88px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.targito-hero__badge-icon {
	display: block;
	width: 10px;
	height: 10px;
	max-width: none;
	flex-shrink: 0;
}

.targito-hero__title {
	font-size: 48px;
	line-height: 52px;
	font-weight: 700;
	letter-spacing: -0.96px;
	color: var(--targito-dark);
	margin: 0 0 16px;
}

.targito-hero__subtitle {
	font-size: 20px;
	line-height: 28px;
	color: var(--targito-red);
	margin: 0 0 8px;
}

.targito-hero__desc {
	font-size: 19px;
	line-height: 30px;
	color: var(--targito-grey);
	max-width: 480px;
	margin: 0 0 16px;
}

.targito-hero__buttons {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.targito-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 48px;
	min-height: 48px;
	padding: 0 29px;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	text-decoration: none;
	box-sizing: border-box;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.targito-hero__btn--primary {
	background: var(--targito-red);
	color: #fff;
	border: 1px solid transparent;
}

.targito-hero__btn--primary:hover {
	background: #a30d25;
	color: #fff;
}

.targito-hero__btn--outline {
	background: transparent;
	color: var(--targito-dark);
	border: 1px solid #c8cdd7;
}

.targito-hero__btn--outline:hover {
	border-color: var(--targito-dark);
	color: var(--targito-dark);
}

.targito-hero__btn-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 17px;
	height: 17px;
	transition: transform .2s ease;
}

.targito-hero__btn-arrow img {
	display: block;
	width: 16.8px;
	height: 16.5px;
	max-width: none;
}

.targito-hero__btn--primary:hover .targito-hero__btn-arrow,
.targito-hero__btn--primary:focus .targito-hero__btn-arrow {
	transform: translateX(5px);
}

.targito-hero__image-wrap {
	position: relative;
	aspect-ratio: 528 / 396;
	border: 1px solid var(--targito-border);
	border-radius: 6px;
	background: #edeef2;
	overflow: hidden;
}

.targito-hero__image-wrap img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 6px;
	object-fit: cover;
}

.targito-hero__image-badge {
	position: absolute;
	top: 24px;
	right: 24px;
	z-index: 2;
	background: var(--targito-red);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.44px;
	padding: 6px 14px;
	border-radius: 100px;
	white-space: nowrap;
}

/* Dark CTA banner */
.targito-cta-dark {
	display: flex;
	align-items: center;
	gap: 32px;
	width: 100%;
	min-height: 144px;
	padding: 32px 40px;
	border-radius: 6px;
	background: var(--targito-dark);
	box-sizing: border-box;
}

.targito-cta-dark__icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 6px;
	background: #2d3444;
	flex: 0 0 80px;
}

.targito-cta-dark__icon {
	display: block;
	width: 36px;
	height: 36.5px;
	max-width: none;
}

.targito-cta-dark__copy {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	align-items: flex-start;
	gap: 3.25px;
	min-width: 0;
}

.targito-cta-dark__title {
	width: 100%;
	color: #fff;
	font-family: Outfit, sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 32px;
	word-break: break-word;
}

.targito-cta-dark__description {
	width: 100%;
	color: #a0a9b8;
	font-family: Outfit, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 22.4px;
	word-break: break-word;
}

.targito-cta-dark__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 15px 29px;
	border: 1px solid transparent;
	border-radius: 6px;
	background: var(--targito-red);
	color: #fff;
	font-family: Outfit, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	text-decoration: none;
	white-space: nowrap;
	flex: 0 0 auto;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.targito-cta-dark__button:hover,
.targito-cta-dark__button:focus {
	border-color: #a30d25;
	background: #a30d25;
	color: #fff;
}

.targito-cta-dark__button [aria-hidden="true"] {
	display: inline-block;
	transition: transform 0.2s ease;
}

.targito-cta-dark__button:hover [aria-hidden="true"],
.targito-cta-dark__button:focus [aria-hidden="true"] {
	transform: translateX(5px);
}

/* CDP data section */
.targito-cdp-data {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	background: #f7f8fa;
	font-family: Outfit, sans-serif;
}

.targito-cdp-data__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 64px;
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	padding: 80px 0 74.33px;
	box-sizing: border-box;
}

.targito-cdp-data__content,
.targito-cdp-data__visual {
	width: calc((100% - 64px) / 2);
	flex: 0 1 calc((100% - 64px) / 2);
	min-width: 0;
}

.targito-cdp-data__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	padding-bottom: 0.7px;
}

.targito-cdp-data__eyebrow {
	width: 100%;
	color: var(--targito-red);
	font-size: 11px;
	font-weight: 600;
	line-height: 17.6px;
	letter-spacing: 0.88px;
	text-transform: uppercase;
	word-break: break-word;
}

.targito-cdp-data__title {
	width: 100%;
	margin: 0;
	color: var(--targito-dark);
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
	word-break: break-word;
}

.targito-cdp-data__description {
	width: 100%;
	max-width: 580px;
	color: var(--targito-grey);
	font-size: 17px;
	font-weight: 400;
	line-height: 28px;
	word-break: break-word;
}

.targito-cdp-data__description p {
	margin: 0;
}

.targito-cdp-data__features {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	width: 100%;
	padding-top: 16px;
}

.targito-cdp-data__feature {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	width: 100%;
	padding: 17px;
	border: 1px solid transparent;
	border-radius: 6px;
	box-sizing: border-box;
}

.targito-cdp-data__feature > div {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	min-width: 0;
}

.targito-cdp-data__feature-dot {
	width: 8px;
	height: 8px;
	margin-top: 6px;
	border-radius: 4px;
	background: var(--targito-red);
	flex: 0 0 8px;
}

.targito-cdp-data__feature h3 {
	margin: 0;
	color: var(--targito-dark);
	font-size: 15px;
	font-weight: 600;
	line-height: 24px;
}

.targito-cdp-data__feature p {
	margin: 0;
	color: var(--targito-grey);
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
}

.targito-cdp-data__link {
	display: inline-flex;
	align-items: center;
	height: 30.4px;
	padding-top: 8px;
	padding-bottom: 0.9px;
	box-sizing: border-box;
	color: var(--targito-red);
	font-size: 14px;
	font-weight: 600;
	line-height: 22.4px;
	text-decoration: none;
	white-space: nowrap;
}

.targito-cdp-data__link [aria-hidden="true"] {
	display: inline-block;
	transition: transform 0.2s ease;
}

.targito-cdp-data__link:hover,
.targito-cdp-data__link:focus {
	color: #a30d25;
}

.targito-cdp-data__link:hover [aria-hidden="true"],
.targito-cdp-data__link:focus [aria-hidden="true"] {
	transform: translateX(5px);
}

.targito-cdp-data__visual {
	position: relative;
	aspect-ratio: 528 / 396;
	overflow: hidden;
	border-radius: 6px;
	box-sizing: border-box;
}

.targito-cdp-data__dashboard-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 6px;
}

/* Statistics section */
.targito-stats {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	background: #fff;
	font-family: Outfit, sans-serif;
}

.targito-stats__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: min(1200px, 100%);
	margin: 0 auto;
	padding: 80px 40px;
	box-sizing: border-box;
}

.targito-stats__title {
	width: 100%;
	margin: 0;
	color: var(--targito-dark);
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
	text-align: center;
}

.targito-stats__subtitle {
	width: min(640px, 100%);
	color: var(--targito-grey);
	font-size: 17px;
	font-weight: 400;
	line-height: 28px;
	text-align: center;
}

.targito-stats__subtitle p {
	margin: 0;
}

.targito-stats__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
	gap: 24px;
	width: 100%;
	padding-top: 24px;
	box-sizing: border-box;
}

.targito-stats__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	min-width: 0;
	min-height: 198px;
	padding: 25px 25px 26px;
	border: 1px solid var(--targito-border);
	border-radius: 6px;
	background: #fff;
	box-sizing: border-box;
	text-align: center;
}

.targito-stats__value {
	width: 100%;
	color: var(--targito-dark);
	font-size: 40px;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: -0.8px;
}

.targito-stats__description {
	width: 100%;
	margin: 0;
	color: var(--targito-grey);
	font-size: 14px;
	font-weight: 400;
	line-height: 19.6px;
}

.targito-stats__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	padding-top: 14px;
	color: var(--targito-red);
	font-size: 12px;
	font-weight: 600;
	line-height: 19.2px;
	text-align: center;
	text-decoration: none;
}

.targito-stats__link [aria-hidden="true"] {
	display: inline-block;
	transition: transform 0.2s ease;
}

.targito-stats__link:hover,
.targito-stats__link:focus {
	color: #a30d25;
}

.targito-stats__link:hover [aria-hidden="true"],
.targito-stats__link:focus [aria-hidden="true"] {
	transform: translateX(5px);
}

/* Customer profile section */
.targito-customer-profile {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	background: #f7f8fa;
	font-family: Outfit, sans-serif;
}

.targito-customer-profile__inner {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 64px;
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	padding: 80px 0;
	box-sizing: border-box;
}

.targito-customer-profile__content,
.targito-customer-profile__visual {
	width: calc((100% - 64px) / 2);
	flex: 0 1 calc((100% - 64px) / 2);
	min-width: 0;
}

.targito-customer-profile__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	padding-bottom: 16px;
}

.targito-customer-profile__eyebrow {
	width: 100%;
	color: var(--targito-red);
	font-size: 11px;
	font-weight: 600;
	line-height: 17.6px;
	letter-spacing: 0.88px;
	text-transform: uppercase;
}

.targito-customer-profile__title {
	width: 100%;
	margin: 0;
	color: var(--targito-dark);
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
}

.targito-customer-profile__description {
	width: 100%;
	max-width: 580px;
	color: var(--targito-grey);
	font-size: 17px;
	font-weight: 400;
	line-height: 28px;
}

.targito-customer-profile__description p {
	margin: 0;
}

.targito-customer-profile__card {
	width: 100%;
	padding: 17px 1px 1px;
	overflow: hidden;
	border: 1px solid var(--targito-border);
	border-radius: 6px;
	background: #f7f8fa;
	box-sizing: border-box;
}

.targito-customer-profile__card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 16px 24px;
	background: var(--targito-dark);
	box-sizing: border-box;
	color: #a0a9b8;
	font-size: 12px;
	font-weight: 400;
	line-height: 19.2px;
}

.targito-customer-profile__card-header > span {
	width: 8px;
	height: 8px;
	border-radius: 4px;
	background: var(--targito-red);
	flex: 0 0 8px;
}

.targito-customer-profile__rows {
	width: 100%;
	padding: 16px 24px;
	box-sizing: border-box;
}

.targito-customer-profile__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	padding: 6px 0 7px;
	border-bottom: 1px solid var(--targito-border);
	box-sizing: border-box;
	font-size: 13px;
	line-height: 20.8px;
}

.targito-customer-profile__row.is-last {
	padding-bottom: 6px;
	border-bottom: 0;
}

.targito-customer-profile__label {
	min-width: 0;
	color: var(--targito-grey);
	font-weight: 400;
}

.targito-customer-profile__row-value {
	color: var(--targito-dark);
	font-weight: 500;
	text-align: right;
}

.targito-customer-profile__row-value--badge {
	padding: 2px 10px;
	border-radius: 100px;
	background: var(--targito-red-light);
	color: #a50d26;
	font-size: 11px;
	font-weight: 600;
	line-height: 17.6px;
}

.targito-customer-profile__row-value--accent {
	color: var(--targito-red);
	font-weight: 700;
}

.targito-customer-profile__visual {
	position: relative;
	aspect-ratio: 528 / 396;
	overflow: hidden;
	border: 1px solid var(--targito-border);
	border-radius: 6px;
	box-sizing: border-box;
}

.targito-customer-profile__visual img {
	position: absolute;
	top: -50.13%;
	left: 0;
	display: block;
	width: 100%;
	height: 200.25%;
	max-width: none;
	object-fit: cover;
}

.targito-customer-profile__visual > span {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(200, 16, 46, 0.12) 0%, rgba(200, 16, 46, 0) 55%);
	pointer-events: none;
}

/* Possibilities section */
.targito-possibilities {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	background: #fff;
	font-family: Outfit, sans-serif;
}

.targito-possibilities__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	width: min(1200px, 100%);
	margin: 0 auto;
	padding: 80px 40px;
	box-sizing: border-box;
}

.targito-possibilities__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: 100%;
	text-align: center;
}

.targito-possibilities__eyebrow {
	width: 100%;
	color: var(--targito-red);
	font-size: 11px;
	font-weight: 600;
	line-height: 17.6px;
	letter-spacing: 0.88px;
	text-transform: uppercase;
}

.targito-possibilities__title {
	width: min(310px, 100%);
	margin: 0;
	color: var(--targito-dark);
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
	text-align: center;
}

.targito-possibilities__description {
	width: min(640px, 100%);
	color: var(--targito-grey);
	font-size: 17px;
	font-weight: 400;
	line-height: 28px;
	text-align: center;
}

.targito-possibilities__description p {
	margin: 0;
}

.targito-possibilities__list {
	display: flex;
	align-content: flex-start;
	align-items: center;
	justify-content: center;
	gap: 8px 4px;
	width: 100%;
	min-height: 158px;
	padding-top: 16px;
	box-sizing: border-box;
	flex-wrap: wrap;
}

.targito-possibilities__pill {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 8px 17px;
	border: 1px solid var(--targito-border);
	border-radius: 100px;
	background: #fff;
	box-sizing: border-box;
	color: var(--targito-grey);
	font-size: 15px;
	font-weight: 500;
	line-height: 24px;
	white-space: nowrap;
}

.targito-possibilities__button-wrap {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	padding-top: 8px;
}

.targito-possibilities__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 29px;
	border: 1px solid #c8cdd7;
	border-radius: 6px;
	background: #fff;
	box-sizing: border-box;
	color: var(--targito-dark);
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.targito-possibilities__button [aria-hidden="true"] {
	display: inline-block;
	transition: transform 0.2s ease;
}

.targito-possibilities__button:hover,
.targito-possibilities__button:focus {
	border-color: var(--targito-dark);
	color: var(--targito-dark);
}

.targito-possibilities__button:hover [aria-hidden="true"],
.targito-possibilities__button:focus [aria-hidden="true"] {
	transform: translateX(5px);
}

/* Testimonial section */
.targito-testimonial {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	padding: 80px max(16px, calc((100vw - 1120px) / 2));
	background: #f7f8fa;
	box-sizing: border-box;
	font-family: Outfit, sans-serif;
}

.targito-testimonial__card {
	display: flex;
	align-items: flex-start;
	gap: 32px;
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding: 41px;
	border: 1px solid var(--targito-border);
	border-radius: 6px;
	background: #f7f8fa;
	box-sizing: border-box;
}

.targito-testimonial__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	padding: 8px;
	border-radius: 6px;
	background: var(--targito-dark);
	box-sizing: border-box;
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	line-height: 24px;
	letter-spacing: -0.3px;
	text-align: center;
	white-space: nowrap;
	flex: 0 0 80px;
}

.targito-testimonial__logo strong {
	color: #e8243b;
	font-weight: 800;
}

.targito-testimonial__logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.targito-testimonial__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	min-width: 0;
}

.targito-testimonial__quote {
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	color: var(--targito-dark);
	font-size: 23.8px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
}

.targito-testimonial__quote > span {
	color: var(--targito-red);
}

.targito-testimonial__author {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
}

.targito-testimonial__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	background: #e1e3ea;
	color: var(--targito-grey);
	font-size: 13px;
	font-weight: 700;
	line-height: 20.8px;
	text-align: center;
	flex: 0 0 40px;
}

.targito-testimonial__author-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 62.4px;
}

.targito-testimonial__name {
	color: var(--targito-dark);
	font-size: 14px;
	font-weight: 600;
	line-height: 22.4px;
}

.targito-testimonial__role {
	color: var(--targito-grey);
	font-size: 13px;
	font-weight: 400;
	line-height: 20.8px;
}

.targito-testimonial__company {
	color: var(--targito-grey-light);
	font-size: 12px;
	font-weight: 400;
	line-height: 19.2px;
}

/* Dark integrations section */
.targito-integrations-dark {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	overflow: hidden;
	background: #0e1119;
	font-family: Outfit, sans-serif;
}

.targito-integrations-dark::before {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 1357.6px 370.88px at 50% 50%, rgba(255, 255, 255, 0.05) 3.2141%, rgba(255, 255, 255, 0) 3.2141%);
	-webkit-mask: url('../images/integrations/gradient-mask.svg') center / 100% 100% no-repeat;
	mask: url('../images/integrations/gradient-mask.svg') center / 100% 100% no-repeat;
	opacity: 0.6;
	content: '';
	pointer-events: none;
}

.targito-integrations-dark__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: min(1200px, 100%);
	margin: 0 auto;
	padding: 80px 40px;
	box-sizing: border-box;
}

.targito-integrations-dark__title {
	width: 100%;
	margin: 0;
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
	text-align: center;
}

.targito-integrations-dark__description {
	width: min(560px, 100%);
	color: #a0a9b8;
	font-size: 17px;
	font-weight: 400;
	line-height: 28px;
	text-align: center;
}

.targito-integrations-dark__description p {
	margin: 0;
}

.targito-integrations-dark__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 12px;
	width: 100%;
	padding-top: 24px;
	box-sizing: border-box;
}

.targito-integrations-dark__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5.25px;
	min-width: 0;
	aspect-ratio: 1;
	padding: 1px;
	border: 1px solid #2d3444;
	border-radius: 6px;
	background: var(--targito-dark);
	box-sizing: border-box;
}

.targito-integrations-dark__icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 6px;
	background: #3a4255;
	flex: 0 0 28px;
}

.targito-integrations-dark__icon-box img {
	display: block;
	width: 14px;
	height: 14px;
	object-fit: contain;
}

.targito-integrations-dark__icon-box img.is-figma-icon {
	transform: scaleY(-1);
}

.targito-integrations-dark__label {
	width: 100%;
	padding: 0 4px;
	box-sizing: border-box;
	color: var(--targito-grey-light);
	font-size: 9px;
	font-weight: 400;
	line-height: 14.4px;
	text-align: center;
	white-space: nowrap;
}

.targito-integrations-dark__button-wrap {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	padding-top: 24px;
}

.targito-integrations-dark__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 29px;
	border: 1px solid transparent;
	border-radius: 6px;
	background: var(--targito-red);
	box-sizing: border-box;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.targito-integrations-dark__button [aria-hidden="true"] {
	display: inline-block;
	transition: transform 0.2s ease;
}

.targito-integrations-dark__button:hover,
.targito-integrations-dark__button:focus {
	border-color: #a30d25;
	background: #a30d25;
	color: #fff;
}

.targito-integrations-dark__button:hover [aria-hidden="true"],
.targito-integrations-dark__button:focus [aria-hidden="true"] {
	transform: translateX(5px);
}

/* Case study highlight */
.targito-case-study {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	background: #f7f8fa;
	font-family: Outfit, sans-serif;
}

.targito-case-study__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 64px;
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	padding: 80px 0;
	box-sizing: border-box;
}

.targito-case-study__metric-card,
.targito-case-study__content {
	width: calc((100% - 64px) / 2);
	flex: 0 1 calc((100% - 64px) / 2);
	min-width: 0;
}

.targito-case-study__metric-card {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: 6px;
	background: var(--targito-dark);
	background-position: center;
	background-size: cover;
}

.targito-case-study__metric-card.has-image::before {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, rgba(35, 41, 53, .2), rgba(35, 41, 53, .72));
}

.targito-case-study__metric-copy {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.targito-case-study__metric {
	color: #fff;
	font-size: 72px;
	font-weight: 700;
	line-height: 72px;
	letter-spacing: -2.16px;
	text-align: center;
	white-space: nowrap;
}

.targito-case-study__metric-label {
	color: #a0a9b8;
	font-size: 13px;
	font-weight: 400;
	line-height: 20.8px;
	text-align: center;
	white-space: nowrap;
}

.targito-case-study__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	padding-bottom: 0.7px;
}

.targito-case-study__eyebrow {
	width: 100%;
	color: var(--targito-red);
	font-size: 11px;
	font-weight: 600;
	line-height: 17.6px;
	letter-spacing: 0.88px;
	text-transform: uppercase;
}

.targito-case-study__title {
	width: 100%;
	margin: 0;
	color: var(--targito-dark);
	font-size: 28px;
	font-weight: 700;
	line-height: 34px;
}

.targito-case-study__description {
	width: 100%;
	color: var(--targito-grey);
	font-size: 17px;
	font-weight: 400;
	line-height: 28px;
}

.targito-case-study__description p {
	margin: 0;
}

.targito-case-study__link {
	display: inline-flex;
	align-items: center;
	height: 32.9px;
	padding-top: 10.5px;
	padding-bottom: 0.9px;
	box-sizing: border-box;
	color: var(--targito-red);
	font-size: 14px;
	font-weight: 600;
	line-height: 22.4px;
	text-decoration: none;
	white-space: nowrap;
}

.targito-case-study__link [aria-hidden="true"] {
	display: inline-block;
	transition: transform 0.2s ease;
}

.targito-case-study__link:hover,
.targito-case-study__link:focus {
	color: #a30d25;
}

.targito-case-study__link:hover [aria-hidden="true"],
.targito-case-study__link:focus [aria-hidden="true"] {
	transform: translateX(5px);
}

/* Reviews section */
.targito-reviews {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	background: #fff;
	font-family: Outfit, sans-serif;
}

.targito-reviews__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: min(1200px, 100%);
	margin: 0 auto;
	padding: 80px 40px;
	box-sizing: border-box;
}

.targito-reviews__title {
	width: 100%;
	margin: 0;
	color: var(--targito-dark);
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
	text-align: center;
}

.targito-reviews__subtitle {
	width: min(640px, 100%);
	color: var(--targito-grey);
	font-size: 17px;
	font-weight: 400;
	line-height: 28px;
	text-align: center;
}

.targito-reviews__subtitle p {
	margin: 0;
}

.targito-reviews__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
	gap: 24px;
	width: 100%;
	padding-top: 24px;
	box-sizing: border-box;
}

.targito-reviews__carousel {
	position: relative;
	width: 100%;
}

.targito-reviews__carousel.is-carousel {
	padding-top: 24px;
}

.targito-reviews__carousel-viewport {
	width: 100%;
}

.targito-reviews__carousel.is-carousel .targito-reviews__carousel-viewport {
	overflow: hidden;
}

.targito-reviews__carousel.is-carousel .targito-reviews__grid {
	display: flex;
	align-items: stretch;
	gap: 24px;
	padding-top: 0;
	transition: transform 0.35s ease;
	will-change: transform;
}

.targito-reviews__carousel.is-carousel .targito-reviews__card {
	width: auto;
	flex: 0 0 calc((100% - (24px * (var(--reviews-per-view, 3) - 1))) / var(--reviews-per-view, 3));
}

.targito-reviews__carousel-button {
	position: absolute;
	top: calc(50% + 12px);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid #c8cdd7;
	border-radius: 20px;
	background: #fff;
	color: var(--targito-dark);
	font-family: Arial, sans-serif;
	font-size: 18px;
	line-height: 1;
	transform: translateY(-50%);
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.targito-reviews__carousel-button--prev {
	left: -56px;
}

.targito-reviews__carousel-button--next {
	right: -56px;
}

.targito-reviews__carousel-button:hover,
.targito-reviews__carousel-button:focus {
	border-color: var(--targito-dark);
	background: #f7f8fa;
}

.targito-reviews__carousel-button:disabled {
	opacity: 0;
	pointer-events: none;
}

.targito-reviews__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	min-width: 0;
	min-height: 223px;
	padding: 24.25px 25px 24.99px;
	border: 1px solid var(--targito-border);
	border-radius: 6px;
	background: #fff;
	box-sizing: border-box;
}

.targito-reviews__stars {
	width: 100%;
	color: #d8dde5;
	font-family: Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 22.4px;
	letter-spacing: 2px;
}

.targito-reviews__stars span {
	color: #f59e0b;
}

.targito-reviews__text {
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	color: var(--targito-grey);
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: -0.15px;
}

.targito-reviews__author {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	margin-top: auto;
	padding-top: 4px;
}

.targito-reviews__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 18px;
	background: #e1e3ea;
	color: var(--targito-grey);
	font-size: 12px;
	font-weight: 700;
	line-height: 19.2px;
	text-align: center;
	flex: 0 0 36px;
}

.targito-reviews__author-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 43.2px;
}

.targito-reviews__name {
	color: var(--targito-dark);
	font-size: 14px;
	font-weight: 600;
	line-height: 22.4px;
}

.targito-reviews__company {
	color: var(--targito-grey-light);
	font-size: 13px;
	font-weight: 400;
	line-height: 20.8px;
}

.targito-reviews__button-wrap {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	padding-top: 16.01px;
}

.targito-reviews__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 29px;
	border: 1px solid #c8cdd7;
	border-radius: 6px;
	background: #fff;
	box-sizing: border-box;
	color: var(--targito-dark);
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.targito-reviews__button [aria-hidden="true"] {
	display: inline-block;
	transition: transform 0.2s ease;
}

.targito-reviews__button:hover,
.targito-reviews__button:focus {
	border-color: var(--targito-dark);
	color: var(--targito-dark);
}

.targito-reviews__button:hover [aria-hidden="true"],
.targito-reviews__button:focus [aria-hidden="true"] {
	transform: translateX(5px);
}

/* FAQ section */
.targito-faq {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	background: #f7f8fa;
	font-family: Outfit, sans-serif;
}

.targito-faq__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
	gap: 64px;
	width: min(1120px, calc(100% - 32px));
	min-height: 358px;
	margin: 0 auto;
	padding: 80px 0;
	box-sizing: content-box;
}

.targito-faq__intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.targito-faq__eyebrow {
	width: 100%;
	color: var(--targito-red);
	font-size: 11px;
	font-weight: 600;
	line-height: 17.6px;
	letter-spacing: 0.88px;
	text-transform: uppercase;
}

.targito-faq__title {
	width: 100%;
	margin: 0;
	color: var(--targito-dark);
	font-size: 24px;
	font-weight: 700;
	line-height: 38.4px;
}

.targito-faq__description {
	width: 100%;
	color: var(--targito-grey);
	font-size: 17px;
	font-weight: 400;
	line-height: 28px;
}

.targito-faq__description p,
.targito-faq__answer p {
	margin: 0;
}

.targito-faq__link {
	display: inline-flex;
	align-items: center;
	height: 30.4px;
	padding-top: 8px;
	padding-bottom: 0.9px;
	box-sizing: border-box;
	color: var(--targito-red);
	font-size: 14px;
	font-weight: 600;
	line-height: 22.4px;
	text-decoration: none;
	white-space: nowrap;
}

.targito-faq__link [aria-hidden="true"] {
	display: inline-block;
	transition: transform 0.2s ease;
}

.targito-faq__link:hover,
.targito-faq__link:focus {
	color: #a30d25;
}

.targito-faq__link:hover [aria-hidden="true"],
.targito-faq__link:focus [aria-hidden="true"] {
	transform: translateX(5px);
}

.targito-faq__items {
	width: 100%;
}

.targito-faq__item {
	width: 100%;
	border-bottom: 1px solid #edeef2;
}

.targito-faq__item:first-child {
	border-top: 1px solid #edeef2;
}

.targito-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	padding: 16px 0;
	box-sizing: border-box;
	color: var(--targito-dark);
	font-size: 15px;
	font-weight: 600;
	line-height: 24px;
	cursor: pointer;
	list-style: none;
}

.targito-faq__question::-webkit-details-marker {
	display: none;
}

.targito-faq__question > span:first-child {
	min-width: 0;
}

.targito-faq__icons {
	position: relative;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
}

.targito-faq__icon {
	position: absolute;
	inset: 0;
	display: block;
	width: 16px;
	height: 16px;
}

.targito-faq__icon--closed {
	transform: scaleY(-1);
}

.targito-faq__icon--open {
	display: none;
	transform: rotate(180deg) scaleY(-1);
}

.targito-faq__item[open] .targito-faq__icon--closed {
	display: none;
}

.targito-faq__item[open] .targito-faq__icon--open {
	display: block;
}

.targito-faq__answer {
	width: 100%;
	padding: 12px 0 16px;
	box-sizing: border-box;
	color: var(--targito-grey);
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
}

/* Related articles section */
.targito-related-articles {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	background: #fff;
	font-family: Outfit, sans-serif;
}

.targito-related-articles__inner {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	padding: 80px 0;
	box-sizing: content-box;
}

.targito-related-articles__heading {
	margin: 0 0 40px;
	color: var(--targito-dark);
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
}

.targito-related-articles__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.targito-related-articles__carousel {
	position: relative;
	width: 100%;
}

.targito-related-articles__viewport {
	width: 100%;
}

.targito-related-articles__carousel.is-carousel .targito-related-articles__viewport {
	overflow: hidden;
}

.targito-related-articles__carousel.is-carousel .targito-related-articles__grid {
	display: flex;
	align-items: stretch;
	gap: 24px;
	transition: transform 0.35s ease;
	will-change: transform;
}

.targito-related-articles__carousel.is-carousel .targito-related-articles__card {
	width: auto;
	flex: 0 0 calc((100% - (24px * (var(--related-articles-per-view, 3) - 1))) / var(--related-articles-per-view, 3));
}

.targito-related-articles__carousel-button {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid #c8cdd7;
	border-radius: 20px;
	background: #fff;
	color: var(--targito-dark);
	font-family: Arial, sans-serif;
	font-size: 18px;
	line-height: 1;
	transform: translateY(-50%);
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.targito-related-articles__carousel-button--prev {
	left: -56px;
}

.targito-related-articles__carousel-button--next {
	right: -56px;
}

.targito-related-articles__carousel-button:hover,
.targito-related-articles__carousel-button:focus {
	border-color: var(--targito-dark);
	background: #f7f8fa;
}

.targito-related-articles__carousel-button:disabled {
	opacity: 0;
	pointer-events: none;
}

.targito-related-articles__card {
	min-width: 0;
	margin: 0;
	border: 1px solid #e1e3ea;
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.targito-related-articles__link {
	display: flex;
	height: 100%;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
}

.targito-related-articles__media {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #edeef2;
}

.targito-related-articles__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease;
}

.targito-related-articles__content {
	display: flex;
	min-height: 165px;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	padding: 23px 20px 24px;
	box-sizing: border-box;
}

.targito-related-articles__category {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 3px 10px;
	border-radius: 100px;
	background: #fff0f2;
	box-sizing: border-box;
	color: #a50d26;
	font-size: 11px;
	font-weight: 600;
	line-height: 17.6px;
	letter-spacing: 0.66px;
	text-transform: uppercase;
}

.targito-related-articles__title {
	display: -webkit-box;
	width: 100%;
	margin: 12px 0 0;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: var(--targito-dark);
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
}

.targito-related-articles__meta {
	width: 100%;
	margin-top: auto;
	padding-top: 7px;
	color: #78849a;
	font-size: 14px;
	font-weight: 400;
	line-height: 22.4px;
}

.targito-related-articles__card:hover,
.targito-related-articles__card:focus-within {
	border-color: #c8cdd7;
	box-shadow: 0 10px 28px rgba(35, 41, 53, 0.08);
	transform: translateY(-2px);
}

.targito-related-articles__card:hover .targito-related-articles__media img,
.targito-related-articles__card:focus-within .targito-related-articles__media img {
	transform: scale(1.025);
}

@media (max-width: 991px) {
	.targito-related-articles__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Final CTA section */
.targito-final-cta {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	background: linear-gradient(135deg, #c8102e 0%, #a50d26 100%);
	font-family: Outfit, sans-serif;
}

.targito-final-cta__inner {
	display: flex;
	width: min(1200px, 100%);
	min-height: 416px;
	margin: 0 auto;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 32px;
	padding: 120px 40px;
	box-sizing: border-box;
}

.targito-final-cta__title {
	width: 100%;
	margin: 0;
	color: #fff;
	font-size: 40px;
	font-weight: 700;
	line-height: 46px;
	letter-spacing: -0.8px;
	text-align: center;
}

.targito-final-cta__button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 30px;
	border: 2px solid rgba(255, 255, 255, 0.55);
	border-radius: 6px;
	box-sizing: border-box;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.targito-final-cta__arrow {
	display: block;
	width: 16.8px;
	height: 16.5px;
	flex: 0 0 16.8px;
	transition: transform 0.2s ease;
}

.targito-final-cta__arrow img {
	display: block;
	width: 16.8px;
	height: 16.5px;
	max-width: none;
}

.targito-final-cta__button:hover,
.targito-final-cta__button:focus {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.targito-final-cta__button:hover .targito-final-cta__arrow,
.targito-final-cta__button:focus .targito-final-cta__arrow {
	transform: translateX(5px);
}

/* Scroll reveal motion */
html.targito-motion-ready .targito-reveal {
	opacity: 0;
	transform: translate3d(0, 24px, 0);
	transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}

html.targito-motion-ready .targito-reveal .targito-reveal-item {
	opacity: 0;
	transform: translate3d(0, 18px, 0);
	transition: opacity 0.55s ease var(--targito-reveal-delay, 100ms), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) var(--targito-reveal-delay, 100ms);
	will-change: opacity, transform;
}

html.targito-motion-ready .targito-reveal.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

html.targito-motion-ready .targito-reveal.is-visible .targito-reveal-item {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
	html.targito-motion-ready .targito-reveal,
	html.targito-motion-ready .targito-reveal .targito-reveal-item {
		opacity: 1;
		transform: none;
		transition: none;
	}
}


@media (max-width: 767px) {
	.targito-hero {
		flex-direction: column;
	}

	.targito-hero__title {
		font-size: 34px;
		line-height: 40px;
	}

	.targito-hero__desc {
		max-width: 100%;
	}

	.targito-cta-dark {
		flex-direction: column;
		align-items: stretch;
		gap: 20px;
		padding: 24px;
	}

	.targito-cta-dark__icon-box {
		width: 64px;
		height: 64px;
		flex-basis: 64px;
	}

	.targito-cta-dark__button {
		width: 100%;
	}

	.targito-cdp-data__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 48px;
		padding: 64px 0;
	}

	.targito-cdp-data__content,
	.targito-cdp-data__visual {
		width: 100%;
		flex-basis: auto;
	}

	.targito-cdp-data__title {
		font-size: 28px;
		line-height: 34px;
	}

	.targito-cdp-data__description {
		font-size: 16px;
		line-height: 26px;
	}

	.targito-cdp-data__feature {
		padding-right: 0;
		padding-left: 0;
	}

	.targito-stats__inner {
		padding: 64px 16px;
	}

	.targito-stats__title {
		font-size: 28px;
		line-height: 34px;
	}

	.targito-stats__subtitle {
		font-size: 16px;
		line-height: 26px;
	}

	.targito-customer-profile__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 48px;
		padding: 64px 0;
	}

	.targito-customer-profile__content,
	.targito-customer-profile__visual {
		width: 100%;
		flex-basis: auto;
	}

	.targito-customer-profile__content {
		padding-bottom: 0;
	}

	.targito-customer-profile__title {
		font-size: 28px;
		line-height: 34px;
	}

	.targito-customer-profile__description {
		font-size: 16px;
		line-height: 26px;
	}

	.targito-customer-profile__rows {
		padding-right: 16px;
		padding-left: 16px;
	}

	.targito-customer-profile__row {
		gap: 12px;
	}

	.targito-possibilities__inner {
		padding: 64px 16px;
	}

	.targito-possibilities__title {
		font-size: 28px;
		line-height: 34px;
	}

	.targito-possibilities__description {
		font-size: 16px;
		line-height: 26px;
	}

	.targito-possibilities__list {
		min-height: 0;
		padding-top: 8px;
	}

	.targito-possibilities__pill {
		min-height: 38px;
		padding: 6px 13px;
		font-size: 14px;
		line-height: 24px;
	}

	.targito-testimonial {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.targito-testimonial__card {
		flex-direction: column;
		gap: 24px;
		padding: 24px;
	}

	.targito-testimonial__quote {
		font-size: 20px;
		line-height: 29px;
	}

	.targito-integrations-dark__inner {
		padding: 64px 16px;
	}

	.targito-integrations-dark__title {
		font-size: 28px;
		line-height: 34px;
	}

	.targito-integrations-dark__description {
		font-size: 16px;
		line-height: 26px;
	}

	.targito-integrations-dark__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.targito-integrations-dark__card {
		aspect-ratio: auto;
		min-height: 130px;
	}

	.targito-case-study__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 48px;
		padding: 64px 0;
	}

	.targito-case-study__metric-card,
	.targito-case-study__content {
		width: 100%;
		flex-basis: auto;
	}

	.targito-case-study__metric {
		font-size: 54px;
		line-height: 58px;
		letter-spacing: -1.62px;
	}

	.targito-case-study__description {
		font-size: 16px;
		line-height: 26px;
	}

	.targito-reviews__inner {
		padding: 64px 16px;
	}

	.targito-reviews__title {
		font-size: 28px;
		line-height: 34px;
	}

	.targito-reviews__subtitle {
		font-size: 16px;
		line-height: 26px;
	}

	.targito-reviews__carousel-button--prev {
		left: calc(50% - 48px);
	}

	.targito-reviews__carousel-button--next {
		right: calc(50% - 48px);
	}

	.targito-reviews__carousel.is-carousel {
		padding-bottom: 56px;
	}

	.targito-reviews__carousel-button {
		top: auto;
		bottom: 0;
		transform: none;
	}

	.targito-faq__inner {
		display: flex;
		flex-direction: column;
		gap: 48px;
		min-height: 0;
		padding: 64px 0;
		box-sizing: border-box;
	}

	.targito-faq__title {
		line-height: 32px;
	}

	.targito-faq__description {
		font-size: 16px;
		line-height: 26px;
	}

	.targito-faq__question {
		align-items: flex-start;
		gap: 16px;
	}

	.targito-related-articles__inner {
		padding: 64px 0;
	}

	.targito-related-articles__heading {
		margin-bottom: 32px;
		font-size: 28px;
		line-height: 34px;
	}

	.targito-related-articles__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.targito-related-articles__carousel.is-carousel {
		padding-bottom: 56px;
	}

	.targito-related-articles__carousel-button {
		top: auto;
		bottom: 0;
		transform: none;
	}

	.targito-related-articles__carousel-button--prev {
		left: calc(50% - 48px);
	}

	.targito-related-articles__carousel-button--next {
		right: calc(50% - 48px);
	}

	.targito-final-cta__inner {
		min-height: 0;
		padding: 80px 0;
	}

	.targito-final-cta__title {
		font-size: 32px;
		line-height: 38px;
		letter-spacing: -0.64px;
	}

	.targito-final-cta__button {
		max-width: 100%;
	}
}

/* CDP page: align every full-width custom section with the active Woodmart container. */
.page-id-11957 :is(
	.targito-data-types__inner,
	.targito-cdp-data__inner,
	.targito-stats__inner,
	.targito-customer-profile__inner,
	.targito-possibilities__inner,
	.targito-integrations-dark__inner,
	.targito-case-study__inner,
	.targito-reviews__inner,
	.targito-faq__inner,
	.targito-related-articles__inner,
	.targito-final-cta__inner
) {
	width: min(var(--wd-container-w, 1248px), 100%);
	padding-right: 15px;
	padding-left: 15px;
	box-sizing: border-box;
}

.page-id-11957 .targito-testimonial {
	padding-right: max(15px, calc((100vw - var(--wd-container-w, 1248px)) / 2 + 15px));
	padding-left: max(15px, calc((100vw - var(--wd-container-w, 1248px)) / 2 + 15px));
}

.page-id-11957 .targito-testimonial__card {
	max-width: none;
}

/* Trusted companies — Figma node 1029:13942. */
.targito-logos {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	border-top: 1px solid var(--targito-border);
	border-bottom: 1px solid var(--targito-border);
	background: #f7f8fa;
	font-family: Outfit, sans-serif;
}

.targito-logos__inner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 16px;
	width: min(var(--wd-container-w, 1248px), 100%);
	min-height: 0;
	margin: 0 auto;
	padding: 21px 15px;
	box-sizing: border-box;
}

.targito-logos__label {
	flex: 0 0 auto;
	padding-right: 16px;
	color: var(--targito-grey-light);
	font-size: 12px;
	line-height: 19.2px;
	font-weight: 500;
	white-space: nowrap;
}

.targito-logos__list {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	flex-wrap: wrap;
	gap: 0 32px;
	min-width: 0;
}

.targito-logos__item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	height: 42px;
	color: var(--targito-grey-light);
	font-size: 13px;
	line-height: 20.8px;
	font-weight: 600;
	letter-spacing: .26px;
	text-decoration: none;
}

.targito-logos__item img {
	display: block;
	width: auto;
	max-width: 240px;
	height: auto;
	max-height: 42px;
	object-fit: contain;
	filter: grayscale(1);
	opacity: .62;
	transition: filter .2s ease, opacity .2s ease;
}

a.targito-logos__item:hover img,
a.targito-logos__item:focus img {
	filter: grayscale(0);
	opacity: 1;
}

@media (max-width: 767px) {
	.targito-logos__inner {
		align-items: flex-start;
		gap: 14px;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.targito-logos__label {
		width: 100%;
		padding-right: 0;
	}

	.targito-logos__list {
		gap: 14px 24px;
	}
}

/* Interconnected platform — Figma node 1029:14461. */
.targito-feature-intro {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	padding: 80px 15px;
	background: #f7f8fa;
	font-family: Outfit, sans-serif;
	box-sizing: border-box;
}

.targito-feature-intro__inner {
	display: grid;
	grid-template-columns: 480px minmax(0, 1fr);
	align-items: center;
	gap: 112px;
	width: min(var(--wd-container-w, 1248px), 100%);
	margin: 0 auto;
}

.targito-feature-intro__visual {
	position: relative;
	width: 480px;
	height: 480px;
	padding: 1px;
	overflow: hidden;
	border: 1px solid #e6e8ed;
	border-radius: 6px;
	background: #edeef2;
	box-sizing: border-box;
}

.targito-feature-intro__visual > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.targito-feature-intro__pulse {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 84px;
	height: 84px;
	margin: -42px 0 0 -42px;
	border: 2px solid #c8102e;
	border-radius: 50%;
	opacity: .5;
	pointer-events: none;
	box-sizing: border-box;
}

.targito-feature-intro.has-diagram-animation .targito-feature-intro__pulse {
	display: block;
	animation: targito-feature-intro-pulse 3s linear infinite;
}

@keyframes targito-feature-intro-pulse {
	0%, 100% {
		width: 84px;
		height: 84px;
		margin: -42px 0 0 -42px;
		opacity: .5;
	}
	50% {
		width: 104px;
		height: 104px;
		margin: -52px 0 0 -52px;
		opacity: 0;
	}
}

.targito-feature-intro__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-bottom: 32px;
}

.targito-feature-intro__eyebrow {
	margin-bottom: 16px;
	color: #c8102e;
	font-size: 11px;
	line-height: 17.6px;
	font-weight: 600;
	letter-spacing: .88px;
	text-transform: uppercase;
}

.targito-feature-intro__title {
	margin: 0 0 16px;
	color: #232935;
	font-size: 32px;
	line-height: 38px;
	font-weight: 700;
}

.targito-feature-intro__lead,
.targito-feature-intro__description {
	width: 100%;
	color: #545e72;
	font-weight: 400;
}

.targito-feature-intro__lead {
	font-size: 19px;
	line-height: 30px;
}

.targito-feature-intro__description {
	max-width: 580px;
	padding-top: 8px;
	font-size: 17px;
	line-height: 28px;
}

.targito-feature-intro__lead p,
.targito-feature-intro__description p {
	margin: 0;
	font: inherit;
	color: inherit;
}

@media (max-width: 1199px) {
	.targito-feature-intro__inner {
		grid-template-columns: minmax(360px, 480px) minmax(0, 528px);
		gap: clamp(48px, 7vw, 88px);
	}

	.targito-feature-intro__visual {
		width: 100%;
		height: auto;
		aspect-ratio: 1;
	}
}

@media (max-width: 767px) {
	.targito-feature-intro {
		padding-top: 56px;
		padding-bottom: 56px;
	}

	.targito-feature-intro__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.targito-feature-intro__visual {
		max-width: 480px;
		margin: 0 auto;
	}

	.targito-feature-intro__content {
		padding-bottom: 0;
	}

	.targito-feature-intro__title {
		font-size: 28px;
		line-height: 34px;
	}

	.targito-feature-intro__lead {
		font-size: 17px;
		line-height: 27px;
	}

	.targito-feature-intro__description {
		font-size: 16px;
		line-height: 26px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.targito-feature-intro.has-diagram-animation .targito-feature-intro__pulse {
		animation: none;
		display: none;
	}
}
