/* ==========================================================================
   Why Cybronet — stacked feature rows with hover/active reveal
   --brand-blue / --font-manrope imported from style.css :root, not redefined
   ========================================================================== */
.why-cybronet {
	position: relative;
	background: #F2F6FB;
	padding: 96px 0;
	overflow: hidden;
	font-family: var(--font-manrope);
}

.why-cybronet__doodle {
	position: absolute;
	width: 220px;
	height: 220px;
	fill: none;
	stroke: #d5dfeb;
	stroke-width: 1.5;
	stroke-linecap: round;
	opacity: .6;
	pointer-events: none;
	z-index: 0;
}
.why-cybronet__doodle--tr { top: 24px; right: 24px; }
.why-cybronet__doodle--bl { bottom: 24px; left: 24px; }

.why-cybronet__container {
	position: relative;
	z-index: 1;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.why-cybronet__header { margin-bottom: 48px; max-width: 640px; }
.why-cybronet__eyebrow {
	display: block;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--brand-blue);
	margin-bottom: 16px;
}
.why-cybronet__heading {
	font-size: clamp(32px, 3vw, 44px);
	font-weight: 800;
	line-height: 1.15;
	color: #2b2b33;
	margin: 0;
}

/* ==========================================================================
   Rows
   ========================================================================== */
.why-cybronet__rows {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.why-cybronet__row {
	display: grid;
	grid-template-columns: 64px 300px 1fr auto auto;
	align-items: center;
	column-gap: 28px;
	padding: 26px 32px;
	min-height: 104px;
	background: #fff;
	border: 2px solid transparent;
	border-radius: 16px;
	box-shadow: 0 2px 8px rgba(20, 40, 80, .05);
	text-decoration: none;
	transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.why-cybronet__row:hover,
.why-cybronet__row:focus-visible,
.why-cybronet__row.is-active {
	border-color: var(--brand-blue);
	background: #eef5ff;
	box-shadow: 0 8px 24px rgba(30, 94, 255, .12);
	outline: none;
}

.why-cybronet__icon {
	width: 52px;
	height: 52px;
	color: var(--brand-blue);
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.why-cybronet__title {
	font-size: 20px;
	font-weight: 700;
	color: var(--brand-blue);
	margin: 0;
}

.why-cybronet__desc {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #3d4654;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.why-cybronet__desc strong { color: var(--brand-blue); font-weight: 700; }

.why-cybronet__arrow {
	width: 22px;
	height: 22px;
	color: #1a1a2e;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: 0;
	transform: translateX(-8px);
	transition: opacity .25s ease, transform .25s ease;
}

.why-cybronet__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--brand-blue);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	padding: 12px 26px;
	border-radius: 9999px;
	white-space: nowrap;
	opacity: 0;
	transform: translateX(-8px);
	transition: opacity .25s ease, transform .25s ease;
}

.why-cybronet__row:hover .why-cybronet__arrow,
.why-cybronet__row:focus-visible .why-cybronet__arrow,
.why-cybronet__row.is-active .why-cybronet__arrow,
.why-cybronet__row:hover .why-cybronet__cta,
.why-cybronet__row:focus-visible .why-cybronet__cta,
.why-cybronet__row.is-active .why-cybronet__cta {
	opacity: 1;
	transform: translateX(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.why-cybronet__row {
		grid-template-columns: 56px 1fr auto;
		padding: 22px 24px;
		min-height: auto;
	}
	.why-cybronet__icon { grid-column: 1; grid-row: 1 / span 2; width: 44px; height: 44px; }
	.why-cybronet__title { grid-column: 2; grid-row: 1; }
	.why-cybronet__desc { grid-column: 2; grid-row: 2; margin-top: 4px; -webkit-line-clamp: 3; }
	.why-cybronet__arrow { display: none; }
	.why-cybronet__cta { grid-column: 3; grid-row: 1 / span 2; }
}

@media (max-width: 640px) {
	.why-cybronet { padding: 64px 0; }
	.why-cybronet__row {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		padding: 28px 20px;
		row-gap: 10px;
	}
	.why-cybronet__icon { grid-column: 1; grid-row: 1; }
	.why-cybronet__title { grid-column: 1; grid-row: 2; }
	.why-cybronet__desc { grid-column: 1; grid-row: 3; -webkit-line-clamp: unset; }
	.why-cybronet__cta { grid-column: 1; grid-row: 4; width: 100%; }
}

/* Touch devices have no hover — reveal is always visible */
@media (hover: none) {
	.why-cybronet__cta,
	.why-cybronet__arrow {
		opacity: 1;
		transform: none;
	}
}

/* Heading readability — +2px, desktop only. */
@media (min-width: 1024px) {
	.why-cybronet__heading { font-size: clamp(34px, calc(3vw + 2px), 46px); }
	.why-cybronet__title { font-size: 22px; }
}
