/*
 * Taylor Ford Marketing — main stylesheet.
 * 1:1 conversion of the original design's inline styles into real CSS
 * classes. Colors, spacing, radii, shadows and @keyframes are copied
 * verbatim from Taylor Ford Marketing v2.dc.html; only the FAQ accordion
 * (native <details>) and the mobile nav collapse are additions beyond the
 * source mockup (documented in the implementation plan).
 */

:root {
	--tf-accent: #2e9bff;
	--tf-accent-2: #4dabff;
	--tf-accent-deep: #0a6ce0;
	--tf-bg: #080b1c;
	--tf-text: #f2f5ff;
	--tf-text-soft: #cfd8ee;
	--tf-muted: #8b95b8;
	--tf-muted-2: #9aa3c4;
	--tf-panel: #15173f;
	--tf-panel-2: #111535;
	--tf-panel-3: #0b0e24;
	--tf-border: rgba(255, 255, 255, .1);
	--tf-header-h: 92px;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--tf-bg);
	color: var(--tf-text);
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
}

a {
	color: #63b3ff;
	text-decoration: none;
}
a:hover {
	color: #a4d3ff;
}

input,
textarea,
button {
	font-family: inherit;
}
input::placeholder {
	color: #5c6488;
}
input:focus {
	outline: none;
	border-color: #2e9bff !important;
	box-shadow: 0 0 0 4px rgba(46, 155, 255, .14);
}
::selection {
	background: #2e9bff;
	color: #080b1c;
}

/*
 * Several components below set their own `display` (flex/grid/inline-flex)
 * so they can be toggled with the plain HTML `hidden` attribute from JS.
 * Author CSS always wins over the browser's built-in `[hidden]{display:none}`
 * rule regardless of selector specificity, so without this override any
 * hidden element whose class also sets `display` would stay visible.
 */
[hidden] {
	display: none !important;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.tf-skip-link.screen-reader-text:focus {
	position: fixed;
	left: 16px;
	top: 16px;
	width: auto;
	height: auto;
	clip: auto;
	z-index: 999;
	background: #fff;
	color: #0a1130;
	padding: 12px 18px;
	border-radius: 10px;
	font-weight: 700;
}

@keyframes tfRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes tfPop { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes tfSpin { to { transform: rotate(360deg); } }
@keyframes tfSpinBack { to { transform: rotate(-360deg); } }
@keyframes tfPulse { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }
@keyframes tfFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Layout shells ---------- */

.tf-page {
	position: relative;
	overflow: hidden;
	background: var(--tf-bg);
}

.tf-glow {
	position: absolute;
	pointer-events: none;
	border-radius: 50%;
}
.tf-glow--top {
	top: -180px;
	right: -160px;
	width: 900px;
	height: 900px;
	background: radial-gradient(closest-side, rgba(46, 155, 255, .22), transparent 70%);
}
.tf-glow--left {
	top: 340px;
	left: -260px;
	width: 760px;
	height: 760px;
	background: radial-gradient(closest-side, rgba(245, 166, 35, .16), transparent 70%);
}

.tf-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}
.tf-container--narrow {
	max-width: 1020px;
}

.tf-section__eyebrow {
	display: inline-block;
	padding: 7px 15px;
	border-radius: 999px;
	background: rgba(46, 155, 255, .12);
	border: 1px solid rgba(46, 155, 255, .28);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: #63b3ff;
	margin-bottom: 20px;
}
.tf-section__title {
	font-size: clamp(32px, 3.7vw, 50px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -.034em;
	margin: 0 0 14px;
	color: #f7f9ff;
}
.tf-section__title--tight { margin-bottom: 0; letter-spacing: -.032em; }
.tf-section__title--sm { font-size: clamp(30px, 3.3vw, 44px); line-height: 1.06; letter-spacing: -.032em; }
.tf-section__lead {
	max-width: 530px;
	margin: 0 auto;
	font-size: 16.5px;
	line-height: 1.6;
	color: #9aa3c4;
	text-wrap: pretty;
}
.tf-section__lead--left { margin-left: 0; }
.tf-section__head--center { max-width: 620px; margin: 0 auto 44px; text-align: center; }

/* ---------- Buttons ---------- */

.tf-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	white-space: nowrap;
	cursor: pointer;
	border: none;
}
.tf-btn--pill { border-radius: 999px; }
.tf-btn--primary {
	background: linear-gradient(180deg, #3aa5ff, var(--tf-accent-deep));
	color: #fff;
	padding: 17px 30px;
	font-size: 16px;
	box-shadow: 0 16px 40px rgba(10, 108, 224, .45), inset 0 1px 0 rgba(255, 255, 255, .32);
	transition: filter .2s;
}
.tf-btn--primary:hover { color: #fff; filter: brightness(1.08); }
.tf-btn--outline {
	padding: 16px 26px;
	border: 1px solid rgba(255, 255, 255, .14);
	color: #cdd5ef;
	font-size: 15.5px;
	background: transparent;
}
.tf-btn--outline:hover { color: #fff; border-color: rgba(255, 255, 255, .3); }
.tf-btn--ghost {
	padding: 13px 22px;
	border: 1px solid rgba(255, 255, 255, .14);
	background: transparent;
	color: #9aa3c4;
	font-size: 14.5px;
}
.tf-btn--ghost:disabled { opacity: .3; pointer-events: none; }
.tf-btn--white {
	background: #fff;
	color: #0a1130;
	padding: 18px 36px;
	font-size: 16.5px;
	font-weight: 800;
	box-shadow: 0 18px 44px rgba(0, 0, 0, .3);
}
.tf-btn--white:hover { color: #0a1130; filter: brightness(.96); }
.tf-btn--lg { padding: 17px 32px; font-size: 16px; }

/* ---------- Header ---------- */

.tf-header {
	position: sticky;
	top: 0;
	z-index: 70;
	background: rgba(8, 11, 28, .82);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.tf-header__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
	height: var(--tf-header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}
.tf-header__logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
.tf-header__logo img {
	height: 66px;
	width: auto;
	display: block;
}
.tf-header__logo-text {
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -.01em;
	color: #f7f9ff;
}
.tf-nav {
	display: flex;
	align-items: center;
	gap: 36px;
	flex-shrink: 0;
}
.tf-nav__list {
	display: flex;
	align-items: center;
	gap: 36px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.tf-nav__link,
.tf-nav a {
	white-space: nowrap;
	color: #a8b0cc;
	font-size: 15px;
	font-weight: 500;
	transition: color .2s;
}
.tf-nav__link:hover,
.tf-nav a:hover { color: #fff; }
.tf-header__cta { flex-shrink: 0; padding: 13px 26px; font-size: 14.5px; background: var(--tf-accent); }
.tf-header__cta:hover { background: var(--tf-accent-2); color: #fff; }

.tf-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 10px;
	background: transparent;
	cursor: pointer;
	flex-shrink: 0;
}
.tf-nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 0 auto;
	background: #eaeeff;
	border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease;
}
.tf-header.is-open .tf-nav-toggle {
	background: rgba(46, 155, 255, .12);
	border-color: rgba(46, 155, 255, .4);
}
.tf-header.is-open .tf-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tf-header.is-open .tf-nav-toggle span:nth-child(2) { opacity: 0; }
.tf-header.is-open .tf-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.tf-mobile-nav {
	display: none;
	flex-direction: column;
	gap: 2px;
	padding: 10px 20px 18px;
	border-top: 1px solid rgba(255, 255, 255, .07);
}
.tf-mobile-nav a {
	padding: 12px 4px;
	color: #cdd5ef;
	font-size: 15px;
	font-weight: 600;
	border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.tf-mobile-nav .tf-btn { margin-top: 12px; justify-content: center; }
.tf-header.is-open .tf-mobile-nav { display: flex; }

/* ---------- Hero ---------- */

.tf-hero {
	position: relative;
	z-index: 1;
	padding: 64px 32px 40px;
}
.tf-hero__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(560px, 100%), 1fr));
	gap: 48px;
	align-items: center;
	padding: 0;
}
.tf-hero__copy { animation: tfRise .8s cubic-bezier(.2, .7, .3, 1) both; }
.tf-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 999px;
	background: rgba(255, 255, 255, .04);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .01em;
	color: #a8b2d4;
	margin-bottom: 26px;
}
.tf-hero__badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #3aa5ff;
	animation: tfPulse 1.8s ease-in-out infinite;
}
.tf-hero__title {
	font-size: clamp(44px, 5.2vw, 72px);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -.038em;
	margin: 0 0 18px;
	color: #f7f9ff;
}
.tf-hero__subtitle {
	max-width: 460px;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: -.015em;
	color: var(--tf-text-soft);
	margin: 0 0 16px;
}
.tf-hero__lead {
	max-width: 500px;
	font-size: 17px;
	line-height: 1.7;
	color: var(--tf-muted);
	margin: 0 0 34px;
	text-wrap: pretty;
}
.tf-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin-bottom: 40px;
}
.tf-hero__stats {
	display: flex;
	gap: 34px;
	border-top: 1px solid rgba(255, 255, 255, .09);
	padding-top: 26px;
	max-width: 520px;
	flex-wrap: wrap;
}
.tf-hero__stat-value {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -.03em;
	color: var(--tf-text);
}
.tf-hero__stat-value span { font-size: 15px; color: #6b749a; }
.tf-hero__stat-value--accent { color: var(--tf-accent); }
.tf-hero__stat-label {
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #6b749a;
	margin-top: 5px;
}
.tf-hero__stat--divider { border-left: 1px solid rgba(255, 255, 255, .09); padding-left: 34px; }

.tf-hero__visual {
	position: relative;
	height: 600px;
	width: 560px;
	max-width: 100%;
	margin: 0 auto;
	animation: tfRise 1s .12s cubic-bezier(.2, .7, .3, 1) both;
}

.tf-orbit { position: relative; width: 100%; height: 100%; }
.tf-orbit__ring {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 560px;
	height: 560px;
	margin: -280px 0 0 -280px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .07);
}
.tf-orbit__ring--dashed {
	width: 440px;
	height: 440px;
	margin: -220px 0 0 -220px;
	border: 1px dashed rgba(255, 255, 255, .1);
}
.tf-orbit__sweep {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 560px;
	height: 560px;
	margin: -280px 0 0 -280px;
	border-radius: 50%;
	background: conic-gradient(from 0deg, rgba(46, 155, 255, 0) 0deg, rgba(46, 155, 255, .55) 90deg, rgba(46, 155, 255, 0) 190deg);
	mask: radial-gradient(closest-side, transparent 98.4%, #000 98.6%);
	-webkit-mask: radial-gradient(closest-side, transparent 98.4%, #000 98.6%);
	animation: tfSpin 18s linear infinite;
}
.tf-orbit__portrait {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 376px;
	height: 376px;
	margin: -188px 0 0 -188px;
	border-radius: 50%;
	padding: 5px;
	background: linear-gradient(160deg, rgba(46, 155, 255, .7), rgba(255, 255, 255, .06) 55%, rgba(245, 166, 35, .4));
	box-shadow: 0 40px 90px rgba(0, 0, 0, .6);
}
.tf-orbit__portrait-inner {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
	background: #0d1230;
}
.tf-orbit__portrait-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tf-orbit__badges {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 560px;
	height: 560px;
	margin: -280px 0 0 -280px;
	animation: tfSpin 34s linear infinite;
}
.tf-orbit__badge {
	position: absolute;
	width: 64px;
	height: 64px;
	margin: -32px 0 0 -32px;
}
.tf-orbit__badge-inner {
	width: 100%;
	height: 100%;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	box-shadow: 0 14px 30px rgba(0, 0, 0, .5);
	animation: tfSpinBack 34s linear infinite;
}
.tf-orbit__badge-inner span { width: 28px; height: 28px; display: block; }

.tf-float-card {
	position: absolute;
	padding: 16px 20px;
	border-radius: 18px;
	box-shadow: 0 22px 50px rgba(0, 0, 0, .55);
	animation: tfFloat 6s ease-in-out infinite;
}
.tf-float-card--cpl { left: -14px; top: 96px; background: #fff; color: #0c1130; }
.tf-float-card--lp {
	right: -6px;
	bottom: 104px;
	background: linear-gradient(180deg, #1a2350, #111737);
	border: 1px solid rgba(255, 255, 255, .1);
	animation-duration: 7s;
	animation-delay: .8s;
}
.tf-float-card--pill {
	left: 24px;
	bottom: 74px;
	padding: 12px 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .12);
	backdrop-filter: blur(10px);
	font-size: 13.5px;
	font-weight: 600;
	color: #cdd5ef;
	animation-duration: 8s;
	animation-delay: 1.4s;
	box-shadow: none;
}
.tf-float-card__label {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #7a83a8;
}
.tf-float-card--lp .tf-float-card__label { color: #8e97bd; }
.tf-float-card__row { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }
.tf-float-card__value { font-size: 28px; font-weight: 800; letter-spacing: -.03em; }
.tf-float-card__value--accent { color: var(--tf-accent); margin-top: 2px; }
.tf-float-card__delta { font-size: 13px; font-weight: 700; color: #1f9d55; }
.tf-spark { display: flex; gap: 4px; margin-top: 8px; align-items: flex-end; height: 22px; }
.tf-spark__bar {
	width: 6px;
	border-radius: 2px;
	background: linear-gradient(180deg, #3aa5ff, rgba(58, 165, 255, .2));
}

/* ---------- Image slot placeholders ---------- */

.tf-image-slot {
	width: 100%;
	height: 100%;
	min-height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 16px;
	background: rgba(255, 255, 255, .03);
	border: 1px dashed rgba(255, 255, 255, .18);
	color: #6b749a;
	font-size: 13px;
	font-weight: 600;
	border-radius: inherit;
}

/* ---------- Apply / qualification form ---------- */

.tf-apply { position: relative; z-index: 1; padding: 40px 0 72px; scroll-margin-top: var(--tf-header-h); }
.tf-apply__card {
	border: 1px solid var(--tf-border);
	border-radius: 28px;
	background: linear-gradient(180deg, var(--tf-panel-2), var(--tf-panel-3));
	box-shadow: 0 44px 110px rgba(0, 0, 0, .6);
	overflow: hidden;
}
.tf-apply__tabs { display: flex; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.tf-apply__tab {
	flex: 1;
	min-width: 0;
	padding: 20px 24px;
	border-right: 1px solid rgba(255, 255, 255, .06);
}
.tf-apply__tab-num { font-size: 11.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: #5c6488; }
.tf-apply__tab-label { font-size: 15.5px; font-weight: 700; margin-top: 5px; color: #6b749a; }
.tf-apply__tab.is-active { background: rgba(46, 155, 255, .09); }
.tf-apply__tab.is-active .tf-apply__tab-num { color: var(--tf-accent); }
.tf-apply__tab.is-active .tf-apply__tab-label,
.tf-apply__tab.is-done .tf-apply__tab-label { color: #f2f5ff; }
.tf-apply__tab.is-done .tf-apply__tab-num { color: #5fd08c; }

.tf-apply__progress { height: 3px; background: rgba(255, 255, 255, .06); }
.tf-apply__progress-bar {
	height: 100%;
	background: linear-gradient(90deg, var(--tf-accent-deep), var(--tf-accent-2));
	transition: width .45s cubic-bezier(.2, .7, .3, 1);
}

.tf-apply__body { padding: 38px 40px 34px; }
.tf-step { animation: tfPop .4s ease-out both; display: grid; gap: 26px; }
.tf-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.tf-field label,
.tf-question__label { display: block; margin-bottom: 9px; }
.tf-field label { font-size: 13px; font-weight: 700; color: #9aa3c4; }
.tf-question__label { font-size: 16px; font-weight: 700; color: #eaeeff; margin-bottom: 4px; line-height: 1.4; }
.tf-question__hint { font-size: 13.5px; color: #7d86ac; margin-bottom: 13px; }
.tf-input,
.tf-field input {
	width: 100%;
	padding: 15px 18px;
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 12px;
	color: #f2f5ff;
	font-size: 15.5px;
	transition: border-color .2s;
}
.tf-verify-note {
	margin-top: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13.5px;
	color: #7d86ac;
}
.tf-verify-note__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--tf-accent); }

.tf-pill-group { display: flex; flex-wrap: wrap; gap: 9px; }
.tf-pill {
	padding: 12px 19px;
	border-radius: 999px;
	font-size: 14.5px;
	cursor: pointer;
	transition: all .18s;
	border: 1px solid rgba(255, 255, 255, .12);
	background: rgba(255, 255, 255, .04);
	color: #9aa3c4;
	font-weight: 500;
}
.tf-pill.is-active {
	border-color: var(--tf-accent);
	background: linear-gradient(180deg, rgba(46, 155, 255, .26), rgba(46, 155, 255, .1));
	color: #eef4ff;
	font-weight: 700;
	box-shadow: 0 0 0 4px rgba(46, 155, 255, .12);
}

.tf-result { animation: tfPop .5s ease-out both; text-align: center; padding: 14px 0 6px; }
.tf-result__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 9px 18px;
	border-radius: 999px;
	margin-bottom: 22px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	border: 1px solid rgba(255, 255, 255, .14);
	background: rgba(255, 255, 255, .04);
	color: #9aa3c4;
}
.tf-result__badge.is-hot { border-color: rgba(95, 208, 140, .45); background: rgba(95, 208, 140, .12); color: #8fe0a8; }
.tf-result__badge.is-warm { border-color: rgba(240, 205, 119, .4); background: rgba(240, 205, 119, .1); color: #f0cd77; }
.tf-result__badge.is-cold { border-color: rgba(255, 255, 255, .14); background: rgba(255, 255, 255, .04); color: #9aa3c4; }
.tf-result__title { font-size: 34px; font-weight: 800; line-height: 1.08; letter-spacing: -.03em; margin: 0 0 16px; color: #f7f9ff; }
.tf-result__body { max-width: 520px; margin: 0 auto 28px; font-size: 16px; line-height: 1.65; color: #9aa3c4; text-wrap: pretty; }
.tf-result__summary {
	margin-top: 30px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, .08);
	display: flex;
	justify-content: center;
	gap: 36px;
	flex-wrap: wrap;
}
.tf-result__summary > div { text-align: left; }
.tf-result__summary-k { font-size: 11.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #7d86ac; }
.tf-result__summary-v { font-size: 14.5px; color: #dfe4f7; margin-top: 4px; }

.tf-error {
	margin-top: 20px;
	padding: 13px 18px;
	border: 1px solid rgba(255, 120, 120, .35);
	background: rgba(255, 80, 80, .08);
	border-radius: 12px;
	font-size: 14.5px;
	color: #ff9c9c;
}

.tf-apply__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 40px;
	border-top: 1px solid rgba(255, 255, 255, .08);
	background: rgba(255, 255, 255, .02);
}
.tf-apply__counter { font-size: 13px; font-weight: 600; color: #7d86ac; }
.tf-apply__next { padding: 15px 30px; font-size: 15px; box-shadow: 0 12px 32px rgba(10, 108, 224, .4), inset 0 1px 0 rgba(255, 255, 255, .3); }

/* ---------- Offer / pricing ---------- */

.tf-offer {
	position: relative;
	z-index: 1;
	background: var(--tf-panel);
	border-radius: 44px;
	padding: 88px 0 96px;
	margin: 0 32px;
	scroll-margin-top: var(--tf-header-h);
}
.tf-offer__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
	margin: 0 0 36px;
}
.tf-offer__note-lead { max-width: 390px; font-size: 16px; line-height: 1.65; color: #a2abcb; margin: 0; text-wrap: pretty; }

.tf-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr)); gap: 18px; }
.tf-pricing-card {
	border: 1px solid var(--tf-border);
	border-radius: 24px;
	background: rgba(255, 255, 255, .035);
	padding: 36px 34px;
}
.tf-pricing-card--featured {
	position: relative;
	border-color: rgba(46, 155, 255, .45);
	background: linear-gradient(180deg, rgba(46, 155, 255, .16), rgba(255, 255, 255, .02) 55%);
	box-shadow: 0 30px 80px rgba(10, 108, 224, .2);
}
.tf-pricing-card__badge {
	position: absolute;
	top: 22px;
	right: 22px;
	white-space: nowrap;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: #061024;
	background: var(--tf-accent);
	padding: 5px 11px;
	border-radius: 999px;
}
.tf-pricing-card__eyebrow {
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #8e97bd;
	margin-bottom: 10px;
}
.tf-pricing-card--featured .tf-pricing-card__eyebrow { color: #7cc0ff; white-space: nowrap; padding-right: 132px; }
.tf-pricing-card__price { font-size: 52px; font-weight: 800; letter-spacing: -.04em; line-height: 1; color: #f7f9ff; margin-bottom: 24px; }
.tf-pricing-card__price span { font-size: 19px; font-weight: 700; color: #7cc0ff; }
.tf-pricing-card__item {
	display: flex;
	gap: 13px;
	padding: 14px 0;
	border-top: 1px solid rgba(255, 255, 255, .08);
}
.tf-pricing-card--featured .tf-pricing-card__item { border-top-color: rgba(255, 255, 255, .1); }
.tf-pricing-card__check {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	border-radius: 50%;
	background: rgba(46, 155, 255, .16);
	color: #63b3ff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 800;
}
.tf-pricing-card--featured .tf-pricing-card__check { background: rgba(46, 155, 255, .22); color: #9ccbff; }
.tf-pricing-card__item-title { font-size: 15.5px; font-weight: 700; color: #eaeeff; line-height: 1.4; }
.tf-pricing-card__item-desc { font-size: 14px; color: #98a1c2; line-height: 1.55; margin-top: 3px; }
.tf-pricing-card--featured .tf-pricing-card__item-desc { color: #a2abcb; }

.tf-offer__note {
	margin-top: 18px;
	padding: 22px 28px;
	border: 1px dashed rgba(255, 255, 255, .16);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	justify-content: space-between;
	font-size: 15.5px;
	color: #a2abcb;
	line-height: 1.5;
}
.tf-offer__note strong { color: #f2f5ff; }
.tf-offer__note-link { font-size: 14.5px; font-weight: 700; color: #63b3ff; white-space: nowrap; }

/* ---------- Fit check ---------- */

.tf-fit { position: relative; z-index: 1; padding: 104px 32px; scroll-margin-top: var(--tf-header-h); }
.tf-fit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); gap: 20px; align-items: stretch; max-width: 1280px; margin: 0 auto; }
.tf-fit-card {
	border-radius: 24px;
	padding: 34px 32px 12px;
	transition: transform .25s cubic-bezier(.2, .7, .3, 1), box-shadow .25s ease, border-color .25s ease;
}
.tf-fit-card--yes {
	border: 1px solid rgba(46, 155, 255, .3);
	background: linear-gradient(170deg, rgba(46, 155, 255, .11), rgba(46, 155, 255, .015));
}
.tf-fit-card--yes:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(10, 108, 224, .28); border-color: rgba(46, 155, 255, .5); }
.tf-fit-card--no {
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(255, 255, 255, .02);
}
.tf-fit-card--no:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(0, 0, 0, .45); border-color: rgba(255, 255, 255, .16); }
.tf-fit-card__head {
	display: flex;
	align-items: center;
	gap: 11px;
	padding-bottom: 22px;
	margin-bottom: 6px;
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -.02em;
}
.tf-fit-card--yes .tf-fit-card__head { border-bottom: 1px solid rgba(46, 155, 255, .2); color: #f7f9ff; }
.tf-fit-card--no .tf-fit-card__head { border-bottom: 1px solid rgba(255, 255, 255, .08); color: #9aa3c4; }
.tf-fit-card__icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 800;
}
.tf-fit-card--yes .tf-fit-card__icon { background: var(--tf-accent); color: #061024; }
.tf-fit-card--no .tf-fit-card__icon { background: rgba(255, 255, 255, .09); color: #7b84a8; }
.tf-fit-row { display: flex; gap: 14px; padding: 20px 0; }
.tf-fit-card--yes .tf-fit-row { border-bottom: 1px solid rgba(255, 255, 255, .06); }
.tf-fit-card--no .tf-fit-row { border-bottom: 1px solid rgba(255, 255, 255, .05); }
.tf-fit-row:last-child { border-bottom: none; }
.tf-fit-row__dot { flex-shrink: 0; width: 7px; height: 7px; margin-top: 8px; border-radius: 50%; }
.tf-fit-card--yes .tf-fit-row__dot { background: var(--tf-accent); }
.tf-fit-card--no .tf-fit-row__dot { background: rgba(255, 255, 255, .18); }
.tf-fit-row__title { font-size: 16.5px; font-weight: 700; line-height: 1.4; }
.tf-fit-card--yes .tf-fit-row__title { color: #f2f5ff; }
.tf-fit-card--no .tf-fit-row__title { color: var(--tf-muted); }
.tf-fit-row__sub { font-size: 14.5px; line-height: 1.6; margin-top: 5px; }
.tf-fit-card--yes .tf-fit-row__sub { color: var(--tf-muted); }
.tf-fit-card--no .tf-fit-row__sub { color: #646d90; }

/* ---------- Services ---------- */

.tf-services {
	position: relative;
	z-index: 1;
	background: var(--tf-panel);
	padding: 96px 0;
	border-radius: 44px 44px 0 0;
	overflow: hidden;
	scroll-margin-top: var(--tf-header-h);
}
.tf-services::before {
	content: "";
	position: absolute;
	top: -140px;
	left: 50%;
	width: 820px;
	height: 520px;
	transform: translateX(-50%);
	background: radial-gradient(closest-side, rgba(46, 155, 255, .2), transparent 70%);
	pointer-events: none;
}
.tf-services-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tf-service-card {
	position: relative;
	padding: 32px 28px 30px;
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, .09);
	background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .015));
	overflow: hidden;
}
.tf-service-card__logos { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.tf-service-card__logo {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}
.tf-service-card__logo span { width: 24px; height: 24px; display: block; }
.tf-service-card__title { font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 10px; color: #f7f9ff; }
.tf-service-card__body { font-size: 15px; line-height: 1.6; color: #a2abcb; margin: 0 0 18px; text-wrap: pretty; }
.tf-service-card__tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tf-tag {
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .1);
	font-size: 12.5px;
	font-weight: 600;
	color: #c3cbe6;
}

/* ---------- Proof / results ---------- */

.tf-proof {
	position: relative;
	z-index: 1;
	background: var(--tf-panel);
	padding: 0 0 100px;
	border-radius: 0 0 44px 44px;
	scroll-margin-top: var(--tf-header-h);
}
.tf-proof__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }

.tf-proof-visual { display: grid; gap: 14px; }
.tf-proof-chart-card {
	border-radius: 22px;
	padding: 26px 26px 22px;
	border: 1px solid rgba(255, 255, 255, .09);
	background: linear-gradient(180deg, #151a3e, #0f1233);
}
.tf-proof-chart-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.tf-proof-chart-card__label { font-size: 12.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #8e97bd; }
.tf-proof-chart-card__period { font-size: 12.5px; color: #7d86ac; }
.tf-proof-chart-card__value-row { display: flex; align-items: baseline; gap: 10px; margin: 6px 0 22px; }
.tf-proof-chart-card__value { font-size: 32px; font-weight: 800; letter-spacing: -.03em; color: #fff; }
.tf-proof-chart-card__delta { font-size: 13.5px; font-weight: 700; color: #1f9d55; }

.tf-proof-chart { display: flex; align-items: flex-end; gap: 10px; height: 140px; }
.tf-proof-chart__col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; gap: 8px; }
.tf-proof-chart__value { font-size: 12px; font-weight: 700; color: #8e97bd; }
.tf-proof-chart__bar {
	width: 100%;
	max-width: 34px;
	border-radius: 6px 6px 2px 2px;
	background: linear-gradient(180deg, #2d5da8, #1c3568);
}
.tf-proof-chart__bar.is-current { background: linear-gradient(180deg, #4dabff, var(--tf-accent)); }
.tf-proof-chart__month { font-size: 11px; font-weight: 700; letter-spacing: .05em; color: #6b749a; }

.tf-proof-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tf-proof-mini-card {
	border-radius: 20px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, .09);
	background: rgba(255, 255, 255, .035);
}
.tf-proof-mini-card--accent {
	border: none;
	background: linear-gradient(180deg, #3aa5ff, var(--tf-accent-deep));
	box-shadow: 0 20px 50px rgba(10, 108, 224, .4);
}
.tf-proof-mini-card__num { font-size: 32px; font-weight: 800; letter-spacing: -.035em; line-height: 1; color: #f2f5ff; }
.tf-proof-mini-card--accent .tf-proof-mini-card__num { color: #fff; }
.tf-proof-mini-card__label { font-size: 13px; font-weight: 600; line-height: 1.4; color: #a2abcb; margin-top: 8px; }
.tf-proof-mini-card--accent .tf-proof-mini-card__label { color: rgba(255, 255, 255, .85); }

.tf-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 26px; }
.tf-stat-card { padding: 22px; border-radius: 18px; border: 1px solid rgba(255, 255, 255, .09); background: rgba(255, 255, 255, .035); }
.tf-stat-card__value { font-size: 32px; font-weight: 800; letter-spacing: -.035em; line-height: 1; color: var(--tf-accent); }
.tf-stat-card__label { font-size: 14.5px; font-weight: 600; color: #e2e7fa; margin-top: 9px; line-height: 1.35; }
.tf-stat-card__source { font-size: 12px; color: #7d86ac; margin-top: 5px; }

.tf-case-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.tf-case-card { flex: 1; min-width: 250px; padding: 20px 22px; border-radius: 18px; border: 1px solid rgba(255, 255, 255, .09); background: rgba(255, 255, 255, .02); }
.tf-case-card__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.tf-case-card__brand { font-size: 15.5px; font-weight: 800; color: #f2f5ff; }
.tf-case-card__market { font-size: 12px; font-weight: 600; color: #7d86ac; }
.tf-case-card__note { font-size: 14px; line-height: 1.6; color: #98a1c2; margin: 0 0 14px; text-wrap: pretty; }
.tf-case-card__metrics { display: flex; gap: 20px; border-top: 1px solid rgba(255, 255, 255, .08); padding-top: 12px; }
.tf-case-card__metric-v { font-size: 17px; font-weight: 800; color: #e2e7fa; }
.tf-case-card__metric-k { font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: #7d86ac; margin-top: 3px; }

/* ---------- FAQ ---------- */

.tf-faq { position: relative; z-index: 1; padding: 104px 0; scroll-margin-top: var(--tf-header-h); }
.tf-faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; }
.tf-faq-aside__sticky { position: sticky; top: 130px; }
.tf-faq-aside__lead { max-width: 310px; }

.tf-faq-item {
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 18px;
	padding: 22px 26px;
	margin-bottom: 10px;
	background: rgba(255, 255, 255, .02);
}
.tf-faq-item[open] { background: rgba(46, 155, 255, .07); border-color: rgba(46, 155, 255, .25); }
.tf-faq-item__summary {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	cursor: pointer;
	list-style: none;
}
.tf-faq-item__summary::-webkit-details-marker { display: none; }
.tf-faq-item__q { font-size: 18px; font-weight: 700; line-height: 1.4; color: #c3cbe6; }
.tf-faq-item[open] .tf-faq-item__q { color: #f7f9ff; }
.tf-faq-item__icon {
	font-size: 20px;
	line-height: 1.2;
	color: var(--tf-accent);
	flex-shrink: 0;
	transition: transform .25s;
}
.tf-faq-item[open] .tf-faq-item__icon { transform: rotate(45deg); }
.tf-faq-item__body p { margin: 12px 0 0; font-size: 15.5px; line-height: 1.7; color: #9aa3c4; max-width: 640px; text-wrap: pretty; }

/* ---------- CTA band ---------- */

.tf-cta-band-wrap { position: relative; z-index: 1; padding: 0 32px 104px; }
.tf-cta-band {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	border-radius: 36px;
	overflow: hidden;
	background: linear-gradient(140deg, var(--tf-accent-deep), #123a9e 55%, var(--tf-panel));
	padding: 76px 40px;
	text-align: center;
	box-shadow: 0 40px 100px rgba(10, 108, 224, .28);
}
.tf-cta-band::before {
	content: "";
	position: absolute;
	top: -160px;
	left: 50%;
	width: 700px;
	height: 420px;
	transform: translateX(-50%);
	background: radial-gradient(closest-side, rgba(255, 255, 255, .22), transparent 70%);
	pointer-events: none;
}
.tf-cta-band__title { position: relative; font-size: clamp(34px, 4.3vw, 58px); font-weight: 800; line-height: 1.02; letter-spacing: -.035em; margin: 0 0 18px; color: #fff; text-wrap: balance; }
.tf-cta-band__lead { position: relative; max-width: 520px; margin: 0 auto 32px; font-size: 17px; line-height: 1.6; color: rgba(255, 255, 255, .8); text-wrap: pretty; }
.tf-cta-band .tf-btn { position: relative; }

/* ---------- Footer ---------- */

.tf-footer { position: relative; z-index: 1; border-top: 1px solid rgba(255, 255, 255, .08); padding: 48px 0; }
.tf-footer__inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.tf-footer__logo img { height: 44px; width: auto; display: block; }
.tf-footer__legal { font-size: 13px; line-height: 1.8; color: #6b749a; text-align: right; }

/* ---------- Fallback templates (blog/page/404) ---------- */

.tf-basic-page { position: relative; z-index: 1; padding: 140px 0 100px; scroll-margin-top: var(--tf-header-h); }
.tf-basic-page__title { font-size: clamp(30px, 3.5vw, 46px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; margin: 0 0 24px; color: #f7f9ff; }
.tf-basic-page__thumb { border-radius: 22px; overflow: hidden; margin-bottom: 32px; }
.tf-basic-page__thumb img { display: block; width: 100%; }
.tf-basic-page__content,
.tf-basic-page__excerpt { font-size: 16.5px; line-height: 1.75; color: #b7bede; }
.tf-basic-page__content p,
.tf-basic-page__excerpt p { margin: 0 0 20px; }
.tf-basic-page__content a { text-decoration: underline; }
.tf-basic-page__meta { display: flex; gap: 14px; font-size: 13px; font-weight: 600; color: #7d86ac; margin-bottom: 14px; }
.tf-basic-page__list-item { padding: 28px 0; border-top: 1px solid rgba(255, 255, 255, .08); }
.tf-basic-page__list-item:first-child { border-top: none; }
.tf-basic-page__list-title { font-size: 24px; margin: 0 0 8px; }
.tf-basic-page__list-title a { color: #f2f5ff; }
.tf-basic-page__pagination { margin-top: 40px; }
.tf-basic-page__404-inner { text-align: center; padding-top: 40px; }

/* ---------- Comments (fallback single/page views) ---------- */

.tf-comments { margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255, 255, 255, .08); }
.tf-comments__title { font-size: 22px; font-weight: 800; color: #f7f9ff; margin: 0 0 24px; }
.tf-comments__list { list-style: none; margin: 0 0 32px; padding: 0; }
.tf-comments .comment-body { padding: 18px 0; border-top: 1px solid rgba(255, 255, 255, .07); font-size: 15px; line-height: 1.7; color: #b7bede; }
.tf-comments .comment-list .children { list-style: none; margin-left: 28px; padding-left: 20px; border-left: 1px solid rgba(255, 255, 255, .07); }
.tf-comments .comment-author .fn { color: #eaeeff; font-weight: 700; font-style: normal; }
.tf-comments .comment-metadata { font-size: 12.5px; color: #7d86ac; margin-bottom: 6px; }
.tf-comments .comment-reply-link { color: #63b3ff; font-weight: 600; font-size: 13.5px; }
.tf-comments .comment-form label { display: block; font-size: 13px; font-weight: 700; color: #9aa3c4; margin-bottom: 9px; }
.tf-comments .comment-form input[type="text"],
.tf-comments .comment-form input[type="email"],
.tf-comments .comment-form input[type="url"],
.tf-comments .comment-form textarea {
	width: 100%;
	padding: 13px 16px;
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 12px;
	color: #f2f5ff;
	font-size: 15px;
	margin-bottom: 18px;
}
.tf-comments .comment-form p { margin: 0 0 4px; }
.tf-comments .form-submit input {
	margin-top: 4px;
	padding: 14px 28px;
	border-radius: 999px;
	border: none;
	background: linear-gradient(180deg, #3aa5ff, var(--tf-accent-deep));
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
}
.tf-comments__closed { color: #7d86ac; font-size: 14.5px; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
	.tf-proof__grid { grid-template-columns: 1fr; }
	.tf-faq__grid { grid-template-columns: 1fr; }
	.tf-faq-aside__sticky { position: static; margin-bottom: 30px; }
	.tf-services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
	.tf-nav,
	.tf-header__cta { display: none; }
	.tf-nav-toggle { display: flex; }
	.tf-hero__inner { grid-template-columns: 1fr; }
	.tf-hero__visual { margin-top: 24px; }
}

@media (max-width: 680px) {
	.tf-field-grid { grid-template-columns: 1fr; }
	.tf-apply__body { padding: 28px 22px 24px; }
	.tf-apply__nav { padding: 18px 22px; flex-wrap: wrap; }
	.tf-apply__tab { padding: 14px 8px; }
	.tf-apply__tab-num { font-size: 10px; }
	.tf-apply__tab-label { font-size: 13px; overflow-wrap: break-word; }
	.tf-offer { margin: 0 14px; padding: 60px 0 64px; }
	.tf-pricing-card { padding: 30px 24px; }
	.tf-pricing-card__badge { position: static; display: inline-block; margin-bottom: 14px; }
	.tf-pricing-card--featured .tf-pricing-card__eyebrow { padding-right: 0; white-space: normal; }
	.tf-hero__visual { width: 100%; height: 480px; transform: scale(.86); transform-origin: top center; }
	.tf-cta-band { padding: 56px 24px; }
}
