.tt-hero {
	--tt-hero-desktop-scale: 0.85;
	position: relative;
	min-height: calc(100svh - 96px);
	overflow: hidden;
	background:
		radial-gradient(circle at 71% 42%, rgba(255, 255, 255, 0.94), transparent 34%),
		var(--tt-background);
}

@media (min-width: 861px) {
	.tt-hero__inner {
		transform: scale(var(--tt-hero-desktop-scale));
		transform-origin: center;
	}
}

/* SEO pricing plans */
.tt-pricing {
	position: relative;
	overflow: clip;
	padding: clamp(72px, 7vw, 112px) 0 clamp(76px, 7vw, 118px);
	background:
		radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.72), transparent 46%),
		#f5f1e8;
	color: #0d1321;
}

.tt-pricing__inner {
	width: min(calc(100% - 96px), 1480px);
}

.tt-pricing__heading {
	margin: 0 auto clamp(54px, 5vw, 76px);
	text-align: center;
}

.tt-pricing__heading h2 {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	margin: 0;
	color: #0d1321;
	font-size: clamp(30px, 2.65vw, 46px);
	font-weight: 800;
	line-height: 1.35;
}

.tt-pricing__heading h2 > span {
	flex: 0 0 auto;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background: #e63946;
	box-shadow: 0 2px 9px rgba(230, 57, 70, 0.25);
}

.tt-pricing__heading p {
	margin: 12px 0 0;
	color: #858585;
	font-size: 17px;
}

.tt-pricing__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	align-items: stretch;
	gap: clamp(20px, 2.7vw, 42px);
	direction: ltr;
}

.tt-pricing-card {
	--plan-accent: #a95d32;
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 590px;
	padding: 34px 31px 28px;
	border: 1px solid rgba(13, 19, 33, 0.1);
	border-top: 4px solid var(--plan-accent);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 14px 34px rgba(13, 19, 33, 0.1);
	color: #0d1321;
	direction: rtl;
	transform: perspective(900px) translateY(0) translateZ(0) scale(1);
	transform-origin: center bottom;
	transition:
		transform 220ms cubic-bezier(0.22, 0.75, 0.22, 1),
		box-shadow 220ms ease,
		border-color 220ms ease;
}

.tt-pricing-card--silver {
	--plan-accent: #8d9295;
}

.tt-pricing-card--gold {
	--plan-accent: #c8951d;
}

.tt-pricing-card--diamond {
	--plan-accent: #f5f1e8;
	border-color: rgba(255, 255, 255, 0.22);
	background:
		radial-gradient(circle at 55% 18%, rgba(36, 68, 111, 0.36), transparent 35%),
		linear-gradient(145deg, #0d1b2e, #071426 76%);
	box-shadow: 0 15px 35px rgba(6, 17, 32, 0.22);
	color: #fff;
}

.tt-pricing-card.is-recommended {
	z-index: 1;
	min-height: 590px;
	padding-top: 34px;
	border-width: 1px;
	border-top-width: 4px;
	box-shadow: 0 14px 34px rgba(13, 19, 33, 0.1);
}

@media (hover: hover) and (pointer: fine) and (min-width: 769px) {
	.tt-pricing-card:hover,
	.tt-pricing-card:focus-within {
		z-index: 3;
		border-color: color-mix(in srgb, var(--plan-accent) 48%, rgba(13, 19, 33, 0.12));
		border-top-color: var(--plan-accent);
		box-shadow:
			0 28px 55px rgba(13, 19, 33, 0.2),
			0 9px 20px color-mix(in srgb, var(--plan-accent) 22%, transparent);
		transform: perspective(900px) translateY(-11px) translateZ(18px) scale(1.018);
	}
}

.tt-pricing-card__recommended {
	position: absolute;
	z-index: 2;
	top: -4px;
	right: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 100px;
	padding: 10px 7px 29px;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
	border-radius: 4px 4px 0 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 34%),
		linear-gradient(165deg, #f04451 0%, #e63946 48%, #cf1f2d 100%);
	color: #fff;
	filter: drop-shadow(0 7px 9px rgba(230, 57, 70, 0.22));
	isolation: isolate;
}

.tt-pricing-card__recommended::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 82%;
	background: rgba(255, 255, 255, 0.2);
	content: "";
}

.tt-pricing-card__recommended::after {
	position: absolute;
	top: 7px;
	right: 7px;
	left: 7px;
	height: 1px;
	background: rgba(255, 255, 255, 0.22);
	content: "";
}

.tt-pricing-card__recommended b {
	display: block;
	color: inherit;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	transform: rotate(-90deg);
}

.tt-pricing-card__top {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.tt-pricing-card__icon {
	display: grid;
	width: 84px;
	height: 84px;
	place-items: center;
	margin-bottom: 14px;
	border: 2px solid currentColor;
	border-radius: 50%;
	color: var(--plan-accent);
	isolation: isolate;
	padding: 7px;
}

.tt-pricing-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.tt-pricing-card__medal {
	position: relative;
	display: grid;
	width: 55px;
	height: 55px;
	place-items: center;
	border: 3px double currentColor;
	border-radius: 50%;
	background: color-mix(in srgb, var(--plan-accent) 12%, transparent);
	font-size: 28px;
	line-height: 1;
}

.tt-pricing-card__medal::before,
.tt-pricing-card__medal::after {
	position: absolute;
	z-index: -1;
	bottom: -19px;
	width: 18px;
	height: 28px;
	border: 2px solid currentColor;
	background: color-mix(in srgb, var(--plan-accent) 18%, #fff);
	content: "";
	clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 72%, 0 100%);
}

.tt-pricing-card__medal::before {
	right: 5px;
	transform: rotate(13deg);
}

.tt-pricing-card__medal::after {
	left: 5px;
	transform: rotate(-13deg);
}

.tt-pricing-card__diamond {
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 70px;
	font-weight: 300;
	line-height: 0.8;
	transform: scaleX(1.2);
}

.tt-pricing-card__summary {
	width: 100%;
	text-align: center;
}

.tt-pricing-card__name {
	display: block;
	margin: 0 0 9px;
	color: var(--plan-accent);
	font-size: 31px;
	font-weight: 800;
	line-height: 1.25;
}

.tt-pricing-card--diamond .tt-pricing-card__name {
	color: #fff;
}

.tt-pricing-card__price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
	gap: 5px 8px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(13, 19, 33, 0.22);
}

.tt-pricing-card--diamond .tt-pricing-card__price {
	border-bottom-color: rgba(255, 255, 255, 0.35);
}

.tt-pricing-card__price strong {
	font-size: 26px;
	font-weight: 800;
	letter-spacing: 0.5px;
}

.tt-pricing-card__price span,
.tt-pricing-card__price small {
	font-size: 14px;
	font-weight: 600;
}

.tt-pricing-card__price small {
	order: -1;
	width: 100%;
	color: inherit;
}

.tt-pricing-card__features {
	display: grid;
	gap: 12px;
	padding: 24px 0 25px;
	margin: 0;
	list-style: none;
	font-size: 15px;
	line-height: 1.55;
}

.tt-pricing-card__features li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	min-width: 0;
	overflow-wrap: anywhere;
}

.tt-pricing-card__features li > span {
	display: grid;
	flex: 0 0 19px;
	width: 19px;
	height: 19px;
	place-items: center;
	margin-top: 1px;
	border-radius: 50%;
	background: transparent;
	color: #e63946;
	font-family: Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
}

.tt-pricing-card__button {
	display: grid;
	min-height: 49px;
	place-items: center;
	padding: 10px 18px;
	margin-top: auto;
	border: 1px solid #e63946;
	border-radius: 7px;
	background: linear-gradient(135deg, #e63946, #ef1828);
	box-shadow: 0 7px 16px rgba(230, 57, 70, 0.18);
	color: #fff;
	font-size: 17px;
	font-weight: 750;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.tt-pricing-card--diamond .tt-pricing-card__button {
	border-color: #fff;
	background: #fff;
	box-shadow: none;
	color: #0d1321;
}

.tt-pricing-card__button:hover,
.tt-pricing-card__button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 10px 23px rgba(230, 57, 70, 0.25);
}

.tt-pricing__plus {
	position: absolute;
	width: 22px;
	height: 22px;
	color: #0d1321;
}

.tt-pricing__plus::before,
.tt-pricing__plus::after {
	position: absolute;
	top: 50%;
	left: 50%;
	background: currentColor;
	content: "";
	transform: translate(-50%, -50%);
}

.tt-pricing__plus::before {
	width: 22px;
	height: 1px;
}

.tt-pricing__plus::after {
	width: 1px;
	height: 22px;
}

.tt-pricing__plus--top-start {
	top: 27px;
	left: 28px;
}

.tt-pricing__plus--top-end {
	top: 27px;
	right: 28px;
}

.tt-pricing__plus--bottom-start {
	bottom: 27px;
	left: 28px;
}

.tt-pricing__plus--bottom-end {
	right: 28px;
	bottom: 27px;
}

@media (max-width: 1220px) and (min-width: 769px) {
	.tt-pricing__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: stretch;
	}

	.tt-pricing-card {
		min-height: 560px;
	}

	.tt-pricing-card.is-recommended {
		min-height: 560px;
	}
}

@media (max-width: 768px) {
	.tt-pricing {
		padding: 66px 0 72px;
	}

	.tt-pricing__inner {
		width: calc(100% - 38px);
	}

	.tt-pricing__heading {
		margin-bottom: 35px;
	}

	.tt-pricing__heading h2 {
		gap: 11px;
		font-size: clamp(23px, 6.6vw, 34px);
		line-height: 1.45;
	}

	.tt-pricing__heading h2 > span {
		width: 14px;
		height: 14px;
	}

	.tt-pricing__heading p {
		display: none;
	}

	.tt-pricing__grid {
		grid-template-columns: minmax(0, 1fr);
		grid-auto-rows: auto;
		gap: 14px;
		direction: ltr;
	}

	.tt-pricing-card,
	.tt-pricing-card.is-recommended {
		height: auto;
		min-height: 0;
		padding: 25px clamp(20px, 6vw, 29px) 24px;
		border-width: 1px;
		border-top-width: 3px;
		border-radius: 13px;
		direction: rtl;
		transform: none;
	}

	.tt-pricing-card.is-recommended {
		padding-top: 33px;
	}

	.tt-pricing-card__top {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 80px;
		align-items: center;
		gap: 10px;
		padding-bottom: 17px;
		border-bottom: 1px solid rgba(13, 19, 33, 0.3);
	}

	.tt-pricing-card--diamond .tt-pricing-card__top {
		border-bottom-color: rgba(255, 255, 255, 0.35);
	}

	.tt-pricing-card__summary {
		grid-column: 1;
		grid-row: 1;
		text-align: right;
	}

	.tt-pricing-card__icon {
		grid-column: 2;
		grid-row: 1;
		width: 70px;
		height: 70px;
		margin: 0 auto;
	}

	.tt-pricing-card__name {
		margin-bottom: 4px;
		font-size: clamp(22px, 6vw, 30px);
	}

	.tt-pricing-card__price {
		justify-content: flex-start;
		flex-wrap: nowrap;
		gap: 4px 6px;
		padding: 0;
		border-bottom: 0;
	}

	.tt-pricing-card__price strong {
		font-size: clamp(18px, 5vw, 24px);
		white-space: nowrap;
	}

	.tt-pricing-card__price span,
	.tt-pricing-card__price small {
		font-size: clamp(11px, 3.2vw, 14px);
		white-space: nowrap;
	}

	.tt-pricing-card__price small {
		order: 0;
		width: auto;
	}

	.tt-pricing-card__features {
		gap: 9px;
		padding: 20px 0 22px;
		font-size: clamp(14px, 4vw, 18px);
	}

	.tt-pricing-card__button {
		min-height: 53px;
		font-size: 19px;
	}

	.tt-pricing-card__recommended {
		top: -3px;
		right: auto;
		left: 7px;
		width: 32px;
		height: 73px;
		padding: 8px 6px 25px;
		border-radius: 3px 3px 0 0;
		filter: drop-shadow(0 5px 7px rgba(230, 57, 70, 0.18));
	}

	.tt-pricing-card__recommended b {
		font-size: 10px;
	}

	.tt-pricing-card__diamond {
		font-size: 56px;
	}

	.tt-pricing-card__medal {
		width: 43px;
		height: 43px;
		font-size: 21px;
	}

	.tt-pricing-card__medal::before,
	.tt-pricing-card__medal::after {
		bottom: -14px;
		width: 14px;
		height: 21px;
	}

	.tt-pricing__plus {
		width: 18px;
		height: 18px;
		color: #e63946;
	}

	.tt-pricing__plus--top-start,
	.tt-pricing__plus--bottom-start {
		left: 13px;
	}

	.tt-pricing__plus--top-end,
	.tt-pricing__plus--bottom-end {
		right: 13px;
	}

	.tt-pricing__plus--top-start,
	.tt-pricing__plus--top-end {
		top: 17px;
	}

	.tt-pricing__plus--bottom-start,
	.tt-pricing__plus--bottom-end {
		bottom: 17px;
	}
}

/* Process timeline and performance statistics */
.tt-process {
	background: #f5f1e8;
}

.tt-process__dark {
	position: relative;
	overflow: hidden;
	min-height: 515px;
	padding: 66px 0 72px;
	border-radius: 24px 24px 0 0;
	background:
		radial-gradient(circle at 52% 45%, rgba(22, 49, 82, 0.3), transparent 42%),
		linear-gradient(135deg, #071426 0%, #0b1a30 52%, #071426 100%);
	color: #fff;
}

.tt-process__inner {
	position: relative;
	z-index: 2;
	width: min(calc(100% - 96px), 1480px);
}

.tt-process__heading {
	margin: 0 auto;
	text-align: center;
}

.tt-process__heading h2 {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	margin: 0;
	color: #fff;
	font-size: clamp(28px, 2.35vw, 39px);
	font-weight: 800;
	line-height: 1.35;
}

.tt-process__heading h2 > span {
	flex: 0 0 auto;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #e63946;
}

.tt-process__heading p {
	max-width: 760px;
	margin: 17px auto 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 1.9;
}

.tt-process__badge {
	position: absolute;
	top: -8px;
	right: 0;
	padding: 8px 16px;
	border: 1px solid #e63946;
	border-radius: 5px;
	color: rgba(255, 255, 255, 0.72);
	font-family: monospace;
	font-size: 12px;
	letter-spacing: 2px;
	direction: ltr;
}

.tt-process__steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(var(--process-step-count), minmax(0, 1fr));
	margin-top: 70px;
	direction: rtl;
}

.tt-process__steps::before {
	position: absolute;
	z-index: 0;
	top: 37px;
	right: 11%;
	left: 11%;
	border-top: 2px dashed #e63946;
	content: "";
}

.tt-process-step {
	position: relative;
	z-index: 1;
	min-width: 0;
	padding: 0 19px;
	text-align: center;
	direction: rtl;
}

.tt-process-step__node {
	position: relative;
	display: grid;
	width: 76px;
	height: 76px;
	place-items: center;
	margin: 0 auto 25px;
	border: 2px solid rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	background: #0a182b;
	box-shadow: 0 0 0 8px #0a182b;
	color: #e63946;
	font-size: 31px;
	font-weight: 800;
	line-height: 1;
}

.tt-process-step__node span {
	transform: translateY(-1px);
}

.tt-process-step__body h3 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 21px;
	font-weight: 800;
}

.tt-process-step__body p {
	max-width: 285px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.68);
	font-size: 14px;
	line-height: 1.85;
}

.tt-process-step.is-completed .tt-process-step__node {
	border: 6px solid #fff;
	background: #e63946;
	box-shadow:
		0 0 0 6px #0a182b,
		0 0 0 9px #e63946,
		0 0 0 13px rgba(255, 255, 255, 0.95);
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 28px;
}

.tt-process__rings {
	--tt-orbit-inner-size: 49%;
	--tt-orbit-middle-size: 75.4%;
	--tt-orbit-outer-size: 100%;
	--tt-orbit-speed-inner: 16s;
	--tt-orbit-speed-middle: 23s;
	--tt-orbit-speed-outer: 31s;
	position: absolute;
	z-index: 0;
	top: -22px;
	left: -76px;
	width: 390px;
	height: 390px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
}

.tt-process__rings::before,
.tt-process__rings::after,
.tt-process__rings i,
.tt-process__rings i::before {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.17);
	border-radius: 50%;
	content: "";
	inset: 48px;
}

.tt-process__rings::after {
	border-style: dashed;
	inset: 100px;
}

.tt-process__rings i {
	inset: 152px;
}

.tt-process__rings i::before {
	inset: 37px;
	border-color: rgba(255, 255, 255, 0.17);
	background: #e63946;
}

.tt-process__plus {
	position: absolute;
	z-index: 3;
	width: 24px;
	height: 24px;
	color: #e63946;
}

.tt-process__plus::before,
.tt-process__plus::after {
	position: absolute;
	top: 50%;
	left: 50%;
	background: currentColor;
	content: "";
	transform: translate(-50%, -50%);
}

.tt-process__plus::before {
	width: 24px;
	height: 2px;
}

.tt-process__plus::after {
	width: 2px;
	height: 24px;
}

.tt-process__plus--top-start {
	top: 35px;
	left: 36px;
}

.tt-process__plus--top-end {
	top: 35px;
	right: 36px;
}

.tt-process__plus--bottom-start {
	bottom: 35px;
	left: 36px;
}

.tt-process__plus--bottom-end {
	right: 36px;
	bottom: 35px;
}

.tt-process__stats {
	display: grid;
	grid-template-columns: repeat(var(--process-stat-count), minmax(0, 1fr));
	min-height: 260px;
	overflow: hidden;
	border-radius: 0 0 24px 24px;
	background:
		radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.66), transparent 48%),
		#f5f1e8;
	box-shadow: 0 7px 16px rgba(13, 19, 33, 0.16);
	direction: ltr;
}

.tt-process-stat {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 0;
	padding: 35px 24px;
	color: #0d1321;
	direction: rtl;
}

.tt-process-stat + .tt-process-stat {
	border-left: 1px solid rgba(13, 19, 33, 0.18);
}

.tt-process-stat strong {
	color: #e63946;
	font-size: clamp(49px, 4.5vw, 68px);
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	line-height: 1.05;
}

.tt-process-stat span {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
	font-size: 19px;
	font-weight: 750;
}

.tt-process-stat span i {
	flex: 0 0 auto;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #e63946;
}

@media (max-width: 900px) {
	.tt-process__dark {
		min-height: 0;
		padding: 58px 0 96px;
		border-radius: 24px 24px 0 0;
	}

	.tt-process__inner {
		width: calc(100% - 38px);
	}

	.tt-process__heading {
		margin-top: 24px;
		text-align: right;
	}

	.tt-process__heading h2 {
		gap: 12px;
		font-size: clamp(23px, 6vw, 30px);
	}

	.tt-process__heading h2 > span {
		width: 14px;
		height: 14px;
	}

	.tt-process__heading p,
	.tt-process__badge {
		display: none;
	}

	.tt-process__steps {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
		margin-top: 52px;
		direction: rtl;
	}

	.tt-process__steps::before {
		top: 34px;
		right: 33px;
		bottom: 157px;
		left: auto;
		width: 0;
		border-top: 0;
		border-right: 2px dashed #e63946;
	}

	.tt-process-step {
		display: grid;
		grid-template-columns: 68px minmax(0, 1fr);
		align-items: start;
		min-height: 235px;
		padding: 0;
		text-align: right;
	}

	.tt-process-step:last-child {
		min-height: 190px;
	}

	.tt-process-step__node {
		grid-column: 1;
		grid-row: 1;
		width: 58px;
		height: 58px;
		margin: 0 auto;
		box-shadow: 0 0 0 6px #0a182b;
		font-size: 26px;
	}

	.tt-process-step__body {
		grid-column: 2;
		grid-row: 1;
		padding: 5px 17px 0 0;
	}

	.tt-process-step__body h3 {
		margin-bottom: 11px;
		font-size: clamp(21px, 5.5vw, 27px);
	}

	.tt-process-step__body p {
		max-width: 100%;
		margin: 0;
		font-size: clamp(13px, 3.8vw, 17px);
		line-height: 2.05;
	}

	.tt-process-step.is-completed .tt-process-step__node {
		border-width: 4px;
		box-shadow:
			0 0 0 5px #0a182b,
			0 0 0 7px #e63946,
			0 0 0 10px rgba(255, 255, 255, 0.94);
		font-size: 21px;
	}

	.tt-process__rings {
		top: 72px;
		left: -215px;
		width: 370px;
		height: 370px;
		border-color: rgba(230, 57, 70, 0.35);
	}

	.tt-process__rings::before,
	.tt-process__rings::after,
	.tt-process__rings i,
	.tt-process__rings i::before {
		border-color: rgba(230, 57, 70, 0.28);
	}

	.tt-process__plus {
		width: 20px;
		height: 20px;
	}

	.tt-process__plus--top-start {
		top: 17px;
		left: 18px;
	}

	.tt-process__plus--top-end {
		top: 17px;
		right: 18px;
	}

	.tt-process__plus--bottom-start,
	.tt-process__plus--bottom-end {
		display: none;
	}

	.tt-process__stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		min-height: 0;
		border-radius: 24px 24px 0 0;
	}

	.tt-process-stat {
		min-height: 180px;
		padding: 24px 12px;
	}

	.tt-process-stat + .tt-process-stat {
		border-left: 0;
	}

	.tt-process-stat:nth-child(odd) {
		border-right: 1px solid rgba(13, 19, 33, 0.2);
	}

	.tt-process-stat:nth-child(-n+2) {
		border-bottom: 1px solid rgba(13, 19, 33, 0.2);
	}

	.tt-process-stat strong {
		font-size: clamp(40px, 12vw, 56px);
	}

	.tt-process-stat span {
		gap: 8px;
		margin-top: 15px;
		font-size: clamp(14px, 4.2vw, 18px);
	}

	.tt-process-stat span i {
		width: 9px;
		height: 9px;
	}
}

@media (max-width: 430px) {
	.tt-process-step {
		grid-template-columns: 62px minmax(0, 1fr);
		min-height: 220px;
	}

	.tt-process-step__node {
		width: 54px;
		height: 54px;
		font-size: 23px;
	}

	.tt-process__steps::before {
		right: 30px;
	}

	.tt-process-step__body {
		padding-right: 12px;
	}

	.tt-process-stat {
		min-height: 158px;
	}
}

/* Portfolio and testimonials */
.tt-showcase {
	position: relative;
	background: #f5f1e8;
}

.tt-showcase__portfolio {
	position: relative;
	overflow: hidden;
	padding: 58px 0 54px;
	background:
		radial-gradient(circle at 54% 42%, rgba(22, 49, 82, 0.28), transparent 46%),
		linear-gradient(135deg, #071426 0%, #0b1a30 55%, #071426 100%);
	color: #fff;
}

.tt-showcase__inner,
.tt-testimonials__inner {
	position: relative;
	z-index: 2;
	width: min(calc(100% - 96px), 1480px);
}

.tt-showcase__heading {
	margin: 0 auto 30px;
	text-align: center;
}

.tt-showcase__heading h2 {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	margin: 0;
	color: #0d1321;
	font-size: clamp(27px, 2.25vw, 38px);
	font-weight: 800;
	line-height: 1.35;
}

.tt-showcase__heading h2 > span {
	flex: 0 0 auto;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #e63946;
}

.tt-showcase__heading p {
	margin: 10px 0 0;
	color: #777;
	font-size: 14px;
}

.tt-showcase__heading--dark h2 {
	color: #fff;
}

.tt-showcase__heading--dark p {
	color: rgba(255, 255, 255, 0.62);
}

.tt-showcase__badge {
	position: absolute;
	top: 8px;
	right: 0;
	padding: 6px 12px;
	border: 1px solid #e63946;
	border-radius: 4px;
	color: rgba(255, 255, 255, 0.72);
	font-family: monospace;
	font-size: 10px;
	letter-spacing: 1px;
	direction: ltr;
}

.tt-showcase__badge--light {
	border-color: #8c929a;
	color: #535a64;
}

.tt-portfolio-carousel {
	width: min(100%, 1190px);
	margin: 0 auto;
}

.tt-portfolio-viewport {
	overflow: hidden;
}

.tt-portfolio-track {
	display: flex;
	width: 100%;
	transition: transform 520ms cubic-bezier(0.22, 0.75, 0.22, 1);
	will-change: transform;
	direction: ltr;
}

.tt-portfolio-page {
	display: grid;
	flex: 0 0 100%;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 18px;
	min-width: 0;
	direction: rtl;
}

.tt-portfolio-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(165px, 0.85fr);
	min-width: 0;
	min-height: 190px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(31, 52, 80, 0.82), rgba(19, 38, 64, 0.9));
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
	color: #fff;
	text-decoration: none;
	direction: ltr;
}

.tt-portfolio-card__visual {
	position: relative;
	min-width: 0;
	margin: 17px 0 17px 17px;
	overflow: visible;
	border-radius: 7px;
	background: linear-gradient(145deg, #243c5d, #10243e);
}

.tt-portfolio-card__visual > img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	object-fit: cover;
}

.tt-portfolio-card__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	min-height: 154px;
	place-items: center;
	border-radius: inherit;
	background:
		linear-gradient(135deg, transparent 49.5%, rgba(230, 57, 70, 0.18) 50%, transparent 50.5%),
		linear-gradient(145deg, #253e60, #0d2039);
	color: rgba(255, 255, 255, 0.7);
	font-size: 56px;
	font-weight: 800;
}

.tt-portfolio-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-width: 0;
	padding: 24px 24px 24px 18px;
	text-align: right;
	direction: rtl;
}

.tt-portfolio-card__body h3 {
	width: 100%;
	margin: 0 0 10px;
	font-size: 22px;
	font-weight: 800;
}

.tt-portfolio-card__body p {
	width: 100%;
	margin: 0 0 14px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 13px;
	line-height: 1.8;
}

.tt-portfolio-card__body > span {
	display: inline-flex;
	align-items: center;
	min-height: 31px;
	padding: 5px 13px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 5px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
}

.tt-portfolio-card__result {
	position: absolute;
	z-index: 3;
	top: -4px;
	right: -4px;
	display: grid;
	min-width: 64px;
	min-height: 54px;
	place-items: center;
	padding: 7px;
	border-radius: 6px;
	background: linear-gradient(135deg, #e63946, #f01d2e);
	box-shadow: 0 7px 13px rgba(230, 57, 70, 0.3);
	color: #fff;
	font-size: 15px;
	line-height: 1.05;
	text-align: center;
	direction: ltr;
}

.tt-portfolio-card__result small {
	display: block;
	font-size: 10px;
	direction: rtl;
}

.tt-portfolio-card__corner {
	position: absolute;
	z-index: 2;
	width: 19px;
	height: 19px;
	border-color: #e63946;
	border-style: solid;
}

.tt-portfolio-card__corner--top {
	top: -8px;
	left: -8px;
	border-width: 2px 0 0 2px;
}

.tt-portfolio-card__corner--bottom {
	right: -8px;
	bottom: -8px;
	border-width: 0 2px 2px 0;
}

.tt-portfolio-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 20px;
}

.tt-portfolio-controls > button {
	display: grid;
	width: 33px;
	height: 33px;
	place-items: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	background: transparent;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
}

.tt-portfolio-controls > button:disabled {
	opacity: 0.35;
	cursor: default;
}

.tt-portfolio-more {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: fit-content;
	min-width: 154px;
	min-height: 44px;
	margin: 24px auto 0;
	padding: 10px 24px;
	border: 1px solid #e63946;
	border-radius: 7px;
	background: #e63946;
	box-shadow: 0 8px 20px rgba(230, 57, 70, 0.2);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	text-decoration: none;
	transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.tt-portfolio-more:hover {
	background: #d92c39;
	box-shadow: 0 10px 24px rgba(230, 57, 70, 0.28);
	transform: translateY(-2px);
}

.tt-portfolio-more:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.85);
	outline-offset: 3px;
}

.tt-portfolio-more span {
	font-size: 19px;
	line-height: 1;
}

.tt-portfolio-more .tt-icon--arrow-left {
	filter: brightness(0) invert(1);
}

.tt-portfolio-dots,
.tt-testimonials__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.tt-portfolio-dots button,
.tt-testimonials__dots button {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #a2a5aa;
	cursor: pointer;
}

.tt-portfolio-dots button.is-active,
.tt-testimonials__dots button.is-active {
	background: #e63946;
}

.tt-showcase__rings {
	--tt-orbit-inner-size: 38.2%;
	--tt-orbit-middle-size: 68.4%;
	--tt-orbit-outer-size: 100%;
	--tt-orbit-speed-inner: 14s;
	--tt-orbit-speed-middle: 21s;
	--tt-orbit-speed-outer: 29s;
	position: absolute;
	top: 45px;
	left: -22px;
	width: 285px;
	height: 285px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 50%;
}

.tt-showcase__rings::before,
.tt-showcase__rings::after,
.tt-showcase__rings i {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 50%;
	content: "";
	inset: 45px;
}

.tt-showcase__rings::after {
	inset: 88px;
}

.tt-showcase__rings i {
	inset: 132px;
	background: #e63946;
}

.tt-showcase__plus {
	position: absolute;
	z-index: 3;
	width: 21px;
	height: 21px;
	color: #e63946;
}

.tt-showcase__plus::before,
.tt-showcase__plus::after {
	position: absolute;
	top: 50%;
	left: 50%;
	background: currentColor;
	content: "";
	transform: translate(-50%, -50%);
}

.tt-showcase__plus::before {
	width: 21px;
	height: 1px;
}

.tt-showcase__plus::after {
	width: 1px;
	height: 21px;
}

.tt-showcase__plus--top-start {
	top: 30px;
	left: 38px;
	color: #fff;
}

.tt-showcase__plus--top-end {
	top: 30px;
	right: 38px;
	color: #fff;
}

.tt-testimonials {
	position: relative;
	overflow: hidden;
	padding: 43px 0 36px;
	background: #f5f1e8;
}

.tt-testimonials__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	direction: ltr;
	overscroll-behavior-inline: contain;
	touch-action: pan-x pan-y pinch-zoom;
}

.tt-testimonials__viewport::-webkit-scrollbar {
	display: none;
}

.tt-testimonials__track {
	display: flex;
	gap: 46px;
	padding: 20px 2px 32px;
	direction: ltr;
}

.tt-testimonial-card {
	position: relative;
	display: flex;
	flex: 0 0 calc((100% - 92px) / 3);
	flex-direction: column;
	align-items: center;
	min-width: 0;
	min-height: 225px;
	padding: 59px 31px 25px;
	border: 1px solid rgba(13, 19, 33, 0.1);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 9px 21px rgba(13, 19, 33, 0.12);
	color: #0d1321;
	text-align: center;
	scroll-snap-align: center;
	direction: rtl;
}

.tt-testimonial-card__avatar {
	position: absolute;
	top: -18px;
	display: grid;
	width: 68px;
	height: 68px;
	place-items: center;
	overflow: hidden;
	border: 2px solid #e63946;
	border-radius: 50%;
	background: #e9edf1;
	color: #0d1321;
	font-size: 25px;
	font-weight: 800;
}

.tt-testimonial-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tt-testimonial-card blockquote {
	position: relative;
	margin: 0;
	font-size: 14px;
	line-height: 1.9;
}

.tt-testimonial-card__quote-icon {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-left: 7px;
	vertical-align: -7px;
}

.tt-testimonial-card__rating {
	margin: 13px 0 7px;
	color: #e63946;
	font-size: 17px;
	letter-spacing: 4px;
	direction: ltr;
}

.tt-testimonial-card > strong {
	font-size: 13px;
	font-weight: 600;
}

.tt-testimonial-card > span {
	margin-top: 3px;
	color: #777;
	font-size: 12px;
}

.tt-testimonials__dots {
	margin-top: 7px;
}

.tt-testimonials__title-desktop,
.tt-testimonials__title-mobile {
	font: inherit;
}

.tt-testimonials__title-mobile {
	display: none;
}

.tt-showcase__plus--testimonial-start {
	top: 28px;
	left: 38px;
}

.tt-showcase__plus--testimonial-end {
	top: 28px;
	right: 38px;
}

@media (max-width: 900px) {
	.tt-showcase__portfolio {
		padding: 66px 0 46px;
	}

	.tt-showcase__inner,
	.tt-testimonials__inner {
		width: calc(100% - 38px);
	}

	.tt-showcase__heading {
		margin-bottom: 35px;
		text-align: right;
	}

	.tt-showcase__heading h2 {
		gap: 11px;
		font-size: clamp(25px, 6.5vw, 32px);
	}

	.tt-showcase__heading h2 > span {
		width: 14px;
		height: 14px;
	}

	.tt-showcase__heading p,
	.tt-showcase__badge {
		display: none;
	}

	.tt-portfolio-carousel {
		width: 100%;
	}

	.tt-portfolio-viewport {
		max-height: 965px;
		padding: 0 3px 40px;
		overflow-x: hidden;
		overflow-y: auto;
		scrollbar-color: #e63946 rgba(255, 255, 255, 0.08);
		scrollbar-width: thin;
		overscroll-behavior-x: contain;
		overscroll-behavior-y: auto;
	}

	.tt-portfolio-viewport::-webkit-scrollbar {
		width: 4px;
	}

	.tt-portfolio-viewport::-webkit-scrollbar-track {
		background: rgba(255, 255, 255, 0.06);
	}

	.tt-portfolio-viewport::-webkit-scrollbar-thumb {
		border-radius: 999px;
		background: #e63946;
	}

	.tt-portfolio-track {
		display: block;
		transform: none !important;
	}

	.tt-portfolio-page {
		display: contents;
	}

	.tt-portfolio-card {
		display: flex;
		flex-direction: column;
		min-height: 0;
		margin-bottom: 18px;
		border-radius: 11px;
	}

	.tt-portfolio-card__visual {
		width: calc(100% - 30px);
		height: 280px;
		margin: 15px auto 0;
	}

	.tt-portfolio-card__placeholder {
		min-height: 280px;
	}

	.tt-portfolio-card__body {
		align-items: center;
		padding: 22px 18px 28px;
		text-align: center;
	}

	.tt-portfolio-card__body h3 {
		margin-bottom: 8px;
		font-size: 24px;
		text-align: center;
	}

	.tt-portfolio-card__body p {
		display: none;
	}

	.tt-portfolio-card__body > span {
		font-size: 12px;
	}

	.tt-portfolio-card__result {
		top: 5px;
		right: auto;
		left: -7px;
		min-width: 67px;
		min-height: 58px;
		font-size: 16px;
	}

	.tt-portfolio-controls {
		display: none;
	}

	.tt-portfolio-more {
		width: min(100%, 260px);
		margin-top: 18px;
	}

	.tt-showcase__rings {
		top: -12px;
		left: -70px;
		width: 205px;
		height: 205px;
	}

	.tt-showcase__rings::before,
	.tt-showcase__rings::after,
	.tt-showcase__rings i {
		inset: 32px;
	}

	.tt-showcase__rings::after {
		inset: 65px;
	}

	.tt-showcase__rings i {
		inset: 96px;
	}

	.tt-showcase__plus--top-start,
	.tt-showcase__plus--top-end {
		top: 24px;
	}

	.tt-showcase__plus--top-start {
		left: 18px;
	}

	.tt-showcase__plus--top-end {
		right: 18px;
	}

	.tt-testimonials {
		padding: 61px 0 34px;
	}

	.tt-testimonials .tt-showcase__heading {
		margin-bottom: 38px;
		text-align: center;
	}

	.tt-testimonials__title-desktop {
		display: none;
	}

	.tt-testimonials__title-mobile {
		display: inline;
	}

	.tt-testimonials__viewport {
		width: 100vw;
		margin-right: calc(50% - 50vw);
		margin-left: calc(50% - 50vw);
		scroll-padding-inline: 14vw;
		scroll-snap-type: x proximity;
	}

	.tt-testimonials__track {
		gap: 18px;
		padding: 46px 14vw 34px;
	}

	.tt-testimonial-card {
		flex-basis: 72vw;
		min-height: 285px;
		padding: 70px 27px 26px;
		border-radius: 13px;
	}

	.tt-testimonial-card__avatar {
		top: -30px;
		width: 82px;
		height: 82px;
	}

	.tt-testimonial-card blockquote {
		font-size: clamp(15px, 4.2vw, 18px);
		line-height: 1.95;
	}

	.tt-testimonial-card__quote-icon {
		width: 28px;
		height: 28px;
		margin-left: 8px;
		vertical-align: -8px;
	}

	.tt-testimonial-card__rating {
		font-size: 19px;
	}

	.tt-testimonials__dots {
		margin-top: 7px;
	}

	.tt-showcase__plus--testimonial-start {
		top: 25px;
		left: 18px;
	}

	.tt-showcase__plus--testimonial-end {
		top: 25px;
		right: 18px;
	}
}

@media (max-width: 520px) {
	.tt-portfolio-card__visual {
		height: 210px;
	}

	.tt-portfolio-card__placeholder {
		min-height: 210px;
	}

	.tt-portfolio-viewport {
		max-height: 790px;
	}

	.tt-testimonial-card {
		flex-basis: 76vw;
	}
}

/* Latest articles and final CTA */
.tt-articles {
	position: relative;
	margin-top: -1px;
	padding: 45px 0 42px;
	border-radius: 0;
	background: #f5f1e8;
	color: #0d1321;
}

.tt-articles__inner {
	width: min(calc(100% - 96px), 1480px);
}

.tt-articles__heading {
	margin: 0 0 24px;
	text-align: right;
}

.tt-articles__heading h2 {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	font-size: clamp(26px, 2.15vw, 36px);
	font-weight: 800;
	line-height: 1.35;
}

.tt-articles__heading h2 > span {
	flex: 0 0 auto;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #e63946;
}

.tt-articles__heading p {
	margin: 8px 0 0;
	color: #777;
	font-size: 13px;
}

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

.tt-article-card {
	display: flex;
	height: 335px;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(13, 19, 33, 0.1);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.7);
	box-shadow: 0 8px 21px rgba(13, 19, 33, 0.1);
}

.tt-article-card__image {
	position: relative;
	display: block;
	flex: 0 0 145px;
	margin: 12px 12px 0;
	overflow: hidden;
	border-radius: 7px;
	background: #0d2039;
}

.tt-article-card__image > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 350ms ease;
}

.tt-article-card:hover .tt-article-card__image > img {
	transform: scale(1.035);
}

.tt-article-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 50% 50%, #e63946 0 8%, transparent 8.5%),
		repeating-radial-gradient(circle at 50% 50%, transparent 0 20px, rgba(255, 255, 255, 0.22) 21px 22px),
		linear-gradient(135deg, #1d3656, #08172a);
}

.tt-article-card__corner {
	position: absolute;
	z-index: 2;
	width: 19px;
	height: 19px;
	border-color: #e63946;
	border-style: solid;
}

.tt-article-card__corner--top-start {
	top: 7px;
	left: 7px;
	border-width: 2px 0 0 2px;
}

.tt-article-card__corner--top-end {
	top: 7px;
	right: 7px;
	border-width: 2px 2px 0 0;
}

.tt-article-card__corner--bottom-start {
	bottom: 7px;
	left: 7px;
	border-width: 0 0 2px 2px;
}

.tt-article-card__corner--bottom-end {
	right: 7px;
	bottom: 7px;
	border-width: 0 2px 2px 0;
}

.tt-article-card__body {
	position: relative;
	display: flex;
	flex: 1;
	min-height: 0;
	flex-direction: column;
	padding: 15px 20px 17px;
}

.tt-article-card__body time {
	position: absolute;
	top: -15px;
	right: 40px;
	display: inline-flex;
	width: max-content;
	min-width: 78px;
	min-height: 23px;
	align-items: center;
	justify-content: center;
	padding: 5px 10px;
	border-radius: 5px;
	background: #e63946;
	color: #fff;
	font-size: 10px;
	line-height: 1.2;
	white-space: nowrap;
	direction: ltr;
}

.tt-article-card__body time img {
	display: none;
}

.tt-article-card__body h3 {
	display: -webkit-box;
	min-height: 55px;
	margin: 0 0 8px;
	overflow: hidden;
	font-size: 19px;
	font-weight: 800;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.tt-article-card__body h3 a {
	color: #0d1321;
	text-decoration: none;
}

.tt-article-card__body p {
	display: -webkit-box;
	min-height: 46px;
	margin: 0 0 8px;
	overflow: hidden;
	color: #747474;
	font-size: 13px;
	line-height: 1.8;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.tt-article-card__more {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	width: max-content;
	align-self: flex-end;
	margin-top: auto;
	color: #e63946;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.tt-article-card__more span {
	font-size: 25px;
	font-weight: 300;
}

.tt-articles__all {
	display: none;
}

.tt-articles__plus,
.tt-final-cta__plus {
	position: absolute;
	z-index: 3;
	width: 21px;
	height: 21px;
	color: #e63946;
}

.tt-articles__plus::before,
.tt-articles__plus::after,
.tt-final-cta__plus::before,
.tt-final-cta__plus::after {
	position: absolute;
	top: 50%;
	left: 50%;
	background: currentColor;
	content: "";
	transform: translate(-50%, -50%);
}

.tt-articles__plus::before,
.tt-final-cta__plus::before {
	width: 21px;
	height: 1px;
}

.tt-articles__plus::after,
.tt-final-cta__plus::after {
	width: 1px;
	height: 21px;
}

.tt-articles__plus--start {
	top: 31px;
	left: 38px;
}

.tt-articles__plus--end {
	top: 31px;
	right: 38px;
}

.tt-final-cta {
	position: relative;
	min-height: 220px;
	overflow: hidden;
	background:
		radial-gradient(circle at 69% 42%, rgba(22, 49, 82, 0.24), transparent 35%),
		linear-gradient(135deg, #071426, #0b1a30 55%, #071426);
	color: #fff;
}

.tt-final-cta__inner {
	position: relative;
	z-index: 2;
	display: flex;
	width: min(calc(100% - 96px), 1480px);
	min-height: 220px;
	align-items: center;
	justify-content: flex-start;
	padding-block: 24px;
}

.tt-final-cta__content {
	width: min(620px, 52%);
	text-align: right;
}

.tt-final-cta__content h2 {
	margin: 0;
	font-size: clamp(31px, 2.8vw, 46px);
	font-weight: 800;
	line-height: 1.35;
}

.tt-final-cta__content p {
	margin: 9px 0 18px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 15px;
}

.tt-final-cta__content a {
	display: inline-flex;
	min-width: 275px;
	min-height: 49px;
	align-items: center;
	justify-content: center;
	gap: 15px;
	padding: 10px 24px;
	border-radius: 6px;
	background: #f5f1e8;
	color: #e63946;
	font-size: 15px;
	font-weight: 750;
	text-decoration: none;
}

.tt-final-cta__content a span {
	font-size: 24px;
}

.tt-final-cta__target {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 11%;
	width: 250px;
	height: 250px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	transform: translateY(-50%);
}

.tt-final-cta__target::before,
.tt-final-cta__target::after,
.tt-final-cta__target i {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	content: "";
	inset: 38px;
}

.tt-final-cta__target::after {
	inset: 76px;
}

.tt-final-cta__target i {
	inset: 112px;
	background: #e63946;
}

.tt-final-cta__plus--start {
	top: 29px;
	left: 38px;
	color: #fff;
}

.tt-final-cta__plus--end {
	top: 29px;
	right: 38px;
}

@media (max-width: 900px) {
	.tt-articles {
		padding: 42px 0 31px;
		border-radius: 0;
	}

	.tt-articles__inner {
		width: calc(100% - 38px);
	}

	.tt-articles__heading {
		margin-bottom: 23px;
	}

	.tt-articles__heading h2 {
		gap: 11px;
		font-size: clamp(25px, 6.5vw, 32px);
	}

	.tt-articles__heading p {
		display: none;
	}

	.tt-articles__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 11px;
	}

	.tt-article-card {
		display: grid;
		height: 178px;
		grid-template-columns: minmax(0, 1fr) 42%;
		border-radius: 10px;
		direction: ltr;
	}

	.tt-article-card__image {
		grid-column: 2;
		grid-row: 1;
		height: calc(100% - 18px);
		margin: 9px 9px 9px 0;
		border-radius: 7px;
	}

	.tt-article-card__body {
		grid-column: 1;
		grid-row: 1;
		padding: 24px 18px 17px;
		direction: rtl;
	}

	.tt-article-card__body time {
		position: static;
		display: inline-flex;
		order: 2;
		width: max-content;
		min-width: 120px;
		align-items: center;
		justify-content: center;
		flex-direction: row-reverse;
		padding: 7px 12px;
		margin-top: auto;
		border: 1px solid #e63946;
		border-radius: 6px;
		background: transparent;
		color: #e63946;
		font-size: 12px;
		text-align: center;
	}

	.tt-article-card__body time img {
		display: block;
		flex: 0 0 auto;
		width: 16px;
		height: 16px;
		margin-left: 8px;
	}

	.tt-article-card__body h3 {
		order: 1;
		min-height: 52px;
		margin: 0;
		font-size: clamp(16px, 4.5vw, 20px);
		line-height: 1.55;
	}

	.tt-article-card__body p {
		display: none;
	}

	.tt-article-card__more {
		position: absolute;
		bottom: 42px;
		left: 14px;
		font-size: 0;
	}

	.tt-article-card__more span {
		font-size: 29px;
	}

	.tt-article-card__corner--top-start {
		top: 5px;
		left: 5px;
	}

	.tt-article-card__corner--top-end {
		right: 5px;
		top: 5px;
	}

	.tt-article-card__corner--bottom-start {
		bottom: 5px;
		left: 5px;
	}

	.tt-article-card__corner--bottom-end {
		right: 5px;
		bottom: 5px;
	}

	.tt-articles__all {
		display: inline-flex;
		align-items: center;
		gap: 12px;
		margin-top: 24px;
		color: #e63946;
		font-size: 14px;
		font-weight: 700;
		text-decoration: none;
	}

	.tt-articles__all span {
		font-size: 25px;
	}

	.tt-articles__plus {
		display: none;
	}

	.tt-final-cta {
		min-height: 440px;
	}

	.tt-final-cta__inner {
		width: calc(100% - 38px);
		min-height: 440px;
		align-items: flex-end;
		justify-content: center;
		padding: 32px 0 52px;
	}

	.tt-final-cta__content {
		width: 100%;
		text-align: center;
	}

	.tt-final-cta__content h2 {
		font-size: clamp(18px, 5.4vw, 25px);
		white-space: nowrap;
	}

	.tt-final-cta__content p {
		margin: 12px 0 27px;
		font-size: clamp(13px, 3.8vw, 16px);
	}

	.tt-final-cta__content a {
		display: flex;
		width: 100%;
		min-height: 58px;
		font-size: clamp(15px, 4.2vw, 19px);
	}

	.tt-final-cta__content a span {
		display: none;
	}

	.tt-final-cta__target {
		top: 42px;
		left: 50%;
		width: 185px;
		height: 185px;
		transform: translateX(-50%);
	}

	.tt-final-cta__target::before,
	.tt-final-cta__target::after,
	.tt-final-cta__target i {
		inset: 28px;
	}

	.tt-final-cta__target::after {
		inset: 56px;
	}

	.tt-final-cta__target i {
		inset: 82px;
	}

	.tt-final-cta__plus--start {
		top: 28px;
		left: 18px;
	}

	.tt-final-cta__plus--end {
		top: 28px;
		right: 18px;
		color: #fff;
	}
}

@media (max-width: 430px) {
	.tt-article-card {
		height: 165px;
		grid-template-columns: minmax(0, 1fr) 44%;
	}

	.tt-article-card__body {
		padding: 20px 13px 14px;
	}

	.tt-article-card__body time {
		min-width: 106px;
		font-size: 11px;
	}

	.tt-article-card__more {
		bottom: 34px;
		left: 10px;
	}
}

.tt-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
	align-items: center;
	gap: clamp(44px, 5vw, 88px);
	width: min(calc(100% - 96px), 1480px);
	min-height: calc(100svh - 96px);
	padding-block: clamp(64px, 8vh, 92px);
}

.tt-hero__content {
	min-width: 0;
	max-width: 650px;
}

.tt-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 25px;
	color: var(--tt-navy);
	font-family: "Courier New", monospace;
	font-size: clamp(13px, 1vw, 17px);
	font-weight: 600;
	letter-spacing: 3px;
	direction: ltr;
	white-space: nowrap;
}

.tt-hero__eyebrow span {
	flex: 0 0 15px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: var(--tt-red);
	box-shadow: 0 0 16px rgba(230, 57, 70, 0.22);
}

.tt-hero h1 {
	max-width: 730px;
	margin: 0;
	color: var(--tt-navy);
	font-size: clamp(40px, 3.4vw, 60px);
	font-weight: 900;
	line-height: 1.28;
	letter-spacing: -2px;
}

.tt-hero__description {
	max-width: 710px;
	margin: 20px 0 0;
	color: rgba(13, 19, 33, 0.58);
	font-size: clamp(16px, 1.3vw, 22px);
	font-weight: 600;
	line-height: 1.85;
}

.tt-hero__description--mobile {
	display: none;
}

.tt-hero__actions {
	display: flex;
	gap: 26px;
	margin-top: 32px;
}

.tt-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: min(100%, 258px);
	min-height: 64px;
	padding: 12px 21px;
	border: 1px solid var(--tt-red);
	border-radius: 13px;
	font-size: clamp(15px, 1.08vw, 18px);
	font-weight: 800;
	transition:
		background-color 160ms ease,
		color 160ms ease,
		box-shadow 160ms ease,
		transform 160ms ease;
}

.tt-hero__button--primary {
	background: linear-gradient(135deg, #ef333d, #e52633);
	box-shadow: 0 14px 32px rgba(230, 57, 70, 0.16);
	color: var(--tt-white);
}

.tt-hero__button--secondary {
	background: rgba(255, 255, 255, 0.28);
	color: var(--tt-red);
}

.tt-hero__button:hover,
.tt-hero__button:focus-visible {
	box-shadow: 0 15px 32px rgba(230, 57, 70, 0.22);
	transform: translateY(-3px);
}

.tt-hero__button--secondary:hover,
.tt-hero__button--secondary:focus-visible {
	background: var(--tt-red);
	color: var(--tt-white);
}

.tt-hero__button:focus-visible {
	outline: 3px solid var(--tt-navy);
	outline-offset: 4px;
}

.tt-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	padding: 0;
	margin: 32px 0 0;
	list-style: none;
}

.tt-hero__stats li {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
	min-height: 52px;
	padding: 8px 13px;
	border: 1px solid rgba(13, 19, 33, 0.08);
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.7);
	box-shadow: 0 9px 24px rgba(13, 19, 33, 0.04);
	color: var(--tt-navy);
	font-size: clamp(12px, 0.9vw, 14px);
	font-weight: 700;
	white-space: nowrap;
}

.tt-hero__stats li span {
	display: grid;
	flex: 0 0 23px;
	width: 23px;
	height: 23px;
	place-items: center;
	border-radius: 50%;
	background: transparent;
	color: var(--tt-red);
	font-family: Arial, sans-serif;
	font-size: 13px;
}

.tt-hero__visual {
	position: relative;
	width: min(100%, 650px);
	min-width: 0;
	padding: 20px;
	justify-self: start;
}

.tt-hero__picture {
	display: block;
	width: 100%;
	height: 100%;
}

.tt-hero__image {
	width: 100%;
	height: auto;
	border-radius: 14px;
	filter: drop-shadow(0 20px 35px rgba(13, 19, 33, 0.15));
}

.tt-browser-mockup {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1.18;
	border: 1px solid rgba(13, 19, 33, 0.22);
	border-radius: 15px;
	background: #fff;
	box-shadow: 0 22px 45px rgba(13, 19, 33, 0.13);
}

.tt-browser-mockup__bar {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	height: 48px;
	padding-inline: 20px;
	border-bottom: 1px solid rgba(13, 19, 33, 0.08);
	background: linear-gradient(#fff, #f5f5f5);
	direction: ltr;
}

.tt-browser-mockup__controls {
	display: flex;
	align-items: center;
	gap: 7px;
}

.tt-browser-mockup__controls span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #e74c3c;
}

.tt-browser-mockup__controls span:nth-child(2) {
	background: #f4b52b;
}

.tt-browser-mockup__controls span:nth-child(3) {
	background: #31ad50;
}

.tt-browser-mockup__back {
	width: 15px;
	height: 15px;
	margin-left: 8px;
	object-fit: contain;
}

.tt-browser-mockup__address {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 47%;
	padding: 6px 10px;
	border-radius: 7px;
	background: rgba(13, 19, 33, 0.045);
	color: rgba(13, 19, 33, 0.45);
	transform: translate(-50%, -50%);
}

.tt-browser-mockup__address img {
	width: 10px;
	height: 10px;
	object-fit: contain;
}

.tt-browser-mockup__address b {
	overflow: hidden;
	font-family: Arial, sans-serif;
	font-size: 10px;
	font-weight: 400;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.tt-browser-mockup__tools {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-left: auto;
}

.tt-browser-mockup__tools img {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.tt-browser-mockup__tools img:last-child {
	width: 18px;
}

.tt-browser-mockup__screen {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	align-items: center;
	height: 67%;
	overflow: hidden;
	padding: 38px;
	background:
		radial-gradient(circle at 18% 30%, rgba(37, 67, 104, 0.48), transparent 27%),
		linear-gradient(135deg, #08111e, #10243a);
	color: #fff;
}

.tt-browser-mockup__screen--image {
	display: block;
	padding: 2px;
	background: #eef0f2;
}

.tt-browser-mockup__screen--image .tt-hero__picture {
	overflow: hidden;
	border: 1px solid rgba(13, 19, 33, 0.08);
	border-radius: 9px;
}

.tt-browser-mockup__screen--image .tt-hero__image {
	width: 100%;
	height: 100%;
	border-radius: 0;
	object-fit: cover;
	filter: none;
}

.tt-browser-mockup__placeholder {
	display: contents;
}

.tt-browser-mockup__copy {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 15px;
}

.tt-browser-mockup__copy b {
	font-size: clamp(19px, 2vw, 32px);
	line-height: 1.55;
}

.tt-browser-mockup__copy small {
	color: rgba(255, 255, 255, 0.68);
	font-size: 11px;
	line-height: 1.8;
}

.tt-browser-mockup__copy i {
	width: 110px;
	height: 34px;
	border-radius: 7px;
	background: var(--tt-red);
}

.tt-browser-mockup__shape {
	width: 88%;
	aspect-ratio: 1;
	justify-self: end;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 44% 56% 50% 50%;
	background:
		linear-gradient(140deg, transparent 50%, rgba(255, 255, 255, 0.14)),
		radial-gradient(circle at 50% 60%, #304d6c, #13263c 66%);
	box-shadow: 35px 30px 80px rgba(87, 124, 163, 0.22);
	transform: rotate(-8deg);
}

.tt-browser-mockup__features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: center;
	height: calc(33% - 48px);
	color: rgba(13, 19, 33, 0.76);
	font-size: 10px;
	font-weight: 600;
	text-align: center;
}

.tt-browser-mockup__features > span {
	display: grid;
	align-content: center;
	justify-items: center;
	gap: 7px;
	height: 100%;
	padding: 8px 5px;
}

.tt-browser-mockup__features i {
	display: grid;
	width: 35px;
	height: 35px;
	place-items: center;
	font-family: Arial, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: 700;
}

.tt-browser-mockup__features i img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.tt-browser-mockup__features b {
	font-size: 11px;
	font-weight: 700;
}

.tt-browser-mockup__features span + span {
	border-right: 1px solid rgba(13, 19, 33, 0.08);
}

.tt-rank-card {
	position: absolute;
	z-index: 3;
	bottom: 19%;
	left: -8%;
	display: grid;
	width: 150px;
	min-height: 205px;
	place-items: center;
	padding: 20px 12px;
	border: 1px solid rgba(13, 19, 33, 0.1);
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 15px 35px rgba(13, 19, 33, 0.15);
	color: var(--tt-navy);
	text-align: center;
	backdrop-filter: blur(10px);
}

.tt-rank-card > span {
	font-size: 13px;
	font-weight: 600;
}

.tt-rank-card strong {
	display: grid;
	width: 80px;
	height: 80px;
	place-items: center;
	border: 7px solid var(--tt-red);
	border-radius: 50%;
	font-family: Arial, sans-serif;
	font-size: 36px;
	box-shadow: inset 0 0 0 5px #fff;
}

.tt-rank-card b {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #229540;
	font-size: 17px;
}

.tt-rank-card b i {
	font-style: normal;
}

.tt-hero__corner {
	position: absolute;
	z-index: 4;
	width: 38px;
	height: 38px;
	pointer-events: none;
}

.tt-hero__corner--tr {
	top: 0;
	right: 0;
	border-top: 2px solid var(--tt-red);
	border-right: 2px solid var(--tt-red);
}

.tt-hero__corner--tl {
	top: 0;
	left: 0;
	border-top: 2px solid var(--tt-red);
	border-left: 2px solid var(--tt-red);
}

.tt-hero__corner--br {
	right: 0;
	bottom: 0;
	border-right: 2px solid var(--tt-red);
	border-bottom: 2px solid var(--tt-red);
}

.tt-hero__corner--bl {
	bottom: 0;
	left: 0;
	border-bottom: 2px solid var(--tt-red);
	border-left: 2px solid var(--tt-red);
}

.tt-hero__rings {
	--tt-orbit-inner-size: 24.5%;
	--tt-orbit-middle-size: 49.3%;
	--tt-orbit-outer-size: 74.1%;
	position: absolute;
	top: 8%;
	left: -270px;
	width: 580px;
	height: 580px;
	border-radius: 50%;
	background: repeating-radial-gradient(circle, transparent 0 34px, rgba(230, 57, 70, 0.5) 35px 36px);
}

.tt-hero__rings i {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--tt-red);
	transform: translate(-50%, -50%);
}

.tt-hero__plus {
	position: absolute;
	width: 28px;
	height: 28px;
}

.tt-hero__plus::before,
.tt-hero__plus::after {
	position: absolute;
	background: var(--tt-red);
	content: "";
}

.tt-hero__plus::before {
	top: 13px;
	width: 28px;
	height: 2px;
}

.tt-hero__plus::after {
	left: 13px;
	width: 2px;
	height: 28px;
}

.tt-hero__plus--top {
	top: 32px;
	right: 32px;
}

.tt-hero__plus--bottom {
	bottom: 30px;
	left: 32px;
}

.tt-hero__scroll {
	display: none;
}

.tt-home-content {
	padding-block: 64px;
	font-size: 18px;
	line-height: 2;
}

.tt-services {
	position: relative;
	overflow: hidden;
	padding-block: 70px 74px;
	background: var(--tt-background);
}

.tt-services__inner,
.tt-website-types__inner {
	width: min(calc(100% - 96px), 1480px);
}

.tt-section-heading {
	width: min(100%, 360px);
	margin: 0 0 32px auto;
	text-align: right;
}

.tt-section-heading h2 {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	color: var(--tt-navy);
	font-size: clamp(27px, 2.2vw, 38px);
	font-weight: 900;
	line-height: 1.4;
}

.tt-section-heading h2 span {
	flex: 0 0 12px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--tt-red);
}

.tt-section-heading p {
	margin: 12px 24px 0 0;
	color: rgba(13, 19, 33, 0.7);
	font-size: 15px;
	line-height: 1.8;
}

.tt-section-plus {
	position: absolute;
	top: 38px;
	left: 38px;
	width: 24px;
	height: 24px;
}

.tt-section-plus::before,
.tt-section-plus::after {
	position: absolute;
	background: var(--tt-navy);
	content: "";
}

.tt-section-plus::before {
	top: 11px;
	width: 24px;
	height: 1px;
}

.tt-section-plus::after {
	left: 11px;
	width: 1px;
	height: 24px;
}

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

.tt-service-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 126px;
	padding: 22px 32px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-top: 3px solid var(--tt-red);
	border-radius: 9px;
	background:
		radial-gradient(circle at 15% 10%, rgba(30, 59, 92, 0.34), transparent 38%),
		linear-gradient(135deg, #0c1728, #07111f);
	box-shadow: 0 14px 25px rgba(13, 19, 33, 0.13);
	color: var(--tt-white);
	transition:
		box-shadow 180ms ease,
		transform 180ms ease;
}

.tt-service-card:hover,
.tt-service-card:focus-visible {
	box-shadow: 0 16px 32px rgba(13, 19, 33, 0.2);
	transform: translateY(-4px);
}

.tt-service-card:focus-visible {
	outline: 3px solid var(--tt-red);
	outline-offset: 3px;
}

.tt-service-card--5 {
	border-color: var(--tt-red);
	box-shadow:
		0 0 0 1px rgba(230, 57, 70, 0.55),
		0 0 23px rgba(230, 57, 70, 0.3);
}

.tt-service-card__icon {
	display: grid;
	flex: 0 0 72px;
	width: 72px;
	height: 72px;
	place-items: center;
	color: var(--tt-red);
	font-family: Arial, sans-serif;
	font-size: 23px;
	font-weight: 800;
	direction: ltr;
}

.tt-service-card__icon img {
	width: 68px;
	height: 68px;
	object-fit: contain;
}

.tt-service-card__body {
	display: grid;
	min-width: 0;
	gap: 10px;
}

.tt-service-card__title {
	margin: 0;
	color: inherit;
	font-size: 18px;
	font-weight: 800;
	line-height: inherit;
}

.tt-service-card small {
	color: rgba(255, 255, 255, 0.68);
	font-size: 13px;
	line-height: 1.75;
}

.tt-service-card__mobile-title {
	display: none;
}

.tt-service-card__badge {
	position: absolute;
	top: 12px;
	left: 15px;
	padding: 5px 9px;
	border: 1px solid var(--tt-red);
	border-radius: 5px;
	color: var(--tt-red);
	font-family: "Courier New", monospace;
	font-size: 9px;
	font-style: normal;
	letter-spacing: 1px;
	direction: ltr;
}

.tt-service-card__badge--6 {
	display: none;
}

.tt-website-types {
	position: relative;
	overflow: hidden;
	padding-block: 48px 45px;
	background:
		radial-gradient(circle at 64% 15%, rgba(29, 57, 92, 0.27), transparent 34%),
		linear-gradient(145deg, #07111f, #0d1b2c 60%, #07111f);
	color: var(--tt-white);
}

.tt-section-heading--light {
	width: min(100%, 430px);
	margin-bottom: 25px;
}

.tt-section-heading--light h2 {
	color: var(--tt-white);
}

.tt-section-heading--light p {
	color: rgba(255, 255, 255, 0.68);
}

.tt-section-plus--light {
	top: 40px;
	right: 32px;
	left: auto;
}

.tt-section-plus--light::before,
.tt-section-plus--light::after {
	background: rgba(255, 255, 255, 0.68);
}

.tt-website-types__carousel {
	position: relative;
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
	contain: layout paint;
}

.tt-website-types__slider {
	position: relative;
	z-index: 2;
	display: grid;
	min-width: 0;
	max-width: 100%;
	grid-template-columns: repeat(var(--website-card-count), minmax(0, 1fr));
	gap: 24px;
}

.tt-website-types__slider.is-scrollable {
	display: flex;
	padding-bottom: 14px;
	overflow-x: auto;
	scrollbar-width: none;
	scroll-snap-type: x mandatory;
	overscroll-behavior-inline: contain;
	-webkit-overflow-scrolling: touch;
	scroll-padding-inline: 52px;
}

.tt-website-types__slider.is-scrollable::-webkit-scrollbar {
	display: none;
}

.tt-website-types__slider.is-scrollable .tt-website-card {
	flex: 0 0 calc((100% - 72px) / 4);
	scroll-snap-align: start;
}

.tt-website-types__arrow {
	position: absolute;
	z-index: 5;
	top: 50%;
	display: grid;
	width: 44px;
	height: 44px;
	padding: 12px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: 50%;
	background: rgba(7, 17, 31, 0.92);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
	cursor: pointer;
	transform: translateY(-50%);
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		opacity 160ms ease;
}

.tt-website-types__arrow img {
	width: 100%;
	height: 100%;
	filter: brightness(0) invert(1);
}

.tt-website-types__arrow--previous {
	right: 9px;
}

.tt-website-types__arrow--previous img {
	transform: rotate(180deg);
}

.tt-website-types__arrow--next {
	left: 9px;
}

.tt-website-types__arrow:hover,
.tt-website-types__arrow:focus-visible {
	border-color: var(--tt-red);
	background: var(--tt-red);
}

.tt-website-types__arrow:focus-visible {
	outline: 2px solid var(--tt-white);
	outline-offset: 3px;
}

.tt-website-types__arrow:disabled {
	opacity: 0.28;
	cursor: default;
}

.tt-website-card {
	display: flex;
	min-width: 0;
	min-height: 350px;
	padding: 18px 24px 20px;
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: 10px;
	flex-direction: column;
	background: rgba(9, 21, 36, 0.38);
}

.tt-website-card__visual {
	position: relative;
	display: grid;
	height: 176px;
	place-items: center;
	margin-bottom: 20px;
	overflow: hidden;
}

.tt-website-card__visual > img {
	width: calc(100% - 28px);
	height: calc(100% - 24px);
	border-radius: 7px;
	object-fit: cover;
}

.tt-website-card__corner {
	position: absolute;
	width: 23px;
	height: 23px;
}

.tt-website-card__corner--tr {
	top: 0;
	right: 0;
	border-top: 3px solid var(--tt-red);
	border-right: 3px solid var(--tt-red);
}

.tt-website-card__corner--bl {
	bottom: 0;
	left: 0;
	border-bottom: 3px solid var(--tt-red);
	border-left: 3px solid var(--tt-red);
}

.tt-mini-browser {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 20px 1fr;
	gap: 8px;
	width: calc(100% - 36px);
	height: calc(100% - 28px);
	padding: 7px 12px 12px;
	border-radius: 7px;
	background: #f7f7f4;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.tt-mini-browser i {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--tt-red);
}

.tt-mini-browser i:nth-child(2) {
	background: #f0b72f;
}

.tt-mini-browser i:nth-child(3) {
	background: #38a957;
}

.tt-mini-browser span {
	border-radius: 5px;
	background: linear-gradient(135deg, #d7dce2, #aeb9c5);
}

.tt-website-card h3 {
	margin: 0;
	font-size: 21px;
	font-weight: 800;
}

.tt-website-card p {
	margin: 10px 0 18px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 1.8;
}

.tt-website-card > a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: auto;
	color: var(--tt-red);
	font-size: 14px;
	font-weight: 700;
}

.tt-website-card > a span {
	font-size: 22px;
	transition: transform 160ms ease;
}

.tt-website-card > a:hover span,
.tt-website-card > a:focus-visible span {
	transform: translateX(-4px);
}

.tt-website-types__dots {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 26px;
}

.tt-website-types__dots.is-visible-desktop {
	display: flex;
}

.tt-website-types__dots button {
	width: 14px;
	height: 14px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.38);
	cursor: pointer;
	transition:
		background-color 160ms ease,
		transform 160ms ease;
}

.tt-website-types__dots button:hover,
.tt-website-types__dots button:focus-visible {
	transform: scale(1.18);
}

.tt-website-types__dots button.is-active {
	background: var(--tt-red);
}

.tt-website-types__rings {
	--tt-orbit-inner-size: 37.1%;
	--tt-orbit-middle-size: 74.9%;
	--tt-orbit-outer-size: 93.8%;
	--tt-orbit-speed-inner: 15s;
	--tt-orbit-speed-middle: 22s;
	--tt-orbit-speed-outer: 30s;
	position: absolute;
	top: 10px;
	left: -115px;
	width: 275px;
	height: 275px;
	border-radius: 50%;
	background: repeating-radial-gradient(circle, transparent 0 24px, rgba(230, 57, 70, 0.48) 25px 26px);
}

.tt-website-types__rings i {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--tt-red);
	transform: translate(-50%, -50%);
}

@media (max-width: 1280px) {
	.tt-hero__inner {
		gap: 35px;
	}

	.tt-hero__actions {
		gap: 14px;
	}

	.tt-hero__stats {
		gap: 12px;
	}

	.tt-rank-card {
		left: -3%;
		width: 125px;
		min-height: 175px;
	}

	.tt-rank-card strong {
		width: 65px;
		height: 65px;
		font-size: 30px;
	}

	.tt-service-card {
		gap: 16px;
		padding-inline: 22px;
	}

	.tt-website-types__slider {
		gap: 16px;
	}
}

@media (max-width: 860px) {
	.tt-hero {
		min-height: 0;
		background:
			radial-gradient(circle at 55% 25%, rgba(29, 57, 92, 0.3), transparent 35%),
			linear-gradient(155deg, #07101d, #0d1b2c 60%, #07101d);
	}

	.tt-hero__inner {
		display: flex;
		width: min(calc(100% - 48px), 760px);
		min-height: 0;
		padding-block: 88px 70px;
		flex-direction: column;
		gap: 70px;
	}

	.tt-hero__content {
		width: 100%;
		text-align: center;
	}

	.tt-hero__eyebrow {
		justify-content: center;
		margin-bottom: 27px;
		color: rgba(255, 255, 255, 0.9);
		font-size: clamp(11px, 3vw, 15px);
		letter-spacing: 2px;
	}

	.tt-hero h1 {
		max-width: none;
		color: var(--tt-white);
		font-size: clamp(34px, 8.5vw, 48px);
		line-height: 1.4;
		letter-spacing: -1px;
	}

	.tt-hero__description {
		max-width: 680px;
		margin: 20px auto 0;
		color: rgba(255, 255, 255, 0.62);
		font-size: clamp(16px, 4.1vw, 21px);
		line-height: 2;
	}

	.tt-hero__description--desktop {
		display: none;
	}

	.tt-hero__description--mobile {
		display: block;
	}

	.tt-hero__actions {
		display: grid;
		max-width: 650px;
		margin: 34px auto 0;
		gap: 14px;
	}

	.tt-hero__button {
		width: 100%;
		min-height: 58px;
		border-radius: 11px;
		font-size: 17px;
	}

	.tt-hero__button--secondary {
		border-color: rgba(255, 255, 255, 0.84);
		background: transparent;
		color: var(--tt-white);
	}

	.tt-hero__button:focus-visible {
		outline-color: var(--tt-white);
	}

	.tt-hero__stats {
		max-width: 720px;
		margin: 35px auto 0;
		gap: 12px;
	}

	.tt-hero__stats li {
		min-height: 58px;
		padding: 8px;
		border-color: rgba(255, 255, 255, 0.3);
		background: rgba(5, 13, 24, 0.32);
		color: var(--tt-white);
		font-size: clamp(10px, 2.7vw, 14px);
	}

	.tt-hero__visual {
		width: min(94%, 680px);
		padding: 18px;
		align-self: center;
	}

	.tt-browser-mockup {
		border-color: rgba(255, 255, 255, 0.4);
	}

	.tt-browser-mockup__screen {
		height: calc(100% - 48px);
	}

	.tt-browser-mockup__screen--image {
		padding: 0;
	}

	.tt-browser-mockup__screen--image .tt-hero__picture {
		border: 0;
		border-radius: 0;
	}

	.tt-browser-mockup__features {
		display: none;
	}

	.tt-rank-card {
		right: -1%;
		bottom: auto;
		top: 10%;
		left: auto;
		width: 120px;
		min-height: 76px;
		padding: 10px;
		border-color: rgba(255, 255, 255, 0.32);
		background: rgba(230, 57, 70, 0.94);
		color: var(--tt-white);
	}

	.tt-rank-card > span,
	.tt-rank-card strong {
		display: none;
	}

	.tt-rank-card b {
		color: var(--tt-white);
		font-size: 18px;
	}

	.tt-hero__rings {
		--tt-orbit-inner-size: 36.36%;
		--tt-orbit-middle-size: 54.54%;
		top: -200px;
		left: -200px;
		width: 440px;
		height: 440px;
		background: repeating-radial-gradient(circle, transparent 0 38px, rgba(230, 57, 70, 0.54) 39px 40px);
	}

	.tt-hero__rings i {
		width: 18px;
		height: 18px;
	}

	.tt-hero__rings .tt-target-orbit--outer {
		display: none;
	}

	.tt-hero__plus--top {
		display: none;
	}

	.tt-hero__plus--bottom {
		right: 50%;
		bottom: 82px;
		left: auto;
		transform: translateX(50%);
	}

	.tt-hero__scroll {
		position: absolute;
		z-index: 4;
		right: 50%;
		bottom: 22px;
		display: grid;
		width: 44px;
		height: 48px;
		place-items: center;
		transform: translateX(50%);
	}

	.tt-hero__scroll i {
		position: absolute;
		width: 24px;
		height: 24px;
		border-right: 4px solid var(--tt-white);
		border-bottom: 4px solid var(--tt-white);
		transform: rotate(45deg);
	}

	.tt-hero__scroll i:first-child {
		top: 1px;
	}

	.tt-hero__scroll i:last-child {
		top: 14px;
	}

	.tt-hero__scroll:focus-visible {
		outline: 2px solid var(--tt-white);
		outline-offset: 4px;
	}

	.tt-services {
		padding-block: 80px 66px;
	}

	.tt-services__inner,
	.tt-website-types__inner {
		width: calc(100% - 48px);
	}

	.tt-section-heading {
		width: auto;
		margin-bottom: 28px;
	}

	.tt-section-heading h2 {
		font-size: 29px;
	}

	.tt-section-heading p {
		display: none;
	}

	.tt-section-plus {
		top: 30px;
		right: 25px;
		left: auto;
	}

	.tt-services__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 13px;
	}

	.tt-service-card {
		order: var(--mobile-order);
		display: flex;
		min-height: 215px;
		padding: 23px 10px;
		border-radius: 9px;
		flex-direction: column;
		justify-content: center;
		gap: 20px;
		text-align: center;
	}

	.tt-service-card--5 {
		border-color: rgba(255, 255, 255, 0.07);
		border-top-color: var(--tt-red);
		box-shadow: 0 14px 25px rgba(13, 19, 33, 0.13);
	}

	.tt-service-card--6 {
		border-color: var(--tt-red);
		box-shadow:
			0 0 0 1px rgba(230, 57, 70, 0.5),
			0 0 20px rgba(230, 57, 70, 0.26);
	}

	.tt-service-card__icon {
		flex-basis: 76px;
		width: 76px;
		height: 76px;
		font-size: 23px;
	}

	.tt-service-card__icon img {
		width: 74px;
		height: 74px;
	}

	.tt-service-card__body {
		display: block;
	}

	.tt-service-card__title {
		font-size: clamp(16px, 4vw, 22px);
	}

	.tt-service-card__desktop-title,
	.tt-service-card small {
		display: none;
	}

	.tt-service-card__mobile-title {
		display: block;
	}

	.tt-service-card__badge--5 {
		display: none;
	}

	.tt-service-card__badge--6 {
		display: block;
	}

	.tt-website-types {
		padding-block: 62px 38px;
		border-radius: 22px;
	}

	.tt-section-heading--light {
		width: auto;
		margin-bottom: 34px;
	}

	.tt-section-heading--light h2 {
		font-size: clamp(26px, 6.8vw, 34px);
	}

	.tt-section-plus--light {
		top: auto;
		right: 24px;
		bottom: 30px;
	}

	.tt-website-types__slider {
		display: flex;
		width: 100%;
		max-width: 100%;
		margin-inline: 0;
		padding-inline: 0;
		padding-bottom: 12px;
		gap: 14px;
		overflow-x: auto;
		scrollbar-width: none;
		scroll-snap-type: x mandatory;
		overscroll-behavior-inline: contain;
		scroll-padding-inline: 0;
	}

	.tt-website-types__slider::-webkit-scrollbar {
		display: none;
	}

	.tt-website-card,
	.tt-website-types__slider.is-scrollable .tt-website-card {
		flex: 0 0 calc((100% - 14px) / 2);
		width: calc((100% - 14px) / 2);
		max-width: calc((100% - 14px) / 2);
		min-height: 386px;
		padding: 16px 18px 18px;
		scroll-snap-align: center;
	}

	.tt-website-types__arrow {
		display: none;
	}

	.tt-website-card__visual {
		height: 160px;
	}

	.tt-website-card h3 {
		font-size: 18px;
	}

	.tt-website-card p {
		font-size: 13px;
	}

	.tt-website-card > a {
		font-size: 0;
	}

	.tt-website-card > a span {
		font-size: 28px;
	}

	.tt-website-types__dots {
		display: flex;
		margin-top: 30px;
	}

	.tt-website-types__rings {
		top: -35px;
		left: -125px;
		width: 270px;
		height: 270px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tt-target-orbit {
		animation: none;
		transform: translate(-50%, -50%);
	}
}

@media (max-width: 560px) {
	.tt-hero__inner {
		width: calc(100% - 48px);
		padding-block: 88px 60px;
		gap: 58px;
	}

	.tt-hero__eyebrow {
		white-space: normal;
	}

	.tt-hero__stats {
		gap: 8px;
	}

	.tt-hero__stats li {
		flex-direction: row;
		gap: 6px;
		border-radius: 10px;
		white-space: normal;
	}

	.tt-hero__stats li span {
		flex-basis: 20px;
		width: 20px;
		height: 20px;
	}

	.tt-hero__visual {
		padding: 9px;
	}

	.tt-browser-mockup__bar {
		height: 34px;
		padding-inline: 12px;
	}

	.tt-browser-mockup__controls {
		gap: 5px;
	}

	.tt-browser-mockup__controls span {
		width: 8px;
		height: 8px;
	}

	.tt-browser-mockup__back {
		width: 11px;
		height: 11px;
		margin-left: 3px;
	}

	.tt-browser-mockup__address {
		gap: 4px;
		width: 48%;
		padding: 4px 7px;
	}

	.tt-browser-mockup__address img {
		width: 7px;
		height: 7px;
	}

	.tt-browser-mockup__address b {
		font-size: 7px;
	}

	.tt-browser-mockup__tools {
		gap: 9px;
	}

	.tt-browser-mockup__tools img {
		width: 11px;
		height: 11px;
	}

	.tt-browser-mockup__tools img:last-child {
		width: 13px;
	}

	.tt-browser-mockup__screen {
		height: calc(100% - 34px);
		padding: 19px;
	}

	.tt-browser-mockup__screen--image {
		padding: 0;
	}

	.tt-browser-mockup__copy {
		gap: 8px;
	}

	.tt-browser-mockup__copy b {
		font-size: 15px;
	}

	.tt-browser-mockup__copy small {
		font-size: 7px;
	}

	.tt-browser-mockup__copy i {
		width: 72px;
		height: 22px;
	}

	.tt-rank-card {
		top: 7%;
		left: 0;
		width: 96px;
		min-height: 56px;
	}

	.tt-rank-card b {
		font-size: 12px;
	}

	.tt-hero__corner {
		width: 27px;
		height: 27px;
	}

	.tt-services {
		padding-top: 72px;
	}

	.tt-services__inner,
	.tt-website-types__inner {
		width: calc(100% - 36px);
	}

	.tt-service-card {
		min-height: 185px;
	}

	.tt-service-card__icon {
		flex-basis: 65px;
		width: 65px;
		height: 65px;
	}

	.tt-service-card__icon img {
		width: 62px;
		height: 62px;
	}

	.tt-website-card,
	.tt-website-types__slider.is-scrollable .tt-website-card {
		flex-basis: calc((100% - 14px) / 2);
		width: calc((100% - 14px) / 2);
		max-width: calc((100% - 14px) / 2);
		min-height: 354px;
		padding-inline: 14px;
	}

	.tt-website-card__visual {
		height: 142px;
	}
}

@media (min-width: 1100px) {
	.tt-hero__inner,
	.tt-services__inner,
	.tt-website-types__inner,
	.tt-pricing__inner,
	.tt-process__inner,
	.tt-showcase__inner,
	.tt-testimonials__inner,
	.tt-articles__inner,
	.tt-final-cta__inner {
		width: min(calc(100% - clamp(112px, 8vw, 160px)), 1420px);
	}

	.tt-process__rings {
		left: -150px;
	}

	.tt-showcase__rings {
		left: -85px;
	}

	.tt-website-types__rings {
		left: -170px;
	}

	.tt-hero__rings {
		left: -330px;
	}

	.tt-section-plus,
	.tt-hero__plus--bottom,
	.tt-pricing__plus--top-start,
	.tt-pricing__plus--bottom-start,
	.tt-process__plus--top-start,
	.tt-process__plus--bottom-start,
	.tt-showcase__plus--top-start,
	.tt-showcase__plus--testimonial-start,
	.tt-articles__plus--start,
	.tt-final-cta__plus--start {
		left: 24px;
	}

	.tt-section-plus--light,
	.tt-hero__plus--top,
	.tt-pricing__plus--top-end,
	.tt-pricing__plus--bottom-end,
	.tt-process__plus--top-end,
	.tt-process__plus--bottom-end,
	.tt-showcase__plus--top-end,
	.tt-showcase__plus--testimonial-end,
	.tt-articles__plus--end,
	.tt-final-cta__plus--end {
		right: 24px;
		left: auto;
	}
}

/* Shared SVG decorations: one plus and one corner asset for the whole homepage. */
.tt-hero__plus,
.tt-section-plus,
.tt-pricing__plus,
.tt-process__plus,
.tt-showcase__plus,
.tt-articles__plus,
.tt-final-cta__plus {
	background: currentColor;
	-webkit-mask: url("../icons/plus.svg") center / contain no-repeat;
	mask: url("../icons/plus.svg") center / contain no-repeat;
}

.tt-hero__plus {
	color: var(--tt-red);
}

.tt-section-plus {
	color: var(--tt-navy);
}

.tt-section-plus--light {
	color: rgba(255, 255, 255, 0.68);
}

.tt-hero__plus::before,
.tt-hero__plus::after,
.tt-section-plus::before,
.tt-section-plus::after,
.tt-pricing__plus::before,
.tt-pricing__plus::after,
.tt-process__plus::before,
.tt-process__plus::after,
.tt-showcase__plus::before,
.tt-showcase__plus::after,
.tt-articles__plus::before,
.tt-articles__plus::after,
.tt-final-cta__plus::before,
.tt-final-cta__plus::after {
	display: none;
}

.tt-hero__corner,
.tt-website-card__corner,
.tt-portfolio-card__corner,
.tt-article-card__corner {
	border: 0;
	background: var(--tt-red);
	-webkit-mask: url("../icons/corner-frame.svg") center / contain no-repeat;
	mask: url("../icons/corner-frame.svg") center / contain no-repeat;
}

.tt-hero__corner--tr,
.tt-website-card__corner--tr,
.tt-article-card__corner--top-end {
	transform: scaleX(-1);
}

.tt-hero__corner--tl,
.tt-article-card__corner--top-start,
.tt-portfolio-card__corner--top {
	transform: none;
}

.tt-hero__corner--br,
.tt-article-card__corner--bottom-end,
.tt-portfolio-card__corner--bottom {
	transform: rotate(180deg);
}

.tt-hero__corner--bl,
.tt-website-card__corner--bl,
.tt-article-card__corner--bottom-start {
	transform: scaleY(-1);
}
