
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
	--pink: #ff6b9d;
	--pink-light: #ff8ab5;
	--rose: #ffd6e4;
	--ink: #1f1f2b;
	--muted: #6b6b7b;
	--card: #ffffff;
	--shadow: 0 18px 45px rgba(255, 107, 157, 0.18);
	--shadow-soft: 0 10px 25px rgba(31, 31, 43, 0.08);
	--radius: 22px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Inter", "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
	color: var(--ink);
	background: #fff5f9;
	line-height: 1.6;
}

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

.hero {
	background: linear-gradient(135deg, var(--pink), var(--pink-light));
	padding: 20px 6vw 40px;
	color: #fff;
	box-shadow: var(--shadow);
	border-bottom-left-radius: 40px;
	border-bottom-right-radius: 40px;
}

.topbar {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
}

.topbar-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	letter-spacing: 0.2px;
}

.brand-badge {
	width: 36px;
	height: 36px;
}

.brand-text {
	font-size: 16px;
	font-weight: 700;
}

.brand-tagline {
	display: block;
	font-size: 12px;
	font-weight: 500;
	opacity: 0.85;
}

.nav-links {
	display: flex;
	gap: 16px;
	font-size: 13px;
	font-weight: 600;
}

.nav-links a {
	background: rgba(255, 255, 255, 0.22);
	color: #fff;
	padding: 8px 16px;
	border-radius: 999px;
	box-shadow: 0 8px 18px rgba(31, 31, 43, 0.12);
	transition: transform 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
	background: rgba(255, 255, 255, 0.32);
	transform: translateY(-1px);
}


.hero-content {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 20px;
	align-items: center;
	margin-top: 16px;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 12px;
	font-weight: 600;
	opacity: 0.85;
	margin: 0 0 12px;
}

.hero-copy h1 {
	font-size: clamp(32px, 4vw, 54px);
	line-height: 1.1;
	margin: 0 0 12px;
}

.tagline {
	font-size: 18px;
	margin: 0 0 20px;
	max-width: 560px;
	color: rgba(255, 255, 255, 0.95);
}

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

.hero-bottom .tagline {
	margin: 0;
	flex: 1 1 420px;
}

.filters {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.hero-filters {
	margin-top: 0;
	justify-content: flex-start;
	gap: 12px;
	align-items: flex-end;
}

.filter-icon {
	width: 32px;
	height: 32px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 14px rgba(31, 31, 43, 0.12);
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><path d='M3 5h14M6 10h8M8 15h4' stroke='white' stroke-width='2' stroke-linecap='round'/></svg>");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 16px;
}

.hero-filters .filter select {
	min-width: 160px;
	padding: 8px 12px;
	font-size: 13px;
}

.filter {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: rgba(255, 255, 255, 0.85);
}

.filter select {
	min-width: 170px;
	padding: 12px 16px;
	border-radius: 999px;
	border: none;
	font-size: 14px;
	color: var(--ink);
	background: #fff;
	box-shadow: var(--shadow-soft);
	appearance: none;
}

.filter-select {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><path d='M5 7l5 5 5-5' stroke='%23707080' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 16px;
	padding-right: 42px;
	border: 1px solid rgba(255, 255, 255, 0.6);
}

.rounded-dropdown {
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	box-shadow: 0 6px 16px rgba(31, 31, 43, 0.12);
}

.page {
	padding: 56px 6vw 96px;
}

.page-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.section-header {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 32px;
}

.category-title {
	font-weight: 700;
}

.section-header h2 {
	font-size: 28px;
	margin: 0;
}

.section-header p {
	margin: 0;
	color: var(--muted);
}

.section-group {
	margin-top: 24px;
}

.section-group-header {
	margin: 12px 0 8px;
}

.section-pill {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 107, 157, 0.12);
	color: var(--pink);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.1px;
	text-transform: uppercase;
}

.tool-card {
	background: var(--card);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(31, 31, 43, 0.12);
}

.card-link {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 24px;
	height: 100%;
}

.comparison-grid {
	display: grid;
	gap: 20px;
}

.comparison-row {
	display: grid;
	grid-template-columns: minmax(0, 0.35fr) minmax(0, 1.65fr);
	gap: 20px;
	align-items: stretch;
}

.us-card {
	background: #f5f5f7;
	color: #5f5f6d;
	border: 1px solid #ececf1;
	filter: grayscale(1);
	box-shadow: none;
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.us-card:hover {
	transform: none;
	box-shadow: none;
}

.us-card h3 {
	margin: 4px 0 8px;
	font-size: 20px;
}

.card-kicker {
	font-size: 11px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: #8a8a98;
}

.us-tool-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 800;
	line-height: 1.2;
}


.us-tool-list .dot {
	opacity: 0.5;
}

.eu-card {
	border: 1px solid #ffe1eb;
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	height: 100%;
}

.eu-card h3 {
	margin: 0;
	font-size: 18px;
}

.eu-card-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}

.subcategory-row {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 12px;
	align-items: stretch;
	margin-bottom: 18px;
}

.subcategory-label {
	background: #fff0f5;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pink);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 8px 0;
}

.subcategory-label span {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
}

.eu-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(255, 107, 157, 0.18);
}

.card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.card-logo {
	width: 36px;
	height: 36px;
	border-radius: 16px;
	object-fit: cover;
}

.card-logo.favicon-logo {
	object-fit: contain;
	padding: 6px;
	background: #ffffff;
	border: 1px solid #ececf1;
}

.card-logo.placeholder {
	display: grid;
	place-items: center;
	background: #f0f2f6;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'><circle cx='24' cy='24' r='16' stroke='%23909aaa' stroke-width='2'/><path d='M8 24h32' stroke='%23909aaa' stroke-width='2'/><path d='M24 8c4.5 4.5 7 10.5 7 16s-2.5 11.5-7 16c-4.5-4.5-7-10.5-7-16s2.5-11.5 7-16z' stroke='%23909aaa' stroke-width='2'/></svg>");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 32px;
}

.flag {
	font-size: 18px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #ffe1eb;
	box-shadow: inset 0 0 0 1px rgba(255, 107, 157, 0.18);
}

.country-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 2px 8px 2px 2px;
	border-radius: 999px;
	background: #fff0f5;
	box-shadow: inset 0 0 0 1px rgba(255, 107, 157, 0.18);
}

.country-name {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2px;
	color: var(--pink);
	white-space: nowrap;
}

.card-tagline {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
}

.country-line {
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2px;
	color: #b34f73;
}

.card-meta {
	display: flex;
	gap: 10px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--muted);
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.eu-card .tags {
	display: none;
}

.tag {
	background: #fff0f5;
	color: var(--pink);
	border-radius: 999px;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 600;
}

.utility-section {
	margin-top: 48px;
	padding: 24px 0;
	border-top: 1px solid #f1e6eb;
}

.utility-section h2 {
	margin: 0 0 8px;
}

.utility-section p {
	margin: 0;
	color: var(--muted);
}

.site-footer {
	padding: 28px 6vw 40px;
	color: var(--muted);
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	border-top: 1px solid #f1e6eb;
	padding-top: 18px;
	font-size: 13px;
}

.footer-inner a {
	color: var(--pink);
	font-weight: 600;
}

@media (max-width: 960px) {
		.hero-bottom {
			flex-direction: column;
			align-items: flex-start;
		}

		.hero-bottom .tagline {
			margin-bottom: 8px;
		}
	.hero-content {
		grid-template-columns: 1fr;
	}

	.topbar-actions {
		align-items: flex-start;
	}

	.topbar-filters .filter {
		align-items: flex-start;
	}

	.comparison-row {
		grid-template-columns: 1fr;
	}

	.subcategory-row {
		grid-template-columns: 1fr;
	}

	.subcategory-label {
		width: fit-content;
		padding: 6px 12px;
	}

	.subcategory-label span {
		writing-mode: horizontal-tb;
		transform: none;
	}
}

@media (max-width: 680px) {
	.us-tool-list {
		font-size: 18px;
	}

	.topbar {
		flex-direction: column;
		align-items: flex-start;
	}

	.nav-links {
		flex-wrap: wrap;
		gap: 12px;
	}

	.filters {
		flex-direction: column;
	}

	.filter select {
		width: 100%;
	}

	.footer-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}


