.tts-page {
	--tts-green-950: #082f27;
	--tts-green-900: #0c3b31;
	--tts-green-800: #155344;
	--tts-green-100: #e9f2ee;
	--tts-sand: #d7a765;
	--tts-sand-light: #f1d8b4;
	--tts-ink: #15332c;
	--tts-muted: #5c6e69;
	--tts-paper: #fbfaf7;
	--tts-line: #dfe7e3;
	--tts-white: #fff;
	--tts-radius-sm: 14px;
	--tts-radius-md: 24px;
	--tts-radius-lg: 34px;
	color: var(--tts-ink);
	background: var(--tts-paper);
	font-family: "Tajawal", sans-serif;
	overflow: clip;
}

.tts-page *,
.tts-page *::before,
.tts-page *::after {
	box-sizing: border-box;
}

.tts-page a {
	color: inherit;
}

.tts-container {
	width: min(1240px, calc(100% - 40px));
	margin-inline: auto;
}

.tts-breadcrumb {
	background: #f4f6f3;
	border-bottom: 1px solid var(--tts-line);
	font-size: 14px;
}

.tts-breadcrumb ol {
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 48px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tts-breadcrumb li + li::before {
	content: "←";
	margin-inline-end: 9px;
	color: #91a19c;
}

.tts-breadcrumb a {
	color: var(--tts-green-800);
	text-decoration: none;
}

.tts-breadcrumb [aria-current="page"] {
	color: var(--tts-muted);
}

.tts-hero {
	position: relative;
	isolation: isolate;
	min-height: 680px;
	padding: 92px 0 88px;
	color: var(--tts-white);
	background:
		radial-gradient(circle at 15% 20%, rgb(215 167 101 / 18%), transparent 28rem),
		linear-gradient(115deg, var(--tts-green-950), #0a4235 58%, #17604d);
}

.tts-hero::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	background-image:
		linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
		linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
	background-size: 56px 56px;
	content: "";
	mask-image: linear-gradient(to left, #000, transparent 80%);
}

.tts-hero__glow {
	position: absolute;
	z-index: -1;
	top: -180px;
	left: -80px;
	width: 520px;
	height: 520px;
	border: 1px solid rgb(215 167 101 / 20%);
	border-radius: 50%;
	box-shadow: 0 0 0 80px rgb(215 167 101 / 3%), 0 0 0 160px rgb(215 167 101 / 2%);
}

.tts-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
	align-items: center;
	gap: 80px;
}

.tts-eyebrow,
.tts-section-tag {
	margin: 0 0 14px;
	color: var(--tts-sand);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .03em;
}

.tts-page .tts-hero .tts-eyebrow {
	color: var(--tts-sand-light) !important;
}

.tts-hero h1 {
	max-width: 820px;
	margin: 0;
	font-size: clamp(44px, 5.2vw, 76px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -.035em;
	text-wrap: balance;
	color: #fff !important;
}

.tts-hero__lead {
	max-width: 730px;
	margin: 26px 0 0;
	color: rgb(255 255 255 / 82%) !important;
	font-size: clamp(18px, 1.55vw, 22px);
	line-height: 1.85;
}

.tts-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.tts-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 54px;
	padding: 0 25px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 800;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.tts-button:hover {
	transform: translateY(-2px);
}

.tts-button:focus-visible,
.tts-page a:focus-visible,
.tts-page summary:focus-visible {
	outline: 3px solid #ffd28e;
	outline-offset: 4px;
}

.tts-button svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.tts-button--primary {
	color: var(--tts-green-950);
	background: var(--tts-sand);
	box-shadow: 0 12px 30px rgb(0 0 0 / 18%);
}

.tts-button--primary:hover,
.tts-button--sand:hover {
	background: #e7bb7e;
	box-shadow: 0 16px 34px rgb(0 0 0 / 22%);
}

.tts-button--ghost {
	border-color: rgb(255 255 255 / 35%);
	color: #fff !important;
	background: rgb(255 255 255 / 6%);
}

.tts-button--ghost:hover {
	border-color: rgb(255 255 255 / 65%);
	background: rgb(255 255 255 / 10%);
}

.tts-hero__trust {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	max-width: 720px;
	margin: 42px 0 0;
	padding: 0;
	list-style: none;
}

.tts-hero__trust li {
	padding-inline-start: 17px;
	border-inline-start: 1px solid rgb(255 255 255 / 22%);
}

.tts-hero__trust strong,
.tts-hero__trust span {
	display: block;
}

.tts-hero__trust strong {
	color: var(--tts-sand-light);
	font-size: 16px;
}

.tts-hero__trust span {
	margin-top: 4px;
	color: rgb(255 255 255 / 65%);
	font-size: 12px;
}

.tts-hero__panel {
	position: relative;
	padding: 42px 36px 35px;
	border: 1px solid rgb(255 255 255 / 14%);
	border-radius: var(--tts-radius-lg);
	background: linear-gradient(145deg, rgb(255 255 255 / 12%), rgb(255 255 255 / 5%));
	box-shadow: 0 30px 80px rgb(0 0 0 / 20%);
	backdrop-filter: blur(12px);
}

.tts-hero__route {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
	color: var(--tts-sand);
}

.tts-hero__dot {
	width: 9px;
	height: 9px;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.tts-hero__line {
	flex: 1;
	height: 1px;
	margin: 0 8px;
	background: linear-gradient(90deg, currentColor 50%, transparent 50%);
	background-size: 10px 1px;
}

.tts-hero__plane {
	font-size: 22px;
	transform: rotate(-12deg);
}

.tts-hero__panel-kicker {
	margin: 0;
	color: var(--tts-sand-light) !important;
	font-size: 13px;
	font-weight: 700;
}

.tts-hero__panel h2 {
	margin: 7px 0 27px;
	font-size: 31px;
	line-height: 1.3;
	color: #fff !important;
}

.tts-hero__panel ol {
	display: grid;
	gap: 13px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tts-hero__panel li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px;
	border-radius: 17px;
	background: rgb(255 255 255 / 7%);
}

.tts-hero__panel li > span {
	display: grid;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid rgb(215 167 101 / 45%);
	border-radius: 50%;
	color: var(--tts-sand-light);
	font-size: 12px;
	font-weight: 800;
}

.tts-hero__panel strong,
.tts-hero__panel small {
	display: block;
}

.tts-hero__panel strong {
	font-size: 15px;
	color: #fff !important;
}

.tts-hero__panel small {
	margin-top: 3px;
	color: rgb(255 255 255 / 60%);
	font-size: 12px;
	line-height: 1.5;
}

.tts-intro,
.tts-services,
.tts-process,
.tts-requirements,
.tts-clarity,
.tts-why,
.tts-audiences,
.tts-faq {
	padding: 110px 0;
}

.tts-intro {
	background: #fff;
}

.tts-intro__grid,
.tts-clarity__grid,
.tts-audiences__grid {
	display: grid;
	grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
	gap: 90px;
}

.tts-intro h2,
.tts-section-heading h2,
.tts-requirements h2,
.tts-clarity h2,
.tts-audiences h2,
.tts-faq h2 {
	margin: 0;
	color: var(--tts-green-900);
	font-size: clamp(32px, 3.4vw, 50px);
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -.025em;
	text-wrap: balance;
}

.tts-prose p {
	margin: 0 0 18px;
	color: var(--tts-muted);
	font-size: 17px;
	line-height: 2;
}

.tts-prose p:last-child {
	margin-bottom: 0;
}

.tts-services {
	background: #f2f5f2;
	scroll-margin-top: 90px;
}

.tts-section-heading {
	max-width: 770px;
	margin-bottom: 48px;
}

.tts-section-heading > p:last-child {
	margin: 15px 0 0;
	color: var(--tts-muted);
	font-size: 17px;
	line-height: 1.8;
}

.tts-services__index {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 7px;
	margin-bottom: 20px;
	padding: 8px;
	border: 1px solid var(--tts-line);
	border-radius: 20px;
	background: #fff;
}

.tts-services__index a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 52px;
	padding: 8px;
	border-radius: 13px;
	color: var(--tts-green-800);
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
}

.tts-services__index a:hover {
	background: var(--tts-green-100);
}

.tts-services__index span {
	color: var(--tts-sand);
	font-size: 10px;
}

.tts-services__list {
	display: grid;
	gap: 16px;
}

.tts-service {
	position: relative;
	display: grid;
	grid-template-columns: 70px minmax(260px, .75fr) minmax(0, 1.25fr);
	gap: 30px;
	padding: 43px;
	border: 1px solid var(--tts-line);
	border-radius: var(--tts-radius-md);
	background: #fff;
	scroll-margin-top: 105px;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.tts-service:hover {
	border-color: #bdcfc7;
	box-shadow: 0 20px 50px rgb(8 47 39 / 7%);
	transform: translateY(-2px);
}

.tts-service__number {
	padding-top: 8px;
	color: #9caeaa;
	font-size: 12px;
	font-weight: 800;
}

.tts-service__icon {
	display: grid;
	width: 58px;
	height: 58px;
	margin-bottom: 20px;
	place-items: center;
	border-radius: 18px;
	color: var(--tts-green-800);
	background: var(--tts-green-100);
}

.tts-service__icon svg,
.tts-security-note svg {
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.tts-service h3 {
	margin: 0;
	color: var(--tts-green-900);
	font-size: 26px;
	line-height: 1.35;
}

.tts-service__summary > p {
	margin: 12px 0 18px;
	color: var(--tts-muted);
	font-size: 15px;
	line-height: 1.8;
}

.tts-service__summary ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tts-service__summary li {
	position: relative;
	padding-inline-start: 19px;
	color: var(--tts-green-800);
	font-size: 13px;
	font-weight: 700;
}

.tts-service__summary li::before {
	position: absolute;
	top: .65em;
	inset-inline-start: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--tts-sand);
	content: "";
}

.tts-service__body {
	padding-inline-start: 32px;
	border-inline-start: 1px solid var(--tts-line);
}

.tts-service__note {
	padding: 14px 16px;
	border-radius: 12px;
	color: #654617 !important;
	background: #fff7e9;
	font-size: 14px !important;
	line-height: 1.8 !important;
}

.tts-text-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: 12px;
	color: var(--tts-green-800) !important;
	font-weight: 800;
	text-decoration: none;
}

.tts-text-link::after {
	position: absolute;
	inset: 0;
	content: "";
}

.tts-text-link span {
	color: var(--tts-sand);
	transition: transform .2s ease;
}

.tts-service:hover .tts-text-link span {
	transform: translateX(-4px);
}

.tts-choice {
	padding: 110px 0;
	color: #fff;
	background: var(--tts-green-950);
}

.tts-section-heading--light h2 {
	color: #fff !important;
}

.tts-choice__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.tts-choice article {
	padding: 40px;
	border: 1px solid rgb(255 255 255 / 13%);
	border-radius: var(--tts-radius-md);
	background: rgb(255 255 255 / 5%);
}

.tts-choice article > span,
.tts-process li > span,
.tts-why article > span {
	color: var(--tts-sand);
	font-size: 12px;
	font-weight: 800;
}

.tts-choice h3 {
	margin: 17px 0 12px;
	font-size: 27px;
	color: #fff !important;
}

.tts-choice article p,
.tts-choice__footer {
	margin: 0;
	color: rgb(255 255 255 / 70%) !important;
	font-size: 16px;
	line-height: 1.9;
}

.tts-choice__footer {
	max-width: 850px;
	margin: 28px auto 0;
	text-align: center;
}

.tts-process {
	background: #fff;
}

.tts-process__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: process;
}

.tts-process li {
	position: relative;
	min-height: 270px;
	padding: 32px 28px;
	border: 1px solid var(--tts-line);
	border-radius: 20px;
}

.tts-process li:not(:last-child)::after {
	position: absolute;
	z-index: 2;
	top: 53px;
	left: -23px;
	width: 32px;
	height: 1px;
	background: var(--tts-sand);
	content: "";
}

.tts-process h3,
.tts-why h3 {
	margin: 48px 0 12px;
	color: var(--tts-green-900);
	font-size: 21px;
}

.tts-process p,
.tts-why article p {
	margin: 0;
	color: var(--tts-muted);
	font-size: 14px;
	line-height: 1.85;
}

.tts-requirements {
	background: #eef3f0;
}

.tts-requirements__grid {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 60px 90px;
}

.tts-requirements__heading > p:last-child,
.tts-clarity__content > p,
.tts-audiences__grid > div > p:last-child,
.tts-faq__heading > p:last-child {
	margin: 18px 0 0;
	color: var(--tts-muted);
	font-size: 16px;
	line-height: 1.9;
}

.tts-checklist {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 11px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tts-checklist li {
	position: relative;
	padding: 16px 48px 16px 18px;
	border: 1px solid var(--tts-line);
	border-radius: 14px;
	background: #fff;
	font-size: 14px;
	font-weight: 700;
}

.tts-checklist li::before {
	position: absolute;
	top: 17px;
	right: 18px;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	color: #fff;
	background: var(--tts-green-800);
	content: "✓";
	font-size: 11px;
	line-height: 19px;
	text-align: center;
}

.tts-security-note {
	display: flex;
	grid-column: 1 / -1;
	align-items: center;
	gap: 18px;
	padding: 20px 24px;
	border: 1px solid #eed5af;
	border-radius: 18px;
	color: #694817;
	background: #fff8ed;
}

.tts-security-note svg {
	flex: 0 0 30px;
}

.tts-security-note p {
	margin: 0;
	font-size: 14px;
	line-height: 1.8;
}

.tts-clarity {
	background: #fff;
}

.tts-clarity__content > p {
	margin-top: 18px;
}

.tts-clarity__card {
	padding: 38px;
	border-radius: var(--tts-radius-md);
	color: #fff;
	background: var(--tts-green-900);
	box-shadow: 20px 20px 0 var(--tts-green-100);
}

.tts-clarity__card h3 {
	margin: 0 0 22px;
	color: #fff !important;
	font-size: 25px;
}

.tts-clarity__card ul {
	display: grid;
	gap: 13px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tts-clarity__card li {
	position: relative;
	padding-inline-start: 25px;
	color: rgb(255 255 255 / 78%) !important;
	line-height: 1.7;
}

.tts-clarity__card li::before {
	position: absolute;
	top: .55em;
	inset-inline-start: 0;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--tts-sand);
	content: "";
}

.tts-why {
	background: #f2f5f2;
}

.tts-why__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.tts-why article {
	padding: 30px;
	border-top: 3px solid var(--tts-sand);
	border-radius: 0 0 18px 18px;
	background: #fff;
}

.tts-why h3 {
	margin-top: 32px;
}

.tts-audiences {
	color: #fff;
	background: var(--tts-green-900);
}

.tts-audiences h2 {
	color: #fff !important;
}

.tts-audiences__grid > div > p:last-child {
	color: rgb(255 255 255 / 68%) !important;
}

.tts-audiences__links {
	display: grid;
	gap: 13px;
}

.tts-audiences__links a {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	padding: 23px 25px;
	border: 1px solid rgb(255 255 255 / 13%);
	border-radius: 17px;
	color: #fff !important;
	background: rgb(255 255 255 / 6%);
	text-decoration: none;
	transition: background-color .2s ease, transform .2s ease;
}

.tts-audiences__links a:hover {
	background: rgb(255 255 255 / 11%);
	transform: translateX(-4px);
}

.tts-audiences__links span,
.tts-audiences__links strong {
	display: block;
	grid-column: 1;
}

.tts-audiences__links span {
	color: var(--tts-sand-light);
	font-size: 12px;
}

.tts-audiences__links strong {
	margin-top: 4px;
	color: #fff !important;
	font-size: 18px;
}

.tts-audiences__links b {
	grid-column: 2;
	grid-row: 1 / 3;
	color: var(--tts-sand);
	font-size: 24px;
}

.tts-faq {
	background: #fff;
}

.tts-faq__grid {
	display: grid;
	grid-template-columns: .6fr 1.4fr;
	gap: 90px;
	align-items: start;
}

.tts-faq__heading {
	position: sticky;
	top: 110px;
}

.tts-faq__list {
	border-top: 1px solid var(--tts-line);
}

.tts-faq details {
	border-bottom: 1px solid var(--tts-line);
}

.tts-faq summary {
	position: relative;
	padding: 25px 45px 25px 0;
	color: var(--tts-green-900);
	font-size: 17px;
	font-weight: 800;
	cursor: pointer;
	list-style: none;
}

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

.tts-faq summary span,
.tts-faq summary span::after {
	position: absolute;
	top: 50%;
	right: 3px;
	width: 16px;
	height: 2px;
	background: var(--tts-sand);
	content: "";
	transition: transform .2s ease;
}

.tts-faq summary span::after {
	top: 0;
	right: 0;
	transform: rotate(90deg);
}

.tts-faq details[open] summary span::after {
	transform: rotate(0);
}

.tts-faq details > div {
	padding: 0 45px 24px 0;
}

.tts-faq details p {
	margin: 0;
	color: var(--tts-muted);
	font-size: 15px;
	line-height: 1.9;
}

.tts-cta {
	padding: 80px 0;
	color: #fff;
	background:
		linear-gradient(100deg, rgb(8 47 39 / 97%), rgb(21 83 68 / 92%)),
		radial-gradient(circle at 10% 10%, #d7a765, transparent 40%);
}

.tts-cta__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 60px;
}

.tts-cta h2 {
	margin: 0;
	max-width: 760px;
	font-size: clamp(30px, 3vw, 46px);
	line-height: 1.3;
	color: #fff !important;
}

.tts-cta p:last-child {
	max-width: 780px;
	margin: 15px 0 0;
	color: rgb(255 255 255 / 70%) !important;
	font-size: 16px;
	line-height: 1.8;
}

.tts-button--sand {
	min-height: 60px;
	color: var(--tts-green-950);
	background: var(--tts-sand);
	white-space: nowrap;
}

@media (max-width: 1060px) {
	.tts-hero__grid {
		gap: 42px;
	}

	.tts-service {
		grid-template-columns: 45px minmax(240px, .8fr) 1.2fr;
		padding: 34px;
	}

	.tts-services__index {
		grid-template-columns: repeat(3, 1fr);
	}

	.tts-process__grid,
	.tts-why__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tts-process li:not(:last-child)::after {
		display: none;
	}
}

@media (max-width: 820px) {
	.tts-container {
		width: min(100% - 32px, 680px);
	}

	.tts-hero {
		min-height: auto;
		padding: 70px 0;
	}

	.tts-hero__grid,
	.tts-intro__grid,
	.tts-clarity__grid,
	.tts-audiences__grid,
	.tts-faq__grid,
	.tts-requirements__grid {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.tts-hero__content {
		text-align: center;
	}

	.tts-hero h1,
	.tts-hero__lead {
		margin-inline: auto;
	}

	.tts-hero__actions {
		justify-content: center;
	}

	.tts-hero__trust {
		margin-inline: auto;
		text-align: start;
	}

	.tts-intro,
	.tts-services,
	.tts-process,
	.tts-requirements,
	.tts-clarity,
	.tts-why,
	.tts-audiences,
	.tts-faq {
		padding: 80px 0;
	}

	.tts-service {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.tts-service__number {
		position: absolute;
		top: 35px;
		left: 35px;
	}

	.tts-service__body {
		padding: 24px 0 0;
		border-top: 1px solid var(--tts-line);
		border-inline-start: 0;
	}

	.tts-faq__heading {
		position: static;
	}

	.tts-cta__inner {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}

	.tts-button--sand {
		justify-self: center;
	}
}

@media (max-width: 580px) {
	.tts-container {
		width: calc(100% - 28px);
	}

	.tts-breadcrumb ol {
		min-height: 44px;
	}

	.tts-hero {
		padding: 56px 0;
	}

	.tts-hero h1 {
		font-size: 39px;
		line-height: 1.18;
	}

	.tts-hero__lead {
		font-size: 17px;
		line-height: 1.8;
	}

	.tts-hero__actions {
		display: grid;
	}

	.tts-button {
		width: 100%;
	}

	.tts-hero__trust {
		grid-template-columns: 1fr;
		gap: 13px;
		max-width: 320px;
	}

	.tts-hero__trust li {
		padding: 2px 14px;
	}

	.tts-hero__panel {
		padding: 30px 20px 24px;
		border-radius: 25px;
	}

	.tts-intro,
	.tts-services,
	.tts-process,
	.tts-requirements,
	.tts-clarity,
	.tts-why,
	.tts-audiences,
	.tts-faq {
		padding: 65px 0;
	}

	.tts-intro h2,
	.tts-section-heading h2,
	.tts-requirements h2,
	.tts-clarity h2,
	.tts-audiences h2,
	.tts-faq h2 {
		font-size: 32px;
	}

	.tts-services__index {
		display: flex;
		overflow-x: auto;
		justify-content: flex-start;
		scrollbar-width: none;
	}

	.tts-services__index a {
		flex: 0 0 auto;
		padding-inline: 16px;
	}

	.tts-service {
		padding: 28px 22px;
		border-radius: 19px;
	}

	.tts-service__number {
		top: 28px;
		left: 22px;
	}

	.tts-choice {
		padding: 70px 0;
	}

	.tts-choice__grid,
	.tts-process__grid,
	.tts-checklist,
	.tts-why__grid {
		grid-template-columns: 1fr;
	}

	.tts-choice article {
		padding: 28px 24px;
	}

	.tts-process li {
		min-height: auto;
	}

	.tts-process h3,
	.tts-why h3 {
		margin-top: 28px;
	}

	.tts-security-note {
		align-items: flex-start;
	}

	.tts-clarity__card {
		padding: 28px 23px;
		box-shadow: 10px 10px 0 var(--tts-green-100);
	}

	.tts-faq summary {
		padding: 22px 38px 22px 0;
		font-size: 16px;
	}

	.tts-faq details > div {
		padding-right: 38px;
	}

	.tts-cta {
		padding: 65px 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tts-page *,
	.tts-page *::before,
	.tts-page *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}
