/**
 * Hero quantum link + master slide — v5.5.0
 */

/* ── Scene grid: nodes left/right, badge centered ── */
.hero--showcase .hero-quantum-scene {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
	grid-template-rows: 1fr;
	align-items: end;
	gap: 0;
	min-height: 154px;
	padding: 0 2px 2px;
	overflow: visible;
}

/* ── SVG layer: edge-to-edge bridge (immune to grid compression) ── */
.hero--showcase .hero-quantum-link-layer {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 5;
}

.hero--showcase .hero-quantum-link-layer .wiz-quantum-link-svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.hero--showcase .hero-quantum-anchor--pop {
	grid-column: 1;
	grid-row: 1;
	justify-self: start;
	align-self: end;
	z-index: 8;
}

.hero--showcase .hero-quantum-anchor--cpe {
	grid-column: 3;
	grid-row: 1;
	justify-self: end;
	align-self: end;
	z-index: 8;
}

.hero--showcase .hero-quantum-scene .hero-radio-node {
	position: relative;
	z-index: 8;
	padding-bottom: 2px;
}

/* ── Glassmorphic throughput badge ── */
.hero--showcase .hero-quantum-scene .quantum-badge.hero-link-core {
	position: absolute;
	left: 50%;
	top: 38%;
	transform: translate(-50%, -50%);
	z-index: 10;
	margin: 0;
	min-width: 108px;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(0, 229, 255, 0.28);
	border-radius: 14px;
	box-shadow: 0 8px 32px rgba(0, 184, 212, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero--showcase .quantum-badge .hero-link-speed {
	color: #0097A7;
	font-size: 1.0625rem;
}

.hero--showcase .quantum-badge .hero-link-metric {
	color: rgba(0, 120, 140, 0.75);
}

.hero--showcase .quantum-badge.fx-core:hover {
	transform: translate(-50%, -50%) scale(1.04);
}

/* ── SVG static styles (motion via SMIL, not CSS keyframes) ── */
.quantum-los {
	stroke: rgba(148, 163, 184, 0.35);
	stroke-width: 1;
	stroke-dasharray: 4 6;
	opacity: 0.5;
}

.quantum-fresnel {
	fill: rgba(0, 229, 255, 0.02);
	stroke: rgba(0, 229, 255, 0.15);
	stroke-width: 1;
	vector-effect: non-scaling-stroke;
}

.quantum-fresnel--f2 {
	fill: rgba(0, 229, 255, 0.015);
	stroke-opacity: 0.2;
}

.quantum-fresnel--f1 {
	fill: rgba(0, 229, 255, 0.03);
	stroke-opacity: 0.28;
}

.quantum-fresnel-label {
	font-family: inherit;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	fill: rgba(0, 184, 212, 0.65);
}

.wiz-laser-rail {
	fill: none;
	stroke: rgba(0, 229, 255, 0.2);
	stroke-width: 3;
	stroke-linecap: round;
	vector-effect: non-scaling-stroke;
}

.quantum-carrier-glow {
	fill: none;
	stroke: url(#quantumCarrierGrad);
	stroke-width: 16;
	stroke-linecap: round;
	opacity: 0.16;
	vector-effect: non-scaling-stroke;
}

/* Laser track: SMIL handles stroke-dashoffset — no CSS animation */
.wiz-laser-track {
	stroke: #00E5FF;
	stroke-width: 3;
	vector-effect: non-scaling-stroke;
}

.quantum-node-focus {
	filter: drop-shadow(0 0 6px #00E5FF);
}

.quantum-packet--2 {
	opacity: 0.75;
}

/* ── Signal mode: stroke tint only (SMIL dur unchanged) ── */
.hero-diagram-block--ptmp .wiz-laser-track {
	stroke: #38bdf8;
	filter: url(#wiz-neon-glow);
}

.hero-diagram-block--shared .wiz-laser-track {
	stroke: #0ea5e9;
	filter: url(#wiz-neon-glow);
}

.hero-diagram-block--enterprise .wiz-laser-track {
	stroke: #67e8f9;
	filter: url(#wiz-neon-glow);
}

.hero--showcase .hero-diagram-block:hover .wiz-laser-track {
	stroke: #67F0FF;
}

/* ── Mobile ── */
@media (max-width: 768px) {
	.hero--showcase .hero-quantum-scene {
		min-height: 132px;
	}

	.hero--showcase .hero-quantum-scene .quantum-badge.hero-link-core {
		min-width: 92px;
		padding: 7px 10px;
		top: 36%;
	}

	.hero--showcase .quantum-badge .hero-link-speed {
		font-size: 0.9375rem;
	}

	.hero--showcase .quantum-badge .hero-link-metric {
		font-size: 0.5rem;
	}

	.quantum-fresnel-label {
		font-size: 9px;
	}
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
	.hero-quantum-link-layer .quantum-packet {
		display: none;
	}

	.hero-iot-mesh-svg .iot-mesh-packet {
		display: none;
	}
}

/* ══════════════════════════════════════════════════════════════
   IoT mesh (slide 1) + fixed tagline card · v5.5.1
   ══════════════════════════════════════════════════════════════ */

@keyframes hero-sla-pulse {
	0%,
	100% {
		opacity: 1;
		box-shadow: 0 0 6px #00E5FF, 0 0 12px rgba(0, 229, 255, 0.45);
	}
	50% {
		opacity: 0.72;
		box-shadow: 0 0 10px #00E5FF, 0 0 20px rgba(0, 229, 255, 0.65);
	}
}

/* IoT mesh — behind quantum link, visible on master slide only */
.hero--showcase .hero-iot-mesh-svg {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
	opacity: 0;
	transition: opacity 0.65s ease;
	z-index: 1;
	pointer-events: none;
}

.hero--showcase .is-slide-master .hero-iot-mesh-svg {
	opacity: 0.38;
}

.hero--showcase .wiz-quantum-link-svg {
	position: relative;
	z-index: 2;
}

.iot-mesh-link {
	fill: none;
	stroke: url(#iotMeshLineGrad);
	stroke-width: 1.2;
	stroke-dasharray: 5 7;
	vector-effect: non-scaling-stroke;
	opacity: 0.55;
}

.iot-mesh-link--aux {
	stroke: rgba(100, 116, 139, 0.35);
	stroke-dasharray: 3 8;
	opacity: 0.4;
}

.iot-mesh-node {
	fill: rgba(15, 23, 42, 0.06);
	stroke: rgba(0, 229, 255, 0.35);
	stroke-width: 1;
	vector-effect: non-scaling-stroke;
}

.iot-mesh-node--tower {
	fill: rgba(0, 229, 255, 0.12);
	stroke: rgba(0, 229, 255, 0.65);
}

.iot-mesh-node-pulse {
	fill: none;
	stroke: rgba(0, 229, 255, 0.45);
	stroke-width: 1;
	animation: hero-sla-pulse 3s ease-in-out infinite;
}

/* Master intro — 3D glass tagline · v5.5.6 */
.hero-tagline-card {
	position: relative;
	margin: 8px 0 10px;
	padding: 0 2px;
	perspective: 900px;
}

.hero-tagline-ring {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 92%;
	height: 140%;
	border: 1px solid rgba(0, 229, 255, 0.14);
	border-radius: 50%;
	transform: translate(-50%, -50%) scaleY(0.28);
	box-shadow:
		0 0 24px rgba(0, 229, 255, 0.06) inset,
		0 0 18px rgba(14, 165, 233, 0.05);
	opacity: 0.55;
	pointer-events: none;
	z-index: 0;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-tagline-ring--inner {
	width: 78%;
	height: 115%;
	border-color: rgba(255, 255, 255, 0.35);
	opacity: 0.35;
	transform: translate(-50%, -50%) scaleY(0.26);
}

.hero-tagline-card:hover .hero-tagline-ring,
.hero-tagline-card:focus-within .hero-tagline-ring {
	opacity: 0.75;
	transform: translate(-50%, -52%) scaleY(0.3);
}

@keyframes hero-tagline-border {
	0% {
		--tagline-angle: 0deg;
	}
	100% {
		--tagline-angle: 360deg;
	}
}

@keyframes hero-tagline-shimmer {
	0% {
		transform: translateX(-120%) skewX(-18deg);
		opacity: 0;
	}
	35% {
		opacity: 0.85;
	}
	100% {
		transform: translateX(220%) skewX(-18deg);
		opacity: 0;
	}
}

@keyframes hero-tagline-float {
	0%,
	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.45;
	}
	50% {
		transform: translate(-50%, -54%) scale(1.08);
		opacity: 0.72;
	}
}

.hero-tagline-card-frame {
	--tagline-angle: 0deg;
	position: relative;
	z-index: 1;
	border-radius: 14px;
	padding: 0;
	background: linear-gradient(
		155deg,
		rgba(255, 255, 255, 0.55) 0%,
		rgba(240, 249, 255, 0.22) 45%,
		rgba(255, 255, 255, 0.4) 100%
	);
	border: 1px solid rgba(255, 255, 255, 0.72);
	box-shadow:
		0 14px 34px rgba(14, 165, 233, 0.11),
		0 4px 10px rgba(15, 23, 42, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.95),
		inset 0 -1px 0 rgba(14, 165, 233, 0.08);
	transform: translateZ(0) rotateX(0.8deg);
	transition:
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.4s ease,
		border-color 0.4s ease;
	overflow: hidden;
}

.hero-tagline-bevel {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.42) 0%,
		transparent 38%,
		transparent 62%,
		rgba(14, 165, 233, 0.06) 100%
	);
	pointer-events: none;
	z-index: 2;
	opacity: 0.85;
}

.hero-tagline-card-frame::before {
	content: '';
	position: absolute;
	top: 0;
	inset-inline: 12%;
	height: 1px;
	border-radius: 999px;
	background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.55), transparent);
	opacity: 0.65;
	z-index: 3;
	pointer-events: none;
}

.hero-tagline-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 65%;
	height: 120%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
	opacity: 0;
	filter: blur(14px);
	transition: opacity 0.35s ease;
	pointer-events: none;
	z-index: 0;
}

.hero-tagline-shimmer {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		transparent 42%,
		rgba(255, 255, 255, 0.55) 50%,
		transparent 58%
	);
	opacity: 0;
	pointer-events: none;
	z-index: 2;
}

.hero-tagline-card:hover .hero-tagline-card-frame,
.hero-tagline-card:focus-within .hero-tagline-card-frame {
	transform: translateY(-2px) translateZ(8px) rotateX(0deg);
	border-color: rgba(255, 255, 255, 0.88);
	box-shadow:
		0 18px 42px rgba(14, 165, 233, 0.16),
		0 6px 14px rgba(15, 23, 42, 0.07),
		inset 0 1px 0 rgba(255, 255, 255, 1),
		inset 0 -1px 0 rgba(0, 229, 255, 0.12);
}

.hero-tagline-card:hover .hero-tagline-glow,
.hero-tagline-card:focus-within .hero-tagline-glow {
	opacity: 1;
}

.hero-tagline-card:hover .hero-tagline-shimmer,
.hero-tagline-card:focus-within .hero-tagline-shimmer {
	opacity: 0.35;
	animation: hero-tagline-shimmer 1.4s ease forwards;
}

.hero-tagline-card-inner {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 10px 14px 9px;
	border-radius: 13px;
	text-align: center;
	background:
		linear-gradient(168deg, rgba(255, 255, 255, 0.82) 0%, rgba(236, 248, 255, 0.48) 48%, rgba(255, 255, 255, 0.78) 100%);
	backdrop-filter: blur(18px) saturate(1.25);
	-webkit-backdrop-filter: blur(18px) saturate(1.25);
	border: 1px solid rgba(255, 255, 255, 0.55);
	box-shadow: inset 0 8px 20px rgba(255, 255, 255, 0.35);
	transition: background 0.4s ease, box-shadow 0.4s ease;
}

.hero-tagline-card:hover .hero-tagline-card-inner,
.hero-tagline-card:focus-within .hero-tagline-card-inner {
	background:
		linear-gradient(168deg, rgba(255, 255, 255, 0.92) 0%, rgba(224, 247, 255, 0.58) 50%, rgba(255, 255, 255, 0.9) 100%);
	box-shadow: inset 0 10px 24px rgba(255, 255, 255, 0.45);
}

.hero-tagline-card-inner::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
	opacity: 0.35;
	pointer-events: none;
	mix-blend-mode: overlay;
}

.hero-tagline-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 5px 6px;
	margin-bottom: 6px;
}

.hero-tagline-title {
	margin: 0 0 5px;
	font-family: var(--font-family);
	font-size: clamp(0.9375rem, 2.05vw, 1.125rem);
	font-weight: 900;
	line-height: 1.38;
	color: var(--color-navy);
	letter-spacing: -0.015em;
}

.hero-tagline-lead {
	margin: 0;
	font-size: clamp(0.71875rem, 1.6vw, 0.8125rem);
	font-weight: 600;
	line-height: 1.48;
	color: rgba(30, 58, 95, 0.78);
}

.hero-tagline-chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 0;
	padding: 2px 7px 2px 5px;
	border-radius: 999px;
	font-size: 0.5rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(2, 132, 199, 0.88);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(224, 242, 254, 0.75));
	border: 1px solid rgba(14, 165, 233, 0.2);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
	transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.hero-tagline-card:hover .hero-tagline-chip,
.hero-tagline-card:focus-within .hero-tagline-chip {
	border-color: rgba(14, 165, 233, 0.35);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.9),
		0 0 10px rgba(0, 229, 255, 0.1);
}

.hero-tagline-chip-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #00E5FF;
	box-shadow: 0 0 6px rgba(0, 229, 255, 0.65);
}

.hero-tagline-brand {
	display: inline-block;
	margin-inline-end: 0.2em;
	font-weight: 900;
	background: linear-gradient(120deg, #0284c7 0%, #0ea5e9 55%, #22d3ee 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-tagline-pills {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hero-tagline-pill {
	padding: 2px 7px;
	border-radius: 999px;
	font-size: 0.53125rem;
	font-weight: 600;
	color: rgba(30, 58, 95, 0.78);
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(14, 165, 233, 0.14);
	transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.hero-tagline-card:hover .hero-tagline-pill,
.hero-tagline-card:focus-within .hero-tagline-pill {
	background: rgba(255, 255, 255, 0.82);
	border-color: rgba(14, 165, 233, 0.26);
	color: rgba(2, 132, 199, 0.9);
}

.hero-tagline-card:hover .hero-tagline-pill:nth-child(1),
.hero-tagline-card:focus-within .hero-tagline-pill:nth-child(1),
.hero-tagline-card:hover .hero-tagline-pill:nth-child(2),
.hero-tagline-card:focus-within .hero-tagline-pill:nth-child(2),
.hero-tagline-card:hover .hero-tagline-pill:nth-child(3),
.hero-tagline-card:focus-within .hero-tagline-pill:nth-child(3) {
	transform: none;
	box-shadow: none;
}

@media (max-width: 768px) {
	.hero--showcase .is-slide-master .hero-iot-mesh-svg {
		opacity: 0.22;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-tagline-card:hover .hero-tagline-card-frame,
	.hero-tagline-card:focus-within .hero-tagline-card-frame {
		animation: none;
	}

	.hero-tagline-card:hover .hero-tagline-glow,
	.hero-tagline-card:focus-within .hero-tagline-glow,
	.hero-tagline-card:hover .hero-tagline-shimmer,
	.hero-tagline-card:focus-within .hero-tagline-shimmer {
		animation: none;
	}

	.hero-tagline-chip-dot {
		animation: none;
	}
}

.hero-tagline-card + .hero-tech-slider {
	margin-top: 6px;
}

/* ── Hero showcase spacing · v5.5.6 (+~4px breathing room) ── */
.hero--showcase .hero-content--showcase {
	padding: calc(var(--header-height) + 6px) 12px 10px;
}

.hero--showcase .hero-showcase-panel {
	padding: 10px 14px 10px;
}

.hero--showcase .hero-link-head {
	margin-bottom: 6px;
	gap: 5px;
}

.hero--showcase .hero-diagram-block {
	margin-bottom: 4px;
	padding: 7px 5px 5px;
}

.hero--showcase .hero-brand-line {
	margin-bottom: 4px;
}

.hero--showcase .hero-radio-icon {
	width: 54px;
	height: 54px;
	border-radius: 15px;
}

.hero--showcase .hero-radio-ring {
	width: 62px;
	height: 62px;
	margin-left: -31px;
}

.hero--showcase .hero-link-core {
	min-width: 104px;
	padding: 8px 10px;
}

.hero--showcase .hero-link-speed {
	font-size: 1.1875rem;
}

.hero--showcase .hero-tech-slider {
	margin-top: 8px;
	padding-top: 8px;
}

.hero--showcase .hero-tech-slider-bar {
	margin-bottom: 8px;
}

.hero--showcase .hero-tech-slides {
	min-height: 64px;
}

.hero--showcase .hero-tech-dots {
	margin-top: 10px;
}

.hero--showcase .hero-showcase-footer {
	position: relative;
	z-index: 3;
	margin-top: 12px;
	padding-top: 10px;
	clear: both;
}

.hero--showcase .hero-showcase-footer .hero-actions {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
}

.hero--showcase .hero-showcase-footer .hero-actions .btn-lg {
	flex: 0 1 auto;
	min-width: min(100%, 13.5rem);
	max-width: 100%;
	padding: 10px 18px;
	font-size: 0.9375rem;
	white-space: nowrap;
}

.hero--showcase .hero-wave svg {
	height: 32px;
}

body.abannet-front-page .stats-bar--trust {
	margin-top: -6px;
	padding: 0 0 8px;
	position: relative;
	z-index: 10;
}

body.abannet-front-page .stats-bar--trust .stats-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 4px 2px;
	padding: 10px 14px;
	background:
		linear-gradient(
			168deg,
			rgba(255, 255, 255, 0.78) 0%,
			rgba(248, 252, 255, 0.42) 50%,
			rgba(255, 255, 255, 0.72) 100%
		);
	border: 1px solid rgba(255, 255, 255, 0.82);
	border-radius: 14px;
	box-shadow:
		0 6px 22px rgba(14, 165, 233, 0.06),
		0 1px 3px rgba(15, 23, 42, 0.03),
		inset 0 1px 0 rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(20px) saturate(1.08);
	-webkit-backdrop-filter: blur(20px) saturate(1.08);
	overflow: hidden;
	transition:
		box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.45s ease,
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

body.abannet-front-page .stats-bar--trust .stats-grid::before {
	content: '';
	position: absolute;
	top: 0;
	inset-inline: 14%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.28), transparent);
	opacity: 0.55;
	pointer-events: none;
	transition: opacity 0.45s ease;
}

body.abannet-front-page .stats-bar--trust .stats-grid::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		rgba(255, 255, 255, 0.35) 0%,
		transparent 42%,
		transparent 58%,
		rgba(224, 247, 255, 0.12) 100%
	);
	pointer-events: none;
	opacity: 0.6;
}

body.abannet-front-page .stats-bar--trust .stats-grid:hover {
	border-color: rgba(255, 255, 255, 0.95);
	box-shadow:
		0 10px 28px rgba(14, 165, 233, 0.09),
		0 2px 8px rgba(15, 23, 42, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 1);
	transform: translateY(-1px);
}

body.abannet-front-page .stats-bar--trust .stats-grid:hover::before {
	opacity: 0.85;
}

body.abannet-front-page .stats-bar--trust .stat-item {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 5px 6px;
	border-radius: 10px;
	transition:
		background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

body.abannet-front-page .stats-bar--trust .stat-item:not(:first-child) {
	border-inline-start: 1px solid rgba(148, 163, 184, 0.12);
}

body.abannet-front-page .stats-bar--trust .stat-item:hover {
	background: rgba(255, 255, 255, 0.48);
	transform: translateY(-1px);
}

body.abannet-front-page .stats-bar--trust .stat-icon {
	width: 32px;
	height: 32px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(148, 163, 184, 0.14);
	color: rgba(2, 132, 199, 0.88);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
	transition:
		background 0.4s ease,
		border-color 0.4s ease,
		color 0.4s ease,
		box-shadow 0.4s ease,
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

body.abannet-front-page .stats-bar--trust .stat-item:hover .stat-icon {
	background: rgba(255, 255, 255, 0.95);
	border-color: rgba(14, 165, 233, 0.22);
	color: #0284c7;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 1),
		0 4px 14px rgba(14, 165, 233, 0.1);
	transform: scale(1.04);
}

body.abannet-front-page .stats-bar--trust .stat-icon svg {
	width: 15px;
	height: 15px;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

body.abannet-front-page .stats-bar--trust .stat-item:hover .stat-icon svg {
	transform: scale(1.06);
}

body.abannet-front-page .stats-bar--trust .stat-number {
	font-size: 1.03125rem;
	font-weight: 800;
	line-height: 1.15;
	color: var(--color-navy);
	transition: color 0.35s ease;
}

body.abannet-front-page .stats-bar--trust .stat-item:hover .stat-number {
	color: #0c4a6e;
}

body.abannet-front-page .stats-bar--trust .stat-label {
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 1.38;
	color: rgba(71, 85, 105, 0.68);
	transition: color 0.35s ease;
}

body.abannet-front-page .stats-bar--trust .stat-item:hover .stat-label {
	color: rgba(30, 58, 95, 0.82);
}

body.abannet-front-page .stats-bar--trust .stat-info {
	min-width: 0;
	text-align: start;
}

@media (prefers-reduced-motion: reduce) {
	body.abannet-front-page .stats-bar--trust .stats-grid,
	body.abannet-front-page .stats-bar--trust .stat-item,
	body.abannet-front-page .stats-bar--trust .stat-icon,
	body.abannet-front-page .stats-bar--trust .stat-icon svg {
		transition: none;
	}

	body.abannet-front-page .stats-bar--trust .stats-grid:hover,
	body.abannet-front-page .stats-bar--trust .stat-item:hover,
	body.abannet-front-page .stats-bar--trust .stat-item:hover .stat-icon {
		transform: none;
	}
}

@media (max-width: 768px) {
	body.abannet-front-page .stats-bar--trust {
		margin-top: -4px;
		padding-bottom: 4px;
	}

	body.abannet-front-page .stats-bar--trust .stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 4px;
		padding: 8px 10px;
	}

	body.abannet-front-page .stats-bar--trust .stat-item:not(:first-child) {
		border-inline-start: none;
	}

	body.abannet-front-page .stats-bar--trust .stat-item:nth-child(odd) {
		border-inline-start: none;
	}

	body.abannet-front-page .stats-bar--trust .stat-item:nth-child(even) {
		border-inline-start: 1px solid rgba(148, 163, 184, 0.16);
	}

	body.abannet-front-page .stats-bar--trust .stat-item:nth-child(n + 3) {
		border-top: 1px solid rgba(148, 163, 184, 0.14);
		padding-top: 6px;
		margin-top: 2px;
	}

	body.abannet-front-page .stats-bar--trust .stat-icon {
		width: 28px;
		height: 28px;
	}

	body.abannet-front-page .stats-bar--trust .stat-number {
		font-size: 0.96875rem;
	}

	body.abannet-front-page .stats-bar--trust .stat-label {
		font-size: 0.5625rem;
	}

	body.abannet-front-page .stats-bar--trust .stats-grid:hover {
		transform: none;
	}

	body.abannet-front-page .stats-bar--trust .stat-item:hover {
		transform: none;
	}

	body.abannet-front-page .stats-bar--trust .stat-item:hover .stat-icon {
		transform: none;
	}
}

@media (max-width: 420px) {
	body.abannet-front-page .stats-bar--trust .stat-item {
		gap: 5px;
		padding: 3px 4px;
	}
}

@media (max-width: 768px) {
	.hero-tagline-card {
		margin: 6px 0 8px;
	}

	.hero-tagline-card-inner {
		padding: 9px 11px 8px;
	}

	.hero-tagline-meta {
		margin-bottom: 5px;
	}

	.hero-tagline-title {
		font-size: 0.875rem;
	}

	.hero-tagline-lead {
		font-size: 0.6875rem;
	}

	.hero-tagline-pill {
		font-size: 0.5rem;
		padding: 2px 6px;
	}

	.hero--showcase .hero-link-head {
		margin-bottom: 5px;
	}

	.hero--showcase .hero-radio-icon {
		width: 46px;
		height: 46px;
	}

	.hero--showcase .hero-radio-ring {
		width: 52px;
		height: 52px;
		margin-left: -26px;
	}

	.hero--showcase .hero-link-core {
		min-width: 88px;
		padding: 6px 8px;
	}

	.hero--showcase .hero-link-speed {
		font-size: 0.9375rem;
	}

	.hero--showcase .hero-content--showcase {
		padding: calc(var(--header-height) + 4px) 10px 8px;
	}

	.hero--showcase .hero-showcase-panel {
		padding: 8px 10px 8px;
	}

	.hero--showcase .hero-diagram-block {
		padding: 6px 4px 4px;
	}

	.hero--showcase .hero-tech-slides {
		min-height: 68px;
	}

	.hero--showcase .hero-tech-slider {
		margin-top: 6px;
		padding-top: 6px;
	}

	.hero--showcase .hero-tech-dots {
		margin-top: 8px;
	}

	.hero--showcase .hero-showcase-footer {
		margin-top: 10px;
		padding-top: 8px;
	}

	.hero--showcase .hero-showcase-footer .hero-actions {
		flex-direction: row;
		gap: 8px;
	}

	.hero--showcase .hero-showcase-footer .hero-actions .btn-lg {
		flex: 1 1 calc(50% - 4px);
		min-width: 0;
		padding: 9px 12px;
		font-size: 0.8125rem;
	}

	.hero--showcase .hero-wave svg {
		height: 28px;
	}
}

@media (max-width: 420px) {
	.hero--showcase .hero-showcase-footer .hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hero--showcase .hero-showcase-footer .hero-actions .btn-lg {
		flex: none;
		width: 100%;
		min-width: 0;
		justify-content: center;
	}
}

.service-page-tag {
	display: inline-block;
	margin-bottom: 10px;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 0.5625rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(2, 132, 199, 0.88);
	background: rgba(240, 249, 255, 0.9);
	border: 1px solid rgba(14, 165, 233, 0.18);
}
