/* ----------------------------------------
   Hero
---------------------------------------- */
.tech-human-page .site-content {
	padding: 0;
}

.page-template-template-tech-human-php .top-bar {
	background: var(--th-navy);
	border-bottom-color: var(--th-navy);
}

.page-template-template-tech-human-php .top-bar__message,
.page-template-template-tech-human-php .top-bar__link {
	color: var(--th-white);
}

.th-hero {
	position: relative;
	padding: 100px 0 90px;
	overflow: hidden;
	background: var(--th-navy);
	aspect-ratio: 1920 / 881;
	min-height: 480px;
}

.th-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.th-hero__media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.th-hero__content {
	position: relative;
	z-index: 2;
}

.th-hero__subtitle strong {
	font-weight: 700;
}

.th-hero__eyebrow {
	color: var(--th-white);
	font-weight: 400;
	font-size: 20px;
	letter-spacing: 0.05em;
	margin-bottom: 16px;
}

.th-hero h1 {
	color: var(--th-white);
	font-size: 60px;
	line-height: 1.15;
}

.th-hero__subtitle {
	color: var(--th-white);
	font-size: 20px;
	font-weight: 500;
	margin: 20px 0 32px;
	opacity: 0.95;
	max-width: 590px;
}

/* ----------------------------------------
   Manifesto
---------------------------------------- */
.th-manifesto {
	background: var(--th-gray-100);
	padding: 80px 0;
}

.th-manifesto__inner.container {
	max-width: 1560px;
}

.th-manifesto__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 64px;
}

.th-manifesto__media {
	flex: 1 1 50%;
	min-width: 0;
	max-width: 500px;
}

.th-manifesto__media img {
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.th-manifesto__content {
	flex: 1 1 55%;
	min-width: 0;
	max-width: 550px;
}

.th-manifesto__content h2 {
	font-size: 36px;
	line-height: 1.2;
	margin-bottom: 20px;
}

.th-manifesto__content p {
	font-size: 18px;
	font-weight: 500;
	color: var(--th-navy);
	margin-bottom: 16px;
}

.th-manifesto__content p strong {
	font-weight: 700;
}

/* ----------------------------------------
   Video
---------------------------------------- */
.th-video {
	padding: 80px 0;
	background: var(--th-white);
}

.th-video__embed {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 16px;
	overflow: hidden;
}

.th-video__embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.th-video__embed--soon {
	aspect-ratio: 1630 / 890;
	background: var(--th-gray-50);
	border-radius: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px;
}

.th-video__icon {
	width: 165px;
	height: 165px;
	margin-bottom: 32px;
}

.th-video__heading {
	color: var(--th-amber);
	font-weight: 700;
	font-size: 40px;
	line-height: 1.2;
	margin: 0 0 16px;
}

.th-video__text {
	color: var(--th-navy);
	font-size: 20px;
	font-weight: 500;
	max-width: 600px;
	margin: 0;
}

.th-video__text strong {
	font-weight: 700;
}

/* ----------------------------------------
   Tech / Human definitions
---------------------------------------- */
.th-definitions {
	background: var(--th-amber);
	padding: 64px 0;
}

.th-definitions__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.th-definition-card {
	background: var(--th-white);
	border-radius: 20px;
	padding: 40px;
}

.th-definition-card__icon {
	width: 48px;
	height: 48px;
	object-fit: contain;
	margin-bottom: 16px;
}

.th-definition-card h3 {
	font-size: 28px;
	line-height: 1.2;
	margin-bottom: 12px;
}

.th-definition-card p {
	font-size: 18px;
	font-weight: 500;
	color: var(--th-navy-soft);
	margin: 0;
}

/* ----------------------------------------
   Steps
---------------------------------------- */
.th-steps {
	background: var(--th-gray-50);
	padding: 80px 0;
}

.th-steps__panel {
	border-radius: 24px;
	padding: 56px 48px;
}

.th-steps .section-header {
	text-align: left;
	font-size: 40px;
	margin-bottom: 48px;
}

.th-steps__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: center;
}

.th-step-card {
	background: var(--th-amber);
	border-radius: 16px;
    padding: 32px 50px;
	text-align: left;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.th-step-card:hover {
	transform: scale(1.06);
	box-shadow: 0 20px 45px rgba(6, 6, 92, 0.18);
	z-index: 1;
}

.th-step-card__number {
	display: block;
	font-size: 48px;
	font-weight: 700;
	color: var(--th-navy);
	margin-bottom: 8px;
}

.th-step-card h3 {
	font-size: 22px;
	margin-bottom: 12px;
	color: var(--th-navy);
}

.th-step-card p {
	font-size: 16px;
	font-weight: 500;
	color: var(--th-navy);
	margin: 0;
}

/* ----------------------------------------
   Products
---------------------------------------- */
.th-products {
	padding: 80px 0;
}

.th-products__heading {
	text-align: center;
	font-size: 40px;
	font-weight: 500;
    max-width: 620px;
    width: 100%;
	margin: 0 auto 88px;
    line-height: 41px;
}

.th-products__heading strong {
	font-weight: 700;
}

.th-products__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
}

.th-product-card {
	display: block;
	position: relative;
	padding: 0 24px 48px;
	border-left: 2px solid var(--th-amber);
	transition: opacity 0.2s ease;
}

.th-product-card:hover {
	opacity: 0.75;
	text-decoration: none;
}

.th-product-card__more {
	position: absolute;
	right: 24px;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--th-navy);
	color: var(--th-white);
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
}

.th-product-card:first-child {
	border-left: 0;
	padding-left: 0;
}

.th-product-card:first-child .th-product-card__more {
	left: 0;
}

.th-product-card__pay {
	color: #F4B019;
}

.th-product-card h3 {
	display: flex;
	align-items: center;
	gap: 4px;
	height: 64px;
	font-size: 20px;
	margin: 0 0 12px;
}

.th-product-card__logo {
	display: block;
	height: 64px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	object-position: left center;
	margin-bottom: 12px;
}

.th-product-card p {
	font-size: 15px;
	font-weight: 500;
	color: var(--th-navy-soft);
	margin: 0;
}

/* ----------------------------------------
   CTA
---------------------------------------- */
.th-cta {
	background: var(--th-amber);
	padding: 56px 0;
}

.th-cta__inner {
    max-width: 820px;
    width: 100%;
	margin: 0 auto;
	text-align: center;
}

.th-cta__inner p {
	font-size: 20px;
	font-weight: 500;
	color: var(--th-navy);
	margin-bottom: 28px;
}

.th-cta__inner p strong {
	font-weight: 700;
}

/* ----------------------------------------
   Responsive
---------------------------------------- */
@media (max-width: 980px) {
	.th-manifesto__content  {
		padding-right: 0;
	}
	.th-hero h1 {
		font-size: 40px;
	}

	.th-manifesto__inner {
		flex-direction: column;
	}

	.th-definitions__grid,
	.th-steps__grid {
		grid-template-columns: 1fr;
	}

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

	.th-product-card {
		border-left: 0;
		padding-left: 0;
		border-top: 2px solid var(--th-amber);
		padding-top: 24px;
	}

	.th-product-card:first-child {
		border-top: 0;
		padding-top: 0;
	}
}

@media (max-width: 600px) {
	.th-hero {
		padding: 64px 0 56px;
		aspect-ratio: auto;
		min-height: 620px;
	}

	.th-hero h1 {
		font-size: 32px;
	}

	.th-video__embed--soon {
		aspect-ratio: auto;
		padding: 32px 24px;
	}

	.th-video__icon {
		width: 110px;
		height: 110px;
		margin-bottom: 24px;
	}

	.th-video__heading {
		font-size: 18px;
	}

	.th-video__text {
		font-size: 14px;
	}

	.th-steps__panel {
		padding: 0;
	}

	.th-manifesto__content h2 {
		font-size: 25px;
	}

	.th-manifesto__content p {
		font-size: 14px;
	}

	.th-products__heading {
		font-size: 22px;
		line-height: 25px;
	}

	.th-cta__inner p {
		font-size: 17px;
	}
}

.containerfullhd {
    max-width: 100%;
    width: 1400px;
    margin: auto;
}

@media (max-width: 1500px) {
	.containerfullhd {
		max-width: 1300px;
		width: 95%;
        padding: 0 20px;
	}
}