/* =========================================================
   Tender Landing — основные стили
   Абстрактный, современный, "тёмная навигация + светлые блоки"
   ========================================================= */

:root {
	--tl-navy: #0a0f1e;
	--tl-navy-2: #121a30;
	--tl-navy-soft: #1b2540;
	--tl-ink: #14172b;
	--tl-text: #40465e;
	--tl-muted: #767c94;
	--tl-bg: #ffffff;
	--tl-bg-muted: #f6f5fc;
	--tl-border: #e8e6f4;

	--tl-primary: #6d5ef2;
	--tl-primary-dark: #5a4ce0;
	--tl-accent: #22d3c7;
	--tl-warn: #f59e0b;
	--tl-danger: #e5484d;
	--tl-success: #16a34a;

	--tl-grad: linear-gradient(120deg, #6d5ef2 0%, #8b7bf7 45%, #22d3c7 100%);
	--tl-grad-text: linear-gradient(120deg, #8b7bf7 0%, #22d3c7 100%);

	--tl-radius-lg: 28px;
	--tl-radius: 20px;
	--tl-radius-sm: 12px;

	--tl-shadow-lg: 0 30px 70px -25px rgba(20, 16, 60, 0.35);
	--tl-shadow: 0 16px 40px -18px rgba(20, 16, 60, 0.28);
	--tl-shadow-sm: 0 8px 20px -12px rgba(20, 16, 60, 0.22);

	--tl-ease: cubic-bezier(0.4, 0, 0.2, 1);
	--tl-t-fast: 0.2s;
	--tl-t: 0.35s;
	--tl-t-slow: 0.6s;

	--tl-container: 1180px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--tl-text);
	background: var(--tl-bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img,
svg {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1, h2, h3, h4 {
	font-family: 'Manrope', 'Inter', sans-serif;
	color: var(--tl-ink);
	line-height: 1.15;
	margin: 0 0 16px;
	letter-spacing: -0.01em;
}

p {
	margin: 0 0 16px;
}

button {
	font-family: inherit;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.tl-skip-link {
	position: absolute;
	top: -60px;
	left: 12px;
	background: var(--tl-primary);
	color: #fff;
	padding: 10px 18px;
	border-radius: var(--tl-radius-sm);
	z-index: 999;
	transition: top var(--tl-t-fast) var(--tl-ease);
}
.tl-skip-link:focus {
	top: 12px;
}

.tl-container {
	max-width: var(--tl-container);
	margin: 0 auto;
	padding: 0 24px;
}

/* ---------- Buttons ---------- */
.tl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 28px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 16px;
	border: none;
	cursor: pointer;
	transition: transform var(--tl-t-fast) var(--tl-ease), box-shadow var(--tl-t-fast) var(--tl-ease), background var(--tl-t-fast) var(--tl-ease), opacity var(--tl-t-fast) var(--tl-ease);
	white-space: nowrap;
}
.tl-btn svg {
	transition: transform var(--tl-t-fast) var(--tl-ease);
}
.tl-btn:hover svg {
	transform: translateX(3px);
}
.tl-btn--primary {
	background: var(--tl-grad);
	color: #fff;
	box-shadow: 0 14px 30px -12px rgba(109, 94, 242, 0.55);
}
.tl-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 40px -14px rgba(109, 94, 242, 0.6);
}
.tl-btn--primary:active {
	transform: translateY(0);
}
.tl-btn--outline {
	background: transparent;
	color: var(--tl-ink);
	border: 1.5px solid var(--tl-border);
}
.tl-btn--outline:hover {
	border-color: var(--tl-primary);
	color: var(--tl-primary);
	transform: translateY(-2px);
}
.tl-btn--sm {
	padding: 10px 20px;
	font-size: 14px;
}
.tl-btn--lg {
	padding: 19px 34px;
	font-size: 17px;
}
.tl-btn--block {
	width: 100%;
}
.tl-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none !important;
}

/* ---------- Header ---------- */
.tl-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(10, 15, 30, 0.7);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: background var(--tl-t) var(--tl-ease);
}
.tl-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 24px;
}
.tl-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'Manrope', sans-serif;
	font-weight: 800;
	font-size: 18px;
	color: #fff;
}
.tl-logo img {
	max-height: 40px;
	width: auto;
}
.tl-nav {
	display: flex;
	gap: 28px;
	flex: 1;
	justify-content: center;
}
.tl-nav a {
	color: rgba(255, 255, 255, 0.75);
	font-size: 15px;
	font-weight: 500;
	position: relative;
	padding: 6px 0;
	transition: color var(--tl-t-fast) var(--tl-ease);
}
.tl-nav a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--tl-grad-text);
	transition: width var(--tl-t) var(--tl-ease);
}
.tl-nav a:hover {
	color: #fff;
}
.tl-nav a:hover::after {
	width: 100%;
}
.tl-header__cta {
	flex-shrink: 0;
}

/* ---------- Generic sections ---------- */
.tl-section {
	position: relative;
	padding: 100px 0;
	background: var(--tl-bg);
	overflow: hidden;
}
.tl-section--muted {
	background: var(--tl-bg-muted);
}
.tl-section--dark {
	background: var(--tl-navy);
	color: rgba(255, 255, 255, 0.82);
}
.tl-section--dark h2,
.tl-section--dark h3 {
	color: #fff;
}

.tl-section-head {
	max-width: 720px;
	margin: 0 auto 56px;
	text-align: center;
}
.tl-section-head h2 {
	font-size: clamp(28px, 4vw, 40px);
}
.tl-section-lead {
	color: var(--tl-muted);
	font-size: 17px;
}

.tl-eyebrow {
	display: inline-block;
	padding: 7px 16px;
	border-radius: 999px;
	background: rgba(109, 94, 242, 0.1);
	color: var(--tl-primary-dark);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.tl-eyebrow--light {
	background: rgba(255, 255, 255, 0.1);
	color: var(--tl-accent);
}

.tl-section-note {
	max-width: 680px;
	margin: 40px auto 0;
	text-align: center;
	font-style: italic;
	font-size: 17px;
	color: var(--tl-muted);
}
.tl-section--dark .tl-section-note {
	color: rgba(255, 255, 255, 0.6);
}

/* ---------- Decorative blobs / grid ---------- */
.tl-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	opacity: 0.55;
	pointer-events: none;
	animation: tl-float 14s ease-in-out infinite;
}
.tl-blob--1 { width: 480px; height: 480px; top: -180px; left: -120px; background: radial-gradient(circle, #6d5ef2, transparent 70%); }
.tl-blob--2 { width: 420px; height: 420px; top: 40px; right: -160px; background: radial-gradient(circle, #22d3c7, transparent 70%); animation-delay: -4s; }
.tl-blob--3 { width: 300px; height: 300px; bottom: -140px; left: 40%; background: radial-gradient(circle, #f59e0b, transparent 70%); opacity: 0.3; animation-delay: -8s; }
.tl-blob--4 { width: 420px; height: 420px; top: -120px; right: -140px; background: radial-gradient(circle, #6d5ef2, transparent 70%); opacity: 0.35; }
.tl-blob--5 { width: 460px; height: 460px; bottom: -200px; left: -140px; background: radial-gradient(circle, #22d3c7, transparent 70%); opacity: 0.28; }
.tl-blob--6 { width: 400px; height: 400px; top: -120px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, #6d5ef2, transparent 70%); opacity: 0.18; }
.tl-blob--7 { width: 520px; height: 520px; top: -220px; right: -180px; background: radial-gradient(circle, #22d3c7, transparent 70%); opacity: 0.3; }

@keyframes tl-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(30px, -30px) scale(1.06); }
}

.tl-grid-pattern {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black 40%, transparent 100%);
}

/* ---------- Reveal on scroll ---------- */
.tl-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s var(--tl-ease), transform 0.7s var(--tl-ease);
	transition-delay: var(--tl-delay, 0ms);
}
.tl-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ---------- Hero ---------- */
.tl-hero {
	position: relative;
	background: var(--tl-navy);
	padding: 160px 0 120px;
	overflow: hidden;
}
.tl-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.tl-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 64px;
	align-items: center;
}
.tl-hero__title {
	font-size: clamp(34px, 5vw, 56px);
	color: #fff;
	max-width: 620px;
}
.tl-hero__subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.72);
	max-width: 540px;
	margin-bottom: 32px;
}
.tl-hero__actions {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 56px;
}
.tl-hero__secondary {
	color: rgba(255, 255, 255, 0.65);
	font-weight: 600;
	font-size: 15px;
	transition: color var(--tl-t-fast) var(--tl-ease);
}
.tl-hero__secondary:hover {
	color: #fff;
}
.tl-hero__trust {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 28px;
}
.tl-hero__trust-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.tl-hero__trust-item strong {
	color: #fff;
	font-size: 20px;
	font-family: 'Manrope', sans-serif;
}
.tl-hero__trust-item span {
	color: rgba(255, 255, 255, 0.55);
	font-size: 13px;
}

.tl-hero__visual {
	position: relative;
}
.tl-chart-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--tl-radius-lg);
	padding: 28px 28px 20px;
	backdrop-filter: blur(10px);
	box-shadow: var(--tl-shadow-lg);
}
.tl-chart-card__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: rgba(255, 255, 255, 0.75);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 12px;
}
.tl-chart-card__badge {
	background: rgba(34, 211, 199, 0.15);
	color: var(--tl-accent);
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
}
.tl-chart__grid line {
	stroke: rgba(255, 255, 255, 0.08);
	stroke-width: 1;
}
.tl-chart__area {
	opacity: 0;
	animation: tl-fade-in 1s var(--tl-ease) 0.4s forwards;
}
.tl-chart__line {
	stroke-dasharray: 500;
	stroke-dashoffset: 500;
	animation: tl-draw 1.8s var(--tl-ease) 0.2s forwards;
}
.tl-chart__dot {
	opacity: 0;
	animation: tl-fade-in 0.6s var(--tl-ease) 1.8s forwards;
}
@keyframes tl-draw {
	to { stroke-dashoffset: 0; }
}
@keyframes tl-fade-in {
	to { opacity: 1; }
}
.tl-chart-card__foot {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 8px;
}

.tl-float-card {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	color: var(--tl-ink);
	padding: 14px 18px;
	border-radius: var(--tl-radius-sm);
	box-shadow: var(--tl-shadow);
	font-size: 13px;
	font-weight: 600;
	max-width: 220px;
	animation: tl-bob 6s ease-in-out infinite;
}
.tl-float-card--1 {
	bottom: -10px;
	left: -30px;
	animation-delay: -1s;
}
.tl-float-card--2 {
	top: 20px;
	right: -20px;
	animation-delay: -3s;
}
@keyframes tl-bob {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.tl-scroll-cue {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	width: 26px;
	height: 42px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	z-index: 1;
}
.tl-scroll-cue span {
	position: absolute;
	top: 8px;
	left: 50%;
	width: 4px;
	height: 8px;
	margin-left: -2px;
	background: var(--tl-accent);
	border-radius: 2px;
	animation: tl-scroll 1.8s ease-in-out infinite;
}
@keyframes tl-scroll {
	0% { opacity: 1; top: 8px; }
	100% { opacity: 0; top: 22px; }
}

/* ---------- Problem list ---------- */
.tl-problem-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	max-width: 920px;
	margin: 0 auto;
}
.tl-problem-list__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--tl-radius);
	padding: 22px;
	font-size: 16px;
	line-height: 1.5;
	transition: transform var(--tl-t) var(--tl-ease), border-color var(--tl-t) var(--tl-ease);
}
.tl-problem-list__item:hover {
	transform: translateY(-4px);
	border-color: rgba(245, 158, 11, 0.4);
}
.tl-problem-list__icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(245, 158, 11, 0.15);
	color: var(--tl-warn);
}

/* ---------- Why cheap ---------- */
.tl-why {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 64px;
	align-items: center;
}
.tl-why__stat {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tl-why__ring {
	animation: tl-spin-in 1.4s var(--tl-ease) forwards;
	transform-origin: center;
}
@keyframes tl-spin-in {
	from { stroke-dashoffset: 427; }
}
.tl-why__stat-label {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
	padding: 0 24px;
}
.tl-why__stat-num {
	font-family: 'Manrope', sans-serif;
	font-weight: 800;
	font-size: 40px;
	background: var(--tl-grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.tl-why__stat-label span:last-child {
	font-size: 13px;
	color: var(--tl-muted);
	max-width: 160px;
}
.tl-why__content h2 {
	font-size: clamp(26px, 3.4vw, 36px);
}
.tl-why__content p {
	font-size: 17px;
	margin-bottom: 28px;
}

/* ---------- Case timeline ---------- */
.tl-case-timeline {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	position: relative;
}
.tl-case-timeline__item {
	background: #fff;
	border: 1px solid var(--tl-border);
	border-radius: var(--tl-radius);
	padding: 28px;
	box-shadow: var(--tl-shadow-sm);
	transition: transform var(--tl-t) var(--tl-ease), box-shadow var(--tl-t) var(--tl-ease);
}
.tl-case-timeline__item:hover {
	transform: translateY(-6px);
	box-shadow: var(--tl-shadow);
}
.tl-case-timeline__icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--tl-grad);
	color: #fff;
	margin-bottom: 16px;
}
.tl-case-timeline__tag {
	display: block;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--tl-primary);
	margin-bottom: 10px;
}
.tl-case-timeline__item p {
	font-size: 15px;
	color: var(--tl-text);
	margin-bottom: 0;
}
.tl-case-cta {
	text-align: center;
	margin-top: 48px;
}

/* ---------- Scope grid ---------- */
.tl-scope-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.tl-scope-card {
	background: #fff;
	border: 1px solid var(--tl-border);
	border-radius: var(--tl-radius);
	padding: 26px 22px;
	transition: transform var(--tl-t) var(--tl-ease), box-shadow var(--tl-t) var(--tl-ease), border-color var(--tl-t) var(--tl-ease);
}
.tl-scope-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--tl-shadow);
	border-color: transparent;
}
.tl-scope-card__icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(109, 94, 242, 0.1);
	color: var(--tl-primary);
	margin-bottom: 16px;
}
.tl-scope-card h3 {
	font-size: 17px;
	margin-bottom: 8px;
}
.tl-scope-card p {
	font-size: 14px;
	color: var(--tl-muted);
	margin-bottom: 0;
}

/* ---------- Economics ---------- */
.tl-econ {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 28px;
	align-items: stretch;
	max-width: 920px;
	margin: 0 auto;
}
.tl-econ__col {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--tl-radius-lg);
	padding: 32px;
}
.tl-econ__col--me {
	position: relative;
	background: linear-gradient(160deg, rgba(109, 94, 242, 0.25), rgba(34, 211, 199, 0.12));
	border-color: rgba(109, 94, 242, 0.4);
}
.tl-econ__badge {
	position: absolute;
	top: -14px;
	right: 24px;
	background: var(--tl-grad);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	padding: 6px 14px;
	border-radius: 999px;
}
.tl-econ__col h3 {
	color: #fff;
	font-size: 20px;
	margin-bottom: 20px;
}
.tl-econ__col ul {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 24px;
}
.tl-econ__col li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	padding-bottom: 14px;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}
.tl-econ__col li strong {
	color: #fff;
	white-space: nowrap;
	font-weight: 700;
}
.tl-econ__total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 6px;
}
.tl-econ__total span {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
}
.tl-econ__total strong {
	color: #fff;
	font-size: 22px;
	font-family: 'Manrope', sans-serif;
}
.tl-econ__total--accent strong {
	background: var(--tl-grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.tl-econ__vs {
	align-self: center;
	color: rgba(255, 255, 255, 0.35);
	font-weight: 800;
	font-size: 14px;
	text-transform: uppercase;
}

/* ---------- Honesty ---------- */
.tl-honesty {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 28px;
}
.tl-honesty__col {
	border-radius: var(--tl-radius-lg);
	padding: 32px;
}
.tl-honesty__col--yes {
	background: #fff;
	border: 1px solid var(--tl-border);
	box-shadow: var(--tl-shadow-sm);
}
.tl-honesty__col--no {
	background: var(--tl-navy);
	color: rgba(255, 255, 255, 0.75);
}
.tl-honesty__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}
.tl-honesty__col--yes .tl-honesty__head {
	color: var(--tl-success);
}
.tl-honesty__col--no .tl-honesty__head {
	color: var(--tl-danger);
}
.tl-honesty__head h3 {
	margin: 0;
	font-size: 19px;
	color: inherit;
}
.tl-honesty__col--yes ul {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.tl-honesty__col--yes li {
	position: relative;
	padding-left: 28px;
	font-size: 15px;
}
.tl-honesty__col--yes li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: rgba(22, 163, 74, 0.15);
}
.tl-honesty__col--yes li::after {
	content: '✓';
	position: absolute;
	left: 3px;
	top: 3px;
	color: var(--tl-success);
	font-size: 11px;
	font-weight: 900;
}
.tl-honesty__col--no p {
	font-size: 16px;
	margin-bottom: 0;
}

/* ---------- Quiz ---------- */
.tl-quiz-section {
	background: var(--tl-bg-muted);
}
.tl-quiz {
	position: relative;
	max-width: 620px;
	margin: 0 auto;
	background: #fff;
	border-radius: var(--tl-radius-lg);
	border: 1px solid var(--tl-border);
	box-shadow: var(--tl-shadow-lg);
	padding: 40px 40px 32px;
}
.tl-quiz__progress {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 32px;
}
.tl-quiz__progress-track {
	flex: 1;
	height: 6px;
	border-radius: 999px;
	background: var(--tl-bg-muted);
	overflow: hidden;
}
.tl-quiz__progress-track span {
	display: block;
	height: 100%;
	width: 16.66%;
	background: var(--tl-grad);
	border-radius: 999px;
	transition: width var(--tl-t-slow) var(--tl-ease);
}
.tl-quiz__progress-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--tl-muted);
	white-space: nowrap;
}

.tl-quiz__stage {
	display: none;
	animation: tl-quiz-in var(--tl-t) var(--tl-ease);
}
.tl-quiz__stage.is-active {
	display: block;
}
@keyframes tl-quiz-in {
	from { opacity: 0; transform: translateX(18px); }
	to { opacity: 1; transform: translateX(0); }
}
.tl-quiz__stage.tl-quiz--back {
	animation-name: tl-quiz-in-back;
}
@keyframes tl-quiz-in-back {
	from { opacity: 0; transform: translateX(-18px); }
	to { opacity: 1; transform: translateX(0); }
}

.tl-quiz__question {
	font-size: 22px;
	margin-bottom: 24px;
}
.tl-quiz__options {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.tl-quiz__option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	text-align: left;
	padding: 17px 20px;
	border-radius: var(--tl-radius-sm);
	border: 1.5px solid var(--tl-border);
	background: #fff;
	font-size: 16px;
	font-weight: 600;
	color: var(--tl-ink);
	cursor: pointer;
	transition: border-color var(--tl-t-fast) var(--tl-ease), background var(--tl-t-fast) var(--tl-ease), transform var(--tl-t-fast) var(--tl-ease);
}
.tl-quiz__option::after {
	content: '';
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--tl-muted);
	border-bottom: 2px solid var(--tl-muted);
	transform: rotate(-45deg);
	opacity: 0;
	transition: opacity var(--tl-t-fast) var(--tl-ease);
}
.tl-quiz__option:hover {
	border-color: var(--tl-primary);
	background: rgba(109, 94, 242, 0.05);
	transform: translateX(4px);
}
.tl-quiz__option:hover::after {
	opacity: 1;
	border-color: var(--tl-primary);
}
.tl-quiz__option.is-selected {
	border-color: var(--tl-primary);
	background: rgba(109, 94, 242, 0.08);
}
.tl-quiz__option:disabled {
	opacity: 0.5;
	cursor: default;
	transform: none;
}

.tl-quiz__back {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 28px auto 0;
	background: none;
	border: none;
	color: var(--tl-muted);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: color var(--tl-t-fast) var(--tl-ease);
}
.tl-quiz__back:hover {
	color: var(--tl-primary);
}

/* Reject screen */
#tl-quiz-reject {
	text-align: center;
	padding: 12px 0 4px;
}
.tl-quiz__reject-icon {
	width: 68px;
	height: 68px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: rgba(229, 72, 77, 0.1);
	color: var(--tl-danger);
	display: flex;
	align-items: center;
	justify-content: center;
}
#tl-quiz-reject h3 {
	font-size: 22px;
}
#tl-quiz-reject p {
	color: var(--tl-muted);
	max-width: 440px;
	margin: 0 auto 18px;
}
.tl-quiz__reject-phone {
	display: inline-block;
	font-weight: 700;
	color: var(--tl-primary);
	margin-bottom: 24px;
}

/* Contact form */
#tl-quiz-contact h3 {
	font-size: 22px;
	margin-bottom: 6px;
}
.tl-quiz__contact-lead {
	color: var(--tl-muted);
	margin-bottom: 24px;
}
.tl-field {
	margin-bottom: 16px;
}
.tl-field label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--tl-ink);
	margin-bottom: 6px;
}
.tl-field input {
	width: 100%;
	padding: 14px 16px;
	border-radius: var(--tl-radius-sm);
	border: 1.5px solid var(--tl-border);
	font-size: 15px;
	font-family: inherit;
	transition: border-color var(--tl-t-fast) var(--tl-ease), box-shadow var(--tl-t-fast) var(--tl-ease);
	background: var(--tl-bg-muted);
}
.tl-field input:focus {
	outline: none;
	border-color: var(--tl-primary);
	box-shadow: 0 0 0 4px rgba(109, 94, 242, 0.12);
	background: #fff;
}
.tl-field input.is-invalid {
	border-color: var(--tl-danger);
}
.tl-field--hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.tl-form-error {
	color: var(--tl-danger);
	font-size: 14px;
	margin-bottom: 16px;
}

.tl-btn__spinner {
	display: none;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2.5px solid rgba(255, 255, 255, 0.4);
	border-top-color: #fff;
	animation: tl-spin 0.7s linear infinite;
}
.is-loading .tl-btn__spinner {
	display: inline-block;
}
.is-loading .tl-btn__label {
	opacity: 0.7;
}
@keyframes tl-spin {
	to { transform: rotate(360deg); }
}

/* Thanks screen */
#tl-quiz-thanks {
	text-align: center;
	padding: 20px 0;
}
.tl-quiz__thanks-icon {
	width: 76px;
	height: 76px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: rgba(34, 211, 199, 0.14);
	color: var(--tl-success);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: tl-pop 0.5s var(--tl-ease);
}
@keyframes tl-pop {
	0% { transform: scale(0.6); opacity: 0; }
	100% { transform: scale(1); opacity: 1; }
}
#tl-quiz-thanks h3 {
	font-size: 24px;
}
#tl-quiz-thanks p {
	color: var(--tl-muted);
	margin-bottom: 0;
}

.tl-noscript-note {
	text-align: center;
	color: var(--tl-muted);
	margin-top: 20px;
}

/* ---------- Final CTA ---------- */
.tl-cta {
	position: relative;
	background: var(--tl-navy);
	padding: 110px 0;
	overflow: hidden;
	text-align: center;
}
.tl-cta__bg {
	position: absolute;
	inset: 0;
}
.tl-cta__inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin: 0 auto;
}
.tl-cta h2 {
	color: #fff;
	font-size: clamp(28px, 4vw, 42px);
	margin-bottom: 32px;
}
.tl-cta__note {
	margin-top: 28px;
	color: rgba(255, 255, 255, 0.55);
	font-size: 15px;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

/* ---------- Footer ---------- */
.tl-footer {
	background: #060a14;
	padding: 36px 0;
}
.tl-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
}
.tl-footer__brand {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-weight: 700;
	font-family: 'Manrope', sans-serif;
}
.tl-footer__contacts a {
	color: var(--tl-accent);
	font-weight: 600;
}
.tl-footer__copy {
	margin: 0;
}

/* ---------- Basic content pages ---------- */
.tl-basic-article h1 {
	font-size: 34px;
}
.tl-basic-content {
	font-size: 16px;
	line-height: 1.7;
}
.tl-404 {
	text-align: center;
	padding: 140px 0;
}
.tl-404__code {
	font-family: 'Manrope', sans-serif;
	font-weight: 800;
	font-size: 96px;
	margin: 0;
	background: var(--tl-grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.tl-nav { display: none; }
	.tl-hero__inner { grid-template-columns: 1fr; }
	.tl-hero__visual { margin-top: 24px; max-width: 460px; }
	.tl-why { grid-template-columns: 1fr; text-align: center; }
	.tl-why__content { text-align: left; }
	.tl-case-timeline { grid-template-columns: 1fr; }
	.tl-scope-grid { grid-template-columns: repeat(2, 1fr); }
	.tl-econ { grid-template-columns: 1fr; }
	.tl-econ__vs { display: none; }
	.tl-honesty { grid-template-columns: 1fr; }
	.tl-problem-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.tl-section { padding: 72px 0; }
	.tl-hero { padding: 130px 0 90px; }
	.tl-hero__actions { flex-direction: column; align-items: flex-start; }
	.tl-hero__trust { gap: 24px; }
	.tl-scope-grid { grid-template-columns: 1fr; }
	.tl-quiz { padding: 28px 20px 24px; }
	.tl-btn--lg { width: 100%; }
	.tl-float-card { display: none; }
	.tl-header__cta { display: none; }
}
