/* TRUST page v2 — matches Figma "TRUST" */

/* Hero */
.trust-hero {
	position: relative;
	padding: 120px var(--pad-x);
	overflow: hidden;
	min-height: 540px;
	display: flex;
	align-items: center;
}
.trust-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.trust-hero__copy {
	position: relative;
	z-index: 1;
	max-width: 560px;
}
.trust-hero__copy h1 {
	font-size: var(--fs-h1, 44px);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: var(--tracking-tight, -0.5px);
	color: #fff;
	margin: 0;
}
.trust-hero__sub {
	font-size: 25px;
	font-weight: 600;
	line-height: 32px;
	letter-spacing: -0.3px;
	color: #fff;
	margin: 24px 0 0;
}
.trust-hero__note {
	font-size: 14px;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.92);
	margin: 24px 0 0;
}
.trust-hero__cta {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 32px;
}
/* Secondary button sits on the dark hero image — needs a light treatment */
.trust-hero__cta .btn-cta--outline {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border-color: #fff;
}
.trust-hero__cta .btn-cta--outline:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.16);
}
@media (max-width: 767px) {
	.trust-hero__cta { flex-direction: column; }
	.trust-hero__cta .btn-cta { width: 100%; }
}
@media (max-width: 991px) {
	.trust-hero {
		padding: 64px 24px;
		min-height: auto;
	}
	.trust-hero__copy h1 {
		font-size: 32px;
		line-height: 40px;
	}
	.trust-hero__sub {
		font-size: 20px;
		line-height: 28px;
	}
}

/* Shared section */
.ts-section {
	padding: 80px var(--pad-x);
	overflow: hidden;
}
@media (max-width: 991px) {
	.ts-section {
		padding: 48px 24px;
	}
}
.ts-section--centered {
	text-align: center;
}
.ts-section--centered h2 {
	font-size: var(--fs-h2, 32px);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: var(--tracking-tight, -0.4px);
	color: var(--text-primary);
	margin: 0;
}
.ts-subtitle {
	max-width: 792px;
	margin: 16px auto 48px;
	font-size: 16px;
	line-height: 24px;
	color: var(--text-primary);
}
.ts-footnote {
	font-size: 16px;
	line-height: 24px;
	color: var(--text-primary);
	margin: 48px 0 0;
}
.ts-band {
	background: var(--surface-tint, #f5f4fb);
}

/* Row layout */
.ts-row {
	display: flex;
	gap: 80px;
	align-items: center;
}
.ts-row--top {
	align-items: flex-start;
}
@media (max-width: 991px) {
	.ts-row {
		flex-direction: column;
		gap: 48px;
	}
}
.ts-illustration {
	flex-shrink: 0;
	width: 384px;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (max-width: 991px) {
	.ts-illustration {
		width: 200px;
		margin: 0 auto;
	}
}
.ts-illustration img {
	max-width: 100%;
	height: auto;
}
.ts-copy {
	flex: 1;
	min-width: 0;
}
.ts-copy--wide {
	max-width: 700px;
}
.ts-copy h2 {
	font-size: var(--fs-h2, 32px);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: var(--tracking-tight, -0.4px);
	color: var(--text-primary);
	margin: 0;
}
.ts-copy h3 {
	font-size: 25px;
	font-weight: 600;
	line-height: 32px;
	letter-spacing: -0.3px;
	color: var(--text-primary);
	margin: 0 0 16px;
}
.ts-copy p {
	font-size: 16px;
	line-height: 24px;
	color: var(--text-primary);
	margin: 16px 0 0;
}
.ts-copy p + h3 {
	margin-top: 32px;
}
.ts-copy--talk .ts-talk-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px 24px;
	flex-wrap: wrap;
}
.ts-copy--talk .ts-talk-head h3 {
	margin: 0;
}
.ts-copy--talk .ts-talk-head + p {
	margin-top: 28px;
}
.ts-copy a {
	color: var(--accent);
}
.ts-reviewed {
	font-size: 14px;
	line-height: 20px;
	font-style: italic;
	color: rgba(51, 49, 53, 0.92);
	margin-top: 48px !important;
}

/* Bullet list */
.ts-bullets {
	list-style: none;
	padding: 0;
	margin: 24px 0;
}
.ts-bullets li {
	position: relative;
	padding-left: 22px;
	font-size: 16px;
	line-height: 24px;
	color: var(--text-primary);
	margin-bottom: 16px;
}
.ts-bullets li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--text-primary);
}

/* HIPAA cards */
.hipaa-cards {
	display: flex;
	gap: 24px;
	margin-top: 48px;
}
@media (max-width: 991px) {
	.hipaa-cards {
		flex-direction: column;
	}
}
.hipaa-card {
	background: #333135;
	border-radius: 24px;
	padding: 24px;
	flex: 1;
	min-width: 0;
	text-align: left;
}
.hipaa-card h3 {
	font-size: 17px;
	font-weight: 600;
	line-height: 24px;
	color: #fff;
	margin: 0 0 24px;
}
.hipaa-card p {
	font-size: 16px;
	line-height: 24px;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}
.hipaa-stack {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.hipaa-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.hipaa-chips span {
	display: inline-flex;
	padding: 8px 12px;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.8);
}

/* Vendor table */
.vendor-table {
	background: #333135;
	border-radius: 24px;
	padding: 24px;
	text-align: left;
}
.vendor-row {
	display: flex;
	gap: 24px;
	padding: 8px 0;
}
.vendor-row span {
	flex: 1;
	min-width: 0;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
}
.vendor-row a {
	color: #bfc8fb;
	text-decoration: none;
}
.vendor-row a:hover {
	text-decoration: underline;
}
.vendor-row--head span {
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
}
@media (max-width: 767px) {
	.vendor-row {
		flex-direction: column;
		gap: 4px;
	}
	.trust-hero { padding: 48px 20px; min-height: auto; }
	.trust-hero__copy h1 { font-size: 28px; line-height: 36px; }
	.trust-hero__sub { font-size: 18px; line-height: 26px; }
	.ts-section { padding: 32px 20px; }
	.ts-copy h2 { font-size: 24px; line-height: 32px; }
	.ts-copy h3 { font-size: 20px; line-height: 28px; }
	.ts-illustration { width: 160px; }
	.hipaa-cards { flex-direction: column; }
	.hipaa-card { padding: 20px; }
}
