@font-face {
	font-family: 'Familjen Grotesk';
	src: url('/assets/fonts/familjen-grotesk-v11-latin-600.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Familjen Grotesk';
	src: url('/assets/fonts/familjen-grotesk-v11-latin-700.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Literata';
	src: url('/assets/fonts/literata-v40-latin-regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Literata';
	src: url('/assets/fonts/literata-v40-latin-500.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

:root {
	--bg-canvas: #0b1320;
	--bg-page: #f8fafc;
	--bg-surface: #ffffff;
	--bg-tint: #f1f5f9;
	--bg-card-hover: #fcfdfe;
	--ink-primary: #0f172a;
	--ink-secondary: #334155;
	--ink-muted: #64748b;
	--ink-light: #f8fafc;
	--accent-gold: #f59e0b;
	--accent-gold-hover: #d97706;
	--accent-gold-light: #fef3c7;
	--accent-blue: #2563eb;
	--accent-blue-hover: #1d4ed8;
	--accent-blue-light: #eff6ff;
	--accent-emerald: #059669;
	--accent-emerald-light: #ecfdf5;
	--border: #e2e8f0;
	--border-subtle: #f1f5f9;
	--border-dark: #1e293b;
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 18px;
	--radius-pill: 9999px;
	--shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
	--shadow-md: 0 4px 20px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
	--shadow-lg: 0 16px 36px -4px rgba(15, 23, 42, 0.12), 0 6px 12px -2px rgba(15, 23, 42, 0.06);
	--shell: 1240px;
	--gut: clamp(16px, 3.5vw, 40px);
	--sp: clamp(48px, 6vw, 88px);
	--head-h: 76px;
	--z-head: 100;
	--z-nav: 110;
	--z-chat: 120;
	--z-cookie: 130;
	--z-modal: 150;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--head-h) + 20px);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--bg-page);
	color: var(--ink-primary);
	font: 400 clamp(16px, 1vw, 17px)/1.7 'Literata', Georgia, serif;
	overflow-x: hidden;
}

body.has-modal-open {
	overflow: hidden;
}

[hidden] {
	display: none !important;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Familjen Grotesk', system-ui, -apple-system, sans-serif;
	font-weight: 700;
	color: var(--ink-primary);
	margin: 0;
	line-height: 1.2;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

p {
	margin: 0 0 1.1em;
	text-wrap: pretty;
}

p:last-child {
	margin-bottom: 0;
}

a {
	color: var(--accent-blue);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--accent-blue-hover);
	text-decoration: underline;
}

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

.container {
	max-width: var(--shell);
	margin-inline: auto;
	padding-inline: var(--gut);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}


.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: var(--radius-sm);
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: -0.01em;
	line-height: 1.2;
	cursor: pointer;
	border: 1px solid transparent;
	background: var(--accent-gold);
	color: #0b1320;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
	white-space: nowrap;
}

.btn:hover {
	background: var(--accent-gold-hover);
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: var(--shadow-sm);
}

.btn:active {
	transform: translateY(0);
}

.btn--primary {
	background: var(--accent-blue);
	color: #ffffff;
}

.btn--primary:hover {
	background: var(--accent-blue-hover);
	color: #ffffff;
}

.btn--cta {
	position: relative;
	background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
	color: #ffffff;
	font-weight: 600;
	font-size: 15px;
	padding: 12px 20px;
	border-radius: var(--radius-sm);
	box-shadow: 0 2px 8px rgba(234, 88, 12, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.btn--cta:hover {
	background: linear-gradient(135deg, #d97706 0%, #c2410c 100%);
	color: #ffffff;
	box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
	transform: translateY(-1px);
}

.btn--cta:active {
	transform: translateY(0);
}

.btn--cta svg {
	transition: transform 0.15s ease;
}

.btn--cta:hover svg {
	transform: translateX(4px);
}

.btn--ghost {
	background: transparent;
	color: var(--ink-secondary);
	border-color: var(--border);
}

.btn--ghost:hover {
	background: var(--bg-tint);
	color: var(--ink-primary);
	border-color: var(--ink-muted);
}

.btn--dark-ghost {
	background: rgba(255, 255, 255, 0.08);
	color: var(--ink-light);
	border-color: rgba(255, 255, 255, 0.2);
}

.btn--dark-ghost:hover {
	background: rgba(255, 255, 255, 0.16);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.4);
}

.btn--sm {
	padding: 8px 16px;
	font-size: 13.5px;
}

.btn span {
	position: relative;
	z-index: 2;
}

.jp-hidlink,
.hidlink {
	position: absolute;
	z-index: -5;
	opacity: 0;
	pointer-events: none;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}


.badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 3px 10px;
	border-radius: var(--radius-sm);
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	background: var(--accent-gold-light);
	color: #92400e;
	border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge--blue {
	background: var(--accent-blue-light);
	color: #1e40af;
	border-color: rgba(37, 99, 235, 0.25);
}

.badge--emerald {
	background: var(--accent-emerald-light);
	color: #065f46;
	border-color: rgba(5, 150, 105, 0.25);
}


.site-head {
	position: sticky;
	top: 0;
	z-index: var(--z-head);
	background: var(--bg-canvas);
	border-bottom: 1px solid var(--border-dark);
	height: var(--head-h);
}

.head__in {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #ffffff;
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: -0.03em;
	text-decoration: none;
}

.brand:hover {
	text-decoration: none;
	color: var(--accent-gold);
}

.brand svg {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
}

.brand span b {
	color: var(--accent-gold);
	font-weight: 700;
}

.site-nav ul {
	display: flex;
	align-items: center;
	gap: 4px;
}

.site-nav a {
	display: block;
	padding: 8px 12px;
	border-radius: var(--radius-sm);
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	font-size: 14.5px;
	font-weight: 600;
	color: #cbd5e1;
	text-decoration: none;
	transition: all 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.08);
	text-decoration: none;
}

.site-nav a[aria-current="page"] {
	color: var(--accent-gold);
	border-bottom: 2px solid var(--accent-gold);
	border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.burger {
	display: none;
	background: none;
	border: 0;
	padding: 8px;
	cursor: pointer;
	color: #ffffff;
}

.burger span {
	display: block;
	width: 24px;
	height: 2px;
	background: currentColor;
	margin: 5px 0;
	transition: transform 0.2s ease, opacity 0.2s ease;
}


.hero {
	padding: clamp(24px, 3.2vw, 42px) 0 clamp(24px, 3vw, 36px);
	background: #ffffff;
	border-bottom: 1px solid var(--border);
}

.hero__in {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: clamp(20px, 3vw, 44px);
	align-items: center;
	margin-bottom: clamp(24px, 3vw, 36px);
}

.hero__kicker {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.hero__update {
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	font-size: 13px;
	color: var(--ink-muted);
	font-weight: 600;
}

.hero__text h1 {
	font-size: clamp(26px, 3.2vw, 40px);
	margin-bottom: 10px;
	line-height: 1.15;
	color: var(--ink-primary);
}

.hero__lead {
	font-size: clamp(15.5px, 1.05vw, 17.5px);
	line-height: 1.5;
	color: var(--ink-secondary);
	margin-bottom: 16px;
}

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 28px;
	padding-top: 14px;
	border-top: 1px solid var(--border);
}

.meta-stat {
	display: flex;
	flex-direction: column;
}

.meta-num {
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--ink-primary);
	line-height: 1.1;
}

.meta-label {
	font-size: 12.5px;
	color: var(--ink-muted);
	font-weight: 500;
}

.hero__art {
	width: 100%;
	max-height: 250px;
	border-radius: var(--radius-md);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
	object-fit: cover;
}


.pg-hero {
	background: #ffffff;
	border-bottom: 1px solid var(--border);
	padding: clamp(28px, 3.5vw, 44px) 0 clamp(20px, 2.5vw, 32px);
}

.pg-hero h1 {
	font-size: clamp(24px, 2.8vw, 34px);
	margin-bottom: 8px;
	color: var(--ink-primary);
}

.pg-lead {
	font-size: 16px;
	color: var(--ink-secondary);
	max-width: 860px;
}


.toplist-head {
	margin-bottom: 24px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.toplist-head h2 {
	font-size: clamp(24px, 2.6vw, 34px);
	margin-bottom: 6px;
}

.toplist-head p {
	font-size: 16px;
	color: var(--ink-muted);
	margin: 0;
}


.toplist {
	background: var(--bg-surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	overflow: hidden;
}

.toplist--margin {
	margin-bottom: 48px;
}

.dev-row {
	display: grid;
	grid-template-columns: 130px minmax(0, 1fr) 140px 190px;
	align-items: center;
	gap: clamp(16px, 2.2vw, 32px);
	padding: clamp(20px, 2.4vw, 28px) clamp(20px, 2.5vw, 32px);
	background: #ffffff;
	transition: background-color 0.2s ease;
	position: relative;
}

.dev-row + .dev-row {
	border-top: 1px solid var(--border);
}

.dev-row:hover {
	background-color: var(--bg-card-hover);
}

.dev-row__identity {
	display: flex;
	align-items: center;
	gap: 14px;
}

.rank-tag {
	width: 36px;
	height: 36px;
	border-radius: var(--radius-sm);
	background: var(--bg-tint);
	border: 1px solid var(--border);
	color: var(--ink-primary);
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	font-size: 16px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.rank-tag--top {
	background: var(--accent-gold);
	color: #0b1320;
	border-color: var(--accent-gold-hover);
}

.dev-row__logo {
	width: 60px;
	height: 60px;
	background: var(--bg-tint);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border: 1px solid var(--border);
	flex-shrink: 0;
}

.dev-row__logo svg {
	width: 100%;
	height: 100%;
}

.dev-row__main {
	min-width: 0;
}

.dev-row__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
	flex-wrap: wrap;
}

.dev-row__name {
	font-size: clamp(20px, 1.5vw, 23px);
	color: var(--ink-primary);
}

.dev-row__name a {
	color: inherit;
	text-decoration: none;
}

.dev-row__name a:hover {
	color: var(--accent-blue);
	text-decoration: underline;
}

.dev-row__tagline {
	font-size: 14.5px;
	color: var(--ink-muted);
	margin-bottom: 10px;
	line-height: 1.45;
}

.dev-row__points {
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-size: 14px;
	color: var(--ink-secondary);
}

.dev-row__points li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	line-height: 1.4;
}

.dev-row__points svg {
	width: 15px;
	height: 15px;
	color: var(--accent-emerald);
	flex-shrink: 0;
	margin-top: 3px;
}

.dev-row__score {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-left: clamp(14px, 2vw, 24px);
	border-left: 1px solid var(--border);
	align-self: stretch;
}

.score-val {
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: var(--ink-primary);
	line-height: 1;
	margin-bottom: 6px;
}

.score-den {
	font-size: 15px;
	font-weight: 600;
	color: var(--ink-muted);
}

.stars {
	display: inline-block;
	position: relative;
	color: #cbd5e1;
	line-height: 1;
}

.stars__row {
	display: flex;
	gap: 2px;
}

.stars__fill {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	color: var(--accent-gold);
}

.stars__fill--98 { width: 98%; }
.stars__fill--96 { width: 96%; }
.stars__fill--94 { width: 94%; }
.stars__fill--92 { width: 92%; }
.stars__fill--90 { width: 90%; }

.score-lbl {
	font-size: 12px;
	font-weight: 600;
	color: var(--ink-muted);
	margin-top: 4px;
}

.dev-row__cta {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: stretch;
}

.dev-row__cta .btn {
	width: 100%;
}


.sect {
	padding: var(--sp) 0;
}

.sect--tint {
	background: var(--bg-tint);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.sect-head {
	margin-bottom: clamp(28px, 4vw, 44px);
	max-width: 840px;
}

.sect-head h2 {
	font-size: clamp(24px, 2.7vw, 36px);
	margin-bottom: 12px;
}

.sect-head p {
	font-size: clamp(16px, 1.05vw, 18px);
	color: var(--ink-secondary);
}


.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}

.info-card {
	background: #ffffff;
	padding: 26px;
	border-radius: var(--radius-md);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
}

.info-card h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.info-card p {
	font-size: 15.5px;
	color: var(--ink-secondary);
}


.review-item {
	background: var(--bg-surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: clamp(24px, 3vw, 40px);
	margin-bottom: 28px;
	box-shadow: var(--shadow-sm);
}

.review-item__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid var(--border);
	padding-bottom: 18px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.review-item__title {
	display: flex;
	align-items: center;
	gap: 16px;
}

.review-item__title svg {
	width: 48px;
	height: 48px;
	padding: 8px;
	background: var(--bg-tint);
	border-radius: var(--radius-md);
	border: 1px solid var(--border);
}

.review-item__title h3 {
	font-size: clamp(22px, 2vw, 28px);
}

.review-item__meta {
	font-size: 14px;
	color: var(--ink-muted);
}

.review-item__score-box {
	text-align: right;
}

.review-item__score-num {
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: var(--accent-gold-hover);
}

.review-item__score-label {
	font-size: 12.5px;
	color: var(--ink-muted);
	text-transform: uppercase;
	font-weight: 600;
}

.review-item h4 {
	font-size: 19px;
	margin: 24px 0 10px;
	color: var(--ink-primary);
}

.review-item ul {
	margin-bottom: 20px;
}

.review-item ul li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 8px;
	line-height: 1.55;
	color: var(--ink-secondary);
}

.review-item ul li::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 10px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent-blue);
}

.review-item__actions {
	margin-top: 24px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}


.types-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 28px;
}

.type-card {
	background: var(--bg-surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
}

.type-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.type-card img {
	width: 100%;
	height: 210px;
	object-fit: cover;
	border-bottom: 1px solid var(--border);
}

.type-card__body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.type-card__badge {
	align-self: flex-start;
	margin-bottom: 10px;
}

.type-card__body h3 {
	font-size: 21px;
	margin-bottom: 10px;
	color: var(--ink-primary);
}

.type-card__body p {
	font-size: 15.5px;
	color: var(--ink-secondary);
	line-height: 1.6;
}

.section-cta-wrap {
	margin-top: 32px;
	text-align: center;
}

.section-cta-wrap--large {
	margin-top: 48px;
}


.process-rail {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.step-card {
	background: var(--bg-surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 24px 28px;
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 20px;
	align-items: flex-start;
	box-shadow: var(--shadow-sm);
}

.step-card__num {
	width: 56px;
	height: 56px;
	border-radius: var(--radius-md);
	background: var(--bg-canvas);
	color: var(--accent-gold);
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	font-size: 24px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border-dark);
}

.step-card h3 {
	font-size: 21px;
	margin-bottom: 8px;
}

.step-card p {
	font-size: 16px;
	color: var(--ink-secondary);
	line-height: 1.6;
}


.table-wrap {
	overflow-x: auto;
	margin: 24px 0;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	background: var(--bg-surface);
	box-shadow: var(--shadow-sm);
}

.data-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	font-size: 15.5px;
}

.data-table caption {
	text-align: left;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink-muted);
	padding: 14px 20px;
	background: var(--bg-tint);
	border-bottom: 1px solid var(--border);
}

.data-table th,
.data-table td {
	padding: 16px 20px;
	border-bottom: 1px solid var(--border);
	line-height: 1.5;
}

.data-table th {
	background: #f8fafc;
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	font-weight: 700;
	color: var(--ink-primary);
}

.data-table tbody tr:last-child td,
.data-table tbody tr:last-child th {
	border-bottom: 0;
}

.data-table tbody tr:hover {
	background: #fbfcfe;
}

.table-currency-sub {
	font-size: 13.5px;
	color: var(--ink-muted);
}


.cost-insights {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 28px;
	margin-top: 40px;
}

.cost-insight-card {
	background: #ffffff;
	padding: 28px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
}

.cost-insight-card h3 {
	font-size: 21px;
	margin-bottom: 12px;
}

.cost-insight-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 15px;
	color: var(--ink-secondary);
}

.cost-insight-text {
	font-size: 15px;
	color: var(--ink-secondary);
	line-height: 1.6;
}

.cost-banner-img {
	width: 100%;
	max-height: 360px;
	object-fit: cover;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
	margin-bottom: 32px;
}


.prose-section {
	max-width: 880px;
	margin-inline: auto;
}

.prose-card {
	background: #ffffff;
	padding: clamp(24px, 4vw, 44px);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
	line-height: 1.75;
	font-size: 16px;
}

.prose-card h2 {
	font-size: 22px;
	margin: 28px 0 12px;
	color: var(--ink-primary);
}

.prose-card h2:first-child {
	margin-top: 0;
}

.prose-card ul {
	margin: 12px 0 20px;
}

.prose-card ul li {
	margin-bottom: 8px;
	position: relative;
	padding-left: 20px;
}

.prose-card ul li::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 10px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent-gold);
}


.faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 920px;
}

.faq-card {
	background: #ffffff;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 22px 26px;
}

.faq-card h3 {
	font-size: 18.5px;
	margin-bottom: 8px;
}

.faq-card p {
	font-size: 15.5px;
	color: var(--ink-secondary);
	margin: 0;
}


.lead-section {
	background: #ffffff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: clamp(28px, 4vw, 48px);
	box-shadow: var(--shadow-md);
}

.lead-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: clamp(28px, 4vw, 56px);
}

.lead-badge {
	margin-bottom: 12px;
}

.lead-title {
	font-size: 28px;
	margin-bottom: 12px;
}

.lead-subtitle {
	color: var(--ink-secondary);
	margin-bottom: 24px;
}

.lead-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.lead-form label {
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--ink-primary);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	font-family: inherit;
	font-size: 15.5px;
	color: var(--ink-primary);
	background: #ffffff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
	outline: none;
	border-color: var(--accent-blue);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.lead-form textarea {
	min-height: 110px;
	resize: vertical;
}

.lead-form .form-feedback {
	display: none;
	font-size: 13.5px;
	color: #dc2626;
	margin-top: 4px;
}

.lead-form .form-group.has-error input,
.lead-form .form-group.has-error select,
.lead-form .form-group.has-error textarea {
	border-color: #dc2626;
	background: #fef2f2;
}

.lead-form .form-group.has-error .form-feedback {
	display: block;
}

.form-submit-btn {
	align-self: flex-start;
}

.lead-status {
	display: none;
	padding: 16px;
	border-radius: var(--radius-md);
	font-size: 15px;
	line-height: 1.5;
	margin-top: 12px;
}

.lead-status.is-success {
	display: block;
	background: var(--accent-emerald-light);
	border: 1px solid rgba(5, 150, 105, 0.3);
	color: #065f46;
}

.lead-status.is-loading {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--accent-blue-light);
	border: 1px solid rgba(37, 99, 235, 0.3);
	color: #1e40af;
}

.spinner {
	width: 20px;
	height: 20px;
	border: 2.5px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

.lead-aside {
	background: var(--bg-canvas);
	color: #ffffff;
	border-radius: var(--radius-lg);
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	border: 1px solid var(--border-dark);
}

.lead-aside h3 {
	color: #ffffff;
	font-size: 22px;
}

.lead-aside p {
	color: #cbd5e1;
	font-size: 15px;
	line-height: 1.6;
}

.lead-aside ul li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 14.5px;
	color: #cbd5e1;
}

.lead-aside ul svg {
	width: 18px;
	height: 18px;
	color: var(--accent-gold);
	flex-shrink: 0;
	margin-top: 2px;
}

.lead-aside-tip {
	background: rgba(255, 255, 255, 0.06);
	padding: 16px;
	border-radius: var(--radius-sm);
	font-size: 14px;
	color: #94a3b8;
}

.lead-aside-nda {
	border-top: 1px solid var(--border-dark);
	padding-top: 16px;
	font-size: 13.5px;
	color: #94a3b8;
}


.site-foot {
	background: var(--bg-canvas);
	color: #cbd5e1;
	padding: clamp(48px, 6vw, 72px) 0 32px;
	border-top: 1px solid var(--border-dark);
	font-size: 14.5px;
}

.foot__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 32px;
	border-bottom: 1px solid var(--border-dark);
	flex-wrap: wrap;
}

.socials {
	display: flex;
	align-items: center;
	gap: 12px;
}

.social-link {
	width: 40px;
	height: 40px;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--border-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
	transition: all 0.2s ease;
}

.social-link:hover {
	color: var(--accent-gold);
	border-color: var(--accent-gold);
	background: rgba(245, 158, 11, 0.1);
	text-decoration: none;
}

.social-link svg {
	width: 18px;
	height: 18px;
}

.foot__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: clamp(24px, 4vw, 48px);
	padding: 36px 0;
	border-bottom: 1px solid var(--border-dark);
}

.foot__about {
	line-height: 1.6;
	color: #94a3b8;
}

.foot__company-info {
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 13.5px;
	line-height: 1.55;
	color: #94a3b8;
}

.foot__company-info strong {
	color: #ffffff;
}

.foot__col h3 {
	color: #ffffff;
	font-size: 16px;
	margin-bottom: 14px;
	letter-spacing: -0.01em;
}

.foot__col ul li {
	margin-bottom: 10px;
}

.foot__col a {
	color: #cbd5e1;
	text-decoration: none;
	transition: color 0.2s ease;
}

.foot__col a:hover {
	color: var(--accent-gold);
	text-decoration: underline;
}

.foot__bottom {
	padding-top: 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	font-size: 13.5px;
	color: #64748b;
	flex-wrap: wrap;
}


.age-modal {
	position: fixed;
	inset: 0;
	z-index: var(--z-modal);
	background: rgba(11, 19, 32, 0.78);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.age-modal__dialog {
	background: #ffffff;
	border-radius: var(--radius-lg);
	max-width: 520px;
	width: 100%;
	padding: clamp(28px, 4vw, 40px);
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border);
	text-align: center;
	animation: popIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popIn {
	from { opacity: 0; transform: scale(0.94); }
	to { opacity: 1; transform: scale(1); }
}

.age-modal__badge {
	display: inline-block;
	padding: 5px 14px;
	border-radius: var(--radius-pill);
	background: #fef2f2;
	color: #b91c1c;
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	font-weight: 700;
	font-size: 13.5px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border: 1px solid rgba(185, 28, 28, 0.2);
	margin-bottom: 16px;
}

.age-modal__dialog h2 {
	font-size: 26px;
	margin-bottom: 14px;
	color: var(--ink-primary);
}

.age-modal__dialog p {
	font-size: 16px;
	color: var(--ink-secondary);
	margin-bottom: 24px;
	line-height: 1.6;
}

.age-modal__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}


.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: var(--z-cookie);
	background: var(--bg-canvas);
	border-top: 2px solid var(--accent-gold);
	color: #ffffff;
	padding: 18px 0;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner__in {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.cookie-banner p {
	font-size: 14.5px;
	color: #cbd5e1;
	max-width: 820px;
	line-height: 1.5;
	margin: 0;
}

.cookie-banner p strong {
	color: #ffffff;
	display: block;
	margin-bottom: 4px;
}

.cookie-banner a {
	color: var(--accent-gold);
	text-decoration: underline;
}

.cookie-banner__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}


.chat-widget {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: var(--z-chat);
}

.chat-toggle {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--accent-blue);
	color: #ffffff;
	border: 2px solid #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: var(--shadow-lg);
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.chat-toggle:hover {
	transform: scale(1.06);
	background: var(--accent-blue-hover);
}

.chat-toggle svg {
	width: 26px;
	height: 26px;
}

.chat-panel {
	position: absolute;
	bottom: 72px;
	right: 0;
	width: 360px;
	max-width: calc(100vw - 32px);
	height: 480px;
	background: #ffffff;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-lg);
	display: none;
	flex-direction: column;
	overflow: hidden;
}

.chat-widget.is-open .chat-panel {
	display: flex;
}

.chat-header {
	background: var(--bg-canvas);
	color: #ffffff;
	padding: 14px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.chat-header__title {
	display: flex;
	align-items: center;
	gap: 10px;
}

.chat-header__title img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
}

.chat-header__title b {
	font-family: 'Familjen Grotesk', system-ui, sans-serif;
	display: block;
	font-size: 15px;
}

.chat-header__title span {
	font-size: 12px;
	color: var(--accent-gold);
}

.chat-close {
	background: none;
	border: 0;
	color: #cbd5e1;
	cursor: pointer;
	padding: 4px;
}

.chat-close:hover {
	color: #ffffff;
}

.chat-log {
	flex: 1;
	padding: 16px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
	background: #f8fafc;
	font-size: 14.5px;
	line-height: 1.45;
}

.chat-msg {
	max-width: 82%;
	padding: 10px 14px;
	border-radius: var(--radius-md);
}

.chat-msg--bot {
	align-self: flex-start;
	background: #ffffff;
	border: 1px solid var(--border);
	color: var(--ink-primary);
	border-bottom-left-radius: 2px;
}

.chat-msg--user {
	align-self: flex-end;
	background: var(--accent-blue);
	color: #ffffff;
	border-bottom-right-radius: 2px;
}

.chat-form {
	padding: 12px;
	background: #ffffff;
	border-top: 1px solid var(--border);
	display: flex;
	gap: 8px;
}

.chat-form input {
	flex: 1;
	padding: 10px 14px;
	border: 1px solid var(--border);
	border-radius: var(--radius-pill);
	font-size: 14px;
}

.chat-form input:focus {
	outline: none;
	border-color: var(--accent-blue);
}

.chat-form button {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--accent-blue);
	color: #ffffff;
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.chat-form button:hover {
	background: var(--accent-blue-hover);
}


.redirect-body {
	margin: 0;
	background: var(--bg-canvas);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	text-align: center;
	padding: 20px;
}

.redirect-card {
	background: #152238;
	padding: 36px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-dark);
	max-width: 460px;
	box-shadow: var(--shadow-lg);
}

.redirect-title {
	font-size: 22px;
	margin-bottom: 12px;
	color: var(--accent-gold);
}

.redirect-desc {
	color: #cbd5e1;
	font-size: 15px;
	line-height: 1.5;
}

.redirect-link-wrap {
	margin-top: 20px;
}

.redirect-link-wrap a {
	color: var(--accent-blue);
	text-decoration: underline;
}


@media (max-width: 1060px) {
	.dev-row {
		grid-template-columns: 120px minmax(0, 1fr) 130px 170px;
		gap: 18px;
		padding: 20px;
	}
	.lead-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 860px) {
	.hero__in {
		grid-template-columns: 1fr;
		gap: 18px;
		margin-bottom: 24px;
	}
	.hero__art {
		order: -1;
		max-height: 190px;
		width: 100%;
	}
	.hero__lead {
		font-size: 15px;
		margin-bottom: 14px;
	}
	.hero__meta {
		gap: 10px 24px;
		padding-top: 12px;
	}
	.meta-num {
		font-size: 20px;
	}

	
	.dev-row {
		display: grid;
		grid-template-columns: 1fr auto;
		grid-template-areas:
			"identity score"
			"main score"
			"cta cta";
		gap: 10px;
		padding: 16px 18px;
	}

	.dev-row__identity {
		grid-area: identity;
		gap: 10px;
	}

	.rank-tag {
		width: 32px;
		height: 32px;
		font-size: 14px;
	}

	.dev-row__logo {
		width: 44px;
		height: 44px;
		padding: 6px;
	}

	.dev-row__main {
		grid-area: main;
	}

	.dev-row__head {
		margin-bottom: 0;
		gap: 8px;
	}

	.dev-row__name {
		font-size: 18px;
	}

	
	.dev-row__tagline {
		display: none;
	}

	.dev-row__points {
		display: none;
	}

	.dev-row__score {
		grid-area: score;
		border-left: 0;
		border-top: 0;
		padding: 0;
		align-items: flex-end;
		text-align: right;
		justify-content: center;
	}

	.score-val {
		font-size: 22px;
		margin-bottom: 2px;
	}

	.score-den {
		font-size: 13px;
	}

	.score-lbl {
		display: none;
	}

	.dev-row__cta {
		grid-area: cta;
		flex-direction: row;
		gap: 8px;
		margin-top: 6px;
	}

	.dev-row__cta .btn {
		flex: 1;
		padding: 10px 14px;
		font-size: 14px;
	}

	
	.types-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.type-card img {
		height: 120px;
	}

	.type-card__body {
		padding: 12px 14px;
	}

	.type-card__badge {
		font-size: 11px;
		padding: 2px 6px;
		margin-bottom: 6px;
	}

	.type-card__body h3 {
		font-size: 15px;
		margin-bottom: 6px;
	}

	.type-card__body p {
		font-size: 13px;
		line-height: 1.4;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.foot__grid {
		grid-template-columns: 1fr;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
	.cost-banner-img {
		max-height: 180px;
		object-fit: cover;
		margin-bottom: 20px;
		border-radius: var(--radius-md);
	}
}

@media (max-width: 1200px) {
	.burger {
		display: block;
	}
	.site-nav {
		position: fixed;
		top: var(--head-h);
		left: 0;
		right: 0;
		background: var(--bg-canvas);
		border-bottom: 1px solid var(--border-dark);
		padding: 20px var(--gut);
		display: none;
		box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
	}
	.site-nav.is-open {
		display: block;
	}
	.site-nav ul {
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
	}
}

@media (max-width: 480px) {
	.types-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.type-card img {
		height: 105px;
	}

	.type-card__body {
		padding: 10px;
	}

	.type-card__body h3 {
		font-size: 14px;
	}

	.cost-banner-img {
		max-height: 140px;
		margin-bottom: 16px;
	}
}

