.aigf-compare {
	--aigf-pink: #ff4d93;
	--aigf-pink-dark: #e9347d;
	--aigf-pink-glow: rgba(255, 77, 147, 0.22);
	--aigf-card: #0b0b0e;
	--aigf-card-soft: #121217;
	--aigf-line: rgba(255, 255, 255, 0.1);
	--aigf-text: #ffffff;
	--aigf-muted: #aaa8b1;
	color: var(--aigf-text);
	font-family: inherit;
	font-size: 15px;
	line-height: 1.5;
	margin: 30px 0;
	max-width: 100%;
	background: transparent !important;
}

.aigf-compare *,
.aigf-compare *::before,
.aigf-compare *::after {
	box-sizing: border-box;
	font-family: inherit !important;
}

.aigf-compare__grid {
	background: transparent !important;
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(var(--aigf-columns), minmax(0, 1fr));
	padding-top: 38px;
	width: 100%;
}

.aigf-compare__card {
	align-items: stretch;
	background:
		radial-gradient(circle at 50% 0%, rgba(255, 77, 147, 0.1), transparent 32%),
		var(--aigf-card);
	border: 1px solid var(--aigf-line);
	border-radius: 22px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: visible;
	padding: 28px 22px 22px;
	position: relative;
	text-align: center;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.aigf-compare__card > *,
.aigf-compare__header > *,
.aigf-compare__details > *,
.aigf-compare__item > *,
.aigf-compare__actions > * {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.aigf-compare__card.is-winner {
	border-color: var(--aigf-pink);
	box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34), 0 0 0 1px var(--aigf-pink), 0 0 34px var(--aigf-pink-glow);
	transform: translateY(-26px) scale(1.025);
	z-index: 2;
}

.aigf-compare__card.is-highlighted {
	border-color: var(--aigf-pink);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28), 0 0 0 1px var(--aigf-pink), 0 0 28px var(--aigf-pink-glow);
}

.aigf-compare__choice-badge {
	background: var(--aigf-pink);
	border-radius: 0 0 10px 10px;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	left: 50%;
	letter-spacing: 0.07em;
	padding: 6px 12px;
	position: absolute;
	text-transform: uppercase;
	top: 0;
	transform: translateX(-50%);
	white-space: nowrap;
}

.aigf-compare__winner-badge {
	background: var(--aigf-pink);
	border-radius: 999px;
	box-shadow: 0 7px 20px rgba(255, 77, 147, 0.3);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	left: 50%;
	letter-spacing: 0.075em;
	padding: 7px 14px;
	position: absolute;
	text-transform: uppercase;
	top: 0;
	transform: translate(-50%, -50%);
	white-space: nowrap;
	z-index: 3;
}

.aigf-compare__header {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 0 0 22px;
}

.aigf-compare__card.is-highlighted .aigf-compare__header {
	padding-top: 10px;
}

.aigf-compare__logo-wrap {
	align-items: center;
	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	display: flex;
	height: 78px;
	justify-content: center;
	margin: 0 auto 14px;
	overflow: hidden;
	padding: 10px;
	width: 78px;
}

.aigf-compare__logo {
	display: block;
	height: 100%;
	margin: 0;
	max-height: 58px;
	max-width: 58px;
	object-fit: contain;
	width: 100%;
}

.aigf-compare__logo-fallback {
	background: linear-gradient(135deg, var(--aigf-pink), #8a3ffc);
	border: 0;
	color: #fff;
	font-size: 31px;
	font-weight: 800;
}

.aigf-compare__brand-name {
	color: #fff;
	font: inherit;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 0;
	padding: 0;
}

.aigf-compare__details {
	border-top: 1px solid var(--aigf-line);
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}

.aigf-compare__item {
	align-items: center;
	border-bottom: 1px solid var(--aigf-line);
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 88px;
	padding: 16px 4px;
}

.aigf-compare__item--highlights {
	min-height: 132px;
}

.aigf-compare__item-label {
	color: var(--aigf-muted);
	display: block;
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.075em;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.aigf-compare__item-value {
	align-items: center;
	color: #f5f4f7;
	display: flex;
	flex-direction: column;
	font-weight: 650;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	text-align: center;
	width: 100%;
}

.aigf-compare__score {
	color: #fff;
	display: block;
	font-size: 27px;
	font-weight: 850;
	letter-spacing: -0.04em;
	line-height: 1.1;
}

.aigf-compare__best-label {
	color: var(--aigf-pink);
	display: block;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.06em;
	margin-top: 5px;
	text-transform: uppercase;
}

.aigf-compare__boolean {
	align-items: center;
	display: inline-flex;
	font-weight: 750;
	gap: 7px;
}

.aigf-compare__boolean > span {
	align-items: center;
	border-radius: 50%;
	display: inline-flex;
	font-size: 12px;
	height: 23px;
	justify-content: center;
	width: 23px;
}

.aigf-compare__boolean.is-yes {
	color: #fff;
}

.aigf-compare__boolean.is-yes > span {
	background: var(--aigf-pink);
	color: #fff;
}

.aigf-compare__boolean.is-no {
	color: var(--aigf-muted);
}

.aigf-compare__boolean.is-no > span {
	background: rgba(255, 255, 255, 0.08);
	color: #ccc9d0;
}

.aigf-compare__pill {
	background: rgba(255, 77, 147, 0.12);
	border: 1px solid rgba(255, 77, 147, 0.38);
	border-radius: 999px;
	color: #ff83b4;
	display: inline-block;
	font-size: 13px;
	font-weight: 750;
	padding: 6px 11px;
}

.aigf-compare__platforms {
	color: #e4e1e7;
	font-weight: 650;
}

.aigf-compare__highlights {
	display: inline-flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	max-width: 240px;
	padding: 0;
	text-align: center;
	width: 100%;
}

.aigf-compare__highlights li {
	margin: 0 0 7px;
	padding: 0;
}

.aigf-compare__highlights li:last-child {
	margin-bottom: 0;
}

.aigf-compare__highlights li::before {
	color: var(--aigf-pink);
	content: "✓";
	font-weight: 900;
	margin-right: 7px;
}

.aigf-compare__empty {
	color: #66646c;
}

.aigf-compare__actions {
	padding-top: 20px;
	text-align: center;
}

.aigf-compare__cta {
	background: var(--aigf-pink);
	border: 1px solid var(--aigf-pink);
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(255, 77, 147, 0.22);
	color: #fff !important;
	display: block;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 auto;
	padding: 13px 14px;
	text-align: center;
	text-decoration: none !important;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
	width: 100%;
}

.aigf-compare__cta:hover,
.aigf-compare__cta:focus-visible {
	background: var(--aigf-pink-dark);
	border-color: var(--aigf-pink-dark);
	box-shadow: 0 10px 25px rgba(255, 77, 147, 0.32);
	color: #fff !important;
	transform: translateY(-2px);
}

.aigf-compare__review {
	color: #c3c0c8 !important;
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	margin-top: 11px;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.aigf-compare__review:hover,
.aigf-compare__review:focus-visible {
	color: var(--aigf-pink) !important;
}

.aigf-compare__notice {
	background: #fff7da;
	border-left: 4px solid #d9a600;
	color: #4c3b00;
	padding: 12px 14px;
}

@media (max-width: 980px) {
	.aigf-compare__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.aigf-compare__card.is-winner {
		transform: translateY(-18px) scale(1.015);
	}
}

@media (max-width: 640px) {
	.aigf-compare {
		font-size: 14px;
		margin: 22px 0;
	}

	.aigf-compare__grid {
		grid-template-columns: minmax(0, 1fr);
		padding-top: 12px;
	}

	.aigf-compare__card.is-winner {
		order: -1;
		transform: none;
	}

	.aigf-compare__card {
		border-radius: 18px;
		padding: 26px 18px 20px;
	}

	.aigf-compare__item {
		min-height: 0;
		padding: 14px 4px;
	}

	.aigf-compare__item--highlights {
		min-height: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.aigf-compare__cta {
		transition: none;
	}
}
