/*
 * PflichtRadar features section styles.
 */

.features-section {
	background: #f4f7fb;
}

.features-section p {
	margin: 0;
}

.pr-features-head {
	max-width: 720px;
	margin-bottom: clamp(2.5rem, 5vw, 3.8rem);
}

.pr-features-eyebrow .elementor-heading-title {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.pr-features-eyebrow .elementor-heading-title::before {
	width: 14px;
	height: 2px;
	background: #19c4d6;
	content: "";
}

.pr-features-title .elementor-heading-title {
	color: #0b1f3a !important;
	font-family: "Poppins", sans-serif;
	font-size: clamp(2rem, 3.5vw, 2.85rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.18;
}

.pr-features-lead p {
	margin: 0.85rem 0 0;
	color: #4b6180;
	font-size: 1.05rem;
	line-height: 1.6;
}

.bento-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.4rem;
}

.bento-card {
	position: relative;
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: 2rem;
	border: 1px solid #dce5f0;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 2px 10px rgba(11, 31, 58, 0.04), 0 1px 3px rgba(11, 31, 58, 0.03);
	overflow: hidden;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.bento-card:hover {
	border-color: #145bd7;
	box-shadow: 0 10px 30px -5px rgba(11, 31, 58, 0.08), 0 2px 6px -1px rgba(11, 31, 58, 0.04);
	transform: translateY(-2px);
}

.bento-card.span-2 {
	grid-column: span 2;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafd 100%);
}

.bento-badge-icon {
	display: flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.2rem;
	border: 1px solid #dce5f0;
	border-radius: 8px;
	background: #edf3fa;
	color: #145bd7;
}

.bento-badge-icon>div {
	display: flex;
}

.bento-badge-icon img {
	width: 22px;
	height: 22px;
}

body .bento-card h3,
body .bento-card .elementor-heading-title {
	margin: 0 0 0.55rem;
	color: #0b1f3a !important;
	font-family: "Poppins", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.25;
}

.bento-card>.elementor-widget-text-editor p {
	margin: 0;
	color: #4b6180;
	font-size: 0.94rem;
	line-height: 1.58;
}

.bento-interactive-scan {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.8rem;
	margin-top: 1.4rem;
	padding: 1rem;
	border: 1px solid #dce5f0;
	border-radius: 8px;
	background: #edf3fa;
}

.scan-terminal-col {
	padding: 0.75rem 0.9rem;
	border: 1px solid #dce5f0;
	border-radius: 6px;
	background: #ffffff;
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.74rem;
}

.scan-terminal-col .lbl {
	margin-bottom: 0.35rem;
	color: #4b6180;
	font-size: 0.68rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.scan-terminal-col .val {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	color: #0b1f3a;
	font-weight: 500;
}

.pulse-teal {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #19c4d6;
}

.bento-control-preview {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.4rem;
	padding: 1rem;
	border: 1px solid #dce5f0;
	border-radius: 8px;
	background: #ffffff;
}

.bento-control-text strong {
	display: block;
	margin-bottom: 0.2rem;
	color: #0b1f3a;
	font-family: "Poppins", sans-serif;
	font-size: 0.84rem;
	font-weight: 600;
}

.bento-control-text span {
	color: #4b6180;
	font-family: "Poppins", sans-serif;
	font-size: 0.78rem;
}

.control-toggle-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.45rem 0.85rem;
	border: 1px solid #dce5f0;
	border-radius: 8px;
	background: #edf3fa;
	color: #145bd7;
	font-family: "Poppins", sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	white-space: nowrap;
}

.control-toggle-btn img {
	width: 14px;
	height: 14px;
}

@media (max-width: 900px) {
	.bento-grid {
		grid-template-columns: 1fr;
	}

	.bento-card.span-2 {
		grid-column: span 1;
	}
}

@media (max-width: 640px) {
	.bento-interactive-scan {
		grid-template-columns: 1fr;
	}

	.bento-control-preview {
		align-items: flex-start;
		flex-direction: column;
	}
}