#asiakas-values-wrapper-c8e8c167 {
	position: relative;
	border-radius: 30px;
	padding: 0;
	font-family: 'Inter', system-ui, sans-serif;
	box-sizing: border-box;
	line-height: 1.5;
}

#asiakas-values-wrapper-c8e8c167 * {
	box-sizing: inherit;
}

.av-container {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 40% 1fr;
	gap: 40px;
	align-items: start;
}

.av-left-panel {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
}

.av-tabpanel {
	grid-column: 1 / 2;
	grid-row: 1 / 2;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
	pointer-events: none;
}

.av-tabpanel.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.av-tabpanel h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0 0 1.5rem 0;
	color: #fff;
	line-height: 1.2;
}

.av-tabpanel p {
	font-size: 1.1rem;
	color: #a0a0a0;
	margin: 0 0 1rem 0;
}

.av-right-panel {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.av-card {
	background: linear-gradient(135deg, rgba(26,28,27,0.5), rgba(11,12,11,0.62));
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 30px;
	padding: 30px;
	text-align: left;
	cursor: pointer;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 200px;
	outline: none;
	transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
	appearance: none;
	-webkit-appearance: none;
}

.av-card:focus-visible {
	outline: 2px solid #2fd9b0;
	outline-offset: 4px;
}

.av-card:not(.is-active):hover {
	border-color: rgba(47, 217, 176, 0.4);
	border-top-color: rgba(47, 217, 176, 0.6);
}

.av-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
}

.av-icon-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
}

.av-icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2fd9b0;
	fill: #2fd9b0;
	transition: color 0.35s ease, fill 0.35s ease;
}
.av-icon svg {
	width: 100%;
	height: 100%;
}

.av-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: #666;
	transition: color 0.35s ease;
	margin-left: auto;
}

.av-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #fff;
	margin: 0;
	line-height: 1.3;
	transition: color 0.35s ease;
}

.av-subtext {
	font-size: 0.9rem;
	color: #888;
	transition: color 0.35s ease;
	margin-top: auto;
	padding-top: 15px;
}

/* Selected State */
.av-card.is-active {
	background: linear-gradient(135deg, #0f5140, #062a20);
	border-color: rgba(47, 217, 176, 0.4);
	border-top-color: rgba(255, 255, 255, 0.25);
	transform: rotate(-2.4deg) scale(1.04);
	box-shadow: 0 15px 40px rgba(15, 81, 64, 0.6);
	z-index: 10;
}

.av-card.is-active .av-icon {
	color: #2fd9b0;
	fill: #2fd9b0;
}

.av-card.is-active .av-number {
	color: #2fd9b0;
}

.av-card.is-active .av-title {
	color: #f0f0f0;
}

.av-card.is-active .av-subtext {
	color: #aae0d1;
}

@media (prefers-reduced-motion: reduce) {
	.av-card, .av-tabpanel, .av-icon, .av-number, .av-title, .av-subtext {
		transition: none !important;
	}
	.av-card.is-active {
		transform: none;
	}
}

@media (max-width: 820px) {
	.av-container {
		grid-template-columns: 1fr;
	}
	.av-right-panel {
		order: -1; /* Cards first */
	}
	.av-tabpanel h2 {
		font-size: 2rem;
	}
}

@media (max-width: 460px) {
	.av-right-panel {
		grid-template-columns: 1fr;
	}
	.av-card.is-active {
		transform: rotate(-1.5deg) scale(1.02);
	}
}