* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Inter", "Segoe UI", Arial, sans-serif;
	background: #f3f4f6;
	color: #111827;
	line-height: 1.6;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

header {
	background: rgba(255, 255, 255, 0.95);
	border-bottom: 1px solid #e6e7eb;
	padding: 16px 0;
	position: sticky;
	top: 0;
	z-index: 10;
	backdrop-filter: blur(12px);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
}

.brand .logo {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: linear-gradient(135deg, #4f46e5, #7c3aed);
	display: inline-block;
}

.hero {
	padding: 64px 0 40px 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 24px;
	align-items: center;
	animation: fadeUp 0.6s ease-out;
}

.hero h1 {
	font-size: 40px;
	margin: 0 0 12px 0;
	line-height: 1.2;
}

.hero p {
	margin: 0;
	color: #475569;
}

.hero-card {
	background: linear-gradient(135deg, #111827, #4f46e5);
	color: #fff;
	border-radius: 20px;
	padding: 22px;
	box-shadow: 0 26px 40px -28px rgba(17, 24, 39, 0.6);
}

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

.hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 16px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 22px;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	font-weight: 700;
	text-decoration: none;
	font-size: 15px;
}

.btn-primary {
	background: #111827;
	color: #fff;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 20px -12px rgba(17, 24, 39, 0.5);
}

.btn-light {
	background: #ffffff;
	color: #4f46e5;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-light:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 20px -12px rgba(79, 70, 229, 0.35);
}

.pill-list {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 12px;
}

.pill {
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	font-size: 12px;
}

.filters {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	padding: 18px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
	margin: 20px 0 32px 0;
	box-shadow: 0 16px 30px -24px rgba(15, 23, 42, 0.4);
	animation: fadeUp 0.7s ease-out;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 12px;
	margin-top: 16px;
}

.hero-stat {
	background: rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	padding: 10px 12px;
	font-size: 13px;
}

.filters label {
	font-size: 12px;
	color: #64748b;
	margin-bottom: 6px;
	display: block;
}

.filters input {
	width: 100%;
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid #e2e8f0;
}

.filters input:focus {
	outline: none;
	border-color: #111827;
	box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.15);
}

.filters button {
	padding: 14px 18px;
	border-radius: 12px;
	background: #111827;
	color: #fff;
	border: none;
	cursor: pointer;
	font-weight: 700;
	font-size: 15px;
}

.section-title {
	margin: 36px 0 16px 0;
	font-size: 22px;
}

.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
}

.card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 16px;
	box-shadow: 0 18px 30px -26px rgba(15, 23, 42, 0.4);
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 36px -28px rgba(15, 23, 42, 0.45);
}
.card-image {
	height: 220px;
	border-radius: 16px;
	background: #f3f4f6;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4f46e5;
	font-weight: 600;
	overflow: hidden;
}

.plan-3d {
	transform-style: preserve-3d;
	transition: transform 0.2s ease;
	will-change: transform;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-image svg {
	width: 100%;
	height: 100%;
}

.card-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.plan-switch {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	background: #f3f4f6;
	border-radius: 999px;
	padding: 6px;
}

.plan-switch button {
	border: none;
	background: transparent;
	padding: 10px 16px;
	border-radius: 999px;
	cursor: pointer;
	font-weight: 700;
	color: #111827;
	font-size: 14px;
}

.plan-switch button.active {
	background: #111827;
	color: #fff;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	margin-top: 16px;
}

.feature {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 16px;
	box-shadow: 0 18px 30px -26px rgba(15, 23, 42, 0.4);
}

.feature h4 {
	margin: 0 0 8px 0;
}

.cta {
	margin-top: 32px;
	padding: 24px;
	background: #ffffff;
	border-radius: 20px;
	border: 1px solid #e5e7eb;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
	align-items: center;
}

.cta strong {
	font-size: 18px;
}

.map-link {
	color: #4f46e5;
	text-decoration: none;
	font-weight: 600;
}

.sticky-contact {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #111827;
	color: #fff;
	padding: 16px 22px;
	border-radius: 999px;
	box-shadow: 0 18px 30px -20px rgba(17, 24, 39, 0.6);
	text-decoration: none;
	font-weight: 700;
	font-size: 15px;
}

.plan-panel {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 20px;
	padding: 16px;
	box-shadow: 0 18px 30px -26px rgba(15, 23, 42, 0.4);
}

.plan-panel-header {
	flex-wrap: wrap;
}

.card-actions a {
	flex: 1;
}

.card-actions {
	gap: 12px;
}

.plan-switch {
	flex-wrap: wrap;
	justify-content: flex-start;
}

.hero-card {
	display: grid;
	gap: 8px;
}

.hero-actions .btn {
	min-width: 180px;
}

@media (max-width: 768px) {
	.hero {
		padding: 40px 0 24px 0;
	}
	.hero h1 {
		font-size: 30px;
	}
	.hero-actions .btn {
		min-width: unset;
		width: 100%;
	}
	.filters {
		grid-template-columns: 1fr;
	}
}

.plan-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.plan-title {
	font-size: 18px;
	font-weight: 600;
}

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

.card .meta {
	font-size: 13px;
	color: #64748b;
}

.badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 999px;
	background: #eef2ff;
	color: #4f46e5;
	font-size: 12px;
	font-weight: 600;
}

.empty {
	padding: 30px;
	text-align: center;
	color: #64748b;
}

footer {
	margin-top: 40px;
	padding: 24px 0;
	color: #94a3b8;
	font-size: 14px;
}
